@acorex/components 21.0.0-next52 → 21.0.1-next.1

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.
Files changed (54) hide show
  1. package/code-editor/index.d.ts +5 -1
  2. package/data-list/index.d.ts +1 -1
  3. package/decorators/index.d.ts +5 -1
  4. package/fesm2022/acorex-components-code-editor.mjs +17 -6
  5. package/fesm2022/acorex-components-code-editor.mjs.map +1 -1
  6. package/fesm2022/acorex-components-data-list.mjs +11 -22
  7. package/fesm2022/acorex-components-data-list.mjs.map +1 -1
  8. package/fesm2022/acorex-components-data-pager.mjs +0 -1
  9. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  10. package/fesm2022/acorex-components-data-table.mjs +12 -5
  11. package/fesm2022/acorex-components-data-table.mjs.map +1 -1
  12. package/fesm2022/acorex-components-decorators.mjs +22 -3
  13. package/fesm2022/acorex-components-decorators.mjs.map +1 -1
  14. package/fesm2022/acorex-components-form.mjs +6 -8
  15. package/fesm2022/acorex-components-form.mjs.map +1 -1
  16. package/fesm2022/acorex-components-json-viewer.mjs +11 -5
  17. package/fesm2022/acorex-components-json-viewer.mjs.map +1 -1
  18. package/fesm2022/acorex-components-media-viewer.mjs +18 -24
  19. package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
  20. package/fesm2022/acorex-components-menu.mjs +26 -5
  21. package/fesm2022/acorex-components-menu.mjs.map +1 -1
  22. package/fesm2022/{acorex-components-modal-acorex-components-modal-iYSPzoLn.mjs → acorex-components-modal-acorex-components-modal-BNmjgw73.mjs} +27 -3
  23. package/fesm2022/acorex-components-modal-acorex-components-modal-BNmjgw73.mjs.map +1 -0
  24. package/fesm2022/{acorex-components-modal-modal-content.component-sZWKhYM-.mjs → acorex-components-modal-modal-content.component-B02583hv.mjs} +2 -2
  25. package/fesm2022/{acorex-components-modal-modal-content.component-sZWKhYM-.mjs.map → acorex-components-modal-modal-content.component-B02583hv.mjs.map} +1 -1
  26. package/fesm2022/acorex-components-modal.mjs +1 -1
  27. package/fesm2022/acorex-components-number-box.mjs +4 -5
  28. package/fesm2022/acorex-components-number-box.mjs.map +1 -1
  29. package/fesm2022/acorex-components-pdf-reader.mjs +2 -2
  30. package/fesm2022/acorex-components-pdf-reader.mjs.map +1 -1
  31. package/fesm2022/acorex-components-phone-box.mjs +12 -3
  32. package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
  33. package/fesm2022/acorex-components-popover.mjs +136 -175
  34. package/fesm2022/acorex-components-popover.mjs.map +1 -1
  35. package/fesm2022/acorex-components-popup.mjs +308 -105
  36. package/fesm2022/acorex-components-popup.mjs.map +1 -1
  37. package/fesm2022/acorex-components-side-menu.mjs +2 -2
  38. package/fesm2022/acorex-components-side-menu.mjs.map +1 -1
  39. package/fesm2022/acorex-components-tree-view.mjs +68 -7
  40. package/fesm2022/acorex-components-tree-view.mjs.map +1 -1
  41. package/fesm2022/acorex-components-wysiwyg.mjs +5 -5
  42. package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
  43. package/json-viewer/index.d.ts +3 -2
  44. package/media-viewer/index.d.ts +3 -4
  45. package/menu/index.d.ts +4 -0
  46. package/modal/index.d.ts +7 -0
  47. package/number-box/index.d.ts +1 -1
  48. package/package.json +7 -7
  49. package/phone-box/index.d.ts +4 -1
  50. package/popover/index.d.ts +20 -27
  51. package/popup/index.d.ts +103 -27
  52. package/tree-view/index.d.ts +26 -4
  53. package/wysiwyg/index.d.ts +0 -1
  54. package/fesm2022/acorex-components-modal-acorex-components-modal-iYSPzoLn.mjs.map +0 -1
