@ng-util/monaco-editor 14.0.1 → 16.0.0

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.
@@ -32,5 +32,5 @@ export declare abstract class NuMonacoEditorBase implements AfterViewInit, OnCha
32
32
  } & SimpleChanges): void;
33
33
  ngOnDestroy(): void;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<NuMonacoEditorBase, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<NuMonacoEditorBase, "nu-monaco-base", never, { "height": "height"; "delay": "delay"; "disabled": "disabled"; "options": "options"; }, { "event": "event"; }, never, never, true>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<NuMonacoEditorBase, "nu-monaco-base", never, { "height": { "alias": "height"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
36
36
  }
@@ -7,5 +7,5 @@ export declare class NuMonacoEditorDiffComponent extends NuMonacoEditorBase {
7
7
  get editor(): monaco.editor.IStandaloneDiffEditor;
8
8
  initMonaco(options: monaco.editor.IStandaloneEditorConstructionOptions, initEvent: boolean): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<NuMonacoEditorDiffComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<NuMonacoEditorDiffComponent, "nu-monaco-diff-editor", ["nuMonacoDiffEditor"], { "old": "old"; "new": "new"; }, {}, never, never, true>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<NuMonacoEditorDiffComponent, "nu-monaco-diff-editor", ["nuMonacoDiffEditor"], { "old": { "alias": "old"; "required": false; }; "new": { "alias": "new"; "required": false; }; }, {}, never, never, true, never>;
11
11
  }
@@ -15,5 +15,5 @@ export declare class NuMonacoEditorComponent extends NuMonacoEditorBase implemen
15
15
  registerOnTouched(fn: any): void;
16
16
  setDisabledState(_isDisabled: boolean): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<NuMonacoEditorComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<NuMonacoEditorComponent, "nu-monaco-editor", ["nuMonacoEditor"], { "model": "model"; "autoFormat": "autoFormat"; }, {}, never, never, true>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<NuMonacoEditorComponent, "nu-monaco-editor", ["nuMonacoEditor"], { "model": { "alias": "model"; "required": false; }; "autoFormat": { "alias": "autoFormat"; "required": false; }; }, {}, never, never, true, never>;
19
19
  }
@@ -8,7 +8,7 @@ export interface NuMonacoEditorDiffModel {
8
8
  code: string;
9
9
  language?: string;
10
10
  }
11
- export declare type NuMonacoEditorEventType = 'load-error' | 'init' | 're-init' | 'resize' | 'update-diff';
11
+ export type NuMonacoEditorEventType = 'load-error' | 'init' | 're-init' | 'resize' | 'update-diff';
12
12
  export interface NuMonacoEditorEvent {
13
13
  type?: NuMonacoEditorEventType;
14
14
  editor?: monaco.editor.IStandaloneCodeEditor | monaco.editor.IStandaloneDiffEditor;