@sap/ux-specification 1.136.17 → 1.136.19
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 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ListReportNew.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +320 -315
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +202 -7
- package/dist/schemas/v2/OverviewPageConfig.json +18 -9
- package/dist/schemas/v4/ApplicationV4.json +14 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +50 -19
- package/dist/schemas/v4/ListReportConfig.json +74 -15
- package/dist/schemas/v4/ObjectPageConfig.json +117 -721
- package/dist/specification/package.json +8 -8
- package/dist/specification/scripts/generate-validity-report.js +1 -1
- package/dist/specification/scripts/generate-validity-report.js.map +1 -1
- package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
- package/dist/specification/scripts/macros/corrections.js +15 -0
- package/dist/specification/scripts/macros/corrections.js.map +1 -1
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +23 -10
- package/dist/specification/scripts/macros/schema.js.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +39 -3
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/ftfs/ftfs.d.ts +8 -0
- package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
- package/dist/specification/src/ftfs/ftfs.js +1 -0
- package/dist/specification/src/ftfs/ftfs.js.map +1 -1
- package/dist/specification/src/ftfs/index.d.ts +1 -1
- package/dist/specification/src/ftfs/index.d.ts.map +1 -1
- package/dist/specification/src/ftfs/index.js +2 -1
- package/dist/specification/src/ftfs/index.js.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js +3 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts +91 -0
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js +139 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts +95 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js +210 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +71 -22
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js +23 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +0 -8
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +0 -15
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.d.ts +4 -0
- package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.js +4 -0
- package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts +38 -0
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js +3 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js +50 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js +46 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts +26 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js +77 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js +43 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js +68 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts +19 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js +48 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts +6 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js +14 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js.map +1 -0
- package/dist/specification/src/sync/common/i18n.json +32 -0
- package/dist/specification/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/specification/src/sync/common/importProject.js +2 -0
- package/dist/specification/src/sync/common/importProject.js.map +1 -1
- package/dist/specification/src/sync/common/rules.d.ts +1 -1
- package/dist/specification/src/sync/common/rules.js +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts +4 -5
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.js +47 -26
- package/dist/specification/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/specification/src/sync/v2/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/export.js +3 -2
- package/dist/specification/src/sync/v2/export/export.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.js +48 -19
- package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts +2 -0
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js +17 -6
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts +54 -6
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.js +106 -12
- package/dist/specification/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/utils.js +3 -4
- package/dist/specification/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +4 -4
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts +12 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js +167 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +3 -3
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +59 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +582 -7
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js +29 -6
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js.map +1 -1
- package/dist/specification/src/sync/v2/types.d.ts +2 -0
- package/dist/specification/src/sync/v2/types.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/types.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +25 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +28 -4
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/application.d.ts +1 -0
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +10 -0
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -5
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.js +2 -7
- package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +9 -3
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +10 -6
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.d.ts +38 -0
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.js +86 -0
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.js.map +1 -0
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +13 -51
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +97 -238
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +6 -27
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +14 -49
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +3 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +8 -5
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v4/export/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/index.js +1 -0
- package/dist/specification/src/sync/v4/export/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.js +2 -4
- package/dist/specification/src/sync/v4/export/factory.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +1 -0
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +216 -46
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts +15 -2
- package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js +33 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/actions.js +4 -4
- package/dist/specification/src/sync/v4/generate/actions.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/app.d.ts +11 -0
- package/dist/specification/src/sync/v4/generate/app.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/app.js +31 -0
- package/dist/specification/src/sync/v4/generate/app.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +13 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +74 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js +4 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +29 -27
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +12 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +32 -13
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +106 -79
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts +16 -10
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js +64 -30
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts +1 -2
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +136 -95
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.d.ts +18 -0
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.js +91 -0
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.d.ts +156 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.js +192 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.js.map +1 -0
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js +20 -0
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.js +4 -23
- package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js +5 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +3 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +1 -294
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +0 -753
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js +10 -4
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.d.ts +19 -0
- package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.js +34 -0
- package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts +30 -2
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +310 -57
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/specification/test/test-utils/utils.d.ts +1 -0
- package/dist/specification/test/test-utils/utils.d.ts.map +1 -1
- package/dist/specification/test/test-utils/utils.js +11 -0
- package/dist/specification/test/test-utils/utils.js.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +2 -2
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.js +6 -6
- package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -1
- package/dist/templates/AnalyticalTableColumnsExtension.xml +3 -3
- package/dist/templates/GridTableColumnsExtension.xml +3 -3
- package/dist/templates/ResponsiveTableColumnsExtension.xml +2 -2
- package/dist/templates/TreeTableColumnsExtension.xml +4 -4
- package/dist/templates/fragment.xml +3 -3
- package/dist/templates/view.xml +3 -3
- package/dist/types/src/apiTypes.d.ts +44 -6
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js +1 -0
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/types.d.ts +27 -11
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +19 -10
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/v4/application.d.ts +15 -0
- package/dist/types/src/v4/application.d.ts.map +1 -1
- package/dist/types/src/v4/application.js +10 -0
- package/dist/types/src/v4/application.js.map +1 -1
- package/dist/types/src/v4/controls/InlineEdit.d.ts +30 -0
- package/dist/types/src/v4/controls/InlineEdit.d.ts.map +1 -0
- package/dist/types/src/v4/controls/InlineEdit.js +3 -0
- package/dist/types/src/v4/controls/InlineEdit.js.map +1 -0
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts +91 -250
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
- package/dist/types/src/v4/controls/Table.d.ts +4 -4
- package/dist/types/src/v4/controls/index.d.ts +1 -0
- package/dist/types/src/v4/controls/index.d.ts.map +1 -1
- package/dist/types/src/v4/controls/index.js +1 -0
- package/dist/types/src/v4/controls/index.js.map +1 -1
- package/dist/types/src/v4/pages/ListReportConfigV4.d.ts +5 -1
- package/dist/types/src/v4/pages/ListReportConfigV4.d.ts.map +1 -1
- package/package.json +8 -8
|
@@ -11,7 +11,6 @@ const ux_specification_types_1 = require("@sap/ux-specification-types");
|
|
|
11
11
|
const decorators_1 = require("../../../common/decoration/decorators");
|
|
12
12
|
const control_1 = require("../../../common/decoration/control");
|
|
13
13
|
const application_1 = require("../../application");
|
|
14
|
-
const DecoratorClass_1 = require("../../sync-rules/DecoratorClass");
|
|
15
14
|
const utils_1 = require("../../utils");
|
|
16
15
|
/**
|
|
17
16
|
* Sync class for Position
|
|
@@ -39,11 +38,16 @@ __decorate([
|
|
|
39
38
|
since: '1.84.0'
|
|
40
39
|
})
|
|
41
40
|
], CustomHeaderActionPosition.prototype, "placement", void 0);
|
|
42
|
-
let CustomHeaderAction = class CustomHeaderAction
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
41
|
+
let CustomHeaderAction = class CustomHeaderAction {
|
|
42
|
+
/**
|
|
43
|
+
* Called automatically by Decorator.apply() after all decorator steps.
|
|
44
|
+
* Adds custom action definitions and anchor enums to the schema.
|
|
45
|
+
*
|
|
46
|
+
* @param context - The decorator context providing schema, page target, and logger
|
|
47
|
+
*/
|
|
48
|
+
init(context) {
|
|
49
|
+
(0, utils_1.addHeaderFooterCustomActionDefinition)(context.schema.get(), context.page?.target, context.logger, 'CustomHeaderAction', ux_specification_types_1.DefinitionName.HeaderActions);
|
|
50
|
+
(0, utils_1.addEnumForActionAnchor)(context.schema.get(), ux_specification_types_1.DefinitionName.HeaderActions, ux_specification_types_1.DefinitionName.CustomHeaderActionPosition);
|
|
47
51
|
}
|
|
48
52
|
};
|
|
49
53
|
exports.CustomHeaderAction = CustomHeaderAction;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderAction.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/HeaderAction.ts"],"names":[],"mappings":";;;;;;;;;AAAA,wEAAqF;AACrF,sEAAoG;AACpG,gEAAwF;AACxF,mDAAyD;AACzD,
|
|
1
|
+
{"version":3,"file":"HeaderAction.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/HeaderAction.ts"],"names":[],"mappings":";;;;;;;;;AAAA,wEAAqF;AACrF,sEAAoG;AACpG,gEAAwF;AACxF,mDAAyD;AACzD,uCAA4F;AAG5F;;GAEG;AACH,MAAa,0BAA0B;CAqBtC;AArBD,gEAqBC;AAXG;IATC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,CAAC,QAAkB,EAAE,QAAkB,EAAE,SAAiB,EAAE,SAAiB,EAAU,EAAE,CAC3F,IAAA,kCAAoB,EAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC,GAAG,WAAW;SACnF;KACJ,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;0DACc;AAUhB;IATC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,CAAC,QAAkB,EAAE,QAAkB,EAAE,SAAiB,EAAE,SAAiB,EAAU,EAAE,CAC3F,IAAA,kCAAoB,EAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC,GAAG,WAAW;SACnF;KACJ,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;6DAC4B;AAK3B,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;IAqD3B;;;;;OAKG;IACH,IAAI,CAAC,OAAyB;QAC1B,IAAA,6CAAqC,EACjC,OAAO,CAAC,MAAM,CAAC,GAAG,EAAE,EACpB,OAAO,CAAC,IAAI,EAAE,MAAM,EACpB,OAAO,CAAC,MAAM,EACd,oBAAsC,EACtC,uCAAc,CAAC,aAAa,CAC/B,CAAC;QACF,IAAA,8BAAsB,EAClB,OAAO,CAAC,MAAM,CAAC,GAAG,EAAE,EACpB,uCAAc,CAAC,aAAa,EAC5B,uCAAc,CAAC,0BAA0B,CAC5C,CAAC;IACN,CAAC;CACJ,CAAA;AAzEY,gDAAkB;AAS3B;IARC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,kCAAoB;SAC7B;KACJ,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;gDACW;AAUb;IARC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,kCAAoB;SAC7B;KACJ,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;oDACmC;AAUrC;IARC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,kCAAoB;SAC7B;KACJ,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;iDACY;AAWd;IATC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,kCAAoB;SAC7B;QACD,QAAQ,EAAE,4CAAkC;KAC/C,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;mDACgB;AAWlB;IATC,IAAA,qBAAQ,EAAC;QACN,QAAQ,EAAE;YACN,IAAI,EAAE,kCAAoB;SAC7B;QACD,QAAQ,EAAE,4CAAkC;KAC/C,CAAC;IACD,IAAA,qBAAQ,EAAC;QACN,KAAK,EAAE,QAAQ;KAClB,CAAC;mDACgB;6BAnDT,kBAAkB;IAF9B,uBAAU;IACV,IAAA,wBAAW,EAAC,eAAe,CAAC;GAChB,kBAAkB,CAyE9B"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { v4 } from '@sap/ux-specification-types';
|
|
2
|
+
/**
|
|
3
|
+
* Determines whether inline editing is enabled for a given manifest section.
|
|
4
|
+
*
|
|
5
|
+
* Inline editing is considered enabled if the manifest section contains an `inlineEdit`
|
|
6
|
+
* object with either a `disabledFields` or `enabledFields` array.
|
|
7
|
+
*
|
|
8
|
+
* @param manifestSection - The manifest section object to check for inline edit configuration.
|
|
9
|
+
* @returns `true` if the manifest section has inline edit enabled `false` otherwise.
|
|
10
|
+
*/
|
|
11
|
+
export declare function isInlineEditEnabled(manifestSection: unknown): boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Imports and normalizes inline edit settings from a manifest section.
|
|
14
|
+
*
|
|
15
|
+
* This function extracts the inline edit configuration from a manifest section and
|
|
16
|
+
* returns a normalized structure containing `enabledFields`, `disabledFields`, and
|
|
17
|
+
* `connectedFields` arrays. If inline editing is not enabled, it returns `false`.
|
|
18
|
+
*
|
|
19
|
+
* @param manifestSection - The manifest section object containing potential inline edit settings.
|
|
20
|
+
* @returns A normalized inline edit configuration object with `enabledFields`, `disabledFields`,
|
|
21
|
+
* and `connectedFields` arrays (defaulting to empty arrays if not present), or `false`
|
|
22
|
+
*/
|
|
23
|
+
export declare function importInlineEdit(manifestSection: unknown): v4.InlineEdit | false;
|
|
24
|
+
/**
|
|
25
|
+
* Exports inline edit configuration from a config object to a manifest section.
|
|
26
|
+
*
|
|
27
|
+
* This function handles three distinct scenarios for inline edit configuration:
|
|
28
|
+
* 1. **Boolean `true`**: Enables inline editing with empty field arrays, initializing both `enabledFields` and `disabledFields` as empty arrays.
|
|
29
|
+
* 2. **Boolean `false`**: Disables inline editing. If inline edit was previously enabled, the configuration is reset to an empty object.
|
|
30
|
+
* 3. **Object configuration**: Applies the specific field configuration from the config.
|
|
31
|
+
*
|
|
32
|
+
* @param manifestSection - The target manifest section object where inline edit settings will be written.
|
|
33
|
+
* @param configObject - The source configuration object containing the inline edit settings to be exported.
|
|
34
|
+
* @param key - The property key used to access the inline edit value from `configObject`.
|
|
35
|
+
* @param manifestKey - The property key under which to store the inline edit configuration in `manifestSection`.
|
|
36
|
+
*/
|
|
37
|
+
export declare function exportInlineEdit(manifestSection: unknown, configObject: unknown, key: string, manifestKey?: string): void;
|
|
38
|
+
//# sourceMappingURL=InlineEdit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InlineEdit.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/InlineEdit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,6BAA6B,CAAC;AAEtD;;;;;;;;GAQG;AACH,wBAAgB,mBAAmB,CAAC,eAAe,EAAE,OAAO,GAAG,OAAO,CAOrE;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,gBAAgB,CAAC,eAAe,EAAE,OAAO,GAAG,EAAE,CAAC,UAAU,GAAG,KAAK,CAchF;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,gBAAgB,CAC5B,eAAe,EAAE,OAAO,EACxB,YAAY,EAAE,OAAO,EACrB,GAAG,EAAE,MAAM,EACX,WAAW,CAAC,EAAE,MAAM,GACrB,IAAI,CAsBN"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isInlineEditEnabled = isInlineEditEnabled;
|
|
4
|
+
exports.importInlineEdit = importInlineEdit;
|
|
5
|
+
exports.exportInlineEdit = exportInlineEdit;
|
|
6
|
+
/**
|
|
7
|
+
* Determines whether inline editing is enabled for a given manifest section.
|
|
8
|
+
*
|
|
9
|
+
* Inline editing is considered enabled if the manifest section contains an `inlineEdit`
|
|
10
|
+
* object with either a `disabledFields` or `enabledFields` array.
|
|
11
|
+
*
|
|
12
|
+
* @param manifestSection - The manifest section object to check for inline edit configuration.
|
|
13
|
+
* @returns `true` if the manifest section has inline edit enabled `false` otherwise.
|
|
14
|
+
*/
|
|
15
|
+
function isInlineEditEnabled(manifestSection) {
|
|
16
|
+
const inlineEdit = typeof manifestSection === 'object' && manifestSection !== null ? manifestSection['inlineEdit'] : undefined;
|
|
17
|
+
if (inlineEdit && typeof inlineEdit === 'object') {
|
|
18
|
+
return Array.isArray(inlineEdit['disabledFields']) || Array.isArray(inlineEdit['enabledFields']);
|
|
19
|
+
}
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Imports and normalizes inline edit settings from a manifest section.
|
|
24
|
+
*
|
|
25
|
+
* This function extracts the inline edit configuration from a manifest section and
|
|
26
|
+
* returns a normalized structure containing `enabledFields`, `disabledFields`, and
|
|
27
|
+
* `connectedFields` arrays. If inline editing is not enabled, it returns `false`.
|
|
28
|
+
*
|
|
29
|
+
* @param manifestSection - The manifest section object containing potential inline edit settings.
|
|
30
|
+
* @returns A normalized inline edit configuration object with `enabledFields`, `disabledFields`,
|
|
31
|
+
* and `connectedFields` arrays (defaulting to empty arrays if not present), or `false`
|
|
32
|
+
*/
|
|
33
|
+
function importInlineEdit(manifestSection) {
|
|
34
|
+
const isEnabled = isInlineEditEnabled(manifestSection);
|
|
35
|
+
if (!isEnabled) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
const inlineEdit = typeof manifestSection === 'object' && typeof manifestSection['inlineEdit'] === 'object'
|
|
39
|
+
? manifestSection['inlineEdit']
|
|
40
|
+
: {};
|
|
41
|
+
return {
|
|
42
|
+
enabledFields: inlineEdit['enabledFields'] ?? [],
|
|
43
|
+
disabledFields: inlineEdit['disabledFields'] ?? [],
|
|
44
|
+
connectedFields: inlineEdit['connectedFields'] ?? []
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Exports inline edit configuration from a config object to a manifest section.
|
|
49
|
+
*
|
|
50
|
+
* This function handles three distinct scenarios for inline edit configuration:
|
|
51
|
+
* 1. **Boolean `true`**: Enables inline editing with empty field arrays, initializing both `enabledFields` and `disabledFields` as empty arrays.
|
|
52
|
+
* 2. **Boolean `false`**: Disables inline editing. If inline edit was previously enabled, the configuration is reset to an empty object.
|
|
53
|
+
* 3. **Object configuration**: Applies the specific field configuration from the config.
|
|
54
|
+
*
|
|
55
|
+
* @param manifestSection - The target manifest section object where inline edit settings will be written.
|
|
56
|
+
* @param configObject - The source configuration object containing the inline edit settings to be exported.
|
|
57
|
+
* @param key - The property key used to access the inline edit value from `configObject`.
|
|
58
|
+
* @param manifestKey - The property key under which to store the inline edit configuration in `manifestSection`.
|
|
59
|
+
*/
|
|
60
|
+
function exportInlineEdit(manifestSection, configObject, key, manifestKey) {
|
|
61
|
+
const inlineEdit = configObject[key];
|
|
62
|
+
if (inlineEdit === true) {
|
|
63
|
+
// In this case the user has modified the inline edit settings on the way, since the import function never creates a pure boolean true value.
|
|
64
|
+
// -> Set the default representation of enabled inline edit with empty arrays for enabled and disabled fields.
|
|
65
|
+
manifestSection[manifestKey] = { enabledFields: [], disabledFields: [] };
|
|
66
|
+
}
|
|
67
|
+
else if (inlineEdit === false) {
|
|
68
|
+
// Only modify the manifest when it inline edit was previously enabled, otherwise keep it as is.
|
|
69
|
+
if (isInlineEditEnabled(manifestSection)) {
|
|
70
|
+
delete manifestSection[manifestKey];
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
// Ensure that properties of the current inlineEdit configuration that are not known to us stay unchanged.
|
|
75
|
+
manifestSection[manifestKey] = structuredClone(manifestSection[manifestKey] || {});
|
|
76
|
+
manifestSection[manifestKey]['enabledFields'] = inlineEdit.enabledFields;
|
|
77
|
+
manifestSection[manifestKey]['disabledFields'] = inlineEdit.disabledFields;
|
|
78
|
+
if (inlineEdit.connectedFields.length > 0) {
|
|
79
|
+
manifestSection[manifestKey]['connectedFields'] = inlineEdit.connectedFields;
|
|
80
|
+
}
|
|
81
|
+
else if (Array.isArray(manifestSection[manifestKey]['connectedFields'])) {
|
|
82
|
+
delete manifestSection[manifestKey]['connectedFields'];
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
//# sourceMappingURL=InlineEdit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InlineEdit.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/InlineEdit.ts"],"names":[],"mappings":";;AAWA,kDAOC;AAaD,4CAcC;AAeD,4CA2BC;AArFD;;;;;;;;GAQG;AACH,SAAgB,mBAAmB,CAAC,eAAwB;IACxD,MAAM,UAAU,GACZ,OAAO,eAAe,KAAK,QAAQ,IAAI,eAAe,KAAK,IAAI,CAAC,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAChH,IAAI,UAAU,IAAI,OAAO,UAAU,KAAK,QAAQ,EAAE,CAAC;QAC/C,OAAO,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC;IACrG,CAAC;IACD,OAAO,KAAK,CAAC;AACjB,CAAC;AAED;;;;;;;;;;GAUG;AACH,SAAgB,gBAAgB,CAAC,eAAwB;IACrD,MAAM,SAAS,GAAG,mBAAmB,CAAC,eAAe,CAAC,CAAC;IACvD,IAAI,CAAC,SAAS,EAAE,CAAC;QACb,OAAO,KAAK,CAAC;IACjB,CAAC;IACD,MAAM,UAAU,GACZ,OAAO,eAAe,KAAK,QAAQ,IAAI,OAAO,eAAe,CAAC,YAAY,CAAC,KAAK,QAAQ;QACpF,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC;QAC/B,CAAC,CAAC,EAAE,CAAC;IACb,OAAO;QACH,aAAa,EAAE,UAAU,CAAC,eAAe,CAAC,IAAI,EAAE;QAChD,cAAc,EAAE,UAAU,CAAC,gBAAgB,CAAC,IAAI,EAAE;QAClD,eAAe,EAAE,UAAU,CAAC,iBAAiB,CAAC,IAAI,EAAE;KACvD,CAAC;AACN,CAAC;AAED;;;;;;;;;;;;GAYG;AACH,SAAgB,gBAAgB,CAC5B,eAAwB,EACxB,YAAqB,EACrB,GAAW,EACX,WAAoB;IAEpB,MAAM,UAAU,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC;IACrC,IAAI,UAAU,KAAK,IAAI,EAAE,CAAC;QACtB,6IAA6I;QAC7I,8GAA8G;QAC9G,eAAe,CAAC,WAAW,CAAC,GAAG,EAAE,aAAa,EAAE,EAAE,EAAE,cAAc,EAAE,EAAE,EAAE,CAAC;IAC7E,CAAC;SAAM,IAAI,UAAU,KAAK,KAAK,EAAE,CAAC;QAC9B,gGAAgG;QAChG,IAAI,mBAAmB,CAAC,eAAe,CAAC,EAAE,CAAC;YACvC,OAAO,eAAe,CAAC,WAAW,CAAC,CAAC;QACxC,CAAC;IACL,CAAC;SAAM,CAAC;QACJ,0GAA0G;QAC1G,eAAe,CAAC,WAAW,CAAC,GAAG,eAAe,CAAC,eAAe,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC,CAAC;QACnF,eAAe,CAAC,WAAW,CAAC,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,aAAa,CAAC;QACzE,eAAe,CAAC,WAAW,CAAC,CAAC,gBAAgB,CAAC,GAAG,UAAU,CAAC,cAAc,CAAC;QAC3E,IAAI,UAAU,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACxC,eAAe,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,GAAG,UAAU,CAAC,eAAe,CAAC;QACjF,CAAC;aAAM,IAAI,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC;YACxE,OAAO,eAAe,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,CAAC;QAC3D,CAAC;IACL,CAAC;AACL,CAAC"}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import type { v4 } from '@sap/ux-specification-types';
|
|
2
2
|
import type { CustomSectionActionOP } from './ObjectPageSectionAction';
|
|
3
|
-
import { Decorator } from '../../sync-rules';
|
|
4
3
|
export declare class ObjectPageCustomSectionActions implements v4.ObjectPageCustomSectionActions {
|
|
5
4
|
[key: string]: CustomSectionActionOP;
|
|
6
5
|
}
|
|
7
|
-
export declare class ObjectPageCustomSectionFragment
|
|
6
|
+
export declare class ObjectPageCustomSectionFragment implements v4.ObjectPageCustomSectionFragment {
|
|
8
7
|
relatedFacet: string;
|
|
9
8
|
relativePosition: v4.SectionPosition;
|
|
10
9
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageCustomSection.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageCustomSection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAY,MAAM,6BAA6B,CAAC;AAGhE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"ObjectPageCustomSection.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageCustomSection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAY,MAAM,6BAA6B,CAAC;AAGhE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAEvE,qBAAa,8BAA+B,YAAW,EAAE,CAAC,8BAA8B;IACpF,CAAC,GAAG,EAAE,MAAM,GAAG,qBAAqB,CAAC;CACxC;AAED,qBAAa,+BAAgC,YAAW,EAAE,CAAC,+BAA+B;IAYtF,YAAY,EAAE,MAAM,CAAC;IAYrB,gBAAgB,EAAE,EAAE,CAAC,eAAe,CAAC;IAUrC,KAAK,EAAE,MAAM,CAAC;IAed,YAAY,EAAE,MAAM,CAAC;IAerB,QAAQ,EAAE,MAAM,CAAC;IAEjB,OAAO,EAAE,8BAA8B,CAAC;CAC3C;AAED,qBAAa,kCACT,SAAQ,+BACR,YAAW,EAAE,CAAC,kCAAkC;IAcxC,YAAY,EAAE,MAAM,CAAC;IAcrB,gBAAgB,EAAE,EAAE,CAAC,eAAe,CAAC;IAUrC,KAAK,EAAE,MAAM,CAAC;IAed,YAAY,EAAE,MAAM,CAAC;IAerB,QAAQ,EAAE,MAAM,CAAC;CAC5B"}
|
|
@@ -9,11 +9,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9
9
|
exports.ObjectPageCustomSubSectionFragment = exports.ObjectPageCustomSectionFragment = exports.ObjectPageCustomSectionActions = void 0;
|
|
10
10
|
const decorators_1 = require("../../../common/decoration/decorators");
|
|
11
11
|
const application_1 = require("../../application");
|
|
12
|
-
const sync_rules_1 = require("../../sync-rules");
|
|
13
12
|
class ObjectPageCustomSectionActions {
|
|
14
13
|
}
|
|
15
14
|
exports.ObjectPageCustomSectionActions = ObjectPageCustomSectionActions;
|
|
16
|
-
class ObjectPageCustomSectionFragment
|
|
15
|
+
class ObjectPageCustomSectionFragment {
|
|
17
16
|
}
|
|
18
17
|
exports.ObjectPageCustomSectionFragment = ObjectPageCustomSectionFragment;
|
|
19
18
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageCustomSection.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageCustomSection.ts"],"names":[],"mappings":";;;;;;;;;AACA,sEAA2E;AAC3E,mDAAkF;
|
|
1
|
+
{"version":3,"file":"ObjectPageCustomSection.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageCustomSection.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,39 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export declare class
|
|
8
|
-
name?: v4.TableCreationModeType
|
|
9
|
-
}
|
|
10
|
-
export declare class TableCreationModeInlineOPTreeTable extends TableCreationModeOPTreeTable implements v4.TableCreationModeInlineOPTreeTable {
|
|
11
|
-
name?: v4.TableCreationModeType.Inline;
|
|
12
|
-
}
|
|
13
|
-
export declare class TableCreationModeCreationDialogOPTreeTable extends TableCreationModeOPTreeTable implements v4.TableCreationModeCreationDialogOPTreeTable {
|
|
14
|
-
name?: v4.TableCreationModeType.CreationDialog;
|
|
15
|
-
creationFields?: string[];
|
|
16
|
-
}
|
|
17
|
-
export declare class TableCreationModeInlineOPTable implements v4.TableCreationModeInlineOPTable {
|
|
18
|
-
name?: v4.TableCreationModeType.Inline;
|
|
1
|
+
import { v4 } from '@sap/ux-specification-types';
|
|
2
|
+
import type { PopinLayout } from 'sap/m/library';
|
|
3
|
+
/**
|
|
4
|
+
* Creation mode configuration for Object Page tables.
|
|
5
|
+
* Uses decorators to control property visibility based on table type and creation mode.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TableCreationModeOP implements v4.TableCreationModeOP {
|
|
8
|
+
name?: v4.TableCreationModeType;
|
|
19
9
|
createAtEnd?: boolean;
|
|
20
|
-
}
|
|
21
|
-
export declare class TableCreationModeInlineCreationsRowsOPResponsiveTable implements v4.TableCreationModeInlineCreationsRowsOPResponsiveTable {
|
|
22
|
-
name?: v4.TableCreationModeType.InlineCreationRows;
|
|
23
10
|
inlineCreationRowsHiddenInEditMode?: boolean;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
name?: v4.TableCreationModeType.InlineCreationRows;
|
|
27
|
-
}
|
|
28
|
-
export declare class TableCreationModeNewPageOPTable implements v4.TableCreationModeNewPageOPTable {
|
|
29
|
-
name?: v4.TableCreationModeType.NewPage;
|
|
30
|
-
}
|
|
31
|
-
export declare class TableCreationModeCreationDialogOPTable implements v4.TableCreationModeCreationDialogOPTable {
|
|
32
|
-
name?: v4.TableCreationModeType.CreationDialog;
|
|
11
|
+
createInPlace?: boolean;
|
|
12
|
+
isCreateEnabled?: string;
|
|
33
13
|
creationFields?: string[];
|
|
34
|
-
}
|
|
35
|
-
export declare class TableCreationModeExternalOPTable implements v4.TableCreationModeExternalOPTable {
|
|
36
|
-
name?: v4.TableCreationModeType.External;
|
|
37
14
|
outbound?: string;
|
|
38
15
|
}
|
|
39
16
|
export declare class PersonalizationTypeOP implements v4.PersonalizationTypeOP {
|
|
@@ -61,28 +38,13 @@ export declare class ObjectPageTable implements v4.ObjectPageTable {
|
|
|
61
38
|
widthIncludingColumnHeader?: boolean;
|
|
62
39
|
disableCopyToClipboard?: boolean;
|
|
63
40
|
enableMassEdit?: v4.EnableMassEdit;
|
|
64
|
-
|
|
65
|
-
export declare class ObjectPageTableRowCountable extends ObjectPageTable implements v4.RowCountable {
|
|
41
|
+
creationMode?: TableCreationModeOP;
|
|
66
42
|
rowCountMode?: v4.RowCountMode;
|
|
67
43
|
rowCount?: number;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
type?: v4.TableTypeV4.ResponsiveTable;
|
|
71
|
-
creationMode?: TableCreationModeInlineOPTable | TableCreationModeInlineCreationsRowsOPResponsiveTable | TableCreationModeNewPageOPTable | TableCreationModeCreationDialogOPTable | TableCreationModeExternalOPTable;
|
|
44
|
+
popinLayout?: PopinLayout;
|
|
45
|
+
analyticalConfiguration?: ObjectPageAnalyticalConfiguration;
|
|
72
46
|
}
|
|
73
47
|
export declare class ObjectPageAnalyticalConfiguration implements v4.ObjectPageAnalyticalConfiguration {
|
|
74
48
|
aggregationOnLeafLevel?: boolean;
|
|
75
49
|
}
|
|
76
|
-
export declare class ObjectPageAnalyticalTableV4 extends ObjectPageTableRowCountable implements v4.ObjectPageAnalyticalTableV4 {
|
|
77
|
-
type?: v4.TableTypeV4.AnalyticalTable;
|
|
78
|
-
analyticalConfiguration?: ObjectPageAnalyticalConfiguration;
|
|
79
|
-
}
|
|
80
|
-
export declare class ObjectPageGridTableV4 extends ObjectPageTableRowCountable implements v4.ObjectPageGridTableV4 {
|
|
81
|
-
type?: v4.TableTypeV4.GridTable;
|
|
82
|
-
creationMode?: TableCreationModeInlineOPTable | TableCreationModeInlineCreationsRowsOPGridTable | TableCreationModeNewPageOPTable | TableCreationModeCreationDialogOPTable | TableCreationModeExternalOPTable;
|
|
83
|
-
}
|
|
84
|
-
export declare class ObjectPageTreeTableV4 extends ObjectPageTableRowCountable implements v4.ObjectPageTreeTableV4 {
|
|
85
|
-
type?: v4.TableTypeV4.TreeTable;
|
|
86
|
-
creationMode?: TableCreationModeNewPageOPTreeTable | TableCreationModeInlineOPTreeTable | TableCreationModeCreationDialogOPTreeTable;
|
|
87
|
-
}
|
|
88
50
|
//# sourceMappingURL=ObjectPageTable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageTable.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageTable.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"ObjectPageTable.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageTable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAiB,MAAM,6BAA6B,CAAC;AAiBhE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;;GAGG;AACH,qBAAa,mBAAoB,YAAW,EAAE,CAAC,mBAAmB;IAuB9D,IAAI,CAAC,EAAE,EAAE,CAAC,qBAAqB,CAAC;IA+DhC,WAAW,CAAC,EAAE,OAAO,CAAC;IAqDtB,kCAAkC,CAAC,EAAE,OAAO,CAAC;IAmC7C,aAAa,CAAC,EAAE,OAAO,CAAC;IAmCxB,eAAe,CAAC,EAAE,MAAM,CAAC;IAiCzB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAmC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,qBAAa,qBAAsB,YAAW,EAAE,CAAC,qBAAqB;IAQlE,MAAM,CAAC,EAAE,OAAO,CAAC;IASjB,IAAI,CAAC,EAAE,OAAO,CAAC;IASf,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,qBAAa,yBAA0B,YAAW,EAAE,CAAC,uBAAuB;IAOxE,KAAK,EAAE,EAAE,CAAC,sBAAsB,EAAE,CAAC;IAQnC,cAAc,CAAC,EAAE,OAAO,CAAC;IAQzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,qBAAa,eAAgB,YAAW,EAAE,CAAC,eAAe;IAStD,IAAI,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC;IAWtB,eAAe,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC;IAUlD,aAAa,CAAC,EAAE,EAAE,CAAC,aAAa,CAAC;IAUjC,SAAS,CAAC,EAAE,OAAO,CAAC;IAUpB,cAAc,CAAC,EAAE,MAAM,CAAC;IAWxB,YAAY,CAAC,EAAE,OAAO,CAAC;IAUvB,qBAAqB,CAAC,EAAE,yBAAyB,CAAC;IAWlD,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAU/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAU3B,WAAW,CAAC,EAAE,OAAO,CAAC;IAWtB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAW5B,0BAA0B,CAAC,EAAE,OAAO,CAAC;IAWrC,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAYjC,cAAc,CAAC,EAAE,EAAE,CAAC,cAAc,CAAC;IAkBnC,YAAY,CAAC,EAAE,mBAAmB,CAAC;IAmCnC,YAAY,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC;IAmB/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAmBlB,WAAW,CAAC,EAAE,WAAW,CAAC;IAmB1B,uBAAuB,CAAC,EAAE,iCAAiC,CAAC;CAC/D;AAED,qBAAa,iCAAkC,YAAW,EAAE,CAAC,iCAAiC;IAS1F,sBAAsB,CAAC,EAAE,OAAO,CAAC;CACpC"}
|