@acorex/components 7.8.1 → 7.8.2
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/esm2022/button/lib/button.component.mjs +2 -2
- package/esm2022/list/lib/list.component.mjs +10 -8
- package/esm2022/otp/lib/otp.component.mjs +2 -2
- package/esm2022/select-box/lib/select-box.component.mjs +7 -6
- package/fesm2022/acorex-components-button.mjs +2 -2
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-list.mjs +9 -7
- package/fesm2022/acorex-components-list.mjs.map +1 -1
- package/fesm2022/acorex-components-otp.mjs +2 -2
- package/fesm2022/acorex-components-otp.mjs.map +1 -1
- package/fesm2022/acorex-components-select-box.mjs +6 -5
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/list/lib/list.component.d.ts +1 -2
- package/package.json +1 -7
- package/select-box/lib/select-box.component.d.ts +0 -1
- package/esm2022/mixin/acorex-components-mixin.mjs +0 -5
- package/esm2022/mixin/index.mjs +0 -17
- package/esm2022/mixin/lib/base-components.class.mjs +0 -110
- package/esm2022/mixin/lib/base-menu-mixin.class.mjs +0 -137
- package/esm2022/mixin/lib/button-mixin.class.mjs +0 -66
- package/esm2022/mixin/lib/clickable-mixin.class.mjs +0 -24
- package/esm2022/mixin/lib/color-look-mixing.class.mjs +0 -43
- package/esm2022/mixin/lib/constratctor.mjs +0 -2
- package/esm2022/mixin/lib/datalist-component.class.mjs +0 -155
- package/esm2022/mixin/lib/datalist.class.mjs +0 -46
- package/esm2022/mixin/lib/dropdown-mixin.class.mjs +0 -95
- package/esm2022/mixin/lib/interactive-mixin.class.mjs +0 -84
- package/esm2022/mixin/lib/mixin.class.mjs +0 -26
- package/esm2022/mixin/lib/page-component.class.mjs +0 -11
- package/esm2022/mixin/lib/selection-component.class.mjs +0 -180
- package/esm2022/mixin/lib/sizable-mixin.class.mjs +0 -16
- package/esm2022/mixin/lib/textbox-mixin.class.mjs +0 -67
- package/esm2022/mixin/lib/value-mixin.class.mjs +0 -227
- package/fesm2022/acorex-components-mixin.mjs +0 -1268
- package/fesm2022/acorex-components-mixin.mjs.map +0 -1
- package/mixin/README.md +0 -3
- package/mixin/index.d.ts +0 -16
- package/mixin/lib/base-components.class.d.ts +0 -84
- package/mixin/lib/base-menu-mixin.class.d.ts +0 -53
- package/mixin/lib/button-mixin.class.d.ts +0 -53
- package/mixin/lib/clickable-mixin.class.d.ts +0 -36
- package/mixin/lib/color-look-mixing.class.d.ts +0 -42
- package/mixin/lib/constratctor.d.ts +0 -4
- package/mixin/lib/datalist-component.class.d.ts +0 -59
- package/mixin/lib/datalist.class.d.ts +0 -49
- package/mixin/lib/dropdown-mixin.class.d.ts +0 -47
- package/mixin/lib/interactive-mixin.class.d.ts +0 -63
- package/mixin/lib/mixin.class.d.ts +0 -680
- package/mixin/lib/page-component.class.d.ts +0 -28
- package/mixin/lib/selection-component.class.d.ts +0 -61
- package/mixin/lib/sizable-mixin.class.d.ts +0 -34
- package/mixin/lib/textbox-mixin.class.d.ts +0 -66
- package/mixin/lib/value-mixin.class.d.ts +0 -64
@@ -1,680 +0,0 @@
|
|
1
|
-
import { AXBaseComponent } from './base-components.class';
|
2
|
-
export declare const AXBaseComponentMixin: {
|
3
|
-
new (...args: any[]): {
|
4
|
-
id: string;
|
5
|
-
"__#34571@#rtl": boolean;
|
6
|
-
rtl: boolean;
|
7
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
8
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
9
|
-
_isInited: boolean;
|
10
|
-
_isRendered: boolean;
|
11
|
-
ngOnInit(): void;
|
12
|
-
ngAfterViewInit(): void;
|
13
|
-
ngOnDestroy(): void;
|
14
|
-
_getHostElement<T = HTMLElement>(): T;
|
15
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
16
|
-
_onInternalInit(): void;
|
17
|
-
_onInternalViewInit(): void;
|
18
|
-
_onInternalDestroy(): void;
|
19
|
-
onInit(): void;
|
20
|
-
onViewInit(): void;
|
21
|
-
onDestroy(): void;
|
22
|
-
_applyRtl(): void;
|
23
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
24
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
25
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
26
|
-
};
|
27
|
-
} & typeof AXBaseComponent;
|
28
|
-
export declare const AXSizableComponentMixin: {
|
29
|
-
new (...args: any[]): {
|
30
|
-
size: import("./base-components.class").AXElementSize;
|
31
|
-
_onInternalInit(): void;
|
32
|
-
id: string;
|
33
|
-
"__#34571@#rtl": boolean;
|
34
|
-
rtl: boolean;
|
35
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
36
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
37
|
-
_isInited: boolean;
|
38
|
-
_isRendered: boolean;
|
39
|
-
ngOnInit(): void;
|
40
|
-
ngAfterViewInit(): void;
|
41
|
-
ngOnDestroy(): void;
|
42
|
-
_getHostElement<T = HTMLElement>(): T;
|
43
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
44
|
-
_onInternalViewInit(): void;
|
45
|
-
_onInternalDestroy(): void;
|
46
|
-
onInit(): void;
|
47
|
-
onViewInit(): void;
|
48
|
-
onDestroy(): void;
|
49
|
-
_applyRtl(): void;
|
50
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
51
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
52
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
53
|
-
};
|
54
|
-
} & {
|
55
|
-
new (...args: any[]): {
|
56
|
-
id: string;
|
57
|
-
"__#34571@#rtl": boolean;
|
58
|
-
rtl: boolean;
|
59
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
60
|
-
_cdr: import("@angular/core").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
|
-
_applyRtl(): void;
|
75
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
76
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
77
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
78
|
-
};
|
79
|
-
} & typeof AXBaseComponent;
|
80
|
-
export declare const AXInteractiveComponenetMixin: {
|
81
|
-
new (...args: any[]): {
|
82
|
-
size: import("./base-components.class").AXElementSize;
|
83
|
-
_onInternalInit(): void;
|
84
|
-
id: string;
|
85
|
-
"__#34571@#rtl": boolean;
|
86
|
-
rtl: boolean;
|
87
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
88
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
89
|
-
_isInited: boolean;
|
90
|
-
_isRendered: boolean;
|
91
|
-
ngOnInit(): void;
|
92
|
-
ngAfterViewInit(): void;
|
93
|
-
ngOnDestroy(): void;
|
94
|
-
_getHostElement<T = HTMLElement>(): T;
|
95
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
96
|
-
_onInternalViewInit(): void;
|
97
|
-
_onInternalDestroy(): void;
|
98
|
-
onInit(): void;
|
99
|
-
onViewInit(): void;
|
100
|
-
onDestroy(): void;
|
101
|
-
_applyRtl(): void;
|
102
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
103
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
104
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
105
|
-
};
|
106
|
-
} & (abstract new (...args: any[]) => {
|
107
|
-
"__#34574@#disabled": boolean;
|
108
|
-
disabled: boolean;
|
109
|
-
"__#34574@#tabIndex": number;
|
110
|
-
tabIndex: number;
|
111
|
-
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
112
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
113
|
-
onBlur: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
114
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
115
|
-
focus(): void;
|
116
|
-
hasFocus(): boolean;
|
117
|
-
id: string;
|
118
|
-
"__#34571@#rtl": boolean;
|
119
|
-
rtl: boolean;
|
120
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
121
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
122
|
-
_isInited: boolean;
|
123
|
-
_isRendered: boolean;
|
124
|
-
ngOnInit(): void;
|
125
|
-
ngAfterViewInit(): void;
|
126
|
-
ngOnDestroy(): void;
|
127
|
-
_getHostElement<T = HTMLElement>(): T;
|
128
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
129
|
-
_onInternalInit(): void;
|
130
|
-
_onInternalViewInit(): void;
|
131
|
-
_onInternalDestroy(): void;
|
132
|
-
onInit(): void;
|
133
|
-
onViewInit(): void;
|
134
|
-
onDestroy(): void;
|
135
|
-
_applyRtl(): void;
|
136
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
137
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
138
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
139
|
-
}) & typeof AXBaseComponent;
|
140
|
-
export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
141
|
-
"__#34574@#disabled": boolean;
|
142
|
-
disabled: boolean;
|
143
|
-
"__#34574@#tabIndex": number;
|
144
|
-
tabIndex: number;
|
145
|
-
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
146
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
147
|
-
onBlur: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
148
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
149
|
-
focus(): void;
|
150
|
-
hasFocus(): boolean;
|
151
|
-
id: string;
|
152
|
-
"__#34571@#rtl": boolean;
|
153
|
-
rtl: boolean;
|
154
|
-
"__#34571@#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
|
-
_onInternalInit(): void;
|
164
|
-
_onInternalViewInit(): void;
|
165
|
-
_onInternalDestroy(): void;
|
166
|
-
onInit(): void;
|
167
|
-
onViewInit(): void;
|
168
|
-
onDestroy(): void;
|
169
|
-
_applyRtl(): void;
|
170
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
171
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
172
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
173
|
-
}) & {
|
174
|
-
new (...args: any[]): {
|
175
|
-
onClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXClickEvent>;
|
176
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
177
|
-
id: string;
|
178
|
-
"__#34571@#rtl": boolean;
|
179
|
-
rtl: boolean;
|
180
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
181
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
182
|
-
_isInited: boolean;
|
183
|
-
_isRendered: boolean;
|
184
|
-
ngOnInit(): void;
|
185
|
-
ngAfterViewInit(): void;
|
186
|
-
ngOnDestroy(): void;
|
187
|
-
_getHostElement<T = HTMLElement>(): T;
|
188
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
189
|
-
_onInternalInit(): void;
|
190
|
-
_onInternalViewInit(): void;
|
191
|
-
_onInternalDestroy(): void;
|
192
|
-
onInit(): void;
|
193
|
-
onViewInit(): void;
|
194
|
-
onDestroy(): void;
|
195
|
-
_applyRtl(): void;
|
196
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
197
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
198
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
199
|
-
};
|
200
|
-
} & typeof AXBaseComponent;
|
201
|
-
export declare const AXBaseButtonMixin: {
|
202
|
-
new (...args: any[]): {
|
203
|
-
size: import("./base-components.class").AXElementSize;
|
204
|
-
_onInternalInit(): void;
|
205
|
-
id: string;
|
206
|
-
"__#34571@#rtl": boolean;
|
207
|
-
rtl: boolean;
|
208
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
209
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
210
|
-
_isInited: boolean;
|
211
|
-
_isRendered: boolean;
|
212
|
-
ngOnInit(): void;
|
213
|
-
ngAfterViewInit(): void;
|
214
|
-
ngOnDestroy(): void;
|
215
|
-
_getHostElement<T = HTMLElement>(): T;
|
216
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
217
|
-
_onInternalViewInit(): void;
|
218
|
-
_onInternalDestroy(): void;
|
219
|
-
onInit(): void;
|
220
|
-
onViewInit(): void;
|
221
|
-
onDestroy(): void;
|
222
|
-
_applyRtl(): void;
|
223
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
224
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
225
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
226
|
-
};
|
227
|
-
} & (abstract new (...args: any[]) => {
|
228
|
-
"__#34574@#disabled": boolean;
|
229
|
-
disabled: boolean;
|
230
|
-
"__#34574@#tabIndex": number;
|
231
|
-
tabIndex: number;
|
232
|
-
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
233
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
234
|
-
onBlur: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
235
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
236
|
-
focus(): void;
|
237
|
-
hasFocus(): boolean;
|
238
|
-
id: string;
|
239
|
-
"__#34571@#rtl": boolean;
|
240
|
-
rtl: boolean;
|
241
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
242
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
243
|
-
_isInited: boolean;
|
244
|
-
_isRendered: boolean;
|
245
|
-
ngOnInit(): void;
|
246
|
-
ngAfterViewInit(): void;
|
247
|
-
ngOnDestroy(): void;
|
248
|
-
_getHostElement<T = HTMLElement>(): T;
|
249
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
250
|
-
_onInternalInit(): void;
|
251
|
-
_onInternalViewInit(): void;
|
252
|
-
_onInternalDestroy(): void;
|
253
|
-
onInit(): void;
|
254
|
-
onViewInit(): void;
|
255
|
-
onDestroy(): void;
|
256
|
-
_applyRtl(): void;
|
257
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
258
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
259
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
260
|
-
}) & {
|
261
|
-
new (...args: any[]): {
|
262
|
-
onClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXClickEvent>;
|
263
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
264
|
-
id: string;
|
265
|
-
"__#34571@#rtl": boolean;
|
266
|
-
rtl: boolean;
|
267
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
268
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
269
|
-
_isInited: boolean;
|
270
|
-
_isRendered: boolean;
|
271
|
-
ngOnInit(): void;
|
272
|
-
ngAfterViewInit(): void;
|
273
|
-
ngOnDestroy(): void;
|
274
|
-
_getHostElement<T = HTMLElement>(): T;
|
275
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
276
|
-
_onInternalInit(): void;
|
277
|
-
_onInternalViewInit(): void;
|
278
|
-
_onInternalDestroy(): void;
|
279
|
-
onInit(): void;
|
280
|
-
onViewInit(): void;
|
281
|
-
onDestroy(): void;
|
282
|
-
_applyRtl(): void;
|
283
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
284
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
285
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
286
|
-
};
|
287
|
-
} & {
|
288
|
-
new (...args: any[]): {
|
289
|
-
colorChange: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXStyleColorType>;
|
290
|
-
_color: import("dist/libs/components/common").AXStyleColorType;
|
291
|
-
color: import("dist/libs/components/common").AXStyleColorType;
|
292
|
-
lookChange: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXStyleLookType>;
|
293
|
-
_look?: import("dist/libs/components/common").AXStyleLookType;
|
294
|
-
look: import("dist/libs/components/common").AXStyleLookType;
|
295
|
-
id: string;
|
296
|
-
"__#34571@#rtl": boolean;
|
297
|
-
rtl: boolean;
|
298
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
299
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
300
|
-
_isInited: boolean;
|
301
|
-
_isRendered: boolean;
|
302
|
-
ngOnInit(): void;
|
303
|
-
ngAfterViewInit(): void;
|
304
|
-
ngOnDestroy(): void;
|
305
|
-
_getHostElement<T = HTMLElement>(): T;
|
306
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
307
|
-
_onInternalInit(): void;
|
308
|
-
_onInternalViewInit(): void;
|
309
|
-
_onInternalDestroy(): void;
|
310
|
-
onInit(): void;
|
311
|
-
onViewInit(): void;
|
312
|
-
onDestroy(): void;
|
313
|
-
_applyRtl(): void;
|
314
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
315
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
316
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
317
|
-
};
|
318
|
-
} & {
|
319
|
-
new (...args: any[]): {
|
320
|
-
_text: string;
|
321
|
-
text: string;
|
322
|
-
toggleableChange: import("@angular/core").EventEmitter<boolean>;
|
323
|
-
_toggleable?: boolean;
|
324
|
-
toggleable: boolean;
|
325
|
-
selectedChange: import("@angular/core").EventEmitter<boolean>;
|
326
|
-
_selected?: boolean;
|
327
|
-
selected: boolean;
|
328
|
-
readonly _classes: {
|
329
|
-
'ax-button-icon': boolean;
|
330
|
-
'ax-state-disabled': any;
|
331
|
-
'ax-state-selected': boolean;
|
332
|
-
};
|
333
|
-
id: string;
|
334
|
-
"__#34571@#rtl": boolean;
|
335
|
-
rtl: boolean;
|
336
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
337
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
338
|
-
_isInited: boolean;
|
339
|
-
_isRendered: boolean;
|
340
|
-
ngOnInit(): void;
|
341
|
-
ngAfterViewInit(): void;
|
342
|
-
ngOnDestroy(): void;
|
343
|
-
_getHostElement<T = HTMLElement>(): T;
|
344
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
345
|
-
_onInternalInit(): void;
|
346
|
-
_onInternalViewInit(): void;
|
347
|
-
_onInternalDestroy(): void;
|
348
|
-
onInit(): void;
|
349
|
-
onViewInit(): void;
|
350
|
-
onDestroy(): void;
|
351
|
-
_applyRtl(): void;
|
352
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
353
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
354
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
355
|
-
};
|
356
|
-
} & typeof AXBaseComponent;
|
357
|
-
export declare const AXBaseValueComponentMixin: any;
|
358
|
-
export declare const AXBaseTextBoxMixin: {
|
359
|
-
new (...args: any[]): {
|
360
|
-
size: import("./base-components.class").AXElementSize;
|
361
|
-
_onInternalInit(): void;
|
362
|
-
id: string;
|
363
|
-
"__#34571@#rtl": boolean;
|
364
|
-
rtl: boolean;
|
365
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
366
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
367
|
-
_isInited: boolean;
|
368
|
-
_isRendered: boolean;
|
369
|
-
ngOnInit(): void;
|
370
|
-
ngAfterViewInit(): void;
|
371
|
-
ngOnDestroy(): void;
|
372
|
-
_getHostElement<T = HTMLElement>(): T;
|
373
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
374
|
-
_onInternalViewInit(): void;
|
375
|
-
_onInternalDestroy(): void;
|
376
|
-
onInit(): void;
|
377
|
-
onViewInit(): void;
|
378
|
-
onDestroy(): void;
|
379
|
-
_applyRtl(): void;
|
380
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
381
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
382
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
383
|
-
};
|
384
|
-
} & (abstract new (...args: any[]) => {
|
385
|
-
"__#34574@#disabled": boolean;
|
386
|
-
disabled: boolean;
|
387
|
-
"__#34574@#tabIndex": number;
|
388
|
-
tabIndex: number;
|
389
|
-
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
390
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
391
|
-
onBlur: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
392
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
393
|
-
focus(): void;
|
394
|
-
hasFocus(): boolean;
|
395
|
-
id: string;
|
396
|
-
"__#34571@#rtl": boolean;
|
397
|
-
rtl: boolean;
|
398
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
399
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
400
|
-
_isInited: boolean;
|
401
|
-
_isRendered: boolean;
|
402
|
-
ngOnInit(): void;
|
403
|
-
ngAfterViewInit(): void;
|
404
|
-
ngOnDestroy(): void;
|
405
|
-
_getHostElement<T = HTMLElement>(): T;
|
406
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
407
|
-
_onInternalInit(): void;
|
408
|
-
_onInternalViewInit(): void;
|
409
|
-
_onInternalDestroy(): void;
|
410
|
-
onInit(): void;
|
411
|
-
onViewInit(): void;
|
412
|
-
onDestroy(): void;
|
413
|
-
_applyRtl(): void;
|
414
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
415
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
416
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
417
|
-
}) & {
|
418
|
-
new (...args: any[]): {
|
419
|
-
onValueChanged: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXValueChangedEvent<any>>;
|
420
|
-
valueChange: import("@angular/core").EventEmitter<any>;
|
421
|
-
stateChange: import("@angular/core").EventEmitter<import("./base-components.class").AXComponentState>;
|
422
|
-
"__#34575@#readonly": boolean;
|
423
|
-
readonly: boolean;
|
424
|
-
"__#34575@#allowNull": boolean;
|
425
|
-
allowNull: boolean;
|
426
|
-
"__#34575@#name": string;
|
427
|
-
name: string;
|
428
|
-
"__#34575@#isUserInteraction": boolean;
|
429
|
-
readonly isUserInteraction: boolean;
|
430
|
-
"__#34575@#value": any;
|
431
|
-
value: any;
|
432
|
-
"__#34575@#state": import("./base-components.class").AXComponentState;
|
433
|
-
state: import("./base-components.class").AXComponentState;
|
434
|
-
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
435
|
-
_internalSetValue(value: any): any;
|
436
|
-
_internalGetValue(): any;
|
437
|
-
_setValue(value: any): any;
|
438
|
-
_getValue(value: any): any;
|
439
|
-
_setUserInteraction(): void;
|
440
|
-
setUserInteraction(): void;
|
441
|
-
_onValueChanged(oldValue: any, newValue: any): void;
|
442
|
-
_onInternalInit(): void;
|
443
|
-
_onInternalViewInit(): void;
|
444
|
-
_onInternalDestroy(): void;
|
445
|
-
clear(): void;
|
446
|
-
_checkRequired(): void;
|
447
|
-
validate(): Promise<any>;
|
448
|
-
_setState(state: import("./base-components.class").AXComponentState, ...args: any[]): void;
|
449
|
-
id: string;
|
450
|
-
"__#34571@#rtl": boolean;
|
451
|
-
rtl: boolean;
|
452
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
453
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
454
|
-
_isInited: boolean;
|
455
|
-
_isRendered: boolean;
|
456
|
-
ngOnInit(): void;
|
457
|
-
ngAfterViewInit(): void;
|
458
|
-
ngOnDestroy(): void;
|
459
|
-
_getHostElement<T = HTMLElement>(): T;
|
460
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
461
|
-
onInit(): void;
|
462
|
-
onViewInit(): void;
|
463
|
-
onDestroy(): void;
|
464
|
-
_applyRtl(): void;
|
465
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
466
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
467
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
468
|
-
};
|
469
|
-
} & {
|
470
|
-
new (...args: any[]): {
|
471
|
-
type: string;
|
472
|
-
placeholder: string;
|
473
|
-
maxLength: number;
|
474
|
-
autoComplete: string;
|
475
|
-
onKeyDown: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXHtmlEvent<KeyboardEvent>>;
|
476
|
-
onKeyUp: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXHtmlEvent<KeyboardEvent>>;
|
477
|
-
onKeyPress: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXHtmlEvent<KeyboardEvent>>;
|
478
|
-
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
479
|
-
_emitOnKeyupEvent(e: KeyboardEvent): void;
|
480
|
-
_emitOnKeypressEvent(e: KeyboardEvent): void;
|
481
|
-
id: string;
|
482
|
-
"__#34571@#rtl": boolean;
|
483
|
-
rtl: boolean;
|
484
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
485
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
486
|
-
_isInited: boolean;
|
487
|
-
_isRendered: boolean;
|
488
|
-
ngOnInit(): void;
|
489
|
-
ngAfterViewInit(): void;
|
490
|
-
ngOnDestroy(): void;
|
491
|
-
_getHostElement<T = HTMLElement>(): T;
|
492
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
493
|
-
_onInternalInit(): void;
|
494
|
-
_onInternalViewInit(): void;
|
495
|
-
_onInternalDestroy(): void;
|
496
|
-
onInit(): void;
|
497
|
-
onViewInit(): void;
|
498
|
-
onDestroy(): void;
|
499
|
-
_applyRtl(): void;
|
500
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
501
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
502
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
503
|
-
};
|
504
|
-
} & typeof AXBaseComponent;
|
505
|
-
export declare const AXBaseSelectionValueMixin: any;
|
506
|
-
export declare const AXBaseValueDropdownMixin: any;
|
507
|
-
export declare const AXBaseSelectionDropdownMixin: any;
|
508
|
-
export declare const AXBaseDropdownMixin: {
|
509
|
-
new (...args: any[]): {
|
510
|
-
size: import("./base-components.class").AXElementSize;
|
511
|
-
_onInternalInit(): void;
|
512
|
-
id: string;
|
513
|
-
"__#34571@#rtl": boolean;
|
514
|
-
rtl: boolean;
|
515
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
516
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
517
|
-
_isInited: boolean;
|
518
|
-
_isRendered: boolean;
|
519
|
-
ngOnInit(): void;
|
520
|
-
ngAfterViewInit(): void;
|
521
|
-
ngOnDestroy(): void;
|
522
|
-
_getHostElement<T = HTMLElement>(): T;
|
523
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
524
|
-
_onInternalViewInit(): void;
|
525
|
-
_onInternalDestroy(): void;
|
526
|
-
onInit(): void;
|
527
|
-
onViewInit(): void;
|
528
|
-
onDestroy(): void;
|
529
|
-
_applyRtl(): void;
|
530
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
531
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
532
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
533
|
-
};
|
534
|
-
} & (abstract new (...args: any[]) => {
|
535
|
-
"__#34574@#disabled": boolean;
|
536
|
-
disabled: boolean;
|
537
|
-
"__#34574@#tabIndex": number;
|
538
|
-
tabIndex: number;
|
539
|
-
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
540
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
541
|
-
onBlur: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
542
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
543
|
-
focus(): void;
|
544
|
-
hasFocus(): boolean;
|
545
|
-
id: string;
|
546
|
-
"__#34571@#rtl": boolean;
|
547
|
-
rtl: boolean;
|
548
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
549
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
550
|
-
_isInited: boolean;
|
551
|
-
_isRendered: boolean;
|
552
|
-
ngOnInit(): void;
|
553
|
-
ngAfterViewInit(): void;
|
554
|
-
ngOnDestroy(): void;
|
555
|
-
_getHostElement<T = HTMLElement>(): T;
|
556
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
557
|
-
_onInternalInit(): void;
|
558
|
-
_onInternalViewInit(): void;
|
559
|
-
_onInternalDestroy(): void;
|
560
|
-
onInit(): void;
|
561
|
-
onViewInit(): void;
|
562
|
-
onDestroy(): void;
|
563
|
-
_applyRtl(): void;
|
564
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
565
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
566
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
567
|
-
}) & (abstract new (...args: any[]) => {
|
568
|
-
readonly: boolean;
|
569
|
-
onOpened: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXEvent>;
|
570
|
-
onClosed: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXEvent>;
|
571
|
-
popover: any;
|
572
|
-
position: import("dist/libs/components/common").AXConnectedPosition[];
|
573
|
-
_emitOnOpenedEvent(): void;
|
574
|
-
_emitOnClosedEvent(): void;
|
575
|
-
onInit(): void;
|
576
|
-
onViewInit(): void;
|
577
|
-
toggle(): void;
|
578
|
-
close(): void;
|
579
|
-
open(): void;
|
580
|
-
readonly isOpen: boolean;
|
581
|
-
id: string;
|
582
|
-
"__#34571@#rtl": boolean;
|
583
|
-
rtl: boolean;
|
584
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
585
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
586
|
-
_isInited: boolean;
|
587
|
-
_isRendered: boolean;
|
588
|
-
ngOnInit(): void;
|
589
|
-
ngAfterViewInit(): void;
|
590
|
-
ngOnDestroy(): void;
|
591
|
-
_getHostElement<T = HTMLElement>(): T;
|
592
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
593
|
-
_onInternalInit(): void;
|
594
|
-
_onInternalViewInit(): void;
|
595
|
-
_onInternalDestroy(): void;
|
596
|
-
onDestroy(): void;
|
597
|
-
_applyRtl(): void;
|
598
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
599
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
600
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
601
|
-
}) & typeof AXBaseComponent;
|
602
|
-
export declare const AXBaseMenuMixin: {
|
603
|
-
new (...args: any[]): {
|
604
|
-
textField: string;
|
605
|
-
valueField: string;
|
606
|
-
"__#34572@#isLoading": boolean;
|
607
|
-
"__#34572@#loadedItems": any[];
|
608
|
-
visibleField: string;
|
609
|
-
disableField: string;
|
610
|
-
hasChildField: string;
|
611
|
-
iconField: string;
|
612
|
-
openMode: "click" | "hover";
|
613
|
-
displayMode: "horizontal" | "vertical" | "sidemenu";
|
614
|
-
dividerField: string;
|
615
|
-
onMenuItemClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXItemClickEvent<any>>;
|
616
|
-
"__#34572@#items": any;
|
617
|
-
items: any;
|
618
|
-
readonly displayItems: any;
|
619
|
-
readonly isLoading: boolean;
|
620
|
-
_formatData(v: any[]): any[];
|
621
|
-
_findNode(parentId: number, _children: any, source: any): void;
|
622
|
-
_fetchData(parentId?: number, searchText?: string): Promise<unknown>;
|
623
|
-
_onInternalInit(): void;
|
624
|
-
_getItemDisplayTextTemplte(item: any): any;
|
625
|
-
refresh(): void;
|
626
|
-
id: string;
|
627
|
-
"__#34571@#rtl": boolean;
|
628
|
-
rtl: boolean;
|
629
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
630
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
631
|
-
_isInited: boolean;
|
632
|
-
_isRendered: boolean;
|
633
|
-
ngOnInit(): void;
|
634
|
-
ngAfterViewInit(): void;
|
635
|
-
ngOnDestroy(): void;
|
636
|
-
_getHostElement<T = HTMLElement>(): T;
|
637
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
638
|
-
_onInternalViewInit(): void;
|
639
|
-
_onInternalDestroy(): void;
|
640
|
-
onInit(): void;
|
641
|
-
onViewInit(): void;
|
642
|
-
onDestroy(): void;
|
643
|
-
_applyRtl(): void;
|
644
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
645
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
646
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
647
|
-
};
|
648
|
-
} & typeof AXBaseComponent;
|
649
|
-
export declare const AXAvatarMixin: {
|
650
|
-
new (...args: any[]): {
|
651
|
-
colorChange: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXStyleColorType>;
|
652
|
-
_color: import("dist/libs/components/common").AXStyleColorType;
|
653
|
-
color: import("dist/libs/components/common").AXStyleColorType;
|
654
|
-
lookChange: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXStyleLookType>;
|
655
|
-
_look?: import("dist/libs/components/common").AXStyleLookType;
|
656
|
-
look: import("dist/libs/components/common").AXStyleLookType;
|
657
|
-
id: string;
|
658
|
-
"__#34571@#rtl": boolean;
|
659
|
-
rtl: boolean;
|
660
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
661
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
662
|
-
_isInited: boolean;
|
663
|
-
_isRendered: boolean;
|
664
|
-
ngOnInit(): void;
|
665
|
-
ngAfterViewInit(): void;
|
666
|
-
ngOnDestroy(): void;
|
667
|
-
_getHostElement<T = HTMLElement>(): T;
|
668
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
669
|
-
_onInternalInit(): void;
|
670
|
-
_onInternalViewInit(): void;
|
671
|
-
_onInternalDestroy(): void;
|
672
|
-
onInit(): void;
|
673
|
-
onViewInit(): void;
|
674
|
-
onDestroy(): void;
|
675
|
-
_applyRtl(): void;
|
676
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
677
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
678
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
679
|
-
};
|
680
|
-
} & typeof AXBaseComponent;
|