@@ -284,6 +284,8 @@ declare class AXCodeEditorComponent extends MXValueComponent<string> {
284
284
  focusOnReady: _angular_core.InputSignal<boolean>;
285
285
  /** If true, format the document via Prettier before emitting save. */
286
286
  formatOnSave: _angular_core.InputSignal<boolean>;
287
+ /** Minimum number of rows (lines) to display. Controls the minimum height of the editor. */
288
+ minRow: _angular_core.InputSignal<number>;
287
289
  /**
288
290
  * Custom autocompletion options: either a static array of Completion items
289
291
  * or a CodeMirror CompletionSource function.
@@ -309,6 +311,8 @@ declare class AXCodeEditorComponent extends MXValueComponent<string> {
309
311
  private lineNumbersCompartment;
310
312
  private cm;
311
313
  private isBrowser;
314
+ /** Computed minimum height based on minRow (excluding gutter/line numbers). */
315
+ getMinHeight(): string | null;
312
316
  constructor();
313
317
  private initializeEditor;
314
318
  private reconfigure;
@@ -332,7 +336,7 @@ declare class AXCodeEditorComponent extends MXValueComponent<string> {
332
336
  /** Returns the total number of lines in the current document. */
333
337
  getTotalLines(): number;
334
338
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXCodeEditorComponent, never>;
335
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXCodeEditorComponent, "ax-code-editor", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "language": { "alias": "language"; "required": false; "isSignal": true; }; "editorReadonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "lineNumbers": { "alias": "lineNumbers"; "required": false; "isSignal": true; }; "lineWrapping": { "alias": "lineWrapping"; "required": false; "isSignal": true; }; "tabSize": { "alias": "tabSize"; "required": false; "isSignal": true; }; "indentWithTab": { "alias": "indentWithTab"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "extensions": { "alias": "extensions"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "focusOnReady": { "alias": "focusOnReady"; "required": false; "isSignal": true; }; "formatOnSave": { "alias": "formatOnSave"; "required": false; "isSignal": true; }; "customCompletions": { "alias": "customCompletions"; "required": false; "isSignal": true; }; }, { "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; "stateChange": "stateChange"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "ready": "ready"; "save": "save"; }, never, ["ax-validation-rule"], true, never>;
339
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXCodeEditorComponent, "ax-code-editor", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "language": { "alias": "language"; "required": false; "isSignal": true; }; "editorReadonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "lineNumbers": { "alias": "lineNumbers"; "required": false; "isSignal": true; }; "lineWrapping": { "alias": "lineWrapping"; "required": false; "isSignal": true; }; "tabSize": { "alias": "tabSize"; "required": false; "isSignal": true; }; "indentWithTab": { "alias": "indentWithTab"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "extensions": { "alias": "extensions"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "focusOnReady": { "alias": "focusOnReady"; "required": false; "isSignal": true; }; "formatOnSave": { "alias": "formatOnSave"; "required": false; "isSignal": true; }; "minRow": { "alias": "minRow"; "required": false; "isSignal": true; }; "customCompletions": { "alias": "customCompletions"; "required": false; "isSignal": true; }; }, { "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; "stateChange": "stateChange"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "ready": "ready"; "save": "save"; }, never, ["ax-validation-rule"], true, never>;
336
340
  }
337
341
 
