@acorex/components 5.0.50 → 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.
Files changed (37) hide show
  1. package/esm2020/lib/avatar/avatar.component.mjs +2 -2
  2. package/esm2020/lib/base/mixin/base-components.class.mjs +1 -3
  3. package/esm2020/lib/base/mixin/color-look-mixing.class.mjs +1 -1
  4. package/esm2020/lib/base/mixin/mixin.class.mjs +2 -1
  5. package/esm2020/lib/base/overlay.service.mjs +2 -2
  6. package/esm2020/lib/calendar/calendar.component.mjs +3 -3
  7. package/esm2020/lib/dialog/dialog.service.mjs +2 -2
  8. package/esm2020/lib/password-box/password-box.component.mjs +4 -10
  9. package/esm2020/lib/progress-bar/progress-bar.component.mjs +11 -12
  10. package/esm2020/lib/selection-list/selection-list.component.mjs +3 -4
  11. package/fesm2015/acorex-components.mjs +20 -30
  12. package/fesm2015/acorex-components.mjs.map +1 -1
  13. package/fesm2020/acorex-components.mjs +20 -30
  14. package/fesm2020/acorex-components.mjs.map +1 -1
  15. package/lib/alert/alert.component.d.ts +0 -2
  16. package/lib/avatar/avatar.component.d.ts +1 -1
  17. package/lib/badge/badge.component.d.ts +0 -2
  18. package/lib/base/mixin/base-components.class.d.ts +0 -4
  19. package/lib/base/mixin/button-mixin.class.d.ts +1 -5
  20. package/lib/base/mixin/clickable-mixin.class.d.ts +0 -2
  21. package/lib/base/mixin/color-look-mixing.class.d.ts +0 -2
  22. package/lib/base/mixin/datalist-component.class.d.ts +0 -2
  23. package/lib/base/mixin/dropdown-mixin.class.d.ts +0 -2
  24. package/lib/base/mixin/interactive-mixin.class.d.ts +1 -5
  25. package/lib/base/mixin/loading-mixin.class.d.ts +0 -2
  26. package/lib/base/mixin/mixin.class.d.ts +31 -38
  27. package/lib/base/mixin/selection-component.class.d.ts +0 -2
  28. package/lib/base/mixin/sizable-mixin.class.d.ts +0 -2
  29. package/lib/base/mixin/textbox-mixin.class.d.ts +4 -3
  30. package/lib/base/mixin/value-mixin.class.d.ts +1 -5
  31. package/lib/button/button-item.component.d.ts +0 -4
  32. package/lib/datepicker/datepicker.component.d.ts +0 -6
  33. package/lib/password-box/password-box.component.d.ts +0 -1
  34. package/lib/progress-bar/progress-bar.component.d.ts +2 -4
  35. package/lib/selection-list/selection-list.component.d.ts +1 -1
  36. package/lib/tabs/tab-item.component.d.ts +0 -2
  37. package/package.json +1 -1
@@ -11,8 +11,6 @@ export declare const AXBaseAlertMixin: {
11
11
  look: import("../base").AXStyleButtonLook;
12
12
  id: string;
13
13
  rtl: boolean;
14
- cssClass: string;
15
- cssStyle: string;
16
14
  "__#1@#elementRef": ElementRef<any>;
17
15
  _cdr: ChangeDetectorRef;
18
16
  _isInited: boolean;
@@ -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"; "cssClass": "cssClass"; "cssStyle": "cssStyle"; "size": "size"; "image": "image"; "title": "title"; "icon": "icon"; "abbr": "abbr"; }, {}, never, never>;
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
  }
