angular-three 4.0.0-next.77 → 4.0.0-next.79

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.
@@ -34,7 +34,7 @@ export declare class NgtRenderer2 implements Renderer2 {
34
34
  [key: string]: any;
35
35
  };
36
36
  destroy(): void;
37
- createElement(name: string, namespace?: string | null): NgtRendererNode<"three"> | NgtRendererNode<"platform"> | NgtRendererNode<"portal">;
37
+ createElement(name: string, namespace?: string | null): NgtRendererNode<"three"> | NgtRendererNode<"portal"> | NgtRendererNode<"platform">;
38
38
  createComment(value: string): NgtRendererNode<"comment">;
39
39
  createText(value: string): NgtRendererNode<"text">;
40
40
  destroyNode: (node: NgtRendererNode) => void;
@@ -87,7 +87,7 @@ export interface NgtNodeElement<TConstructor extends NgtConstructorRepresentatio
87
87
  attach: string | string[] | NgtAttachFunction;
88
88
  dispose?: (() => void) | null;
89
89
  parameters: Partial<TInstance>;
90
- __ngt_args__: NgtArguments<TConstructor>;
90
+ __ngt_args__?: NgtArguments<TConstructor>;
91
91
  }
92
92
  export interface NgtNodeEventListener<TConstructor extends NgtConstructorRepresentation, TInstance = InstanceType<TConstructor>, TEventMap extends NgtNodeEventMap<TInstance> = TInstance extends NgtRaycastableRepresentation ? NgtAllObject3DEventsMap<TInstance> : NgtNodeEventMap<TInstance>> {
93
93
  addEventListener<TEventKey extends keyof TEventMap>(type: TEventKey, listener: (this: NgtNodeElement<TConstructor, TInstance>, ev: TEventMap[TEventKey]) => any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-three",
3
- "version": "4.0.0-next.77",
3
+ "version": "4.0.0-next.79",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },