@syncfusion/ej2-angular-kanban 20.4.54-ngcc → 21.1.35-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.
Files changed (44) hide show
  1. package/@syncfusion/ej2-angular-kanban.es5.js +1 -1
  2. package/@syncfusion/ej2-angular-kanban.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-kanban.js +1 -1
  4. package/@syncfusion/ej2-angular-kanban.js.map +1 -1
  5. package/CHANGELOG.md +2 -0
  6. package/dist/ej2-angular-kanban.umd.js +2 -2
  7. package/dist/ej2-angular-kanban.umd.js.map +1 -1
  8. package/dist/ej2-angular-kanban.umd.min.js +2 -2
  9. package/dist/ej2-angular-kanban.umd.min.js.map +1 -1
  10. package/ej2-angular-kanban.metadata.json +1 -1
  11. package/package.json +9 -9
  12. package/schematics/utils/lib-details.d.ts +2 -2
  13. package/schematics/utils/lib-details.js +2 -2
  14. package/schematics/utils/lib-details.ts +2 -2
  15. package/styles/bootstrap-dark.css +11 -12
  16. package/styles/bootstrap.css +11 -11
  17. package/styles/bootstrap4.css +10 -10
  18. package/styles/bootstrap5-dark.css +11 -11
  19. package/styles/bootstrap5.css +11 -11
  20. package/styles/fabric-dark.css +11 -12
  21. package/styles/fabric.css +11 -11
  22. package/styles/fluent-dark.css +11 -11
  23. package/styles/fluent.css +11 -11
  24. package/styles/highcontrast-light.css +11 -13
  25. package/styles/highcontrast.css +11 -11
  26. package/styles/kanban/bootstrap-dark.css +11 -12
  27. package/styles/kanban/bootstrap.css +11 -11
  28. package/styles/kanban/bootstrap4.css +10 -10
  29. package/styles/kanban/bootstrap5-dark.css +11 -11
  30. package/styles/kanban/bootstrap5.css +11 -11
  31. package/styles/kanban/fabric-dark.css +11 -12
  32. package/styles/kanban/fabric.css +11 -11
  33. package/styles/kanban/fluent-dark.css +11 -11
  34. package/styles/kanban/fluent.css +11 -11
  35. package/styles/kanban/highcontrast-light.css +11 -13
  36. package/styles/kanban/highcontrast.css +11 -11
  37. package/styles/kanban/material-dark.css +11 -11
  38. package/styles/kanban/material.css +11 -11
  39. package/styles/kanban/tailwind-dark.css +11 -11
  40. package/styles/kanban/tailwind.css +11 -11
  41. package/styles/material-dark.css +11 -11
  42. package/styles/material.css +11 -11
  43. package/styles/tailwind-dark.css +11 -11
  44. package/styles/tailwind.css +11 -11
@@ -1 +1 @@
1
- {"version":3,"file":"ej2-angular-kanban.umd.min.js","sources":["~/@syncfusion/ej2-angular-kanban/src/kanban/columns.directive.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/stackedheaders.directive.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban.component.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban.module.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban-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[] = ['allowDrag', 'allowDrop', 'allowToggle', 'headerText', 'isExpanded', 'keyField', 'maxCount', 'minCount', 'showAddButton', 'showItemCount', 'template', 'transitionColumns'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-columns` directive represent a columns of the Kanban board. \n * It must be contained in a Kanban component(`ejs-kanban`). \n * ```html\n * <ejs-kanban>\n * <e-columns>\n * <e-column keyField='Open' textField='To Do'></e-column>\n * <e-column keyField='Close' textField='Completed'></e-column>\n * </e-columns>\n * </ejs-kanban>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * Enable or disable column drag\n * \\@default true\n */\npublic allowDrag: any;\n/**\n * Enable or disable column drop\n * \\@default true\n */\npublic allowDrop: any;\n/**\n * Enable or disable toggle column\n * \\@default false\n */\npublic allowToggle: any;\n/**\n * Defines the column header title\n * \\@default null\n */\npublic headerText: any;\n/**\n * Defines the collapsed or expandable state\n * \\@default true\n */\npublic isExpanded: any;\n/**\n * Defines the column keyField. It supports both number and string type. \n * String type supports the multiple column keys and number type does not support the multiple column keys.\n * \\@default null\n */\npublic keyField: any;\n/**\n * Defines the maximum card count in column\n * \\@default null\n * \\@asptype int\n */\npublic maxCount: any;\n/**\n * Defines the minimum card count in column\n * \\@default null\n * \\@asptype int\n */\npublic minCount: any;\n/**\n * Enable or disable cell add button\n * \\@default false\n */\npublic showAddButton: any;\n/**\n * Enable or disable card count in column\n * \\@default true\n */\npublic showItemCount: any;\n/**\n * Defines the column transition\n * \\@default []\n */\npublic transitionColumns: any;\n/**\n * Defines the column template\n * \\@default null\n */\n@Template()\n public template: 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: '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};\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 * Enable or disable column drag\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowDrag;\n/**\n * Enable or disable column drop\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowDrop;\n/**\n * Enable or disable toggle column\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.allowToggle;\n/**\n * Defines the column header title\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.headerText;\n/**\n * Defines the collapsed or expandable state\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.isExpanded;\n/**\n * Defines the column keyField. It supports both number and string type. \n * String type supports the multiple column keys and number type does not support the multiple column keys.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.keyField;\n/**\n * Defines the maximum card count in column\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.maxCount;\n/**\n * Defines the minimum card count in column\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.minCount;\n/**\n * Enable or disable cell add button\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.showAddButton;\n/**\n * Enable or disable card count in column\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.showItemCount;\n/**\n * Defines the column transition\n * \\@default []\n * @type {?}\n */\nColumnDirective.prototype.transitionColumns;\n/**\n * Defines the column template\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.template;\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-kanban>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 { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['keyFields', 'text'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-stackedHeaders` directive represent a stacked header of the Kanban board. \n * It must be contained in a Kanban component(`ejs-kanban`). \n * ```html\n * <ejs-kanban>\n * <e-stackedHeaders>\n * <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>\n * <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>\n * </e-stackedHeaders>\n * </ejs-kanban>\n * ```\n */\nexport class StackedHeaderDirective extends ComplexBase<StackedHeaderDirective> {\npublic directivePropList: any;\n/**\n * Defines the multiple columns keyField\n * \\@default null\n */\npublic keyFields: any;\n/**\n * Defines the column header text\n * \\@default null\n */\npublic text: 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: 'e-stackedHeaders>e-stackedHeader',\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];\n}\n\nfunction StackedHeaderDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedHeaderDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedHeaderDirective.ctorParameters;\n/** @type {?} */\nStackedHeaderDirective.prototype.directivePropList;\n/**\n * Defines the multiple columns keyField\n * \\@default null\n * @type {?}\n */\nStackedHeaderDirective.prototype.keyFields;\n/**\n * Defines the column header text\n * \\@default null\n * @type {?}\n */\nStackedHeaderDirective.prototype.text;\n/** @type {?} */\nStackedHeaderDirective.prototype.viewContainerRef;\n}\n\n/**\n * StackedHeader Array Directive\n */\nexport class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {\nconstructor() {\n super('stackedheaders');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-kanban>e-stackedHeaders',\n queries: {\n children: new ContentChildren(StackedHeaderDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction StackedHeadersDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedHeadersDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedHeadersDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Kanban } from '@syncfusion/ej2-kanban';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\nimport { StackedHeadersDirective } from './stackedheaders.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['allowDragAndDrop','allowKeyboard','cardSettings','columns','constraintType','cssClass','dataSource','dialogSettings','enablePersistence','enableRtl','enableTooltip','externalDropId','height','keyField','locale','query','showEmptyColumn','sortSettings','stackedHeaders','swimlaneSettings','tooltipTemplate','width'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','cardClick','cardDoubleClick','cardRendered','created','dataBinding','dataBound','dataSourceChanged','dataStateChange','dialogClose','dialogOpen','drag','dragStart','dragStop','queryCellInfo'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * `ej-kanban` represents the Angular Kanban Component.\n * ```html\n * <ejs-kanban></ejs-kanban>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class KanbanComponent extends Kanban implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tcardClick: any;\n\tcardDoubleClick: any;\n\tcardRendered: any;\n\tcreated: any;\n\tdataBinding: any;\n\tdataBound: any;\n\tdataSourceChanged: any;\n\tdataStateChange: any;\n\tdialogClose: any;\n\tdialogOpen: any;\n\tdrag: any;\n\tdragStart: any;\n\tdragStop: any;\npublic queryCellInfo: any;\npublic childColumns: QueryList<ColumnsDirective>;\npublic childStackedHeaders: QueryList<StackedHeadersDirective>;\npublic tags: string[] = ['columns', 'stackedHeaders'];\n/**\n * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.\n * \\@default null\n */\n@Template()\n public tooltipTemplate: any;\n \n @Template()\npublic columns_template: any;\n \n @Template()\npublic swimlaneSettings_template: any;\n \n @Template()\npublic cardSettings_template: any;\n \n @Template()\npublic dialogSettings_template: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\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.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n if (this.childStackedHeaders) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childStackedHeaders as any));\n }\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-kanban',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childColumns: new ContentChild(ColumnsDirective), \n childStackedHeaders: new ContentChild(StackedHeadersDirective)\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];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate', ] },],\n'columns_template': [{ type: ContentChild, args: ['columnsTemplate', ] },],\n'swimlaneSettings_template': [{ type: ContentChild, args: ['swimlaneSettingsTemplate', ] },],\n'cardSettings_template': [{ type: ContentChild, args: ['cardSettingsTemplate', ] },],\n'dialogSettings_template': [{ type: ContentChild, args: ['dialogSettingsTemplate', ] },],\n};\n}\n\nfunction KanbanComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanComponent.ctorParameters;\n/** @type {?} */\nKanbanComponent.propDecorators;\n/** @type {?} */\nKanbanComponent.prototype.context;\n/** @type {?} */\nKanbanComponent.prototype.tagObjects;\n/** @type {?} */\nKanbanComponent.prototype.actionBegin;\n/** @type {?} */\nKanbanComponent.prototype.actionComplete;\n/** @type {?} */\nKanbanComponent.prototype.actionFailure;\n/** @type {?} */\nKanbanComponent.prototype.cardClick;\n/** @type {?} */\nKanbanComponent.prototype.cardDoubleClick;\n/** @type {?} */\nKanbanComponent.prototype.cardRendered;\n/** @type {?} */\nKanbanComponent.prototype.created;\n/** @type {?} */\nKanbanComponent.prototype.dataBinding;\n/** @type {?} */\nKanbanComponent.prototype.dataBound;\n/** @type {?} */\nKanbanComponent.prototype.dataSourceChanged;\n/** @type {?} */\nKanbanComponent.prototype.dataStateChange;\n/** @type {?} */\nKanbanComponent.prototype.dialogClose;\n/** @type {?} */\nKanbanComponent.prototype.dialogOpen;\n/** @type {?} */\nKanbanComponent.prototype.drag;\n/** @type {?} */\nKanbanComponent.prototype.dragStart;\n/** @type {?} */\nKanbanComponent.prototype.dragStop;\n/** @type {?} */\nKanbanComponent.prototype.queryCellInfo;\n/** @type {?} */\nKanbanComponent.prototype.childColumns;\n/** @type {?} */\nKanbanComponent.prototype.childStackedHeaders;\n/** @type {?} */\nKanbanComponent.prototype.tags;\n/**\n * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.\n * \\@default null\n * @type {?}\n */\nKanbanComponent.prototype.tooltipTemplate;\n/** @type {?} */\nKanbanComponent.prototype.columns_template;\n/** @type {?} */\nKanbanComponent.prototype.swimlaneSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.cardSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.dialogSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.registerEvents;\n/** @type {?} */\nKanbanComponent.prototype.addTwoWay;\n/** @type {?} */\nKanbanComponent.prototype.ngEle;\n/** @type {?} */\nKanbanComponent.prototype.srenderer;\n/** @type {?} */\nKanbanComponent.prototype.viewContainerRef;\n/** @type {?} */\nKanbanComponent.prototype.injector;\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 { StackedHeaderDirective, StackedHeadersDirective } from './stackedheaders.directive';\nimport { KanbanComponent } from './kanban.component';\n/**\n * NgModule definition for the Kanban component.\n */\nexport class KanbanModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n KanbanComponent,\n ColumnDirective,\n ColumnsDirective,\n StackedHeaderDirective,\n StackedHeadersDirective\n ],\n exports: [\n KanbanComponent,\n ColumnDirective,\n ColumnsDirective,\n StackedHeaderDirective,\n StackedHeadersDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction KanbanModule_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanModule.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 { StackedHeaderDirective, StackedHeadersDirective } from './stackedheaders.directive';\nimport { KanbanComponent } from './kanban.component';\nimport { KanbanModule } from './kanban.module';\n/**\n * NgModule definition for the Kanban component with providers.\n */\nexport class KanbanAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, KanbanModule],\n exports: [\n KanbanModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction KanbanAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanAllModule.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","__decorate","Template","prototype","ColumnsDirective","ArrayBase","children","ContentChildren","StackedHeaderDirective","StackedHeadersDirective","twoWays","exports","KanbanComponent","ngEle","srenderer","injector","tags","element","nativeElement","injectedModules","addTwoWay","context","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childColumns","childStackedHeaders","Kanban","Component","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","tooltipTemplate","columns_template","swimlaneSettings_template","cardSettings_template","dialogSettings_template","ComponentMixins","__metadata","KanbanModule","NgModule","imports","CommonModule","declarations","KanbanAllModule","providers"],"mappings":"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"}
1
+ {"version":3,"file":"ej2-angular-kanban.umd.min.js","sources":["~/@syncfusion/ej2-angular-kanban/src/kanban/columns.directive.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/stackedheaders.directive.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban.component.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban.module.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban-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[] = ['allowDrag', 'allowDrop', 'allowToggle', 'headerText', 'isExpanded', 'keyField', 'maxCount', 'minCount', 'showAddButton', 'showItemCount', 'template', 'transitionColumns'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-columns` directive represent a columns of the Kanban board. \n * It must be contained in a Kanban component(`ejs-kanban`). \n * ```html\n * <ejs-kanban>\n * <e-columns>\n * <e-column keyField='Open' textField='To Do'></e-column>\n * <e-column keyField='Close' textField='Completed'></e-column>\n * </e-columns>\n * </ejs-kanban>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * Enable or disable column drag\n * \\@default true\n */\npublic allowDrag: any;\n/**\n * Enable or disable column drop\n * \\@default true\n */\npublic allowDrop: any;\n/**\n * Enable or disable toggle column\n * \\@default false\n */\npublic allowToggle: any;\n/**\n * Defines the column header title\n * \\@default null\n */\npublic headerText: any;\n/**\n * Defines the collapsed or expandable state\n * \\@default true\n */\npublic isExpanded: any;\n/**\n * Defines the column keyField. It supports both number and string type. \n * String type supports the multiple column keys and number type does not support the multiple column keys.\n * \\@default null\n */\npublic keyField: any;\n/**\n * Defines the maximum card count in column\n * \\@default null\n * \\@asptype int\n */\npublic maxCount: any;\n/**\n * Defines the minimum card count in column\n * \\@default null\n * \\@asptype int\n */\npublic minCount: any;\n/**\n * Enable or disable cell add button\n * \\@default false\n */\npublic showAddButton: any;\n/**\n * Enable or disable card count in column\n * \\@default true\n */\npublic showItemCount: any;\n/**\n * Defines the column transition\n * \\@default []\n */\npublic transitionColumns: any;\n/**\n * Defines the column template\n * \\@default null\n */\n@Template()\n public template: 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: '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};\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 * Enable or disable column drag\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowDrag;\n/**\n * Enable or disable column drop\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowDrop;\n/**\n * Enable or disable toggle column\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.allowToggle;\n/**\n * Defines the column header title\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.headerText;\n/**\n * Defines the collapsed or expandable state\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.isExpanded;\n/**\n * Defines the column keyField. It supports both number and string type. \n * String type supports the multiple column keys and number type does not support the multiple column keys.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.keyField;\n/**\n * Defines the maximum card count in column\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.maxCount;\n/**\n * Defines the minimum card count in column\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.minCount;\n/**\n * Enable or disable cell add button\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.showAddButton;\n/**\n * Enable or disable card count in column\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.showItemCount;\n/**\n * Defines the column transition\n * \\@default []\n * @type {?}\n */\nColumnDirective.prototype.transitionColumns;\n/**\n * Defines the column template\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.template;\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-kanban>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 { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['keyFields', 'text'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-stackedHeaders` directive represent a stacked header of the Kanban board. \n * It must be contained in a Kanban component(`ejs-kanban`). \n * ```html\n * <ejs-kanban>\n * <e-stackedHeaders>\n * <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>\n * <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>\n * </e-stackedHeaders>\n * </ejs-kanban>\n * ```\n */\nexport class StackedHeaderDirective extends ComplexBase<StackedHeaderDirective> {\npublic directivePropList: any;\n/**\n * Defines the multiple columns keyField\n * \\@default null\n */\npublic keyFields: any;\n/**\n * Defines the column header text\n * \\@default null\n */\npublic text: 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: 'e-stackedHeaders>e-stackedHeader',\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];\n}\n\nfunction StackedHeaderDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedHeaderDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedHeaderDirective.ctorParameters;\n/** @type {?} */\nStackedHeaderDirective.prototype.directivePropList;\n/**\n * Defines the multiple columns keyField\n * \\@default null\n * @type {?}\n */\nStackedHeaderDirective.prototype.keyFields;\n/**\n * Defines the column header text\n * \\@default null\n * @type {?}\n */\nStackedHeaderDirective.prototype.text;\n/** @type {?} */\nStackedHeaderDirective.prototype.viewContainerRef;\n}\n\n/**\n * StackedHeader Array Directive\n */\nexport class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {\nconstructor() {\n super('stackedheaders');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-kanban>e-stackedHeaders',\n queries: {\n children: new ContentChildren(StackedHeaderDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction StackedHeadersDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedHeadersDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedHeadersDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Kanban } from '@syncfusion/ej2-kanban';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\nimport { StackedHeadersDirective } from './stackedheaders.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['allowDragAndDrop','allowKeyboard','cardSettings','columns','constraintType','cssClass','dataSource','dialogSettings','enableHtmlSanitizer','enablePersistence','enableRtl','enableTooltip','externalDropId','height','keyField','locale','query','showEmptyColumn','sortSettings','stackedHeaders','swimlaneSettings','tooltipTemplate','width'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','cardClick','cardDoubleClick','cardRendered','created','dataBinding','dataBound','dataSourceChanged','dataStateChange','dialogClose','dialogOpen','drag','dragStart','dragStop','queryCellInfo'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * `ej-kanban` represents the Angular Kanban Component.\n * ```html\n * <ejs-kanban></ejs-kanban>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class KanbanComponent extends Kanban implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tcardClick: any;\n\tcardDoubleClick: any;\n\tcardRendered: any;\n\tcreated: any;\n\tdataBinding: any;\n\tdataBound: any;\n\tdataSourceChanged: any;\n\tdataStateChange: any;\n\tdialogClose: any;\n\tdialogOpen: any;\n\tdrag: any;\n\tdragStart: any;\n\tdragStop: any;\npublic queryCellInfo: any;\npublic childColumns: QueryList<ColumnsDirective>;\npublic childStackedHeaders: QueryList<StackedHeadersDirective>;\npublic tags: string[] = ['columns', 'stackedHeaders'];\n/**\n * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.\n * \\@default null\n */\n@Template()\n public tooltipTemplate: any;\n \n @Template()\npublic columns_template: any;\n \n @Template()\npublic swimlaneSettings_template: any;\n \n @Template()\npublic cardSettings_template: any;\n \n @Template()\npublic dialogSettings_template: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\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.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n if (this.childStackedHeaders) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childStackedHeaders as any));\n }\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-kanban',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childColumns: new ContentChild(ColumnsDirective), \n childStackedHeaders: new ContentChild(StackedHeadersDirective)\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];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate', ] },],\n'columns_template': [{ type: ContentChild, args: ['columnsTemplate', ] },],\n'swimlaneSettings_template': [{ type: ContentChild, args: ['swimlaneSettingsTemplate', ] },],\n'cardSettings_template': [{ type: ContentChild, args: ['cardSettingsTemplate', ] },],\n'dialogSettings_template': [{ type: ContentChild, args: ['dialogSettingsTemplate', ] },],\n};\n}\n\nfunction KanbanComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanComponent.ctorParameters;\n/** @type {?} */\nKanbanComponent.propDecorators;\n/** @type {?} */\nKanbanComponent.prototype.context;\n/** @type {?} */\nKanbanComponent.prototype.tagObjects;\n/** @type {?} */\nKanbanComponent.prototype.actionBegin;\n/** @type {?} */\nKanbanComponent.prototype.actionComplete;\n/** @type {?} */\nKanbanComponent.prototype.actionFailure;\n/** @type {?} */\nKanbanComponent.prototype.cardClick;\n/** @type {?} */\nKanbanComponent.prototype.cardDoubleClick;\n/** @type {?} */\nKanbanComponent.prototype.cardRendered;\n/** @type {?} */\nKanbanComponent.prototype.created;\n/** @type {?} */\nKanbanComponent.prototype.dataBinding;\n/** @type {?} */\nKanbanComponent.prototype.dataBound;\n/** @type {?} */\nKanbanComponent.prototype.dataSourceChanged;\n/** @type {?} */\nKanbanComponent.prototype.dataStateChange;\n/** @type {?} */\nKanbanComponent.prototype.dialogClose;\n/** @type {?} */\nKanbanComponent.prototype.dialogOpen;\n/** @type {?} */\nKanbanComponent.prototype.drag;\n/** @type {?} */\nKanbanComponent.prototype.dragStart;\n/** @type {?} */\nKanbanComponent.prototype.dragStop;\n/** @type {?} */\nKanbanComponent.prototype.queryCellInfo;\n/** @type {?} */\nKanbanComponent.prototype.childColumns;\n/** @type {?} */\nKanbanComponent.prototype.childStackedHeaders;\n/** @type {?} */\nKanbanComponent.prototype.tags;\n/**\n * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.\n * \\@default null\n * @type {?}\n */\nKanbanComponent.prototype.tooltipTemplate;\n/** @type {?} */\nKanbanComponent.prototype.columns_template;\n/** @type {?} */\nKanbanComponent.prototype.swimlaneSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.cardSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.dialogSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.registerEvents;\n/** @type {?} */\nKanbanComponent.prototype.addTwoWay;\n/** @type {?} */\nKanbanComponent.prototype.ngEle;\n/** @type {?} */\nKanbanComponent.prototype.srenderer;\n/** @type {?} */\nKanbanComponent.prototype.viewContainerRef;\n/** @type {?} */\nKanbanComponent.prototype.injector;\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 { StackedHeaderDirective, StackedHeadersDirective } from './stackedheaders.directive';\nimport { KanbanComponent } from './kanban.component';\n/**\n * NgModule definition for the Kanban component.\n */\nexport class KanbanModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n KanbanComponent,\n ColumnDirective,\n ColumnsDirective,\n StackedHeaderDirective,\n StackedHeadersDirective\n ],\n exports: [\n KanbanComponent,\n ColumnDirective,\n ColumnsDirective,\n StackedHeaderDirective,\n StackedHeadersDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction KanbanModule_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanModule.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 { StackedHeaderDirective, StackedHeadersDirective } from './stackedheaders.directive';\nimport { KanbanComponent } from './kanban.component';\nimport { KanbanModule } from './kanban.module';\n/**\n * NgModule definition for the Kanban component with providers.\n */\nexport class KanbanAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, KanbanModule],\n exports: [\n KanbanModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction KanbanAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanAllModule.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","__decorate","Template","prototype","ColumnsDirective","ArrayBase","children","ContentChildren","StackedHeaderDirective","StackedHeadersDirective","twoWays","exports","KanbanComponent","ngEle","srenderer","injector","tags","element","nativeElement","injectedModules","addTwoWay","context","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childColumns","childStackedHeaders","Kanban","Component","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","tooltipTemplate","columns_template","swimlaneSettings_template","cardSettings_template","dialogSettings_template","ComponentMixins","__metadata","KanbanModule","NgModule","imports","CommonModule","declarations","KanbanAllModule","providers"],"mappings":"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"}
@@ -1 +1 @@
1
- {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-kanban"}],"metadata":{"ɵa":["allowDragAndDrop","allowKeyboard","cardSettings","columns","constraintType","cssClass","dataSource","dialogSettings","enablePersistence","enableRtl","enableTooltip","externalDropId","height","keyField","locale","query","showEmptyColumn","sortSettings","stackedHeaders","swimlaneSettings","tooltipTemplate","width"],"ɵb":["actionBegin","actionComplete","actionFailure","cardClick","cardDoubleClick","cardRendered","created","dataBinding","dataBound","dataSourceChanged","dataStateChange","dialogClose","dialogOpen","drag","dragStart","dragStop","queryCellInfo"],"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":"e-columns>e-column","inputs":["allowDrag","allowDrop","allowToggle","headerText","isExpanded","keyField","maxCount","minCount","showAddButton","showItemCount","template","transitionColumns"],"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"}}]}],"__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-kanban>e-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"StackedHeaderDirective":{"__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":"e-stackedHeaders>e-stackedHeader","inputs":["keyFields","text"],"outputs":[],"queries":{}}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"StackedHeadersDirective":{"__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-kanban>e-stackedHeaders","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"StackedHeaderDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"KanbanComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-kanban","name":"Kanban"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-kanban","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ColumnsDirective"}]},"childStackedHeaders":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"StackedHeadersDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"tooltipTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["tooltipTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"columns_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["columnsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"swimlaneSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["swimlaneSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"cardSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["cardSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"dialogSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["dialogSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__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"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"KanbanModule":{"__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":"KanbanComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"},{"__symbolic":"reference","name":"StackedHeaderDirective"},{"__symbolic":"reference","name":"StackedHeadersDirective"}],"exports":[{"__symbolic":"reference","name":"KanbanComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"},{"__symbolic":"reference","name":"StackedHeaderDirective"},{"__symbolic":"reference","name":"StackedHeadersDirective"}]}]}],"members":{}},"KanbanAllModule":{"__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":"KanbanModule"}],"exports":[{"__symbolic":"reference","name":"KanbanModule"}],"providers":[]}]}],"members":{}}},"origins":{"ɵa":"./src/kanban/kanban.component","ɵb":"./src/kanban/kanban.component","ColumnDirective":"./src/kanban/columns.directive","ColumnsDirective":"./src/kanban/columns.directive","StackedHeaderDirective":"./src/kanban/stackedheaders.directive","StackedHeadersDirective":"./src/kanban/stackedheaders.directive","KanbanComponent":"./src/kanban/kanban.component","KanbanModule":"./src/kanban/kanban.module","KanbanAllModule":"./src/kanban/kanban-all.module"},"importAs":"@syncfusion/ej2-angular-kanban"}
1
+ {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-kanban"}],"metadata":{"ɵa":["allowDragAndDrop","allowKeyboard","cardSettings","columns","constraintType","cssClass","dataSource","dialogSettings","enableHtmlSanitizer","enablePersistence","enableRtl","enableTooltip","externalDropId","height","keyField","locale","query","showEmptyColumn","sortSettings","stackedHeaders","swimlaneSettings","tooltipTemplate","width"],"ɵb":["actionBegin","actionComplete","actionFailure","cardClick","cardDoubleClick","cardRendered","created","dataBinding","dataBound","dataSourceChanged","dataStateChange","dialogClose","dialogOpen","drag","dragStart","dragStop","queryCellInfo"],"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":"e-columns>e-column","inputs":["allowDrag","allowDrop","allowToggle","headerText","isExpanded","keyField","maxCount","minCount","showAddButton","showItemCount","template","transitionColumns"],"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"}}]}],"__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-kanban>e-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"StackedHeaderDirective":{"__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":"e-stackedHeaders>e-stackedHeader","inputs":["keyFields","text"],"outputs":[],"queries":{}}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"StackedHeadersDirective":{"__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-kanban>e-stackedHeaders","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"StackedHeaderDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"KanbanComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-kanban","name":"Kanban"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-kanban","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ColumnsDirective"}]},"childStackedHeaders":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"StackedHeadersDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"tooltipTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["tooltipTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"columns_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["columnsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"swimlaneSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["swimlaneSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"cardSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["cardSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"dialogSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["dialogSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__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"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"KanbanModule":{"__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":"KanbanComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"},{"__symbolic":"reference","name":"StackedHeaderDirective"},{"__symbolic":"reference","name":"StackedHeadersDirective"}],"exports":[{"__symbolic":"reference","name":"KanbanComponent"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"},{"__symbolic":"reference","name":"StackedHeaderDirective"},{"__symbolic":"reference","name":"StackedHeadersDirective"}]}]}],"members":{}},"KanbanAllModule":{"__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":"KanbanModule"}],"exports":[{"__symbolic":"reference","name":"KanbanModule"}],"providers":[]}]}],"members":{}}},"origins":{"ɵa":"./src/kanban/kanban.component","ɵb":"./src/kanban/kanban.component","ColumnDirective":"./src/kanban/columns.directive","ColumnsDirective":"./src/kanban/columns.directive","StackedHeaderDirective":"./src/kanban/stackedheaders.directive","StackedHeadersDirective":"./src/kanban/stackedheaders.directive","KanbanComponent":"./src/kanban/kanban.component","KanbanModule":"./src/kanban/kanban.module","KanbanAllModule":"./src/kanban/kanban-all.module"},"importAs":"@syncfusion/ej2-angular-kanban"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-kanban@*",
3
- "_id": "@syncfusion/ej2-angular-kanban@20.4.52",
3
+ "_id": "@syncfusion/ej2-angular-kanban@20.6.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-nICcHBZna3HzaIEz4Ks/fPAE0YtZq0+MMbdi5SUCAsOu/SVq+esa//dx64dlerR1QeL5QsrcE2qu1iUIDGUVjg==",
5
+ "_integrity": "sha512-0xn+IwzimjtaqkTjX11rF6D3uvbMc0eF0GTTTKSItIxz+Dw+75GofSXAN0EG0tulXDphwQ2cj7oZR0xskvuDqQ==",
6
6
  "_location": "/@syncfusion/ej2-angular-kanban",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-20.4.52.tgz",
