forked from DevExpress/DevExtreme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtab-panel-options.ts
More file actions
469 lines (396 loc) · 12.5 KB
/
tab-panel-options.ts
File metadata and controls
469 lines (396 loc) · 12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/* tslint:disable:max-line-length */
import {
Component,
OnInit,
OnDestroy,
NgModule,
Host,
SkipSelf,
Input,
Output,
EventEmitter,
ContentChildren,
QueryList
} from '@angular/core';
import type { dxTabPanelItem, ContentReadyEvent, DisposingEvent, InitializedEvent, ItemClickEvent, ItemContextMenuEvent, ItemHoldEvent, ItemRenderedEvent, OptionChangedEvent, SelectionChangedEvent, SelectionChangingEvent, TitleClickEvent, TitleHoldEvent, TitleRenderedEvent } from 'devextreme/ui/tab_panel';
import type { default as DataSource, DataSourceOptions } from 'devextreme/data/data_source';
import type { Store } from 'devextreme/data/store';
import type { TabsIconPosition, TabsStyle, Position } from 'devextreme/common';
import {
DxIntegrationModule,
NestedOptionHost,
CollectionNestedOption,
} from 'devextreme-angular/core';
import { NestedOption } from 'devextreme-angular/core';
import {
PROPERTY_TOKEN_items,
} from 'devextreme-angular/core/tokens';
@Component({
selector: 'dxo-data-grid-tab-panel-options',
template: '',
styles: [''],
imports: [ DxIntegrationModule ],
providers: [NestedOptionHost]
})
export class DxoDataGridTabPanelOptionsComponent extends NestedOption implements OnDestroy, OnInit {
@ContentChildren(PROPERTY_TOKEN_items)
set _itemsContentChildren(value: QueryList<CollectionNestedOption>) {
this.setChildren('items', value);
}
@Input()
get accessKey(): string | undefined {
return this._getOption('accessKey');
}
set accessKey(value: string | undefined) {
this._setOption('accessKey', value);
}
@Input()
get activeStateEnabled(): boolean {
return this._getOption('activeStateEnabled');
}
set activeStateEnabled(value: boolean) {
this._setOption('activeStateEnabled', value);
}
@Input()
get animationEnabled(): boolean {
return this._getOption('animationEnabled');
}
set animationEnabled(value: boolean) {
this._setOption('animationEnabled', value);
}
@Input()
get dataSource(): Array<any | dxTabPanelItem | string> | DataSource | DataSourceOptions | null | Store | string {
return this._getOption('dataSource');
}
set dataSource(value: Array<any | dxTabPanelItem | string> | DataSource | DataSourceOptions | null | Store | string) {
this._setOption('dataSource', value);
}
@Input()
get deferRendering(): boolean {
return this._getOption('deferRendering');
}
set deferRendering(value: boolean) {
this._setOption('deferRendering', value);
}
@Input()
get disabled(): boolean {
return this._getOption('disabled');
}
set disabled(value: boolean) {
this._setOption('disabled', value);
}
@Input()
get elementAttr(): Record<string, any> {
return this._getOption('elementAttr');
}
set elementAttr(value: Record<string, any>) {
this._setOption('elementAttr', value);
}
@Input()
get focusStateEnabled(): boolean {
return this._getOption('focusStateEnabled');
}
set focusStateEnabled(value: boolean) {
this._setOption('focusStateEnabled', value);
}
@Input()
get height(): number | string | undefined {
return this._getOption('height');
}
set height(value: number | string | undefined) {
this._setOption('height', value);
}
@Input()
get hint(): string | undefined {
return this._getOption('hint');
}
set hint(value: string | undefined) {
this._setOption('hint', value);
}
@Input()
get hoverStateEnabled(): boolean {
return this._getOption('hoverStateEnabled');
}
set hoverStateEnabled(value: boolean) {
this._setOption('hoverStateEnabled', value);
}
@Input()
get iconPosition(): TabsIconPosition {
return this._getOption('iconPosition');
}
set iconPosition(value: TabsIconPosition) {
this._setOption('iconPosition', value);
}
@Input()
get itemHoldTimeout(): number {
return this._getOption('itemHoldTimeout');
}
set itemHoldTimeout(value: number) {
this._setOption('itemHoldTimeout', value);
}
@Input()
get items(): Array<any | dxTabPanelItem | string> {
return this._getOption('items');
}
set items(value: Array<any | dxTabPanelItem | string>) {
this._setOption('items', value);
}
@Input()
get itemTemplate(): any {
return this._getOption('itemTemplate');
}
set itemTemplate(value: any) {
this._setOption('itemTemplate', value);
}
@Input()
get itemTitleTemplate(): any {
return this._getOption('itemTitleTemplate');
}
set itemTitleTemplate(value: any) {
this._setOption('itemTitleTemplate', value);
}
@Input()
get keyExpr(): ((item: any) => any) | string {
return this._getOption('keyExpr');
}
set keyExpr(value: ((item: any) => any) | string) {
this._setOption('keyExpr', value);
}
@Input()
get loop(): boolean {
return this._getOption('loop');
}
set loop(value: boolean) {
this._setOption('loop', value);
}
@Input()
get noDataText(): string {
return this._getOption('noDataText');
}
set noDataText(value: string) {
this._setOption('noDataText', value);
}
@Input()
get onContentReady(): ((e: ContentReadyEvent) => void) {
return this._getOption('onContentReady');
}
set onContentReady(value: ((e: ContentReadyEvent) => void)) {
this._setOption('onContentReady', value);
}
@Input()
get onDisposing(): ((e: DisposingEvent) => void) {
return this._getOption('onDisposing');
}
set onDisposing(value: ((e: DisposingEvent) => void)) {
this._setOption('onDisposing', value);
}
@Input()
get onInitialized(): ((e: InitializedEvent) => void) {
return this._getOption('onInitialized');
}
set onInitialized(value: ((e: InitializedEvent) => void)) {
this._setOption('onInitialized', value);
}
@Input()
get onItemClick(): ((e: ItemClickEvent) => void) {
return this._getOption('onItemClick');
}
set onItemClick(value: ((e: ItemClickEvent) => void)) {
this._setOption('onItemClick', value);
}
@Input()
get onItemContextMenu(): ((e: ItemContextMenuEvent) => void) {
return this._getOption('onItemContextMenu');
}
set onItemContextMenu(value: ((e: ItemContextMenuEvent) => void)) {
this._setOption('onItemContextMenu', value);
}
@Input()
get onItemHold(): ((e: ItemHoldEvent) => void) {
return this._getOption('onItemHold');
}
set onItemHold(value: ((e: ItemHoldEvent) => void)) {
this._setOption('onItemHold', value);
}
@Input()
get onItemRendered(): ((e: ItemRenderedEvent) => void) {
return this._getOption('onItemRendered');
}
set onItemRendered(value: ((e: ItemRenderedEvent) => void)) {
this._setOption('onItemRendered', value);
}
@Input()
get onOptionChanged(): ((e: OptionChangedEvent) => void) {
return this._getOption('onOptionChanged');
}
set onOptionChanged(value: ((e: OptionChangedEvent) => void)) {
this._setOption('onOptionChanged', value);
}
@Input()
get onSelectionChanged(): ((e: SelectionChangedEvent) => void) {
return this._getOption('onSelectionChanged');
}
set onSelectionChanged(value: ((e: SelectionChangedEvent) => void)) {
this._setOption('onSelectionChanged', value);
}
@Input()
get onSelectionChanging(): ((e: SelectionChangingEvent) => void) {
return this._getOption('onSelectionChanging');
}
set onSelectionChanging(value: ((e: SelectionChangingEvent) => void)) {
this._setOption('onSelectionChanging', value);
}
@Input()
get onTitleClick(): ((e: TitleClickEvent) => void) {
return this._getOption('onTitleClick');
}
set onTitleClick(value: ((e: TitleClickEvent) => void)) {
this._setOption('onTitleClick', value);
}
@Input()
get onTitleHold(): ((e: TitleHoldEvent) => void) {
return this._getOption('onTitleHold');
}
set onTitleHold(value: ((e: TitleHoldEvent) => void)) {
this._setOption('onTitleHold', value);
}
@Input()
get onTitleRendered(): ((e: TitleRenderedEvent) => void) {
return this._getOption('onTitleRendered');
}
set onTitleRendered(value: ((e: TitleRenderedEvent) => void)) {
this._setOption('onTitleRendered', value);
}
@Input()
get repaintChangesOnly(): boolean {
return this._getOption('repaintChangesOnly');
}
set repaintChangesOnly(value: boolean) {
this._setOption('repaintChangesOnly', value);
}
@Input()
get rtlEnabled(): boolean {
return this._getOption('rtlEnabled');
}
set rtlEnabled(value: boolean) {
this._setOption('rtlEnabled', value);
}
@Input()
get scrollByContent(): boolean {
return this._getOption('scrollByContent');
}
set scrollByContent(value: boolean) {
this._setOption('scrollByContent', value);
}
@Input()
get scrollingEnabled(): boolean {
return this._getOption('scrollingEnabled');
}
set scrollingEnabled(value: boolean) {
this._setOption('scrollingEnabled', value);
}
@Input()
get selectedIndex(): number {
return this._getOption('selectedIndex');
}
set selectedIndex(value: number) {
this._setOption('selectedIndex', value);
}
@Input()
get selectedItem(): any {
return this._getOption('selectedItem');
}
set selectedItem(value: any) {
this._setOption('selectedItem', value);
}
@Input()
get showNavButtons(): boolean {
return this._getOption('showNavButtons');
}
set showNavButtons(value: boolean) {
this._setOption('showNavButtons', value);
}
@Input()
get stylingMode(): TabsStyle {
return this._getOption('stylingMode');
}
set stylingMode(value: TabsStyle) {
this._setOption('stylingMode', value);
}
@Input()
get swipeEnabled(): boolean {
return this._getOption('swipeEnabled');
}
set swipeEnabled(value: boolean) {
this._setOption('swipeEnabled', value);
}
@Input()
get tabIndex(): number {
return this._getOption('tabIndex');
}
set tabIndex(value: number) {
this._setOption('tabIndex', value);
}
@Input()
get tabsPosition(): Position {
return this._getOption('tabsPosition');
}
set tabsPosition(value: Position) {
this._setOption('tabsPosition', value);
}
@Input()
get visible(): boolean {
return this._getOption('visible');
}
set visible(value: boolean) {
this._setOption('visible', value);
}
@Input()
get width(): number | string | undefined {
return this._getOption('width');
}
set width(value: number | string | undefined) {
this._setOption('width', value);
}
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() itemsChange: EventEmitter<Array<any | dxTabPanelItem | string>>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() selectedIndexChange: EventEmitter<number>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() selectedItemChange: EventEmitter<any>;
protected get _optionPath() {
return 'tabPanelOptions';
}
constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,
@Host() optionHost: NestedOptionHost) {
super();
this._createEventEmitters([
{ emit: 'itemsChange' },
{ emit: 'selectedIndexChange' },
{ emit: 'selectedItemChange' }
]);
parentOptionHost.setNestedOption(this);
optionHost.setHost(this, this._fullOptionPath.bind(this));
}
ngOnInit() {
this._addRecreatedComponent();
}
ngOnDestroy() {
this._addRemovedOption(this._getOptionPath());
}
}
@NgModule({
imports: [
DxoDataGridTabPanelOptionsComponent
],
exports: [
DxoDataGridTabPanelOptionsComponent
],
})
export class DxoDataGridTabPanelOptionsModule { }