@sap/ux-specification 1.142.4 → 1.142.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ListReportNew.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +317 -312
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +202 -7
- package/dist/schemas/v4/ApplicationV4.json +14 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +50 -20
- package/dist/schemas/v4/ObjectPageConfig.json +112 -728
- package/dist/specification/package.json +8 -8
- package/dist/specification/scripts/generate-validity-report.js +1 -1
- package/dist/specification/scripts/generate-validity-report.js.map +1 -1
- package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
- package/dist/specification/scripts/macros/corrections.js +15 -0
- package/dist/specification/scripts/macros/corrections.js.map +1 -1
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +23 -10
- package/dist/specification/scripts/macros/schema.js.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +39 -3
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/ftfs/ftfs.d.ts +8 -0
- package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
- package/dist/specification/src/ftfs/ftfs.js +1 -0
- package/dist/specification/src/ftfs/ftfs.js.map +1 -1
- package/dist/specification/src/ftfs/index.d.ts +1 -1
- package/dist/specification/src/ftfs/index.d.ts.map +1 -1
- package/dist/specification/src/ftfs/index.js +2 -1
- package/dist/specification/src/ftfs/index.js.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js +3 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts +91 -0
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js +139 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts +95 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js +210 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +58 -22
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js +23 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +0 -8
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +0 -15
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.d.ts +4 -0
- package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.js +4 -0
- package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts +38 -0
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js +3 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js +50 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js +46 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts +26 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js +77 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js +43 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js +68 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts +19 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js +48 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts +6 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js +14 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js.map +1 -0
- package/dist/specification/src/sync/common/i18n.json +28 -0
- package/dist/specification/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/specification/src/sync/common/importProject.js +2 -0
- package/dist/specification/src/sync/common/importProject.js.map +1 -1
- package/dist/specification/src/sync/common/rules.d.ts +1 -1
- package/dist/specification/src/sync/common/rules.js +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts +4 -5
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.js +29 -20
- package/dist/specification/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/specification/src/sync/v2/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/export.js +3 -2
- package/dist/specification/src/sync/v2/export/export.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.js +48 -19
- package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts +2 -0
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js +17 -6
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts +54 -6
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.js +106 -12
- package/dist/specification/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +4 -4
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts +12 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js +167 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +3 -3
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +59 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +582 -7
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js +29 -6
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js.map +1 -1
- package/dist/specification/src/sync/v2/types.d.ts +2 -0
- package/dist/specification/src/sync/v2/types.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/types.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +25 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +28 -4
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/application.d.ts +1 -0
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +10 -0
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -5
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.js +2 -7
- package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +9 -3
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +10 -6
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +11 -51
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +95 -246
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +6 -27
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +11 -38
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.js +2 -4
- package/dist/specification/src/sync/v4/export/factory.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +1 -0
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +212 -46
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/app.d.ts +11 -0
- package/dist/specification/src/sync/v4/generate/app.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/app.js +31 -0
- package/dist/specification/src/sync/v4/generate/app.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +13 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +74 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js +4 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +29 -27
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +12 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +32 -13
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +103 -78
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts +7 -4
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js +34 -19
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts +1 -2
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +136 -95
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js +20 -0
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.js +11 -50
- package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js +2 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +3 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +1 -294
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +0 -753
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js +10 -4
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.d.ts +19 -0
- package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.js +34 -0
- package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts +23 -3
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +239 -42
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/specification/test/test-utils/utils.d.ts +1 -0
- package/dist/specification/test/test-utils/utils.d.ts.map +1 -1
- package/dist/specification/test/test-utils/utils.js +11 -0
- package/dist/specification/test/test-utils/utils.js.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +2 -2
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.js +6 -6
- package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -1
- package/dist/templates/AnalyticalTableColumnsExtension.xml +3 -3
- package/dist/templates/GridTableColumnsExtension.xml +3 -3
- package/dist/templates/ResponsiveTableColumnsExtension.xml +2 -2
- package/dist/templates/TreeTableColumnsExtension.xml +4 -4
- package/dist/templates/fragment.xml +3 -3
- package/dist/templates/view.xml +3 -3
- package/dist/types/src/apiTypes.d.ts +15 -5
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js +1 -0
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/types.d.ts +11 -6
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +12 -7
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/v4/application.d.ts +15 -0
- package/dist/types/src/v4/application.d.ts.map +1 -1
- package/dist/types/src/v4/application.js +10 -0
- package/dist/types/src/v4/application.js.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts +86 -252
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
- package/package.json +8 -8
|
@@ -6,14 +6,20 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.
|
|
9
|
+
exports.ObjectPageAnalyticalConfiguration = exports.ObjectPageTable = exports.QuickVariantSelectionV4OP = exports.PersonalizationTypeOP = exports.TableCreationModeOP = void 0;
|
|
10
10
|
const ux_specification_types_1 = require("@sap/ux-specification-types");
|
|
11
|
+
const ux_specification_types_2 = require("@sap/ux-specification-types");
|
|
11
12
|
const decorators_1 = require("../../../common/decoration/decorators");
|
|
13
|
+
const decorator_paths_1 = require("../../../common/decoration/decorator-paths");
|
|
12
14
|
const application_1 = require("../../application");
|
|
13
15
|
const Table_1 = require("./Table");
|
|
14
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Creation mode configuration for Object Page tables.
|
|
18
|
+
* Uses decorators to control property visibility based on table type and creation mode.
|
|
19
|
+
*/
|
|
20
|
+
class TableCreationModeOP {
|
|
15
21
|
}
|
|
16
|
-
exports.
|
|
22
|
+
exports.TableCreationModeOP = TableCreationModeOP;
|
|
17
23
|
__decorate([
|
|
18
24
|
(0, decorators_1.syncRule)({
|
|
19
25
|
manifest: {
|
|
@@ -22,8 +28,15 @@ __decorate([
|
|
|
22
28
|
delete: Table_1.deleteCreationModeProperty
|
|
23
29
|
}
|
|
24
30
|
}),
|
|
25
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
26
|
-
|
|
31
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b'),
|
|
32
|
+
(0, decorators_1.hide)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable)),
|
|
33
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.name)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'name', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
34
|
+
(0, decorators_1.enums)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable), [
|
|
35
|
+
ux_specification_types_1.v4.TableCreationModeType.NewPage,
|
|
36
|
+
ux_specification_types_1.v4.TableCreationModeType.Inline,
|
|
37
|
+
ux_specification_types_1.v4.TableCreationModeType.CreationDialog
|
|
38
|
+
])
|
|
39
|
+
], TableCreationModeOP.prototype, "name", void 0);
|
|
27
40
|
__decorate([
|
|
28
41
|
(0, decorators_1.syncRule)({
|
|
29
42
|
manifest: {
|
|
@@ -32,8 +45,17 @@ __decorate([
|
|
|
32
45
|
delete: Table_1.deleteCreationModeProperty
|
|
33
46
|
}
|
|
34
47
|
}),
|
|
35
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/
|
|
36
|
-
|
|
48
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b'),
|
|
49
|
+
(0, decorators_1.hide)((0, decorator_paths_1.or)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable), (0, decorator_paths_1.and)((0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.name), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.Inline)),
|
|
50
|
+
// When name is not set, navigation determines default: NewPage if navigation exists, Inline otherwise
|
|
51
|
+
(0, decorator_paths_1.and)((0, decorator_paths_1.not)((0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.name)), (0, decorator_paths_1.when)(decorator_paths_1.opTableContext.hasNavigation, true)))),
|
|
52
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.createAtEnd)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'createAtEnd', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
53
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.createAtEnd)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'createAtEnd', tableType: ux_specification_types_1.v4.TableTypeV4.TreeTable }, { deletable: true })),
|
|
54
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.name), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.Inline), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.createAtEnd)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_CREATION_MODE', { propertyName: 'createAtEnd', creationMode: ux_specification_types_1.v4.TableCreationModeType.Inline }, { deletable: true })),
|
|
55
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)(
|
|
56
|
+
// When name is not set, default creation mode is determined by navigation (NewPage if navigation exists)
|
|
57
|
+
(0, decorator_paths_1.not)((0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.name)), (0, decorator_paths_1.when)(decorator_paths_1.opTableContext.hasNavigation, true), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.createAtEnd)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_CREATION_MODE', { propertyName: 'createAtEnd', creationMode: ux_specification_types_1.v4.TableCreationModeType.Inline }, { deletable: true }))
|
|
58
|
+
], TableCreationModeOP.prototype, "createAtEnd", void 0);
|
|
37
59
|
__decorate([
|
|
38
60
|
(0, decorators_1.syncRule)({
|
|
39
61
|
manifest: {
|
|
@@ -42,24 +64,15 @@ __decorate([
|
|
|
42
64
|
delete: Table_1.deleteCreationModeProperty
|
|
43
65
|
}
|
|
44
66
|
}),
|
|
45
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
export: Table_1.exportCreationModeProperty,
|
|
55
|
-
delete: Table_1.deleteCreationModeProperty
|
|
56
|
-
}
|
|
57
|
-
}),
|
|
58
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
59
|
-
], TableCreationModeNewPageOPTreeTable.prototype, "name", void 0);
|
|
60
|
-
class TableCreationModeInlineOPTreeTable extends TableCreationModeOPTreeTable {
|
|
61
|
-
}
|
|
62
|
-
exports.TableCreationModeInlineOPTreeTable = TableCreationModeInlineOPTreeTable;
|
|
67
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b'),
|
|
68
|
+
(0, decorators_1.hide)((0, decorator_paths_1.or)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.InlineCreationRows), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable))),
|
|
69
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.inlineCreationRowsHiddenInEditMode)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'inlineCreationRowsHiddenInEditMode', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
70
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.inlineCreationRowsHiddenInEditMode)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'inlineCreationRowsHiddenInEditMode', tableType: ux_specification_types_1.v4.TableTypeV4.ResponsiveTable }, { deletable: true })),
|
|
71
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.InlineCreationRows), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.inlineCreationRowsHiddenInEditMode)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_CREATION_MODE', {
|
|
72
|
+
propertyName: 'inlineCreationRowsHiddenInEditMode',
|
|
73
|
+
creationMode: ux_specification_types_1.v4.TableCreationModeType.InlineCreationRows
|
|
74
|
+
}, { deletable: true }))
|
|
75
|
+
], TableCreationModeOP.prototype, "inlineCreationRowsHiddenInEditMode", void 0);
|
|
63
76
|
__decorate([
|
|
64
77
|
(0, decorators_1.syncRule)({
|
|
65
78
|
manifest: {
|
|
@@ -68,11 +81,11 @@ __decorate([
|
|
|
68
81
|
delete: Table_1.deleteCreationModeProperty
|
|
69
82
|
}
|
|
70
83
|
}),
|
|
71
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
75
|
-
|
|
84
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f'),
|
|
85
|
+
(0, decorators_1.hide)((0, decorator_paths_1.or)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable))),
|
|
86
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.createInPlace)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'createInPlace', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
87
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.createInPlace)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'createInPlace', tableType: ux_specification_types_1.v4.TableTypeV4.TreeTable }, { deletable: true }))
|
|
88
|
+
], TableCreationModeOP.prototype, "createInPlace", void 0);
|
|
76
89
|
__decorate([
|
|
77
90
|
(0, decorators_1.syncRule)({
|
|
78
91
|
manifest: {
|
|
@@ -81,8 +94,11 @@ __decorate([
|
|
|
81
94
|
delete: Table_1.deleteCreationModeProperty
|
|
82
95
|
}
|
|
83
96
|
}),
|
|
84
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/
|
|
85
|
-
|
|
97
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f'),
|
|
98
|
+
(0, decorators_1.hide)((0, decorator_paths_1.or)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable))),
|
|
99
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.isCreateEnabled)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'isCreateEnabled', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
100
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.TreeTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.isCreateEnabled)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'isCreateEnabled', tableType: ux_specification_types_1.v4.TableTypeV4.TreeTable }, { deletable: true }))
|
|
101
|
+
], TableCreationModeOP.prototype, "isCreateEnabled", void 0);
|
|
86
102
|
__decorate([
|
|
87
103
|
(0, decorators_1.syncRule)({
|
|
88
104
|
manifest: {
|
|
@@ -91,57 +107,11 @@ __decorate([
|
|
|
91
107
|
import: Table_1.importCreationModeCreationFieldsProperty
|
|
92
108
|
}
|
|
93
109
|
}),
|
|
94
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0')
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
__decorate([
|
|
100
|
-
(0, decorators_1.syncRule)({
|
|
101
|
-
manifest: {
|
|
102
|
-
path: application_1.getTableSettingsPathForOP,
|
|
103
|
-
export: Table_1.exportCreationModeProperty,
|
|
104
|
-
delete: Table_1.deleteCreationModeProperty
|
|
105
|
-
}
|
|
106
|
-
}),
|
|
107
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
108
|
-
], TableCreationModeInlineOPTable.prototype, "name", void 0);
|
|
109
|
-
__decorate([
|
|
110
|
-
(0, decorators_1.syncRule)({
|
|
111
|
-
manifest: {
|
|
112
|
-
path: application_1.getTableSettingsPathForOP,
|
|
113
|
-
export: Table_1.exportCreationModeProperty,
|
|
114
|
-
delete: Table_1.deleteCreationModeProperty
|
|
115
|
-
}
|
|
116
|
-
}),
|
|
117
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
118
|
-
], TableCreationModeInlineOPTable.prototype, "createAtEnd", void 0);
|
|
119
|
-
class TableCreationModeInlineCreationsRowsOPResponsiveTable {
|
|
120
|
-
}
|
|
121
|
-
exports.TableCreationModeInlineCreationsRowsOPResponsiveTable = TableCreationModeInlineCreationsRowsOPResponsiveTable;
|
|
122
|
-
__decorate([
|
|
123
|
-
(0, decorators_1.syncRule)({
|
|
124
|
-
manifest: {
|
|
125
|
-
path: application_1.getTableSettingsPathForOP,
|
|
126
|
-
export: Table_1.exportCreationModeProperty,
|
|
127
|
-
delete: Table_1.deleteCreationModeProperty
|
|
128
|
-
}
|
|
129
|
-
}),
|
|
130
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
131
|
-
], TableCreationModeInlineCreationsRowsOPResponsiveTable.prototype, "name", void 0);
|
|
132
|
-
__decorate([
|
|
133
|
-
(0, decorators_1.syncRule)({
|
|
134
|
-
manifest: {
|
|
135
|
-
path: application_1.getTableSettingsPathForOP,
|
|
136
|
-
export: Table_1.exportCreationModeProperty,
|
|
137
|
-
delete: Table_1.deleteCreationModeProperty
|
|
138
|
-
}
|
|
139
|
-
}),
|
|
140
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
141
|
-
], TableCreationModeInlineCreationsRowsOPResponsiveTable.prototype, "inlineCreationRowsHiddenInEditMode", void 0);
|
|
142
|
-
class TableCreationModeInlineCreationsRowsOPGridTable {
|
|
143
|
-
}
|
|
144
|
-
exports.TableCreationModeInlineCreationsRowsOPGridTable = TableCreationModeInlineCreationsRowsOPGridTable;
|
|
110
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0'),
|
|
111
|
+
(0, decorators_1.hide)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.CreationDialog)),
|
|
112
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.creationFields)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'creationFields', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
113
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.CreationDialog), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.creationFields)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_CREATION_MODE', { propertyName: 'creationFields', creationMode: ux_specification_types_1.v4.TableCreationModeType.CreationDialog }, { deletable: true }))
|
|
114
|
+
], TableCreationModeOP.prototype, "creationFields", void 0);
|
|
145
115
|
__decorate([
|
|
146
116
|
(0, decorators_1.syncRule)({
|
|
147
117
|
manifest: {
|
|
@@ -150,67 +120,11 @@ __decorate([
|
|
|
150
120
|
delete: Table_1.deleteCreationModeProperty
|
|
151
121
|
}
|
|
152
122
|
}),
|
|
153
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
__decorate([
|
|
159
|
-
(0, decorators_1.syncRule)({
|
|
160
|
-
manifest: {
|
|
161
|
-
path: application_1.getTableSettingsPathForOP,
|
|
162
|
-
export: Table_1.exportCreationModeProperty,
|
|
163
|
-
delete: Table_1.deleteCreationModeProperty
|
|
164
|
-
}
|
|
165
|
-
}),
|
|
166
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
167
|
-
], TableCreationModeNewPageOPTable.prototype, "name", void 0);
|
|
168
|
-
class TableCreationModeCreationDialogOPTable {
|
|
169
|
-
}
|
|
170
|
-
exports.TableCreationModeCreationDialogOPTable = TableCreationModeCreationDialogOPTable;
|
|
171
|
-
__decorate([
|
|
172
|
-
(0, decorators_1.syncRule)({
|
|
173
|
-
manifest: {
|
|
174
|
-
path: application_1.getTableSettingsPathForOP,
|
|
175
|
-
export: Table_1.exportCreationModeProperty,
|
|
176
|
-
delete: Table_1.deleteCreationModeProperty
|
|
177
|
-
}
|
|
178
|
-
}),
|
|
179
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
180
|
-
], TableCreationModeCreationDialogOPTable.prototype, "name", void 0);
|
|
181
|
-
__decorate([
|
|
182
|
-
(0, decorators_1.syncRule)({
|
|
183
|
-
manifest: {
|
|
184
|
-
path: application_1.getTableSettingsPathForOP,
|
|
185
|
-
export: Table_1.exportCreationModeCreationFieldsProperty,
|
|
186
|
-
import: Table_1.importCreationModeCreationFieldsProperty
|
|
187
|
-
}
|
|
188
|
-
}),
|
|
189
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0')
|
|
190
|
-
], TableCreationModeCreationDialogOPTable.prototype, "creationFields", void 0);
|
|
191
|
-
class TableCreationModeExternalOPTable {
|
|
192
|
-
}
|
|
193
|
-
exports.TableCreationModeExternalOPTable = TableCreationModeExternalOPTable;
|
|
194
|
-
__decorate([
|
|
195
|
-
(0, decorators_1.syncRule)({
|
|
196
|
-
manifest: {
|
|
197
|
-
path: application_1.getTableSettingsPathForOP,
|
|
198
|
-
export: Table_1.exportCreationModeProperty,
|
|
199
|
-
delete: Table_1.deleteCreationModeProperty
|
|
200
|
-
}
|
|
201
|
-
}),
|
|
202
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b')
|
|
203
|
-
], TableCreationModeExternalOPTable.prototype, "name", void 0);
|
|
204
|
-
__decorate([
|
|
205
|
-
(0, decorators_1.syncRule)({
|
|
206
|
-
manifest: {
|
|
207
|
-
path: application_1.getTableSettingsPathForOP,
|
|
208
|
-
export: Table_1.exportCreationModeProperty,
|
|
209
|
-
delete: Table_1.deleteCreationModeProperty
|
|
210
|
-
}
|
|
211
|
-
}),
|
|
212
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/5c2bc2ea8a7e482e968124959354d736')
|
|
213
|
-
], TableCreationModeExternalOPTable.prototype, "outbound", void 0);
|
|
123
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/topic/5c2bc2ea8a7e482e968124959354d736'),
|
|
124
|
+
(0, decorators_1.hide)((0, decorator_paths_1.or)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.External))),
|
|
125
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.outbound)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'outbound', tableType: decorator_paths_1.opTableContext.type }, { deletable: true })),
|
|
126
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.creationMode.name, ux_specification_types_1.v4.TableCreationModeType.External), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode.outbound)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_CREATION_MODE', { propertyName: 'outbound', creationMode: ux_specification_types_1.v4.TableCreationModeType.External }, { deletable: true }))
|
|
127
|
+
], TableCreationModeOP.prototype, "outbound", void 0);
|
|
214
128
|
class PersonalizationTypeOP {
|
|
215
129
|
}
|
|
216
130
|
exports.PersonalizationTypeOP = PersonalizationTypeOP;
|
|
@@ -247,21 +161,21 @@ exports.QuickVariantSelectionV4OP = QuickVariantSelectionV4OP;
|
|
|
247
161
|
__decorate([
|
|
248
162
|
(0, decorators_1.syncRule)({
|
|
249
163
|
manifest: {
|
|
250
|
-
path: (pageName, manifest, sectionId) => (0, application_1.getTableSettingsPathForOP)(pageName, manifest, sectionId) +
|
|
164
|
+
path: (pageName, manifest, sectionId) => (0, application_1.getTableSettingsPathForOP)(pageName, manifest, sectionId) + ux_specification_types_2.QUICKVARPATH
|
|
251
165
|
}
|
|
252
166
|
})
|
|
253
167
|
], QuickVariantSelectionV4OP.prototype, "paths", void 0);
|
|
254
168
|
__decorate([
|
|
255
169
|
(0, decorators_1.syncRule)({
|
|
256
170
|
manifest: {
|
|
257
|
-
path: (pageName, manifest, sectionId) => (0, application_1.getTableSettingsPathForOP)(pageName, manifest, sectionId) +
|
|
171
|
+
path: (pageName, manifest, sectionId) => (0, application_1.getTableSettingsPathForOP)(pageName, manifest, sectionId) + ux_specification_types_2.QUICKVARPATH
|
|
258
172
|
}
|
|
259
173
|
})
|
|
260
174
|
], QuickVariantSelectionV4OP.prototype, "hideTableTitle", void 0);
|
|
261
175
|
__decorate([
|
|
262
176
|
(0, decorators_1.syncRule)({
|
|
263
177
|
manifest: {
|
|
264
|
-
path: (pageName, manifest, sectionId) => (0, application_1.getTableSettingsPathForOP)(pageName, manifest, sectionId) +
|
|
178
|
+
path: (pageName, manifest, sectionId) => (0, application_1.getTableSettingsPathForOP)(pageName, manifest, sectionId) + ux_specification_types_2.QUICKVARPATH
|
|
265
179
|
}
|
|
266
180
|
})
|
|
267
181
|
], QuickVariantSelectionV4OP.prototype, "showCounts", void 0);
|
|
@@ -416,45 +330,6 @@ __decorate([
|
|
|
416
330
|
since: '1.126.0'
|
|
417
331
|
})
|
|
418
332
|
], ObjectPageTable.prototype, "enableMassEdit", void 0);
|
|
419
|
-
class ObjectPageTableRowCountable extends ObjectPageTable {
|
|
420
|
-
}
|
|
421
|
-
exports.ObjectPageTableRowCountable = ObjectPageTableRowCountable;
|
|
422
|
-
__decorate([
|
|
423
|
-
(0, decorators_1.syncRule)({
|
|
424
|
-
manifest: {
|
|
425
|
-
path: application_1.getTableSettingsPathForOP
|
|
426
|
-
}
|
|
427
|
-
}),
|
|
428
|
-
(0, decorators_1.validity)({
|
|
429
|
-
since: '1.120.0'
|
|
430
|
-
/**
|
|
431
|
-
* since '1.130.0': 'Interactive', special message in sync/v4/generate/objectPage.ts
|
|
432
|
-
*/
|
|
433
|
-
})
|
|
434
|
-
], ObjectPageTableRowCountable.prototype, "rowCountMode", void 0);
|
|
435
|
-
__decorate([
|
|
436
|
-
(0, decorators_1.syncRule)({
|
|
437
|
-
manifest: {
|
|
438
|
-
path: application_1.getTableSettingsPathForOP
|
|
439
|
-
}
|
|
440
|
-
}),
|
|
441
|
-
(0, decorators_1.validity)({
|
|
442
|
-
since: '1.120.0'
|
|
443
|
-
})
|
|
444
|
-
], ObjectPageTableRowCountable.prototype, "rowCount", void 0);
|
|
445
|
-
class ObjectPageResponsiveTableV4 extends ObjectPageTable {
|
|
446
|
-
}
|
|
447
|
-
exports.ObjectPageResponsiveTableV4 = ObjectPageResponsiveTableV4;
|
|
448
|
-
__decorate([
|
|
449
|
-
(0, decorators_1.syncRule)({
|
|
450
|
-
manifest: {
|
|
451
|
-
path: application_1.getTableSettingsPathForOP
|
|
452
|
-
}
|
|
453
|
-
}),
|
|
454
|
-
(0, decorators_1.validity)({
|
|
455
|
-
since: '1.84.0'
|
|
456
|
-
})
|
|
457
|
-
], ObjectPageResponsiveTableV4.prototype, "type", void 0);
|
|
458
333
|
__decorate([
|
|
459
334
|
(0, decorators_1.syncRule)({
|
|
460
335
|
manifest: {
|
|
@@ -465,34 +340,29 @@ __decorate([
|
|
|
465
340
|
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/api/sap.fe.macros.Table%23controlProperties'),
|
|
466
341
|
(0, decorators_1.validity)({
|
|
467
342
|
since: '1.130.0'
|
|
468
|
-
})
|
|
469
|
-
|
|
343
|
+
}),
|
|
344
|
+
(0, decorators_1.hide)((0, decorator_paths_1.or)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.not)((0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.creationMode))), (0, decorator_paths_1.when)(decorator_paths_1.opTableContext.isInsertable, false)))
|
|
345
|
+
], ObjectPageTable.prototype, "creationMode", void 0);
|
|
470
346
|
__decorate([
|
|
471
347
|
(0, decorators_1.syncRule)({
|
|
472
348
|
manifest: {
|
|
473
349
|
path: application_1.getTableSettingsPathForOP
|
|
474
350
|
}
|
|
475
351
|
}),
|
|
352
|
+
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode'),
|
|
476
353
|
(0, decorators_1.validity)({
|
|
477
|
-
since: '1.
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
}
|
|
482
|
-
exports.ObjectPageAnalyticalConfiguration = ObjectPageAnalyticalConfiguration;
|
|
483
|
-
__decorate([
|
|
484
|
-
(0, decorators_1.syncRule)({
|
|
485
|
-
manifest: {
|
|
486
|
-
path: application_1.getTableAnalyticalConfigurationPathForOP
|
|
487
|
-
}
|
|
354
|
+
since: '1.120.0'
|
|
355
|
+
/**
|
|
356
|
+
* since '1.130.0': 'Interactive', special message in sync/v4/generate/objectPage.ts
|
|
357
|
+
*/
|
|
488
358
|
}),
|
|
489
|
-
(0, decorators_1.
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
359
|
+
(0, decorators_1.hide)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable)),
|
|
360
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.rowCountMode)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'rowCountMode', tableType: ux_specification_types_1.v4.TableTypeV4.ResponsiveTable }, { deletable: true })),
|
|
361
|
+
(0, decorators_1.enums)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.sectionLayout, ux_specification_types_1.v4.SectionLayoutType.Tabs), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.isCollection, true)), [
|
|
362
|
+
ux_specification_types_1.v4.RowCountMode.Auto
|
|
363
|
+
]),
|
|
364
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.sectionLayout, ux_specification_types_1.v4.SectionLayoutType.Tabs), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.isCollection, true), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.rowCountMode), (0, decorator_paths_1.not)(decorator_paths_1.opTableContext.rowCountMode, ux_specification_types_1.v4.RowCountMode.Auto)), (0, decorator_paths_1.msg)('WARNING_DEFAULT_ROW_COUNT_MODE'))
|
|
365
|
+
], ObjectPageTable.prototype, "rowCountMode", void 0);
|
|
496
366
|
__decorate([
|
|
497
367
|
(0, decorators_1.syncRule)({
|
|
498
368
|
manifest: {
|
|
@@ -500,9 +370,11 @@ __decorate([
|
|
|
500
370
|
}
|
|
501
371
|
}),
|
|
502
372
|
(0, decorators_1.validity)({
|
|
503
|
-
since: '1.
|
|
504
|
-
})
|
|
505
|
-
|
|
373
|
+
since: '1.120.0'
|
|
374
|
+
}),
|
|
375
|
+
(0, decorators_1.hide)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable)),
|
|
376
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.when)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.rowCount)), (0, decorator_paths_1.msg)('PROPERTY_NOT_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'rowCount', tableType: ux_specification_types_1.v4.TableTypeV4.ResponsiveTable }, { deletable: true }))
|
|
377
|
+
], ObjectPageTable.prototype, "rowCount", void 0);
|
|
506
378
|
__decorate([
|
|
507
379
|
(0, decorators_1.syncRule)({
|
|
508
380
|
manifest: {
|
|
@@ -510,12 +382,11 @@ __decorate([
|
|
|
510
382
|
}
|
|
511
383
|
}),
|
|
512
384
|
(0, decorators_1.validity)({
|
|
513
|
-
since: '1.
|
|
514
|
-
})
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
exports.ObjectPageGridTableV4 = ObjectPageGridTableV4;
|
|
385
|
+
since: '1.139.0'
|
|
386
|
+
}),
|
|
387
|
+
(0, decorators_1.hide)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable)),
|
|
388
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.ResponsiveTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.popinLayout)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'popinLayout', tableType: ux_specification_types_1.v4.TableTypeV4.ResponsiveTable }, { deletable: true }))
|
|
389
|
+
], ObjectPageTable.prototype, "popinLayout", void 0);
|
|
519
390
|
__decorate([
|
|
520
391
|
(0, decorators_1.syncRule)({
|
|
521
392
|
manifest: {
|
|
@@ -523,44 +394,22 @@ __decorate([
|
|
|
523
394
|
}
|
|
524
395
|
}),
|
|
525
396
|
(0, decorators_1.validity)({
|
|
526
|
-
since: '1.
|
|
527
|
-
})
|
|
528
|
-
], ObjectPageGridTableV4.prototype, "type", void 0);
|
|
529
|
-
__decorate([
|
|
530
|
-
(0, decorators_1.syncRule)({
|
|
531
|
-
manifest: {
|
|
532
|
-
path: application_1.getTableSettingsPathForOP,
|
|
533
|
-
import: Table_1.importCreationMode
|
|
534
|
-
}
|
|
397
|
+
since: '1.136.0'
|
|
535
398
|
}),
|
|
536
|
-
(0, decorators_1.
|
|
537
|
-
(0, decorators_1.
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
], ObjectPageGridTableV4.prototype, "creationMode", void 0);
|
|
541
|
-
class ObjectPageTreeTableV4 extends ObjectPageTableRowCountable {
|
|
399
|
+
(0, decorators_1.hide)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable)),
|
|
400
|
+
(0, decorators_1.message)((0, decorator_paths_1.and)((0, decorator_paths_1.not)(decorator_paths_1.opTableContext.type, ux_specification_types_1.v4.TableTypeV4.AnalyticalTable), (0, decorator_paths_1.exists)(decorator_paths_1.opTableContext.analyticalConfiguration)), (0, decorator_paths_1.msg)('PROPERTY_ONLY_ALLOWED_FOR_TABLE_TYPE', { propertyName: 'analyticalConfiguration', tableType: ux_specification_types_1.v4.TableTypeV4.AnalyticalTable }, { deletable: true }))
|
|
401
|
+
], ObjectPageTable.prototype, "analyticalConfiguration", void 0);
|
|
402
|
+
class ObjectPageAnalyticalConfiguration {
|
|
542
403
|
}
|
|
543
|
-
exports.
|
|
404
|
+
exports.ObjectPageAnalyticalConfiguration = ObjectPageAnalyticalConfiguration;
|
|
544
405
|
__decorate([
|
|
545
406
|
(0, decorators_1.syncRule)({
|
|
546
407
|
manifest: {
|
|
547
|
-
path: application_1.
|
|
408
|
+
path: application_1.getTableAnalyticalConfigurationPathForOP
|
|
548
409
|
}
|
|
549
410
|
}),
|
|
550
411
|
(0, decorators_1.validity)({
|
|
551
|
-
since: '1.
|
|
412
|
+
since: '1.136.0'
|
|
552
413
|
})
|
|
553
|
-
],
|
|
554
|
-
__decorate([
|
|
555
|
-
(0, decorators_1.syncRule)({
|
|
556
|
-
manifest: {
|
|
557
|
-
path: application_1.getTableSettingsPathForOP,
|
|
558
|
-
import: Table_1.importCreationMode
|
|
559
|
-
}
|
|
560
|
-
}),
|
|
561
|
-
(0, decorators_1.validity)({
|
|
562
|
-
since: '1.130.0'
|
|
563
|
-
}),
|
|
564
|
-
(0, decorators_1.descriptionSrcURL)('https://ui5.sap.com/#/api/sap.fe.macros.Table%23controlProperties')
|
|
565
|
-
], ObjectPageTreeTableV4.prototype, "creationMode", void 0);
|
|
414
|
+
], ObjectPageAnalyticalConfiguration.prototype, "aggregationOnLeafLevel", void 0);
|
|
566
415
|
//# sourceMappingURL=ObjectPageTable.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageTable.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageTable.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ObjectPageTable.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/export/controls/ObjectPageTable.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { v4 } from '@sap/ux-specification-types';
|
|
2
2
|
import type { ToolBar } from './ToolBar';
|
|
3
3
|
import type { PopinLayout } from 'sap/m/library';
|
|
4
|
-
import { Decorator } from '../../sync-rules';
|
|
5
4
|
/**
|
|
6
5
|
* Deletes a property from the creation mode section of the manifest object,
|
|
7
6
|
* and removes the creation mode section if it becomes empty.
|
|
@@ -117,14 +116,7 @@ export declare class QuickVariantSelectionV4 implements v4.QuickVariantSelection
|
|
|
117
116
|
/****************************************
|
|
118
117
|
* Sync class for TableSettings
|
|
119
118
|
*/
|
|
120
|
-
export declare class TableSettings
|
|
121
|
-
/**
|
|
122
|
-
* Returns the schema definition name to use for applying decorators.
|
|
123
|
-
* The schema uses 'Table' as the definition name, not 'TableSettings'.
|
|
124
|
-
*
|
|
125
|
-
* @returns The class name 'Table'
|
|
126
|
-
*/
|
|
127
|
-
getClassName(): string;
|
|
119
|
+
export declare class TableSettings implements v4.TableSettings {
|
|
128
120
|
type?: v4.TableTypeV4;
|
|
129
121
|
personalization?: PersonalizationType | boolean;
|
|
130
122
|
selectionMode?: v4.SelectionMode;
|
|
@@ -140,11 +132,11 @@ export declare class TableSettings extends Decorator implements v4.TableSettings
|
|
|
140
132
|
/****************************************
|
|
141
133
|
* Sync class for ALPChartView (renamed due to indirection in app schema)
|
|
142
134
|
*/
|
|
143
|
-
export declare class ALPChart
|
|
135
|
+
export declare class ALPChart implements v4.ALPChartView {
|
|
144
136
|
annotationPath: string;
|
|
145
137
|
toolBar?: v4.ViewChartToolBar;
|
|
146
138
|
}
|
|
147
|
-
export declare class CommonViewSettings
|
|
139
|
+
export declare class CommonViewSettings implements v4.CommonViewSettings {
|
|
148
140
|
key: string;
|
|
149
141
|
index: number;
|
|
150
142
|
annotationPath: string;
|
|
@@ -154,13 +146,6 @@ export declare class CommonViewSettings extends Decorator implements v4.CommonVi
|
|
|
154
146
|
* Sync class for view table settings
|
|
155
147
|
*/
|
|
156
148
|
export declare class TableViewSettings extends CommonViewSettings implements v4.TableSettings {
|
|
157
|
-
/**
|
|
158
|
-
* Returns the schema definition name to use for applying decorators.
|
|
159
|
-
* The schema uses 'LRTableView' as the definition name for table view settings.
|
|
160
|
-
*
|
|
161
|
-
* @returns The class name 'LRTableView'
|
|
162
|
-
*/
|
|
163
|
-
getClassName(): string;
|
|
164
149
|
type?: v4.TableTypeV4;
|
|
165
150
|
personalization?: ViewPersonalizationType | boolean;
|
|
166
151
|
selectionMode?: v4.SelectionMode;
|
|
@@ -209,10 +194,10 @@ export declare class TableViewExtension implements v4.TableViewExtension {
|
|
|
209
194
|
template: string;
|
|
210
195
|
visible?: boolean;
|
|
211
196
|
}
|
|
212
|
-
export declare class AnalyticalConfiguration
|
|
197
|
+
export declare class AnalyticalConfiguration implements v4.AnalyticalConfiguration {
|
|
213
198
|
aggregationOnLeafLevel?: boolean;
|
|
214
199
|
}
|
|
215
|
-
export declare class ViewAnalyticalConfiguration
|
|
200
|
+
export declare class ViewAnalyticalConfiguration implements v4.ViewAnalyticalConfiguration {
|
|
216
201
|
aggregationOnLeafLevel?: boolean;
|
|
217
202
|
}
|
|
218
203
|
/**
|
|
@@ -235,13 +220,7 @@ export declare class Table extends TableSettings implements v4.Table {
|
|
|
235
220
|
analyticalConfiguration?: AnalyticalConfiguration;
|
|
236
221
|
popinLayout?: PopinLayout;
|
|
237
222
|
}
|
|
238
|
-
export declare class TableCreationModeLR
|
|
239
|
-
/**
|
|
240
|
-
* Returns the schema definition name to use for applying decorators.
|
|
241
|
-
*
|
|
242
|
-
* @returns The class name 'TableCreationModeLR'
|
|
243
|
-
*/
|
|
244
|
-
getClassName(): string;
|
|
223
|
+
export declare class TableCreationModeLR implements v4.TableCreationModeLR {
|
|
245
224
|
name?: v4.TableCreationModeType.NewPage | v4.TableCreationModeType.CreationDialog;
|
|
246
225
|
creationFields?: string[];
|
|
247
226
|
createInPlace?: boolean;
|