@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.
- package/@syncfusion/ej2-angular-multicolumn-combobox.es5.js +324 -324
- package/@syncfusion/ej2-angular-multicolumn-combobox.js +278 -278
- package/{license → LICENSE} +10 -10
- package/README.md +47 -47
- package/dist/ej2-angular-multicolumn-combobox.umd.js +314 -314
- package/dist/ej2-angular-multicolumn-combobox.umd.min.js +1 -1
- package/ej2-angular-multicolumn-combobox.d.ts +5 -5
- package/package.json +15 -46
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/index.d.ts +5 -5
- package/src/multicolumn-combobox/columns.directive.d.ts +83 -83
- package/src/multicolumn-combobox/multicolumncombobox-all.module.d.ts +5 -5
- package/src/multicolumn-combobox/multicolumncombobox.component.d.ts +79 -79
- package/src/multicolumn-combobox/multicolumncombobox.module.d.ts +5 -5
|
@@ -4,292 +4,292 @@ import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
|
4
4
|
import { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';
|
|
5
5
|
import { CommonModule } from '@angular/common';
|
|
6
6
|
|
|
7
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
8
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
10
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
11
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12
|
-
};
|
|
13
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
14
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
15
|
-
};
|
|
16
|
-
let input = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];
|
|
17
|
-
let outputs = [];
|
|
18
|
-
/**
|
|
19
|
-
* `e-column` directive represent a column of the Angular MultiColumnComboBox.
|
|
20
|
-
* It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`).
|
|
21
|
-
* ```html
|
|
22
|
-
* <ejs-multicolumncombobox [dataSource]='data'>
|
|
23
|
-
* <e-columns>
|
|
24
|
-
* <e-column field='ID' width='100'></e-column>
|
|
25
|
-
* <e-column field='name' header='Name' width='100'></e-column>
|
|
26
|
-
* </e-columns>
|
|
27
|
-
* </ejs-multicolumncombobox>
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
class ColumnDirective extends ComplexBase {
|
|
31
|
-
/**
|
|
32
|
-
* @param {?} viewContainerRef
|
|
33
|
-
*/
|
|
34
|
-
constructor(viewContainerRef) {
|
|
35
|
-
super();
|
|
36
|
-
this.viewContainerRef = viewContainerRef;
|
|
37
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
38
|
-
this.registerEvents(outputs);
|
|
39
|
-
this.directivePropList = input;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
ColumnDirective.decorators = [
|
|
43
|
-
{ type: Directive, args: [{
|
|
44
|
-
selector: 'ejs-multicolumncombobox>e-columns>e-column',
|
|
45
|
-
inputs: input,
|
|
46
|
-
outputs: outputs,
|
|
47
|
-
queries: {}
|
|
48
|
-
},] },
|
|
49
|
-
];
|
|
50
|
-
/**
|
|
51
|
-
* @nocollapse
|
|
52
|
-
*/
|
|
53
|
-
ColumnDirective.ctorParameters = () => [
|
|
54
|
-
{ type: ViewContainerRef, },
|
|
55
|
-
];
|
|
56
|
-
ColumnDirective.propDecorators = {
|
|
57
|
-
'template': [{ type: ContentChild, args: ['template',] },],
|
|
58
|
-
'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
|
|
59
|
-
};
|
|
60
|
-
__decorate([
|
|
61
|
-
Template(),
|
|
62
|
-
__metadata("design:type", Object)
|
|
63
|
-
], ColumnDirective.prototype, "template", void 0);
|
|
64
|
-
__decorate([
|
|
65
|
-
Template(),
|
|
66
|
-
__metadata("design:type", Object)
|
|
67
|
-
], ColumnDirective.prototype, "headerTemplate", void 0);
|
|
68
|
-
/**
|
|
69
|
-
* Column Array Directive
|
|
70
|
-
*/
|
|
71
|
-
class ColumnsDirective extends ArrayBase {
|
|
72
|
-
constructor() {
|
|
73
|
-
super('columns');
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
ColumnsDirective.decorators = [
|
|
77
|
-
{ type: Directive, args: [{
|
|
78
|
-
selector: 'ejs-multicolumncombobox>e-columns',
|
|
79
|
-
queries: {
|
|
80
|
-
children: new ContentChildren(ColumnDirective)
|
|
81
|
-
},
|
|
82
|
-
},] },
|
|
83
|
-
];
|
|
84
|
-
/**
|
|
85
|
-
* @nocollapse
|
|
86
|
-
*/
|
|
7
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
8
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
10
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
11
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12
|
+
};
|
|
13
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
14
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
15
|
+
};
|
|
16
|
+
let input = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];
|
|
17
|
+
let outputs = [];
|
|
18
|
+
/**
|
|
19
|
+
* `e-column` directive represent a column of the Angular MultiColumnComboBox.
|
|
20
|
+
* It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`).
|
|
21
|
+
* ```html
|
|
22
|
+
* <ejs-multicolumncombobox [dataSource]='data'>
|
|
23
|
+
* <e-columns>
|
|
24
|
+
* <e-column field='ID' width='100'></e-column>
|
|
25
|
+
* <e-column field='name' header='Name' width='100'></e-column>
|
|
26
|
+
* </e-columns>
|
|
27
|
+
* </ejs-multicolumncombobox>
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
class ColumnDirective extends ComplexBase {
|
|
31
|
+
/**
|
|
32
|
+
* @param {?} viewContainerRef
|
|
33
|
+
*/
|
|
34
|
+
constructor(viewContainerRef) {
|
|
35
|
+
super();
|
|
36
|
+
this.viewContainerRef = viewContainerRef;
|
|
37
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
38
|
+
this.registerEvents(outputs);
|
|
39
|
+
this.directivePropList = input;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
ColumnDirective.decorators = [
|
|
43
|
+
{ type: Directive, args: [{
|
|
44
|
+
selector: 'ejs-multicolumncombobox>e-columns>e-column',
|
|
45
|
+
inputs: input,
|
|
46
|
+
outputs: outputs,
|
|
47
|
+
queries: {}
|
|
48
|
+
},] },
|
|
49
|
+
];
|
|
50
|
+
/**
|
|
51
|
+
* @nocollapse
|
|
52
|
+
*/
|
|
53
|
+
ColumnDirective.ctorParameters = () => [
|
|
54
|
+
{ type: ViewContainerRef, },
|
|
55
|
+
];
|
|
56
|
+
ColumnDirective.propDecorators = {
|
|
57
|
+
'template': [{ type: ContentChild, args: ['template',] },],
|
|
58
|
+
'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
|
|
59
|
+
};
|
|
60
|
+
__decorate([
|
|
61
|
+
Template(),
|
|
62
|
+
__metadata("design:type", Object)
|
|
63
|
+
], ColumnDirective.prototype, "template", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
Template(),
|
|
66
|
+
__metadata("design:type", Object)
|
|
67
|
+
], ColumnDirective.prototype, "headerTemplate", void 0);
|
|
68
|
+
/**
|
|
69
|
+
* Column Array Directive
|
|
70
|
+
*/
|
|
71
|
+
class ColumnsDirective extends ArrayBase {
|
|
72
|
+
constructor() {
|
|
73
|
+
super('columns');
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
ColumnsDirective.decorators = [
|
|
77
|
+
{ type: Directive, args: [{
|
|
78
|
+
selector: 'ejs-multicolumncombobox>e-columns',
|
|
79
|
+
queries: {
|
|
80
|
+
children: new ContentChildren(ColumnDirective)
|
|
81
|
+
},
|
|
82
|
+
},] },
|
|
83
|
+
];
|
|
84
|
+
/**
|
|
85
|
+
* @nocollapse
|
|
86
|
+
*/
|
|
87
87
|
ColumnsDirective.ctorParameters = () => [];
|
|
88
88
|
|
|
89
|
-
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
90
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
91
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
92
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
93
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
94
|
-
};
|
|
95
|
-
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
96
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
97
|
-
};
|
|
98
|
-
const 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'];
|
|
99
|
-
const outputs$1 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'change', 'close', 'created', 'filtering', 'open', 'select', 'valueChange'];
|
|
100
|
-
const twoWays = ['value'];
|
|
101
|
-
/**
|
|
102
|
-
* Represents the Essential JS 2 Angular MultiColumnComboBox Component.
|
|
103
|
-
* ```html
|
|
104
|
-
* <ejs-multicolumncombobox></ejs-multicolumncombobox>
|
|
105
|
-
* ```
|
|
106
|
-
*/
|
|
107
|
-
let MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = class MultiColumnComboBoxComponent extends MultiColumnComboBox {
|
|
108
|
-
/**
|
|
109
|
-
* @param {?} ngEle
|
|
110
|
-
* @param {?} srenderer
|
|
111
|
-
* @param {?} viewContainerRef
|
|
112
|
-
* @param {?} injector
|
|
113
|
-
* @param {?} cdr
|
|
114
|
-
*/
|
|
115
|
-
constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
|
|
116
|
-
super();
|
|
117
|
-
this.ngEle = ngEle;
|
|
118
|
-
this.srenderer = srenderer;
|
|
119
|
-
this.viewContainerRef = viewContainerRef;
|
|
120
|
-
this.injector = injector;
|
|
121
|
-
this.cdr = cdr;
|
|
122
|
-
this.tags = ['columns'];
|
|
123
|
-
this.element = this.ngEle.nativeElement;
|
|
124
|
-
this.injectedModules = this.injectedModules || [];
|
|
125
|
-
this.registerEvents(outputs$1);
|
|
126
|
-
this.addTwoWay.call(this, twoWays);
|
|
127
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
128
|
-
this.formContext = new FormBase();
|
|
129
|
-
this.formCompContext = new ComponentBase();
|
|
130
|
-
}
|
|
131
|
-
/**
|
|
132
|
-
* @param {?} registerFunction
|
|
133
|
-
* @return {?}
|
|
134
|
-
*/
|
|
135
|
-
registerOnChange(registerFunction) {
|
|
136
|
-
}
|
|
137
|
-
/**
|
|
138
|
-
* @param {?} registerFunction
|
|
139
|
-
* @return {?}
|
|
140
|
-
*/
|
|
141
|
-
registerOnTouched(registerFunction) {
|
|
142
|
-
}
|
|
143
|
-
/**
|
|
144
|
-
* @param {?} value
|
|
145
|
-
* @return {?}
|
|
146
|
-
*/
|
|
147
|
-
writeValue(value) {
|
|
148
|
-
}
|
|
149
|
-
/**
|
|
150
|
-
* @param {?} disabled
|
|
151
|
-
* @return {?}
|
|
152
|
-
*/
|
|
153
|
-
setDisabledState(disabled) {
|
|
154
|
-
}
|
|
155
|
-
/**
|
|
156
|
-
* @return {?}
|
|
157
|
-
*/
|
|
158
|
-
ngOnInit() {
|
|
159
|
-
this.formCompContext.ngOnInit(this);
|
|
160
|
-
}
|
|
161
|
-
/**
|
|
162
|
-
* @return {?}
|
|
163
|
-
*/
|
|
164
|
-
ngAfterViewInit() {
|
|
165
|
-
this.formContext.ngAfterViewInit(this);
|
|
166
|
-
}
|
|
167
|
-
/**
|
|
168
|
-
* @return {?}
|
|
169
|
-
*/
|
|
170
|
-
ngOnDestroy() {
|
|
171
|
-
this.formCompContext.ngOnDestroy(this);
|
|
172
|
-
}
|
|
173
|
-
/**
|
|
174
|
-
* @return {?}
|
|
175
|
-
*/
|
|
176
|
-
ngAfterContentChecked() {
|
|
177
|
-
this.tagObjects[0].instance = this.childColumns;
|
|
178
|
-
this.formCompContext.ngAfterContentChecked(this);
|
|
179
|
-
}
|
|
180
|
-
};
|
|
181
|
-
MultiColumnComboBoxComponent.decorators = [
|
|
182
|
-
{ type: Component, args: [{
|
|
183
|
-
selector: 'ejs-multicolumncombobox',
|
|
184
|
-
inputs: inputs,
|
|
185
|
-
outputs: outputs$1,
|
|
186
|
-
template: '',
|
|
187
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
188
|
-
providers: [
|
|
189
|
-
{
|
|
190
|
-
provide: NG_VALUE_ACCESSOR,
|
|
191
|
-
useExisting: forwardRef(() => MultiColumnComboBoxComponent_1),
|
|
192
|
-
multi: true
|
|
193
|
-
}
|
|
194
|
-
],
|
|
195
|
-
queries: {
|
|
196
|
-
childColumns: new ContentChild(ColumnsDirective)
|
|
197
|
-
}
|
|
198
|
-
},] },
|
|
199
|
-
];
|
|
200
|
-
/**
|
|
201
|
-
* @nocollapse
|
|
202
|
-
*/
|
|
203
|
-
MultiColumnComboBoxComponent.ctorParameters = () => [
|
|
204
|
-
{ type: ElementRef, },
|
|
205
|
-
{ type: Renderer2, },
|
|
206
|
-
{ type: ViewContainerRef, },
|
|
207
|
-
{ type: Injector, },
|
|
208
|
-
{ type: ChangeDetectorRef, },
|
|
209
|
-
];
|
|
210
|
-
MultiColumnComboBoxComponent.propDecorators = {
|
|
211
|
-
'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
|
|
212
|
-
'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
|
|
213
|
-
'groupTemplate': [{ type: ContentChild, args: ['groupTemplate',] },],
|
|
214
|
-
'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
|
|
215
|
-
'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
|
|
216
|
-
};
|
|
217
|
-
__decorate$1([
|
|
218
|
-
Template(),
|
|
219
|
-
__metadata$1("design:type", Object)
|
|
220
|
-
], MultiColumnComboBoxComponent.prototype, "footerTemplate", void 0);
|
|
221
|
-
__decorate$1([
|
|
222
|
-
Template(),
|
|
223
|
-
__metadata$1("design:type", Object)
|
|
224
|
-
], MultiColumnComboBoxComponent.prototype, "itemTemplate", void 0);
|
|
225
|
-
__decorate$1([
|
|
226
|
-
Template(),
|
|
227
|
-
__metadata$1("design:type", Object)
|
|
228
|
-
], MultiColumnComboBoxComponent.prototype, "groupTemplate", void 0);
|
|
229
|
-
__decorate$1([
|
|
230
|
-
Template('No records found'),
|
|
231
|
-
__metadata$1("design:type", Object)
|
|
232
|
-
], MultiColumnComboBoxComponent.prototype, "noRecordsTemplate", void 0);
|
|
233
|
-
__decorate$1([
|
|
234
|
-
Template('Request Failed'),
|
|
235
|
-
__metadata$1("design:type", Object)
|
|
236
|
-
], MultiColumnComboBoxComponent.prototype, "actionFailureTemplate", void 0);
|
|
237
|
-
MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = __decorate$1([
|
|
238
|
-
ComponentMixins([ComponentBase, FormBase]),
|
|
239
|
-
__metadata$1("design:paramtypes", [ElementRef,
|
|
240
|
-
Renderer2,
|
|
241
|
-
ViewContainerRef,
|
|
242
|
-
Injector,
|
|
243
|
-
ChangeDetectorRef])
|
|
244
|
-
], MultiColumnComboBoxComponent);
|
|
89
|
+
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
90
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
91
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
92
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
93
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
94
|
+
};
|
|
95
|
+
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
96
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
97
|
+
};
|
|
98
|
+
const 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'];
|
|
99
|
+
const outputs$1 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'change', 'close', 'created', 'filtering', 'open', 'select', 'valueChange'];
|
|
100
|
+
const twoWays = ['value'];
|
|
101
|
+
/**
|
|
102
|
+
* Represents the Essential JS 2 Angular MultiColumnComboBox Component.
|
|
103
|
+
* ```html
|
|
104
|
+
* <ejs-multicolumncombobox></ejs-multicolumncombobox>
|
|
105
|
+
* ```
|
|
106
|
+
*/
|
|
107
|
+
let MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = class MultiColumnComboBoxComponent extends MultiColumnComboBox {
|
|
108
|
+
/**
|
|
109
|
+
* @param {?} ngEle
|
|
110
|
+
* @param {?} srenderer
|
|
111
|
+
* @param {?} viewContainerRef
|
|
112
|
+
* @param {?} injector
|
|
113
|
+
* @param {?} cdr
|
|
114
|
+
*/
|
|
115
|
+
constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
|
|
116
|
+
super();
|
|
117
|
+
this.ngEle = ngEle;
|
|
118
|
+
this.srenderer = srenderer;
|
|
119
|
+
this.viewContainerRef = viewContainerRef;
|
|
120
|
+
this.injector = injector;
|
|
121
|
+
this.cdr = cdr;
|
|
122
|
+
this.tags = ['columns'];
|
|
123
|
+
this.element = this.ngEle.nativeElement;
|
|
124
|
+
this.injectedModules = this.injectedModules || [];
|
|
125
|
+
this.registerEvents(outputs$1);
|
|
126
|
+
this.addTwoWay.call(this, twoWays);
|
|
127
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
128
|
+
this.formContext = new FormBase();
|
|
129
|
+
this.formCompContext = new ComponentBase();
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* @param {?} registerFunction
|
|
133
|
+
* @return {?}
|
|
134
|
+
*/
|
|
135
|
+
registerOnChange(registerFunction) {
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* @param {?} registerFunction
|
|
139
|
+
* @return {?}
|
|
140
|
+
*/
|
|
141
|
+
registerOnTouched(registerFunction) {
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* @param {?} value
|
|
145
|
+
* @return {?}
|
|
146
|
+
*/
|
|
147
|
+
writeValue(value) {
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* @param {?} disabled
|
|
151
|
+
* @return {?}
|
|
152
|
+
*/
|
|
153
|
+
setDisabledState(disabled) {
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* @return {?}
|
|
157
|
+
*/
|
|
158
|
+
ngOnInit() {
|
|
159
|
+
this.formCompContext.ngOnInit(this);
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* @return {?}
|
|
163
|
+
*/
|
|
164
|
+
ngAfterViewInit() {
|
|
165
|
+
this.formContext.ngAfterViewInit(this);
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* @return {?}
|
|
169
|
+
*/
|
|
170
|
+
ngOnDestroy() {
|
|
171
|
+
this.formCompContext.ngOnDestroy(this);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* @return {?}
|
|
175
|
+
*/
|
|
176
|
+
ngAfterContentChecked() {
|
|
177
|
+
this.tagObjects[0].instance = this.childColumns;
|
|
178
|
+
this.formCompContext.ngAfterContentChecked(this);
|
|
179
|
+
}
|
|
180
|
+
};
|
|
181
|
+
MultiColumnComboBoxComponent.decorators = [
|
|
182
|
+
{ type: Component, args: [{
|
|
183
|
+
selector: 'ejs-multicolumncombobox',
|
|
184
|
+
inputs: inputs,
|
|
185
|
+
outputs: outputs$1,
|
|
186
|
+
template: '',
|
|
187
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
188
|
+
providers: [
|
|
189
|
+
{
|
|
190
|
+
provide: NG_VALUE_ACCESSOR,
|
|
191
|
+
useExisting: forwardRef(() => MultiColumnComboBoxComponent_1),
|
|
192
|
+
multi: true
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
queries: {
|
|
196
|
+
childColumns: new ContentChild(ColumnsDirective)
|
|
197
|
+
}
|
|
198
|
+
},] },
|
|
199
|
+
];
|
|
200
|
+
/**
|
|
201
|
+
* @nocollapse
|
|
202
|
+
*/
|
|
203
|
+
MultiColumnComboBoxComponent.ctorParameters = () => [
|
|
204
|
+
{ type: ElementRef, },
|
|
205
|
+
{ type: Renderer2, },
|
|
206
|
+
{ type: ViewContainerRef, },
|
|
207
|
+
{ type: Injector, },
|
|
208
|
+
{ type: ChangeDetectorRef, },
|
|
209
|
+
];
|
|
210
|
+
MultiColumnComboBoxComponent.propDecorators = {
|
|
211
|
+
'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
|
|
212
|
+
'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
|
|
213
|
+
'groupTemplate': [{ type: ContentChild, args: ['groupTemplate',] },],
|
|
214
|
+
'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
|
|
215
|
+
'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
|
|
216
|
+
};
|
|
217
|
+
__decorate$1([
|
|
218
|
+
Template(),
|
|
219
|
+
__metadata$1("design:type", Object)
|
|
220
|
+
], MultiColumnComboBoxComponent.prototype, "footerTemplate", void 0);
|
|
221
|
+
__decorate$1([
|
|
222
|
+
Template(),
|
|
223
|
+
__metadata$1("design:type", Object)
|
|
224
|
+
], MultiColumnComboBoxComponent.prototype, "itemTemplate", void 0);
|
|
225
|
+
__decorate$1([
|
|
226
|
+
Template(),
|
|
227
|
+
__metadata$1("design:type", Object)
|
|
228
|
+
], MultiColumnComboBoxComponent.prototype, "groupTemplate", void 0);
|
|
229
|
+
__decorate$1([
|
|
230
|
+
Template('No records found'),
|
|
231
|
+
__metadata$1("design:type", Object)
|
|
232
|
+
], MultiColumnComboBoxComponent.prototype, "noRecordsTemplate", void 0);
|
|
233
|
+
__decorate$1([
|
|
234
|
+
Template('Request Failed'),
|
|
235
|
+
__metadata$1("design:type", Object)
|
|
236
|
+
], MultiColumnComboBoxComponent.prototype, "actionFailureTemplate", void 0);
|
|
237
|
+
MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = __decorate$1([
|
|
238
|
+
ComponentMixins([ComponentBase, FormBase]),
|
|
239
|
+
__metadata$1("design:paramtypes", [ElementRef,
|
|
240
|
+
Renderer2,
|
|
241
|
+
ViewContainerRef,
|
|
242
|
+
Injector,
|
|
243
|
+
ChangeDetectorRef])
|
|
244
|
+
], MultiColumnComboBoxComponent);
|
|
245
245
|
var MultiColumnComboBoxComponent_1;
|
|
246
246
|
|
|
247
|
-
/**
|
|
248
|
-
* NgModule definition for the MultiColumnComboBox component.
|
|
249
|
-
*/
|
|
250
|
-
class MultiColumnComboBoxModule {
|
|
251
|
-
}
|
|
252
|
-
MultiColumnComboBoxModule.decorators = [
|
|
253
|
-
{ type: NgModule, args: [{
|
|
254
|
-
imports: [CommonModule],
|
|
255
|
-
declarations: [
|
|
256
|
-
MultiColumnComboBoxComponent,
|
|
257
|
-
ColumnDirective,
|
|
258
|
-
ColumnsDirective
|
|
259
|
-
],
|
|
260
|
-
exports: [
|
|
261
|
-
MultiColumnComboBoxComponent,
|
|
262
|
-
ColumnDirective,
|
|
263
|
-
ColumnsDirective
|
|
264
|
-
]
|
|
265
|
-
},] },
|
|
266
|
-
];
|
|
267
|
-
/**
|
|
268
|
-
* @nocollapse
|
|
269
|
-
*/
|
|
247
|
+
/**
|
|
248
|
+
* NgModule definition for the MultiColumnComboBox component.
|
|
249
|
+
*/
|
|
250
|
+
class MultiColumnComboBoxModule {
|
|
251
|
+
}
|
|
252
|
+
MultiColumnComboBoxModule.decorators = [
|
|
253
|
+
{ type: NgModule, args: [{
|
|
254
|
+
imports: [CommonModule],
|
|
255
|
+
declarations: [
|
|
256
|
+
MultiColumnComboBoxComponent,
|
|
257
|
+
ColumnDirective,
|
|
258
|
+
ColumnsDirective
|
|
259
|
+
],
|
|
260
|
+
exports: [
|
|
261
|
+
MultiColumnComboBoxComponent,
|
|
262
|
+
ColumnDirective,
|
|
263
|
+
ColumnsDirective
|
|
264
|
+
]
|
|
265
|
+
},] },
|
|
266
|
+
];
|
|
267
|
+
/**
|
|
268
|
+
* @nocollapse
|
|
269
|
+
*/
|
|
270
270
|
MultiColumnComboBoxModule.ctorParameters = () => [];
|
|
271
271
|
|
|
272
|
-
/**
|
|
273
|
-
* NgModule definition for the MultiColumnComboBox component with providers.
|
|
274
|
-
*/
|
|
275
|
-
class MultiColumnComboBoxAllModule {
|
|
276
|
-
}
|
|
277
|
-
MultiColumnComboBoxAllModule.decorators = [
|
|
278
|
-
{ type: NgModule, args: [{
|
|
279
|
-
imports: [CommonModule, MultiColumnComboBoxModule],
|
|
280
|
-
exports: [
|
|
281
|
-
MultiColumnComboBoxModule
|
|
282
|
-
],
|
|
283
|
-
providers: []
|
|
284
|
-
},] },
|
|
285
|
-
];
|
|
286
|
-
/**
|
|
287
|
-
* @nocollapse
|
|
288
|
-
*/
|
|
272
|
+
/**
|
|
273
|
+
* NgModule definition for the MultiColumnComboBox component with providers.
|
|
274
|
+
*/
|
|
275
|
+
class MultiColumnComboBoxAllModule {
|
|
276
|
+
}
|
|
277
|
+
MultiColumnComboBoxAllModule.decorators = [
|
|
278
|
+
{ type: NgModule, args: [{
|
|
279
|
+
imports: [CommonModule, MultiColumnComboBoxModule],
|
|
280
|
+
exports: [
|
|
281
|
+
MultiColumnComboBoxModule
|
|
282
|
+
],
|
|
283
|
+
providers: []
|
|
284
|
+
},] },
|
|
285
|
+
];
|
|
286
|
+
/**
|
|
287
|
+
* @nocollapse
|
|
288
|
+
*/
|
|
289
289
|
MultiColumnComboBoxAllModule.ctorParameters = () => [];
|
|
290
290
|
|
|
291
|
-
/**
|
|
292
|
-
* Generated bundle index. Do not edit.
|
|
291
|
+
/**
|
|
292
|
+
* Generated bundle index. Do not edit.
|
|
293
293
|
*/
|
|
294
294
|
|
|
295
295
|
export { ColumnDirective, ColumnsDirective, MultiColumnComboBoxComponent, MultiColumnComboBoxModule, MultiColumnComboBoxAllModule, inputs as ɵa, outputs$1 as ɵb };
|
package/{license → LICENSE}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
|
2
|
-
|
|
3
|
-
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
|
4
|
-
|
|
5
|
-
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
|
6
|
-
|
|
7
|
-
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
|
8
|
-
|
|
9
|
-
The Syncfusion license that contains the terms and conditions can be found at
|
|
10
|
-
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|
|
1
|
+
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
|
2
|
+
|
|
3
|
+
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
|
4
|
+
|
|
5
|
+
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
|
6
|
+
|
|
7
|
+
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
|
8
|
+
|
|
9
|
+
The Syncfusion license that contains the terms and conditions can be found at
|
|
10
|
+
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|