@acorex/components 4.1.6 → 4.1.10
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/base/components.class.mjs +17 -0
- package/esm2020/lib/calendar/calendar-box/calendar-box.component.mjs +3 -3
- package/esm2020/lib/calendar/calendar-box/calendar-box.module.mjs +5 -5
- package/esm2020/lib/color-picker/color-box/color-box.component.mjs +2 -2
- package/esm2020/lib/drawer/content.component.mjs +18 -0
- package/esm2020/lib/drawer/drawer-container.component.mjs +36 -0
- package/esm2020/lib/drawer/drawer.component.mjs +131 -42
- package/esm2020/lib/drawer/drawer.module.mjs +11 -8
- package/esm2020/lib/menu/menu2.component.mjs +2 -2
- package/esm2020/lib/popup/popup.component.mjs +2 -2
- package/esm2020/lib/property-editor/editors/column-editor/column.editor.mjs +2 -2
- package/esm2020/lib/query-builder/query-builder-popup/query-builder-popup.component.mjs +2 -2
- package/esm2020/lib/query-builder/query-builder-rule.component.mjs +3 -3
- package/esm2020/lib/selectbox/selectbox.component.mjs +3 -3
- package/esm2020/lib/selectbox/selectbox2.component.mjs +3 -3
- package/esm2020/lib/tab-view/tab-view.component.mjs +3 -3
- package/esm2020/lib/toast/toast-message/toast-message.component.mjs +3 -3
- package/esm2020/lib/tree-side-menu/tree-side-menu.component.mjs +3 -3
- package/esm2020/lib/upload-file/upload-file.component.mjs +3 -3
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/acorex-components.mjs +257 -100
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +255 -100
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/base/components.class.d.ts +10 -0
- package/lib/calendar/calendar-box/calendar-box.module.d.ts +1 -1
- package/lib/drawer/content.component.d.ts +7 -0
- package/lib/drawer/drawer-container.component.d.ts +10 -0
- package/lib/drawer/drawer.component.d.ts +29 -5
- package/lib/drawer/drawer.module.d.ts +4 -3
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare abstract class AXComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXComponent, never>;
|
|
4
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXComponent>;
|
|
5
|
+
}
|
|
6
|
+
export declare abstract class AXClosbaleComponent extends AXComponent {
|
|
7
|
+
abstract close(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXClosbaleComponent, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXClosbaleComponent>;
|
|
10
|
+
}
|
|
@@ -6,6 +6,6 @@ import * as i4 from "../../popover/popover.module";
|
|
|
6
6
|
import * as i5 from "@acorex/core";
|
|
7
7
|
export declare class AXCalendarBoxModule {
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCalendarBoxModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCalendarBoxModule, [typeof i1.AXCalendarBoxComponent], [typeof i2.CommonModule, typeof i3.AXButtonModule, typeof i4.AXPopoverModule, typeof i5.AXCoreModule], [typeof i1.AXCalendarBoxComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCalendarBoxModule, [typeof i1.AXCalendarBoxComponent], [typeof i2.CommonModule, typeof i3.AXButtonModule, typeof i4.AXPopoverModule, typeof i5.AXCoreModule, typeof i5.AXTranslatorModule], [typeof i1.AXCalendarBoxComponent]>;
|
|
10
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXCalendarBoxModule>;
|
|
11
11
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXDecoratorContentComponent {
|
|
4
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorContentComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorContentComponent, "ax-content", never, {}, {}, never, ["*"]>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, NgZone } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXDrawerContainerComponent {
|
|
4
|
+
private elementRef;
|
|
5
|
+
private _zone;
|
|
6
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _zone: NgZone);
|
|
7
|
+
ngDoCheck(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerContainerComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, {}, {}, never, ["ax-drawer[location='start']", "*", "ax-drawer[location='end']"]>;
|
|
10
|
+
}
|
|
@@ -1,10 +1,34 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, NgZone, EventEmitter } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
export declare type AXDrawerMode = 'push' | 'overlay';
|
|
4
|
+
export declare type AXDrawerLocation = 'start' | 'end';
|
|
2
5
|
export declare class AXDrawerComponent {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
private _elementRef;
|
|
7
|
+
private _zone;
|
|
8
|
+
constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef, _zone: NgZone);
|
|
9
|
+
locationChange: EventEmitter<AXDrawerLocation>;
|
|
10
|
+
private _location;
|
|
11
|
+
get location(): AXDrawerLocation;
|
|
12
|
+
set location(v: AXDrawerLocation);
|
|
13
|
+
modeChange: EventEmitter<AXDrawerMode>;
|
|
14
|
+
private _mode;
|
|
15
|
+
get mode(): AXDrawerMode;
|
|
16
|
+
set mode(v: AXDrawerMode);
|
|
17
|
+
collapsedChange: EventEmitter<boolean>;
|
|
18
|
+
private _collapsed;
|
|
19
|
+
get collapsed(): boolean;
|
|
20
|
+
set collapsed(v: boolean);
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
ngDoCheck(): void;
|
|
23
|
+
private _detectBoundingSize;
|
|
24
|
+
private _checkProps;
|
|
7
25
|
toggle(): void;
|
|
26
|
+
close(): void;
|
|
27
|
+
open(): void;
|
|
28
|
+
private get __hostClass();
|
|
29
|
+
private _backdropElement;
|
|
30
|
+
private _addBackdrop;
|
|
31
|
+
private _removeBackdrop;
|
|
8
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "location": "location"; "mode": "mode"; "collapsed": "collapsed"; }, { "locationChange": "locationChange"; "modeChange": "modeChange"; "collapsedChange": "collapsedChange"; }, never, [".header", "*"]>;
|
|
10
34
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./drawer.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
3
|
+
import * as i2 from "./drawer-container.component";
|
|
4
|
+
import * as i3 from "./content.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
5
6
|
export declare class AXDrawerModule {
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDrawerModule, [typeof i1.AXDrawerComponent
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDrawerModule, [typeof i1.AXDrawerComponent, typeof i2.AXDrawerContainerComponent, typeof i3.AXDecoratorContentComponent], [typeof i4.CommonModule], [typeof i1.AXDrawerComponent, typeof i2.AXDrawerContainerComponent, typeof i3.AXDecoratorContentComponent]>;
|
|
8
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXDrawerModule>;
|
|
9
10
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export * from './lib/dialog/dialog.component';
|
|
|
42
42
|
export * from './lib/dialog/dialog.module';
|
|
43
43
|
export * from './lib/dialog/dialog.service';
|
|
44
44
|
export * from './lib/drawer/drawer.component';
|
|
45
|
+
export * from './lib/drawer/content.component';
|
|
46
|
+
export * from './lib/drawer/drawer-container.component';
|
|
45
47
|
export * from './lib/drawer/drawer.module';
|
|
46
48
|
export * from './lib/dropdown/dropdown.component';
|
|
47
49
|
export * from './lib/dropdown/dropdown.module';
|