@syncfusion/ej2-angular-multicolumn-combobox 27.2.5-ngcc → 28.1.33-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 +4 -41
- package/@syncfusion/ej2-angular-multicolumn-combobox.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-multicolumn-combobox.js +4 -41
- package/@syncfusion/ej2-angular-multicolumn-combobox.js.map +1 -1
- package/README.md +2 -2
- package/dist/ej2-angular-multicolumn-combobox.umd.js +3 -48
- package/dist/ej2-angular-multicolumn-combobox.umd.js.map +1 -1
- package/dist/ej2-angular-multicolumn-combobox.umd.min.js +3 -3
- package/dist/ej2-angular-multicolumn-combobox.umd.min.js.map +1 -1
- package/ej2-angular-multicolumn-combobox.metadata.json +1 -1
- package/package.json +9 -9
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +1 -1
- package/src/multicolumn-combobox/multicolumncombobox-all.module.d.ts +0 -5
|
@@ -11,7 +11,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
11
11
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef, forwardRef } from '@angular/core';
|
|
12
12
|
import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, FormBase, Template, setValue } from '@syncfusion/ej2-angular-base';
|
|
13
13
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
14
|
-
import {
|
|
14
|
+
import { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';
|
|
15
15
|
import { CommonModule } from '@angular/common';
|
|
16
16
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
17
17
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -146,34 +146,6 @@ var MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = /** @class *
|
|
|
146
146
|
_this.tags = ['columns'];
|
|
147
147
|
_this.element = _this.ngEle.nativeElement;
|
|
148
148
|
_this.injectedModules = _this.injectedModules || [];
|
|
149
|
-
try {
|
|
150
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxVirtualScroll');
|
|
151
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
152
|
-
_this.injectedModules.push(mod);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
catch (_a) { }
|
|
156
|
-
try {
|
|
157
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxSort');
|
|
158
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
159
|
-
_this.injectedModules.push(mod);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
catch (_b) { }
|
|
163
|
-
try {
|
|
164
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxEdit');
|
|
165
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
166
|
-
_this.injectedModules.push(mod);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
catch (_c) { }
|
|
170
|
-
try {
|
|
171
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxGroup');
|
|
172
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
173
|
-
_this.injectedModules.push(mod);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
catch (_d) { }
|
|
177
149
|
_this.registerEvents(outputs$1);
|
|
178
150
|
_this.addTwoWay.call(_this, twoWays);
|
|
179
151
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
@@ -324,10 +296,6 @@ MultiColumnComboBoxModule.decorators = [
|
|
|
324
296
|
* @nocollapse
|
|
325
297
|
*/
|
|
326
298
|
MultiColumnComboBoxModule.ctorParameters = function () { return []; };
|
|
327
|
-
var VirtualScrollService = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: VirtualScroll };
|
|
328
|
-
var SortService = { provide: 'MultiColumn-ComboBoxSort', useValue: Sort };
|
|
329
|
-
var EditService = { provide: 'MultiColumn-ComboBoxEdit', useValue: Edit };
|
|
330
|
-
var GroupService = { provide: 'MultiColumn-ComboBoxGroup', useValue: Group };
|
|
331
299
|
/**
|
|
332
300
|
* NgModule definition for the MultiColumnComboBox component with providers.
|
|
333
301
|
*/
|
|
@@ -342,12 +310,7 @@ MultiColumnComboBoxAllModule.decorators = [
|
|
|
342
310
|
exports: [
|
|
343
311
|
MultiColumnComboBoxModule
|
|
344
312
|
],
|
|
345
|
-
providers: [
|
|
346
|
-
VirtualScrollService,
|
|
347
|
-
SortService,
|
|
348
|
-
EditService,
|
|
349
|
-
GroupService
|
|
350
|
-
]
|
|
313
|
+
providers: []
|
|
351
314
|
},] },
|
|
352
315
|
];
|
|
353
316
|
/**
|
|
@@ -357,6 +320,6 @@ MultiColumnComboBoxAllModule.ctorParameters = function () { return []; };
|
|
|
357
320
|
/**
|
|
358
321
|
* Generated bundle index. Do not edit.
|
|
359
322
|
*/
|
|
360
|
-
export { ColumnDirective, ColumnsDirective, MultiColumnComboBoxComponent, MultiColumnComboBoxModule, MultiColumnComboBoxAllModule,
|
|
361
|
-
export {
|
|
323
|
+
export { ColumnDirective, ColumnsDirective, MultiColumnComboBoxComponent, MultiColumnComboBoxModule, MultiColumnComboBoxAllModule, inputs as ɵa, outputs$1 as ɵb };
|
|
324
|
+
export { MultiColumnGrid, FilterType, SortOrder, SortType, WrapMode, FieldSettings, Column, GridSettings, MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';
|
|
362
325
|
//# sourceMappingURL=ej2-angular-multicolumn-combobox.es5.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-multicolumn-combobox.es5.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/ej2-angular-multicolumn-combobox.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ColumnDirective,ColumnsDirective,MultiColumnComboBoxComponent,MultiColumnComboBoxModule,MultiColumnComboBoxAllModule,VirtualScrollService,SortService,EditService,GroupService,Sort,VirtualScroll,Group,Edit,MultiColumnGrid,TextAlign,GridLine,FloatLabelType,FilterType,SortOrder,SortType,WrapMode,FieldSettings,Column,GridSettings,PopupEventArgs,FilteringEventArgs,SelectEventArgs,ChangeEventArgs,DataResult,MultiColumnComboBox,MultiColumnGridModel,FieldSettingsModel,ColumnModel,GridSettingsModel,MultiColumnComboBoxModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/multicolumn-combobox/multicolumncombobox.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\nimport {VirtualScroll, Sort, Edit, Group} from '@syncfusion/ej2-multicolumn-combobox';\n\n\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ SortService: ValueProvider = { provide: 'MultiColumn-ComboBoxSort', useValue: Sort};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'MultiColumn-ComboBoxEdit', useValue: Edit};\nexport const /** @type {?} */ GroupService: ValueProvider = { provide: 'MultiColumn-ComboBoxGroup', useValue: Group};\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n VirtualScrollService,\n SortService,\n EditService,\n GroupService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxSort');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxGroup');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-angular-multicolumn-combobox.es5.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/ej2-angular-multicolumn-combobox.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ColumnDirective,ColumnsDirective,MultiColumnComboBoxComponent,MultiColumnComboBoxModule,MultiColumnComboBoxAllModule,MultiColumnGrid,TextAlign,GridLine,FloatLabelType,FilterType,SortOrder,SortType,WrapMode,FieldSettings,Column,GridSettings,PopupEventArgs,FilteringEventArgs,SelectEventArgs,ChangeEventArgs,ResizeArgs,DataResult,MultiColumnComboBox,MultiColumnGridModel,FieldSettingsModel,ColumnModel,GridSettingsModel,MultiColumnComboBoxModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/multicolumn-combobox/multicolumncombobox.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AIAA,IAKI,KAAA,GAAkB,CAAA,kBAAE,EAAmB,mBAAA,EAAqB,OAAA,EAAS,QAAA,EAAU,QAAA,EAAU,gBAAA,EAAkB,UAAA,EAAY,WAAA,EAAa,OAAA,CAAQ,CAAC;AACjJ,IAAI,OAAA,GAAoB,EAAA,CAAG;;;;;;;;;;;;;AAa3B;IACC,mCAAA;;;;IA+DD,yBAIwB,gBAAkB;QAJ1C,YACQ,iBAAO,SAIV;QADmB,KAAxB,CAAA,gBAAwB,GAAA,gBAAA,CAAkB;QAFlC,QAAQ,CAAC,iBAAiB,EAAE,KAAI,EAAE,KAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,KAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAC7B,KAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;;IACvC,CAAK;;CArEL,CACC,WAAA;AAyEM,eAAP,CAAA,UAAO,GAAoC;IAH3C,EAIE,IAAA,EAAM,SAAA,EAAW,IAAA,EAAM,CAAA;gBAHrB,QAAQ,EAIE,4CAAA;gBAHV,MAAM,EAIE,KAAA;gBAHR,OAAO,EAIE,OAAA;gBAHT,OAAO,EAIE,EAFR;aACJ,EAIC,EAAG;CAHJ,CAIC;;;;AAED,eAAD,CAAA,cAAC,GAAA,cAAA,OAAA;IADD,EAAC,IAAI,EAAE,gBAAgB,GAAG;CACzB,EAAA,CAAA,CAAC;AAGK,eAAP,CAAA,cAAO,GAAyD;IADhE,UAAU,EAEE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,UAAE,EAAU,EAAG,EAAE;IAD1D,gBAAgB,EAEE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,gBAAE,EAAgB,EAAG,EAAE;CADrE,CAEC;AAzCE,UAAJ,CAAA;IAIK,QAAA,EAAA;;CAJL,EAAA,eAAA,CAAA,SAAA,EAAA,UAAA,EAAA,KAAA,CAAA,CAAyB,CAAzB;AAUI,UAAJ,CAAA;IAKK,QAAA,EAAA;;CALL,EAAA,eAAA,CAAA,SAAA,EAAA,gBAAA,EAAA,KAAA,CAAA,CAA+B,CAA/B;AAgCA;;;AAqFA;IA9EC,oCAAA;IA+ED;eACQ,kBAAM,SAAS,CAAC;IACxB,CAAK;;CAHL,CA9EC,SAAA;AAIM,gBAAP,CAAA,UAAO,GAAoC;IA+E3C,EA9EE,IAAA,EAAM,SAAA,EAAW,IAAA,EAAM,CAAA;gBA+ErB,QAAQ,EA9EE,mCAAA;gBA+EV,OAAO,EA9EE;oBA+EL,QAAQ,EA9EE,IAAI,eAAA,CAAgB,eAAC,CAAe;iBA+EjD;aACJ,EA9EC,EAAG;CA+EJ,CA9EC;;;;AAED,gBAAD,CAAA,cAAC,GAAA,cAAA,OAAA,EAiFA,EAjFA,CAiFA,CAAC;;;;;;;;;;;;;;;ADpNF,IAOa,MAAA,GAAmB,CAAA,uBAAE,EAAuB,gBAAC,EAAgB,cAAC,EAAc,SAAC,EAAS,UAAC,EAAU,YAAC,EAAY,UAAC,EAAU,mBAAC,EAAmB,WAAC,EAAW,sBAAC,EAAsB,QAAC,EAAQ,YAAC,EAAY,gBAAC,EAAgB,gBAAC,EAAgB,cAAC,EAAc,eAAC,EAAe,gBAAC,EAAgB,OAAC,EAAO,cAAC,EAAc,QAAC,EAAQ,mBAAC,EAAmB,aAAC,EAAa,aAAC,EAAa,YAAC,EAAY,OAAC,EAAO,UAAC,EAAU,iBAAC,EAAiB,WAAC,EAAW,UAAC,EAAU,MAAC,EAAM,OAAC,EAAO,OAAC,CAAO,CAAC;AACtd,IAAaE,SAAA,GAAoB,CAAA,OAAE,EAAQ,MAAA,EAAQ,aAAA,EAAc,gBAAC,EAAgB,eAAC,EAAe,QAAC,EAAQ,OAAC,EAAO,SAAC,EAAS,WAAC,EAAW,MAAC,EAAM,QAAC,EAAQ,aAAC,CAAa,CAAC;AACxK,IAAa,OAAA,GAAoB,CAAA,OAAE,CAAO,CAAC;;;;;;;AAQ3C,IAAa,4BAA4B,GAAzC,8BAAA;IAAkD,gDAAmB;;;;;;;;IAgErE,sCADwB,KAAO,EAAoB,SAAW,EAAmB,gBAAkB,EAAyB,QAAU,EAAkB,GAAK;QAC7J,YAKQ,iBAAO,SASV;QAfmB,KAAxB,CAAA,KAAwB,GAAA,KAAA,CAAO;QAAoB,KAAnD,CAAA,SAAmD,GAAA,SAAA,CAAW;QAAmB,KAAjF,CAAA,gBAAiF,GAAA,gBAAA,CAAkB;QAAyB,KAA5H,CAAA,QAA4H,GAAA,QAAA,CAAU;QAAkB,KAAxJ,CAAA,GAAwJ,GAAA,GAAA,CAAK;QA9ClJ,KAAX,CAAA,IAAW,GAAiB,CAAA,SAAE,CAAS,CAAC;QAqDhC,KAAI,CAAC,OAAO,GAAG,KAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,KAAI,CAAC,eAAe,GAAG,KAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAElD,KAAI,CAAC,cAAc,CAACA,SAAO,CAAC,CAAC;QAC7B,KAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAI,EAAE,OAAO,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,EAAE,KAAI,EAAE,KAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,KAAI,CAAC,WAAW,GAAI,IAAI,QAAQ,EAAE,CAAC;QACnC,KAAI,CAAC,eAAe,GAAI,IAAI,aAAa,EAAE,CAAC;;IACpD,CAAK;;;;;IAHA,uDAAA,GAAA,UAAA,gBAAA;IASL,CAAK;;;;;IANA,wDAAA,GAAA,UAAA,gBAAA;IAYL,CAAK;;;;;IATA,iDAAA,GAAA,UAAA,KAAA;IAeL,CAAK;;;;;IAZA,uDAAA,GAAA,UAAA,QAAA;IAkBL,CAAK;;;;IAfA,+CAAA,GAAA;QAoBG,IAAI,CAnBC,eAAC,CAAe,QAAC,CAAQ,IAAC,CAAI,CAAC;IAoB5C,CAAK;;;;IAjBA,sDAAA,GAAA;QAsBG,IAAI,CArBC,WAAC,CAAW,eAAC,CAAe,IAAC,CAAI,CAAC;IAsB/C,CAAK;;;;IAnBA,kDAAA,GAAA;QAwBG,IAAI,CAvBC,eAAC,CAAe,WAAC,CAAW,IAAC,CAAI,CAAC;IAwB/C,CAAK;;;;IArBA,4DAAA,GAAA;QA0BG,IAAI,CAzBC,UAAC,CAAU,CAAC,CAAC,CAAC,QAAC,GAAU,IAAA,CAAK,YAAC,CAAY;QA0BhD,IAAI,CAzBC,eAAC,CAAe,qBAAC,CAAqB,IAAC,CAAI,CAAC;IA0BzD,CAAK;IAuCL,mCAAC;AAAD,CAAC,AAtKD,CAAkD,mBAAmB,EAsKpE,CAAA;AA5DM,4BAAP,CAAA,UAAO,GAAoC;IAyB3C,EAxBE,IAAA,EAAM,SAAA,EAAW,IAAA,EAAM,CAAA;gBAyBrB,QAAQ,EAxBE,yBAAA;gBAyBV,MAAM,EAxBE,MAAA;gBAyBR,OAAO,EAxBEA,SAAA;gBAyBT,QAAQ,EAxBE,EAAA;gBAyBV,eAAe,EAxBE,uBAAA,CAAwB,MAAC;gBAyB1C,SAAS,EAxBE;oBAyBP;wBACI,OAAO,EAxBE,iBAAA;wBAOnB,WAAA,EANuB,UAAA,CAAW,cAAM,OAAA,8BAAA,EAAA,CAAA,CAA6B;wBAyB3D,KAAK,EAxBE,IAAA;qBAyBV;iBACJ;gBACD,OAAO,EAxBE;oBAyBL,YAAY,EAxBE,IAAI,YAAA,CAAa,gBAAC,CAAgB;iBAyBnD;aACJ,EAxBC,EAAG;CAyBJ,CAxBC;;;;AAED,4BAAD,CAAA,cAAC,GAAA,cAAA,OAAA;IA2BD,EAAC,IAAI,EAAE,UAAU,GAAG;IACpB,EAAC,IAAI,EAAE,SAAS,GAAG;IACnB,EAAC,IAAI,EAAE,gBAAgB,GAAG;IAC1B,EAAC,IAAI,EAAE,QAAQ,GAAG;IAClB,EAAC,IAAI,EAAE,iBAAiB,GAAG;CAC1B,EAhCA,CAgCA,CAAC;AAzBK,4BAAP,CAAA,cAAO,GAAyD;IA2BhE,gBAAgB,EA1BE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,gBAAE,EAAgB,EAAG,EAAE;IA2BtE,cAAc,EA1BE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,cAAE,EAAc,EAAG,EAAE;IA2BlE,eAAe,EA1BE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,eAAE,EAAe,EAAG,EAAE;IA2BpE,mBAAmB,EA1BE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,mBAAE,EAAmB,EAAG,EAAE;IA2B5E,uBAAuB,EA1BE,CAAA,EAAG,IAAA,EAAM,YAAA,EAAc,IAAA,EAAM,CAAA,uBAAE,EAAuB,EAAG,EAAE;CA2BnF,CA1BC;AAlHED,YAAJ,CAAA;IAEK,QAAA,EAAA;;CAFL,EAAA,4BAAA,CAAA,SAAA,EAAA,gBAAA,EAAA,KAAA,CAAA,CAA+B,CAA/B;AAaIA,YAAJ,CAAA;IAGK,QAAA,EAAA;;CAHL,EAAA,4BAAA,CAAA,SAAA,EAAA,cAAA,EAAA,KAAA,CAAA,CAA6B,CAA7B;AAUIA,YAAJ,CAAA;IAIK,QAAA,EAAA;;CAJL,EAAA,4BAAA,CAAA,SAAA,EAAA,eAAA,EAAA,KAAA,CAAA,CAA8B,CAA9B;AAGAA,YAAA,CAAA;IADK,QAKC,CAAQ,kBAAC,CAAkB;;CACjC,EAAA,4BAAA,CAAA,SAAA,EAAA,mBAAA,EAAA,KAAA,CAAA,CAAkC,CAAlC;AAFAA,YAAA,CAAA;IADK,QAKC,CAAQ,gBAAC,CAAgB;;CAC/B,EAAA,4BAAA,CAAA,SAAA,EAAA,uBAAA,EAAA,KAAA,CAAA,CAAsC,CAAtC;AA3Da,4BAA4B,GAAzC,8BAAA,GAAAA,YAAA,CAAA;IACC,eAAA,CAAA,CAAA,aAAA,EAAA,QAAA,CAAA,CAAA;IA8DDD,YAAA,CAAA,mBAAA,EAAA,CAA+B,UAAA;QAA+B,SAAA;QAAoC,gBAAC;QAAmC,QAAA;QAAuB,iBAAA,CAA7J,CAAA;CA/DA,EAAa,4BAA4B,CAsKxC,CAtKD;AAAA,IAAA,8BAAA,CAAA;ADbA;;;AAGA;IAAA;;;CAAA;AAEgD,yBAAhD,CAAA,UAAgD,GAAoC;IADpF,EAEE,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBADpB,OAAO,EAEE,CAAA,YAAE,CAAY;gBADvB,YAAY,EAEE;oBADV,4BAA4B;oBAC5B,eAAe;oBACf,gBAAgB;iBACnB;gBACD,OAAO,EAEE;oBADL,4BAA4B;oBAC5B,eAAe;oBACf,gBAAgB;iBACnB;aACJ,EAEC,EAAG;CADJ,CAEC;;;;AAED,yBAAD,CAAA,cAAC,GAAA,cAAA,OAAA,EACA,EADA,CACA,CAAC;ADrBF;;;AAGA;IAAA;;;CAAA;AAMmD,4BAAnD,CAAA,UAAmD,GAAoC;IALvF,EAME,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBALpB,OAAO,EAME,CAAA,YAAE,EAAa,yBAAA,CAA0B;gBALlD,OAAO,EAME;oBALL,yBAAyB;iBAC5B;gBACD,SAAS,EAMC,EAJT;aACJ,EAMC,EAAG;CALJ,CAMC;;;;AAED,4BAAD,CAAA,cAAC,GAAA,cAAA,OAAA,EAHA,EAGA,CAHA,CAAC;ADvBF;;GAEG;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef, forwardRef } from '@angular/core';
|
|
2
2
|
import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, FormBase, Template, setValue } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import {
|
|
4
|
+
import { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';
|
|
5
5
|
import { CommonModule } from '@angular/common';
|
|
6
6
|
|
|
7
7
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
@@ -122,34 +122,6 @@ let MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = class MultiC
|
|
|
122
122
|
this.tags = ['columns'];
|
|
123
123
|
this.element = this.ngEle.nativeElement;
|
|
124
124
|
this.injectedModules = this.injectedModules || [];
|
|
125
|
-
try {
|
|
126
|
-
let mod = this.injector.get('MultiColumn-ComboBoxVirtualScroll');
|
|
127
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
128
|
-
this.injectedModules.push(mod);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
catch (_a) { }
|
|
132
|
-
try {
|
|
133
|
-
let mod = this.injector.get('MultiColumn-ComboBoxSort');
|
|
134
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
135
|
-
this.injectedModules.push(mod);
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
catch (_b) { }
|
|
139
|
-
try {
|
|
140
|
-
let mod = this.injector.get('MultiColumn-ComboBoxEdit');
|
|
141
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
142
|
-
this.injectedModules.push(mod);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
catch (_c) { }
|
|
146
|
-
try {
|
|
147
|
-
let mod = this.injector.get('MultiColumn-ComboBoxGroup');
|
|
148
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
149
|
-
this.injectedModules.push(mod);
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
catch (_d) { }
|
|
153
125
|
this.registerEvents(outputs$1);
|
|
154
126
|
this.addTwoWay.call(this, twoWays);
|
|
155
127
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
@@ -297,10 +269,6 @@ MultiColumnComboBoxModule.decorators = [
|
|
|
297
269
|
*/
|
|
298
270
|
MultiColumnComboBoxModule.ctorParameters = () => [];
|
|
299
271
|
|
|
300
|
-
const VirtualScrollService = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: VirtualScroll };
|
|
301
|
-
const SortService = { provide: 'MultiColumn-ComboBoxSort', useValue: Sort };
|
|
302
|
-
const EditService = { provide: 'MultiColumn-ComboBoxEdit', useValue: Edit };
|
|
303
|
-
const GroupService = { provide: 'MultiColumn-ComboBoxGroup', useValue: Group };
|
|
304
272
|
/**
|
|
305
273
|
* NgModule definition for the MultiColumnComboBox component with providers.
|
|
306
274
|
*/
|
|
@@ -312,12 +280,7 @@ MultiColumnComboBoxAllModule.decorators = [
|
|
|
312
280
|
exports: [
|
|
313
281
|
MultiColumnComboBoxModule
|
|
314
282
|
],
|
|
315
|
-
providers: [
|
|
316
|
-
VirtualScrollService,
|
|
317
|
-
SortService,
|
|
318
|
-
EditService,
|
|
319
|
-
GroupService
|
|
320
|
-
]
|
|
283
|
+
providers: []
|
|
321
284
|
},] },
|
|
322
285
|
];
|
|
323
286
|
/**
|
|
@@ -329,6 +292,6 @@ MultiColumnComboBoxAllModule.ctorParameters = () => [];
|
|
|
329
292
|
* Generated bundle index. Do not edit.
|
|
330
293
|
*/
|
|
331
294
|
|
|
332
|
-
export { ColumnDirective, ColumnsDirective, MultiColumnComboBoxComponent, MultiColumnComboBoxModule, MultiColumnComboBoxAllModule,
|
|
333
|
-
export {
|
|
295
|
+
export { ColumnDirective, ColumnsDirective, MultiColumnComboBoxComponent, MultiColumnComboBoxModule, MultiColumnComboBoxAllModule, inputs as ɵa, outputs$1 as ɵb };
|
|
296
|
+
export { MultiColumnGrid, FilterType, SortOrder, SortType, WrapMode, FieldSettings, Column, GridSettings, MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';
|
|
334
297
|
//# sourceMappingURL=ej2-angular-multicolumn-combobox.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-multicolumn-combobox.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/ej2-angular-multicolumn-combobox.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ColumnDirective,ColumnsDirective,MultiColumnComboBoxComponent,MultiColumnComboBoxModule,MultiColumnComboBoxAllModule,VirtualScrollService,SortService,EditService,GroupService,Sort,VirtualScroll,Group,Edit,MultiColumnGrid,TextAlign,GridLine,FloatLabelType,FilterType,SortOrder,SortType,WrapMode,FieldSettings,Column,GridSettings,PopupEventArgs,FilteringEventArgs,SelectEventArgs,ChangeEventArgs,DataResult,MultiColumnComboBox,MultiColumnGridModel,FieldSettingsModel,ColumnModel,GridSettingsModel,MultiColumnComboBoxModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/multicolumn-combobox/multicolumncombobox.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\nimport {VirtualScroll, Sort, Edit, Group} from '@syncfusion/ej2-multicolumn-combobox';\n\n\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ SortService: ValueProvider = { provide: 'MultiColumn-ComboBoxSort', useValue: Sort};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'MultiColumn-ComboBoxEdit', useValue: Edit};\nexport const /** @type {?} */ GroupService: ValueProvider = { provide: 'MultiColumn-ComboBoxGroup', useValue: Group};\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n VirtualScrollService,\n SortService,\n EditService,\n GroupService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxSort');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxGroup');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-angular-multicolumn-combobox.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/ej2-angular-multicolumn-combobox.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ColumnDirective,ColumnsDirective,MultiColumnComboBoxComponent,MultiColumnComboBoxModule,MultiColumnComboBoxAllModule,MultiColumnGrid,TextAlign,GridLine,FloatLabelType,FilterType,SortOrder,SortType,WrapMode,FieldSettings,Column,GridSettings,PopupEventArgs,FilteringEventArgs,SelectEventArgs,ChangeEventArgs,ResizeArgs,DataResult,MultiColumnComboBox,MultiColumnGridModel,FieldSettingsModel,ColumnModel,GridSettingsModel,MultiColumnComboBoxModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/multicolumn-combobox/multicolumncombobox.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs"],"mappings":"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"}
|
package/README.md
CHANGED
|
@@ -38,10 +38,10 @@ Product support is available through the following mediums.
|
|
|
38
38
|
|
|
39
39
|
## License and copyright
|
|
40
40
|
|
|
41
|
-
> This is a commercial product and requires a paid license for possession or use. Syncfusion
|
|
41
|
+
> This is a commercial product and requires a paid license for possession or use. Syncfusion<sup>®</sup> licensed software, including this component, is subject to the terms and conditions of Syncfusion<sup>®</sup> [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
|
|
42
42
|
|
|
43
43
|
> A [free community license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
|
|
44
44
|
|
|
45
45
|
See [LICENSE FILE](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license?utm_source=npm&utm_campaign=multicolumn-combobox) for more info.
|
|
46
46
|
|
|
47
|
-
© Copyright 2024 Syncfusion
|
|
47
|
+
© Copyright 2024 Syncfusion<sup>®</sup> Inc. All Rights Reserved. The Syncfusion<sup>®</sup> Essential Studio<sup>®</sup> license and copyright applies to this distribution.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-multicolumn-combobox.umd.js
|
|
3
|
-
* version :
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 -
|
|
3
|
+
* version : 28.1.33
|
|
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
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
@@ -156,34 +156,6 @@ exports.MultiColumnComboBoxComponent = MultiColumnComboBoxComponent_1 = /** @cla
|
|
|
156
156
|
_this.tags = ['columns'];
|
|
157
157
|
_this.element = _this.ngEle.nativeElement;
|
|
158
158
|
_this.injectedModules = _this.injectedModules || [];
|
|
159
|
-
try {
|
|
160
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxVirtualScroll');
|
|
161
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
162
|
-
_this.injectedModules.push(mod);
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
catch (_a) { }
|
|
166
|
-
try {
|
|
167
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxSort');
|
|
168
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
169
|
-
_this.injectedModules.push(mod);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
catch (_b) { }
|
|
173
|
-
try {
|
|
174
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxEdit');
|
|
175
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
176
|
-
_this.injectedModules.push(mod);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
catch (_c) { }
|
|
180
|
-
try {
|
|
181
|
-
var mod = _this.injector.get('MultiColumn-ComboBoxGroup');
|
|
182
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
183
|
-
_this.injectedModules.push(mod);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
catch (_d) { }
|
|
187
159
|
_this.registerEvents(outputs$1);
|
|
188
160
|
_this.addTwoWay.call(_this, twoWays);
|
|
189
161
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
@@ -334,10 +306,6 @@ MultiColumnComboBoxModule.decorators = [
|
|
|
334
306
|
* @nocollapse
|
|
335
307
|
*/
|
|
336
308
|
MultiColumnComboBoxModule.ctorParameters = function () { return []; };
|
|
337
|
-
var VirtualScrollService = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: ej2MulticolumnCombobox.VirtualScroll };
|
|
338
|
-
var SortService = { provide: 'MultiColumn-ComboBoxSort', useValue: ej2MulticolumnCombobox.Sort };
|
|
339
|
-
var EditService = { provide: 'MultiColumn-ComboBoxEdit', useValue: ej2MulticolumnCombobox.Edit };
|
|
340
|
-
var GroupService = { provide: 'MultiColumn-ComboBoxGroup', useValue: ej2MulticolumnCombobox.Group };
|
|
341
309
|
/**
|
|
342
310
|
* NgModule definition for the MultiColumnComboBox component with providers.
|
|
343
311
|
*/
|
|
@@ -352,12 +320,7 @@ MultiColumnComboBoxAllModule.decorators = [
|
|
|
352
320
|
exports: [
|
|
353
321
|
MultiColumnComboBoxModule
|
|
354
322
|
],
|
|
355
|
-
providers: [
|
|
356
|
-
VirtualScrollService,
|
|
357
|
-
SortService,
|
|
358
|
-
EditService,
|
|
359
|
-
GroupService
|
|
360
|
-
]
|
|
323
|
+
providers: []
|
|
361
324
|
},] },
|
|
362
325
|
];
|
|
363
326
|
/**
|
|
@@ -369,16 +332,8 @@ exports.ColumnDirective = ColumnDirective;
|
|
|
369
332
|
exports.ColumnsDirective = ColumnsDirective;
|
|
370
333
|
exports.MultiColumnComboBoxModule = MultiColumnComboBoxModule;
|
|
371
334
|
exports.MultiColumnComboBoxAllModule = MultiColumnComboBoxAllModule;
|
|
372
|
-
exports.VirtualScrollService = VirtualScrollService;
|
|
373
|
-
exports.SortService = SortService;
|
|
374
|
-
exports.EditService = EditService;
|
|
375
|
-
exports.GroupService = GroupService;
|
|
376
335
|
exports.ɵa = inputs;
|
|
377
336
|
exports.ɵb = outputs$1;
|
|
378
|
-
exports.Sort = ej2MulticolumnCombobox.Sort;
|
|
379
|
-
exports.VirtualScroll = ej2MulticolumnCombobox.VirtualScroll;
|
|
380
|
-
exports.Group = ej2MulticolumnCombobox.Group;
|
|
381
|
-
exports.Edit = ej2MulticolumnCombobox.Edit;
|
|
382
337
|
exports.MultiColumnGrid = ej2MulticolumnCombobox.MultiColumnGrid;
|
|
383
338
|
exports.FilterType = ej2MulticolumnCombobox.FilterType;
|
|
384
339
|
exports.SortOrder = ej2MulticolumnCombobox.SortOrder;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-multicolumn-combobox.umd.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\nimport {VirtualScroll, Sort, Edit, Group} from '@syncfusion/ej2-multicolumn-combobox';\n\n\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ SortService: ValueProvider = { provide: 'MultiColumn-ComboBoxSort', useValue: Sort};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'MultiColumn-ComboBoxEdit', useValue: Edit};\nexport const /** @type {?} */ GroupService: ValueProvider = { provide: 'MultiColumn-ComboBoxGroup', useValue: Group};\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n VirtualScrollService,\n SortService,\n EditService,\n GroupService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxSort');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxGroup');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","Group","Edit","Sort","VirtualScroll","MultiColumnComboBoxComponent","ChangeDetectorRef","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","FormBase","__decorate","Template","ContentChild","forwardRef","NG_VALUE_ACCESSOR","ChangeDetectionStrategy","outputs","Component","MultiColumnComboBox","setValue","ContentChildren","Directive","ArrayBase","ComplexBase"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-angular-multicolumn-combobox.umd.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","MultiColumnComboBoxComponent","ChangeDetectorRef","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","FormBase","__decorate","Template","ContentChild","forwardRef","NG_VALUE_ACCESSOR","ChangeDetectionStrategy","outputs","Component","MultiColumnComboBox","setValue","ContentChildren","Directive","ArrayBase","ComplexBase"],"mappings":"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"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-multicolumn-combobox.umd.min.js
|
|
3
|
-
* version :
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 -
|
|
3
|
+
* version : 28.1.33
|
|
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
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
8
|
* applicable laws.
|
|
9
9
|
*/
|
|
10
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@angular/forms"),require("@syncfusion/ej2-multicolumn-combobox"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@angular/forms","@syncfusion/ej2-multicolumn-combobox","@angular/common"],t):t(e["ej2-angular-multicolumn-combobox"]={},e.ng.core,e.ej2.angular.base,e.ng.forms,e.ej2.multicolumn.combobox,e.ng.common)}(this,function(e,t,o,n,r,i){"use strict";var l=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])};return function(t,o){function n(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),
|
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@angular/forms"),require("@syncfusion/ej2-multicolumn-combobox"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@angular/forms","@syncfusion/ej2-multicolumn-combobox","@angular/common"],t):t(e["ej2-angular-multicolumn-combobox"]={},e.ng.core,e.ej2.angular.base,e.ng.forms,e.ej2.multicolumn.combobox,e.ng.common)}(this,function(e,t,o,n,r,i){"use strict";var l=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])};return function(t,o){function n(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),a=this&&this.__decorate||function(e,t,o,n){var r,i=arguments.length,l=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,o,n);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(l=(i<3?r(l):i>3?r(t,o,l):r(t,o))||l);return i>3&&l&&Object.defineProperty(t,o,l),l},u=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},c=["customAttributes","displayAsCheckBox","field","format","header","headerTemplate","template","textAlign","width"],p=[],m=function(e){function t(t){var n=e.call(this)||this;return n.viewContainerRef=t,o.setValue("currentInstance",n,n.viewContainerRef),n.registerEvents(p),n.directivePropList=c,n}return l(t,e),t}(o.ComplexBase);m.decorators=[{type:t.Directive,args:[{selector:"ejs-multicolumncombobox>e-columns>e-column",inputs:c,outputs:p,queries:{}}]}],m.ctorParameters=function(){return[{type:t.ViewContainerRef}]},m.propDecorators={template:[{type:t.ContentChild,args:["template"]}],headerTemplate:[{type:t.ContentChild,args:["headerTemplate"]}]},a([o.Template(),u("design:type",Object)],m.prototype,"template",void 0),a([o.Template(),u("design:type",Object)],m.prototype,"headerTemplate",void 0);var s=function(e){function t(){return e.call(this,"columns")||this}return l(t,e),t}(o.ArrayBase);s.decorators=[{type:t.Directive,args:[{selector:"ejs-multicolumncombobox>e-columns",queries:{children:new t.ContentChildren(m)}}]}],s.ctorParameters=function(){return[]};var f=this&&this.__decorate||function(e,t,o,n){var r,i=arguments.length,l=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,o,n);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(l=(i<3?r(l):i>3?r(t,o,l):r(t,o))||l);return i>3&&l&&Object.defineProperty(t,o,l),l},d=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},C=["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"],g=["focus","blur","actionBegin","actionComplete","actionFailure","change","close","created","filtering","open","select","valueChange"],y=["value"];e.MultiColumnComboBoxComponent=h=function(e){function t(t,n,r,i,l){var a=e.call(this)||this;return a.ngEle=t,a.srenderer=n,a.viewContainerRef=r,a.injector=i,a.cdr=l,a.tags=["columns"],a.element=a.ngEle.nativeElement,a.injectedModules=a.injectedModules||[],a.registerEvents(g),a.addTwoWay.call(a,y),o.setValue("currentInstance",a,a.viewContainerRef),a.formContext=new o.FormBase,a.formCompContext=new o.ComponentBase,a}return l(t,e),t.prototype.registerOnChange=function(e){},t.prototype.registerOnTouched=function(e){},t.prototype.writeValue=function(e){},t.prototype.setDisabledState=function(e){},t.prototype.ngOnInit=function(){this.formCompContext.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.formContext.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.formCompContext.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.tagObjects[0].instance=this.childColumns,this.formCompContext.ngAfterContentChecked(this)},t}(r.MultiColumnComboBox),e.MultiColumnComboBoxComponent.decorators=[{type:t.Component,args:[{selector:"ejs-multicolumncombobox",inputs:C,outputs:g,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,providers:[{provide:n.NG_VALUE_ACCESSOR,useExisting:t.forwardRef(function(){return h}),multi:!0}],queries:{childColumns:new t.ContentChild(s)}}]}],e.MultiColumnComboBoxComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector},{type:t.ChangeDetectorRef}]},e.MultiColumnComboBoxComponent.propDecorators={footerTemplate:[{type:t.ContentChild,args:["footerTemplate"]}],itemTemplate:[{type:t.ContentChild,args:["itemTemplate"]}],groupTemplate:[{type:t.ContentChild,args:["groupTemplate"]}],noRecordsTemplate:[{type:t.ContentChild,args:["noRecordsTemplate"]}],actionFailureTemplate:[{type:t.ContentChild,args:["actionFailureTemplate"]}]},f([o.Template(),d("design:type",Object)],e.MultiColumnComboBoxComponent.prototype,"footerTemplate",void 0),f([o.Template(),d("design:type",Object)],e.MultiColumnComboBoxComponent.prototype,"itemTemplate",void 0),f([o.Template(),d("design:type",Object)],e.MultiColumnComboBoxComponent.prototype,"groupTemplate",void 0),f([o.Template("No records found"),d("design:type",Object)],e.MultiColumnComboBoxComponent.prototype,"noRecordsTemplate",void 0),f([o.Template("Request Failed"),d("design:type",Object)],e.MultiColumnComboBoxComponent.prototype,"actionFailureTemplate",void 0),e.MultiColumnComboBoxComponent=h=f([o.ComponentMixins([o.ComponentBase,o.FormBase]),d("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector,t.ChangeDetectorRef])],e.MultiColumnComboBoxComponent);var h,b=function(){return function(){}}();b.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule],declarations:[e.MultiColumnComboBoxComponent,m,s],exports:[e.MultiColumnComboBoxComponent,m,s]}]}],b.ctorParameters=function(){return[]};var x=function(){return function(){}}();x.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule,b],exports:[b],providers:[]}]}],x.ctorParameters=function(){return[]},e.ColumnDirective=m,e.ColumnsDirective=s,e.MultiColumnComboBoxModule=b,e.MultiColumnComboBoxAllModule=x,e.ɵa=C,e.ɵb=g,e.MultiColumnGrid=r.MultiColumnGrid,e.FilterType=r.FilterType,e.SortOrder=r.SortOrder,e.SortType=r.SortType,e.WrapMode=r.WrapMode,e.FieldSettings=r.FieldSettings,e.Column=r.Column,e.GridSettings=r.GridSettings,e.MultiColumnComboBox=r.MultiColumnComboBox,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
11
|
//# sourceMappingURL=ej2-angular-multicolumn-combobox.umd.min.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-multicolumn-combobox.umd.min.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxSort');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('MultiColumn-ComboBoxGroup');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\nimport {VirtualScroll, Sort, Edit, Group} from '@syncfusion/ej2-multicolumn-combobox';\n\n\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'MultiColumn-ComboBoxVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ SortService: ValueProvider = { provide: 'MultiColumn-ComboBoxSort', useValue: Sort};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'MultiColumn-ComboBoxEdit', useValue: Edit};\nexport const /** @type {?} */ GroupService: ValueProvider = { provide: 'MultiColumn-ComboBoxGroup', useValue: Group};\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n VirtualScrollService,\n SortService,\n EditService,\n GroupService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","ColumnDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","propDecorators","template","ContentChild","headerTemplate","__decorate","Template","prototype","ColumnsDirective","ArrayBase","children","ContentChildren","twoWays","exports","MultiColumnComboBoxComponent","MultiColumnComboBoxComponent_1","ngEle","srenderer","injector","cdr","tags","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","addTwoWay","formContext","FormBase","formCompContext","ComponentBase","registerOnChange","registerFunction","registerOnTouched","writeValue","value","setDisabledState","disabled","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childColumns","MultiColumnComboBox","Component","changeDetection","ChangeDetectionStrategy","OnPush","providers","provide","NG_VALUE_ACCESSOR","useExisting","forwardRef","multi","ElementRef","Renderer2","Injector","ChangeDetectorRef","footerTemplate","itemTemplate","groupTemplate","noRecordsTemplate","actionFailureTemplate","ComponentMixins","__metadata","MultiColumnComboBoxModule","NgModule","imports","CommonModule","declarations","VirtualScrollService","useValue","VirtualScroll","SortService","Sort","EditService","Edit","GroupService","Group","MultiColumnComboBoxAllModule"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-angular-multicolumn-combobox.umd.min.js","sources":["~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/columns.directive.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.component.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox.module.ts","~/@syncfusion/ej2-angular-multicolumn-combobox/src/multicolumn-combobox/multicolumncombobox-all.module.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['customAttributes', 'displayAsCheckBox', 'field', 'format', 'header', 'headerTemplate', 'template', 'textAlign', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular MultiColumnComboBox. \n * It must be contained in a MultiColumnComboBox component(`ejs-multicolumncombobox`). \n * ```html\n * <ejs-multicolumncombobox [dataSource]='data'>\n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' header='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-multicolumncombobox>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n */\npublic field: any;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n */\npublic header: any;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n */\npublic textAlign: any;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n */\npublic width: any;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * The CSS styles and attributes of the content cells of a particular column can be customized.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Defines the name of the field whose data will be displayed in the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * It is used to change display value with the given format and does not affect the original data. \n * Gets the format from the user which can be standard or custom `number` and `date` formats.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Defines the header text of column which is used to display in column header. \n * If headerText is not defined, then field name value will be assigned to header text.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.header;\n/**\n * Defines the alignment of the column in both header and content cells.\n * \\@default Left\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Defines the width of the column in pixels or percentage.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Defines the column template that renders customized element in each cell of the column. \n * It accepts either template or HTML element ID.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Defines the column template as string or HTML element ID which is used to add customized element in the column header.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-multicolumncombobox>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, ChangeDetectorRef, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiColumnComboBox } from '@syncfusion/ej2-multicolumn-combobox';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['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'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','change','close','created','filtering','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * Represents the Essential JS 2 Angular MultiColumnComboBox Component.\n * ```html\n * <ejs-multicolumncombobox></ejs-multicolumncombobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiColumnComboBoxComponent extends MultiColumnComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tfiltering: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request Failed')\npublic actionFailureTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n * @param {?} cdr\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector,\nprivate cdr: ChangeDetectorRef) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multicolumncombobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiColumnComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n childColumns: new ContentChild(ColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n{type: ChangeDetectorRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiColumnComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxComponent.ctorParameters;\n/** @type {?} */\nMultiColumnComboBoxComponent.propDecorators;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.formContext;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.change;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.close;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.created;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.filtering;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.open;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.select;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.valueChange;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.childColumns;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.tags;\n/**\n * Accepts the template design and assigns it to the footer container of the popup.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to each items present in the popup.\n * \n * {% codeBlock src='multicolumn-combobox/itemTemplate/index.md' %}{% endcodeBlock %}\n * \n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * \\@angulartype string | object\n * \\@reacttype string | function | JSX.Element\n * \\@vuetype string | function\n * \\@asptype string\n * @type {?}\n */\nMultiColumnComboBoxComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.focus;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.blur;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.injector;\n/** @type {?} */\nMultiColumnComboBoxComponent.prototype.cdr;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\n/**\n * NgModule definition for the MultiColumnComboBox component.\n */\nexport class MultiColumnComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ],\n exports: [\n MultiColumnComboBoxComponent,\n ColumnDirective,\n ColumnsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { MultiColumnComboBoxComponent } from './multicolumncombobox.component';\nimport { MultiColumnComboBoxModule } from './multicolumncombobox.module';\n/**\n * NgModule definition for the MultiColumnComboBox component with providers.\n */\nexport class MultiColumnComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiColumnComboBoxModule],\n exports: [\n MultiColumnComboBoxModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiColumnComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiColumnComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiColumnComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","ColumnDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","propDecorators","template","ContentChild","headerTemplate","__decorate","Template","prototype","ColumnsDirective","ArrayBase","children","ContentChildren","twoWays","exports","MultiColumnComboBoxComponent","MultiColumnComboBoxComponent_1","ngEle","srenderer","injector","cdr","tags","element","nativeElement","injectedModules","addTwoWay","formContext","FormBase","formCompContext","ComponentBase","registerOnChange","registerFunction","registerOnTouched","writeValue","value","setDisabledState","disabled","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childColumns","MultiColumnComboBox","Component","changeDetection","ChangeDetectionStrategy","OnPush","providers","provide","NG_VALUE_ACCESSOR","useExisting","forwardRef","multi","ElementRef","Renderer2","Injector","ChangeDetectorRef","footerTemplate","itemTemplate","groupTemplate","noRecordsTemplate","actionFailureTemplate","ComponentMixins","__metadata","MultiColumnComboBoxModule","NgModule","imports","CommonModule","declarations","MultiColumnComboBoxAllModule"],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-multicolumn-combobox"}],"metadata":{"ɵa":["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"],"ɵb":["focus","blur","actionBegin","actionComplete","actionFailure","change","close","created","filtering","open","select","valueChange"],"ColumnDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-multicolumncombobox>e-columns>e-column","inputs":["customAttributes","displayAsCheckBox","field","format","header","headerTemplate","template","textAlign","width"],"outputs":[],"queries":{}}]}],"members":{"template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["template"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"headerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["headerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"ColumnsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-multicolumncombobox>e-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"MultiColumnComboBoxComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-multicolumn-combobox","name":"MultiColumnComboBox"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-multicolumncombobox","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useExisting":{"__symbolic":"reference","name":"MultiColumnComboBoxComponent"},"multi":true}],"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ColumnsDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"},{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"FormBase"}]]}],"members":{"footerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["footerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"itemTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["itemTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"groupTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["groupTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"noRecordsTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["noRecordsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"},"arguments":["No records found"]}]}],"actionFailureTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["actionFailureTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"},"arguments":["Request Failed"]}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectorRef"}]}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}],"writeValue":[{"__symbolic":"method"}],"setDisabledState":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"MultiColumnComboBoxModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"MultiColumnComboBoxComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"}],"exports":[{"__symbolic":"reference","name":"MultiColumnComboBoxComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"}]}]}],"members":{}},"MultiColumnComboBoxAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"MultiColumnComboBoxModule"}],"exports":[{"__symbolic":"reference","name":"MultiColumnComboBoxModule"}],"providers":[
|
|
1
|
+
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-multicolumn-combobox"}],"metadata":{"ɵa":["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"],"ɵb":["focus","blur","actionBegin","actionComplete","actionFailure","change","close","created","filtering","open","select","valueChange"],"ColumnDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-multicolumncombobox>e-columns>e-column","inputs":["customAttributes","displayAsCheckBox","field","format","header","headerTemplate","template","textAlign","width"],"outputs":[],"queries":{}}]}],"members":{"template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["template"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"headerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["headerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"ColumnsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-multicolumncombobox>e-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"MultiColumnComboBoxComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-multicolumn-combobox","name":"MultiColumnComboBox"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-multicolumncombobox","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useExisting":{"__symbolic":"reference","name":"MultiColumnComboBoxComponent"},"multi":true}],"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ColumnsDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"},{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"FormBase"}]]}],"members":{"footerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["footerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"itemTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["itemTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"groupTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["groupTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"noRecordsTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["noRecordsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"},"arguments":["No records found"]}]}],"actionFailureTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["actionFailureTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"},"arguments":["Request Failed"]}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectorRef"}]}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}],"writeValue":[{"__symbolic":"method"}],"setDisabledState":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"MultiColumnComboBoxModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"MultiColumnComboBoxComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"}],"exports":[{"__symbolic":"reference","name":"MultiColumnComboBoxComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"}]}]}],"members":{}},"MultiColumnComboBoxAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"MultiColumnComboBoxModule"}],"exports":[{"__symbolic":"reference","name":"MultiColumnComboBoxModule"}],"providers":[]}]}],"members":{}}},"origins":{"ɵa":"./src/multicolumn-combobox/multicolumncombobox.component","ɵb":"./src/multicolumn-combobox/multicolumncombobox.component","ColumnDirective":"./src/multicolumn-combobox/columns.directive","ColumnsDirective":"./src/multicolumn-combobox/columns.directive","MultiColumnComboBoxComponent":"./src/multicolumn-combobox/multicolumncombobox.component","MultiColumnComboBoxModule":"./src/multicolumn-combobox/multicolumncombobox.module","MultiColumnComboBoxAllModule":"./src/multicolumn-combobox/multicolumncombobox-all.module"},"importAs":"@syncfusion/ej2-angular-multicolumn-combobox"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-multicolumn-combobox@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-multicolumn-combobox@27.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-multicolumn-combobox@27.1.48",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-Qq8fiSUfuqFVWh4khKB7+Pa2eOUsZJ+F0zi5A03X95E8oEPCW5X1/OcL03yLeaGHoWLsCELhaf2y91GcL4HVDw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-multicolumn-combobox",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-angular-multicolumn-combobox/-/ej2-angular-multicolumn-combobox-27.1.48.tgz",
|
|
23
|
+
"_shasum": "6ce3d34fe899ce2d5c6a95d7afd795c1e04cafe0",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-multicolumn-combobox@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~
|
|
35
|
-
"@syncfusion/ej2-base": "~
|
|
36
|
-
"@syncfusion/ej2-multicolumn-combobox": "
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~28.1.33",
|
|
35
|
+
"@syncfusion/ej2-base": "~28.1.33",
|
|
36
|
+
"@syncfusion/ej2-multicolumn-combobox": "28.1.33"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 Component for Angular",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"schematics": "./schematics/collection.json",
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"typings": "ej2-angular-multicolumn-combobox.d.ts",
|
|
61
|
-
"version": "
|
|
61
|
+
"version": "28.1.33-ngcc"
|
|
62
62
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-multicolumn-combobox";
|
|
2
|
-
export declare const pkgVer = "^27.1.
|
|
2
|
+
export declare const pkgVer = "^27.1.48";
|
|
3
3
|
export declare const moduleName = "MultiColumnComboBoxModule";
|
|
4
|
-
export declare const themeVer = "~27.1.
|
|
4
|
+
export declare const themeVer = "~27.1.48";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-multicolumn-combobox';
|
|
4
|
-
exports.pkgVer = '^
|
|
4
|
+
exports.pkgVer = '^28.1.33';
|
|
5
5
|
exports.moduleName = 'MultiColumnComboBoxModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~28.1.33';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-multicolumn-combobox';
|
|
2
|
-
export const pkgVer = '^
|
|
2
|
+
export const pkgVer = '^28.1.33';
|
|
3
3
|
export const moduleName = 'MultiColumnComboBoxModule';
|
|
4
|
-
export const themeVer = '~
|
|
4
|
+
export const themeVer = '~28.1.33';
|
package/src/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ColumnDirective, ColumnsDirective } from './multicolumn-combobox/columns.directive';
|
|
2
2
|
export { MultiColumnComboBoxComponent } from './multicolumn-combobox/multicolumncombobox.component';
|
|
3
3
|
export { MultiColumnComboBoxModule } from './multicolumn-combobox/multicolumncombobox.module';
|
|
4
|
-
export { MultiColumnComboBoxAllModule
|
|
4
|
+
export { MultiColumnComboBoxAllModule } from './multicolumn-combobox/multicolumncombobox-all.module';
|
|
5
5
|
export * from '@syncfusion/ej2-multicolumn-combobox';
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
export declare const VirtualScrollService: ValueProvider;
|
|
3
|
-
export declare const SortService: ValueProvider;
|
|
4
|
-
export declare const EditService: ValueProvider;
|
|
5
|
-
export declare const GroupService: ValueProvider;
|
|
6
1
|
/**
|
|
7
2
|
* NgModule definition for the MultiColumnComboBox component with providers.
|
|
8
3
|
*/
|