@sap/ux-specification 1.124.36 → 1.124.37
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 +39 -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 +264 -259
- 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 +73 -2
- package/dist/specification/package.json +8 -8
- package/dist/specification/scripts/macros/corrections.d.ts +1 -0
- package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
- package/dist/specification/scripts/macros/corrections.js +93 -1
- 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 +5 -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.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 +22 -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/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/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/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.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/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.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +4 -3
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +7 -1
- 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/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/test/test-utils/utils.d.ts.map +1 -1
- package/dist/specification/test/test-utils/utils.js +4 -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 +1 -0
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/common/webapp/manifest/Manifest.d.ts +2 -1
- package/dist/types/src/common/webapp/manifest/Manifest.d.ts.map +1 -1
- package/dist/types/src/common/webapp/manifest/Manifest.js +1 -0
- package/dist/types/src/common/webapp/manifest/Manifest.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/package.json +8 -8
|
@@ -2,13 +2,16 @@
|
|
|
2
2
|
* @file This file contains the classes implementing the interfaces defined in the corresponding types file.
|
|
3
3
|
* Note that the logic for dealing with the multi-table scenario is implemented in the sibling file MultiTable.ts.
|
|
4
4
|
*/
|
|
5
|
+
import type { Definition } from 'typescript-json-schema';
|
|
5
6
|
import type { smarttable } from 'sap/ui/comp/library';
|
|
7
|
+
import type { PopinLayout } from 'sap/m/library';
|
|
6
8
|
import type * as Edm from '@sap-ux/vocabularies-types/Edm';
|
|
7
|
-
import type { ExtensionLogger } from '@sap/ux-specification-types';
|
|
9
|
+
import type { AccessorPath, ConversionExit, ExtensionLogger, SchemaHandlingParams } from '@sap/ux-specification-types';
|
|
8
10
|
import * as v2 from '@sap/ux-specification-types/src/v2/genericSchemaHandling/controls/Table';
|
|
9
11
|
import type { SapUiGenericAppPageSettings } from '@sap/ux-specification-types/src/common';
|
|
10
|
-
import type
|
|
12
|
+
import { type LineItemInfo } from '../../generate/utils';
|
|
11
13
|
import type { MultiTableInfo } from './MultiTable';
|
|
14
|
+
import { type Toolbar } from './Action';
|
|
12
15
|
/**
|
|
13
16
|
* Specific params applicable to the current table passed to the ProcessingRuleAdapter.
|
|
14
17
|
*
|
|
@@ -34,6 +37,13 @@ export type TableParams = {
|
|
|
34
37
|
* @returns the default table type for the given entity type
|
|
35
38
|
*/
|
|
36
39
|
export declare function getDefaultTableType(entityTypeDefinition: Edm.EntityType): v2.TableTypeV2Enum;
|
|
40
|
+
/**
|
|
41
|
+
* Returns the table type valid for the artifact described by given parameters.
|
|
42
|
+
*
|
|
43
|
+
* @param tableParams - the parameters describing the table
|
|
44
|
+
* @returns the table type for the given table
|
|
45
|
+
*/
|
|
46
|
+
export declare function getTableType(tableParams: TableParams): v2.TableTypeV2Enum;
|
|
37
47
|
/**
|
|
38
48
|
* Checks whether a given table type is valid. Thereby undefined and empty string are also considered as valid (they represent the default table type).
|
|
39
49
|
*
|
|
@@ -42,6 +52,31 @@ export declare function getDefaultTableType(entityTypeDefinition: Edm.EntityType
|
|
|
42
52
|
* @returns - information whether the tableType is valid
|
|
43
53
|
*/
|
|
44
54
|
export declare function checkTableType(tableType: string | undefined, logger?: ExtensionLogger): boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Helper functions for implementing a ProcessingRuleAdapter for a manifest-based property belonging to the tableSettings.
|
|
57
|
+
* Returns the manifest path for the table settings for the specified table params (which may either be global or for a specific view in a multi-table scenario).
|
|
58
|
+
*
|
|
59
|
+
* @param schemaHandlingParams - the schema handling parameters passed to the ProcessingRuleAdapter
|
|
60
|
+
* @param tableParams - the parameters describing the table
|
|
61
|
+
* @returns the manifest path to the tableSettings of the specified table
|
|
62
|
+
*/
|
|
63
|
+
export declare function getManifestPathForTableSettings(schemaHandlingParams: SchemaHandlingParams, tableParams: TableParams): AccessorPath;
|
|
64
|
+
/**
|
|
65
|
+
* Modifies a schema element such that the fields of the given entity type are added as enumeration values.
|
|
66
|
+
*
|
|
67
|
+
* @param element - the schema element to be modified
|
|
68
|
+
* @param entityTypeDefinition - the entity type hosting the fields
|
|
69
|
+
*/
|
|
70
|
+
export declare function addEntityTypeFieldsAsEnum(element: Definition, entityTypeDefinition: Edm.EntityType): void;
|
|
71
|
+
export declare class DataLoadSettings {
|
|
72
|
+
loadDataOnAppLaunch: v2.LoadDataOnAppLaunchSettingsEnum;
|
|
73
|
+
}
|
|
74
|
+
export declare class CreateWithFilters implements v2.CreateWithFilters {
|
|
75
|
+
strategy: v2.StrategyEnum;
|
|
76
|
+
}
|
|
77
|
+
export declare class Fields4CreateWithParametersDialog implements v2.Fields4CreateWithParametersDialog {
|
|
78
|
+
fields: string[];
|
|
79
|
+
}
|
|
45
80
|
export declare class Table implements v2.Table {
|
|
46
81
|
entitySet?: string;
|
|
47
82
|
annotationPath?: string;
|
|
@@ -51,5 +86,27 @@ export declare class Table implements v2.Table {
|
|
|
51
86
|
showTablePersonalisation?: boolean;
|
|
52
87
|
exportType?: smarttable.ExportType;
|
|
53
88
|
useExportToExcel?: boolean;
|
|
89
|
+
growingThreshold?: number;
|
|
90
|
+
popinLayout?: PopinLayout;
|
|
91
|
+
includeItemInSelection?: boolean;
|
|
92
|
+
tableType?: v2.TableTypeV2Enum;
|
|
93
|
+
type?: v2.TableTypeV2Enum;
|
|
94
|
+
condensedTableLayout?: boolean;
|
|
95
|
+
enableTableFilterInPageVariant?: boolean;
|
|
96
|
+
inlineDelete?: boolean;
|
|
97
|
+
multiSelect?: boolean;
|
|
98
|
+
selectAll?: boolean;
|
|
99
|
+
selectionLimit?: number;
|
|
100
|
+
copy?: boolean;
|
|
101
|
+
dataLoadSettings?: v2.DataLoadSettings;
|
|
102
|
+
createWithFilters?: v2.CreateWithFilters;
|
|
103
|
+
createWithParameterDialog?: v2.Fields4CreateWithParametersDialog;
|
|
104
|
+
multiEdit?: v2.MultiEdit;
|
|
105
|
+
toolbar?: Toolbar;
|
|
54
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* ConversionExit for property createWithParameterDialog of Table control.
|
|
109
|
+
* Converts between the manifest representation (object with field names as keys) and the config representation (object with array of field names).
|
|
110
|
+
*/
|
|
111
|
+
export declare const CREATE_WITH_PARAMETER_DIALOG: ConversionExit;
|
|
55
112
|
//# sourceMappingURL=Table.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v2/genericSchemaHandling/controls/Table.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,KAAK,KAAK,GAAG,MAAM,gCAAgC,CAAC;AAG3D,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v2/genericSchemaHandling/controls/Table.ts"],"names":[],"mappings":"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"}
|