@acorex/components 5.0.54 → 5.0.55
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/esm2020/lib/drawer/drawer-container.component.mjs +16 -6
- package/esm2020/lib/drawer/drawer.component.mjs +26 -5
- package/esm2020/lib/page/base-page.class.mjs +26 -11
- package/esm2020/lib/page/page.component.mjs +36 -11
- package/esm2020/lib/selection-list/selection-list.component.mjs +3 -3
- package/esm2020/lib/textbox/textbox.component.mjs +1 -1
- package/fesm2015/acorex-components.mjs +99 -29
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +99 -29
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/drawer/drawer-container.component.d.ts +1 -1
- package/lib/drawer/drawer.component.d.ts +2 -1
- package/lib/page/base-page.class.d.ts +8 -2
- package/lib/page/page.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -9,5 +9,5 @@ export declare class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
9
9
|
onViewInit(): void;
|
|
10
10
|
private _updateWidth;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerContainerComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, { "rtl": "rtl"; }, {}, ["drawers"], ["ax-drawer[location='start']", "ax-drawer-content", "ax-drawer[location='end']"]>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, { "rtl": "rtl"; }, {}, ["drawers"], ["ax-drawer[location='top']", "ax-drawer[location='start']", "ax-drawer-content", "ax-drawer[location='end']", "ax-drawer[location='bottom']"]>;
|
|
13
13
|
}
|
|
@@ -8,12 +8,13 @@ export declare class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
8
8
|
onChanged: EventEmitter<AXEvent>;
|
|
9
9
|
mode: 'push' | 'overlay';
|
|
10
10
|
_currentMode: 'push' | 'overlay';
|
|
11
|
-
location: 'start' | 'end';
|
|
11
|
+
location: 'start' | 'end' | 'top' | 'bottom';
|
|
12
12
|
private _backdrop;
|
|
13
13
|
private _collapsed;
|
|
14
14
|
get collapsed(): boolean;
|
|
15
15
|
set collapsed(v: boolean);
|
|
16
16
|
onInit(): void;
|
|
17
|
+
private _setLocation;
|
|
17
18
|
private _updateClass;
|
|
18
19
|
onViewInit(): void;
|
|
19
20
|
toggle(): void;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { AXEvent } from '../base/events.class';
|
|
3
3
|
import { AXPageFooterComponent } from './page-footer.component';
|
|
4
|
+
import { AXBaseComponentMixin } from '../base';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const TAB_META_KEY = "__meta__";
|
|
6
7
|
export declare class AXPageCloseEvent extends AXEvent {
|
|
@@ -22,9 +23,14 @@ export declare class AXPageClosedPromise extends Promise<AXPageResult> {
|
|
|
22
23
|
constructor(executor: (resolve: (value?: AXPageResult | PromiseLike<AXPageResult>) => void, reject: (reason?: any) => void) => void);
|
|
23
24
|
close(): void;
|
|
24
25
|
}
|
|
25
|
-
export declare class AXBasePageComponent {
|
|
26
|
+
export declare class AXBasePageComponent extends AXBaseComponentMixin {
|
|
27
|
+
/**
|
|
28
|
+
* @ignore
|
|
29
|
+
*/
|
|
30
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
26
31
|
private pageContainer;
|
|
27
32
|
footer: AXPageFooterComponent;
|
|
33
|
+
isLoadingChange: EventEmitter<boolean>;
|
|
28
34
|
private _isLoading;
|
|
29
35
|
get isLoading(): boolean;
|
|
30
36
|
set isLoading(v: boolean);
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef } from "@angular/core";
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter } from "@angular/core";
|
|
2
2
|
import { AXBaseComponentMixin } from "../base";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare abstract class AXPageComponent extends AXBaseComponentMixin {
|
|
5
5
|
private _loadingService;
|
|
6
6
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _loadingService: any);
|
|
7
7
|
private _loadingId;
|
|
8
|
+
isLoadingChange: EventEmitter<boolean>;
|
|
8
9
|
private _isLoading;
|
|
9
10
|
get isLoading(): boolean;
|
|
10
11
|
set isLoading(v: boolean);
|