@acorex/components 5.0.8 → 5.0.9
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 +470 -382
- package/bundles/acorex-components.umd.js.map +1 -1
- package/esm2015/lib/badge/badge.component.js +2 -2
- package/esm2015/lib/base/mixin/base-components.class.js +4 -1
- package/esm2015/lib/base/mixin/interactive-mixin.class.js +2 -2
- package/esm2015/lib/base/mixin/value-mixin.class.js +3 -3
- package/esm2015/lib/calendar/calendar.component.js +2 -2
- package/esm2015/lib/checkbox/checkbox.component.js +30 -11
- package/esm2015/lib/decorators/content.component.js +26 -0
- package/esm2015/lib/decorators/decorators.module.js +4 -3
- package/esm2015/lib/decorators/index.js +2 -1
- package/esm2015/lib/decorators/prefix.component.js +3 -4
- package/esm2015/lib/decorators/suffix.component.js +3 -4
- package/esm2015/lib/dialog/dialog.component.js +2 -2
- package/esm2015/lib/label/label.component.js +4 -4
- package/esm2015/lib/page/base-page.class.js +2 -1
- package/esm2015/lib/page/page-footer.component.js +3 -7
- package/esm2015/lib/popup/popup.component.js +16 -8
- package/esm2015/lib/radio/index.js +3 -0
- package/esm2015/lib/radio/radio.component.js +22 -0
- package/esm2015/lib/radio/radio.module.js +21 -0
- package/esm2015/lib/selectbox/selectbox.component.js +1 -1
- package/esm2015/lib/tabs/tab-content.directive.js +6 -4
- package/esm2015/lib/tabs/tab-item.component.js +28 -13
- package/esm2015/lib/tabs/tabs.component.js +15 -22
- package/esm2015/public-api.js +2 -1
- package/fesm2015/acorex-components.js +391 -302
- package/fesm2015/acorex-components.js.map +1 -1
- package/lib/base/mixin/base-components.class.d.ts +2 -0
- package/lib/base/mixin/button-mixin.class.d.ts +1 -0
- package/lib/base/mixin/clickable-mixin.class.d.ts +1 -0
- package/lib/base/mixin/datalist-component.class.d.ts +1 -0
- package/lib/base/mixin/dropdown-mixin.class.d.ts +1 -0
- package/lib/base/mixin/interactive-mixin.class.d.ts +4 -1
- package/lib/base/mixin/loading-mixin.class.d.ts +1 -0
- package/lib/base/mixin/mixin.class.d.ts +16 -0
- package/lib/base/mixin/selection-component.class.d.ts +1 -0
- package/lib/base/mixin/sizable-mixin.class.d.ts +1 -0
- package/lib/base/mixin/textbox-mixin.class.d.ts +1 -0
- package/lib/base/mixin/value-mixin.class.d.ts +1 -0
- package/lib/button/button-item.component.d.ts +2 -0
- package/lib/checkbox/checkbox.component.d.ts +6 -5
- package/lib/decorators/content.component.d.ts +8 -0
- package/lib/decorators/decorators.module.d.ts +3 -2
- package/lib/decorators/index.d.ts +1 -0
- package/lib/dropdown/dropdown-base.class.d.ts +2 -0
- package/lib/label/label.component.d.ts +2 -2
- package/lib/popup/popup.component.d.ts +3 -2
- package/lib/radio/index.d.ts +2 -0
- package/lib/radio/radio.component.d.ts +8 -0
- package/lib/radio/radio.module.d.ts +8 -0
- package/lib/tabs/tab-item.component.d.ts +2 -1
- package/lib/tabs/tabs.component.d.ts +2 -4
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -31,6 +31,7 @@ export declare class AXBaseComponent {
|
|
|
31
31
|
_onInternalViewInit(): void;
|
|
32
32
|
_onInternalDestroy(): void;
|
|
33
33
|
onInit(): void;
|
|
34
|
+
onRenderCssClass(): void;
|
|
34
35
|
onViewInit(): void;
|
|
35
36
|
onDestroy(): void;
|
|
36
37
|
onOptionChanging(option: {
|
|
@@ -67,6 +68,7 @@ export declare function _BaseComponenetMixin<TBase extends Constructor<AXBaseCom
|
|
|
67
68
|
_onInternalViewInit(): void;
|
|
68
69
|
_onInternalDestroy(): void;
|
|
69
70
|
onInit(): void;
|
|
71
|
+
onRenderCssClass(): void;
|
|
70
72
|
onViewInit(): void;
|
|
71
73
|
onDestroy(): void;
|
|
72
74
|
onOptionChanging(option: {
|
|
@@ -64,6 +64,7 @@ export declare function _ButtonComponentMixin<TBase extends Constructor<AXBaseCo
|
|
|
64
64
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
65
65
|
_onInternalInit(): void;
|
|
66
66
|
onInit(): void;
|
|
67
|
+
onRenderCssClass(): void;
|
|
67
68
|
onViewInit(): void;
|
|
68
69
|
onDestroy(): void;
|
|
69
70
|
onOptionChanging(option: {
|
|
@@ -27,6 +27,7 @@ export declare function _ClickableComponenetMixin<TBase extends Constructor<AXBa
|
|
|
27
27
|
_onInternalViewInit(): void;
|
|
28
28
|
_onInternalDestroy(): void;
|
|
29
29
|
onInit(): void;
|
|
30
|
+
onRenderCssClass(): void;
|
|
30
31
|
onViewInit(): void;
|
|
31
32
|
onDestroy(): void;
|
|
32
33
|
onOptionChanging(option: {
|
|
@@ -39,6 +39,7 @@ export declare function _DatalistComponenetMixin<TBase extends Constructor<AXBas
|
|
|
39
39
|
_onInternalViewInit(): void;
|
|
40
40
|
_onInternalDestroy(): void;
|
|
41
41
|
onInit(): void;
|
|
42
|
+
onRenderCssClass(): void;
|
|
42
43
|
onViewInit(): void;
|
|
43
44
|
onDestroy(): void;
|
|
44
45
|
onOptionChanging(option: {
|
|
@@ -33,6 +33,7 @@ export declare function _DropdownComponenetMixin<TBase extends Constructor<AXBas
|
|
|
33
33
|
_onInternalViewInit(): void;
|
|
34
34
|
_onInternalDestroy(): void;
|
|
35
35
|
onInit(): void;
|
|
36
|
+
onRenderCssClass(): void;
|
|
36
37
|
onViewInit(): void;
|
|
37
38
|
onDestroy(): void;
|
|
38
39
|
onOptionChanging(option: {
|
|
@@ -39,13 +39,16 @@ export declare function _InteractiveComponenetMixin<TBase extends Constructor<AX
|
|
|
39
39
|
_isRendered: boolean;
|
|
40
40
|
ngOnInit(): void;
|
|
41
41
|
ngAfterViewInit(): void;
|
|
42
|
-
ngOnDestroy(): void;
|
|
42
|
+
ngOnDestroy(): void; /**
|
|
43
|
+
* Specifies the tabindex of the component.
|
|
44
|
+
*/
|
|
43
45
|
_getHostElement<T = HTMLElement>(): T;
|
|
44
46
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
45
47
|
_onInternalInit(): void;
|
|
46
48
|
_onInternalViewInit(): void;
|
|
47
49
|
_onInternalDestroy(): void;
|
|
48
50
|
onInit(): void;
|
|
51
|
+
onRenderCssClass(): void;
|
|
49
52
|
onViewInit(): void;
|
|
50
53
|
onDestroy(): void;
|
|
51
54
|
onOptionChanging(option: {
|
|
@@ -31,6 +31,7 @@ export declare function _LoadingComponenetMixin<TBase extends Constructor<AXBase
|
|
|
31
31
|
_onInternalViewInit(): void;
|
|
32
32
|
_onInternalDestroy(): void;
|
|
33
33
|
onInit(): void;
|
|
34
|
+
onRenderCssClass(): void;
|
|
34
35
|
onViewInit(): void;
|
|
35
36
|
onDestroy(): void;
|
|
36
37
|
onOptionChanging(option: {
|
|
@@ -18,6 +18,7 @@ export declare const AXBaseComponentMixin: {
|
|
|
18
18
|
_onInternalViewInit(): void;
|
|
19
19
|
_onInternalDestroy(): void;
|
|
20
20
|
onInit(): void;
|
|
21
|
+
onRenderCssClass(): void;
|
|
21
22
|
onViewInit(): void;
|
|
22
23
|
onDestroy(): void;
|
|
23
24
|
onOptionChanging(option: {
|
|
@@ -51,6 +52,7 @@ export declare const AXSizableComponentMixin: {
|
|
|
51
52
|
_onInternalViewInit(): void;
|
|
52
53
|
_onInternalDestroy(): void;
|
|
53
54
|
onInit(): void;
|
|
55
|
+
onRenderCssClass(): void;
|
|
54
56
|
onViewInit(): void;
|
|
55
57
|
onDestroy(): void;
|
|
56
58
|
onOptionChanging(option: {
|
|
@@ -82,6 +84,7 @@ export declare const AXSizableComponentMixin: {
|
|
|
82
84
|
_onInternalViewInit(): void;
|
|
83
85
|
_onInternalDestroy(): void;
|
|
84
86
|
onInit(): void;
|
|
87
|
+
onRenderCssClass(): void;
|
|
85
88
|
onViewInit(): void;
|
|
86
89
|
onDestroy(): void;
|
|
87
90
|
onOptionChanging(option: {
|
|
@@ -115,6 +118,7 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
115
118
|
_onInternalViewInit(): void;
|
|
116
119
|
_onInternalDestroy(): void;
|
|
117
120
|
onInit(): void;
|
|
121
|
+
onRenderCssClass(): void;
|
|
118
122
|
onViewInit(): void;
|
|
119
123
|
onDestroy(): void;
|
|
120
124
|
onOptionChanging(option: {
|
|
@@ -154,6 +158,7 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
154
158
|
_onInternalViewInit(): void;
|
|
155
159
|
_onInternalDestroy(): void;
|
|
156
160
|
onInit(): void;
|
|
161
|
+
onRenderCssClass(): void;
|
|
157
162
|
onViewInit(): void;
|
|
158
163
|
onDestroy(): void;
|
|
159
164
|
onOptionChanging(option: {
|
|
@@ -186,6 +191,7 @@ export declare const AXBaseClickableMixin: {
|
|
|
186
191
|
_onInternalViewInit(): void;
|
|
187
192
|
_onInternalDestroy(): void;
|
|
188
193
|
onInit(): void;
|
|
194
|
+
onRenderCssClass(): void;
|
|
189
195
|
onViewInit(): void;
|
|
190
196
|
onDestroy(): void;
|
|
191
197
|
onOptionChanging(option: {
|
|
@@ -225,6 +231,7 @@ export declare const AXBaseClickableMixin: {
|
|
|
225
231
|
_onInternalViewInit(): void;
|
|
226
232
|
_onInternalDestroy(): void;
|
|
227
233
|
onInit(): void;
|
|
234
|
+
onRenderCssClass(): void;
|
|
228
235
|
onViewInit(): void;
|
|
229
236
|
onDestroy(): void;
|
|
230
237
|
onOptionChanging(option: {
|
|
@@ -257,6 +264,7 @@ export declare const AXBaseClickableMixin: {
|
|
|
257
264
|
_onInternalViewInit(): void;
|
|
258
265
|
_onInternalDestroy(): void;
|
|
259
266
|
onInit(): void;
|
|
267
|
+
onRenderCssClass(): void;
|
|
260
268
|
onViewInit(): void;
|
|
261
269
|
onDestroy(): void;
|
|
262
270
|
onOptionChanging(option: {
|
|
@@ -290,6 +298,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
290
298
|
_onInternalViewInit(): void;
|
|
291
299
|
_onInternalDestroy(): void;
|
|
292
300
|
onInit(): void;
|
|
301
|
+
onRenderCssClass(): void;
|
|
293
302
|
onViewInit(): void;
|
|
294
303
|
onDestroy(): void;
|
|
295
304
|
onOptionChanging(option: {
|
|
@@ -329,6 +338,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
329
338
|
_onInternalViewInit(): void;
|
|
330
339
|
_onInternalDestroy(): void;
|
|
331
340
|
onInit(): void;
|
|
341
|
+
onRenderCssClass(): void;
|
|
332
342
|
onViewInit(): void;
|
|
333
343
|
onDestroy(): void;
|
|
334
344
|
onOptionChanging(option: {
|
|
@@ -361,6 +371,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
361
371
|
_onInternalViewInit(): void;
|
|
362
372
|
_onInternalDestroy(): void;
|
|
363
373
|
onInit(): void;
|
|
374
|
+
onRenderCssClass(): void;
|
|
364
375
|
onViewInit(): void;
|
|
365
376
|
onDestroy(): void;
|
|
366
377
|
onOptionChanging(option: {
|
|
@@ -412,6 +423,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
412
423
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
413
424
|
_onInternalInit(): void;
|
|
414
425
|
onInit(): void;
|
|
426
|
+
onRenderCssClass(): void;
|
|
415
427
|
onViewInit(): void;
|
|
416
428
|
onDestroy(): void;
|
|
417
429
|
onOptionChanging(option: {
|
|
@@ -446,6 +458,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
446
458
|
_onInternalViewInit(): void;
|
|
447
459
|
_onInternalDestroy(): void;
|
|
448
460
|
onInit(): void;
|
|
461
|
+
onRenderCssClass(): void;
|
|
449
462
|
onViewInit(): void;
|
|
450
463
|
onDestroy(): void;
|
|
451
464
|
onOptionChanging(option: {
|
|
@@ -485,6 +498,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
485
498
|
_onInternalViewInit(): void;
|
|
486
499
|
_onInternalDestroy(): void;
|
|
487
500
|
onInit(): void;
|
|
501
|
+
onRenderCssClass(): void;
|
|
488
502
|
onViewInit(): void;
|
|
489
503
|
onDestroy(): void;
|
|
490
504
|
onOptionChanging(option: {
|
|
@@ -536,6 +550,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
536
550
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
537
551
|
_onInternalViewInit(): void;
|
|
538
552
|
onInit(): void;
|
|
553
|
+
onRenderCssClass(): void;
|
|
539
554
|
onViewInit(): void;
|
|
540
555
|
onDestroy(): void;
|
|
541
556
|
onOptionChanging(option: {
|
|
@@ -572,6 +587,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
572
587
|
_onInternalViewInit(): void;
|
|
573
588
|
_onInternalDestroy(): void;
|
|
574
589
|
onInit(): void;
|
|
590
|
+
onRenderCssClass(): void;
|
|
575
591
|
onViewInit(): void;
|
|
576
592
|
onDestroy(): void;
|
|
577
593
|
onOptionChanging(option: {
|
|
@@ -40,6 +40,7 @@ export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBa
|
|
|
40
40
|
_onInternalViewInit(): void;
|
|
41
41
|
_onInternalDestroy(): void;
|
|
42
42
|
onInit(): void;
|
|
43
|
+
onRenderCssClass(): void;
|
|
43
44
|
onViewInit(): void;
|
|
44
45
|
onDestroy(): void;
|
|
45
46
|
onOptionChanging(option: {
|
|
@@ -23,6 +23,7 @@ export declare function _SizableComponenetMixin<TBase extends Constructor<AXBase
|
|
|
23
23
|
_onInternalViewInit(): void;
|
|
24
24
|
_onInternalDestroy(): void;
|
|
25
25
|
onInit(): void;
|
|
26
|
+
onRenderCssClass(): void;
|
|
26
27
|
onViewInit(): void;
|
|
27
28
|
onDestroy(): void;
|
|
28
29
|
onOptionChanging(option: {
|
|
@@ -41,6 +41,7 @@ export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBase
|
|
|
41
41
|
_onInternalViewInit(): void;
|
|
42
42
|
_onInternalDestroy(): void;
|
|
43
43
|
onInit(): void;
|
|
44
|
+
onRenderCssClass(): void;
|
|
44
45
|
onViewInit(): void;
|
|
45
46
|
onDestroy(): void;
|
|
46
47
|
onOptionChanging(option: {
|
|
@@ -53,6 +53,7 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
53
53
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
54
54
|
_onInternalViewInit(): void;
|
|
55
55
|
onInit(): void;
|
|
56
|
+
onRenderCssClass(): void;
|
|
56
57
|
onViewInit(): void;
|
|
57
58
|
onDestroy(): void;
|
|
58
59
|
onOptionChanging(option: {
|
|
@@ -28,6 +28,7 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
|
28
28
|
_onInternalViewInit(): void;
|
|
29
29
|
_onInternalDestroy(): void;
|
|
30
30
|
onInit(): void;
|
|
31
|
+
onRenderCssClass(): void;
|
|
31
32
|
onViewInit(): void;
|
|
32
33
|
onDestroy(): void;
|
|
33
34
|
onOptionChanging(option: {
|
|
@@ -60,6 +61,7 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
|
60
61
|
_onInternalViewInit(): void;
|
|
61
62
|
_onInternalDestroy(): void;
|
|
62
63
|
onInit(): void;
|
|
64
|
+
onRenderCssClass(): void;
|
|
63
65
|
onViewInit(): void;
|
|
64
66
|
onDestroy(): void;
|
|
65
67
|
onOptionChanging(option: {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, QueryList } from '@angular/core';
|
|
2
2
|
import { AXBaseValueComponentMixin } from '../base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AXCheckBoxComponent extends AXBaseValueComponentMixin {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
_hint: QueryList<ElementRef>;
|
|
6
|
+
_label: QueryList<ElementRef>;
|
|
7
7
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
8
8
|
onInit(): void;
|
|
9
|
-
|
|
9
|
+
_onValueChanging(value: any): any;
|
|
10
|
+
_handleOnClickEvent(e: MouseEvent): boolean;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": "disabled"; "
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": "disabled"; "tabIndex": "tabIndex"; "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, ["_hint", "_label"], ["ax-label", "ax-form-hint", "ax-validation-rule"]>;
|
|
12
13
|
}
|
|
@@ -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 AXDecoratorContentComponent extends AXBaseComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorContentComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorContentComponent, "ax-content", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./prefix.component";
|
|
3
3
|
import * as i2 from "./suffix.component";
|
|
4
|
-
import * as i3 from "
|
|
4
|
+
import * as i3 from "./content.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
5
6
|
export declare class AXEditorDecoratorModule {
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXEditorDecoratorModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXEditorDecoratorModule, [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent], [typeof
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXEditorDecoratorModule, [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent], [typeof i4.CommonModule], [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent]>;
|
|
8
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXEditorDecoratorModule>;
|
|
9
10
|
}
|
|
@@ -22,6 +22,7 @@ export declare const AXBaseDropdownMixin: {
|
|
|
22
22
|
_onInternalViewInit(): void;
|
|
23
23
|
_onInternalDestroy(): void;
|
|
24
24
|
onInit(): void;
|
|
25
|
+
onRenderCssClass(): void;
|
|
25
26
|
onViewInit(): void;
|
|
26
27
|
onDestroy(): void;
|
|
27
28
|
onOptionChanging(option: {
|
|
@@ -61,6 +62,7 @@ export declare const AXBaseDropdownMixin: {
|
|
|
61
62
|
_onInternalViewInit(): void;
|
|
62
63
|
_onInternalDestroy(): void;
|
|
63
64
|
onInit(): void;
|
|
65
|
+
onRenderCssClass(): void;
|
|
64
66
|
onViewInit(): void;
|
|
65
67
|
onDestroy(): void;
|
|
66
68
|
onOptionChanging(option: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { AXBaseComponentMixin } from '../base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AXLabelComponent extends
|
|
4
|
+
export declare class AXLabelComponent extends AXBaseComponentMixin {
|
|
5
5
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXLabelComponent, never>;
|
|
7
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXLabelComponent, "ax-label", never, {}, {}, never, ["*"]>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef, ViewContainerRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, ViewContainerRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { AXBaseComponentMixin } from '../base';
|
|
3
3
|
import { AXPageCloseEvent } from '../page/base-page.class';
|
|
4
4
|
import { AXLoadingService } from '../loading';
|
|
5
5
|
import { CdkPortalOutletAttachedRef, Portal } from '@angular/cdk/portal';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class AXPopupComponent extends AXBaseComponentMixin {
|
|
8
|
+
private _zone;
|
|
8
9
|
private _viewContainerRef;
|
|
9
10
|
private loadingService;
|
|
10
11
|
isLoading: boolean;
|
|
@@ -19,7 +20,7 @@ export declare class AXPopupComponent extends AXBaseComponentMixin {
|
|
|
19
20
|
_selectedPortal: Portal<any>;
|
|
20
21
|
_footerPortal: Portal<any>;
|
|
21
22
|
_headerPortal: Portal<any>;
|
|
22
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _viewContainerRef: ViewContainerRef, loadingService: AXLoadingService);
|
|
23
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _zone: NgZone, _viewContainerRef: ViewContainerRef, loadingService: AXLoadingService);
|
|
23
24
|
onViewInit(): void;
|
|
24
25
|
_handleAttched(ref: CdkPortalOutletAttachedRef): void;
|
|
25
26
|
onKeydownHandler(event: KeyboardEvent): void;
|
|
@@ -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 AXRadioComponent extends AXBaseComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXRadioComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXRadioComponent, "ax-radio", never, {}, {}, never, ["ax-label", "ax-form-hint", "ax-validation-rule"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./radio.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class AXRadioModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXRadioModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXRadioModule, [typeof i1.AXRadioComponent], [typeof i2.CommonModule], [typeof i1.AXRadioComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXRadioModule>;
|
|
8
|
+
}
|
|
@@ -6,11 +6,12 @@ export declare class AXTabItemComponent extends AXBaseClickableMixin {
|
|
|
6
6
|
text: string;
|
|
7
7
|
width: boolean;
|
|
8
8
|
template: TemplateRef<any>;
|
|
9
|
+
headerTemplate: TemplateRef<any>;
|
|
9
10
|
activeChange: EventEmitter<boolean>;
|
|
10
11
|
private _active;
|
|
11
12
|
get active(): boolean;
|
|
12
13
|
set active(v: boolean);
|
|
13
14
|
private __hostClick;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabItemComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabItemComponent, "ax-tab-item", never, { "text": "text"; "width": "width"; "active": "active"; }, { "activeChange": "activeChange"; },
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabItemComponent, "ax-tab-item", never, { "text": "text"; "width": "width"; "active": "active"; }, { "activeChange": "activeChange"; }, ["headerTemplate"], ["ax-prefix", "ax-suffix", "ax-content"]>;
|
|
16
17
|
}
|
|
@@ -5,15 +5,13 @@ import { AXTabContentDirective } from './tab-content.directive';
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AXTabsComponent extends AXBaseComponent {
|
|
7
7
|
_contentTabs: QueryList<AXTabItemComponent>;
|
|
8
|
-
mode: 'default' | 'end-line' | 'start-line' | 'pills' | 'pills-color';
|
|
9
|
-
direction: "horizontal" | "vertical";
|
|
10
8
|
fitParent: boolean;
|
|
11
9
|
minWidth: boolean;
|
|
12
10
|
content: AXTabContentDirective;
|
|
13
11
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
12
|
+
onRenderCssClass(): void;
|
|
14
13
|
onViewInit(): void;
|
|
15
14
|
_handleSelectionChanged(e: AXTabItemComponent): void;
|
|
16
|
-
private get __hostClass();
|
|
17
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabsComponent, "ax-tabs", never, { "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabsComponent, "ax-tabs", never, { "fitParent": "fitParent"; "minWidth": "minWidth"; "content": "content"; }, {}, ["_contentTabs"], ["ax-tab-item"]>;
|
|
19
17
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from "./lib/page";
|
|
|
26
26
|
export * from "./lib/password-box";
|
|
27
27
|
export * from "./lib/popover";
|
|
28
28
|
export * from "./lib/popup";
|
|
29
|
+
export * from "./lib/radio";
|
|
29
30
|
export * from "./lib/range-slider";
|
|
30
31
|
export * from "./lib/selectbox";
|
|
31
32
|
export * from "./lib/selection-list";
|