338
342
  declare class AXCodeEditorModule {
@@ -1,7 +1,7 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { OnInit, TemplateRef, EventEmitter } from '@angular/core';
3
- import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
4
3
  import { MXValueComponent, AXDataSource, AXListDataSource } from '@acorex/cdk/common';
4
+ import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
5
5
 
6
6
  interface AXDataListItem {
7
7
  id: string;
@@ -72,9 +72,13 @@ declare class AXDecoratorColorIndicatorComponent {
72
72
  }
73
73
 
74
74
  declare class AXDecoratorFullScreenButtonComponent extends MXBaseComponent {
75
+ #private;
76
+ private readonly fullScreenService;
77
+ private readonly elementRef;
78
+ element: i0.ModelSignal<HTMLElement>;
75
79
  isActive: i0.ModelSignal<boolean>;
76
80
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorFullScreenButtonComponent, never>;
77
- static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorFullScreenButtonComponent, "ax-fullscreen-button", never, { "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, { "isActive": "isActiveChange"; }, never, never, true, never>;
81
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorFullScreenButtonComponent, "ax-fullscreen-button", never, { "element": { "alias": "element"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, { "element": "elementChange"; "isActive": "isActiveChange"; }, never, never, true, never>;
78
82
  }
79
83
 
80
84
  /**
@@ -464,6 +464,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
464
464
  }], ctorParameters: () => [] });
465
465
 
466
466
  class AXCodeEditorComponent extends MXValueComponent {
467
+ /** Computed minimum height based on minRow (excluding gutter/line numbers). */
468
+ getMinHeight() {
469
+ const rows = this.minRow();
470
+ if (!rows || rows <= 0)
471
+ return null;
472
+ // CodeMirror default line height is typically 1.5em, but we use rem for consistency
473
+ // This calculates height without accounting for gutter since gutter is separate
474
+ return `calc(${rows} * 1.5rem)`;
475
+ }
467
476
  constructor() {
468
477
  super();
469
478
  // Inputs (signals)
@@ -492,6 +501,8 @@ class AXCodeEditorComponent extends MXValueComponent {
492
501
  this.focusOnReady = input(false, ...(ngDevMode ? [{ debugName: "focusOnReady" }] : []));
493
502
  /** If true, format the document via Prettier before emitting save. */
494
503
  this.formatOnSave = input(false, ...(ngDevMode ? [{ debugName: "formatOnSave" }] : []));
504
+ /** Minimum number of rows (lines) to display. Controls the minimum height of the editor. */
505
+ this.minRow = input(null, ...(ngDevMode ? [{ debugName: "minRow" }] : []));
495
506
  /**
496
507
  * Custom autocompletion options: either a static array of Completion items
497
508
  * or a CodeMirror CompletionSource function.
@@ -842,7 +853,7 @@ class AXCodeEditorComponent extends MXValueComponent {
842
853
  return text ? text.split(/\r?\n/).length : 1;
843
854
  }
844
855
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: AXCodeEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
845
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.3.9", type: AXCodeEditorComponent, isStandalone: true, selector: "ax-code-editor", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: false, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: false, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: false, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: false, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: false, isRequired: false, transformFunction: null }, language: { classPropertyName: "language", publicName: "language", isSignal: true, isRequired: false, transformFunction: null }, editorReadonly: { classPropertyName: "editorReadonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, lineNumbers: { classPropertyName: "lineNumbers", publicName: "lineNumbers", isSignal: true, isRequired: false, transformFunction: null }, lineWrapping: { classPropertyName: "lineWrapping", publicName: "lineWrapping", isSignal: true, isRequired: false, transformFunction: null }, tabSize: { classPropertyName: "tabSize", publicName: "tabSize", isSignal: true, isRequired: false, transformFunction: null }, indentWithTab: { classPropertyName: "indentWithTab", publicName: "indentWithTab", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, extensions: { classPropertyName: "extensions", publicName: "extensions", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, focusOnReady: { classPropertyName: "focusOnReady", publicName: "focusOnReady", isSignal: true, isRequired: false, transformFunction: null }, formatOnSave: { classPropertyName: "formatOnSave", publicName: "formatOnSave", isSignal: true, isRequired: false, transformFunction: null }, customCompletions: { classPropertyName: "customCompletions", publicName: "customCompletions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onValueChanged: "onValueChanged", valueChange: "valueChange", stateChange: "stateChange", readonlyChange: "readonlyChange", disabledChange: "disabledChange", ready: "ready", save: "save" }, host: { listeners: { "keydown.control.s": "onSaveShortcut($event)" }, classAttribute: "ax-code-editor block" }, providers: [
856
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.3.9", type: AXCodeEditorComponent, isStandalone: true, selector: "ax-code-editor", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: false, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: false, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: false, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: false, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: false, isRequired: false, transformFunction: null }, language: { classPropertyName: "language", publicName: "language", isSignal: true, isRequired: false, transformFunction: null }, editorReadonly: { classPropertyName: "editorReadonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, lineNumbers: { classPropertyName: "lineNumbers", publicName: "lineNumbers", isSignal: true, isRequired: false, transformFunction: null }, lineWrapping: { classPropertyName: "lineWrapping", publicName: "lineWrapping", isSignal: true, isRequired: false, transformFunction: null }, tabSize: { classPropertyName: "tabSize", publicName: "tabSize", isSignal: true, isRequired: false, transformFunction: null }, indentWithTab: { classPropertyName: "indentWithTab", publicName: "indentWithTab", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, extensions: { classPropertyName: "extensions", publicName: "extensions", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, focusOnReady: { classPropertyName: "focusOnReady", publicName: "focusOnReady", isSignal: true, isRequired: false, transformFunction: null }, formatOnSave: { classPropertyName: "formatOnSave", publicName: "formatOnSave", isSignal: true, isRequired: false, transformFunction: null }, minRow: { classPropertyName: "minRow", publicName: "minRow", isSignal: true, isRequired: false, transformFunction: null }, customCompletions: { classPropertyName: "customCompletions", publicName: "customCompletions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onValueChanged: "onValueChanged", valueChange: "valueChange", stateChange: "stateChange", readonlyChange: "readonlyChange", disabledChange: "disabledChange", ready: "ready", save: "save" }, host: { listeners: { "keydown.control.s": "onSaveShortcut($event)" }, classAttribute: "ax-code-editor block" }, providers: [
846
857
  { provide: AXValuableComponent, useExisting: AXCodeEditorComponent },
847
858
  {
848
859
  provide: NG_VALUE_ACCESSOR,
@@ -851,7 +862,7 @@ class AXCodeEditorComponent extends MXValueComponent {
851
862
  },
852
863
  { provide: AXComponent, useExisting: AXCodeEditorComponent },
853
864
  ], viewQueries: [{ propertyName: "host", first: true, predicate: ["host"], descendants: true, isSignal: true }], usesInheritance: true, ngImport: i0, template: `
854
- <div class="ax-editor-container">
865
+ <div class="ax-editor-container" [style.min-height]="getMinHeight()">
855
866
  <div class="ax-code-editor-container">
856
867
  <div
857
868
  #host
@@ -864,7 +875,7 @@ class AXCodeEditorComponent extends MXValueComponent {
864
875
  <ng-content select="ax-validation-rule"> </ng-content>
865
876
  </div>
866
877
  <div class="ax-error-container"></div>
867
- `, isInline: true, styles: [":host{display:block;width:100%;height:100%}:host .ax-editor-container{padding:.1rem}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{display:block;height:100%!important;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;overflow:visible;position:relative}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }); }
878
+ `, isInline: true, styles: [":host{display:block;width:100%;height:100%}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{height:100%;width:100%;align-items:start;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;--ax-comp-editor-border-width: 1px}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%;width:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }); }
868
879
  }
869
880
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: AXCodeEditorComponent, decorators: [{
870
881
  type: Component,
@@ -880,7 +891,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
880
891
  },
881
892
  { provide: AXComponent, useExisting: AXCodeEditorComponent },
882
893
  ], template: `
883
- <div class="ax-editor-container">
894
+ <div class="ax-editor-container" [style.min-height]="getMinHeight()">
884
895
  <div class="ax-code-editor-container">
885
896
  <div
886
897
  #host
@@ -893,8 +904,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
893
904
  <ng-content select="ax-validation-rule"> </ng-content>
894
905
  </div>
895
906
  <div class="ax-error-container"></div>
896
- `, styles: [":host{display:block;width:100%;height:100%}:host .ax-editor-container{padding:.1rem}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{display:block;height:100%!important;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;overflow:visible;position:relative}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }]
897
- }], ctorParameters: () => [], propDecorators: { language: [{ type: i0.Input, args: [{ isSignal: true, alias: "language", required: false }] }], editorReadonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], lineNumbers: [{ type: i0.Input, args: [{ isSignal: true, alias: "lineNumbers", required: false }] }], lineWrapping: [{ type: i0.Input, args: [{ isSignal: true, alias: "lineWrapping", required: false }] }], tabSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "tabSize", required: false }] }], indentWithTab: [{ type: i0.Input, args: [{ isSignal: true, alias: "indentWithTab", required: false }] }], theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], extensions: [{ type: i0.Input, args: [{ isSignal: true, alias: "extensions", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaLabel", required: false }] }], focusOnReady: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusOnReady", required: false }] }], formatOnSave: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatOnSave", required: false }] }], customCompletions: [{ type: i0.Input, args: [{ isSignal: true, alias: "customCompletions", required: false }] }], ready: [{ type: i0.Output, args: ["ready"] }], save: [{ type: i0.Output, args: ["save"] }], host: [{ type: i0.ViewChild, args: ['host', { isSignal: true }] }] } });
907
+ `, styles: [":host{display:block;width:100%;height:100%}:host.ax-disable{opacity:.5;cursor:not-allowed}:host>.ax-editor-container{height:100%;width:100%;align-items:start;--ax-comp-editor-space-start-size: 0;--ax-comp-editor-space-end-size: 0;--ax-comp-editor-border-width: 1px}:host .ax-code-editor-container{display:flex;flex-direction:column;height:100%;width:100%}:host .cm-editor{width:100%;max-width:100%;overflow:auto}:host .cm-editor.cm-focused{outline:none}:host .ax-error-message{padding-inline:.5rem}\n"] }]
908
+ }], ctorParameters: () => [], propDecorators: { language: [{ type: i0.Input, args: [{ isSignal: true, alias: "language", required: false }] }], editorReadonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], lineNumbers: [{ type: i0.Input, args: [{ isSignal: true, alias: "lineNumbers", required: false }] }], lineWrapping: [{ type: i0.Input, args: [{ isSignal: true, alias: "lineWrapping", required: false }] }], tabSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "tabSize", required: false }] }], indentWithTab: [{ type: i0.Input, args: [{ isSignal: true, alias: "indentWithTab", required: false }] }], theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], extensions: [{ type: i0.Input, args: [{ isSignal: true, alias: "extensions", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaLabel", required: false }] }], focusOnReady: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusOnReady", required: false }] }], formatOnSave: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatOnSave", required: false }] }], minRow: [{ type: i0.Input, args: [{ isSignal: true, alias: "minRow", required: false }] }], customCompletions: [{ type: i0.Input, args: [{ isSignal: true, alias: "customCompletions", required: false }] }], ready: [{ type: i0.Output, args: ["ready"] }], save: [{ type: i0.Output, args: ["save"] }], host: [{ type: i0.ViewChild, args: ['host', { isSignal: true }] }] } });
898
909
 
899
910
  class AXCodeEditorModule {
900
911
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: AXCodeEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }