@acorex/components 5.0.10 → 5.0.13
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 +677 -587
- package/bundles/acorex-components.umd.js.map +1 -1
- package/esm2015/lib/base/mixin/base-components.class.js +19 -3
- package/esm2015/lib/base/mixin/button-mixin.class.js +92 -105
- package/esm2015/lib/base/mixin/clickable-mixin.class.js +1 -1
- package/esm2015/lib/base/mixin/dropdown-mixin.class.js +63 -9
- package/esm2015/lib/base/mixin/interactive-mixin.class.js +3 -3
- package/esm2015/lib/base/mixin/mixin.class.js +2 -2
- package/esm2015/lib/base/mixin/value-mixin.class.js +7 -2
- package/esm2015/lib/button/button-group.component.js +4 -4
- package/esm2015/lib/calendar/calendar.class.js +97 -0
- package/esm2015/lib/calendar/calendar.component.js +17 -67
- package/esm2015/lib/checkbox/checkbox.component.js +3 -4
- package/esm2015/lib/datepicker/datepicker.component.js +119 -65
- package/esm2015/lib/datepicker/datepicker.module.js +30 -6
- package/esm2015/lib/dropdown/dropdown-panel.component.js +7 -4
- package/esm2015/lib/dropdown/dropdown.component.js +10 -7
- package/esm2015/lib/form/form-hint.component.js +3 -3
- package/esm2015/lib/page/base-page.class.js +2 -2
- package/esm2015/lib/selectbox/selectbox.component.js +2 -2
- package/esm2015/lib/selection-list/selection-list.component.js +2 -2
- package/esm2015/lib/tabs/tab-content.directive.js +2 -2
- package/esm2015/lib/tabs/tab-item.component.js +2 -2
- package/fesm2015/acorex-components.js +650 -569
- package/fesm2015/acorex-components.js.map +1 -1
- package/lib/base/mixin/base-components.class.d.ts +21 -18
- package/lib/base/mixin/button-mixin.class.d.ts +11 -17
- package/lib/base/mixin/clickable-mixin.class.d.ts +3 -9
- package/lib/base/mixin/datalist-component.class.d.ts +9 -15
- package/lib/base/mixin/dropdown-mixin.class.d.ts +16 -12
- package/lib/base/mixin/interactive-mixin.class.d.ts +6 -14
- package/lib/base/mixin/loading-mixin.class.d.ts +3 -9
- package/lib/base/mixin/mixin.class.d.ts +166 -164
- package/lib/base/mixin/selection-component.class.d.ts +3 -9
- package/lib/base/mixin/sizable-mixin.class.d.ts +3 -9
- package/lib/base/mixin/textbox-mixin.class.d.ts +4 -12
- package/lib/base/mixin/value-mixin.class.d.ts +15 -20
- package/lib/button/button-item.component.d.ts +8 -20
- package/lib/calendar/calendar.class.d.ts +38 -0
- package/lib/calendar/calendar.component.d.ts +5 -26
- package/lib/datepicker/datepicker.component.d.ts +170 -16
- package/lib/datepicker/datepicker.module.d.ts +8 -2
- package/lib/dropdown/dropdown-panel.component.d.ts +4 -5
- package/lib/dropdown/dropdown.component.d.ts +5 -6
- package/package.json +1 -1
- package/esm2015/lib/dropdown/dropdown-base.class.js +0 -98
- package/lib/dropdown/dropdown-base.class.d.ts +0 -94
|
@@ -21,15 +21,9 @@ export declare const AXBaseComponentMixin: {
|
|
|
21
21
|
onRenderCssClass(): void;
|
|
22
22
|
onViewInit(): void;
|
|
23
23
|
onDestroy(): void;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}): any;
|
|
28
|
-
onOptionChanged(option: {
|
|
29
|
-
name: string;
|
|
30
|
-
oldValue?: any;
|
|
31
|
-
newValue?: any;
|
|
32
|
-
}): void;
|
|
24
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
25
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
26
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
33
27
|
};
|
|
34
28
|
} & typeof AXBaseComponent;
|
|
35
29
|
export declare const AXSizableComponentMixin: {
|
|
@@ -55,15 +49,9 @@ export declare const AXSizableComponentMixin: {
|
|
|
55
49
|
onRenderCssClass(): void;
|
|
56
50
|
onViewInit(): void;
|
|
57
51
|
onDestroy(): void;
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}): any;
|
|
62
|
-
onOptionChanged(option: {
|
|
63
|
-
name: string;
|
|
64
|
-
oldValue?: any;
|
|
65
|
-
newValue?: any;
|
|
66
|
-
}): void;
|
|
52
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
53
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
54
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
67
55
|
};
|
|
68
56
|
} & {
|
|
69
57
|
new (...args: any[]): {
|
|
@@ -87,15 +75,9 @@ export declare const AXSizableComponentMixin: {
|
|
|
87
75
|
onRenderCssClass(): void;
|
|
88
76
|
onViewInit(): void;
|
|
89
77
|
onDestroy(): void;
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}): any;
|
|
94
|
-
onOptionChanged(option: {
|
|
95
|
-
name: string;
|
|
96
|
-
oldValue?: any;
|
|
97
|
-
newValue?: any;
|
|
98
|
-
}): void;
|
|
78
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
79
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
80
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
99
81
|
};
|
|
100
82
|
} & typeof AXBaseComponent;
|
|
101
83
|
export declare const AXInteractiveComponenetMixin: {
|
|
@@ -121,20 +103,14 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
121
103
|
onRenderCssClass(): void;
|
|
122
104
|
onViewInit(): void;
|
|
123
105
|
onDestroy(): void;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}): any;
|
|
128
|
-
onOptionChanged(option: {
|
|
129
|
-
name: string;
|
|
130
|
-
oldValue?: any;
|
|
131
|
-
newValue?: any;
|
|
132
|
-
}): void;
|
|
106
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
107
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
108
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
133
109
|
};
|
|
134
110
|
} & (abstract new (...args: any[]) => {
|
|
135
|
-
"__#
|
|
111
|
+
"__#3@#disabled": boolean;
|
|
136
112
|
disabled: boolean;
|
|
137
|
-
"__#
|
|
113
|
+
"__#3@#tabIndex": number;
|
|
138
114
|
tabIndex: number;
|
|
139
115
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
|
|
140
116
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -161,15 +137,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
161
137
|
onRenderCssClass(): void;
|
|
162
138
|
onViewInit(): void;
|
|
163
139
|
onDestroy(): void;
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
}): any;
|
|
168
|
-
onOptionChanged(option: {
|
|
169
|
-
name: string;
|
|
170
|
-
oldValue?: any;
|
|
171
|
-
newValue?: any;
|
|
172
|
-
}): void;
|
|
140
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
141
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
142
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
173
143
|
}) & typeof AXBaseComponent;
|
|
174
144
|
export declare const AXBaseClickableMixin: {
|
|
175
145
|
new (...args: any[]): {
|
|
@@ -194,20 +164,14 @@ export declare const AXBaseClickableMixin: {
|
|
|
194
164
|
onRenderCssClass(): void;
|
|
195
165
|
onViewInit(): void;
|
|
196
166
|
onDestroy(): void;
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
}): any;
|
|
201
|
-
onOptionChanged(option: {
|
|
202
|
-
name: string;
|
|
203
|
-
oldValue?: any;
|
|
204
|
-
newValue?: any;
|
|
205
|
-
}): void;
|
|
167
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
168
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
169
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
206
170
|
};
|
|
207
171
|
} & (abstract new (...args: any[]) => {
|
|
208
|
-
"__#
|
|
172
|
+
"__#3@#disabled": boolean;
|
|
209
173
|
disabled: boolean;
|
|
210
|
-
"__#
|
|
174
|
+
"__#3@#tabIndex": number;
|
|
211
175
|
tabIndex: number;
|
|
212
176
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
|
|
213
177
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -234,15 +198,9 @@ export declare const AXBaseClickableMixin: {
|
|
|
234
198
|
onRenderCssClass(): void;
|
|
235
199
|
onViewInit(): void;
|
|
236
200
|
onDestroy(): void;
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
}): any;
|
|
241
|
-
onOptionChanged(option: {
|
|
242
|
-
name: string;
|
|
243
|
-
oldValue?: any;
|
|
244
|
-
newValue?: any;
|
|
245
|
-
}): void;
|
|
201
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
202
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
203
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
246
204
|
}) & {
|
|
247
205
|
new (...args: any[]): {
|
|
248
206
|
onClick: import("@angular/core").EventEmitter<import("@acorex/components").AXClickEvent>;
|
|
@@ -267,15 +225,9 @@ export declare const AXBaseClickableMixin: {
|
|
|
267
225
|
onRenderCssClass(): void;
|
|
268
226
|
onViewInit(): void;
|
|
269
227
|
onDestroy(): void;
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
}): any;
|
|
274
|
-
onOptionChanged(option: {
|
|
275
|
-
name: string;
|
|
276
|
-
oldValue?: any;
|
|
277
|
-
newValue?: any;
|
|
278
|
-
}): void;
|
|
228
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
229
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
230
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
279
231
|
};
|
|
280
232
|
} & typeof AXBaseComponent;
|
|
281
233
|
export declare const AXBaseButtonMixin: {
|
|
@@ -301,20 +253,14 @@ export declare const AXBaseButtonMixin: {
|
|
|
301
253
|
onRenderCssClass(): void;
|
|
302
254
|
onViewInit(): void;
|
|
303
255
|
onDestroy(): void;
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
}): any;
|
|
308
|
-
onOptionChanged(option: {
|
|
309
|
-
name: string;
|
|
310
|
-
oldValue?: any;
|
|
311
|
-
newValue?: any;
|
|
312
|
-
}): void;
|
|
256
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
257
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
258
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
313
259
|
};
|
|
314
260
|
} & (abstract new (...args: any[]) => {
|
|
315
|
-
"__#
|
|
261
|
+
"__#3@#disabled": boolean;
|
|
316
262
|
disabled: boolean;
|
|
317
|
-
"__#
|
|
263
|
+
"__#3@#tabIndex": number;
|
|
318
264
|
tabIndex: number;
|
|
319
265
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
|
|
320
266
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -341,15 +287,9 @@ export declare const AXBaseButtonMixin: {
|
|
|
341
287
|
onRenderCssClass(): void;
|
|
342
288
|
onViewInit(): void;
|
|
343
289
|
onDestroy(): void;
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
}): any;
|
|
348
|
-
onOptionChanged(option: {
|
|
349
|
-
name: string;
|
|
350
|
-
oldValue?: any;
|
|
351
|
-
newValue?: any;
|
|
352
|
-
}): void;
|
|
290
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
291
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
292
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
353
293
|
}) & {
|
|
354
294
|
new (...args: any[]): {
|
|
355
295
|
onClick: import("@angular/core").EventEmitter<import("@acorex/components").AXClickEvent>;
|
|
@@ -374,15 +314,9 @@ export declare const AXBaseButtonMixin: {
|
|
|
374
314
|
onRenderCssClass(): void;
|
|
375
315
|
onViewInit(): void;
|
|
376
316
|
onDestroy(): void;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
}): any;
|
|
381
|
-
onOptionChanged(option: {
|
|
382
|
-
name: string;
|
|
383
|
-
oldValue?: any;
|
|
384
|
-
newValue?: any;
|
|
385
|
-
}): void;
|
|
317
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
318
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
319
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
386
320
|
};
|
|
387
321
|
} & {
|
|
388
322
|
new (...args: any[]): {
|
|
@@ -390,16 +324,16 @@ export declare const AXBaseButtonMixin: {
|
|
|
390
324
|
submitBehavior: boolean;
|
|
391
325
|
cancelBehavior: boolean;
|
|
392
326
|
colorChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleColorType>;
|
|
393
|
-
|
|
327
|
+
_color: import("@acorex/components").AXStyleColorType;
|
|
394
328
|
color: import("@acorex/components").AXStyleColorType;
|
|
395
329
|
lookChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleButtonLook>;
|
|
396
|
-
|
|
330
|
+
_look?: import("@acorex/components").AXStyleButtonLook;
|
|
397
331
|
look: import("@acorex/components").AXStyleButtonLook;
|
|
398
332
|
toggleableChange: import("@angular/core").EventEmitter<boolean>;
|
|
399
|
-
|
|
333
|
+
_toggleable?: boolean;
|
|
400
334
|
toggleable: boolean;
|
|
401
335
|
selectedChange: import("@angular/core").EventEmitter<boolean>;
|
|
402
|
-
|
|
336
|
+
_selected?: boolean;
|
|
403
337
|
selected: boolean;
|
|
404
338
|
_onInternalViewInit(): void;
|
|
405
339
|
_onInternalDestroy(): void;
|
|
@@ -426,15 +360,9 @@ export declare const AXBaseButtonMixin: {
|
|
|
426
360
|
onRenderCssClass(): void;
|
|
427
361
|
onViewInit(): void;
|
|
428
362
|
onDestroy(): void;
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
}): any;
|
|
433
|
-
onOptionChanged(option: {
|
|
434
|
-
name: string;
|
|
435
|
-
oldValue?: any;
|
|
436
|
-
newValue?: any;
|
|
437
|
-
}): void;
|
|
363
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
364
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
365
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
438
366
|
};
|
|
439
367
|
} & typeof AXBaseComponent;
|
|
440
368
|
export declare const AXBaseValueComponentMixin: any;
|
|
@@ -461,20 +389,14 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
461
389
|
onRenderCssClass(): void;
|
|
462
390
|
onViewInit(): void;
|
|
463
391
|
onDestroy(): void;
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
}): any;
|
|
468
|
-
onOptionChanged(option: {
|
|
469
|
-
name: string;
|
|
470
|
-
oldValue?: any;
|
|
471
|
-
newValue?: any;
|
|
472
|
-
}): void;
|
|
392
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
393
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
394
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
473
395
|
};
|
|
474
396
|
} & (abstract new (...args: any[]) => {
|
|
475
|
-
"__#
|
|
397
|
+
"__#3@#disabled": boolean;
|
|
476
398
|
disabled: boolean;
|
|
477
|
-
"__#
|
|
399
|
+
"__#3@#tabIndex": number;
|
|
478
400
|
tabIndex: number;
|
|
479
401
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
|
|
480
402
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -501,32 +423,27 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
501
423
|
onRenderCssClass(): void;
|
|
502
424
|
onViewInit(): void;
|
|
503
425
|
onDestroy(): void;
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
}): any;
|
|
508
|
-
onOptionChanged(option: {
|
|
509
|
-
name: string;
|
|
510
|
-
oldValue?: any;
|
|
511
|
-
newValue?: any;
|
|
512
|
-
}): void;
|
|
426
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
427
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
428
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
513
429
|
}) & {
|
|
514
430
|
new (...args: any[]): {
|
|
515
431
|
onValueChanged: import("@angular/core").EventEmitter<import("@acorex/components").AXValueChangedEvent<any>>;
|
|
516
432
|
valueChange: import("@angular/core").EventEmitter<any>;
|
|
517
|
-
"__#
|
|
433
|
+
"__#4@#readonly": boolean;
|
|
518
434
|
readonly: boolean;
|
|
519
|
-
"__#
|
|
435
|
+
"__#4@#allowNull": boolean;
|
|
520
436
|
allowNull: boolean;
|
|
521
|
-
"__#
|
|
437
|
+
"__#4@#name": string;
|
|
522
438
|
name: string;
|
|
523
|
-
"__#
|
|
439
|
+
"__#4@#debounceTime": number;
|
|
524
440
|
debounceTime: number;
|
|
525
|
-
"__#
|
|
526
|
-
"__#
|
|
527
|
-
"__#
|
|
441
|
+
"__#4@#valueSubscription": import("rxjs").Subscription;
|
|
442
|
+
"__#4@#valueSubject": import("rxjs").Subject<unknown>;
|
|
443
|
+
"__#4@#value": any;
|
|
528
444
|
value: any;
|
|
529
445
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
|
446
|
+
_onInternalValueChanging(value: any): any;
|
|
530
447
|
_onValueChanging(value: any): any;
|
|
531
448
|
_onValueChanged(oldValue: any, newValue: any): void;
|
|
532
449
|
_onInternalInit(): void;
|
|
@@ -553,15 +470,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
553
470
|
onRenderCssClass(): void;
|
|
554
471
|
onViewInit(): void;
|
|
555
472
|
onDestroy(): void;
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
}): any;
|
|
560
|
-
onOptionChanged(option: {
|
|
561
|
-
name: string;
|
|
562
|
-
oldValue?: any;
|
|
563
|
-
newValue?: any;
|
|
564
|
-
}): void;
|
|
473
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
474
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
475
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
565
476
|
};
|
|
566
477
|
} & {
|
|
567
478
|
new (...args: any[]): {
|
|
@@ -590,18 +501,109 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
590
501
|
onRenderCssClass(): void;
|
|
591
502
|
onViewInit(): void;
|
|
592
503
|
onDestroy(): void;
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
}): any;
|
|
597
|
-
onOptionChanged(option: {
|
|
598
|
-
name: string;
|
|
599
|
-
oldValue?: any;
|
|
600
|
-
newValue?: any;
|
|
601
|
-
}): void;
|
|
504
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
505
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
506
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
602
507
|
};
|
|
603
508
|
} & typeof AXBaseComponent;
|
|
604
509
|
export declare const AXBaseSelectionValueMixin: any;
|
|
605
510
|
export declare const AXBaseValueDropdownMixin: any;
|
|
606
511
|
export declare const AXBaseSelectionDropdownMixin: any;
|
|
607
|
-
export declare const
|
|
512
|
+
export declare const AXBaseDropdownMixin: {
|
|
513
|
+
new (...args: any[]): {
|
|
514
|
+
size: import("./base-components.class").AXElementSize;
|
|
515
|
+
_onInternalInit(): void;
|
|
516
|
+
id: string;
|
|
517
|
+
rtl: boolean;
|
|
518
|
+
cssClass: string;
|
|
519
|
+
cssStyle: string;
|
|
520
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
521
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
522
|
+
_isInited: boolean;
|
|
523
|
+
_isRendered: boolean;
|
|
524
|
+
ngOnInit(): void;
|
|
525
|
+
ngAfterViewInit(): void;
|
|
526
|
+
ngOnDestroy(): void;
|
|
527
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
528
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
529
|
+
_onInternalViewInit(): void;
|
|
530
|
+
_onInternalDestroy(): void;
|
|
531
|
+
onInit(): void;
|
|
532
|
+
onRenderCssClass(): void;
|
|
533
|
+
onViewInit(): void;
|
|
534
|
+
onDestroy(): void;
|
|
535
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
536
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
537
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
538
|
+
};
|
|
539
|
+
} & (abstract new (...args: any[]) => {
|
|
540
|
+
"__#3@#disabled": boolean;
|
|
541
|
+
disabled: boolean;
|
|
542
|
+
"__#3@#tabIndex": number;
|
|
543
|
+
tabIndex: number;
|
|
544
|
+
onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
|
|
545
|
+
_emitOnFocusEvent(e: FocusEvent): void;
|
|
546
|
+
onBlur: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
|
|
547
|
+
_emitOnBlurEvent(e: FocusEvent): void;
|
|
548
|
+
focus(): void;
|
|
549
|
+
id: string;
|
|
550
|
+
rtl: boolean;
|
|
551
|
+
cssClass: string;
|
|
552
|
+
cssStyle: string;
|
|
553
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
554
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
555
|
+
_isInited: boolean;
|
|
556
|
+
_isRendered: boolean;
|
|
557
|
+
ngOnInit(): void;
|
|
558
|
+
ngAfterViewInit(): void;
|
|
559
|
+
ngOnDestroy(): void;
|
|
560
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
561
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
562
|
+
_onInternalInit(): void;
|
|
563
|
+
_onInternalViewInit(): void;
|
|
564
|
+
_onInternalDestroy(): void;
|
|
565
|
+
onInit(): void;
|
|
566
|
+
onRenderCssClass(): void;
|
|
567
|
+
onViewInit(): void;
|
|
568
|
+
onDestroy(): void;
|
|
569
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
570
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
571
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
572
|
+
}) & (abstract new (...args: any[]) => {
|
|
573
|
+
fitParent: boolean;
|
|
574
|
+
readonly: boolean;
|
|
575
|
+
dropdownWidth: number;
|
|
576
|
+
onOpened: import("@angular/core").EventEmitter<import("@acorex/components").AXEvent>;
|
|
577
|
+
onClosed: import("@angular/core").EventEmitter<import("@acorex/components").AXEvent>;
|
|
578
|
+
popover: import("@acorex/components").AXPopoverComponent;
|
|
579
|
+
position: import("@acorex/components").AXConnectedPosition[];
|
|
580
|
+
_emitOnOpenedEvent(): void;
|
|
581
|
+
_emitOnClosedEvent(): void;
|
|
582
|
+
onViewInit(): void;
|
|
583
|
+
toggle(): void;
|
|
584
|
+
close(): void;
|
|
585
|
+
open(): void;
|
|
586
|
+
readonly isOpen: boolean;
|
|
587
|
+
id: string;
|
|
588
|
+
rtl: boolean;
|
|
589
|
+
cssClass: string;
|
|
590
|
+
cssStyle: string;
|
|
591
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
592
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
593
|
+
_isInited: boolean;
|
|
594
|
+
_isRendered: boolean;
|
|
595
|
+
ngOnInit(): void;
|
|
596
|
+
ngAfterViewInit(): void;
|
|
597
|
+
ngOnDestroy(): void;
|
|
598
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
599
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
600
|
+
_onInternalInit(): void;
|
|
601
|
+
_onInternalViewInit(): void;
|
|
602
|
+
_onInternalDestroy(): void;
|
|
603
|
+
onInit(): void;
|
|
604
|
+
onRenderCssClass(): void;
|
|
605
|
+
onDestroy(): void;
|
|
606
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
607
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
608
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
609
|
+
}) & typeof AXBaseComponent;
|
|
@@ -43,14 +43,8 @@ export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBa
|
|
|
43
43
|
onRenderCssClass(): void;
|
|
44
44
|
onViewInit(): void;
|
|
45
45
|
onDestroy(): void;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}): any;
|
|
50
|
-
onOptionChanged(option: {
|
|
51
|
-
name: string;
|
|
52
|
-
oldValue?: any;
|
|
53
|
-
newValue?: any;
|
|
54
|
-
}): void;
|
|
46
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
47
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
48
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
55
49
|
};
|
|
56
50
|
} & TBase;
|
|
@@ -26,15 +26,9 @@ export declare function _SizableComponenetMixin<TBase extends Constructor<AXBase
|
|
|
26
26
|
onRenderCssClass(): void;
|
|
27
27
|
onViewInit(): void;
|
|
28
28
|
onDestroy(): void;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}): any;
|
|
33
|
-
onOptionChanged(option: {
|
|
34
|
-
name: string;
|
|
35
|
-
oldValue?: any;
|
|
36
|
-
newValue?: any;
|
|
37
|
-
}): void;
|
|
29
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
30
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
31
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
38
32
|
};
|
|
39
33
|
} & TBase;
|
|
40
34
|
export declare const SIZABLE_INPUTS: string[];
|
|
@@ -22,9 +22,7 @@ export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBase
|
|
|
22
22
|
*/
|
|
23
23
|
onKeyDown: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
|
|
24
24
|
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
|
25
|
-
id: string;
|
|
26
|
-
* A string value that specifies the placeholder of text box.
|
|
27
|
-
*/
|
|
25
|
+
id: string;
|
|
28
26
|
rtl: boolean;
|
|
29
27
|
cssClass: string;
|
|
30
28
|
cssStyle: string;
|
|
@@ -44,15 +42,9 @@ export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBase
|
|
|
44
42
|
onRenderCssClass(): void;
|
|
45
43
|
onViewInit(): void;
|
|
46
44
|
onDestroy(): void;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}): any;
|
|
51
|
-
onOptionChanged(option: {
|
|
52
|
-
name: string;
|
|
53
|
-
oldValue?: any;
|
|
54
|
-
newValue?: any;
|
|
55
|
-
}): void;
|
|
45
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
46
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
47
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
56
48
|
};
|
|
57
49
|
} & TBase;
|
|
58
50
|
export declare const TEXTBOX_INPUTS: string[];
|
|
@@ -12,22 +12,23 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
12
12
|
*/
|
|
13
13
|
onValueChanged: EventEmitter<AXValueChangedEvent<any>>;
|
|
14
14
|
valueChange: EventEmitter<any>;
|
|
15
|
-
"__#
|
|
15
|
+
"__#4@#readonly": boolean;
|
|
16
16
|
/**
|
|
17
17
|
* If set to true, user cannot change the value of component.
|
|
18
18
|
*/
|
|
19
19
|
readonly: boolean;
|
|
20
|
-
"__#
|
|
20
|
+
"__#4@#allowNull": boolean;
|
|
21
21
|
allowNull: boolean;
|
|
22
|
-
"__#
|
|
22
|
+
"__#4@#name": string;
|
|
23
23
|
name: string;
|
|
24
|
-
"__#
|
|
24
|
+
"__#4@#debounceTime": number;
|
|
25
25
|
debounceTime: number;
|
|
26
|
-
"__#
|
|
27
|
-
"__#
|
|
28
|
-
"__#
|
|
26
|
+
"__#4@#valueSubscription": Subscription;
|
|
27
|
+
"__#4@#valueSubject": Subject<unknown>;
|
|
28
|
+
"__#4@#value": any;
|
|
29
29
|
value: any;
|
|
30
30
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
|
31
|
+
_onInternalValueChanging(value: any): any;
|
|
31
32
|
_onValueChanging(value: any): any;
|
|
32
33
|
_onValueChanged(oldValue: any, newValue: any): void;
|
|
33
34
|
_onInternalInit(): void;
|
|
@@ -41,12 +42,12 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
41
42
|
cssClass: string;
|
|
42
43
|
cssStyle: string;
|
|
43
44
|
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
44
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
45
|
-
_isInited: boolean;
|
|
46
|
-
_isRendered: boolean;
|
|
47
|
-
ngOnInit(): void; /**
|
|
45
|
+
_cdr: import("@angular/core").ChangeDetectorRef; /**
|
|
48
46
|
* If set to true, user cannot change the value of component.
|
|
49
47
|
*/
|
|
48
|
+
_isInited: boolean;
|
|
49
|
+
_isRendered: boolean;
|
|
50
|
+
ngOnInit(): void;
|
|
50
51
|
ngAfterViewInit(): void;
|
|
51
52
|
ngOnDestroy(): void;
|
|
52
53
|
_getHostElement<T = HTMLElement>(): T;
|
|
@@ -56,15 +57,9 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
56
57
|
onRenderCssClass(): void;
|
|
57
58
|
onViewInit(): void;
|
|
58
59
|
onDestroy(): void;
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
}): any;
|
|
63
|
-
onOptionChanged(option: {
|
|
64
|
-
name: string;
|
|
65
|
-
oldValue?: any;
|
|
66
|
-
newValue?: any;
|
|
67
|
-
}): void;
|
|
60
|
+
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
61
|
+
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
62
|
+
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
68
63
|
};
|
|
69
64
|
} & TBase;
|
|
70
65
|
export declare const VALUE_INPUTS: string[];
|
|
@@ -2,9 +2,9 @@ import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
|
2
2
|
import { AXBaseComponent, AXStyleColorType } from '../base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
5
|
-
"__#
|
|
5
|
+
"__#3@#disabled": boolean;
|
|
6
6
|
disabled: boolean;
|
|
7
|
-
"__#
|
|
7
|
+
"__#3@#tabIndex": number;
|
|
8
8
|
tabIndex: number;
|
|
9
9
|
onFocus: import("@angular/core").EventEmitter<import("../base").AXFocusEvent>;
|
|
10
10
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -31,15 +31,9 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
|
31
31
|
onRenderCssClass(): void;
|
|
32
32
|
onViewInit(): void;
|
|
33
33
|
onDestroy(): void;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}): any;
|
|
38
|
-
onOptionChanged(option: {
|
|
39
|
-
name: string;
|
|
40
|
-
oldValue?: any;
|
|
41
|
-
newValue?: any;
|
|
42
|
-
}): void;
|
|
34
|
+
_onOptionChanging(option: import("../base").AXComponentOptionChanging): any;
|
|
35
|
+
_onOptionChanged(option: import("../base").AXComponentOptionChanged): void;
|
|
36
|
+
_setOption(option: import("../base").AXComponentSetOption): void;
|
|
43
37
|
}) & {
|
|
44
38
|
new (...args: any[]): {
|
|
45
39
|
onClick: import("@angular/core").EventEmitter<import("../base").AXClickEvent>;
|
|
@@ -64,15 +58,9 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
|
64
58
|
onRenderCssClass(): void;
|
|
65
59
|
onViewInit(): void;
|
|
66
60
|
onDestroy(): void;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
}): any;
|
|
71
|
-
onOptionChanged(option: {
|
|
72
|
-
name: string;
|
|
73
|
-
oldValue?: any;
|
|
74
|
-
newValue?: any;
|
|
75
|
-
}): void;
|
|
61
|
+
_onOptionChanging(option: import("../base").AXComponentOptionChanging): any;
|
|
62
|
+
_onOptionChanged(option: import("../base").AXComponentOptionChanged): void;
|
|
63
|
+
_setOption(option: import("../base").AXComponentSetOption): void;
|
|
76
64
|
};
|
|
77
65
|
} & typeof AXBaseComponent;
|
|
78
66
|
export declare class AXButtonItemComponent extends AXBaseItemButtonMixin {
|