forked from DevExpress/DevExtreme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuggestions.ts
More file actions
299 lines (249 loc) · 7.53 KB
/
suggestions.ts
File metadata and controls
299 lines (249 loc) · 7.53 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
/* tslint:disable:max-line-length */
import {
Component,
OnInit,
OnDestroy,
NgModule,
Host,
SkipSelf,
Input,
Output,
EventEmitter,
ContentChildren,
QueryList
} from '@angular/core';
import type { dxButtonGroupItem, ContentReadyEvent, DisposingEvent, InitializedEvent, ItemClickEvent, OptionChangedEvent, SelectionChangedEvent } from 'devextreme/ui/button_group';
import type { SingleMultipleOrNone, ButtonStyle } 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-chat-suggestions',
template: '',
styles: [''],
imports: [ DxIntegrationModule ],
providers: [NestedOptionHost]
})
export class DxoChatSuggestionsComponent 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 buttonTemplate(): any {
return this._getOption('buttonTemplate');
}
set buttonTemplate(value: any) {
this._setOption('buttonTemplate', 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 items(): Array<dxButtonGroupItem> {
return this._getOption('items');
}
set items(value: Array<dxButtonGroupItem>) {
this._setOption('items', 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 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 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 rtlEnabled(): boolean {
return this._getOption('rtlEnabled');
}
set rtlEnabled(value: boolean) {
this._setOption('rtlEnabled', value);
}
@Input()
get selectedItemKeys(): Array<any> {
return this._getOption('selectedItemKeys');
}
set selectedItemKeys(value: Array<any>) {
this._setOption('selectedItemKeys', value);
}
@Input()
get selectedItems(): Array<any> {
return this._getOption('selectedItems');
}
set selectedItems(value: Array<any>) {
this._setOption('selectedItems', value);
}
@Input()
get selectionMode(): SingleMultipleOrNone {
return this._getOption('selectionMode');
}
set selectionMode(value: SingleMultipleOrNone) {
this._setOption('selectionMode', value);
}
@Input()
get stylingMode(): ButtonStyle {
return this._getOption('stylingMode');
}
set stylingMode(value: ButtonStyle) {
this._setOption('stylingMode', value);
}
@Input()
get tabIndex(): number {
return this._getOption('tabIndex');
}
set tabIndex(value: number) {
this._setOption('tabIndex', 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() selectedItemKeysChange: EventEmitter<Array<any>>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() selectedItemsChange: EventEmitter<Array<any>>;
protected get _optionPath() {
return 'suggestions';
}
constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,
@Host() optionHost: NestedOptionHost) {
super();
this._createEventEmitters([
{ emit: 'selectedItemKeysChange' },
{ emit: 'selectedItemsChange' }
]);
parentOptionHost.setNestedOption(this);
optionHost.setHost(this, this._fullOptionPath.bind(this));
}
ngOnInit() {
this._addRecreatedComponent();
}
ngOnDestroy() {
this._addRemovedOption(this._getOptionPath());
}
}
@NgModule({
imports: [
DxoChatSuggestionsComponent
],
exports: [
DxoChatSuggestionsComponent
],
})
export class DxoChatSuggestionsModule { }