@acorex/components 5.0.48 → 5.0.51
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/avatar/avatar.component.mjs +2 -2
- package/esm2020/lib/base/mixin/base-components.class.mjs +1 -3
- package/esm2020/lib/base/mixin/color-look-mixing.class.mjs +1 -1
- package/esm2020/lib/base/mixin/mixin.class.mjs +3 -2
- package/esm2020/lib/base/mixin/value-mixin.class.mjs +1 -1
- package/esm2020/lib/base/overlay.service.mjs +2 -2
- package/esm2020/lib/calendar/calendar.class.mjs +19 -2
- package/esm2020/lib/calendar/calendar.component.mjs +25 -24
- package/esm2020/lib/datepicker/datepicker.component.mjs +8 -6
- package/esm2020/lib/decorators/content.component.mjs +1 -1
- package/esm2020/lib/dialog/dialog.service.mjs +2 -2
- package/esm2020/lib/label/label.component.mjs +8 -5
- package/esm2020/lib/password-box/password-box.component.mjs +4 -10
- package/esm2020/lib/progress-bar/progress-bar.component.mjs +11 -12
- package/esm2020/lib/selection-list/selection-list.component.mjs +3 -4
- package/esm2020/lib/tabs/tab-item.component.mjs +45 -28
- package/esm2020/lib/tabs/tabs.class.mjs +1 -1
- package/esm2020/lib/tabs/tabs.component.mjs +25 -12
- package/fesm2015/acorex-components.mjs +135 -95
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +135 -95
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/alert/alert.component.d.ts +0 -2
- package/lib/avatar/avatar.component.d.ts +1 -1
- package/lib/badge/badge.component.d.ts +0 -2
- package/lib/base/mixin/base-components.class.d.ts +0 -4
- package/lib/base/mixin/button-mixin.class.d.ts +1 -5
- package/lib/base/mixin/clickable-mixin.class.d.ts +0 -2
- package/lib/base/mixin/color-look-mixing.class.d.ts +0 -2
- package/lib/base/mixin/datalist-component.class.d.ts +0 -2
- package/lib/base/mixin/dropdown-mixin.class.d.ts +0 -2
- package/lib/base/mixin/interactive-mixin.class.d.ts +1 -5
- package/lib/base/mixin/loading-mixin.class.d.ts +0 -2
- package/lib/base/mixin/mixin.class.d.ts +32 -66
- package/lib/base/mixin/selection-component.class.d.ts +0 -2
- package/lib/base/mixin/sizable-mixin.class.d.ts +0 -2
- package/lib/base/mixin/textbox-mixin.class.d.ts +4 -3
- package/lib/base/mixin/value-mixin.class.d.ts +1 -5
- package/lib/button/button-item.component.d.ts +0 -4
- package/lib/calendar/calendar.class.d.ts +4 -0
- package/lib/calendar/calendar.component.d.ts +4 -4
- package/lib/datepicker/datepicker.component.d.ts +2 -39
- package/lib/label/label.component.d.ts +2 -1
- package/lib/password-box/password-box.component.d.ts +0 -1
- package/lib/progress-bar/progress-bar.component.d.ts +2 -4
- package/lib/selection-list/selection-list.component.d.ts +1 -1
- package/lib/tabs/tab-item.component.d.ts +37 -6
- package/lib/tabs/tabs.class.d.ts +2 -2
- package/lib/tabs/tabs.component.d.ts +6 -3
- package/package.json +1 -1
|
@@ -16,5 +16,5 @@ export declare class AXAvatarComponent extends AXSizableComponentMixin {
|
|
|
16
16
|
get abbr(): string;
|
|
17
17
|
set abbr(v: string);
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarComponent, "ax-avatar", never, { "rtl": "rtl"; "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarComponent, "ax-avatar", never, { "rtl": "rtl"; "size": "size"; "image": "image"; "title": "title"; "icon": "icon"; "abbr": "abbr"; }, {}, never, never>;
|
|
20
20
|
}
|
|
@@ -28,8 +28,6 @@ export declare class AXBaseComponent {
|
|
|
28
28
|
* A token that specifies the layout direction of component.
|
|
29
29
|
*/
|
|
30
30
|
rtl: boolean;
|
|
31
|
-
cssClass: string;
|
|
32
|
-
cssStyle: string;
|
|
33
31
|
_cdr: ChangeDetectorRef;
|
|
34
32
|
_isInited: boolean;
|
|
35
33
|
_isRendered: boolean;
|
|
@@ -62,8 +60,6 @@ export declare function _BaseComponenetMixin<TBase extends Constructor<AXBaseCom
|
|
|
62
60
|
* A token that specifies the layout direction of component.
|
|
63
61
|
*/
|
|
64
62
|
rtl: boolean;
|
|
65
|
-
cssClass: string;
|
|
66
|
-
cssStyle: string;
|
|
67
63
|
"__#1@#elementRef": ElementRef<any>;
|
|
68
64
|
_cdr: ChangeDetectorRef;
|
|
69
65
|
_isInited: boolean;
|
|
@@ -40,16 +40,12 @@ export declare function _ButtonComponentMixin<TBase extends Constructor<AXBaseCo
|
|
|
40
40
|
*/
|
|
41
41
|
id: string;
|
|
42
42
|
rtl: boolean;
|
|
43
|
-
cssClass: string;
|
|
44
|
-
cssStyle: string;
|
|
45
43
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
46
44
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
47
45
|
_isInited: boolean;
|
|
48
46
|
_isRendered: boolean;
|
|
49
47
|
ngOnInit(): void;
|
|
50
|
-
ngAfterViewInit(): void;
|
|
51
|
-
* Indicates if the Button is selected or not
|
|
52
|
-
*/
|
|
48
|
+
ngAfterViewInit(): void;
|
|
53
49
|
ngOnDestroy(): void;
|
|
54
50
|
_getHostElement<T = HTMLElement>(): T;
|
|
55
51
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
@@ -12,8 +12,6 @@ export declare function _ClickableComponenetMixin<TBase extends Constructor<AXBa
|
|
|
12
12
|
_emitOnClickEvent(e: MouseEvent): void;
|
|
13
13
|
id: string;
|
|
14
14
|
rtl: boolean;
|
|
15
|
-
cssClass: string;
|
|
16
|
-
cssStyle: string;
|
|
17
15
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
18
16
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
19
17
|
_isInited: boolean;
|
|
@@ -18,8 +18,6 @@ export declare function _ColorLookComponentMixin<TBase extends Constructor<AXBas
|
|
|
18
18
|
look: AXStyleButtonLook;
|
|
19
19
|
id: string;
|
|
20
20
|
rtl: boolean;
|
|
21
|
-
cssClass: string;
|
|
22
|
-
cssStyle: string;
|
|
23
21
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
24
22
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
25
23
|
_isInited: boolean;
|
|
@@ -32,8 +32,6 @@ export declare function _DatalistComponenetMixin<TBase extends Constructor<AXBas
|
|
|
32
32
|
empty(): void;
|
|
33
33
|
id: string;
|
|
34
34
|
rtl: boolean;
|
|
35
|
-
cssClass: string;
|
|
36
|
-
cssStyle: string;
|
|
37
35
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
38
36
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
39
37
|
_isInited: boolean;
|
|
@@ -26,8 +26,6 @@ export declare function _DropdownComponenetMixin<TBase extends Constructor<AXBas
|
|
|
26
26
|
readonly isOpen: boolean;
|
|
27
27
|
id: string;
|
|
28
28
|
rtl: boolean;
|
|
29
|
-
cssClass: string;
|
|
30
|
-
cssStyle: string;
|
|
31
29
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
32
30
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
33
31
|
_isInited: boolean;
|
|
@@ -35,8 +35,6 @@ export declare function _InteractiveComponenetMixin<TBase extends Constructor<AX
|
|
|
35
35
|
hasFocus(): boolean;
|
|
36
36
|
id: string;
|
|
37
37
|
rtl: boolean;
|
|
38
|
-
cssClass: string;
|
|
39
|
-
cssStyle: string;
|
|
40
38
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
41
39
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
42
40
|
_isInited: boolean;
|
|
@@ -46,9 +44,7 @@ export declare function _InteractiveComponenetMixin<TBase extends Constructor<AX
|
|
|
46
44
|
ngOnDestroy(): void;
|
|
47
45
|
_getHostElement<T = HTMLElement>(): T;
|
|
48
46
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
49
|
-
_onInternalInit(): void;
|
|
50
|
-
* Focuses the component.
|
|
51
|
-
*/
|
|
47
|
+
_onInternalInit(): void;
|
|
52
48
|
_onInternalViewInit(): void;
|
|
53
49
|
_onInternalDestroy(): void;
|
|
54
50
|
onInit(): void;
|
|
@@ -17,8 +17,6 @@ export declare function _LoadingComponenetMixin<TBase extends Constructor<AXBase
|
|
|
17
17
|
_onInternalInit(): void;
|
|
18
18
|
id: string;
|
|
19
19
|
rtl: boolean;
|
|
20
|
-
cssClass: string;
|
|
21
|
-
cssStyle: string;
|
|
22
20
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
23
21
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
24
22
|
_isInited: boolean;
|
|
@@ -4,8 +4,6 @@ export declare const AXBaseComponentMixin: {
|
|
|
4
4
|
new (...args: any[]): {
|
|
5
5
|
id: string;
|
|
6
6
|
rtl: boolean;
|
|
7
|
-
cssClass: string;
|
|
8
|
-
cssStyle: string;
|
|
9
7
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
10
8
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
11
9
|
_isInited: boolean;
|
|
@@ -33,8 +31,6 @@ export declare const AXSizableComponentMixin: {
|
|
|
33
31
|
_onInternalInit(): void;
|
|
34
32
|
id: string;
|
|
35
33
|
rtl: boolean;
|
|
36
|
-
cssClass: string;
|
|
37
|
-
cssStyle: string;
|
|
38
34
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
39
35
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
40
36
|
_isInited: boolean;
|
|
@@ -58,8 +54,6 @@ export declare const AXSizableComponentMixin: {
|
|
|
58
54
|
new (...args: any[]): {
|
|
59
55
|
id: string;
|
|
60
56
|
rtl: boolean;
|
|
61
|
-
cssClass: string;
|
|
62
|
-
cssStyle: string;
|
|
63
57
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
64
58
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
65
59
|
_isInited: boolean;
|
|
@@ -87,8 +81,6 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
87
81
|
_onInternalInit(): void;
|
|
88
82
|
id: string;
|
|
89
83
|
rtl: boolean;
|
|
90
|
-
cssClass: string;
|
|
91
|
-
cssStyle: string;
|
|
92
84
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
93
85
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
94
86
|
_isInited: boolean;
|
|
@@ -121,8 +113,6 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
121
113
|
hasFocus(): boolean;
|
|
122
114
|
id: string;
|
|
123
115
|
rtl: boolean;
|
|
124
|
-
cssClass: string;
|
|
125
|
-
cssStyle: string;
|
|
126
116
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
127
117
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
128
118
|
_isInited: boolean;
|
|
@@ -143,34 +133,7 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
143
133
|
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
144
134
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
145
135
|
}) & typeof AXBaseComponent;
|
|
146
|
-
export declare const AXBaseClickableMixin: {
|
|
147
|
-
new (...args: any[]): {
|
|
148
|
-
size: import("./base-components.class").AXElementSize;
|
|
149
|
-
_onInternalInit(): void;
|
|
150
|
-
id: string;
|
|
151
|
-
rtl: boolean;
|
|
152
|
-
cssClass: string;
|
|
153
|
-
cssStyle: string;
|
|
154
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
155
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
156
|
-
_isInited: boolean;
|
|
157
|
-
_isRendered: boolean;
|
|
158
|
-
ngOnInit(): void;
|
|
159
|
-
ngAfterViewInit(): void;
|
|
160
|
-
ngOnDestroy(): void;
|
|
161
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
162
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
163
|
-
_onInternalViewInit(): void;
|
|
164
|
-
_onInternalDestroy(): void;
|
|
165
|
-
onInit(): void;
|
|
166
|
-
onRenderCssClass(): void;
|
|
167
|
-
onViewInit(): void;
|
|
168
|
-
onDestroy(): void;
|
|
169
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
170
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
171
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
172
|
-
};
|
|
173
|
-
} & (abstract new (...args: any[]) => {
|
|
136
|
+
export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
174
137
|
"__#3@#disabled": boolean;
|
|
175
138
|
disabled: boolean;
|
|
176
139
|
"__#3@#tabIndex": number;
|
|
@@ -183,8 +146,6 @@ export declare const AXBaseClickableMixin: {
|
|
|
183
146
|
hasFocus(): boolean;
|
|
184
147
|
id: string;
|
|
185
148
|
rtl: boolean;
|
|
186
|
-
cssClass: string;
|
|
187
|
-
cssStyle: string;
|
|
188
149
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
189
150
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
190
151
|
_isInited: boolean;
|
|
@@ -210,8 +171,6 @@ export declare const AXBaseClickableMixin: {
|
|
|
210
171
|
_emitOnClickEvent(e: MouseEvent): void;
|
|
211
172
|
id: string;
|
|
212
173
|
rtl: boolean;
|
|
213
|
-
cssClass: string;
|
|
214
|
-
cssStyle: string;
|
|
215
174
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
216
175
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
217
176
|
_isInited: boolean;
|
|
@@ -239,8 +198,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
239
198
|
_onInternalInit(): void;
|
|
240
199
|
id: string;
|
|
241
200
|
rtl: boolean;
|
|
242
|
-
cssClass: string;
|
|
243
|
-
cssStyle: string;
|
|
244
201
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
245
202
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
246
203
|
_isInited: boolean;
|
|
@@ -273,8 +230,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
273
230
|
hasFocus(): boolean;
|
|
274
231
|
id: string;
|
|
275
232
|
rtl: boolean;
|
|
276
|
-
cssClass: string;
|
|
277
|
-
cssStyle: string;
|
|
278
233
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
279
234
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
280
235
|
_isInited: boolean;
|
|
@@ -300,8 +255,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
300
255
|
_emitOnClickEvent(e: MouseEvent): void;
|
|
301
256
|
id: string;
|
|
302
257
|
rtl: boolean;
|
|
303
|
-
cssClass: string;
|
|
304
|
-
cssStyle: string;
|
|
305
258
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
306
259
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
307
260
|
_isInited: boolean;
|
|
@@ -332,8 +285,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
332
285
|
look: import("@acorex/components").AXStyleButtonLook;
|
|
333
286
|
id: string;
|
|
334
287
|
rtl: boolean;
|
|
335
|
-
cssClass: string;
|
|
336
|
-
cssStyle: string;
|
|
337
288
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
338
289
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
339
290
|
_isInited: boolean;
|
|
@@ -375,8 +326,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
375
326
|
};
|
|
376
327
|
id: string;
|
|
377
328
|
rtl: boolean;
|
|
378
|
-
cssClass: string;
|
|
379
|
-
cssStyle: string;
|
|
380
329
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
381
330
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
382
331
|
_isInited: boolean;
|
|
@@ -403,8 +352,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
403
352
|
_onInternalInit(): void;
|
|
404
353
|
id: string;
|
|
405
354
|
rtl: boolean;
|
|
406
|
-
cssClass: string;
|
|
407
|
-
cssStyle: string;
|
|
408
355
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
409
356
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
410
357
|
_isInited: boolean;
|
|
@@ -437,8 +384,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
437
384
|
hasFocus(): boolean;
|
|
438
385
|
id: string;
|
|
439
386
|
rtl: boolean;
|
|
440
|
-
cssClass: string;
|
|
441
|
-
cssStyle: string;
|
|
442
387
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
443
388
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
444
389
|
_isInited: boolean;
|
|
@@ -488,8 +433,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
488
433
|
_setState(state: "error" | "clear" | "success", ...args: any[]): void;
|
|
489
434
|
id: string;
|
|
490
435
|
rtl: boolean;
|
|
491
|
-
cssClass: string;
|
|
492
|
-
cssStyle: string;
|
|
493
436
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
494
437
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
495
438
|
_isInited: boolean;
|
|
@@ -518,8 +461,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
518
461
|
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
|
519
462
|
id: string;
|
|
520
463
|
rtl: boolean;
|
|
521
|
-
cssClass: string;
|
|
522
|
-
cssStyle: string;
|
|
523
464
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
524
465
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
525
466
|
_isInited: boolean;
|
|
@@ -550,8 +491,6 @@ export declare const AXBaseDropdownMixin: {
|
|
|
550
491
|
_onInternalInit(): void;
|
|
551
492
|
id: string;
|
|
552
493
|
rtl: boolean;
|
|
553
|
-
cssClass: string;
|
|
554
|
-
cssStyle: string;
|
|
555
494
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
556
495
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
557
496
|
_isInited: boolean;
|
|
@@ -584,8 +523,6 @@ export declare const AXBaseDropdownMixin: {
|
|
|
584
523
|
hasFocus(): boolean;
|
|
585
524
|
id: string;
|
|
586
525
|
rtl: boolean;
|
|
587
|
-
cssClass: string;
|
|
588
|
-
cssStyle: string;
|
|
589
526
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
590
527
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
591
528
|
_isInited: boolean;
|
|
@@ -621,8 +558,6 @@ export declare const AXBaseDropdownMixin: {
|
|
|
621
558
|
readonly isOpen: boolean;
|
|
622
559
|
id: string;
|
|
623
560
|
rtl: boolean;
|
|
624
|
-
cssClass: string;
|
|
625
|
-
cssStyle: string;
|
|
626
561
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
627
562
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
628
563
|
_isInited: boolean;
|
|
@@ -641,3 +576,34 @@ export declare const AXBaseDropdownMixin: {
|
|
|
641
576
|
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
642
577
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
643
578
|
}) & typeof AXBaseComponent;
|
|
579
|
+
export declare const AXBaseProgressMixin: {
|
|
580
|
+
new (...args: any[]): {
|
|
581
|
+
colorChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleColorType>;
|
|
582
|
+
_color: import("@acorex/components").AXStyleColorType;
|
|
583
|
+
color: import("@acorex/components").AXStyleColorType;
|
|
584
|
+
lookChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleButtonLook>;
|
|
585
|
+
_look?: import("@acorex/components").AXStyleButtonLook;
|
|
586
|
+
look: import("@acorex/components").AXStyleButtonLook;
|
|
587
|
+
id: string;
|
|
588
|
+
rtl: boolean;
|
|
589
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
590
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
591
|
+
_isInited: boolean;
|
|
592
|
+
_isRendered: boolean;
|
|
593
|
+
ngOnInit(): void;
|
|
594
|
+
ngAfterViewInit(): void;
|
|
595
|
+
ngOnDestroy(): void;
|
|
596
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
597
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
598
|
+
_onInternalInit(): void;
|
|
599
|
+
_onInternalViewInit(): void;
|
|
600
|
+
_onInternalDestroy(): void;
|
|
601
|
+
onInit(): void;
|
|
602
|
+
onRenderCssClass(): void;
|
|
603
|
+
onViewInit(): void;
|
|
604
|
+
onDestroy(): void;
|
|
605
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
606
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
607
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
608
|
+
};
|
|
609
|
+
} & typeof AXBaseComponent;
|
|
@@ -33,8 +33,6 @@ export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBa
|
|
|
33
33
|
isItemDisabled(item: any): boolean;
|
|
34
34
|
id: string;
|
|
35
35
|
rtl: boolean;
|
|
36
|
-
cssClass: string;
|
|
37
|
-
cssStyle: string;
|
|
38
36
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
39
37
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
40
38
|
_isInited: boolean;
|
|
@@ -9,8 +9,6 @@ export declare function _SizableComponenetMixin<TBase extends Constructor<AXBase
|
|
|
9
9
|
_onInternalInit(): void;
|
|
10
10
|
id: string;
|
|
11
11
|
rtl: boolean;
|
|
12
|
-
cssClass: string;
|
|
13
|
-
cssStyle: string;
|
|
14
12
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
15
13
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
16
14
|
_isInited: boolean;
|
|
@@ -28,11 +28,12 @@ export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBase
|
|
|
28
28
|
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
|
29
29
|
id: string;
|
|
30
30
|
rtl: boolean;
|
|
31
|
-
cssClass: string;
|
|
32
|
-
cssStyle: string;
|
|
33
31
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
34
32
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
35
|
-
_isInited: boolean;
|
|
33
|
+
_isInited: boolean; /**
|
|
34
|
+
* Fires each time the user press a key.
|
|
35
|
+
* @event
|
|
36
|
+
*/
|
|
36
37
|
_isRendered: boolean;
|
|
37
38
|
ngOnInit(): void;
|
|
38
39
|
ngAfterViewInit(): void;
|
|
@@ -41,12 +41,8 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
41
41
|
_setState(state: 'clear' | 'success' | 'error', ...args: any[]): void;
|
|
42
42
|
id: string;
|
|
43
43
|
rtl: boolean;
|
|
44
|
-
cssClass: string;
|
|
45
|
-
cssStyle: string;
|
|
46
44
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
47
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
48
|
-
* If set to true, user cannot change the value of component.
|
|
49
|
-
*/
|
|
45
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
50
46
|
_isInited: boolean;
|
|
51
47
|
_isRendered: boolean;
|
|
52
48
|
ngOnInit(): void;
|
|
@@ -14,8 +14,6 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
|
14
14
|
hasFocus(): boolean;
|
|
15
15
|
id: string;
|
|
16
16
|
rtl: boolean;
|
|
17
|
-
cssClass: string;
|
|
18
|
-
cssStyle: string;
|
|
19
17
|
"__#1@#elementRef": ElementRef<any>;
|
|
20
18
|
_cdr: ChangeDetectorRef;
|
|
21
19
|
_isInited: boolean;
|
|
@@ -41,8 +39,6 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
|
41
39
|
_emitOnClickEvent(e: MouseEvent): void;
|
|
42
40
|
id: string;
|
|
43
41
|
rtl: boolean;
|
|
44
|
-
cssClass: string;
|
|
45
|
-
cssStyle: string;
|
|
46
42
|
"__#1@#elementRef": ElementRef<any>;
|
|
47
43
|
_cdr: ChangeDetectorRef;
|
|
48
44
|
_isInited: boolean;
|
|
@@ -11,6 +11,10 @@ export declare class AXCalendarBaseComponent extends AXBaseComponent {
|
|
|
11
11
|
private _activeView;
|
|
12
12
|
get activeView(): AXCalendarViewType;
|
|
13
13
|
set activeView(v: AXCalendarViewType);
|
|
14
|
+
typeChange: EventEmitter<string>;
|
|
15
|
+
private _type;
|
|
16
|
+
get type(): string;
|
|
17
|
+
set type(v: string);
|
|
14
18
|
depthChange: EventEmitter<AXCalendarViewDepth>;
|
|
15
19
|
private _depth;
|
|
16
20
|
get depth(): AXCalendarViewDepth;
|
|
@@ -6,9 +6,6 @@ export declare const AXCalendarComponentMixin: any;
|
|
|
6
6
|
export declare class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
7
7
|
private cdr;
|
|
8
8
|
private get _viewRange();
|
|
9
|
-
private _type;
|
|
10
|
-
get type(): string;
|
|
11
|
-
set type(v: string);
|
|
12
9
|
_today: AXDateTime;
|
|
13
10
|
private _viewStartDate;
|
|
14
11
|
_navText: string;
|
|
@@ -17,6 +14,8 @@ export declare class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
17
14
|
_dayNames: string[];
|
|
18
15
|
onSlotClick: EventEmitter<AXItemClickEvent<Date>>;
|
|
19
16
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
17
|
+
private _initValues;
|
|
18
|
+
private _refresh;
|
|
20
19
|
onInit(): void;
|
|
21
20
|
private _genearteSlots;
|
|
22
21
|
_handlePrevClick(e: AXClickEvent): void;
|
|
@@ -33,9 +32,10 @@ export declare class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
33
32
|
goToday(): void;
|
|
34
33
|
navTo(date: Date | AXDateTime): void;
|
|
35
34
|
private get __hostClass();
|
|
35
|
+
private _setDate;
|
|
36
36
|
private isDisabled;
|
|
37
37
|
private isHoliday;
|
|
38
38
|
private isWeekend;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCalendarComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCalendarComponent, "ax-calendar", never, { "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "disabled": "disabled"; "tabIndex": "tabIndex"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCalendarComponent, "ax-calendar", never, { "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "disabled": "disabled"; "tabIndex": "tabIndex"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "type": "type"; "holidayDates": "holidayDates"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "depthChange": "depthChange"; "typeChange": "typeChange"; "onSlotClick": "onSlotClick"; }, never, never>;
|
|
41
41
|
}
|
|
@@ -18,8 +18,6 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
|
18
18
|
hasFocus(): boolean;
|
|
19
19
|
id: string;
|
|
20
20
|
rtl: boolean;
|
|
21
|
-
cssClass: string;
|
|
22
|
-
cssStyle: string;
|
|
23
21
|
"__#1@#elementRef": ElementRef<any>;
|
|
24
22
|
_cdr: ChangeDetectorRef;
|
|
25
23
|
_isInited: boolean;
|
|
@@ -55,8 +53,6 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
|
55
53
|
readonly isOpen: boolean;
|
|
56
54
|
id: string;
|
|
57
55
|
rtl: boolean;
|
|
58
|
-
cssClass: string;
|
|
59
|
-
cssStyle: string;
|
|
60
56
|
"__#1@#elementRef": ElementRef<any>;
|
|
61
57
|
_cdr: ChangeDetectorRef;
|
|
62
58
|
_isInited: boolean;
|
|
@@ -104,8 +100,6 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
|
104
100
|
_setState(state: "error" | "clear" | "success", ...args: any[]): void;
|
|
105
101
|
id: string;
|
|
106
102
|
rtl: boolean;
|
|
107
|
-
cssClass: string;
|
|
108
|
-
cssStyle: string;
|
|
109
103
|
"__#1@#elementRef": ElementRef<any>;
|
|
110
104
|
_cdr: ChangeDetectorRef;
|
|
111
105
|
_isInited: boolean;
|
|
@@ -124,38 +118,6 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
|
124
118
|
_onOptionChanged(option: import("../base").AXComponentOptionChanged): void;
|
|
125
119
|
_setOption(option: import("../base").AXComponentSetOption): void;
|
|
126
120
|
};
|
|
127
|
-
} & {
|
|
128
|
-
new (...args: any[]): {
|
|
129
|
-
type: string;
|
|
130
|
-
placeholder: string;
|
|
131
|
-
maxLength: number;
|
|
132
|
-
autoComplete: string;
|
|
133
|
-
onKeyDown: EventEmitter<import("../base").AXHtmlEvent<KeyboardEvent>>;
|
|
134
|
-
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
|
135
|
-
id: string;
|
|
136
|
-
rtl: boolean;
|
|
137
|
-
cssClass: string;
|
|
138
|
-
cssStyle: string;
|
|
139
|
-
"__#1@#elementRef": ElementRef<any>;
|
|
140
|
-
_cdr: ChangeDetectorRef;
|
|
141
|
-
_isInited: boolean;
|
|
142
|
-
_isRendered: boolean;
|
|
143
|
-
ngOnInit(): void;
|
|
144
|
-
ngAfterViewInit(): void;
|
|
145
|
-
ngOnDestroy(): void;
|
|
146
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
147
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
148
|
-
_onInternalInit(): void;
|
|
149
|
-
_onInternalViewInit(): void;
|
|
150
|
-
_onInternalDestroy(): void;
|
|
151
|
-
onInit(): void;
|
|
152
|
-
onRenderCssClass(): void;
|
|
153
|
-
onViewInit(): void;
|
|
154
|
-
onDestroy(): void;
|
|
155
|
-
_onOptionChanging(option: import("../base").AXComponentOptionChanging): any;
|
|
156
|
-
_onOptionChanged(option: import("../base").AXComponentOptionChanged): void;
|
|
157
|
-
_setOption(option: import("../base").AXComponentSetOption): void;
|
|
158
|
-
};
|
|
159
121
|
} & typeof AXCalendarBaseComponent;
|
|
160
122
|
export declare class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
161
123
|
private _platform;
|
|
@@ -172,6 +134,7 @@ export declare class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
172
134
|
private _format;
|
|
173
135
|
get format(): string;
|
|
174
136
|
set format(v: string);
|
|
137
|
+
placeholder: string;
|
|
175
138
|
constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef, _platform: AXPlatform);
|
|
176
139
|
onViewInit(): void;
|
|
177
140
|
_handleArrowClickEvent(e: AXClickEvent): void;
|
|
@@ -180,5 +143,5 @@ export declare class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
180
143
|
_handleOnInputClickEvent(e: MouseEvent): void;
|
|
181
144
|
private _highlightPart;
|
|
182
145
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDatePickerComponent, never>;
|
|
183
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "isOpen": "isOpen"; "fitParent": "fitParent"; "dropdownWidth": "dropdownWidth"; "position": "position"; "disabled": "disabled"; "tabIndex": "tabIndex"; "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "placeholder": "placeholder"; "maxLength": "maxLength"; "type": "type"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "holidayDates": "holidayDates"; "format": "format"; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "depthChange": "depthChange"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule"]>;
|
|
146
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "isOpen": "isOpen"; "fitParent": "fitParent"; "dropdownWidth": "dropdownWidth"; "position": "position"; "disabled": "disabled"; "tabIndex": "tabIndex"; "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "placeholder": "placeholder"; "maxLength": "maxLength"; "type": "type"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "holidayDates": "holidayDates"; "format": "format"; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "depthChange": "depthChange"; "typeChange": "typeChange"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule"]>;
|
|
184
147
|
}
|
|
@@ -2,10 +2,11 @@ import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
|
2
2
|
import { AXBaseComponentMixin } from '../base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AXLabelComponent extends AXBaseComponentMixin {
|
|
5
|
+
class: any;
|
|
5
6
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
7
|
private _target;
|
|
7
8
|
get target(): string;
|
|
8
9
|
set target(v: string);
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXLabelComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXLabelComponent, "ax-label", never, {}, {}, never, ["*"]>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXLabelComponent, "ax-label", never, { "class": "class"; }, {}, never, ["*"]>;
|
|
11
12
|
}
|
|
@@ -2,11 +2,9 @@ import { AXBaseComponentMixin } from '../base';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AXProgressBarComponent extends AXBaseComponentMixin {
|
|
4
4
|
value: number;
|
|
5
|
-
private _max;
|
|
6
|
-
get max(): number;
|
|
7
|
-
set max(v: number);
|
|
8
5
|
constructor();
|
|
9
6
|
ngOnInit(): void;
|
|
7
|
+
private get __hostClass();
|
|
10
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXProgressBarComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXProgressBarComponent, "ax-progress-bar", never, { "
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXProgressBarComponent, "ax-progress-bar", never, { "color": "color"; "look": "look"; "value": "value"; }, {}, never, ["ax-prefix", "ax-suffix"]>;
|
|
12
10
|
}
|
|
@@ -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"; "
|
|
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"]>;
|
|
10
10
|
}
|