23
- "_shasum": "93867143141c28f48677bae9ff64cdb22be5938a",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-20.6.0.tgz",
23
+ "_shasum": "0e9b2707a853fb5d63c877464027d6fdae8f7a39",
24
24
  "_spec": "@syncfusion/ej2-angular-kanban@*",
25
- "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_21.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": "~20.4.53",
35
- "@syncfusion/ej2-base": "~20.4.51",
36
- "@syncfusion/ej2-kanban": "20.4.54"
34
+ "@syncfusion/ej2-angular-base": "~21.1.35",
35
+ "@syncfusion/ej2-base": "~21.1.35",
36
+ "@syncfusion/ej2-kanban": "21.1.35"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for Angular",
@@ -59,5 +59,5 @@
59
59
  "schematics": "./schematics/collection.json",
60
60
  "sideEffects": false,
61
61
  "typings": "ej2-angular-kanban.d.ts",
62
- "version": "20.4.54-ngcc"
62
+ "version": "21.1.35-ngcc"
63
63
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-kanban";
2
- export declare const pkgVer = "^20.4.52";
2
+ export declare const pkgVer = "^20.6.0";
3
3
  export declare const moduleName = "KanbanModule";
4
- export declare const themeVer = "~20.4.52";
4
+ export declare const themeVer = "~20.6.0";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-kanban';
4
- exports.pkgVer = '^20.4.54';
4
+ exports.pkgVer = '^21.1.35';
5
5
  exports.moduleName = 'KanbanModule';
