@acorex/components 19.4.1 → 19.5.0-next.0
Sign up to get free protection for your applications and to get access to all the features.
- package/fesm2022/acorex-components-form.mjs +1 -1
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-phone-box.mjs +0 -2
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-popover.mjs +17 -5
- package/fesm2022/acorex-components-popover.mjs.map +1 -1
- package/fesm2022/acorex-components-qrcode.mjs +0 -2
- package/fesm2022/acorex-components-qrcode.mjs.map +1 -1
- package/fesm2022/acorex-components-rail-navigation.mjs +6 -5
- package/fesm2022/acorex-components-rail-navigation.mjs.map +1 -1
- package/fesm2022/acorex-components-step-wizard.mjs +0 -4
- package/fesm2022/acorex-components-step-wizard.mjs.map +1 -1
- package/fesm2022/acorex-components-tabs.mjs +2 -2
- package/fesm2022/acorex-components-tabs.mjs.map +1 -1
- package/package.json +1 -1
- package/popover/lib/popover.component.d.ts +5 -3
- package/rail-navigation/lib/rail-navigation-item/rail-navigation-item.component.d.ts +2 -3
@@ -12,6 +12,8 @@ export declare class AXPopoverComponent extends MXBaseComponent {
|
|
12
12
|
#private;
|
13
13
|
private document;
|
14
14
|
private platformID;
|
15
|
+
private renderer;
|
16
|
+
private onKeyDownListenerFn;
|
15
17
|
/** @ignore */
|
16
18
|
private _platform;
|
17
19
|
/** @ignore */
|
@@ -51,13 +53,13 @@ export declare class AXPopoverComponent extends MXBaseComponent {
|
|
51
53
|
/** @ignore */
|
52
54
|
private _target;
|
53
55
|
/**
|
54
|
-
* Gets or sets the target element, supporting
|
56
|
+
* Gets or sets the target element, supporting Element, ElementRef, or MXBaseComponent.
|
55
57
|
*/
|
56
|
-
get target():
|
58
|
+
get target(): Element | ElementRef | MXBaseComponent;
|
57
59
|
/**
|
58
60
|
* Sets the target element and updates event bindings.
|
59
61
|
*/
|
60
|
-
set target(v:
|
62
|
+
set target(v: Element | ElementRef | MXBaseComponent);
|
61
63
|
/** @ignore */
|
62
64
|
private _defautPlacements;
|
63
65
|
/** @ignore */
|
@@ -7,9 +7,8 @@ export declare class AXRailNavigationItemComponent extends MXBaseComponent imple
|
|
7
7
|
private railNavigationService;
|
8
8
|
private platformId;
|
9
9
|
onClick: import("@angular/core").OutputEmitterRef<AXRailClickEvent>;
|
10
|
-
isLoading: import("@angular/core").ModelSignal<boolean>;
|
11
|
-
disabled: import("@angular/core").ModelSignal<boolean>;
|
12
10
|
active: import("@angular/core").ModelSignal<boolean>;
|
11
|
+
disabled: import("@angular/core").ModelSignal<boolean>;
|
13
12
|
href: import("@angular/core").InputSignal<string>;
|
14
13
|
routerLink: import("@angular/core").InputSignal<string | any[] | UrlTree>;
|
15
14
|
routerLinkActive: import("@angular/core").InputSignal<string | string[]>;
|
@@ -28,5 +27,5 @@ export declare class AXRailNavigationItemComponent extends MXBaseComponent imple
|
|
28
27
|
};
|
29
28
|
private checkActive;
|
30
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXRailNavigationItemComponent, never>;
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXRailNavigationItemComponent, "ax-rail-navigation-item", never, { "
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXRailNavigationItemComponent, "ax-rail-navigation-item", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActive": { "alias": "routerLinkActive"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; "active": "activeChange"; "disabled": "disabledChange"; }, never, ["ax-prefix", "ax-icon", "ax-text", "ng-container,ng-content", "ax-suffix"], false, never>;
|
32
31
|
}
|