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.
@@ -1,6 +1,5 @@
1
1
  import { NodeEditor } from 'rete';
2
- import { BaseNodeClass } from '../models/base-node.model';
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("nuxeo-development-framework").ContentNode<unknown>, BaseNodeClass<unknown>>[];
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 "@angular/core";
2
- import { ExtensionService } from "../../../core/services/extension/extension.service";
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "4.5.7",
3
+ "version": "4.5.8",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",