6
- exports.themeVer = '~20.4.54';
6
+ exports.themeVer = '~21.1.35';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-kanban';
2
- export const pkgVer = '^20.4.54';
2
+ export const pkgVer = '^21.1.35';
3
3
  export const moduleName = 'KanbanModule';
4
- export const themeVer = '~20.4.54';
4
+ export const themeVer = '~21.1.35';
@@ -300,7 +300,7 @@
300
300
  background: #ffcdd2;
301
301
  }
302
302
  .e-kanban .e-kanban-header .e-header-cells.e-collapsed {
303
- background-color: #2a2a2a;
303
+ background: #2a2a2a;
304
304
  text-align: center;
305
305
  width: 50px;
306
306
  }
@@ -592,7 +592,7 @@
592
592
  }
593
593
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dragged-clone,
594
594
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-container .e-target-dragged-clone {
595
- background-color: #8d8d8d;
595
+ background: #8d8d8d;
596
596
  border: 1px dashed #9c9c9c;
597
597
  }
598
598
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dropped-clone,
@@ -767,7 +767,7 @@
767
767
  position: absolute;
768
768
  }
769
769
  .e-kanban.e-device .e-swimlane-content .e-swimlane-overlay.e-enable {
770
- background-color: #383838;
770
+ background: #383838;
771
771
  height: 100%;
772
772
  opacity: 0.5;
773
773
  width: 100%;
@@ -952,7 +952,7 @@
952
952
 
953
953
  .e-mobile-popup-wrapper.e-device,
954
954
  .e-mobile-popup-container.e-device {
955
- background-color: #2a2a2a;
955
+ background: #2a2a2a;
956
956
  border-radius: 2px;
957
957
  bottom: 0;
958
958
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
@@ -977,8 +977,7 @@
977
977
  }
978
978
  .e-mobile-popup-wrapper.e-device .e-popup-header .e-close,
979
979
  .e-mobile-popup-container.e-device .e-popup-header .e-close {
980
- background-color: transparent;
981
- border: 0;
980
+ background: transparent;
982
981
  }
983
982
  .e-mobile-popup-wrapper.e-device .e-popup-content,
984
983
  .e-mobile-popup-container.e-device .e-popup-content {
@@ -1040,7 +1039,7 @@
1040
1039
  background: #2a2a2a;
1041
1040
  }
1042
1041
  .e-kanban .e-kanban-table .e-header-cells {
1043
- background-color: #2a2a2a;
1042
+ background: #2a2a2a;
1044
1043
  }
1045
1044
  .e-kanban .e-kanban-table .e-header-cells .e-header-text {
1046
1045
  color: #fff;
@@ -1066,20 +1065,20 @@
1066
1065
  color: #393939;
1067
1066
  }
1068
1067
  .e-kanban .e-kanban-table.e-content-table .e-content-row:not(.e-swimlane-row) td {
1069
- background-color: #2a2a2a;
1068
+ background: #2a2a2a;
1070
1069
  }
1071
1070
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-swimlane-text,
1072
1071
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-item-count {
1073
1072
  color: #fff;
1074
1073
  }
1075
1074
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
1076
- background-color: rgba(0, 112, 240, 0.1);
1075
+ background: rgba(0, 112, 240, 0.1);
1077
1076
  }
