@syncfusion/ej2-angular-multicolumn-combobox 29.2.4-ngcc → 30.1.37-ngcc

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-multicolumn-combobox.umd.js
3
- * version : 29.2.4
3
+ * version : 30.1.37
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -13,319 +13,319 @@
13
13
  (factory((global['ej2-angular-multicolumn-combobox'] = {}),global.ng.core,global.ej2.angular.base,global.ng.forms,global.ej2.multicolumn.combobox,global.ng.common));
14
14
  }(this, (function (exports,core,ej2AngularBase,forms,ej2MulticolumnCombobox,common) { 'use strict';
15
15
 
16
- var __extends = (this && this.__extends) || (function () {
17
- var extendStatics = Object.setPrototypeOf ||
18
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
- return function (d, b) {
21
- extendStatics(d, b);
22
- function __() { this.constructor = d; }
23
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
- };
25
- })();
26
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
- r = Reflect.decorate(decorators, target, key, desc);
30
- else
31
- for (var i = decorators.length - 1; i >= 0; i--)
32
- if (d = decorators[i])
33
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
- return c > 3 && r && Object.defineProperty(target, key, r), r;
35
- };
36
- var __metadata = (this && this.__metadata) || function (k, v) {
37
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
- return Reflect.metadata(k, v);
39
- };
40
- var input = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];
41
- var outputs = [];
42
- /**
43
- * `e-column` directive represent a column of the Angular MultiColumnComboBox.
44
- * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`).
45
- * ```html
46
- * <ejs-multicolumncombobox [dataSource]='data'>
47
- * <e-columns>
48
- * <e-column field='ID' width='100'></e-column>
49
- * <e-column field='name' header='Name' width='100'></e-column>
50
- * </e-columns>
51
- * </ejs-multicolumncombobox>
52
- * ```
53
- */
54
- var ColumnDirective = /** @class */ (function (_super) {
55
- __extends(ColumnDirective, _super);
56
- /**
57
- * @param {?} viewContainerRef
58
- */
59
- function ColumnDirective(viewContainerRef) {
60
- var _this = _super.call(this) || this;
61
- _this.viewContainerRef = viewContainerRef;
62
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
63
- _this.registerEvents(outputs);
64
- _this.directivePropList = input;
65
- return _this;
66
- }
67
- return ColumnDirective;
68
- }(ej2AngularBase.ComplexBase));
69
- ColumnDirective.decorators = [
70
- { type: core.Directive, args: [{
71
- selector: 'ejs-multicolumncombobox>e-columns>e-column',
72
- inputs: input,
73
- outputs: outputs,
74
- queries: {}
75
- },] },
76
- ];
77
- /**
78
- * @nocollapse
79
- */
80
- ColumnDirective.ctorParameters = function () { return [
81
- { type: core.ViewContainerRef, },
82
- ]; };
83
- ColumnDirective.propDecorators = {
84
- 'template': [{ type: core.ContentChild, args: ['template',] },],
85
- 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
86
- };
87
- __decorate([
88
- ej2AngularBase.Template(),
89
- __metadata("design:type", Object)
90
- ], ColumnDirective.prototype, "template", void 0);
91
- __decorate([
92
- ej2AngularBase.Template(),
93
- __metadata("design:type", Object)
94
- ], ColumnDirective.prototype, "headerTemplate", void 0);
95
- /**
96
- * Column Array Directive
97
- */
98
- var ColumnsDirective = /** @class */ (function (_super) {
99
- __extends(ColumnsDirective, _super);
100
- function ColumnsDirective() {
101
- return _super.call(this, 'columns') || this;
102
- }
103
- return ColumnsDirective;
104
- }(ej2AngularBase.ArrayBase));
105
- ColumnsDirective.decorators = [
106
- { type: core.Directive, args: [{
107
- selector: 'ejs-multicolumncombobox>e-columns',
108
- queries: {
109
- children: new core.ContentChildren(ColumnDirective)
110
- },
111
- },] },
112
- ];
113
- /**
114
- * @nocollapse
115
- */
116
- ColumnsDirective.ctorParameters = function () { return []; };
117
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
118
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
119
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
120
- r = Reflect.decorate(decorators, target, key, desc);
121
- else
122
- for (var i = decorators.length - 1; i >= 0; i--)
123
- if (d = decorators[i])
124
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
125
- return c > 3 && r && Object.defineProperty(target, key, r), r;
126
- };
127
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
128
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
129
- return Reflect.metadata(k, v);
130
- };
131
- var inputs = ['actionFailureTemplate', 'allowFiltering', 'allowSorting', 'columns', 'cssClass', 'dataSource', 'disabled', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'fields', 'filterType', 'floatLabelType', 'footerTemplate', 'gridSettings', 'groupTemplate', 'htmlAttributes', 'index', 'itemTemplate', 'locale', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'sortOrder', 'sortType', 'text', 'value', 'width'];
132
- var outputs$1 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'change', 'close', 'created', 'filtering', 'open', 'select', 'valueChange'];
133
- var twoWays = ['value'];
134
- /**
135
- * Represents the Essential JS 2 Angular MultiColumnComboBox Component.
136
- * ```html
137
- * <ejs-multicolumncombobox></ejs-multicolumncombobox>
138
- * ```
139
- */
140
- exports.MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = /** @class */ (function (_super) {
141
- __extends(MultiColumnComboBoxComponent, _super);
142
- /**
143
- * @param {?} ngEle
144
- * @param {?} srenderer
145
- * @param {?} viewContainerRef
146
- * @param {?} injector
147
- * @param {?} cdr
148
- */
149
- function MultiColumnComboBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
150
- var _this = _super.call(this) || this;
151
- _this.ngEle = ngEle;
152
- _this.srenderer = srenderer;
153
- _this.viewContainerRef = viewContainerRef;
154
- _this.injector = injector;
155
- _this.cdr = cdr;
156
- _this.tags = ['columns'];
157
- _this.element = _this.ngEle.nativeElement;
158
- _this.injectedModules = _this.injectedModules || [];
159
- _this.registerEvents(outputs$1);
160
- _this.addTwoWay.call(_this, twoWays);
161
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
162
- _this.formContext = new ej2AngularBase.FormBase();
163
- _this.formCompContext = new ej2AngularBase.ComponentBase();
164
- return _this;
165
- }
166
- /**
167
- * @param {?} registerFunction
168
- * @return {?}
169
- */
170
- MultiColumnComboBoxComponent.prototype.registerOnChange = function (registerFunction) {
171
- };
172
- /**
173
- * @param {?} registerFunction
174
- * @return {?}
175
- */
176
- MultiColumnComboBoxComponent.prototype.registerOnTouched = function (registerFunction) {
177
- };
178
- /**
179
- * @param {?} value
180
- * @return {?}
181
- */
182
- MultiColumnComboBoxComponent.prototype.writeValue = function (value) {
183
- };
184
- /**
185
- * @param {?} disabled
186
- * @return {?}
187
- */
188
- MultiColumnComboBoxComponent.prototype.setDisabledState = function (disabled) {
189
- };
190
- /**
191
- * @return {?}
192
- */
193
- MultiColumnComboBoxComponent.prototype.ngOnInit = function () {
194
- this.formCompContext.ngOnInit(this);
195
- };
196
- /**
197
- * @return {?}
198
- */
199
- MultiColumnComboBoxComponent.prototype.ngAfterViewInit = function () {
200
- this.formContext.ngAfterViewInit(this);
201
- };
202
- /**
203
- * @return {?}
204
- */
205
- MultiColumnComboBoxComponent.prototype.ngOnDestroy = function () {
206
- this.formCompContext.ngOnDestroy(this);
207
- };
208
- /**
209
- * @return {?}
210
- */
211
- MultiColumnComboBoxComponent.prototype.ngAfterContentChecked = function () {
212
- this.tagObjects[0].instance = this.childColumns;
213
- this.formCompContext.ngAfterContentChecked(this);
214
- };
215
- return MultiColumnComboBoxComponent;
216
- }(ej2MulticolumnCombobox.MultiColumnComboBox));
217
- exports.MultiColumnComboBoxComponent.decorators = [
218
- { type: core.Component, args: [{
219
- selector: 'ejs-multicolumncombobox',
220
- inputs: inputs,
221
- outputs: outputs$1,
222
- template: '',
223
- changeDetection: core.ChangeDetectionStrategy.OnPush,
224
- providers: [
225
- {
226
- provide: forms.NG_VALUE_ACCESSOR,
227
- useExisting: core.forwardRef(function () { return MultiColumnComboBoxComponent_1; }),
228
- multi: true
229
- }
230
- ],
231
- queries: {
232
- childColumns: new core.ContentChild(ColumnsDirective)
233
- }
234
- },] },
235
- ];
236
- /**
237
- * @nocollapse
238
- */
239
- exports.MultiColumnComboBoxComponent.ctorParameters = function () { return [
240
- { type: core.ElementRef, },
241
- { type: core.Renderer2, },
242
- { type: core.ViewContainerRef, },
243
- { type: core.Injector, },
244
- { type: core.ChangeDetectorRef, },
245
- ]; };
246
- exports.MultiColumnComboBoxComponent.propDecorators = {
247
- 'footerTemplate': [{ type: core.ContentChild, args: ['footerTemplate',] },],
248
- 'itemTemplate': [{ type: core.ContentChild, args: ['itemTemplate',] },],
249
- 'groupTemplate': [{ type: core.ContentChild, args: ['groupTemplate',] },],
250
- 'noRecordsTemplate': [{ type: core.ContentChild, args: ['noRecordsTemplate',] },],
251
- 'actionFailureTemplate': [{ type: core.ContentChild, args: ['actionFailureTemplate',] },],
252
- };
253
- __decorate$1([
254
- ej2AngularBase.Template(),
255
- __metadata$1("design:type", Object)
256
- ], exports.MultiColumnComboBoxComponent.prototype, "footerTemplate", void 0);
257
- __decorate$1([
258
- ej2AngularBase.Template(),
259
- __metadata$1("design:type", Object)
260
- ], exports.MultiColumnComboBoxComponent.prototype, "itemTemplate", void 0);
261
- __decorate$1([
262
- ej2AngularBase.Template(),
263
- __metadata$1("design:type", Object)
264
- ], exports.MultiColumnComboBoxComponent.prototype, "groupTemplate", void 0);
265
- __decorate$1([
266
- ej2AngularBase.Template('No records found'),
267
- __metadata$1("design:type", Object)
268
- ], exports.MultiColumnComboBoxComponent.prototype, "noRecordsTemplate", void 0);
269
- __decorate$1([
270
- ej2AngularBase.Template('Request Failed'),
271
- __metadata$1("design:type", Object)
272
- ], exports.MultiColumnComboBoxComponent.prototype, "actionFailureTemplate", void 0);
273
- exports.MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = __decorate$1([
274
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
275
- __metadata$1("design:paramtypes", [core.ElementRef,
276
- core.Renderer2,
277
- core.ViewContainerRef,
278
- core.Injector,
279
- core.ChangeDetectorRef])
280
- ], exports.MultiColumnComboBoxComponent);
281
- var MultiColumnComboBoxComponent_1;
282
- /**
283
- * NgModule definition for the MultiColumnComboBox component.
284
- */
285
- var MultiColumnComboBoxModule = /** @class */ (function () {
286
- function MultiColumnComboBoxModule() {
287
- }
288
- return MultiColumnComboBoxModule;
289
- }());
290
- MultiColumnComboBoxModule.decorators = [
291
- { type: core.NgModule, args: [{
292
- imports: [common.CommonModule],
293
- declarations: [
294
- exports.MultiColumnComboBoxComponent,
295
- ColumnDirective,
296
- ColumnsDirective
297
- ],
298
- exports: [
299
- exports.MultiColumnComboBoxComponent,
300
- ColumnDirective,
301
- ColumnsDirective
302
- ]
303
- },] },
304
- ];
305
- /**
306
- * @nocollapse
307
- */
308
- MultiColumnComboBoxModule.ctorParameters = function () { return []; };
309
- /**
310
- * NgModule definition for the MultiColumnComboBox component with providers.
311
- */
312
- var MultiColumnComboBoxAllModule = /** @class */ (function () {
313
- function MultiColumnComboBoxAllModule() {
314
- }
315
- return MultiColumnComboBoxAllModule;
316
- }());
317
- MultiColumnComboBoxAllModule.decorators = [
318
- { type: core.NgModule, args: [{
319
- imports: [common.CommonModule, MultiColumnComboBoxModule],
320
- exports: [
321
- MultiColumnComboBoxModule
322
- ],
323
- providers: []
324
- },] },
325
- ];
326
- /**
327
- * @nocollapse
328
- */
16
+ var __extends = (this && this.__extends) || (function () {
17
+ var extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
+ return function (d, b) {
21
+ extendStatics(d, b);
22
+ function __() { this.constructor = d; }
23
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
+ };
25
+ })();
26
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
+ r = Reflect.decorate(decorators, target, key, desc);
30
+ else
31
+ for (var i = decorators.length - 1; i >= 0; i--)
32
+ if (d = decorators[i])
33
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
35
+ };
36
+ var __metadata = (this && this.__metadata) || function (k, v) {
37
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
+ return Reflect.metadata(k, v);
39
+ };
40
+ var input = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];
41
+ var outputs = [];
42
+ /**
43
+ * `e-column` directive represent a column of the Angular MultiColumnComboBox.
44
+ * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`).
45
+ * ```html
46
+ * <ejs-multicolumncombobox [dataSource]='data'>
47
+ * <e-columns>
48
+ * <e-column field='ID' width='100'></e-column>
49
+ * <e-column field='name' header='Name' width='100'></e-column>
50
+ * </e-columns>
51
+ * </ejs-multicolumncombobox>
52
+ * ```
53
+ */
54
+ var ColumnDirective = /** @class */ (function (_super) {
55
+ __extends(ColumnDirective, _super);
56
+ /**
57
+ * @param {?} viewContainerRef
58
+ */
59
+ function ColumnDirective(viewContainerRef) {
60
+ var _this = _super.call(this) || this;
61
+ _this.viewContainerRef = viewContainerRef;
62
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
63
+ _this.registerEvents(outputs);
64
+ _this.directivePropList = input;
65
+ return _this;
66
+ }
67
+ return ColumnDirective;
68
+ }(ej2AngularBase.ComplexBase));
69
+ ColumnDirective.decorators = [
70
+ { type: core.Directive, args: [{
71
+ selector: 'ejs-multicolumncombobox>e-columns>e-column',
72
+ inputs: input,
73
+ outputs: outputs,
74
+ queries: {}
75
+ },] },
76
+ ];
77
+ /**
78
+ * @nocollapse
79
+ */
80
+ ColumnDirective.ctorParameters = function () { return [
81
+ { type: core.ViewContainerRef, },
82
+ ]; };
83
+ ColumnDirective.propDecorators = {
84
+ 'template': [{ type: core.ContentChild, args: ['template',] },],
85
+ 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
86
+ };
87
+ __decorate([
88
+ ej2AngularBase.Template(),
89
+ __metadata("design:type", Object)
90
+ ], ColumnDirective.prototype, "template", void 0);
91
+ __decorate([
92
+ ej2AngularBase.Template(),
93
+ __metadata("design:type", Object)
94
+ ], ColumnDirective.prototype, "headerTemplate", void 0);
95
+ /**
96
+ * Column Array Directive
97
+ */
98
+ var ColumnsDirective = /** @class */ (function (_super) {
99
+ __extends(ColumnsDirective, _super);
100
+ function ColumnsDirective() {
101
+ return _super.call(this, 'columns') || this;
102
+ }
103
+ return ColumnsDirective;
104
+ }(ej2AngularBase.ArrayBase));
105
+ ColumnsDirective.decorators = [
106
+ { type: core.Directive, args: [{
107
+ selector: 'ejs-multicolumncombobox>e-columns',
108
+ queries: {
109
+ children: new core.ContentChildren(ColumnDirective)
110
+ },
111
+ },] },
112
+ ];
113
+ /**
114
+ * @nocollapse
115
+ */
116
+ ColumnsDirective.ctorParameters = function () { return []; };
117
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
118
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
119
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
120
+ r = Reflect.decorate(decorators, target, key, desc);
121
+ else
122
+ for (var i = decorators.length - 1; i >= 0; i--)
123
+ if (d = decorators[i])
124
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
125
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
126
+ };
127
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
128
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
129
+ return Reflect.metadata(k, v);
130
+ };
131
+ var inputs = ['actionFailureTemplate', 'allowFiltering', 'allowSorting', 'columns', 'cssClass', 'dataSource', 'disabled', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'fields', 'filterType', 'floatLabelType', 'footerTemplate', 'gridSettings', 'groupTemplate', 'htmlAttributes', 'index', 'itemTemplate', 'locale', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'sortOrder', 'sortType', 'text', 'value', 'width'];
132
+ var outputs$1 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'change', 'close', 'created', 'filtering', 'open', 'select', 'valueChange'];
133
+ var twoWays = ['value'];
134
+ /**
135
+ * Represents the Essential JS 2 Angular MultiColumnComboBox Component.
136
+ * ```html
137
+ * <ejs-multicolumncombobox></ejs-multicolumncombobox>
138
+ * ```
139
+ */
140
+ exports.MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = /** @class */ (function (_super) {
141
+ __extends(MultiColumnComboBoxComponent, _super);
142
+ /**
143
+ * @param {?} ngEle
144
+ * @param {?} srenderer
145
+ * @param {?} viewContainerRef
146
+ * @param {?} injector
147
+ * @param {?} cdr
148
+ */
149
+ function MultiColumnComboBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
150
+ var _this = _super.call(this) || this;
151
+ _this.ngEle = ngEle;
152
+ _this.srenderer = srenderer;
153
+ _this.viewContainerRef = viewContainerRef;
154
+ _this.injector = injector;
155
+ _this.cdr = cdr;
156
+ _this.tags = ['columns'];
157
+ _this.element = _this.ngEle.nativeElement;
158
+ _this.injectedModules = _this.injectedModules || [];
159
+ _this.registerEvents(outputs$1);
160
+ _this.addTwoWay.call(_this, twoWays);
161
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
162
+ _this.formContext = new ej2AngularBase.FormBase();
163
+ _this.formCompContext = new ej2AngularBase.ComponentBase();
164
+ return _this;
165
+ }
166
+ /**
167
+ * @param {?} registerFunction
168
+ * @return {?}
169
+ */
170
+ MultiColumnComboBoxComponent.prototype.registerOnChange = function (registerFunction) {
171
+ };
172
+ /**
173
+ * @param {?} registerFunction
174
+ * @return {?}
175
+ */
176
+ MultiColumnComboBoxComponent.prototype.registerOnTouched = function (registerFunction) {
177
+ };
178
+ /**
179
+ * @param {?} value
180
+ * @return {?}
181
+ */
182
+ MultiColumnComboBoxComponent.prototype.writeValue = function (value) {
183
+ };
184
+ /**
185
+ * @param {?} disabled
186
+ * @return {?}
187
+ */
188
+ MultiColumnComboBoxComponent.prototype.setDisabledState = function (disabled) {
189
+ };
190
+ /**
191
+ * @return {?}
192
+ */
193
+ MultiColumnComboBoxComponent.prototype.ngOnInit = function () {
194
+ this.formCompContext.ngOnInit(this);
195
+ };
196
+ /**
197
+ * @return {?}
198
+ */
199
+ MultiColumnComboBoxComponent.prototype.ngAfterViewInit = function () {
200
+ this.formContext.ngAfterViewInit(this);
201
+ };
202
+ /**
203
+ * @return {?}
204
+ */
205
+ MultiColumnComboBoxComponent.prototype.ngOnDestroy = function () {
206
+ this.formCompContext.ngOnDestroy(this);
207
+ };
208
+ /**
209
+ * @return {?}
210
+ */
211
+ MultiColumnComboBoxComponent.prototype.ngAfterContentChecked = function () {
212
+ this.tagObjects[0].instance = this.childColumns;
213
+ this.formCompContext.ngAfterContentChecked(this);
214
+ };
215
+ return MultiColumnComboBoxComponent;
216
+ }(ej2MulticolumnCombobox.MultiColumnComboBox));
217
+ exports.MultiColumnComboBoxComponent.decorators = [
218
+ { type: core.Component, args: [{
219
+ selector: 'ejs-multicolumncombobox',
220
+ inputs: inputs,
221
+ outputs: outputs$1,
222
+ template: '',
223
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
224
+ providers: [
225
+ {
226
+ provide: forms.NG_VALUE_ACCESSOR,
227
+ useExisting: core.forwardRef(function () { return MultiColumnComboBoxComponent_1; }),
228
+ multi: true
229
+ }
230
+ ],
231
+ queries: {
232
+ childColumns: new core.ContentChild(ColumnsDirective)
233
+ }
234
+ },] },
235
+ ];
236
+ /**
237
+ * @nocollapse
238
+ */
239
+ exports.MultiColumnComboBoxComponent.ctorParameters = function () { return [
240
+ { type: core.ElementRef, },
241
+ { type: core.Renderer2, },
242
+ { type: core.ViewContainerRef, },
243
+ { type: core.Injector, },
244
+ { type: core.ChangeDetectorRef, },
245
+ ]; };
246
+ exports.MultiColumnComboBoxComponent.propDecorators = {
247
+ 'footerTemplate': [{ type: core.ContentChild, args: ['footerTemplate',] },],
248
+ 'itemTemplate': [{ type: core.ContentChild, args: ['itemTemplate',] },],
249
+ 'groupTemplate': [{ type: core.ContentChild, args: ['groupTemplate',] },],
250
+ 'noRecordsTemplate': [{ type: core.ContentChild, args: ['noRecordsTemplate',] },],
251
+ 'actionFailureTemplate': [{ type: core.ContentChild, args: ['actionFailureTemplate',] },],
252
+ };
253
+ __decorate$1([
254
+ ej2AngularBase.Template(),
255
+ __metadata$1("design:type", Object)
256
+ ], exports.MultiColumnComboBoxComponent.prototype, "footerTemplate", void 0);
257
+ __decorate$1([
258
+ ej2AngularBase.Template(),
259
+ __metadata$1("design:type", Object)
260
+ ], exports.MultiColumnComboBoxComponent.prototype, "itemTemplate", void 0);
261
+ __decorate$1([
262
+ ej2AngularBase.Template(),
263
+ __metadata$1("design:type", Object)
264
+ ], exports.MultiColumnComboBoxComponent.prototype, "groupTemplate", void 0);
265
+ __decorate$1([
266
+ ej2AngularBase.Template('No records found'),
267
+ __metadata$1("design:type", Object)
268
+ ], exports.MultiColumnComboBoxComponent.prototype, "noRecordsTemplate", void 0);
269
+ __decorate$1([
270
+ ej2AngularBase.Template('Request Failed'),
271
+ __metadata$1("design:type", Object)
272
+ ], exports.MultiColumnComboBoxComponent.prototype, "actionFailureTemplate", void 0);
273
+ exports.MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = __decorate$1([
274
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
275
+ __metadata$1("design:paramtypes", [core.ElementRef,
276
+ core.Renderer2,
277
+ core.ViewContainerRef,
278
+ core.Injector,
279
+ core.ChangeDetectorRef])
280
+ ], exports.MultiColumnComboBoxComponent);
281
+ var MultiColumnComboBoxComponent_1;
282
+ /**
283
+ * NgModule definition for the MultiColumnComboBox component.
284
+ */
285
+ var MultiColumnComboBoxModule = /** @class */ (function () {
286
+ function MultiColumnComboBoxModule() {
287
+ }
288
+ return MultiColumnComboBoxModule;
289
+ }());
290
+ MultiColumnComboBoxModule.decorators = [
291
+ { type: core.NgModule, args: [{
292
+ imports: [common.CommonModule],
293
+ declarations: [
294
+ exports.MultiColumnComboBoxComponent,
295
+ ColumnDirective,
296
+ ColumnsDirective
297
+ ],
298
+ exports: [
299
+ exports.MultiColumnComboBoxComponent,
300
+ ColumnDirective,
301
+ ColumnsDirective
302
+ ]
303
+ },] },
304
+ ];
305
+ /**
306
+ * @nocollapse
307
+ */
308
+ MultiColumnComboBoxModule.ctorParameters = function () { return []; };
309
+ /**
310
+ * NgModule definition for the MultiColumnComboBox component with providers.
311
+ */
312
+ var MultiColumnComboBoxAllModule = /** @class */ (function () {
313
+ function MultiColumnComboBoxAllModule() {
314
+ }
315
+ return MultiColumnComboBoxAllModule;
316
+ }());
317
+ MultiColumnComboBoxAllModule.decorators = [
318
+ { type: core.NgModule, args: [{
319
+ imports: [common.CommonModule, MultiColumnComboBoxModule],
320
+ exports: [
321
+ MultiColumnComboBoxModule
322
+ ],
323
+ providers: []
324
+ },] },
325
+ ];
326
+ /**
327
+ * @nocollapse
328
+ */
329
329
  MultiColumnComboBoxAllModule.ctorParameters = function () { return []; };
330
330
 
331
331
  exports.ColumnDirective = ColumnDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-multicolumn-combobox.umd.min.js
3
- * version : 29.2.4
3
+ * version : 30.1.37
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public_api';
5
- export { inputs as ɵa, outputs as ɵb } from './src/multicolumn-combobox/multicolumncombobox.component';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public_api';
5
+ export { inputs as ɵa, outputs as ɵb } from './src/multicolumn-combobox/multicolumncombobox.component';