@acorex/components 16.19.18 → 16.19.20

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.
@@ -15,7 +15,6 @@ export declare class AXCheckBoxComponent extends AXValidatableComponent implemen
15
15
  label: string;
16
16
  tabIndex: number;
17
17
  indeterminate: boolean;
18
- useTreeView: false;
19
18
  focus(): void;
20
19
  constructor(cdr: ChangeDetectorRef, ref: ElementRef);
21
20
  onValueChanged: EventEmitter<AXValueEvent<boolean>>;
@@ -26,6 +25,7 @@ export declare class AXCheckBoxComponent extends AXValidatableComponent implemen
26
25
  set value(v: boolean);
27
26
  ngOnInit(): void;
28
27
  handleClick(e: MouseEvent): void;
28
+ private isInsideTreeView;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "useTreeView": { "alias": "useTreeView"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; "onClick": "onClick"; }, never, never, false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; "onClick": "onClick"; }, never, never, false, never>;
31
31
  }
@@ -1,7 +1,7 @@
1
- import { ElementRef, AfterViewInit, EventEmitter, ChangeDetectorRef, ViewContainerRef, TemplateRef, OnDestroy } from '@angular/core';
1
+ import { Overlay } from '@angular/cdk/overlay';
2
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
2
3
  import { AXBaseDropdownComponent } from '../base/element.class';
3
4
  import { AXHtmlEvent } from '../base/events.class';
4
- import { Overlay } from '@angular/cdk/overlay';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class AXDropdownComponent extends AXBaseDropdownComponent implements AfterViewInit, OnDestroy {
7
7
  private cdr;
@@ -4,9 +4,12 @@ import * as i0 from "@angular/core";
4
4
  export declare class AXPasswordBoxComponent extends AXBaseTextComponent {
5
5
  protected cdr: ChangeDetectorRef;
6
6
  constructor(cdr: ChangeDetectorRef, ref: ElementRef);
7
+ allowAutocomplete: import("@angular/core").InputSignal<boolean>;
7
8
  type: 'text' | 'password';
8
9
  eyeIcon: string;
10
+ ngAfterViewInit(): void;
9
11
  handleShowPassword(): void;
12
+ private getInputElement;
10
13
  static ɵfac: i0.ɵɵFactoryDeclaration<AXPasswordBoxComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<AXPasswordBoxComponent, "ax-password-box", never, {}, {}, never, ["[start]", "[end]"], false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXPasswordBoxComponent, "ax-password-box", never, { "allowAutocomplete": { "alias": "allowAutocomplete"; "required": false; "isSignal": true; }; }, {}, never, ["[start]", "[end]"], false, never>;
12
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "16.19.18",
3
+ "version": "16.19.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.5",
6
6
  "@angular/core": "^19.0.5",