1078
1077
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
1079
1078
  color: #0070f0;
1080
1079
  }
1081
1080
  .e-kanban .e-kanban-table.e-content-table .e-card.e-selection {
1082
- background-color: #767676;
1081
+ background: #767676;
1083
1082
  }
1084
1083
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-header {
1085
1084
  color: #fff;
@@ -1088,7 +1087,7 @@
1088
1087
  color: #fff;
1089
1088
  }
1090
1089
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-tag.e-card-label {
1091
- background-color: #eceaff;
1090
+ background: #eceaff;
1092
1091
  color: #3225c9;
1093
1092
  }
1094
1093
  .e-kanban .e-kanban-table.e-content-table .e-target-multi-clone .e-column-key.e-multi-active {
@@ -1112,7 +1111,7 @@
1112
1111
  }
1113
1112
 
1114
1113
  .e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
1115
- background-color: initial;
1114
+ background: initial;
1116
1115
  color: #f0f0f0;
1117
1116
  min-width: 70%;
1118
1117
  }
@@ -297,7 +297,7 @@
297
297
  background: #ffcdd2;
298
298
  }
299
299
  .e-kanban .e-kanban-header .e-header-cells.e-collapsed {
300
- background-color: #f5f5f5;
300
+ background: #f5f5f5;
301
301
  text-align: center;
302
302
  width: 50px;
303
303
  }
