@syncfusion/ej2-angular-dropdowns 24.2.5-ngcc → 24.2.5

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.
Files changed (63) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/auto-complete/autocomplete-all.module.mjs +23 -0
  3. package/esm2020/src/auto-complete/autocomplete.component.mjs +129 -0
  4. package/esm2020/src/auto-complete/autocomplete.module.mjs +25 -0
  5. package/esm2020/src/combo-box/combobox-all.module.mjs +23 -0
  6. package/esm2020/src/combo-box/combobox.component.mjs +129 -0
  7. package/esm2020/src/combo-box/combobox.module.mjs +25 -0
  8. package/esm2020/src/drop-down-list/dropdownlist-all.module.mjs +29 -0
  9. package/esm2020/src/drop-down-list/dropdownlist.component.mjs +135 -0
  10. package/esm2020/src/drop-down-list/dropdownlist.module.mjs +25 -0
  11. package/esm2020/src/drop-down-tree/dropdowntree-all.module.mjs +23 -0
  12. package/esm2020/src/drop-down-tree/dropdowntree.component.mjs +116 -0
  13. package/esm2020/src/drop-down-tree/dropdowntree.module.mjs +25 -0
  14. package/esm2020/src/index.mjs +23 -0
  15. package/esm2020/src/list-box/listbox-all.module.mjs +23 -0
  16. package/esm2020/src/list-box/listbox.component.mjs +104 -0
  17. package/esm2020/src/list-box/listbox.module.mjs +25 -0
  18. package/esm2020/src/mention/mention-all.module.mjs +23 -0
  19. package/esm2020/src/mention/mention.component.mjs +84 -0
  20. package/esm2020/src/mention/mention.module.mjs +25 -0
  21. package/esm2020/src/multi-select/multiselect-all.module.mjs +29 -0
  22. package/esm2020/src/multi-select/multiselect.component.mjs +135 -0
  23. package/esm2020/src/multi-select/multiselect.module.mjs +25 -0
  24. package/esm2020/syncfusion-ej2-angular-dropdowns.mjs +5 -0
  25. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +1084 -0
  26. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  27. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +1084 -0
  28. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  29. package/package.json +26 -12
  30. package/src/auto-complete/autocomplete-all.module.d.ts +6 -0
  31. package/src/auto-complete/autocomplete.component.d.ts +7 -4
  32. package/src/auto-complete/autocomplete.module.d.ts +6 -0
  33. package/src/combo-box/combobox-all.module.d.ts +6 -0
  34. package/src/combo-box/combobox.component.d.ts +7 -4
  35. package/src/combo-box/combobox.module.d.ts +6 -0
  36. package/src/drop-down-list/dropdownlist-all.module.d.ts +6 -0
  37. package/src/drop-down-list/dropdownlist.component.d.ts +5 -2
  38. package/src/drop-down-list/dropdownlist.module.d.ts +6 -0
  39. package/src/drop-down-tree/dropdowntree-all.module.d.ts +6 -0
  40. package/src/drop-down-tree/dropdowntree.component.d.ts +3 -0
  41. package/src/drop-down-tree/dropdowntree.module.d.ts +6 -0
  42. package/src/list-box/listbox-all.module.d.ts +6 -0
  43. package/src/list-box/listbox.component.d.ts +4 -1
  44. package/src/list-box/listbox.module.d.ts +6 -0
  45. package/src/mention/mention-all.module.d.ts +6 -0
  46. package/src/mention/mention.component.d.ts +3 -0
  47. package/src/mention/mention.module.d.ts +6 -0
  48. package/src/multi-select/multiselect-all.module.d.ts +6 -0
  49. package/src/multi-select/multiselect.component.d.ts +3 -0
  50. package/src/multi-select/multiselect.module.d.ts +6 -0
  51. package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
  52. package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1475
  53. package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
  54. package/@syncfusion/ej2-angular-dropdowns.js +0 -1390
  55. package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
  56. package/CHANGELOG.md +0 -2483
  57. package/dist/ej2-angular-dropdowns.umd.js +0 -1545
  58. package/dist/ej2-angular-dropdowns.umd.js.map +0 -1
  59. package/dist/ej2-angular-dropdowns.umd.min.js +0 -11
  60. package/dist/ej2-angular-dropdowns.umd.min.js.map +0 -1
  61. package/ej2-angular-dropdowns.d.ts +0 -11
  62. package/ej2-angular-dropdowns.metadata.json +0 -1
  63. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,1084 @@
