nuxeo-development-framework 4.5.7 → 4.5.8
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/bundles/nuxeo-development-framework.umd.js +13 -9
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/diagrams/utilities/remove.util.js +2 -2
- package/esm2015/lib/components/table/dynamic-column/dynamic-column.component.js +19 -15
- package/esm2015/lib/shared/components/base/base-column.component.js +1 -1
- package/fesm2015/nuxeo-development-framework.js +17 -13
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/diagrams/utilities/remove.util.d.ts +2 -3
- package/lib/components/table/dynamic-column/dynamic-column.component.d.ts +4 -3
- package/lib/shared/components/base/base-column.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeEditor } from 'rete';
|
|
2
|
-
import { BaseNodeClass } from '../models
|
|
3
|
-
import { Connection } from '../models/connection.model';
|
|
2
|
+
import { BaseNodeClass, Connection } from '../models';
|
|
4
3
|
import { Schemes } from '../types';
|
|
5
4
|
/**
|
|
6
5
|
*
|
|
@@ -28,4 +27,4 @@ export declare const removeConnections: (node: BaseNodeClass, editor: NodeEditor
|
|
|
28
27
|
* @param predicate
|
|
29
28
|
* @returns
|
|
30
29
|
*/
|
|
31
|
-
export declare const getConnections: (editor: NodeEditor<Schemes>, predicate: (connection: Connection) => boolean) => Connection<import("
|
|
30
|
+
export declare const getConnections: (editor: NodeEditor<Schemes>, predicate: (connection: Connection) => boolean) => Connection<import("../models").ContentNode<unknown>, BaseNodeClass<unknown>>[];
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from
|
|
2
|
-
import { ExtensionService } from
|
|
1
|
+
import { ChangeDetectorRef, ComponentFactoryResolver, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ExtensionService } from '../../../core/services/extension/extension.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DynamicColumnComponent implements OnInit, OnChanges, OnDestroy {
|
|
5
5
|
private extensions;
|
|
6
6
|
private componentFactoryResolver;
|
|
7
|
+
private cdr;
|
|
7
8
|
content: ViewContainerRef;
|
|
8
9
|
id: string;
|
|
9
10
|
context: any;
|
|
10
11
|
column: any;
|
|
11
12
|
private componentRef;
|
|
12
|
-
constructor(extensions: ExtensionService, componentFactoryResolver: ComponentFactoryResolver);
|
|
13
|
+
constructor(extensions: ExtensionService, componentFactoryResolver: ComponentFactoryResolver, cdr: ChangeDetectorRef);
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
ngOnChanges(changes: SimpleChanges): void;
|
|
15
16
|
ngOnDestroy(): void;
|
|
@@ -5,6 +5,7 @@ export declare abstract class BaseColumnComponent extends BaseComponent {
|
|
|
5
5
|
context: Record<string, any>;
|
|
6
6
|
column: Record<string, any>;
|
|
7
7
|
constructor(injector: Injector);
|
|
8
|
+
abstract update(): void;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseColumnComponent, never>;
|
|
9
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseColumnComponent, never, never, { "context": "context"; "column": "column"; }, {}, never>;
|
|
10
11
|
}
|