@@ -589,7 +589,7 @@
589
589
  }
590
590
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dragged-clone,
591
591
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-container .e-target-dragged-clone {
592
- background-color: #f5f5f5;
592
+ background: #f5f5f5;
593
593
  border: 1px dashed #ddd;
594
594
  }
595
595
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dropped-clone,
@@ -764,7 +764,7 @@
764
764
  position: absolute;
765
765
  }
766
766
  .e-kanban.e-device .e-swimlane-content .e-swimlane-overlay.e-enable {
767
- background-color: #383838;
767
+ background: #383838;
768
768
  height: 100%;
769
769
  opacity: 0.5;
770
770
  width: 100%;
@@ -949,7 +949,7 @@
949
949
 
950
950
  .e-mobile-popup-wrapper.e-device,
951
951
  .e-mobile-popup-container.e-device {
952
- background-color: #fff;
952
+ background: #fff;
953
953
  border-radius: 2px;
954
954
  bottom: 0;
955
955
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
@@ -974,7 +974,7 @@
974
974
  }
975
975
  .e-mobile-popup-wrapper.e-device .e-popup-header .e-close,
976
976
  .e-mobile-popup-container.e-device .e-popup-header .e-close {
977
- background-color: transparent;
977
+ background: transparent;
978
978
  border: 0;
979
979
  }
980
980
  .e-mobile-popup-wrapper.e-device .e-popup-content,
@@ -1037,7 +1037,7 @@
1037
1037
  background: #fff;
1038
1038
  }
