@dotglitch/ngx-common 1.0.33 → 1.0.34

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.
@@ -10239,6 +10239,7 @@ class VscodeComponent {
10239
10239
  get language() { return this._language; }
10240
10240
  get settings() {
10241
10241
  return {
10242
+ ...this.restSettings,
10242
10243
  theme: this.theme,
10243
10244
  language: this.language,
10244
10245
  tabSize: this.tabSize,
@@ -10284,9 +10285,8 @@ class VscodeComponent {
10284
10285
  this.mouseWheelScrollSensitivity = 2;
10285
10286
  this.scrollBeyondLastLine = false;
10286
10287
  this.scrollBeyondLastColumn = 0;
10287
- this.scrollbarAlwaysConsumeMouseWheel = 2;
10288
10288
  this.lineNumbers = "on";
10289
- this.verticalScrollExhausted = false;
10289
+ this.restSettings = {};
10290
10290
  this.resize = () => {
10291
10291
  this.editor?.layout();
10292
10292
  };
@@ -10390,7 +10390,7 @@ class VscodeComponent {
10390
10390
  */
10391
10391
  VscodeComponent.isMonacoInstalled = false;
10392
10392
  VscodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: VscodeComponent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
10393
- VscodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: VscodeComponent, isStandalone: true, selector: "app-vscode", inputs: { code: "code", customLanguage: "customLanguage", language: "language", installationLocation: "installationLocation", tabSize: "tabSize", readOnly: "readOnly", theme: "theme", fontFamily: "fontFamily", fontSize: "fontSize", automaticLayout: "automaticLayout", colorDecorators: "colorDecorators", folding: "folding", minimapEnabled: "minimapEnabled", minimap: "minimap", scrollbar: "scrollbar", smoothScrolling: "smoothScrolling", mouseWheelScrollSensitivity: "mouseWheelScrollSensitivity", scrollBeyondLastLine: "scrollBeyondLastLine", scrollBeyondLastColumn: "scrollBeyondLastColumn", scrollbarAlwaysConsumeMouseWheel: "scrollbarAlwaysConsumeMouseWheel", lineNumbers: "lineNumbers" }, outputs: { codeChange: "codeChange" }, host: { listeners: { "window:resize": "resize($event)" } }, usesOnChanges: true, ngImport: i0, template: '', isInline: true, styles: [":host{display:block;height:100%;max-height:100vh;max-width:100vw}\n"] });
10393
+ VscodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: VscodeComponent, isStandalone: true, selector: "app-vscode", inputs: { code: "code", customLanguage: "customLanguage", language: "language", installationLocation: "installationLocation", tabSize: "tabSize", readOnly: "readOnly", theme: "theme", fontFamily: "fontFamily", fontSize: "fontSize", automaticLayout: "automaticLayout", colorDecorators: "colorDecorators", folding: "folding", minimapEnabled: "minimapEnabled", minimap: "minimap", scrollbar: "scrollbar", smoothScrolling: "smoothScrolling", mouseWheelScrollSensitivity: "mouseWheelScrollSensitivity", scrollBeyondLastLine: "scrollBeyondLastLine", scrollBeyondLastColumn: "scrollBeyondLastColumn", lineNumbers: "lineNumbers", restSettings: "restSettings" }, outputs: { codeChange: "codeChange" }, host: { listeners: { "window:resize": "resize($event)" } }, usesOnChanges: true, ngImport: i0, template: '', isInline: true, styles: [":host{display:block;height:100%;max-height:100vh;max-width:100vw}\n"] });
10394
10394
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: VscodeComponent, decorators: [{
10395
10395
  type: Component,
10396
10396
  args: [{ selector: 'app-vscode', template: '', standalone: true, styles: [":host{display:block;height:100%;max-height:100vh;max-width:100vw}\n"] }]
@@ -10434,10 +10434,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
10434
10434
  type: Input
10435
10435
  }], scrollBeyondLastColumn: [{
10436
10436
  type: Input
10437
- }], scrollbarAlwaysConsumeMouseWheel: [{
10438
- type: Input
10439
10437
  }], lineNumbers: [{
10440
10438
  type: Input
10439
+ }], restSettings: [{
10440
+ type: Input
10441
10441
  }], resize: [{
10442
10442
  type: HostListener,
10443
10443
  args: ['window:resize', ['$event']]