@acorex/components 16.19.50 → 16.19.52
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.
- package/fesm2022/acorex-components.mjs +35 -18
- package/fesm2022/acorex-components.mjs.map +1 -1
- package/lib/button/button.component.d.ts +2 -0
- package/lib/popup/popup.component.d.ts +6 -5
- package/lib/search-bar/search-bar.component.d.ts +3 -1
- package/lib/tab-view/tab-view.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ export declare class AXButtonComponent extends AXBaseButtonComponent {
|
|
|
5
5
|
private el;
|
|
6
6
|
constructor(el: ElementRef);
|
|
7
7
|
container: ElementRef<HTMLButtonElement>;
|
|
8
|
+
private platFormSerivce;
|
|
9
|
+
protected isRtl: import("@angular/core").WritableSignal<boolean>;
|
|
8
10
|
type: string;
|
|
9
11
|
icon: string;
|
|
10
12
|
submitBehavior: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { AXButtonItem, AXRenderService } from '@acorex/core';
|
|
2
|
+
import { ChangeDetectorRef, ComponentFactoryResolver, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
3
3
|
import { AXPageCloseEvent } from '../base/base-page.class';
|
|
4
|
-
import {
|
|
4
|
+
import { AXBaseComponent } from '../base/element.class';
|
|
5
5
|
import { AXLoadingService } from '../loading/loading.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class AXPopupComponent extends AXBaseComponent implements OnDestroy {
|
|
@@ -10,11 +10,12 @@ export declare class AXPopupComponent extends AXBaseComponent implements OnDestr
|
|
|
10
10
|
private rendererService;
|
|
11
11
|
private loadingService;
|
|
12
12
|
private cdr;
|
|
13
|
-
private _platform;
|
|
14
13
|
isLoading: boolean;
|
|
15
14
|
_loadingId: number;
|
|
16
15
|
private onFooterButtonsSubscription;
|
|
17
|
-
constructor(resolver: ComponentFactoryResolver, ref: ElementRef<HTMLDivElement>, rendererService: AXRenderService, loadingService: AXLoadingService, cdr: ChangeDetectorRef
|
|
16
|
+
constructor(resolver: ComponentFactoryResolver, ref: ElementRef<HTMLDivElement>, rendererService: AXRenderService, loadingService: AXLoadingService, cdr: ChangeDetectorRef);
|
|
17
|
+
private _platform;
|
|
18
|
+
protected isRtl: import("@angular/core").WritableSignal<boolean>;
|
|
18
19
|
ngAfterViewInit(): void;
|
|
19
20
|
private loadComponent;
|
|
20
21
|
private popupBody;
|
|
@@ -19,9 +19,11 @@ export declare class AXSearchBarComponent {
|
|
|
19
19
|
private cdr;
|
|
20
20
|
ref: ElementRef<HTMLDivElement>;
|
|
21
21
|
constructor(cdr: ChangeDetectorRef, ref: ElementRef<HTMLDivElement>);
|
|
22
|
+
private isActiveValueChange;
|
|
22
23
|
searchPopover: AXPopoverComponent;
|
|
23
24
|
_editors: QueryList<AXPropertyEditorRendererDirective>;
|
|
24
25
|
form: AXValidationFormComponent;
|
|
26
|
+
showBadge: import("@angular/core").InputSignal<boolean>;
|
|
25
27
|
sizeButton: AXElementSize;
|
|
26
28
|
size: 'sm' | 'md' | 'lg' | 'full';
|
|
27
29
|
disabled: boolean;
|
|
@@ -63,5 +65,5 @@ export declare class AXSearchBarComponent {
|
|
|
63
65
|
open(): void;
|
|
64
66
|
close(): void;
|
|
65
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSearchBarComponent, never>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSearchBarComponent, "ax-search-bar", never, { "sizeButton": { "alias": "sizeButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "popoverWidth": { "alias": "popoverWidth"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "loadOnInit": { "alias": "loadOnInit"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "block": { "alias": "block"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "onValueChange": "onValueChange"; "onSearchValue": "onSearchValue"; "onClose": "onClose"; }, never, never, false, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSearchBarComponent, "ax-search-bar", never, { "showBadge": { "alias": "showBadge"; "required": false; "isSignal": true; }; "sizeButton": { "alias": "sizeButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "popoverWidth": { "alias": "popoverWidth"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "loadOnInit": { "alias": "loadOnInit"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "block": { "alias": "block"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "onValueChange": "onValueChange"; "onSearchValue": "onSearchValue"; "onClose": "onClose"; }, never, never, false, never>;
|
|
67
69
|
}
|
|
@@ -10,6 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class AXTabViewComponent implements AfterContentInit {
|
|
11
11
|
private ref;
|
|
12
12
|
private _componentFactoryResolver;
|
|
13
|
+
private get __hostClass();
|
|
13
14
|
dynamicTabs: AXTabComponent[];
|
|
14
15
|
tabs: QueryList<AXTabComponent>;
|
|
15
16
|
dynamicTabPlaceholder: DynamicTabsDirective;
|