@@ -11,8 +11,6 @@ export declare const AXBaseBadgeMixin: {
11
11
  look: import("../base").AXStyleButtonLook;
12
12
  id: string;
13
13
  rtl: boolean;
14
- cssClass: string;
15
- cssStyle: string;
16
14
  "__#1@#elementRef": ElementRef<any>;
17
15
  _cdr: ChangeDetectorRef;
18
16
  _isInited: boolean;
@@ -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;
@@ -156,8 +146,6 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
156
146
  hasFocus(): boolean;
157
147
  id: string;
158
148
  rtl: boolean;
159
- cssClass: string;
160
- cssStyle: string;
161
149
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
162
150
  _cdr: import("@angular/core").ChangeDetectorRef;
163
151
  _isInited: boolean;
@@ -183,8 +171,6 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
183
171
  _emitOnClickEvent(e: MouseEvent): void;
184
172
  id: string;
185
173
  rtl: boolean;
186
- cssClass: string;
187
- cssStyle: string;
188
174
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
189
175
  _cdr: import("@angular/core").ChangeDetectorRef;
190
176
  _isInited: boolean;
@@ -212,8 +198,6 @@ export declare const AXBaseButtonMixin: {
212
198
  _onInternalInit(): void;
213
199
  id: string;
214
200
  rtl: boolean;
215
- cssClass: string;
216
- cssStyle: string;
217
201
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
218
202
  _cdr: import("@angular/core").ChangeDetectorRef;
219
203
  _isInited: boolean;
@@ -246,8 +230,6 @@ export declare const AXBaseButtonMixin: {
246
230
  hasFocus(): boolean;
247
231
  id: string;
248
232
  rtl: boolean;
249
- cssClass: string;
250
- cssStyle: string;
251
233
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
252
234
  _cdr: import("@angular/core").ChangeDetectorRef;
253
235
  _isInited: boolean;
@@ -273,8 +255,6 @@ export declare const AXBaseButtonMixin: {
273
255
  _emitOnClickEvent(e: MouseEvent): void;
274
256
  id: string;
275
257
  rtl: boolean;
276
- cssClass: string;
277
- cssStyle: string;
278
258
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
279
259
  _cdr: import("@angular/core").ChangeDetectorRef;
280
260
  _isInited: boolean;
@@ -305,8 +285,6 @@ export declare const AXBaseButtonMixin: {
305
285
  look: import("@acorex/components").AXStyleButtonLook;
306
286
  id: string;
307
287
  rtl: boolean;
308
- cssClass: string;
309
- cssStyle: string;
310
288
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
311
289
  _cdr: import("@angular/core").ChangeDetectorRef;
312
290
  _isInited: boolean;
@@ -348,8 +326,6 @@ export declare const AXBaseButtonMixin: {
348
326
  };
349
327
  id: string;
350
328
  rtl: boolean;
351
- cssClass: string;
352
- cssStyle: string;
353
329
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
354
330
  _cdr: import("@angular/core").ChangeDetectorRef;
355
331
  _isInited: boolean;
@@ -376,8 +352,6 @@ export declare const AXBaseTextBoxMixin: {
376
352
  _onInternalInit(): void;
377
353
  id: string;
378
354
  rtl: boolean;
379
- cssClass: string;
380
- cssStyle: string;
381
355
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
382
356
  _cdr: import("@angular/core").ChangeDetectorRef;
383
357
  _isInited: boolean;
@@ -410,8 +384,6 @@ export declare const AXBaseTextBoxMixin: {
410
384
  hasFocus(): boolean;
411
385
  id: string;
412
386
  rtl: boolean;
413
- cssClass: string;
414
- cssStyle: string;
415
387
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
416
388
  _cdr: import("@angular/core").ChangeDetectorRef;
417
389
  _isInited: boolean;
@@ -461,8 +433,6 @@ export declare const AXBaseTextBoxMixin: {
461
433
  _setState(state: "error" | "clear" | "success", ...args: any[]): void;
462
434
  id: string;
463
435
  rtl: boolean;
464
- cssClass: string;
465
- cssStyle: string;
466
436
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
467
437
  _cdr: import("@angular/core").ChangeDetectorRef;
468
438
  _isInited: boolean;
@@ -491,8 +461,6 @@ export declare const AXBaseTextBoxMixin: {
491
461
  _emitOnKeydownEvent(e: KeyboardEvent): void;
492
462
  id: string;
493
463
  rtl: boolean;
494
- cssClass: string;
495
- cssStyle: string;
496
464
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
497
465
  _cdr: import("@angular/core").ChangeDetectorRef;
498
466
  _isInited: boolean;
@@ -523,8 +491,6 @@ export declare const AXBaseDropdownMixin: {
523
491
  _onInternalInit(): void;
524
492
  id: string;
525
493
  rtl: boolean;
526
- cssClass: string;
527
- cssStyle: string;
528
494
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
529
495
  _cdr: import("@angular/core").ChangeDetectorRef;
530
496
  _isInited: boolean;
@@ -557,8 +523,6 @@ export declare const AXBaseDropdownMixin: {
557
523
  hasFocus(): boolean;
558
524
  id: string;
559
525
  rtl: boolean;
560
- cssClass: string;
561
- cssStyle: string;
562
526
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
563
527
  _cdr: import("@angular/core").ChangeDetectorRef;
564
528
  _isInited: boolean;
@@ -594,8 +558,6 @@ export declare const AXBaseDropdownMixin: {
594
558
  readonly isOpen: boolean;
595
559
  id: string;
596
560
  rtl: boolean;
597
- cssClass: string;
598
- cssStyle: string;
599
561
  "__#1@#elementRef": import("@angular/core").ElementRef<any>;
600
562
  _cdr: import("@angular/core").ChangeDetectorRef;
601
563
  _isInited: boolean;
@@ -614,3 +576,34 @@ export declare const AXBaseDropdownMixin: {
614
576
  _onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
615
577
  _setOption(option: import("./base-components.class").AXComponentSetOption): void;
616
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;
@@ -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;
@@ -7,7 +7,6 @@ import * as i0 from "@angular/core";
7
7
  * @category Components
8
8
  */
9
9
  export declare class AXPasswordBoxComponent extends AXBaseTextBoxMixin {
10
- get hostClass(): string;
11
10
  _type: 'password' | 'text';
12
11
  _icon: 'ax-ic-eye' | 'ax-ic-eye-off';
13
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, { "value": "value"; "max": "max"; }, {}, never, 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"; "cssClass": "cssClass"; "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"; "direction": "direction"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-validation-rule"]>;
10
10
  }
@@ -7,8 +7,6 @@ export declare const AXBaseTabItemMixin: {
7
7
  _emitOnClickEvent(e: MouseEvent): void;
8
8
  id: string;
9
9
  rtl: boolean;
10
- cssClass: string;
11
- cssStyle: string;
12
10
  "__#1@#elementRef": ElementRef<any>;
13
11
  _cdr: ChangeDetectorRef;
14
12
  _isInited: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "5.0.50",
3
+ "version": "5.0.51",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.2.0",
6
6
  "@angular/core": "^13.2.0",