@acorex/components 16.19.19 → 16.19.21
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; }; "
|
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
|
}
|
@@ -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
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ApplicationRef } from '@angular/core';
|
2
|
-
import { Overlay } from '@angular/cdk/overlay';
|
2
|
+
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
3
3
|
import { AXConnectedPosition } from '@acorex/core';
|
4
4
|
import { DynamicOverlay } from './custom-cdk-overlay.service';
|
5
5
|
import * as i0 from "@angular/core";
|
@@ -26,7 +26,10 @@ export declare class AXOverlayService {
|
|
26
26
|
private overlayService2;
|
27
27
|
private appRef;
|
28
28
|
constructor(overlayService: DynamicOverlay, overlayService2: Overlay, appRef: ApplicationRef);
|
29
|
+
private activeOverlays;
|
29
30
|
show(content: any, context?: any, configs?: AXOverlayConfigs): AXOverlayViewRef;
|
31
|
+
closeOverlay(overlayRef: OverlayRef): void;
|
32
|
+
closeAllOverlays(): void;
|
30
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXOverlayService, never>;
|
31
34
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXOverlayService>;
|
32
35
|
}
|