@acorex/components 5.0.23 → 5.0.24
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/badge/badge.component.mjs +2 -2
- package/esm2020/lib/calendar/calendar.component.mjs +2 -1
- package/esm2020/lib/datepicker/datepicker.component.mjs +4 -3
- package/esm2020/lib/decorators/decorators.module.mjs +4 -3
- package/esm2020/lib/decorators/header.component.mjs +26 -0
- package/esm2020/lib/decorators/index.mjs +5 -3
- package/esm2020/lib/drawer/drawer.component.mjs +7 -1
- package/esm2020/lib/dropdown/dropdown-panel.component.mjs +1 -1
- package/esm2020/lib/dropdown/dropdown.component.mjs +1 -1
- package/esm2020/lib/popover/popover.component.mjs +7 -3
- package/esm2020/lib/selectbox/selectbox.component.mjs +3 -3
- package/esm2020/lib/tabs/tab-item.component.mjs +12 -4
- package/fesm2015/acorex-components.mjs +79 -36
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +79 -36
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/datepicker/datepicker.component.d.ts +2 -0
- package/lib/decorators/decorators.module.d.ts +3 -2
- package/lib/decorators/header.component.d.ts +8 -0
- package/lib/decorators/index.d.ts +4 -2
- package/lib/drawer/drawer.component.d.ts +2 -0
- package/lib/popover/popover.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -157,6 +157,8 @@ export declare class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
157
157
|
popover: AXPopoverComponent;
|
|
158
158
|
_target: AXBaseComponent;
|
|
159
159
|
displayText: string;
|
|
160
|
+
_calendarValue: Date;
|
|
161
|
+
_cursorPos: number;
|
|
160
162
|
formatChange: EventEmitter<string>;
|
|
161
163
|
private _format;
|
|
162
164
|
get format(): string;
|
|
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./prefix.component";
|
|
3
3
|
import * as i2 from "./suffix.component";
|
|
4
4
|
import * as i3 from "./content.component";
|
|
5
|
-
import * as i4 from "
|
|
5
|
+
import * as i4 from "./header.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
6
7
|
export declare class AXEditorDecoratorModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXEditorDecoratorModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXEditorDecoratorModule, [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent], [typeof
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXEditorDecoratorModule, [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent, typeof i4.AXDecoratorHeaderComponent], [typeof i5.CommonModule], [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent, typeof i4.AXDecoratorHeaderComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXEditorDecoratorModule>;
|
|
10
11
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXDecoratorHeaderComponent extends AXBaseComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorHeaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorHeaderComponent, "ax-header", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export * from './prefix.component';
|
|
2
|
-
export * from './suffix.component';
|
|
3
1
|
export * from './content.component';
|
|
2
|
+
export * from './header.component';
|
|
4
3
|
export * from './decorators.module';
|
|
4
|
+
export * from './header.component';
|
|
5
|
+
export * from './prefix.component';
|
|
6
|
+
export * from './suffix.component';
|
|
@@ -17,6 +17,8 @@ export declare class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
17
17
|
private _updateClass;
|
|
18
18
|
onViewInit(): void;
|
|
19
19
|
toggle(): void;
|
|
20
|
+
close(): void;
|
|
21
|
+
open(): void;
|
|
20
22
|
_handleWindowsResize(e: UIEvent): void;
|
|
21
23
|
_detectSize(): void;
|
|
22
24
|
private _emitChange;
|
|
@@ -40,5 +40,5 @@ export declare class AXPopoverComponent extends AXBaseComponent {
|
|
|
40
40
|
get isOpen(): boolean;
|
|
41
41
|
private _addSub;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPopoverComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXPopoverComponent, "ax-popover", never, { "target": "target"; "position": "position"; "openTrigger": "openTrigger"; "closeTrigger": "closeTrigger"; "hasBackdrop": "hasBackdrop"; "backdropClass": "backdropClass"; }, {}, never, ["*"]>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPopoverComponent, "ax-popover", never, { "target": "target"; "position": "position"; "openTrigger": "openTrigger"; "closeTrigger": "closeTrigger"; "hasBackdrop": "hasBackdrop"; "backdropClass": "backdropClass"; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; }, never, ["*"]>;
|
|
44
44
|
}
|