1039
1039
  .e-kanban .e-kanban-table .e-header-cells {
1040
- background-color: #f5f5f5;
1040
+ background: #f5f5f5;
1041
1041
  }
1042
1042
  .e-kanban .e-kanban-table .e-header-cells .e-header-text {
1043
1043
  color: #333;
@@ -1063,20 +1063,20 @@
1063
1063
  color: #777;
1064
1064
  }
1065
1065
  .e-kanban .e-kanban-table.e-content-table .e-content-row:not(.e-swimlane-row) td {
1066
- background-color: #f5f5f5;
1066
+ background: #f5f5f5;
1067
1067
  }
1068
1068
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-swimlane-text,
1069
1069
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-item-count {
1070
1070
  color: #333;
1071
1071
  }
1072
1072
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
1073
- background-color: rgba(49, 122, 185, 0.1);
1073
+ background: rgba(49, 122, 185, 0.1);
1074
1074
  }
1075
1075
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
1076
1076
  color: #317ab9;
1077
1077
  }
1078
1078
  .e-kanban .e-kanban-table.e-content-table .e-card.e-selection {
1079
- background-color: #eee;
1079
+ background: #eee;
1080
1080
  }
1081
1081
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-header {
1082
1082
  color: #333;
@@ -1085,7 +1085,7 @@
1085
1085
  color: #777;
1086
1086
  }
1087
1087
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-tag.e-card-label {
1088
- background-color: #eceaff;
1088
+ background: #eceaff;
1089
1089
  color: #3225c9;
1090
1090
  }
1091
1091
  .e-kanban .e-kanban-table.e-content-table .e-target-multi-clone .e-column-key.e-multi-active {
@@ -1109,7 +1109,7 @@
1109
1109
  }
1110
1110
 
1111
1111
  .e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
1112
- background-color: initial;
1112
+ background: initial;
1113
1113
  color: #555;
1114
1114
  min-width: 70%;
1115
1115
  }
@@ -377,7 +377,7 @@
377
377
  background: #ffcdd2;
378
378
  }
379
379
  .e-kanban .e-kanban-header .e-header-cells.e-collapsed {
380
- background-color: #f2f4f6;
380
+ background: #f2f4f6;
381
381
  text-align: center;
382
382
  width: 50px;
383
383
  }
@@ -669,7 +669,7 @@
669
669
  }
670
670
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dragged-clone,
671
671
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-container .e-target-dragged-clone {
672
- background-color: #f2f4f6;
672
+ background: #f2f4f6;
673
673
  border: 1px dashed #ced4da;
674
674
  }
675
675
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dropped-clone,
@@ -844,7 +844,7 @@
844
844
  position: absolute;
845
845
  }
