@sap/ux-specification 1.124.30 → 1.124.32
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 +63 -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 +249 -249
- 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 +18 -9
- package/dist/schemas/v4/BuildingBlocksConfig.json +20 -34
- 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 +53 -6
- 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 +16 -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/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 +99 -33
- 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 +61 -11
- 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/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/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
|
@@ -27,42 +27,51 @@
|
|
|
27
27
|
"properties": {
|
|
28
28
|
"forceGlobalRefresh": {
|
|
29
29
|
"description": "If forceGlobalRefresh is not explicitly set to false, a global model refresh is triggered when the annotated side effects are executed.",
|
|
30
|
-
"type": "boolean"
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.forceGlobalRefresh"
|
|
31
32
|
},
|
|
32
33
|
"flexibleColumnLayout": {
|
|
33
34
|
"$ref": "#/definitions/FlexibleColumnLayout",
|
|
34
|
-
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas."
|
|
35
|
+
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas.",
|
|
36
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout"
|
|
35
37
|
},
|
|
36
38
|
"tableColumnVerticalAlignment": {
|
|
37
39
|
"$ref": "#/definitions/TableColumnVerticalAlignment",
|
|
38
|
-
"description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table."
|
|
40
|
+
"description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table.",
|
|
41
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.tableColumnVerticalAlignment"
|
|
39
42
|
},
|
|
40
43
|
"draftDiscardConfirmationSettings": {
|
|
41
44
|
"$ref": "#/definitions/DraftDiscardConfirmationSettings",
|
|
42
|
-
"description": "Allows applications to configure confirmation popups in various scenarios."
|
|
45
|
+
"description": "Allows applications to configure confirmation popups in various scenarios.",
|
|
46
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.draftDiscardConfirmationSettings"
|
|
43
47
|
},
|
|
44
48
|
"statePreservationMode": {
|
|
45
49
|
"$ref": "#/definitions/StatePreservationMode",
|
|
46
|
-
"description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases."
|
|
50
|
+
"description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases.",
|
|
51
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.statePreservationMode"
|
|
47
52
|
},
|
|
48
53
|
"title": {
|
|
49
54
|
"description": "Defines the title for the application.",
|
|
50
55
|
"i18nClassification": "TIT: Title of the application",
|
|
51
|
-
"type": "string"
|
|
56
|
+
"type": "string",
|
|
57
|
+
"manifestPath": "$[\"sap.app\"].title"
|
|
52
58
|
},
|
|
53
59
|
"description": {
|
|
54
60
|
"description": "Defines the description for the application.",
|
|
55
61
|
"i18nClassification": "TIT: Description of the application",
|
|
56
|
-
"type": "string"
|
|
62
|
+
"type": "string",
|
|
63
|
+
"manifestPath": "$[\"sap.app\"].description"
|
|
57
64
|
},
|
|
58
65
|
"flexEnabled": {
|
|
59
66
|
"description": "Enables key user adaptation for an application.",
|
|
60
67
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ccd45ba3f0b446a0901b2c9d42b8ad53",
|
|
61
|
-
"type": "boolean"
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"manifestPath": "$[\"sap.ui5\"].flexEnabled"
|
|
62
70
|
},
|
|
63
71
|
"cloudDevAdaptationStatus": {
|
|
64
72
|
"$ref": "#/definitions/CloudDevAdaptationStatus",
|
|
65
|
-
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released."
|
|
73
|
+
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released.",
|
|
74
|
+
"manifestPath": "$[\"sap.fiori\"].cloudDevAdaptationStatus"
|
|
66
75
|
}
|
|
67
76
|
},
|
|
68
77
|
"additionalProperties": false
|
|
@@ -15,6 +15,14 @@
|
|
|
15
15
|
"$ref": "#/definitions/ListReportFilterBar",
|
|
16
16
|
"description": "Filter Bar"
|
|
17
17
|
},
|
|
18
|
+
"table": {
|
|
19
|
+
"$ref": "#/definitions/Table",
|
|
20
|
+
"description": "Table"
|
|
21
|
+
},
|
|
22
|
+
"footer": {
|
|
23
|
+
"$ref": "#/definitions/Toolbar",
|
|
24
|
+
"description": "Footer"
|
|
25
|
+
},
|
|
18
26
|
"$schema": {
|
|
19
27
|
"type": "string"
|
|
20
28
|
}
|
|
@@ -413,6 +421,168 @@
|
|
|
413
421
|
"YESTERDAY"
|
|
414
422
|
],
|
|
415
423
|
"type": "string"
|
|
424
|
+
},
|
|
425
|
+
"Table": {
|
|
426
|
+
"description": "Table",
|
|
427
|
+
"isViewNode": true,
|
|
428
|
+
"type": "object",
|
|
429
|
+
"properties": {
|
|
430
|
+
"entitySet": {
|
|
431
|
+
"description": "This property can be used to indicate that a table or chart should be based on a different entity set than the main entity set",
|
|
432
|
+
"type": "string",
|
|
433
|
+
"artifactType": "Manifest",
|
|
434
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b6b59e4a4c3548cf83ff9c3b955d3ba3"
|
|
435
|
+
},
|
|
436
|
+
"annotationPath": {
|
|
437
|
+
"description": "Specify a SelectionVariant or SelectionPresentationVariant annotation for the entity set to configure the table or chart",
|
|
438
|
+
"type": "string",
|
|
439
|
+
"artifactType": "Manifest",
|
|
440
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/37aeed74e17a42caa2cba3123f0c15fc"
|
|
441
|
+
},
|
|
442
|
+
"showItemNavigationOnChart": {
|
|
443
|
+
"description": "To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest.",
|
|
444
|
+
"type": "boolean",
|
|
445
|
+
"artifactType": "Manifest"
|
|
446
|
+
},
|
|
447
|
+
"views": {
|
|
448
|
+
"$ref": "#/definitions/MultiViewsDefinition"
|
|
449
|
+
},
|
|
450
|
+
"showTablePersonalisation": {
|
|
451
|
+
"description": "The showTablePersonalisation attribute can be set to false to hide the table personalization button.",
|
|
452
|
+
"type": "boolean",
|
|
453
|
+
"artifactType": "FlexChange",
|
|
454
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
455
|
+
},
|
|
456
|
+
"exportType": {
|
|
457
|
+
"$ref": "#/definitions/smarttable.ExportType",
|
|
458
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
459
|
+
"artifactType": "FlexChange",
|
|
460
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
461
|
+
},
|
|
462
|
+
"useExportToExcel": {
|
|
463
|
+
"description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
|
|
464
|
+
"type": "boolean",
|
|
465
|
+
"artifactType": "FlexChange",
|
|
466
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
"additionalProperties": false
|
|
470
|
+
},
|
|
471
|
+
"MultiViewsDefinition": {
|
|
472
|
+
"description": "Views",
|
|
473
|
+
"isViewNode": true,
|
|
474
|
+
"type": "object",
|
|
475
|
+
"properties": {
|
|
476
|
+
"enableAutoBinding": {
|
|
477
|
+
"description": "Use this property to ensure that data are automatically loaded when the page is opened.",
|
|
478
|
+
"type": "boolean",
|
|
479
|
+
"artifactType": "Manifest"
|
|
480
|
+
},
|
|
481
|
+
"showCounts": {
|
|
482
|
+
"description": "You can show the counts of entries of each view. To do so, add the showCounts option and set it to true.",
|
|
483
|
+
"type": "boolean",
|
|
484
|
+
"artifactType": "Manifest"
|
|
485
|
+
},
|
|
486
|
+
"variants": {
|
|
487
|
+
"$ref": "#/definitions/MultiViewsVariants",
|
|
488
|
+
"description": "List of views"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"additionalProperties": false,
|
|
492
|
+
"required": [
|
|
493
|
+
"variants"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
"MultiViewsVariants": {
|
|
497
|
+
"isViewNode": false,
|
|
498
|
+
"type": "object",
|
|
499
|
+
"additionalProperties": {
|
|
500
|
+
"$ref": "#/definitions/Table"
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"smarttable.ExportType": {
|
|
504
|
+
"description": "Provides the type of services available for export in the `SmartTable` control.\n\nThis enum is part of the 'sap/ui/comp/library' module export and must be accessed by the property 'smarttable.ExportType'.",
|
|
505
|
+
"enum": [
|
|
506
|
+
"GW",
|
|
507
|
+
"UI5Client",
|
|
508
|
+
"UI5ClientPDF"
|
|
509
|
+
],
|
|
510
|
+
"type": "string"
|
|
511
|
+
},
|
|
512
|
+
"Toolbar": {
|
|
513
|
+
"description": "Toolbar",
|
|
514
|
+
"isViewNode": true,
|
|
515
|
+
"type": "object",
|
|
516
|
+
"properties": {
|
|
517
|
+
"actions": {
|
|
518
|
+
"$ref": "#/definitions/Actions"
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
"additionalProperties": false,
|
|
522
|
+
"required": [
|
|
523
|
+
"actions"
|
|
524
|
+
]
|
|
525
|
+
},
|
|
526
|
+
"Actions": {
|
|
527
|
+
"description": "Actions",
|
|
528
|
+
"isViewNode": true,
|
|
529
|
+
"type": "object",
|
|
530
|
+
"additionalProperties": {
|
|
531
|
+
"$ref": "#/definitions/Action"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"Action": {
|
|
535
|
+
"description": "Action",
|
|
536
|
+
"isViewNode": true,
|
|
537
|
+
"type": "object",
|
|
538
|
+
"properties": {
|
|
539
|
+
"tooltip": {
|
|
540
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
541
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
542
|
+
"type": "string",
|
|
543
|
+
"artifactType": "FlexChange",
|
|
544
|
+
"controlType": "sap.m.Button"
|
|
545
|
+
},
|
|
546
|
+
"icon": {
|
|
547
|
+
"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.",
|
|
548
|
+
"type": "string",
|
|
549
|
+
"artifactType": "FlexChange",
|
|
550
|
+
"controlType": "sap.m.Button"
|
|
551
|
+
},
|
|
552
|
+
"activeIcon": {
|
|
553
|
+
"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.",
|
|
554
|
+
"type": "string",
|
|
555
|
+
"artifactType": "FlexChange",
|
|
556
|
+
"controlType": "sap.m.Button"
|
|
557
|
+
},
|
|
558
|
+
"type": {
|
|
559
|
+
"$ref": "#/definitions/ButtonType",
|
|
560
|
+
"description": "Defines the Button type.",
|
|
561
|
+
"artifactType": "FlexChange",
|
|
562
|
+
"controlType": "sap.m.Button"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"additionalProperties": false
|
|
566
|
+
},
|
|
567
|
+
"ButtonType": {
|
|
568
|
+
"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'.",
|
|
569
|
+
"enum": [
|
|
570
|
+
"Accept",
|
|
571
|
+
"Attention",
|
|
572
|
+
"Back",
|
|
573
|
+
"Critical",
|
|
574
|
+
"Default",
|
|
575
|
+
"Emphasized",
|
|
576
|
+
"Ghost",
|
|
577
|
+
"Negative",
|
|
578
|
+
"Neutral",
|
|
579
|
+
"Reject",
|
|
580
|
+
"Success",
|
|
581
|
+
"Transparent",
|
|
582
|
+
"Unstyled",
|
|
583
|
+
"Up"
|
|
584
|
+
],
|
|
585
|
+
"type": "string"
|
|
416
586
|
}
|
|
417
587
|
},
|
|
418
588
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
@@ -27,42 +27,51 @@
|
|
|
27
27
|
"properties": {
|
|
28
28
|
"flexibleColumnLayout": {
|
|
29
29
|
"$ref": "#/definitions/FlexibleColumnLayoutV4",
|
|
30
|
-
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas."
|
|
30
|
+
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas.",
|
|
31
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout"
|
|
31
32
|
},
|
|
32
33
|
"path": {
|
|
33
34
|
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
34
|
-
"type": "string"
|
|
35
|
+
"type": "string",
|
|
36
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.path"
|
|
35
37
|
},
|
|
36
38
|
"viewType": {
|
|
37
39
|
"$ref": "#/definitions/ViewTypes",
|
|
38
|
-
"description": "standard view type of views"
|
|
40
|
+
"description": "standard view type of views",
|
|
41
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.viewType"
|
|
39
42
|
},
|
|
40
43
|
"controllerExtensions": {
|
|
41
44
|
"$ref": "#/definitions/ControllerExtensions",
|
|
42
|
-
"description": "Controller extensions allow users to extensiate default behaviour with custom controllers code."
|
|
45
|
+
"description": "Controller extensions allow users to extensiate default behaviour with custom controllers code.",
|
|
46
|
+
"manifestPath": "$[\"sap.ui5\"].extends.extensions[\"sap.ui.controllerExtensions\"].controllerExtensions"
|
|
43
47
|
},
|
|
44
48
|
"dependencies": {
|
|
45
49
|
"$ref": "#/definitions/Dependencies",
|
|
46
|
-
"description": "Dependencies of the application."
|
|
50
|
+
"description": "Dependencies of the application.",
|
|
51
|
+
"manifestPath": "$[\"sap.ui5\"].dependencies"
|
|
47
52
|
},
|
|
48
53
|
"title": {
|
|
49
54
|
"description": "Defines the title for the application.",
|
|
50
55
|
"i18nClassification": "TIT: Title of the application",
|
|
51
|
-
"type": "string"
|
|
56
|
+
"type": "string",
|
|
57
|
+
"manifestPath": "$[\"sap.app\"].title"
|
|
52
58
|
},
|
|
53
59
|
"description": {
|
|
54
60
|
"description": "Defines the description for the application.",
|
|
55
61
|
"i18nClassification": "TIT: Description of the application",
|
|
56
|
-
"type": "string"
|
|
62
|
+
"type": "string",
|
|
63
|
+
"manifestPath": "$[\"sap.app\"].description"
|
|
57
64
|
},
|
|
58
65
|
"flexEnabled": {
|
|
59
66
|
"description": "Enables key user adaptation for an application.",
|
|
60
67
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ccd45ba3f0b446a0901b2c9d42b8ad53",
|
|
61
|
-
"type": "boolean"
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"manifestPath": "$[\"sap.ui5\"].flexEnabled"
|
|
62
70
|
},
|
|
63
71
|
"cloudDevAdaptationStatus": {
|
|
64
72
|
"$ref": "#/definitions/CloudDevAdaptationStatus",
|
|
65
|
-
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released."
|
|
73
|
+
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released.",
|
|
74
|
+
"manifestPath": "$[\"sap.fiori\"].cloudDevAdaptationStatus"
|
|
66
75
|
}
|
|
67
76
|
},
|
|
68
77
|
"additionalProperties": false
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"additionalProperties": {
|
|
143
143
|
"$ref": "#/definitions/sap.fe.macros.richtexteditor.Plugin"
|
|
144
144
|
},
|
|
145
|
-
"isViewNode":
|
|
145
|
+
"isViewNode": false,
|
|
146
146
|
"metadata": {
|
|
147
147
|
"path": [],
|
|
148
148
|
"type": "Aggregation"
|
|
@@ -598,9 +598,8 @@
|
|
|
598
598
|
},
|
|
599
599
|
"formatOptions": {
|
|
600
600
|
"$ref": "#/definitions/sap.fe.macros.FieldFormatOptions",
|
|
601
|
-
"description": "
|
|
601
|
+
"description": "A set of options that can be configured.",
|
|
602
602
|
"artifactType": "XMLProperty",
|
|
603
|
-
"isViewNode": true,
|
|
604
603
|
"metadata": {
|
|
605
604
|
"type": "Property"
|
|
606
605
|
}
|
|
@@ -683,9 +682,8 @@
|
|
|
683
682
|
},
|
|
684
683
|
"formatOptions": {
|
|
685
684
|
"$ref": "#/definitions/sap.fe.macros.FieldFormatOptions",
|
|
686
|
-
"description": "
|
|
685
|
+
"description": "A set of options that can be configured.",
|
|
687
686
|
"artifactType": "XMLProperty",
|
|
688
|
-
"isViewNode": true,
|
|
689
687
|
"metadata": {
|
|
690
688
|
"type": "Property"
|
|
691
689
|
}
|
|
@@ -1030,18 +1028,16 @@
|
|
|
1030
1028
|
"properties": {
|
|
1031
1029
|
"contextPath": {
|
|
1032
1030
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1033
|
-
"description": "
|
|
1031
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1034
1032
|
"artifactType": "XMLProperty",
|
|
1035
|
-
"isViewNode": true,
|
|
1036
1033
|
"metadata": {
|
|
1037
1034
|
"type": "Property"
|
|
1038
1035
|
}
|
|
1039
1036
|
},
|
|
1040
1037
|
"metaPath": {
|
|
1041
1038
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1042
|
-
"description": "
|
|
1039
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
1043
1040
|
"artifactType": "XMLProperty",
|
|
1044
|
-
"isViewNode": true,
|
|
1045
1041
|
"metadata": {
|
|
1046
1042
|
"type": "Property"
|
|
1047
1043
|
}
|
|
@@ -1077,9 +1073,8 @@
|
|
|
1077
1073
|
"properties": {
|
|
1078
1074
|
"contextPath": {
|
|
1079
1075
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1080
|
-
"description": "
|
|
1076
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1081
1077
|
"artifactType": "XMLProperty",
|
|
1082
|
-
"isViewNode": true,
|
|
1083
1078
|
"metadata": {
|
|
1084
1079
|
"type": "Property"
|
|
1085
1080
|
}
|
|
@@ -1095,9 +1090,8 @@
|
|
|
1095
1090
|
},
|
|
1096
1091
|
"metaPath": {
|
|
1097
1092
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1098
|
-
"description": "
|
|
1093
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
1099
1094
|
"artifactType": "XMLProperty",
|
|
1100
|
-
"isViewNode": true,
|
|
1101
1095
|
"metadata": {
|
|
1102
1096
|
"type": "Property"
|
|
1103
1097
|
}
|
|
@@ -1123,7 +1117,7 @@
|
|
|
1123
1117
|
"additionalProperties": {
|
|
1124
1118
|
"$ref": "#/definitions/sap.ui.core.Control"
|
|
1125
1119
|
},
|
|
1126
|
-
"isViewNode":
|
|
1120
|
+
"isViewNode": false,
|
|
1127
1121
|
"metadata": {
|
|
1128
1122
|
"path": [],
|
|
1129
1123
|
"type": "Aggregation"
|
|
@@ -1276,18 +1270,16 @@
|
|
|
1276
1270
|
"properties": {
|
|
1277
1271
|
"contextPath": {
|
|
1278
1272
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1279
|
-
"description": "
|
|
1273
|
+
"description": "The context path provided for the MultiValueField",
|
|
1280
1274
|
"artifactType": "XMLProperty",
|
|
1281
|
-
"isViewNode": true,
|
|
1282
1275
|
"metadata": {
|
|
1283
1276
|
"type": "Property"
|
|
1284
1277
|
}
|
|
1285
1278
|
},
|
|
1286
1279
|
"metaPath": {
|
|
1287
1280
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1288
|
-
"description": "metaPath",
|
|
1281
|
+
"description": "Defines the relative Metadata path to the MultiValueField.\nThe metaPath should point to a Property or DataField.",
|
|
1289
1282
|
"artifactType": "XMLProperty",
|
|
1290
|
-
"isViewNode": true,
|
|
1291
1283
|
"metadata": {
|
|
1292
1284
|
"type": "Property"
|
|
1293
1285
|
}
|
|
@@ -1446,9 +1438,8 @@
|
|
|
1446
1438
|
},
|
|
1447
1439
|
"contextPath": {
|
|
1448
1440
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1449
|
-
"description": "
|
|
1441
|
+
"description": "The context path of the property displayed",
|
|
1450
1442
|
"artifactType": "XMLProperty",
|
|
1451
|
-
"isViewNode": true,
|
|
1452
1443
|
"metadata": {
|
|
1453
1444
|
"type": "Property"
|
|
1454
1445
|
}
|
|
@@ -1463,9 +1454,8 @@
|
|
|
1463
1454
|
},
|
|
1464
1455
|
"metaPath": {
|
|
1465
1456
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1466
|
-
"description": "metaPath",
|
|
1457
|
+
"description": "The metaPath of the displayed property",
|
|
1467
1458
|
"artifactType": "XMLProperty",
|
|
1468
|
-
"isViewNode": true,
|
|
1469
1459
|
"metadata": {
|
|
1470
1460
|
"type": "Property"
|
|
1471
1461
|
}
|
|
@@ -1806,9 +1796,8 @@
|
|
|
1806
1796
|
},
|
|
1807
1797
|
"creationMode": {
|
|
1808
1798
|
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
1809
|
-
"description": "
|
|
1799
|
+
"description": "A set of options that can be configured.",
|
|
1810
1800
|
"artifactType": "XMLProperty",
|
|
1811
|
-
"isViewNode": true,
|
|
1812
1801
|
"metadata": {
|
|
1813
1802
|
"type": "Property"
|
|
1814
1803
|
}
|
|
@@ -2089,9 +2078,8 @@
|
|
|
2089
2078
|
},
|
|
2090
2079
|
"creationMode": {
|
|
2091
2080
|
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
2092
|
-
"description": "
|
|
2081
|
+
"description": "A set of options that can be configured.",
|
|
2093
2082
|
"artifactType": "XMLProperty",
|
|
2094
|
-
"isViewNode": true,
|
|
2095
2083
|
"metadata": {
|
|
2096
2084
|
"type": "Property"
|
|
2097
2085
|
}
|
|
@@ -2345,7 +2333,7 @@
|
|
|
2345
2333
|
},
|
|
2346
2334
|
"sap.fe.macros.table.TableCreationOptions": {
|
|
2347
2335
|
"description": "Create options for the table.",
|
|
2348
|
-
"isViewNode":
|
|
2336
|
+
"isViewNode": false,
|
|
2349
2337
|
"type": "object",
|
|
2350
2338
|
"properties": {
|
|
2351
2339
|
"createAtEnd": {
|
|
@@ -2424,9 +2412,8 @@
|
|
|
2424
2412
|
},
|
|
2425
2413
|
"creationMode": {
|
|
2426
2414
|
"$ref": "#/definitions/sap.fe.macros.table.TreeTableCreationOptions",
|
|
2427
|
-
"description": "
|
|
2415
|
+
"description": "A set of options that can be configured.",
|
|
2428
2416
|
"artifactType": "XMLProperty",
|
|
2429
|
-
"isViewNode": true,
|
|
2430
2417
|
"metadata": {
|
|
2431
2418
|
"type": "Property"
|
|
2432
2419
|
}
|
|
@@ -2700,7 +2687,7 @@
|
|
|
2700
2687
|
},
|
|
2701
2688
|
"sap.fe.macros.table.TreeTableCreationOptions": {
|
|
2702
2689
|
"description": "Create options for the tree table.",
|
|
2703
|
-
"isViewNode":
|
|
2690
|
+
"isViewNode": false,
|
|
2704
2691
|
"type": "object",
|
|
2705
2692
|
"properties": {
|
|
2706
2693
|
"isCreateEnabled": {
|
|
@@ -2813,7 +2800,7 @@
|
|
|
2813
2800
|
},
|
|
2814
2801
|
"sap.fe.macros.FieldFormatOptions": {
|
|
2815
2802
|
"description": "Additional format options for the field.",
|
|
2816
|
-
"isViewNode":
|
|
2803
|
+
"isViewNode": false,
|
|
2817
2804
|
"type": "object",
|
|
2818
2805
|
"properties": {
|
|
2819
2806
|
"displayMode": {
|
|
@@ -2832,9 +2819,8 @@
|
|
|
2832
2819
|
},
|
|
2833
2820
|
"fieldEditStyle": {
|
|
2834
2821
|
"$ref": "#/definitions/sap.fe.macros.field.FieldAPI.FieldEditStyle",
|
|
2835
|
-
"description": "
|
|
2822
|
+
"description": "Determines how the field should be rendered, e.g. as radio buttons. \nIf not all prerequisites are met, the field will default back to the standard rendering.\n",
|
|
2836
2823
|
"artifactType": "XMLProperty",
|
|
2837
|
-
"isViewNode": true,
|
|
2838
2824
|
"metadata": {
|
|
2839
2825
|
"type": "Property"
|
|
2840
2826
|
}
|
|
@@ -2936,7 +2922,7 @@
|
|
|
2936
2922
|
},
|
|
2937
2923
|
"sap.fe.macros.share.ShareOptions": {
|
|
2938
2924
|
"description": "Share Options.",
|
|
2939
|
-
"isViewNode":
|
|
2925
|
+
"isViewNode": false,
|
|
2940
2926
|
"type": "object",
|
|
2941
2927
|
"properties": {},
|
|
2942
2928
|
"additionalProperties": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-specification",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.32",
|
|
4
4
|
"displayName": "SAP Fiori tools - Specification",
|
|
5
5
|
"description": "SAP Fiori tools - Specification",
|
|
6
6
|
"files": [
|
|
@@ -49,19 +49,20 @@
|
|
|
49
49
|
"publisher": "SAPSE",
|
|
50
50
|
"license": "SEE LICENSE IN LICENSE",
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@sap-ux/fe-fpm-writer": "0.
|
|
53
|
-
"@sap-ux/vocabularies-types": "0.13.
|
|
52
|
+
"@sap-ux/fe-fpm-writer": "0.40.2",
|
|
53
|
+
"@sap-ux/vocabularies-types": "0.13.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@sap-ux/annotation-converter": "0.10.
|
|
56
|
+
"@sap-ux/annotation-converter": "0.10.9",
|
|
57
57
|
"@sap-ux/edmx-parser": "0.9.6",
|
|
58
|
-
"@sap-ux/project-access": "1.
|
|
59
|
-
"@sap/ux-specification-types": "1.124.
|
|
58
|
+
"@sap-ux/project-access": "1.33.0",
|
|
59
|
+
"@sap/ux-specification-types": "1.124.32",
|
|
60
60
|
"@sapui5/types": "latest-1.124",
|
|
61
61
|
"@types/d3": "7.4.3",
|
|
62
|
-
"@types/jquery": "3.5.
|
|
63
|
-
"@types/mem-fs": "1.1.
|
|
62
|
+
"@types/jquery": "3.5.33",
|
|
63
|
+
"@types/mem-fs": "1.1.5",
|
|
64
64
|
"@types/mem-fs-editor": "7.0.1",
|
|
65
|
+
"@types/json-schema": "7.0.5",
|
|
65
66
|
"@ui5/flexibility-utils": "0.1.3",
|
|
66
67
|
"@xml-tools/ast": "5.0.5",
|
|
67
68
|
"@xml-tools/parser": "1.0.11",
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"deepmerge": "4.3.1",
|
|
72
73
|
"ejs": "3.1.10",
|
|
73
74
|
"excel4node": "1.8.2",
|
|
74
|
-
"i18next": "25.
|
|
75
|
+
"i18next": "25.7.3",
|
|
75
76
|
"jquery": "3.7.1",
|
|
76
77
|
"jsdom": "25.0.1",
|
|
77
78
|
"lodash.unset": "4.5.2",
|
|
@@ -2,6 +2,13 @@ import type { SchemaDefinition } from '@sap/ux-specification-types';
|
|
|
2
2
|
import type { MacrosAPI } from './types';
|
|
3
3
|
import type { JSONSchema7TypeName } from 'json-schema';
|
|
4
4
|
export declare const UI5_TO_JSON_SCHEMA_TYPE_MAP: Map<string, JSONSchema7TypeName>;
|
|
5
|
+
/**
|
|
6
|
+
* Semantic classification patterns for properties
|
|
7
|
+
* Used to determine if a property should be visible (isViewNode = true/false)
|
|
8
|
+
*/
|
|
9
|
+
export declare const PROPERTY_SEMANTICS: {
|
|
10
|
+
AGGREGATIONS: RegExp[];
|
|
11
|
+
};
|
|
5
12
|
/**
|
|
6
13
|
* Method generates generic schema for passed "sap.fe.macros" api.
|
|
7
14
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../scripts/macros/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAGpE,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../scripts/macros/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAGpE,OAAO,KAAK,EACR,SAAS,EAOZ,MAAM,SAAS,CAAC;AAGjB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAGvD,eAAO,MAAM,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,mBAAmB,CAAgC,CAAC;AAC1G;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;CAE9B,CAAC;AAwSF;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,SAAS,GAAG,gBAAgB,CAkD/D"}
|