@acorex/components 5.0.2 → 5.0.7
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/bundles/acorex-components.umd.js +1528 -1038
- package/bundles/acorex-components.umd.js.map +1 -1
- package/esm2015/lib/alert/alert.component.js +17 -17
- package/esm2015/lib/badge/badge.component.js +34 -0
- package/esm2015/lib/badge/badge.module.js +21 -0
- package/esm2015/lib/badge/index.js +3 -0
- package/esm2015/lib/base/events.class.js +7 -1
- package/esm2015/lib/base/mixin/base-components.class.js +6 -6
- package/esm2015/lib/base/mixin/button-mixin.class.js +2 -2
- package/esm2015/lib/base/mixin/interactive-mixin.class.js +6 -1
- package/esm2015/lib/base/mixin/mixin.class.js +2 -3
- package/esm2015/lib/button/button-group.component.js +3 -3
- package/esm2015/lib/button/button.component.js +27 -6
- package/esm2015/lib/button/button.module.js +1 -5
- package/esm2015/lib/button/index.js +1 -2
- package/esm2015/lib/calendar/calendar.component.js +266 -38
- package/esm2015/lib/calendar/calendar.module.js +4 -3
- package/esm2015/lib/checkbox/checkbox.component.js +2 -2
- package/esm2015/lib/datepicker/datepicker.component.js +21 -5
- package/esm2015/lib/decorators/prefix.component.js +3 -3
- package/esm2015/lib/decorators/suffix.component.js +3 -11
- package/esm2015/lib/dialog/dialog.component.js +2 -2
- package/esm2015/lib/dialog/dialog.service.js +24 -5
- package/esm2015/lib/dropdown/dropdown-base.class.js +98 -0
- package/esm2015/lib/dropdown/dropdown-panel.component.js +23 -130
- package/esm2015/lib/dropdown/dropdown.component.js +16 -123
- package/esm2015/lib/dropdown/dropdown.module.js +5 -4
- package/esm2015/lib/icon/icon.component.js +4 -4
- package/esm2015/lib/number-box/number-box.component.js +4 -4
- package/esm2015/lib/password-box/index.js +3 -0
- package/esm2015/lib/password-box/password-box.component.js +74 -0
- package/esm2015/lib/password-box/password-box.module.js +35 -0
- package/esm2015/lib/popover/popover.component.js +183 -82
- package/esm2015/lib/range-slider/index.js +3 -0
- package/esm2015/lib/range-slider/range-slider.component.js +22 -0
- package/esm2015/lib/range-slider/range-slider.module.js +21 -0
- package/esm2015/lib/selectbox/selectbox.component.js +11 -3
- package/esm2015/lib/selectbox/selectbox.module.js +8 -4
- package/esm2015/lib/selection-list/selection-list.component.js +3 -2
- package/esm2015/lib/switch/switch.component.js +2 -2
- package/esm2015/lib/tabs/index.js +4 -2
- package/esm2015/lib/tabs/tab-content.directive.js +27 -0
- package/esm2015/lib/tabs/tab-item.component.js +76 -0
- package/esm2015/lib/tabs/tab-strip.component.js +15 -7
- package/esm2015/lib/tabs/tab-view.component.js +4 -5
- package/esm2015/lib/tabs/tab.component.js +2 -3
- package/esm2015/lib/tabs/tabs.component.js +74 -0
- package/esm2015/lib/tabs/tabs.module.js +9 -7
- package/esm2015/lib/textbox/textbox.component.js +8 -6
- package/esm2015/lib/textbox/textbox.module.js +6 -2
- package/esm2015/lib/time-box/time-box.component.js +1 -1
- package/esm2015/lib/toast/toast.component.js +2 -2
- package/esm2015/public-api.js +4 -1
- package/fesm2015/acorex-components.js +1316 -883
- package/fesm2015/acorex-components.js.map +1 -1
- package/lib/alert/alert.component.d.ts +4 -4
- package/lib/badge/badge.component.d.ts +11 -0
- package/lib/badge/badge.module.d.ts +8 -0
- package/lib/badge/index.d.ts +2 -0
- package/lib/base/events.class.d.ts +7 -0
- package/lib/base/mixin/button-mixin.class.d.ts +3 -1
- package/lib/base/mixin/interactive-mixin.class.d.ts +2 -3
- package/lib/base/mixin/loading-mixin.class.d.ts +1 -3
- package/lib/base/mixin/mixin.class.d.ts +1 -224
- package/lib/base/mixin/textbox-mixin.class.d.ts +4 -7
- package/lib/base/mixin/value-mixin.class.d.ts +4 -5
- package/lib/button/button-group.component.d.ts +3 -2
- package/lib/button/button.component.d.ts +4 -1
- package/lib/button/button.module.d.ts +6 -7
- package/lib/button/index.d.ts +0 -1
- package/lib/calendar/calendar.component.d.ts +52 -12
- package/lib/calendar/calendar.module.d.ts +4 -3
- package/lib/datepicker/datepicker.component.d.ts +3 -3
- package/lib/decorators/prefix.component.d.ts +1 -1
- package/lib/decorators/suffix.component.d.ts +1 -1
- package/lib/dialog/dialog.service.d.ts +20 -2
- package/lib/dropdown/dropdown-base.class.d.ts +92 -0
- package/lib/dropdown/dropdown-panel.component.d.ts +12 -100
- package/lib/dropdown/dropdown.component.d.ts +9 -27
- package/lib/dropdown/dropdown.module.d.ts +2 -1
- package/lib/icon/icon.component.d.ts +1 -1
- package/lib/number-box/number-box.component.d.ts +1 -1
- package/lib/password-box/index.d.ts +2 -0
- package/lib/password-box/password-box.component.d.ts +24 -0
- package/lib/password-box/password-box.module.d.ts +12 -0
- package/lib/popover/popover.component.d.ts +37 -23
- package/lib/range-slider/index.d.ts +2 -0
- package/lib/range-slider/range-slider.component.d.ts +8 -0
- package/lib/range-slider/range-slider.module.d.ts +8 -0
- package/lib/selectbox/selectbox.component.d.ts +1 -0
- package/lib/selectbox/selectbox.module.d.ts +5 -1
- package/lib/selection-list/selection-list.component.d.ts +1 -1
- package/lib/tabs/index.d.ts +3 -1
- package/lib/tabs/tab-content.directive.d.ts +11 -0
- package/lib/tabs/tab-item.component.d.ts +16 -0
- package/lib/tabs/tab-strip.component.d.ts +5 -3
- package/lib/tabs/tab-view.component.d.ts +2 -2
- package/lib/tabs/tabs.component.d.ts +19 -0
- package/lib/tabs/tabs.module.d.ts +6 -4
- package/lib/textbox/textbox.module.d.ts +3 -2
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/esm2015/lib/button/dropdown-button.component.js +0 -200
- package/lib/button/dropdown-button.component.d.ts +0 -234
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { AXBaseComponent, AXConnectedPosition, AXEvent } from "../base";
|
|
3
|
+
import { AXPopoverComponent } from "../popover";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const AXBaseDropdownMixin: {
|
|
6
|
+
new (...args: any[]): {
|
|
7
|
+
size: import("../base").AXElementSize;
|
|
8
|
+
_onInternalInit(): void;
|
|
9
|
+
id: string;
|
|
10
|
+
rtl: boolean;
|
|
11
|
+
cssClass: string;
|
|
12
|
+
cssStyle: string;
|
|
13
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
14
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
15
|
+
_isInited: boolean;
|
|
16
|
+
_isRendered: boolean;
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngAfterViewInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
21
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
22
|
+
_onInternalViewInit(): void;
|
|
23
|
+
_onInternalDestroy(): void;
|
|
24
|
+
onInit(): void;
|
|
25
|
+
onViewInit(): void;
|
|
26
|
+
onDestroy(): void;
|
|
27
|
+
onOptionChanging(option: {
|
|
28
|
+
name: string;
|
|
29
|
+
value?: any;
|
|
30
|
+
}): any;
|
|
31
|
+
onOptionChanged(option: {
|
|
32
|
+
name: string;
|
|
33
|
+
oldValue?: any;
|
|
34
|
+
newValue?: any;
|
|
35
|
+
}): void;
|
|
36
|
+
};
|
|
37
|
+
} & (abstract new (...args: any[]) => {
|
|
38
|
+
"__#5@#disabled": boolean;
|
|
39
|
+
disabled: boolean;
|
|
40
|
+
"__#5@#tabIndex": number;
|
|
41
|
+
tabIndex: number;
|
|
42
|
+
onFocus: EventEmitter<import("../base").AXFocusEvent>;
|
|
43
|
+
_emitOnFocusEvent(e: FocusEvent): void;
|
|
44
|
+
onBlur: EventEmitter<import("../base").AXFocusEvent>;
|
|
45
|
+
_emitOnBlurEvent(e: FocusEvent): void;
|
|
46
|
+
focus(): void;
|
|
47
|
+
id: string;
|
|
48
|
+
rtl: boolean;
|
|
49
|
+
cssClass: string;
|
|
50
|
+
cssStyle: string;
|
|
51
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
52
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
53
|
+
_isInited: boolean;
|
|
54
|
+
_isRendered: boolean;
|
|
55
|
+
ngOnInit(): void;
|
|
56
|
+
ngAfterViewInit(): void;
|
|
57
|
+
ngOnDestroy(): void;
|
|
58
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
59
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
60
|
+
_onInternalInit(): void;
|
|
61
|
+
_onInternalViewInit(): void;
|
|
62
|
+
_onInternalDestroy(): void;
|
|
63
|
+
onInit(): void;
|
|
64
|
+
onViewInit(): void;
|
|
65
|
+
onDestroy(): void;
|
|
66
|
+
onOptionChanging(option: {
|
|
67
|
+
name: string;
|
|
68
|
+
value?: any;
|
|
69
|
+
}): any;
|
|
70
|
+
onOptionChanged(option: {
|
|
71
|
+
name: string;
|
|
72
|
+
oldValue?: any;
|
|
73
|
+
newValue?: any;
|
|
74
|
+
}): void;
|
|
75
|
+
}) & typeof AXBaseComponent;
|
|
76
|
+
export declare abstract class AXBaseDropDownComponent extends AXBaseDropdownMixin {
|
|
77
|
+
fitParent: boolean;
|
|
78
|
+
dropdownWidth: number;
|
|
79
|
+
onOpened: EventEmitter<AXEvent>;
|
|
80
|
+
onClosed: EventEmitter<AXEvent>;
|
|
81
|
+
protected abstract popover: AXPopoverComponent;
|
|
82
|
+
position: AXConnectedPosition[];
|
|
83
|
+
_emitOnOpenedEvent(): void;
|
|
84
|
+
_emitOnClosedEvent(): void;
|
|
85
|
+
onViewInit(): void;
|
|
86
|
+
toggle(): void;
|
|
87
|
+
close(): void;
|
|
88
|
+
open(): void;
|
|
89
|
+
get isOpen(): boolean;
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseDropDownComponent, never>;
|
|
91
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXBaseDropDownComponent>;
|
|
92
|
+
}
|
|
@@ -1,116 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
|
3
|
-
import { TemplatePortal } from '@angular/cdk/portal';
|
|
4
|
-
import { ElementRef, ChangeDetectorRef, QueryList, EventEmitter, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, QueryList, EventEmitter } from '@angular/core';
|
|
5
2
|
import { Subscription } from 'rxjs';
|
|
6
|
-
import {
|
|
3
|
+
import { AXButtonClickEvent, AXClickEvent } from '../base';
|
|
7
4
|
import { AXButtonComponent, AXButtonItem, AXButtonItemComponent } from '../button';
|
|
5
|
+
import { AXPopoverComponent } from '../popover';
|
|
6
|
+
import { AXBaseDropDownComponent } from './dropdown-base.class';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"__#5@#tabIndex": number;
|
|
13
|
-
tabIndex: number;
|
|
14
|
-
onFocus: EventEmitter<import("../base").AXFocusEvent>;
|
|
15
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
|
16
|
-
onBlur: EventEmitter<import("../base").AXFocusEvent>;
|
|
17
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
|
18
|
-
focus(): void;
|
|
19
|
-
id: string;
|
|
20
|
-
rtl: boolean;
|
|
21
|
-
cssClass: string;
|
|
22
|
-
cssStyle: string;
|
|
23
|
-
"__#1@#elementRef": ElementRef<any>;
|
|
24
|
-
_cdr: ChangeDetectorRef;
|
|
25
|
-
_isInited: boolean;
|
|
26
|
-
_isRendered: boolean;
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
ngAfterViewInit(): void;
|
|
29
|
-
ngOnDestroy(): void;
|
|
30
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
31
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
32
|
-
_onInternalInit(): void;
|
|
33
|
-
_onInternalViewInit(): void;
|
|
34
|
-
_onInternalDestroy(): void;
|
|
35
|
-
onInit(): void;
|
|
36
|
-
onViewInit(): void;
|
|
37
|
-
onDestroy(): void;
|
|
38
|
-
onOptionChanging(option: {
|
|
39
|
-
name: string;
|
|
40
|
-
value?: any;
|
|
41
|
-
}): any;
|
|
42
|
-
onOptionChanged(option: {
|
|
43
|
-
name: string;
|
|
44
|
-
oldValue?: any;
|
|
45
|
-
newValue?: any;
|
|
46
|
-
}): void;
|
|
47
|
-
}) & (abstract new (...args: any[]) => {
|
|
48
|
-
"__#4@#readonly": boolean;
|
|
49
|
-
readonly: any;
|
|
50
|
-
fitParent: boolean;
|
|
51
|
-
onOpened: EventEmitter<import("../base").AXEvent>;
|
|
52
|
-
onClosed: EventEmitter<import("../base").AXEvent>;
|
|
53
|
-
_emitOnOpenedEvent(): void;
|
|
54
|
-
_emitOnClosedEvent(): void;
|
|
55
|
-
id: string;
|
|
56
|
-
rtl: boolean;
|
|
57
|
-
cssClass: string;
|
|
58
|
-
cssStyle: string;
|
|
59
|
-
"__#1@#elementRef": ElementRef<any>;
|
|
60
|
-
_cdr: ChangeDetectorRef;
|
|
61
|
-
_isInited: boolean;
|
|
62
|
-
_isRendered: boolean;
|
|
63
|
-
ngOnInit(): void;
|
|
64
|
-
ngAfterViewInit(): void;
|
|
65
|
-
ngOnDestroy(): void;
|
|
66
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
67
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
68
|
-
_onInternalInit(): void;
|
|
69
|
-
_onInternalViewInit(): void;
|
|
70
|
-
_onInternalDestroy(): void;
|
|
71
|
-
onInit(): void;
|
|
72
|
-
onViewInit(): void;
|
|
73
|
-
onDestroy(): void;
|
|
74
|
-
onOptionChanging(option: {
|
|
75
|
-
name: string;
|
|
76
|
-
value?: any;
|
|
77
|
-
}): any;
|
|
78
|
-
onOptionChanged(option: {
|
|
79
|
-
name: string;
|
|
80
|
-
oldValue?: any;
|
|
81
|
-
newValue?: any;
|
|
82
|
-
}): void;
|
|
83
|
-
}) & typeof AXBaseComponent;
|
|
84
|
-
export declare class AXDropdownPanelComponent extends AXBaseDropdownMenuMixin {
|
|
85
|
-
private _overlay;
|
|
86
|
-
private _platform;
|
|
87
|
-
private _viewContainerRef;
|
|
88
|
-
private _parent;
|
|
89
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _overlay: Overlay, _platform: AXPlatform, _viewContainerRef: ViewContainerRef, _parent: AXButtonComponent);
|
|
8
|
+
export declare class AXDropdownPanelComponent extends AXBaseDropDownComponent {
|
|
9
|
+
_parent: AXButtonComponent;
|
|
10
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _parent: AXButtonComponent);
|
|
90
11
|
_contentButtons: QueryList<AXButtonItemComponent>;
|
|
91
12
|
_viewButtons: QueryList<AXButtonItemComponent>;
|
|
92
13
|
onItemClick: EventEmitter<AXButtonClickEvent>;
|
|
93
|
-
|
|
14
|
+
protected popover: AXPopoverComponent;
|
|
94
15
|
private _items;
|
|
95
16
|
get items(): AXButtonItem[];
|
|
96
17
|
set items(v: AXButtonItem[]);
|
|
97
|
-
|
|
98
|
-
_overlayRef: OverlayRef;
|
|
99
|
-
_templatePortal: TemplatePortal;
|
|
100
|
-
_dropdownWidth: number;
|
|
18
|
+
_needBorder: boolean;
|
|
101
19
|
_subs: Subscription[];
|
|
20
|
+
_target: HTMLElement;
|
|
102
21
|
private _getAllButtons;
|
|
103
22
|
onViewInit(): void;
|
|
104
23
|
onDestroy(): void;
|
|
105
|
-
_handleKeydownHandler(e: KeyboardEvent): void;
|
|
106
|
-
_handleArrowClickEvent(e: MouseEvent): void;
|
|
107
24
|
_emitOnItemClickEvent(e: AXClickEvent, item: AXButtonItemComponent): void;
|
|
108
25
|
private _handleOnItemClick;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
open(): void;
|
|
112
|
-
private _ensureOverlayCreated;
|
|
113
|
-
get isOpen(): boolean;
|
|
114
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownPanelComponent, [null, null, null, null, null, { optional: true; }]>;
|
|
115
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownPanelComponent, "ax-dropdown-panel", never, { "target": "target"; "items": "items"; }, { "onItemClick": "onItemClick"; }, ["_contentButtons"], ["ng-container[panel],ax-button-item"]>;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownPanelComponent, [null, null, { optional: true; }]>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownPanelComponent, "ax-dropdown-panel", never, { "items": "items"; }, { "onItemClick": "onItemClick"; }, ["_contentButtons"], ["[panel],ax-button-item"]>;
|
|
116
28
|
}
|
|
@@ -1,31 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { Subscription } from 'rxjs';
|
|
6
|
-
import { DropdownComponentInterface } from '../base/mixin/dropdown-mixin.class';
|
|
7
|
-
import { AXBaseDropdownMixin } from '../base/mixin/mixin.class';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponent } from '../base';
|
|
3
|
+
import { AXPopoverComponent } from '../popover';
|
|
4
|
+
import { AXBaseDropDownComponent } from './dropdown-base.class';
|
|
8
5
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class AXDropdownComponent extends
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
_baseTemplate: TemplateRef<any>;
|
|
14
|
-
_overlayRef: OverlayRef;
|
|
15
|
-
_templatePortal: TemplatePortal;
|
|
16
|
-
_dropdownWidth: number;
|
|
17
|
-
_dropdownNative: number;
|
|
18
|
-
_subs: Subscription[];
|
|
19
|
-
constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef, _overlay: Overlay, _platform: AXPlatform, _viewContainerRef: ViewContainerRef);
|
|
20
|
-
onViewInit(): void;
|
|
21
|
-
ngOnDestroy(): void;
|
|
22
|
-
_handleKeydownHandler(e: KeyboardEvent): void;
|
|
6
|
+
export declare class AXDropdownComponent extends AXBaseDropDownComponent {
|
|
7
|
+
protected popover: AXPopoverComponent;
|
|
8
|
+
_target: AXBaseComponent;
|
|
9
|
+
constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
23
10
|
_handleArrowClickEvent(): void;
|
|
24
|
-
toggle(): void;
|
|
25
|
-
close(): void;
|
|
26
|
-
open(): void;
|
|
27
|
-
private _ensureOverlayCreated;
|
|
28
|
-
get isOpen(): boolean;
|
|
29
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownComponent, "ax-drop-down", never, { "disabled": "disabled"; "
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownComponent, "ax-drop-down", never, { "disabled": "disabled"; "tabIndex": "tabIndex"; "size": "size"; "fitParent": "fitParent"; }, {}, never, ["ax-prefix", "[input]", "ax-suffix", "[panel]"]>;
|
|
31
13
|
}
|
|
@@ -6,8 +6,9 @@ import * as i4 from "../button/button.module";
|
|
|
6
6
|
import * as i5 from "@angular/cdk/overlay";
|
|
7
7
|
import * as i6 from "../icon/icon.module";
|
|
8
8
|
import * as i7 from "../decorators/decorators.module";
|
|
9
|
+
import * as i8 from "../popover/popover.module";
|
|
9
10
|
export declare class AXDropdownModule {
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDropdownModule, [typeof i1.AXDropdownComponent, typeof i2.AXDropdownPanelComponent], [typeof i3.CommonModule, typeof i4.AXButtonModule, typeof i5.OverlayModule, typeof i6.AXIconModule, typeof i7.AXEditorDecoratorModule], [typeof i1.AXDropdownComponent, typeof i2.AXDropdownPanelComponent]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDropdownModule, [typeof i1.AXDropdownComponent, typeof i2.AXDropdownPanelComponent], [typeof i3.CommonModule, typeof i4.AXButtonModule, typeof i5.OverlayModule, typeof i6.AXIconModule, typeof i7.AXEditorDecoratorModule, typeof i8.AXPopoverModule], [typeof i1.AXDropdownComponent, typeof i2.AXDropdownPanelComponent]>;
|
|
12
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXDropdownModule>;
|
|
13
14
|
}
|
|
@@ -3,7 +3,7 @@ import { AXSizableComponentMixin } from '../base';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AXIconComponent extends AXSizableComponentMixin {
|
|
5
5
|
icon: string;
|
|
6
|
-
get
|
|
6
|
+
private get __iconClass();
|
|
7
7
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXIconComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXIconComponent, "ax-icon", never, { "icon": "icon"; }, {}, never, never>;
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class AXNumberBoxComponent extends AXBaseTextBoxMixin {
|
|
11
11
|
private cdr;
|
|
12
12
|
private _maskService;
|
|
13
|
-
get
|
|
13
|
+
private get __hostClass();
|
|
14
14
|
/**
|
|
15
15
|
* A character value that specifies the separator character.
|
|
16
16
|
*/
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { AXBaseTextBoxMixin } from '../base/mixin/mixin.class';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* The Textbox is a component which detects user interaction and triggers a corresponding event
|
|
6
|
+
*
|
|
7
|
+
* @category Components
|
|
8
|
+
*/
|
|
9
|
+
export declare class AXPasswordBoxComponent extends AXBaseTextBoxMixin {
|
|
10
|
+
get hostClass(): string;
|
|
11
|
+
_type: 'password' | 'text';
|
|
12
|
+
_icon: 'ax-ic-eye' | 'ax-ic-eye-off';
|
|
13
|
+
/**
|
|
14
|
+
* A flag for showing or hiding password button.
|
|
15
|
+
*/
|
|
16
|
+
showToggleButton: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* @ignore
|
|
19
|
+
*/
|
|
20
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
21
|
+
toggleType(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPasswordBoxComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPasswordBoxComponent, "ax-password-box", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "cssClass": "cssClass"; "size": "size"; "placeholder": "placeholder"; "maxLength": "maxLength"; "allowNull": "allowNull"; "debounceTime": "debounceTime"; "value": "value"; "name": "name"; "showToggleButton": "showToggleButton"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule", "ax-input-mask"]>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./password-box.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../button/button.module";
|
|
6
|
+
import * as i5 from "../decorators/decorators.module";
|
|
7
|
+
import * as i6 from "../icon/icon.module";
|
|
8
|
+
export declare class AXPasswordBoxModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPasswordBoxModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPasswordBoxModule, [typeof i1.AXPasswordBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXButtonModule, typeof i5.AXEditorDecoratorModule, typeof i6.AXIconModule], [typeof i1.AXPasswordBoxComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXPasswordBoxModule>;
|
|
12
|
+
}
|
|
@@ -1,30 +1,44 @@
|
|
|
1
|
-
import { NgZone, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { NgZone, ChangeDetectorRef, TemplateRef, ElementRef, ViewContainerRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { AXBaseComponent, AXConnectedPosition, AXEvent } from '../base';
|
|
3
|
+
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
|
4
|
+
import { AXPlatform } from '@acorex/core';
|
|
5
|
+
import { TemplatePortal } from '@angular/cdk/portal';
|
|
6
|
+
import { Subscription } from 'rxjs';
|
|
4
7
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AXPopoverComponent {
|
|
6
|
-
|
|
7
|
-
private
|
|
8
|
-
private
|
|
9
|
-
|
|
10
|
-
private
|
|
11
|
-
|
|
12
|
-
private
|
|
13
|
-
target:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
8
|
+
export declare class AXPopoverComponent extends AXBaseComponent {
|
|
9
|
+
_cdr: ChangeDetectorRef;
|
|
10
|
+
private _zone;
|
|
11
|
+
private _overlay;
|
|
12
|
+
private _platform;
|
|
13
|
+
private _viewContainerRef;
|
|
14
|
+
constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef, _zone: NgZone, _overlay: Overlay, _platform: AXPlatform, _viewContainerRef: ViewContainerRef);
|
|
15
|
+
private _target;
|
|
16
|
+
get target(): HTMLElement | ElementRef | AXBaseComponent;
|
|
17
|
+
set target(v: HTMLElement | ElementRef | AXBaseComponent);
|
|
18
|
+
position: AXConnectedPosition | AXConnectedPosition[];
|
|
19
|
+
_baseTemplate: TemplateRef<any>;
|
|
20
|
+
_overlayRef: OverlayRef;
|
|
21
|
+
_templatePortal: TemplatePortal;
|
|
22
|
+
_subs: Subscription[];
|
|
23
|
+
openTrigger: 'manual' | 'click' | 'mouseover' | 'toggle';
|
|
24
|
+
closeTrigger: 'manual' | 'clickout' | 'mouseout';
|
|
25
|
+
hasBackdrop: boolean;
|
|
26
|
+
backdropClass: string;
|
|
27
|
+
private _mousePos;
|
|
28
|
+
private _isScrollAttached;
|
|
29
|
+
onOpened: EventEmitter<AXEvent>;
|
|
30
|
+
onClosed: EventEmitter<AXEvent>;
|
|
31
|
+
_emitOnOpenedEvent(): void;
|
|
32
|
+
_emitOnClosedEvent(): void;
|
|
33
|
+
onViewInit(): void;
|
|
34
|
+
onDestroy(): void;
|
|
35
|
+
_handleKeydownHandler(e: KeyboardEvent): void;
|
|
20
36
|
toggle(): void;
|
|
21
37
|
close(): void;
|
|
22
38
|
open(): void;
|
|
23
|
-
private
|
|
24
|
-
private internalHide;
|
|
25
|
-
ngAfterViewInit(): void;
|
|
26
|
-
ngOnDestroy(): void;
|
|
39
|
+
private _ensureOverlayCreated;
|
|
27
40
|
get isOpen(): boolean;
|
|
41
|
+
private _addSub;
|
|
28
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPopoverComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXPopoverComponent, "ax-popover", never, { "target": "target"; "position": "position"; "
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPopoverComponent, "ax-popover", never, { "target": "target"; "position": "position"; "openTrigger": "openTrigger"; "closeTrigger": "closeTrigger"; "hasBackdrop": "hasBackdrop"; "backdropClass": "backdropClass"; }, {}, never, ["*"]>;
|
|
30
44
|
}
|
|
@@ -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 AXRangeSliderComponent extends AXBaseComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXRangeSliderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXRangeSliderComponent, "ax-range-slider", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./range-slider.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class AXRangeSliderModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXRangeSliderModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXRangeSliderModule, [typeof i1.AXRangeSliderComponent], [typeof i2.CommonModule], [typeof i1.AXRangeSliderComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXRangeSliderModule>;
|
|
8
|
+
}
|
|
@@ -18,6 +18,7 @@ export declare class AXSelectBoxComponent extends AXBaseSelectionDropdownMixin i
|
|
|
18
18
|
private _checkForLoadData;
|
|
19
19
|
_onDataLoaded(): void;
|
|
20
20
|
_handleOnRemoveItemClick(e: MouseEvent, item: any): void;
|
|
21
|
+
_handleBadgeRemove(e: MouseEvent, item: any): void;
|
|
21
22
|
_handleKeydown(e: KeyboardEvent): void;
|
|
22
23
|
private _focusItemByNav;
|
|
23
24
|
private _focusItemByIndex;
|
|
@@ -3,8 +3,12 @@ import * as i1 from "./selectbox.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "../dropdown/dropdown.module";
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../checkbox/checkbox.module";
|
|
7
|
+
import * as i6 from "../badge/badge.module";
|
|
8
|
+
import * as i7 from "../decorators/decorators.module";
|
|
9
|
+
import * as i8 from "../icon/icon.module";
|
|
6
10
|
export declare class AXSelectBoxModule {
|
|
7
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectBoxModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectBoxModule, [typeof i1.AXSelectBoxComponent], [typeof i2.CommonModule, typeof i3.AXDropdownModule, typeof i4.FormsModule], [typeof i1.AXSelectBoxComponent]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectBoxModule, [typeof i1.AXSelectBoxComponent], [typeof i2.CommonModule, typeof i3.AXDropdownModule, typeof i4.FormsModule, typeof i5.AXCheckBoxModule, typeof i6.AXBadgeModule, typeof i7.AXEditorDecoratorModule, typeof i8.AXIconModule], [typeof i1.AXSelectBoxComponent]>;
|
|
9
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXSelectBoxModule>;
|
|
10
14
|
}
|
|
@@ -6,5 +6,5 @@ export declare class AXSelectionListComponent extends AXBaseSelectionValueMixin
|
|
|
6
6
|
direction: AXDirection;
|
|
7
7
|
_handleOnItemValueChange(item: any, e: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionListComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSelectionListComponent, "ax-selection-list", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "size": "size"; "value": "value"; "valueField": "valueField"; "textField": "textField"; "multiple": "multiple"; "items": "items"; "selectionMode": "selectionMode"; "direction": "direction"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-validation-rule"]>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSelectionListComponent, "ax-selection-list", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "size": "size"; "value": "value"; "valueField": "valueField"; "textField": "textField"; "multiple": "multiple"; "items": "items"; "selectionMode": "selectionMode"; "cssClass": "cssClass"; "direction": "direction"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-validation-rule"]>;
|
|
10
10
|
}
|
package/lib/tabs/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from './tab-strip.component';
|
|
2
2
|
export * from './tab-view.component';
|
|
3
|
-
export * from './
|
|
3
|
+
export * from './tabs.component';
|
|
4
|
+
export * from './tab-item.component';
|
|
4
5
|
export * from './tabs.class';
|
|
6
|
+
export * from './tab-content.directive';
|
|
5
7
|
export * from './tabs.module';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TemplateRef, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXTabContentDirective {
|
|
4
|
+
private _viewContainerRef;
|
|
5
|
+
constructor(_viewContainerRef: ViewContainerRef);
|
|
6
|
+
private _portal;
|
|
7
|
+
get portal(): TemplateRef<any>;
|
|
8
|
+
set portal(v: TemplateRef<any>);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabContentDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXTabContentDirective, "[axTabContent]", ["axTabContent"], { "portal": "axTabContent"; }, {}, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, TemplateRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { AXBaseClickableMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXTabItemComponent extends AXBaseClickableMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
text: string;
|
|
7
|
+
width: boolean;
|
|
8
|
+
template: TemplateRef<any>;
|
|
9
|
+
activeChange: EventEmitter<boolean>;
|
|
10
|
+
private _active;
|
|
11
|
+
get active(): boolean;
|
|
12
|
+
set active(v: boolean);
|
|
13
|
+
private __hostClick;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabItemComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabItemComponent, "ax-tab-item", never, { "text": "text"; "width": "width"; "active": "active"; }, { "activeChange": "activeChange"; }, never, ["ax-prefix", "ax-suffix", "*"]>;
|
|
16
|
+
}
|
|
@@ -7,11 +7,13 @@ export declare class AXTabStripComponent extends AXSizableComponentMixin {
|
|
|
7
7
|
private _items;
|
|
8
8
|
get items(): AXTabStripItem[];
|
|
9
9
|
set items(v: AXTabStripItem[]);
|
|
10
|
-
mode: 'default' | '
|
|
11
|
-
|
|
10
|
+
mode: 'default' | 'end-line' | 'start-line' | 'pills' | 'pills-color';
|
|
11
|
+
direction: "horizontal" | "vertical";
|
|
12
|
+
fitParent: boolean;
|
|
12
13
|
minWidth: boolean;
|
|
13
14
|
onSelectionChanged: EventEmitter<AXTabStripChangedEvent>;
|
|
14
15
|
_handleClick(tab: AXTabStripItem, index: number): void;
|
|
16
|
+
private get __hostClass();
|
|
15
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabStripComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabStripComponent, "ax-tab-strip", never, { "size": "size"; "
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabStripComponent, "ax-tab-strip", never, { "size": "size"; "items": "items"; "mode": "mode"; "direction": "direction"; "fitParent": "fitParent"; "minWidth": "minWidth"; }, { "onSelectionChanged": "onSelectionChanged"; }, never, ["ax-prefix", "ax-suffix"]>;
|
|
17
19
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
2
|
import { AXTabStripChangedEvent, AXTabStripItem } from './tabs.class';
|
|
3
|
-
import { AXTabStripComponent } from './tab-strip.component';
|
|
4
3
|
import { AXTabComponent } from './tab.component';
|
|
4
|
+
import { AXBaseComponent } from '../base';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class AXTabViewComponent extends
|
|
6
|
+
export declare class AXTabViewComponent extends AXBaseComponent {
|
|
7
7
|
_contentTabs: QueryList<AXTabComponent>;
|
|
8
8
|
_tabs: AXTabStripItem[];
|
|
9
9
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
|
+
import { AXBaseComponent } from '../base';
|
|
3
|
+
import { AXTabItemComponent } from './tab-item.component';
|
|
4
|
+
import { AXTabContentDirective } from './tab-content.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AXTabsComponent extends AXBaseComponent {
|
|
7
|
+
_contentTabs: QueryList<AXTabItemComponent>;
|
|
8
|
+
mode: 'default' | 'end-line' | 'start-line' | 'pills' | 'pills-color';
|
|
9
|
+
direction: "horizontal" | "vertical";
|
|
10
|
+
fitParent: boolean;
|
|
11
|
+
minWidth: boolean;
|
|
12
|
+
content: AXTabContentDirective;
|
|
13
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
14
|
+
onViewInit(): void;
|
|
15
|
+
_handleSelectionChanged(e: AXTabItemComponent): void;
|
|
16
|
+
private get __hostClass();
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabsComponent, "ax-tabs", never, { "mode": "mode"; "direction": "direction"; "fitParent": "fitParent"; "minWidth": "minWidth"; "content": "content"; }, {}, ["_contentTabs"], ["ax-tab-item"]>;
|
|
19
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./
|
|
3
|
-
import * as i2 from "./tab-
|
|
4
|
-
import * as i3 from "./tab.
|
|
2
|
+
import * as i1 from "./tabs.component";
|
|
3
|
+
import * as i2 from "./tab-item.component";
|
|
4
|
+
import * as i3 from "./tab-content.directive";
|
|
5
5
|
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/cdk/portal";
|
|
7
|
+
import * as i6 from "../decorators/decorators.module";
|
|
6
8
|
export declare class AXTabsModule {
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTabsModule, [typeof i1.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTabsModule, [typeof i1.AXTabsComponent, typeof i2.AXTabItemComponent, typeof i3.AXTabContentDirective], [typeof i4.CommonModule, typeof i5.PortalModule, typeof i6.AXEditorDecoratorModule], [typeof i1.AXTabsComponent, typeof i2.AXTabItemComponent, typeof i3.AXTabContentDirective]>;
|
|
9
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXTabsModule>;
|
|
10
12
|
}
|
|
@@ -4,9 +4,10 @@ import * as i2 from "@angular/common";
|
|
|
4
4
|
import * as i3 from "@angular/forms";
|
|
5
5
|
import * as i4 from "../button/button.module";
|
|
6
6
|
import * as i5 from "../decorators/decorators.module";
|
|
7
|
-
import * as i6 from "
|
|
7
|
+
import * as i6 from "../icon/icon.module";
|
|
8
|
+
import * as i7 from "ngx-mask";
|
|
8
9
|
export declare class AXTextBoxModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTextBoxModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTextBoxModule, [typeof i1.AXTextBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXButtonModule, typeof i5.AXEditorDecoratorModule, typeof i6.NgxMaskModule], [typeof i1.AXTextBoxComponent]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTextBoxModule, [typeof i1.AXTextBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXButtonModule, typeof i5.AXEditorDecoratorModule, typeof i6.AXIconModule, typeof i7.NgxMaskModule], [typeof i1.AXTextBoxComponent]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXTextBoxModule>;
|
|
12
13
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export * from "./lib/alert";
|
|
6
6
|
export * from "./lib/avatar";
|
|
7
|
+
export * from "./lib/badge";
|
|
7
8
|
export * from "./lib/base";
|
|
8
9
|
export * from "./lib/button";
|
|
9
10
|
export * from "./lib/calendar";
|
|
@@ -22,8 +23,10 @@ export * from "./lib/label";
|
|
|
22
23
|
export * from "./lib/loading";
|
|
23
24
|
export * from "./lib/number-box";
|
|
24
25
|
export * from "./lib/page";
|
|
26
|
+
export * from "./lib/password-box";
|
|
25
27
|
export * from "./lib/popover";
|
|
26
28
|
export * from "./lib/popup";
|
|
29
|
+
export * from "./lib/range-slider";
|
|
27
30
|
export * from "./lib/selectbox";
|
|
28
31
|
export * from "./lib/selection-list";
|
|
29
32
|
export * from "./lib/side-menu";
|