846
846
  .e-kanban.e-device .e-swimlane-content .e-swimlane-overlay.e-enable {
847
- background-color: #383838;
847
+ background: #383838;
848
848
  height: 100%;
849
849
  opacity: 0.5;
850
850
  width: 100%;
@@ -1029,7 +1029,7 @@
1029
1029
 
1030
1030
  .e-mobile-popup-wrapper.e-device,
1031
1031
  .e-mobile-popup-container.e-device {
1032
- background-color: #fff;
1032
+ background: #fff;
1033
1033
  border-radius: 2px;
1034
1034
  bottom: 0;
1035
1035
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
@@ -1116,7 +1116,7 @@
1116
1116
  background: #fff;
1117
1117
  }
1118
1118
  .e-kanban .e-kanban-table .e-header-cells {
1119
- background-color: #f2f4f6;
1119
+ background: #f2f4f6;
1120
1120
  }
1121
1121
  .e-kanban .e-kanban-table .e-header-cells .e-header-text {
1122
1122
  color: #212529;
@@ -1142,20 +1142,20 @@
1142
1142
  color: #fff;
1143
1143
  }
1144
1144
  .e-kanban .e-kanban-table.e-content-table .e-content-row:not(.e-swimlane-row) td {
1145
- background-color: #f2f4f6;
1145
+ background: #f2f4f6;
1146
1146
  }
1147
1147
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-swimlane-text,
1148
1148
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-item-count {
1149
1149
  color: #212529;
1150
1150
  }
1151
1151
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
1152
- background-color: rgba(0, 123, 255, 0.1);
1152
+ background: rgba(0, 123, 255, 0.1);
1153
1153
  }
1154
1154
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
1155
1155
  color: #007bff;
1156
1156
  }
1157
1157
  .e-kanban .e-kanban-table.e-content-table .e-card.e-selection {
1158
- background-color: #e9ecef;
1158
+ background: #e9ecef;
1159
1159
  }
1160
1160
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-header {
1161
1161
  color: #212529;
@@ -1164,7 +1164,7 @@
1164
1164
  color: #343a40;
1165
1165
  }
1166
1166
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-tag.e-card-label {
1167
- background-color: #eceaff;
1167
+ background: #eceaff;
1168
1168
  color: #3225c9;
1169
1169
  }
1170
1170
  .e-kanban .e-kanban-table.e-content-table .e-target-multi-clone .e-column-key.e-multi-active {
@@ -1188,7 +1188,7 @@
1188
1188
  }
1189
1189
 
1190
1190
  .e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
1191
- background-color: initial;
1191
+ background: initial;
1192
1192
  color: #495057;
1193
1193
  min-width: 70%;
1194
1194
  }
@@ -347,7 +347,7 @@
347
347
  background: #7c151f;
348
348
  }
349
349
  .e-kanban .e-kanban-header .e-header-cells.e-collapsed {
350
- background-color: #282d31;
350
+ background: #282d31;
351
351
  text-align: center;
352
352
  width: 42px;
353
353
  }
@@ -639,7 +639,7 @@
639
639
  }
640
640
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dragged-clone,
641
641
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-container .e-target-dragged-clone {
642
- background-color: #495057;
642
+ background: #495057;
643
643
  border: 1px dashed #adb5bd;
644
644
  }
645
645
  .e-kanban .e-kanban-content .e-content-row .e-content-cells .e-card-wrapper .e-target-dropped-clone,
@@ -817,7 +817,7 @@
817
817
  position: absolute;
818
818
  }
819
819
  .e-kanban.e-device .e-swimlane-content .e-swimlane-overlay.e-enable {
820
- background-color: rgba(0, 0, 0, 0.4);
820
+ background: rgba(0, 0, 0, 0.4);
821
821
  height: 100%;
822
822
  opacity: 1;
823
823
  width: 100%;
@@ -1012,7 +1012,7 @@
1012
1012
 
1013
1013
  .e-mobile-popup-wrapper.e-device,
1014
1014
  .e-mobile-popup-container.e-device {
1015
- background-color: #212529;
1015
+ background: #212529;
1016
1016
  border-radius: 2px;
1017
1017
  bottom: 0;
1018
1018
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
@@ -1037,7 +1037,7 @@
1037
1037
  }
1038
1038
  .e-mobile-popup-wrapper.e-device .e-popup-header .e-close,
1039
1039
  .e-mobile-popup-container.e-device .e-popup-header .e-close {
1040
- background-color: transparent;
1040
+ background: transparent;
1041
1041
  }
1042
1042
  .e-mobile-popup-wrapper.e-device .e-popup-content,
1043
1043
  .e-mobile-popup-container.e-device .e-popup-content {
@@ -1099,7 +1099,7 @@
1099
1099
  background: #212529;
1100
1100
  }
1101
1101
  .e-kanban .e-kanban-table .e-header-cells {
1102
- background-color: #282d31;
1102
+ background: #282d31;
1103
1103
  }
1104
1104
  .e-kanban .e-kanban-table .e-header-cells .e-header-text {
1105
1105
  color: #e9ecef;
@@ -1125,14 +1125,14 @@
1125
1125
  color: #0d6efd;
1126
1126
  }
1127
1127
  .e-kanban .e-kanban-table.e-content-table .e-content-row:not(.e-swimlane-row) td {
1128
- background-color: #282d31;
1128
+ background: #282d31;
1129
1129
  }
1130
1130
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-swimlane-text,
1131
1131
  .e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-item-count {
1132
1132
  color: #fff;
1133
1133
  }
1134
1134
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
1135
- background-color: #031633;
1135
+ background: #031633;
1136
1136
  }
1137
1137
  .e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
1138
1138
  color: #0d6efd;
@@ -1141,7 +1141,7 @@
1141
1141
  background: #212529;
1142
1142
  }
1143
1143
  .e-kanban .e-kanban-table.e-content-table .e-card.e-selection {
1144
- background-color: #212529;
1144
+ background: #212529;
1145
1145
  }
1146
1146
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-header {
1147
1147
  color: #fff;
@@ -1150,7 +1150,7 @@
1150
1150
  color: #e9ecef;
1151
1151
  }
1152
1152
  .e-kanban .e-kanban-table.e-content-table .e-card .e-card-tag.e-card-label {
1153
- background-color: #495057;
1153
+ background: #495057;
1154
1154
  color: #fff;
1155
1155
  }
1156
1156
  .e-kanban .e-kanban-table.e-content-table .e-target-multi-clone .e-column-key.e-multi-active {
@@ -1174,7 +1174,7 @@
1174
1174
  }
1175
1175
 
1176
1176
  .e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
1177
- background-color: initial;
1177
+ background: initial;
1178
1178
  color: #fff;
1179
1179
  min-width: 70%;
1180
1180
  font-weight: normal;