1
+ import { __decorate } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { forwardRef, Component, ChangeDetectionStrategy, ContentChild, NgModule } from '@angular/core';
4
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
5
+ import { setValue, FormBase, ComponentBase, Template, ComponentMixins } from '@syncfusion/ej2-angular-base';
6
+ import { DropDownList, VirtualScroll, ComboBox, AutoComplete, MultiSelect, CheckBoxSelection, ListBox, DropDownTree, Mention } from '@syncfusion/ej2-dropdowns';
7
+ export * from '@syncfusion/ej2-dropdowns';
8
+ import { CommonModule } from '@angular/common';
9
+
10
+ var DropDownListComponent_1;
11
+ const inputs$6 = ['actionFailureTemplate', 'allowFiltering', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'sortOrder', 'text', 'value', 'valueTemplate', 'width', 'zIndex'];
12
+ const outputs$6 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
13
+ const twoWays$6 = ['value'];
14
+ /**
15
+ *The DropDownList component contains a list of predefined values, from which the user can choose a single value.
16
+ *```html
17
+ *<ejs-dropdownlist></ejs-dropdownlist>
18
+ *```
19
+ */
20
+ let DropDownListComponent = DropDownListComponent_1 = class DropDownListComponent extends DropDownList {
21
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
22
+ super();
23
+ this.ngEle = ngEle;
24
+ this.srenderer = srenderer;
25
+ this.viewContainerRef = viewContainerRef;
26
+ this.injector = injector;
27
+ this.cdr = cdr;
28
+ this.skipFromEvent = true;
29
+ this.element = this.ngEle.nativeElement;
30
+ this.injectedModules = this.injectedModules || [];
31
+ try {
32
+ let mod = this.injector.get('DropDownsVirtualScroll');
33
+ if (this.injectedModules.indexOf(mod) === -1) {
34
+ this.injectedModules.push(mod);
35
+ }
36
+ }
37
+ catch (_a) { }
38
+ this.registerEvents(outputs$6);
39
+ this.addTwoWay.call(this, twoWays$6);
40
+ setValue('currentInstance', this, this.viewContainerRef);
41
+ this.formContext = new FormBase();
42
+ this.formCompContext = new ComponentBase();
43
+ }
44
+ registerOnChange(registerFunction) {
45
+ }
46
+ registerOnTouched(registerFunction) {
47
+ }
48
+ writeValue(value) {
49
+ }
50
+ setDisabledState(disabled) {
51
+ }
52
+ ngOnInit() {
53
+ this.formCompContext.ngOnInit(this);
54
+ }
55
+ ngAfterViewInit() {
56
+ this.formContext.ngAfterViewInit(this);
57
+ }
58
+ ngOnDestroy() {
59
+ this.formCompContext.ngOnDestroy(this);
60
+ }
61
+ ngAfterContentChecked() {
62
+ this.formCompContext.ngAfterContentChecked(this);
63
+ }
64
+ };
65
+ DropDownListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
66
+ DropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DropDownListComponent, selector: "ejs-dropdownlist", inputs: { actionFailureTemplate: "actionFailureTemplate", allowFiltering: "allowFiltering", cssClass: "cssClass", dataSource: "dataSource", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableVirtualization: "enableVirtualization", enabled: "enabled", fields: "fields", filterBarPlaceholder: "filterBarPlaceholder", filterType: "filterType", floatLabelType: "floatLabelType", footerTemplate: "footerTemplate", groupTemplate: "groupTemplate", headerTemplate: "headerTemplate", htmlAttributes: "htmlAttributes", ignoreAccent: "ignoreAccent", ignoreCase: "ignoreCase", index: "index", itemTemplate: "itemTemplate", locale: "locale", noRecordsTemplate: "noRecordsTemplate", placeholder: "placeholder", popupHeight: "popupHeight", popupWidth: "popupWidth", query: "query", readonly: "readonly", showClearButton: "showClearButton", sortOrder: "sortOrder", text: "text", value: "value", valueTemplate: "valueTemplate", width: "width", zIndex: "zIndex" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeOpen: "beforeOpen", blur: "blur", change: "change", close: "close", created: "created", dataBound: "dataBound", destroyed: "destroyed", filtering: "filtering", focus: "focus", open: "open", select: "select", valueChange: "valueChange" }, providers: [
67
+ {
68
+ provide: NG_VALUE_ACCESSOR,
69
+ useExisting: forwardRef(() => DropDownListComponent_1),
70
+ multi: true
71
+ }
72
+ ], queries: [{ propertyName: "footerTemplate", first: true, predicate: ["footerTemplate"], descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }, { propertyName: "valueTemplate", first: true, predicate: ["valueTemplate"], descendants: true }, { propertyName: "groupTemplate", first: true, predicate: ["groupTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }, { propertyName: "actionFailureTemplate", first: true, predicate: ["actionFailureTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
73
+ __decorate([
74
+ Template()
75
+ ], DropDownListComponent.prototype, "footerTemplate", void 0);
76
+ __decorate([
77
+ Template()
78
+ ], DropDownListComponent.prototype, "headerTemplate", void 0);
79
+ __decorate([
80
+ Template()
81
+ ], DropDownListComponent.prototype, "valueTemplate", void 0);
82
+ __decorate([
83
+ Template()
84
+ ], DropDownListComponent.prototype, "groupTemplate", void 0);
85
+ __decorate([
86
+ Template()
87
+ ], DropDownListComponent.prototype, "itemTemplate", void 0);
88
+ __decorate([
89
+ Template('No records found')
90
+ ], DropDownListComponent.prototype, "noRecordsTemplate", void 0);
91
+ __decorate([
92
+ Template('Request failed')
93
+ ], DropDownListComponent.prototype, "actionFailureTemplate", void 0);
94
+ DropDownListComponent = DropDownListComponent_1 = __decorate([
95
+ ComponentMixins([ComponentBase, FormBase])
96
+ ], DropDownListComponent);
97
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListComponent, decorators: [{
98
+ type: Component,
99
+ args: [{
100
+ selector: 'ejs-dropdownlist',
101
+ inputs: inputs$6,
102
+ outputs: outputs$6,
103
+ template: '',
104
+ changeDetection: ChangeDetectionStrategy.OnPush,
105
+ providers: [
106
+ {
107
+ provide: NG_VALUE_ACCESSOR,
108
+ useExisting: forwardRef(() => DropDownListComponent),
109
+ multi: true
110
+ }
111
+ ],
112
+ queries: {}
113
+ }]
114
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { footerTemplate: [{
115
+ type: ContentChild,
116
+ args: ['footerTemplate']
117
+ }], headerTemplate: [{
118
+ type: ContentChild,
119
+ args: ['headerTemplate']
120
+ }], valueTemplate: [{
121
+ type: ContentChild,
122
+ args: ['valueTemplate']
123
+ }], groupTemplate: [{
124
+ type: ContentChild,
125
+ args: ['groupTemplate']
126
+ }], itemTemplate: [{
127
+ type: ContentChild,
128
+ args: ['itemTemplate']
129
+ }], noRecordsTemplate: [{
130
+ type: ContentChild,
131
+ args: ['noRecordsTemplate']
132
+ }], actionFailureTemplate: [{
133
+ type: ContentChild,
134
+ args: ['actionFailureTemplate']
135
+ }] } });
136
+
137
+ /**
138
+ * NgModule definition for the DropDownList component.
139
+ */
140
+ class DropDownListModule {
141
+ }
142
+ DropDownListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
143
+ DropDownListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListModule, declarations: [DropDownListComponent], imports: [CommonModule], exports: [DropDownListComponent] });
144
+ DropDownListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListModule, imports: [[CommonModule]] });
145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListModule, decorators: [{
146
+ type: NgModule,
147
+ args: [{
148
+ imports: [CommonModule],
149
+ declarations: [
150
+ DropDownListComponent
151
+ ],
152
+ exports: [
153
+ DropDownListComponent
154
+ ]
155
+ }]
156
+ }] });
157
+
158
+ const VirtualScrollService = { provide: 'DropDownsVirtualScroll', useValue: VirtualScroll };
159
+ /**
160
+ * NgModule definition for the DropDownList component with providers.
161
+ */
162
+ class DropDownListAllModule {
163
+ }
164
+ DropDownListAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
165
+ DropDownListAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListAllModule, imports: [CommonModule, DropDownListModule], exports: [DropDownListModule] });
166
+ DropDownListAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListAllModule, providers: [
167
+ VirtualScrollService
168
+ ], imports: [[CommonModule, DropDownListModule], DropDownListModule] });
169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownListAllModule, decorators: [{
170
+ type: NgModule,
171
+ args: [{
172
+ imports: [CommonModule, DropDownListModule],
173
+ exports: [
174
+ DropDownListModule
175
+ ],
176
+ providers: [
177
+ VirtualScrollService
178
+ ]
179
+ }]
180
+ }] });
181
+
182
+ var ComboBoxComponent_1;
183
+ const inputs$5 = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'sortOrder', 'text', 'value', 'valueTemplate', 'width', 'zIndex'];
184
+ const outputs$5 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
185
+ const twoWays$5 = ['value'];
186
+ /**
187
+ *The ComboBox component allows the user to type a value or choose an option from the list of predefined options.
188
+ *```html
189
+ *<ejs-combobox></ejs-combobox>
190
+ *```
191
+ */
192
+ let ComboBoxComponent = ComboBoxComponent_1 = class ComboBoxComponent extends ComboBox {
193
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
194
+ super();
195
+ this.ngEle = ngEle;
196
+ this.srenderer = srenderer;
197
+ this.viewContainerRef = viewContainerRef;
198
+ this.injector = injector;
199
+ this.cdr = cdr;
200
+ this.skipFromEvent = true;
201
+ this.element = this.ngEle.nativeElement;
202
+ this.injectedModules = this.injectedModules || [];
203
+ try {
204
+ let mod = this.injector.get('DropDownsVirtualScroll');
205
+ if (this.injectedModules.indexOf(mod) === -1) {
206
+ this.injectedModules.push(mod);
207
+ }
208
+ }
209
+ catch (_a) { }
210
+ this.registerEvents(outputs$5);
211
+ this.addTwoWay.call(this, twoWays$5);
212
+ setValue('currentInstance', this, this.viewContainerRef);
213
+ this.formContext = new FormBase();
214
+ this.formCompContext = new ComponentBase();
215
+ }
216
+ registerOnChange(registerFunction) {
217
+ }
218
+ registerOnTouched(registerFunction) {
219
+ }
220
+ writeValue(value) {
221
+ }
222
+ setDisabledState(disabled) {
223
+ }
224
+ ngOnInit() {
225
+ this.formCompContext.ngOnInit(this);
226
+ }
227
+ ngAfterViewInit() {
228
+ this.formContext.ngAfterViewInit(this);
229
+ }
230
+ ngOnDestroy() {
231
+ this.formCompContext.ngOnDestroy(this);
232
+ }
233
+ ngAfterContentChecked() {
234
+ this.formCompContext.ngAfterContentChecked(this);
235
+ }
236
+ };
237
+ ComboBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
238
+ ComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ComboBoxComponent, selector: "ejs-combobox", inputs: { actionFailureTemplate: "actionFailureTemplate", allowCustom: "allowCustom", allowFiltering: "allowFiltering", autofill: "autofill", cssClass: "cssClass", dataSource: "dataSource", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableVirtualization: "enableVirtualization", enabled: "enabled", fields: "fields", filterBarPlaceholder: "filterBarPlaceholder", filterType: "filterType", floatLabelType: "floatLabelType", footerTemplate: "footerTemplate", groupTemplate: "groupTemplate", headerTemplate: "headerTemplate", htmlAttributes: "htmlAttributes", ignoreAccent: "ignoreAccent", ignoreCase: "ignoreCase", index: "index", itemTemplate: "itemTemplate", locale: "locale", noRecordsTemplate: "noRecordsTemplate", placeholder: "placeholder", popupHeight: "popupHeight", popupWidth: "popupWidth", query: "query", readonly: "readonly", showClearButton: "showClearButton", sortOrder: "sortOrder", text: "text", value: "value", valueTemplate: "valueTemplate", width: "width", zIndex: "zIndex" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeOpen: "beforeOpen", blur: "blur", change: "change", close: "close", created: "created", customValueSpecifier: "customValueSpecifier", dataBound: "dataBound", destroyed: "destroyed", filtering: "filtering", focus: "focus", open: "open", select: "select", valueChange: "valueChange" }, providers: [
239
+ {
240
+ provide: NG_VALUE_ACCESSOR,
241
+ useExisting: forwardRef(() => ComboBoxComponent_1),
242
+ multi: true
243
+ }
244
+ ], queries: [{ propertyName: "footerTemplate", first: true, predicate: ["footerTemplate"], descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }, { propertyName: "groupTemplate", first: true, predicate: ["groupTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }, { propertyName: "actionFailureTemplate", first: true, predicate: ["actionFailureTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
245
+ __decorate([
246
+ Template()
247
+ ], ComboBoxComponent.prototype, "footerTemplate", void 0);
248
+ __decorate([
249
+ Template()
250
+ ], ComboBoxComponent.prototype, "headerTemplate", void 0);
251
+ __decorate([
252
+ Template()
253
+ ], ComboBoxComponent.prototype, "groupTemplate", void 0);
254
+ __decorate([
255
+ Template()
256
+ ], ComboBoxComponent.prototype, "itemTemplate", void 0);
257
+ __decorate([
258
+ Template('No records found')
259
+ ], ComboBoxComponent.prototype, "noRecordsTemplate", void 0);
260
+ __decorate([
261
+ Template('Request failed')
262
+ ], ComboBoxComponent.prototype, "actionFailureTemplate", void 0);
263
+ ComboBoxComponent = ComboBoxComponent_1 = __decorate([
264
+ ComponentMixins([ComponentBase, FormBase])
265
+ ], ComboBoxComponent);
266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxComponent, decorators: [{
267
+ type: Component,
268
+ args: [{
269
+ selector: 'ejs-combobox',
270
+ inputs: inputs$5,
271
+ outputs: outputs$5,
272
+ template: '',
273
+ changeDetection: ChangeDetectionStrategy.OnPush,
274
+ providers: [
275
+ {
276
+ provide: NG_VALUE_ACCESSOR,
277
+ useExisting: forwardRef(() => ComboBoxComponent),
278
+ multi: true
279
+ }
280
+ ],
281
+ queries: {}
282
+ }]
283
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { footerTemplate: [{
284
+ type: ContentChild,
285
+ args: ['footerTemplate']
286
+ }], headerTemplate: [{
287
+ type: ContentChild,
288
+ args: ['headerTemplate']
289
+ }], groupTemplate: [{
290
+ type: ContentChild,
291
+ args: ['groupTemplate']
292
+ }], itemTemplate: [{
293
+ type: ContentChild,
294
+ args: ['itemTemplate']
295
+ }], noRecordsTemplate: [{
296
+ type: ContentChild,
297
+ args: ['noRecordsTemplate']
298
+ }], actionFailureTemplate: [{
299
+ type: ContentChild,
300
+ args: ['actionFailureTemplate']
301
+ }] } });
302
+
303
+ /**
304
+ * NgModule definition for the ComboBox component.
305
+ */
306
+ class ComboBoxModule {
307
+ }
308
+ ComboBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
309
+ ComboBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxModule, declarations: [ComboBoxComponent], imports: [CommonModule], exports: [ComboBoxComponent] });
310
+ ComboBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxModule, imports: [[CommonModule]] });
311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxModule, decorators: [{
312
+ type: NgModule,
313
+ args: [{
314
+ imports: [CommonModule],
315
+ declarations: [
316
+ ComboBoxComponent
317
+ ],
318
+ exports: [
319
+ ComboBoxComponent
320
+ ]
321
+ }]
322
+ }] });
323
+
324
+ /**
325
+ * NgModule definition for the ComboBox component with providers.
326
+ */
327
+ class ComboBoxAllModule {
328
+ }
329
+ ComboBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
330
+ ComboBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxAllModule, imports: [CommonModule, ComboBoxModule], exports: [ComboBoxModule] });
331
+ ComboBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxAllModule, providers: [], imports: [[CommonModule, ComboBoxModule], ComboBoxModule] });
332
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ComboBoxAllModule, decorators: [{
333
+ type: NgModule,
334
+ args: [{
335
+ imports: [CommonModule, ComboBoxModule],
336
+ exports: [
337
+ ComboBoxModule
338
+ ],
339
+ providers: []
340
+ }]
341
+ }] });
342
+
343
+ var AutoCompleteComponent_1;
344
+ const inputs$4 = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'highlight', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'minLength', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'showPopupButton', 'sortOrder', 'suggestionCount', 'text', 'value', 'valueTemplate', 'width', 'zIndex'];
345
+ const outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
346
+ const twoWays$4 = ['value'];
347
+ /**
348
+ *The AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one.
349
+ *```html
350
+ *<ejs-autocomplete></ejs-autocomplete>
351
+ *```
352
+ */
353
+ let AutoCompleteComponent = AutoCompleteComponent_1 = class AutoCompleteComponent extends AutoComplete {
354
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
355
+ super();
356
+ this.ngEle = ngEle;
357
+ this.srenderer = srenderer;
358
+ this.viewContainerRef = viewContainerRef;
359
+ this.injector = injector;
360
+ this.cdr = cdr;
361
+ this.skipFromEvent = true;
362
+ this.element = this.ngEle.nativeElement;
363
+ this.injectedModules = this.injectedModules || [];
364
+ try {
365
+ let mod = this.injector.get('DropDownsVirtualScroll');
366
+ if (this.injectedModules.indexOf(mod) === -1) {
367
+ this.injectedModules.push(mod);
368
+ }
369
+ }
370
+ catch (_a) { }
371
+ this.registerEvents(outputs$4);
372
+ this.addTwoWay.call(this, twoWays$4);
373
+ setValue('currentInstance', this, this.viewContainerRef);
374
+ this.formContext = new FormBase();
375
+ this.formCompContext = new ComponentBase();
376
+ }
377
+ registerOnChange(registerFunction) {
378
+ }
379
+ registerOnTouched(registerFunction) {
380
+ }
381
+ writeValue(value) {
382
+ }
383
+ setDisabledState(disabled) {
384
+ }
385
+ ngOnInit() {
386
+ this.formCompContext.ngOnInit(this);
387
+ }
388
+ ngAfterViewInit() {
389
+ this.formContext.ngAfterViewInit(this);
390
+ }
391
+ ngOnDestroy() {
392
+ this.formCompContext.ngOnDestroy(this);
393
+ }
394
+ ngAfterContentChecked() {
395
+ this.formCompContext.ngAfterContentChecked(this);
396
+ }
397
+ };
398
+ AutoCompleteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
399
+ AutoCompleteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: AutoCompleteComponent, selector: "ejs-autocomplete", inputs: { actionFailureTemplate: "actionFailureTemplate", allowCustom: "allowCustom", allowFiltering: "allowFiltering", autofill: "autofill", cssClass: "cssClass", dataSource: "dataSource", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableVirtualization: "enableVirtualization", enabled: "enabled", fields: "fields", filterBarPlaceholder: "filterBarPlaceholder", filterType: "filterType", floatLabelType: "floatLabelType", footerTemplate: "footerTemplate", groupTemplate: "groupTemplate", headerTemplate: "headerTemplate", highlight: "highlight", htmlAttributes: "htmlAttributes", ignoreAccent: "ignoreAccent", ignoreCase: "ignoreCase", index: "index", itemTemplate: "itemTemplate", locale: "locale", minLength: "minLength", noRecordsTemplate: "noRecordsTemplate", placeholder: "placeholder", popupHeight: "popupHeight", popupWidth: "popupWidth", query: "query", readonly: "readonly", showClearButton: "showClearButton", showPopupButton: "showPopupButton", sortOrder: "sortOrder", suggestionCount: "suggestionCount", text: "text", value: "value", valueTemplate: "valueTemplate", width: "width", zIndex: "zIndex" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeOpen: "beforeOpen", blur: "blur", change: "change", close: "close", created: "created", customValueSpecifier: "customValueSpecifier", dataBound: "dataBound", destroyed: "destroyed", filtering: "filtering", focus: "focus", open: "open", select: "select", valueChange: "valueChange" }, providers: [
400
+ {
401
+ provide: NG_VALUE_ACCESSOR,
402
+ useExisting: forwardRef(() => AutoCompleteComponent_1),
403
+ multi: true
404
+ }
405
+ ], queries: [{ propertyName: "footerTemplate", first: true, predicate: ["footerTemplate"], descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }, { propertyName: "groupTemplate", first: true, predicate: ["groupTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }, { propertyName: "actionFailureTemplate", first: true, predicate: ["actionFailureTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
406
+ __decorate([
407
+ Template()
408
+ ], AutoCompleteComponent.prototype, "footerTemplate", void 0);
409
+ __decorate([
410
+ Template()
411
+ ], AutoCompleteComponent.prototype, "headerTemplate", void 0);
412
+ __decorate([
413
+ Template()
414
+ ], AutoCompleteComponent.prototype, "groupTemplate", void 0);
415
+ __decorate([
416
+ Template()
417
+ ], AutoCompleteComponent.prototype, "itemTemplate", void 0);
418
+ __decorate([
419
+ Template('No records found')
420
+ ], AutoCompleteComponent.prototype, "noRecordsTemplate", void 0);
421
+ __decorate([
422
+ Template('Request failed')
423
+ ], AutoCompleteComponent.prototype, "actionFailureTemplate", void 0);
424
+ AutoCompleteComponent = AutoCompleteComponent_1 = __decorate([
425
+ ComponentMixins([ComponentBase, FormBase])
426
+ ], AutoCompleteComponent);
427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteComponent, decorators: [{
428
+ type: Component,
429
+ args: [{
430
+ selector: 'ejs-autocomplete',
431
+ inputs: inputs$4,
432
+ outputs: outputs$4,
433
+ template: '',
434
+ changeDetection: ChangeDetectionStrategy.OnPush,
435
+ providers: [
436
+ {
437
+ provide: NG_VALUE_ACCESSOR,
438
+ useExisting: forwardRef(() => AutoCompleteComponent),
439
+ multi: true
440
+ }
441
+ ],
442
+ queries: {}
443
+ }]
444
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { footerTemplate: [{
445
+ type: ContentChild,
446
+ args: ['footerTemplate']
447
+ }], headerTemplate: [{
448
+ type: ContentChild,
449
+ args: ['headerTemplate']
450
+ }], groupTemplate: [{
451
+ type: ContentChild,
452
+ args: ['groupTemplate']
453
+ }], itemTemplate: [{
454
+ type: ContentChild,
455
+ args: ['itemTemplate']
456
+ }], noRecordsTemplate: [{
457
+ type: ContentChild,
458
+ args: ['noRecordsTemplate']
459
+ }], actionFailureTemplate: [{
460
+ type: ContentChild,
461
+ args: ['actionFailureTemplate']
462
+ }] } });
463
+
464
+ /**
465
+ * NgModule definition for the AutoComplete component.
466
+ */
467
+ class AutoCompleteModule {
468
+ }
469
+ AutoCompleteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
470
+ AutoCompleteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteModule, declarations: [AutoCompleteComponent], imports: [CommonModule], exports: [AutoCompleteComponent] });
471
+ AutoCompleteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteModule, imports: [[CommonModule]] });
472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteModule, decorators: [{
473
+ type: NgModule,
474
+ args: [{
475
+ imports: [CommonModule],
476
+ declarations: [
477
+ AutoCompleteComponent
478
+ ],
479
+ exports: [
480
+ AutoCompleteComponent
481
+ ]
482
+ }]
483
+ }] });
484
+
485
+ /**
486
+ * NgModule definition for the AutoComplete component with providers.
487
+ */
488
+ class AutoCompleteAllModule {
489
+ }
490
+ AutoCompleteAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
491
+ AutoCompleteAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteAllModule, imports: [CommonModule, AutoCompleteModule], exports: [AutoCompleteModule] });
492
+ AutoCompleteAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteAllModule, providers: [], imports: [[CommonModule, AutoCompleteModule], AutoCompleteModule] });
493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AutoCompleteAllModule, decorators: [{
494
+ type: NgModule,
495
+ args: [{
496
+ imports: [CommonModule, AutoCompleteModule],
497
+ exports: [
498
+ AutoCompleteModule
499
+ ],
500
+ providers: []
501
+ }]
502
+ }] });
503
+
504
+ var MultiSelectComponent_1;
505
+ const inputs$3 = ['actionFailureTemplate', 'addTagOnBlur', 'allowCustomValue', 'allowFiltering', 'changeOnBlur', 'closePopupOnSelect', 'cssClass', 'dataSource', 'delimiterChar', 'enableGroupCheckBox', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableSelectionOrder', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'hideSelectedItem', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'itemTemplate', 'locale', 'maximumSelectionLength', 'mode', 'noRecordsTemplate', 'openOnClick', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'selectAllText', 'showClearButton', 'showDropDownIcon', 'showSelectAll', 'sortOrder', 'text', 'unSelectAllText', 'value', 'valueTemplate', 'width', 'zIndex'];
506
+ const outputs$3 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'beforeSelectAll', 'blur', 'change', 'chipSelection', 'close', 'created', 'customValueSelection', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'removed', 'removing', 'select', 'selectedAll', 'tagging', 'valueChange'];
507
+ const twoWays$3 = ['value'];
508
+ /**
509
+ * The MultiSelect allows the user to pick a values from the predefined list of values.
510
+ *```html
511
+ *<ejs-multiselect></ejs-multiselect>
512
+ *```
513
+ */
514
+ let MultiSelectComponent = MultiSelectComponent_1 = class MultiSelectComponent extends MultiSelect {
515
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
516
+ super();
517
+ this.ngEle = ngEle;
518
+ this.srenderer = srenderer;
519
+ this.viewContainerRef = viewContainerRef;
520
+ this.injector = injector;
521
+ this.cdr = cdr;
522
+ this.skipFromEvent = true;
523
+ this.element = this.ngEle.nativeElement;
524
+ this.injectedModules = this.injectedModules || [];
525
+ try {
526
+ let mod = this.injector.get('DropDownsCheckBoxSelection');
527
+ if (this.injectedModules.indexOf(mod) === -1) {
528
+ this.injectedModules.push(mod);
529
+ }
530
+ }
531
+ catch (_a) { }
532
+ this.registerEvents(outputs$3);
533
+ this.addTwoWay.call(this, twoWays$3);
534
+ setValue('currentInstance', this, this.viewContainerRef);
535
+ this.formContext = new FormBase();
536
+ this.formCompContext = new ComponentBase();
537
+ }
538
+ registerOnChange(registerFunction) {
539
+ }
540
+ registerOnTouched(registerFunction) {
541
+ }
542
+ writeValue(value) {
543
+ }
544
+ setDisabledState(disabled) {
545
+ }
546
+ ngOnInit() {
547
+ this.formCompContext.ngOnInit(this);
548
+ }
549
+ ngAfterViewInit() {
550
+ this.formContext.ngAfterViewInit(this);
551
+ }
552
+ ngOnDestroy() {
553
+ this.formCompContext.ngOnDestroy(this);
554
+ }
555
+ ngAfterContentChecked() {
556
+ this.formCompContext.ngAfterContentChecked(this);
557
+ }
558
+ };
559
+ MultiSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
560
+ MultiSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: MultiSelectComponent, selector: "ejs-multiselect", inputs: { actionFailureTemplate: "actionFailureTemplate", addTagOnBlur: "addTagOnBlur", allowCustomValue: "allowCustomValue", allowFiltering: "allowFiltering", changeOnBlur: "changeOnBlur", closePopupOnSelect: "closePopupOnSelect", cssClass: "cssClass", dataSource: "dataSource", delimiterChar: "delimiterChar", enableGroupCheckBox: "enableGroupCheckBox", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSelectionOrder: "enableSelectionOrder", enabled: "enabled", fields: "fields", filterBarPlaceholder: "filterBarPlaceholder", filterType: "filterType", floatLabelType: "floatLabelType", footerTemplate: "footerTemplate", groupTemplate: "groupTemplate", headerTemplate: "headerTemplate", hideSelectedItem: "hideSelectedItem", htmlAttributes: "htmlAttributes", ignoreAccent: "ignoreAccent", ignoreCase: "ignoreCase", itemTemplate: "itemTemplate", locale: "locale", maximumSelectionLength: "maximumSelectionLength", mode: "mode", noRecordsTemplate: "noRecordsTemplate", openOnClick: "openOnClick", placeholder: "placeholder", popupHeight: "popupHeight", popupWidth: "popupWidth", query: "query", readonly: "readonly", selectAllText: "selectAllText", showClearButton: "showClearButton", showDropDownIcon: "showDropDownIcon", showSelectAll: "showSelectAll", sortOrder: "sortOrder", text: "text", unSelectAllText: "unSelectAllText", value: "value", valueTemplate: "valueTemplate", width: "width", zIndex: "zIndex" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeOpen: "beforeOpen", beforeSelectAll: "beforeSelectAll", blur: "blur", change: "change", chipSelection: "chipSelection", close: "close", created: "created", customValueSelection: "customValueSelection", dataBound: "dataBound", destroyed: "destroyed", filtering: "filtering", focus: "focus", open: "open", removed: "removed", removing: "removing", select: "select", selectedAll: "selectedAll", tagging: "tagging", valueChange: "valueChange" }, providers: [
561
+ {
562
+ provide: NG_VALUE_ACCESSOR,
563
+ useExisting: forwardRef(() => MultiSelectComponent_1),
564
+ multi: true
565
+ }
566
+ ], queries: [{ propertyName: "footerTemplate", first: true, predicate: ["footerTemplate"], descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }, { propertyName: "valueTemplate", first: true, predicate: ["valueTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "groupTemplate", first: true, predicate: ["groupTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }, { propertyName: "actionFailureTemplate", first: true, predicate: ["actionFailureTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
567
+ __decorate([
568
+ Template()
569
+ ], MultiSelectComponent.prototype, "footerTemplate", void 0);
570
+ __decorate([
571
+ Template()
572
+ ], MultiSelectComponent.prototype, "headerTemplate", void 0);
573
+ __decorate([
574
+ Template()
575
+ ], MultiSelectComponent.prototype, "valueTemplate", void 0);
576
+ __decorate([
577
+ Template()
578
+ ], MultiSelectComponent.prototype, "itemTemplate", void 0);
579
+ __decorate([
580
+ Template()
581
+ ], MultiSelectComponent.prototype, "groupTemplate", void 0);
582
+ __decorate([
583
+ Template('No records found')
584
+ ], MultiSelectComponent.prototype, "noRecordsTemplate", void 0);
585
+ __decorate([
586
+ Template('Request failed')
587
+ ], MultiSelectComponent.prototype, "actionFailureTemplate", void 0);
588
+ MultiSelectComponent = MultiSelectComponent_1 = __decorate([
589
+ ComponentMixins([ComponentBase, FormBase])
590
+ ], MultiSelectComponent);
591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectComponent, decorators: [{
592
+ type: Component,
593
+ args: [{
594
+ selector: 'ejs-multiselect',
595
+ inputs: inputs$3,
596
+ outputs: outputs$3,
597
+ template: '',
598
+ changeDetection: ChangeDetectionStrategy.OnPush,
599
+ providers: [
600
+ {
601
+ provide: NG_VALUE_ACCESSOR,
602
+ useExisting: forwardRef(() => MultiSelectComponent),
603
+ multi: true
604
+ }
605
+ ],
606
+ queries: {}
607
+ }]
608
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { footerTemplate: [{
609
+ type: ContentChild,
610
+ args: ['footerTemplate']
611
+ }], headerTemplate: [{
612
+ type: ContentChild,
613
+ args: ['headerTemplate']
614
+ }], valueTemplate: [{
615
+ type: ContentChild,
616
+ args: ['valueTemplate']
617
+ }], itemTemplate: [{
618
+ type: ContentChild,
619
+ args: ['itemTemplate']
620
+ }], groupTemplate: [{
621
+ type: ContentChild,
622
+ args: ['groupTemplate']
623
+ }], noRecordsTemplate: [{
624
+ type: ContentChild,
625
+ args: ['noRecordsTemplate']
626
+ }], actionFailureTemplate: [{
627
+ type: ContentChild,
628
+ args: ['actionFailureTemplate']
629
+ }] } });
630
+
631
+ /**
632
+ * NgModule definition for the MultiSelect component.
633
+ */
634
+ class MultiSelectModule {
635
+ }
636
+ MultiSelectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
637
+ MultiSelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectModule, declarations: [MultiSelectComponent], imports: [CommonModule], exports: [MultiSelectComponent] });
638
+ MultiSelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectModule, imports: [[CommonModule]] });
639
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectModule, decorators: [{
640
+ type: NgModule,
641
+ args: [{
642
+ imports: [CommonModule],
643
+ declarations: [
644
+ MultiSelectComponent
645
+ ],
646
+ exports: [
647
+ MultiSelectComponent
648
+ ]
649
+ }]
650
+ }] });
651
+
652
+ const CheckBoxSelectionService = { provide: 'DropDownsCheckBoxSelection', useValue: CheckBoxSelection };
653
+ /**
654
+ * NgModule definition for the MultiSelect component with providers.
655
+ */
656
+ class MultiSelectAllModule {
657
+ }
658
+ MultiSelectAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
659
+ MultiSelectAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectAllModule, imports: [CommonModule, MultiSelectModule], exports: [MultiSelectModule] });
660
+ MultiSelectAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectAllModule, providers: [
661
+ CheckBoxSelectionService
662
+ ], imports: [[CommonModule, MultiSelectModule], MultiSelectModule] });
663
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiSelectAllModule, decorators: [{
664
+ type: NgModule,
665
+ args: [{
666
+ imports: [CommonModule, MultiSelectModule],
667
+ exports: [
668
+ MultiSelectModule
669
+ ],
670
+ providers: [
671
+ CheckBoxSelectionService
672
+ ]
673
+ }]
674
+ }] });
675
+
676
+ var ListBoxComponent_1;
677
+ const inputs$2 = ['actionFailureTemplate', 'allowDragAndDrop', 'allowFiltering', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'groupTemplate', 'height', 'ignoreAccent', 'ignoreCase', 'itemTemplate', 'locale', 'maximumSelectionLength', 'noRecordsTemplate', 'query', 'scope', 'selectionSettings', 'sortOrder', 'toolbarSettings', 'value', 'zIndex'];
678
+ const outputs$2 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeDrop', 'beforeItemRender', 'change', 'created', 'dataBound', 'destroyed', 'drag', 'dragStart', 'drop', 'filtering', 'select', 'valueChange'];
679
+ const twoWays$2 = ['value'];
680
+ /**
681
+ * The ListBox allows the user to select values from the predefined list of values.
682
+ *```html
683
+ *<ejs-listbox [dataSource]='data'></ejs-listbox>
684
+ *```
685
+ */
686
+ let ListBoxComponent = ListBoxComponent_1 = class ListBoxComponent extends ListBox {
687
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
688
+ super();
689
+ this.ngEle = ngEle;
690
+ this.srenderer = srenderer;
691
+ this.viewContainerRef = viewContainerRef;
692
+ this.injector = injector;
693
+ this.cdr = cdr;
694
+ this.element = this.ngEle.nativeElement;
695
+ this.injectedModules = this.injectedModules || [];
696
+ try {
697
+ let mod = this.injector.get('DropDownsCheckBoxSelection');
698
+ if (this.injectedModules.indexOf(mod) === -1) {
699
+ this.injectedModules.push(mod);
700
+ }
701
+ }
702
+ catch (_a) { }
703
+ this.registerEvents(outputs$2);
704
+ this.addTwoWay.call(this, twoWays$2);
705
+ setValue('currentInstance', this, this.viewContainerRef);
706
+ this.formContext = new FormBase();
707
+ this.formCompContext = new ComponentBase();
708
+ }
709
+ registerOnChange(registerFunction) {
710
+ }
711
+ registerOnTouched(registerFunction) {
712
+ }
713
+ writeValue(value) {
714
+ }
715
+ setDisabledState(disabled) {
716
+ }
717
+ ngOnInit() {
718
+ this.formCompContext.ngOnInit(this);
719
+ }
720
+ ngAfterViewInit() {
721
+ this.formContext.ngAfterViewInit(this);
722
+ }
723
+ ngOnDestroy() {
724
+ this.formCompContext.ngOnDestroy(this);
725
+ }
726
+ ngAfterContentChecked() {
727
+ this.formCompContext.ngAfterContentChecked(this);
728
+ }
729
+ };
730
+ ListBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
731
+ ListBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ListBoxComponent, selector: "ejs-listbox", inputs: { actionFailureTemplate: "actionFailureTemplate", allowDragAndDrop: "allowDragAndDrop", allowFiltering: "allowFiltering", cssClass: "cssClass", dataSource: "dataSource", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", fields: "fields", filterBarPlaceholder: "filterBarPlaceholder", filterType: "filterType", groupTemplate: "groupTemplate", height: "height", ignoreAccent: "ignoreAccent", ignoreCase: "ignoreCase", itemTemplate: "itemTemplate", locale: "locale", maximumSelectionLength: "maximumSelectionLength", noRecordsTemplate: "noRecordsTemplate", query: "query", scope: "scope", selectionSettings: "selectionSettings", sortOrder: "sortOrder", toolbarSettings: "toolbarSettings", value: "value", zIndex: "zIndex" }, outputs: { focus: "focus", blur: "blur", actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeDrop: "beforeDrop", beforeItemRender: "beforeItemRender", change: "change", created: "created", dataBound: "dataBound", destroyed: "destroyed", drag: "drag", dragStart: "dragStart", drop: "drop", filtering: "filtering", select: "select", valueChange: "valueChange" }, providers: [
732
+ {
733
+ provide: NG_VALUE_ACCESSOR,
734
+ useExisting: forwardRef(() => ListBoxComponent_1),
735
+ multi: true
736
+ }
737
+ ], queries: [{ propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
738
+ __decorate([
739
+ Template()
740
+ ], ListBoxComponent.prototype, "itemTemplate", void 0);
741
+ __decorate([
742
+ Template('No records found')
743
+ ], ListBoxComponent.prototype, "noRecordsTemplate", void 0);
744
+ ListBoxComponent = ListBoxComponent_1 = __decorate([
745
+ ComponentMixins([ComponentBase, FormBase])
746
+ ], ListBoxComponent);
747
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxComponent, decorators: [{
748
+ type: Component,
749
+ args: [{
750
+ selector: 'ejs-listbox',
751
+ inputs: inputs$2,
752
+ outputs: outputs$2,
753
+ template: '',
754
+ changeDetection: ChangeDetectionStrategy.OnPush,
755
+ providers: [
756
+ {
757
+ provide: NG_VALUE_ACCESSOR,
758
+ useExisting: forwardRef(() => ListBoxComponent),
759
+ multi: true
760
+ }
761
+ ],
762
+ queries: {}
763
+ }]
764
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { itemTemplate: [{
765
+ type: ContentChild,
766
+ args: ['itemTemplate']
767
+ }], noRecordsTemplate: [{
768
+ type: ContentChild,
769
+ args: ['noRecordsTemplate']
770
+ }] } });
771
+
772
+ /**
773
+ * NgModule definition for the ListBox component.
774
+ */
775
+ class ListBoxModule {
776
+ }
777
+ ListBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
778
+ ListBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxModule, declarations: [ListBoxComponent], imports: [CommonModule], exports: [ListBoxComponent] });
779
+ ListBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxModule, imports: [[CommonModule]] });
780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxModule, decorators: [{
781
+ type: NgModule,
782
+ args: [{
783
+ imports: [CommonModule],
784
+ declarations: [
785
+ ListBoxComponent
786
+ ],
787
+ exports: [
788
+ ListBoxComponent
789
+ ]
790
+ }]
791
+ }] });
792
+
793
+ /**
794
+ * NgModule definition for the ListBox component with providers.
795
+ */
796
+ class ListBoxAllModule {
797
+ }
798
+ ListBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
799
+ ListBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxAllModule, imports: [CommonModule, ListBoxModule], exports: [ListBoxModule] });
800
+ ListBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxAllModule, providers: [], imports: [[CommonModule, ListBoxModule], ListBoxModule] });
801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ListBoxAllModule, decorators: [{
802
+ type: NgModule,
803
+ args: [{
804
+ imports: [CommonModule, ListBoxModule],
805
+ exports: [
806
+ ListBoxModule
807
+ ],
808
+ providers: []
809
+ }]
810
+ }] });
811
+
812
+ var DropDownTreeComponent_1;
813
+ const inputs$1 = ['actionFailureTemplate', 'allowFiltering', 'allowMultiSelection', 'changeOnBlur', 'cssClass', 'customTemplate', 'delimiterChar', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'headerTemplate', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'itemTemplate', 'locale', 'mode', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'readonly', 'selectAllText', 'showCheckBox', 'showClearButton', 'showDropDownIcon', 'showSelectAll', 'sortOrder', 'text', 'treeSettings', 'unSelectAllText', 'value', 'width', 'wrapText', 'zIndex'];
814
+ const outputs$1 = ['actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'dataBound', 'destroyed', 'filtering', 'focus', 'keyPress', 'open', 'select', 'valueChange'];
815
+ const twoWays$1 = ['value'];
816
+ /**
817
+ *The DropDownTree component contains a list of predefined values from which you can choose a single or multiple values.
818
+ *```html
819
+ *<ejs-dropdowntree></ejs-dropdowntree>
820
+ *```
821
+ */
822
+ let DropDownTreeComponent = DropDownTreeComponent_1 = class DropDownTreeComponent extends DropDownTree {
823
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
824
+ super();
825
+ this.ngEle = ngEle;
826
+ this.srenderer = srenderer;
827
+ this.viewContainerRef = viewContainerRef;
828
+ this.injector = injector;
829
+ this.cdr = cdr;
830
+ this.skipFromEvent = true;
831
+ this.element = this.ngEle.nativeElement;
832
+ this.injectedModules = this.injectedModules || [];
833
+ this.registerEvents(outputs$1);
834
+ this.addTwoWay.call(this, twoWays$1);
835
+ setValue('currentInstance', this, this.viewContainerRef);
836
+ this.formContext = new FormBase();
837
+ this.formCompContext = new ComponentBase();
838
+ }
839
+ registerOnChange(registerFunction) {
840
+ }
841
+ registerOnTouched(registerFunction) {
842
+ }
843
+ writeValue(value) {
844
+ }
845
+ setDisabledState(disabled) {
846
+ }
847
+ ngOnInit() {
848
+ this.formCompContext.ngOnInit(this);
849
+ }
850
+ ngAfterViewInit() {
851
+ this.formContext.ngAfterViewInit(this);
852
+ }
853
+ ngOnDestroy() {
854
+ this.formCompContext.ngOnDestroy(this);
855
+ }
856
+ ngAfterContentChecked() {
857
+ this.formCompContext.ngAfterContentChecked(this);
858
+ }
859
+ };
860
+ DropDownTreeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
861
+ DropDownTreeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DropDownTreeComponent, selector: "ejs-dropdowntree", inputs: { actionFailureTemplate: "actionFailureTemplate", allowFiltering: "allowFiltering", allowMultiSelection: "allowMultiSelection", changeOnBlur: "changeOnBlur", cssClass: "cssClass", customTemplate: "customTemplate", delimiterChar: "delimiterChar", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", fields: "fields", filterBarPlaceholder: "filterBarPlaceholder", filterType: "filterType", floatLabelType: "floatLabelType", footerTemplate: "footerTemplate", headerTemplate: "headerTemplate", htmlAttributes: "htmlAttributes", ignoreAccent: "ignoreAccent", ignoreCase: "ignoreCase", itemTemplate: "itemTemplate", locale: "locale", mode: "mode", noRecordsTemplate: "noRecordsTemplate", placeholder: "placeholder", popupHeight: "popupHeight", popupWidth: "popupWidth", readonly: "readonly", selectAllText: "selectAllText", showCheckBox: "showCheckBox", showClearButton: "showClearButton", showDropDownIcon: "showDropDownIcon", showSelectAll: "showSelectAll", sortOrder: "sortOrder", text: "text", treeSettings: "treeSettings", unSelectAllText: "unSelectAllText", value: "value", width: "width", wrapText: "wrapText", zIndex: "zIndex" }, outputs: { actionFailure: "actionFailure", beforeOpen: "beforeOpen", blur: "blur", change: "change", close: "close", created: "created", dataBound: "dataBound", destroyed: "destroyed", filtering: "filtering", focus: "focus", keyPress: "keyPress", open: "open", select: "select", valueChange: "valueChange" }, providers: [
862
+ {
863
+ provide: NG_VALUE_ACCESSOR,
864
+ useExisting: forwardRef(() => DropDownTreeComponent_1),
865
+ multi: true
866
+ }
867
+ ], queries: [{ propertyName: "footerTemplate", first: true, predicate: ["footerTemplate"], descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }, { propertyName: "actionFailureTemplate", first: true, predicate: ["actionFailureTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
868
+ __decorate([
869
+ Template()
870
+ ], DropDownTreeComponent.prototype, "footerTemplate", void 0);
871
+ __decorate([
872
+ Template()
873
+ ], DropDownTreeComponent.prototype, "headerTemplate", void 0);
874
+ __decorate([
875
+ Template()
876
+ ], DropDownTreeComponent.prototype, "itemTemplate", void 0);
877
+ __decorate([
878
+ Template('No Records Found')
879
+ ], DropDownTreeComponent.prototype, "noRecordsTemplate", void 0);
880
+ __decorate([
881
+ Template('The Request Failed')
882
+ ], DropDownTreeComponent.prototype, "actionFailureTemplate", void 0);
883
+ DropDownTreeComponent = DropDownTreeComponent_1 = __decorate([
884
+ ComponentMixins([ComponentBase, FormBase])
885
+ ], DropDownTreeComponent);
886
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeComponent, decorators: [{
887
+ type: Component,
888
+ args: [{
889
+ selector: 'ejs-dropdowntree',
890
+ inputs: inputs$1,
891
+ outputs: outputs$1,
892
+ template: '',
893
+ changeDetection: ChangeDetectionStrategy.OnPush,
894
+ providers: [
895
+ {
896
+ provide: NG_VALUE_ACCESSOR,
897
+ useExisting: forwardRef(() => DropDownTreeComponent),
898
+ multi: true
899
+ }
900
+ ],
901
+ queries: {}
902
+ }]
903
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { footerTemplate: [{
904
+ type: ContentChild,
905
+ args: ['footerTemplate']
906
+ }], headerTemplate: [{
907
+ type: ContentChild,
908
+ args: ['headerTemplate']
909
+ }], itemTemplate: [{
910
+ type: ContentChild,
911
+ args: ['itemTemplate']
912
+ }], noRecordsTemplate: [{
913
+ type: ContentChild,
914
+ args: ['noRecordsTemplate']
915
+ }], actionFailureTemplate: [{
916
+ type: ContentChild,
917
+ args: ['actionFailureTemplate']
918
+ }] } });
919
+
920
+ /**
921
+ * NgModule definition for the DropDownTree component.
922
+ */
923
+ class DropDownTreeModule {
924
+ }
925
+ DropDownTreeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
926
+ DropDownTreeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeModule, declarations: [DropDownTreeComponent], imports: [CommonModule], exports: [DropDownTreeComponent] });
927
+ DropDownTreeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeModule, imports: [[CommonModule]] });
928
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeModule, decorators: [{
929
+ type: NgModule,
930
+ args: [{
931
+ imports: [CommonModule],
932
+ declarations: [
933
+ DropDownTreeComponent
934
+ ],
935
+ exports: [
936
+ DropDownTreeComponent
937
+ ]
938
+ }]
939
+ }] });
940
+
941
+ /**
942
+ * NgModule definition for the DropDownTree component with providers.
943
+ */
944
+ class DropDownTreeAllModule {
945
+ }
946
+ DropDownTreeAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
947
+ DropDownTreeAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeAllModule, imports: [CommonModule, DropDownTreeModule], exports: [DropDownTreeModule] });
948
+ DropDownTreeAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeAllModule, providers: [], imports: [[CommonModule, DropDownTreeModule], DropDownTreeModule] });
949
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DropDownTreeAllModule, decorators: [{
950
+ type: NgModule,
951
+ args: [{
952
+ imports: [CommonModule, DropDownTreeModule],
953
+ exports: [
954
+ DropDownTreeModule
955
+ ],
956
+ providers: []
957
+ }]
958
+ }] });
959
+
960
+ const inputs = ['allowSpaces', 'cssClass', 'dataSource', 'displayTemplate', 'fields', 'filterType', 'highlight', 'ignoreCase', 'itemTemplate', 'locale', 'mentionChar', 'minLength', 'noRecordsTemplate', 'popupHeight', 'popupWidth', 'query', 'showMentionChar', 'sortOrder', 'spinnerTemplate', 'suffixText', 'suggestionCount', 'target'];
961
+ const outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'change', 'closed', 'created', 'destroyed', 'filtering', 'opened', 'select'];
962
+ const twoWays = [''];
963
+ /**
964
+ *The Mention component contains a list of predefined values, from which the user can choose a single value.
965
+ *```html
966
+ *<ejs-mention></ejs-mention>
967
+ *```
968
+ */
969
+ let MentionComponent = class MentionComponent extends Mention {
970
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
971
+ super();
972
+ this.ngEle = ngEle;
973
+ this.srenderer = srenderer;
974
+ this.viewContainerRef = viewContainerRef;
975
+ this.injector = injector;
976
+ this.element = this.ngEle.nativeElement;
977
+ this.injectedModules = this.injectedModules || [];
978
+ this.registerEvents(outputs);
979
+ this.addTwoWay.call(this, twoWays);
980
+ setValue('currentInstance', this, this.viewContainerRef);
981
+ this.containerContext = new ComponentBase();
982
+ }
983
+ ngOnInit() {
984
+ this.containerContext.ngOnInit(this);
985
+ }
986
+ ngAfterViewInit() {
987
+ this.containerContext.ngAfterViewInit(this);
988
+ }
989
+ ngOnDestroy() {
990
+ this.containerContext.ngOnDestroy(this);
991
+ }
992
+ ngAfterContentChecked() {
993
+ this.containerContext.ngAfterContentChecked(this);
994
+ }
995
+ };
996
+ MentionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
997
+ MentionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: MentionComponent, selector: "ejs-mention", inputs: { allowSpaces: "allowSpaces", cssClass: "cssClass", dataSource: "dataSource", displayTemplate: "displayTemplate", fields: "fields", filterType: "filterType", highlight: "highlight", ignoreCase: "ignoreCase", itemTemplate: "itemTemplate", locale: "locale", mentionChar: "mentionChar", minLength: "minLength", noRecordsTemplate: "noRecordsTemplate", popupHeight: "popupHeight", popupWidth: "popupWidth", query: "query", showMentionChar: "showMentionChar", sortOrder: "sortOrder", spinnerTemplate: "spinnerTemplate", suffixText: "suffixText", suggestionCount: "suggestionCount", target: "target" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeOpen: "beforeOpen", change: "change", closed: "closed", created: "created", destroyed: "destroyed", filtering: "filtering", opened: "opened", select: "select" }, queries: [{ propertyName: "displayTemplate", first: true, predicate: ["displayTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }, { propertyName: "spinnerTemplate", first: true, predicate: ["spinnerTemplate"], descendants: true }, { propertyName: "noRecordsTemplate", first: true, predicate: ["noRecordsTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: `<ng-content ></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
998
+ __decorate([
999
+ Template()
1000
+ ], MentionComponent.prototype, "displayTemplate", void 0);
1001
+ __decorate([
1002
+ Template()
1003
+ ], MentionComponent.prototype, "itemTemplate", void 0);
1004
+ __decorate([
1005
+ Template()
1006
+ ], MentionComponent.prototype, "spinnerTemplate", void 0);
1007
+ __decorate([
1008
+ Template('No records found')
1009
+ ], MentionComponent.prototype, "noRecordsTemplate", void 0);
1010
+ MentionComponent = __decorate([
1011
+ ComponentMixins([ComponentBase])
1012
+ ], MentionComponent);
1013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionComponent, decorators: [{
1014
+ type: Component,
1015
+ args: [{
1016
+ selector: 'ejs-mention',
1017
+ inputs: inputs,
1018
+ outputs: outputs,
1019
+ template: `<ng-content ></ng-content>`,
1020
+ changeDetection: ChangeDetectionStrategy.OnPush,
1021
+ queries: {}
1022
+ }]
1023
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { displayTemplate: [{
1024
+ type: ContentChild,
1025
+ args: ['displayTemplate']
1026
+ }], itemTemplate: [{
1027
+ type: ContentChild,
1028
+ args: ['itemTemplate']
1029
+ }], spinnerTemplate: [{
1030
+ type: ContentChild,
1031
+ args: ['spinnerTemplate']
1032
+ }], noRecordsTemplate: [{
1033
+ type: ContentChild,
1034
+ args: ['noRecordsTemplate']
1035
+ }] } });
1036
+
1037
+ /**
1038
+ * NgModule definition for the Mention component.
1039
+ */
1040
+ class MentionModule {
1041
+ }
1042
+ MentionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1043
+ MentionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionModule, declarations: [MentionComponent], imports: [CommonModule], exports: [MentionComponent] });
1044
+ MentionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionModule, imports: [[CommonModule]] });
1045
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionModule, decorators: [{
1046
+ type: NgModule,
1047
+ args: [{
1048
+ imports: [CommonModule],
1049
+ declarations: [
1050
+ MentionComponent
1051
+ ],
1052
+ exports: [
1053
+ MentionComponent
1054
+ ]
1055
+ }]
1056
+ }] });
1057
+
1058
+ /**
1059
+ * NgModule definition for the Mention component with providers.
1060
+ */
1061
+ class MentionAllModule {
1062
+ }
1063
+ MentionAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1064
+ MentionAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionAllModule, imports: [CommonModule, MentionModule], exports: [MentionModule] });
1065
+ MentionAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionAllModule, providers: [], imports: [[CommonModule, MentionModule], MentionModule] });
1066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MentionAllModule, decorators: [{
1067
+ type: NgModule,
1068
+ args: [{
1069
+ imports: [CommonModule, MentionModule],
1070
+ exports: [
1071
+ MentionModule
1072
+ ],
1073
+ providers: []
1074
+ }]
1075
+ }] });
1076
+
1077
+ // Mapping root file for package generation
1078
+
1079
+ /**
1080
+ * Generated bundle index. Do not edit.
1081
+ */
1082
+
1083
+ export { AutoCompleteAllModule, AutoCompleteComponent, AutoCompleteModule, CheckBoxSelectionService, ComboBoxAllModule, ComboBoxComponent, ComboBoxModule, DropDownListAllModule, DropDownListComponent, DropDownListModule, DropDownTreeAllModule, DropDownTreeComponent, DropDownTreeModule, ListBoxAllModule, ListBoxComponent, ListBoxModule, MentionAllModule, MentionComponent, MentionModule, MultiSelectAllModule, MultiSelectComponent, MultiSelectModule, VirtualScrollService };
1084
+ //# sourceMappingURL=syncfusion-ej2-angular-dropdowns.mjs.map