@sap/ux-specification 1.136.17 → 1.136.18
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 +320 -315
- 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 -19
- package/dist/schemas/v4/ObjectPageConfig.json +112 -717
- 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 +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 +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 +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/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 -17
- 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 +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 +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 +22 -2
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +239 -41
- 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 +25 -11
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +17 -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/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/package.json +8 -8
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PopinLayout } from 'sap/m/library';
|
|
2
|
+
import type { AnalyticalConfiguration, AnnotationPathAsObject, EnableMassEdit, RowCountMode, TableSettings, TableTypeV4 } from '.';
|
|
2
3
|
import type { Placement, ObjectPageTableColumn as ObjectPageTableColumnIF, ObjectPageTableColumnAction, TableCustomColumn } from '../webapp/manifest/ManifestSettings';
|
|
3
4
|
import type { ObjectPageToolBar } from './ObjectPageToolBar';
|
|
4
5
|
export interface PositionOP {
|
|
@@ -23,78 +24,39 @@ export interface TableCustomColumnOP extends TableCustomColumn {
|
|
|
23
24
|
*/
|
|
24
25
|
position?: PositionOP;
|
|
25
26
|
}
|
|
26
|
-
export type AnyObjectPageTableType =
|
|
27
|
-
/**
|
|
28
|
-
* Table
|
|
29
|
-
*
|
|
30
|
-
* @isViewNode true
|
|
31
|
-
* @controlProperty type
|
|
32
|
-
*/
|
|
33
|
-
export interface ObjectPageGridTableV4 extends ObjectPageTable, RowCountable {
|
|
34
|
-
/**
|
|
35
|
-
* Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.
|
|
36
|
-
*/
|
|
37
|
-
type?: TableTypeV4.GridTable;
|
|
38
|
-
/**
|
|
39
|
-
* Defines the page behavior when a new record is created.
|
|
40
|
-
*/
|
|
41
|
-
creationMode?: TableCreationModeInlineOPTable | TableCreationModeInlineCreationsRowsOPGridTable | TableCreationModeNewPageOPTable | TableCreationModeCreationDialogOPTable | TableCreationModeExternalOPTable;
|
|
42
|
-
}
|
|
27
|
+
export type AnyObjectPageTableType = ObjectPageTable;
|
|
43
28
|
export interface ObjectPageAnalyticalConfiguration extends AnalyticalConfiguration {
|
|
44
29
|
}
|
|
45
30
|
/**
|
|
46
31
|
* Table
|
|
47
32
|
*
|
|
48
33
|
* @isViewNode true
|
|
49
|
-
* @controlProperty type
|
|
50
34
|
*/
|
|
51
|
-
export interface
|
|
52
|
-
/**
|
|
53
|
-
* Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.
|
|
54
|
-
*/
|
|
55
|
-
type?: TableTypeV4.AnalyticalTable;
|
|
56
|
-
analyticalConfiguration?: ObjectPageAnalyticalConfiguration;
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* Table
|
|
60
|
-
*
|
|
61
|
-
* @isViewNode true
|
|
62
|
-
* @controlProperty type
|
|
63
|
-
*/
|
|
64
|
-
export interface ObjectPageTreeTableV4 extends ObjectPageTable, RowCountable {
|
|
35
|
+
export interface ObjectPageTable extends TableSettingsOP {
|
|
65
36
|
/**
|
|
66
37
|
* Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.
|
|
67
38
|
*/
|
|
68
|
-
type?: TableTypeV4
|
|
39
|
+
type?: TableTypeV4;
|
|
69
40
|
/**
|
|
70
|
-
* Defines the
|
|
41
|
+
* Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.
|
|
42
|
+
* - Fixed: The table always has as many rows as defined in the rowCount property.
|
|
43
|
+
* - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.
|
|
44
|
+
* - Interactive: The user can change the number of displayed rows by dragging a resize handle.
|
|
71
45
|
*/
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* Table
|
|
76
|
-
*
|
|
77
|
-
* @isViewNode true
|
|
78
|
-
* @controlProperty type
|
|
79
|
-
* @defaultControlProperty true
|
|
80
|
-
*/
|
|
81
|
-
export interface ObjectPageResponsiveTableV4 extends ObjectPageTable {
|
|
46
|
+
rowCountMode?: RowCountMode;
|
|
82
47
|
/**
|
|
83
|
-
*
|
|
48
|
+
* Number of rows to be displayed in the table.
|
|
49
|
+
*
|
|
50
|
+
* @minimum 0
|
|
84
51
|
*/
|
|
85
|
-
|
|
52
|
+
rowCount?: number;
|
|
86
53
|
/**
|
|
87
|
-
* Defines the
|
|
54
|
+
* Defines the layout options of the table popins. A popin layout defined at the table level takes precedence over a popin layout defined at the application level.
|
|
55
|
+
*
|
|
56
|
+
* @descriptionSrcURL https://help.sap.com/docs/SAPUI5/b1cda5dc7a7644eb886bc6ac04c0b438/7f844f1021cd4791b8f7408eac7c1cec.html
|
|
88
57
|
*/
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* Table
|
|
93
|
-
*
|
|
94
|
-
* @isViewNode true
|
|
95
|
-
* @controlProperty type
|
|
96
|
-
*/
|
|
97
|
-
export interface ObjectPageTable extends TableSettingsOP {
|
|
58
|
+
popinLayout?: PopinLayout.Block | PopinLayout.GridSmall | PopinLayout.GridLarge;
|
|
59
|
+
analyticalConfiguration?: ObjectPageAnalyticalConfiguration;
|
|
98
60
|
/**
|
|
99
61
|
* Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.
|
|
100
62
|
*/
|
|
@@ -107,6 +69,11 @@ export interface ObjectPageTable extends TableSettingsOP {
|
|
|
107
69
|
* Tool Bar
|
|
108
70
|
*/
|
|
109
71
|
toolBar?: ObjectPageToolBar;
|
|
72
|
+
/**
|
|
73
|
+
* Defines the page behavior when a new record is created.
|
|
74
|
+
* Note: Not available for AnalyticalTable.
|
|
75
|
+
*/
|
|
76
|
+
creationMode?: TableCreationModeOP;
|
|
110
77
|
}
|
|
111
78
|
/**
|
|
112
79
|
* Table Section
|
|
@@ -124,81 +91,36 @@ export declare enum TableCreationModeType {
|
|
|
124
91
|
External = "External"
|
|
125
92
|
}
|
|
126
93
|
/**
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
* @defaultControlProperty true
|
|
130
|
-
* @controlProperty name
|
|
94
|
+
* Creation mode configuration for Object Page tables.
|
|
95
|
+
* Visibility of specific properties is controlled by decorators in the specification package based on table type and creation mode.
|
|
131
96
|
*/
|
|
132
|
-
export interface
|
|
97
|
+
export interface TableCreationModeOP {
|
|
133
98
|
/**
|
|
134
|
-
* Defines the creation mode to be used by the
|
|
135
|
-
* Allowed values are 'NewPage', 'Inline', or 'CreationDialog'.
|
|
136
|
-
*
|
|
137
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
138
|
-
* - Inline: The creation is performed inline.
|
|
139
|
-
* - CreationDialog: The creation is performed in a table. There is a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
140
|
-
*
|
|
141
|
-
* If the 'name' property is not set:
|
|
142
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise, it is 'Inline'.
|
|
143
|
-
*/
|
|
144
|
-
name?: TableCreationModeType.NewPage;
|
|
145
|
-
}
|
|
146
|
-
/**
|
|
147
|
-
* Inline creation mode for TreeTable
|
|
148
|
-
*
|
|
149
|
-
* @controlProperty name
|
|
150
|
-
*/
|
|
151
|
-
export interface TableCreationModeInlineOPTreeTable extends TableCreationModeOPTreeTable {
|
|
152
|
-
/**
|
|
153
|
-
* Defines the creation mode to be used by the tree table.
|
|
154
|
-
* Allowed values are 'NewPage', 'Inline', or 'CreationDialog'.
|
|
99
|
+
* Defines the creation mode to be used by the table.
|
|
155
100
|
*
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
159
|
-
*
|
|
160
|
-
* If the 'name' property is not set:
|
|
161
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
162
|
-
*/
|
|
163
|
-
name?: TableCreationModeType.Inline;
|
|
164
|
-
}
|
|
165
|
-
/**
|
|
166
|
-
* CreationDialog creation mode for TreeTable
|
|
167
|
-
*
|
|
168
|
-
* @controlProperty name
|
|
169
|
-
*/
|
|
170
|
-
export interface TableCreationModeCreationDialogOPTreeTable extends TableCreationModeOPTreeTable {
|
|
171
|
-
/**
|
|
172
|
-
* Defines the creation mode to be used by the tree table.
|
|
173
|
-
* Allowed values are 'NewPage', 'Inline', or 'CreationDialog'.
|
|
101
|
+
* For tree tables, allowed values are 'NewPage', 'Inline', or 'CreationDialog'.
|
|
102
|
+
* For responsive and grid tables, allowed values are 'NewPage', 'Inline', 'InlineCreationRows', 'External', or 'CreationDialog'.
|
|
174
103
|
*
|
|
175
104
|
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
176
|
-
* - Inline: The creation is performed inline
|
|
105
|
+
* - Inline: The creation is performed inline
|
|
106
|
+
* - InlineCreationRows: The creation is performed inline with an empty row (not available for tree tables)
|
|
107
|
+
* - External: The creation is performed in a different application which is specified using the `outbound` parameter (not available for tree tables)
|
|
177
108
|
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
178
109
|
*
|
|
179
110
|
* If the 'name' property is not set:
|
|
180
111
|
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
181
112
|
*/
|
|
182
|
-
name?: TableCreationModeType
|
|
113
|
+
name?: TableCreationModeType;
|
|
183
114
|
/**
|
|
184
|
-
*
|
|
185
|
-
* The value is
|
|
115
|
+
* Specifies if the new entry should be created at the top or bottom of a table when `creationMode` is set to `Inline`.
|
|
116
|
+
* The default value is `false`.
|
|
186
117
|
*/
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
export interface TableCreationModeOPTreeTable {
|
|
118
|
+
createAtEnd?: boolean;
|
|
190
119
|
/**
|
|
191
|
-
*
|
|
192
|
-
*
|
|
193
|
-
*
|
|
194
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
195
|
-
* - Inline: The creation is performed inline.
|
|
196
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
197
|
-
*
|
|
198
|
-
* If the 'name' property is not set:
|
|
199
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
120
|
+
* Specifies if the new entry should be hidden when `creationMode` is set to `InlineCreationRows`. This only applies to responsive tables.
|
|
121
|
+
* The default value is `false`.
|
|
200
122
|
*/
|
|
201
|
-
|
|
123
|
+
inlineCreationRowsHiddenInEditMode?: boolean;
|
|
202
124
|
/**
|
|
203
125
|
* Specifies if the new entry should be placed at the position computed by the backend (e.g. taking sorting into account).
|
|
204
126
|
* The default value is `false`. When set to `false`, the new entry is placed as the first child below its parent.
|
|
@@ -208,153 +130,72 @@ export interface TableCreationModeOPTreeTable {
|
|
|
208
130
|
* Defines the extension point to control the enablement of the "Create" button or "Create Menu" buttons.
|
|
209
131
|
*/
|
|
210
132
|
isCreateEnabled?: string;
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
* Inline creation mode
|
|
214
|
-
*
|
|
215
|
-
* @controlProperty name
|
|
216
|
-
*/
|
|
217
|
-
export interface TableCreationModeInlineOPTable {
|
|
218
133
|
/**
|
|
219
|
-
* Defines the
|
|
220
|
-
*
|
|
221
|
-
*
|
|
222
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
223
|
-
* - Inline: The creation is performed inline
|
|
224
|
-
* - InlineCreationsRows: The creation is performed inline with an empty row
|
|
225
|
-
* - External: The creation is performed in a different application which is specified using the `outbound` parameter
|
|
226
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
227
|
-
*
|
|
228
|
-
* If the 'name' property is not set:
|
|
229
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
134
|
+
* Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.
|
|
135
|
+
* The value is a comma-separated list of property names.
|
|
230
136
|
*/
|
|
231
|
-
|
|
137
|
+
creationFields?: string[];
|
|
232
138
|
/**
|
|
233
|
-
*
|
|
234
|
-
* The default value is `false`.
|
|
139
|
+
* The navigation target where the document is created when `creationMode` is set to `External`.
|
|
235
140
|
*/
|
|
236
|
-
|
|
141
|
+
outbound?: string;
|
|
237
142
|
}
|
|
238
143
|
/**
|
|
239
|
-
*
|
|
240
|
-
*
|
|
241
|
-
* @controlProperty name
|
|
144
|
+
* @deprecated Use TableCreationModeOP instead
|
|
242
145
|
*/
|
|
243
|
-
export
|
|
244
|
-
/**
|
|
245
|
-
* Defines the creation mode to be used by the table.
|
|
246
|
-
* Allowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.
|
|
247
|
-
*
|
|
248
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
249
|
-
* - Inline: The creation is performed inline
|
|
250
|
-
* - InlineCreationsRows: The creation is performed inline with an empty row
|
|
251
|
-
* - External: The creation is performed in a different application which is specified using the `outbound` parameter.
|
|
252
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
253
|
-
*
|
|
254
|
-
* If the 'name' property is not set:
|
|
255
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
256
|
-
*/
|
|
257
|
-
name?: TableCreationModeType.InlineCreationRows;
|
|
258
|
-
/**
|
|
259
|
-
* Specifies if the new entry should be hidden when `creationMode` is set to `InlineCreationRows`. This only applies to responsive tables.
|
|
260
|
-
* The default value is `false`.
|
|
261
|
-
*/
|
|
262
|
-
inlineCreationRowsHiddenInEditMode?: boolean;
|
|
263
|
-
}
|
|
146
|
+
export type TableCreationModeOPTreeTable = TableCreationModeOP;
|
|
264
147
|
/**
|
|
265
|
-
*
|
|
266
|
-
*
|
|
267
|
-
* @controlProperty name
|
|
148
|
+
* @deprecated Use TableCreationModeOP instead
|
|
268
149
|
*/
|
|
269
|
-
export
|
|
270
|
-
/**
|
|
271
|
-
* Defines the creation mode to be used by the table.
|
|
272
|
-
* Allowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.
|
|
273
|
-
*
|
|
274
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
275
|
-
* - Inline: The creation is performed inline
|
|
276
|
-
* - InlineCreationsRows: The creation is performed inline with an empty row
|
|
277
|
-
* - External: The creation is performed in a different application which is specified using the `outbound` parameter.
|
|
278
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
279
|
-
*
|
|
280
|
-
* If the 'name' property is not set:
|
|
281
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
282
|
-
*/
|
|
283
|
-
name?: TableCreationModeType.InlineCreationRows;
|
|
284
|
-
}
|
|
150
|
+
export type TableCreationModeNewPageOPTreeTable = TableCreationModeOP;
|
|
285
151
|
/**
|
|
286
|
-
*
|
|
287
|
-
*
|
|
288
|
-
* @defaultControlProperty true
|
|
289
|
-
* @controlProperty name
|
|
152
|
+
* @deprecated Use TableCreationModeOP instead
|
|
290
153
|
*/
|
|
291
|
-
export
|
|
292
|
-
/**
|
|
293
|
-
* Defines the creation mode to be used by the table.
|
|
294
|
-
* Allowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.
|
|
295
|
-
*
|
|
296
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
297
|
-
* - Inline: The creation is performed inline
|
|
298
|
-
* - InlineCreationsRows: The creation is performed inline with an empty row
|
|
299
|
-
* - External: The creation is performed in a different application which is specified using the `outbound` parameter.
|
|
300
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
301
|
-
*
|
|
302
|
-
* If the 'name' property is not set:
|
|
303
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
304
|
-
*/
|
|
305
|
-
name?: TableCreationModeType.NewPage;
|
|
306
|
-
}
|
|
154
|
+
export type TableCreationModeInlineOPTreeTable = TableCreationModeOP;
|
|
307
155
|
/**
|
|
308
|
-
*
|
|
309
|
-
*
|
|
310
|
-
* @controlProperty name
|
|
156
|
+
* @deprecated Use TableCreationModeOP instead
|
|
311
157
|
*/
|
|
312
|
-
export
|
|
313
|
-
/**
|
|
314
|
-
* Defines the creation mode to be used by the table.
|
|
315
|
-
* Allowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.
|
|
316
|
-
*
|
|
317
|
-
* - NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.
|
|
318
|
-
* - Inline: The creation is performed inline
|
|
319
|
-
* - InlineCreationsRows: The creation is performed inline with an empty row
|
|
320
|
-
* - External: The creation is performed in a different application which is specified using the `outbound` parameter.
|
|
321
|
-
* - CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.
|
|
322
|
-
*
|
|
323
|
-
* If the 'name' property is not set:
|
|
324
|
-
* If 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.
|
|
325
|
-
*/
|
|
326
|
-
name?: TableCreationModeType.CreationDialog;
|
|
327
|
-
/**
|
|
328
|
-
* Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.
|
|
329
|
-
* The value is a comma-separated list of property names.
|
|
330
|
-
*/
|
|
331
|
-
creationFields?: string[];
|
|
332
|
-
}
|
|
158
|
+
export type TableCreationModeCreationDialogOPTreeTable = TableCreationModeOP;
|
|
333
159
|
/**
|
|
334
|
-
*
|
|
335
|
-
*
|
|
336
|
-
* @controlProperty name
|
|
160
|
+
* @deprecated Use TableCreationModeOP instead
|
|
337
161
|
*/
|
|
338
|
-
export
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
162
|
+
export type TableCreationModeInlineOPTable = TableCreationModeOP;
|
|
163
|
+
/**
|
|
164
|
+
* @deprecated Use TableCreationModeOP instead
|
|
165
|
+
*/
|
|
166
|
+
export type TableCreationModeInlineCreationsRowsOPResponsiveTable = TableCreationModeOP;
|
|
167
|
+
/**
|
|
168
|
+
* @deprecated Use TableCreationModeOP instead
|
|
169
|
+
*/
|
|
170
|
+
export type TableCreationModeInlineCreationsRowsOPGridTable = TableCreationModeOP;
|
|
171
|
+
/**
|
|
172
|
+
* @deprecated Use TableCreationModeOP instead
|
|
173
|
+
*/
|
|
174
|
+
export type TableCreationModeNewPageOPTable = TableCreationModeOP;
|
|
175
|
+
/**
|
|
176
|
+
* @deprecated Use TableCreationModeOP instead
|
|
177
|
+
*/
|
|
178
|
+
export type TableCreationModeCreationDialogOPTable = TableCreationModeOP;
|
|
179
|
+
/**
|
|
180
|
+
* @deprecated Use TableCreationModeOP instead
|
|
181
|
+
*/
|
|
182
|
+
export type TableCreationModeExternalOPTable = TableCreationModeOP;
|
|
183
|
+
/**
|
|
184
|
+
* @deprecated Use ObjectPageTable instead
|
|
185
|
+
*/
|
|
186
|
+
export type ObjectPageGridTableV4 = ObjectPageTable;
|
|
187
|
+
/**
|
|
188
|
+
* @deprecated Use ObjectPageTable instead
|
|
189
|
+
*/
|
|
190
|
+
export type ObjectPageAnalyticalTableV4 = ObjectPageTable;
|
|
191
|
+
/**
|
|
192
|
+
* @deprecated Use ObjectPageTable instead
|
|
193
|
+
*/
|
|
194
|
+
export type ObjectPageTreeTableV4 = ObjectPageTable;
|
|
195
|
+
/**
|
|
196
|
+
* @deprecated Use ObjectPageTable instead
|
|
197
|
+
*/
|
|
198
|
+
export type ObjectPageResponsiveTableV4 = ObjectPageTable;
|
|
358
199
|
export interface PersonalizationTypeOP {
|
|
359
200
|
/**
|
|
360
201
|
* Defines whether the user can add and remove columns to a given table.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageTable.d.ts","sourceRoot":"","sources":["../../../../../../types/src/v4/controls/ObjectPageTable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,uBAAuB,EACvB,sBAAsB,EACtB,cAAc,EACd,YAAY,EACZ,aAAa,EACb,WAAW,EACd,MAAM,GAAG,CAAC;AACX,OAAO,KAAK,EACR,SAAS,EACT,qBAAqB,IAAI,uBAAuB,EAChD,2BAA2B,EAC3B,iBAAiB,EACpB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAI7D,MAAM,WAAW,UAAU;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,SAAS,CAAC;CACxB;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB;IAC1D;;;;OAIG;IACH,QAAQ,CAAC,EAAE,UAAU,CAAC;CACzB;AAED,MAAM,MAAM,sBAAsB,
|
|
1
|
+
{"version":3,"file":"ObjectPageTable.d.ts","sourceRoot":"","sources":["../../../../../../types/src/v4/controls/ObjectPageTable.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageTable.js","sourceRoot":"","sources":["../../../../../../types/src/v4/controls/ObjectPageTable.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"ObjectPageTable.js","sourceRoot":"","sources":["../../../../../../types/src/v4/controls/ObjectPageTable.ts"],"names":[],"mappings":";;;AAyGA,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC7B,4CAAmB,CAAA;IACnB,kEAAyC,CAAA;IACzC,0CAAiB,CAAA;IACjB,0DAAiC,CAAA;IACjC,8CAAqB,CAAA;AACzB,CAAC,EANW,qBAAqB,qCAArB,qBAAqB,QAMhC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-specification",
|
|
3
|
-
"version": "1.136.
|
|
3
|
+
"version": "1.136.18",
|
|
4
4
|
"displayName": "SAP Fiori tools - Specification",
|
|
5
5
|
"description": "SAP Fiori tools - Specification",
|
|
6
6
|
"files": [
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"build:schemas": "npm-run-all -l -s create-json-schemas copy-json-schemas",
|
|
28
28
|
"build:snap": "yarn build:dev && yarn update-snapshots",
|
|
29
29
|
"create-json-schemas": "ts-node ./scripts/schema/index.ts ",
|
|
30
|
-
"copy-json-schemas": "
|
|
31
|
-
"copy-templates": "
|
|
30
|
+
"copy-json-schemas": "cpy \"schemas/**\" dist/schemas",
|
|
31
|
+
"copy-templates": "cpy \"src/sync/v2/export/templates/**\" dist/templates --flat",
|
|
32
32
|
"deleteSnapshots": "rimraf **/_file_snapshots_",
|
|
33
33
|
"docuV2": "ts-node ./scripts/extractDocu.ts --version=v2 format=excel",
|
|
34
34
|
"docuV4": "ts-node ./scripts/extractDocu.ts --version=v4 format=excel",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"publisher": "SAPSE",
|
|
51
51
|
"license": "SEE LICENSE IN LICENSE",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@sap-ux/fe-fpm-writer": "0.43.
|
|
53
|
+
"@sap-ux/fe-fpm-writer": "0.43.21",
|
|
54
54
|
"@sap-ux/vocabularies-types": "0.15.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@sap-ux/annotation-converter": "0.10.21",
|
|
58
58
|
"@sap-ux/edmx-parser": "0.10.0",
|
|
59
|
-
"@sap-ux/project-access": "1.35.
|
|
60
|
-
"@sap/ux-specification-types": "1.136.
|
|
59
|
+
"@sap-ux/project-access": "1.35.20",
|
|
60
|
+
"@sap/ux-specification-types": "1.136.18",
|
|
61
61
|
"@sapui5/types": "latest-1.136",
|
|
62
62
|
"@types/d3": "7.4.3",
|
|
63
63
|
"@types/jquery": "3.5.34",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"@ui5/flexibility-utils": "0.1.3",
|
|
68
68
|
"@xml-tools/ast": "5.0.5",
|
|
69
69
|
"@xml-tools/parser": "1.0.11",
|
|
70
|
-
"axios": "1.
|
|
71
|
-
"
|
|
70
|
+
"axios": "1.15.0",
|
|
71
|
+
"cpy-cli": "7.0.0",
|
|
72
72
|
"d3": "7.9.0",
|
|
73
73
|
"deepmerge": "4.3.1",
|
|
74
74
|
"ejs": "3.1.10",
|