@expeed/ngx-data-mapper 1.2.0 → 1.2.2
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/package.json
CHANGED
|
@@ -370,6 +370,7 @@ declare class SchemaTreeComponent implements AfterViewInit, OnDestroy {
|
|
|
370
370
|
side: 'source' | 'target';
|
|
371
371
|
mappings: FieldMapping[];
|
|
372
372
|
defaultValues: DefaultValue[];
|
|
373
|
+
showSchemaName: boolean;
|
|
373
374
|
fieldDragStart: EventEmitter<FieldPositionEvent>;
|
|
374
375
|
fieldDragEnd: EventEmitter<void>;
|
|
375
376
|
fieldDrop: EventEmitter<FieldPositionEvent>;
|
|
@@ -400,7 +401,7 @@ declare class SchemaTreeComponent implements AfterViewInit, OnDestroy {
|
|
|
400
401
|
onFieldClick(event: MouseEvent, field: SchemaField): void;
|
|
401
402
|
trackByFieldId(index: number, field: SchemaField): string;
|
|
402
403
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SchemaTreeComponent, never>;
|
|
403
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SchemaTreeComponent, "schema-tree", never, { "schema": { "alias": "schema"; "required": false; }; "side": { "alias": "side"; "required": false; }; "mappings": { "alias": "mappings"; "required": false; }; "defaultValues": { "alias": "defaultValues"; "required": false; }; }, { "fieldDragStart": "fieldDragStart"; "fieldDragEnd": "fieldDragEnd"; "fieldDrop": "fieldDrop"; "sourceDrop": "sourceDrop"; "fieldPositionsChanged": "fieldPositionsChanged"; "fieldDefaultValueClick": "fieldDefaultValueClick"; }, never, never, true, never>;
|
|
404
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SchemaTreeComponent, "schema-tree", never, { "schema": { "alias": "schema"; "required": false; }; "side": { "alias": "side"; "required": false; }; "mappings": { "alias": "mappings"; "required": false; }; "defaultValues": { "alias": "defaultValues"; "required": false; }; "showSchemaName": { "alias": "showSchemaName"; "required": false; }; }, { "fieldDragStart": "fieldDragStart"; "fieldDragEnd": "fieldDragEnd"; "fieldDrop": "fieldDrop"; "sourceDrop": "sourceDrop"; "fieldPositionsChanged": "fieldPositionsChanged"; "fieldDefaultValueClick": "fieldDefaultValueClick"; }, never, never, true, never>;
|
|
404
405
|
}
|
|
405
406
|
|
|
406
407
|
interface VisualConnection {
|
|
@@ -521,6 +522,7 @@ declare class SchemaEditorComponent {
|
|
|
521
522
|
set schema(value: JsonSchema | null);
|
|
522
523
|
private hasUncommittedChildFields;
|
|
523
524
|
showJsonToggle: boolean;
|
|
525
|
+
showSchemaName: boolean;
|
|
524
526
|
schemaChange: EventEmitter<JsonSchema>;
|
|
525
527
|
save: EventEmitter<JsonSchema>;
|
|
526
528
|
schemaName: _angular_core.WritableSignal<string>;
|
|
@@ -579,8 +581,9 @@ declare class SchemaEditorComponent {
|
|
|
579
581
|
onJsonTextChange(text: string): void;
|
|
580
582
|
applyJsonChanges(): void;
|
|
581
583
|
formatJson(): void;
|
|
584
|
+
copyJson(): void;
|
|
582
585
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SchemaEditorComponent, never>;
|
|
583
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SchemaEditorComponent, "schema-editor", never, { "schema": { "alias": "schema"; "required": false; }; "showJsonToggle": { "alias": "showJsonToggle"; "required": false; }; }, { "schemaChange": "schemaChange"; "save": "save"; }, never, never, true, never>;
|
|
586
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SchemaEditorComponent, "schema-editor", never, { "schema": { "alias": "schema"; "required": false; }; "showJsonToggle": { "alias": "showJsonToggle"; "required": false; }; "showSchemaName": { "alias": "showSchemaName"; "required": false; }; }, { "schemaChange": "schemaChange"; "save": "save"; }, never, never, true, never>;
|
|
584
587
|
}
|
|
585
588
|
|
|
586
589
|
declare class TransformationPopoverComponent implements OnInit, OnChanges {
|