@syncfusion/ej2-angular-kanban 19.2.55 → 19.3.44
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-kanban.es5.js +2 -2
- package/@syncfusion/ej2-angular-kanban.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-kanban.js +2 -2
- package/@syncfusion/ej2-angular-kanban.js.map +1 -1
- package/CHANGELOG.md +24 -0
- package/dist/ej2-angular-kanban.umd.js +4 -2
- package/dist/ej2-angular-kanban.umd.js.map +1 -1
- package/dist/ej2-angular-kanban.umd.min.js +2 -2
- package/dist/ej2-angular-kanban.umd.min.js.map +1 -1
- package/ej2-angular-kanban.metadata.json +1 -1
- package/package.json +8 -8
- 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/kanban/kanban.component.d.ts +17 -0
- package/styles/bootstrap-dark.css +13 -0
- package/styles/bootstrap.css +13 -0
- package/styles/bootstrap4.css +20 -7
- package/styles/bootstrap5-dark.css +1457 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +1457 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark.css +22 -4
- package/styles/fabric.css +21 -3
- package/styles/highcontrast-light.css +12 -2
- package/styles/highcontrast.css +11 -1
- package/styles/kanban/bootstrap-dark.css +13 -0
- package/styles/kanban/bootstrap.css +13 -0
- package/styles/kanban/bootstrap4.css +20 -7
- package/styles/kanban/bootstrap5-dark.css +1457 -0
- package/styles/kanban/bootstrap5-dark.scss +1 -0
- package/styles/kanban/bootstrap5.css +1457 -0
- package/styles/kanban/bootstrap5.scss +1 -0
- package/styles/kanban/fabric-dark.css +22 -4
- package/styles/kanban/fabric.css +21 -3
- package/styles/kanban/highcontrast-light.css +12 -2
- package/styles/kanban/highcontrast.css +11 -1
- package/styles/kanban/material-dark.css +15 -2
- package/styles/kanban/material.css +13 -0
- package/styles/kanban/tailwind-dark.css +16 -9
- package/styles/kanban/tailwind.css +15 -8
- package/styles/material-dark.css +15 -2
- package/styles/material.css +13 -0
- package/styles/tailwind-dark.css +16 -9
- package/styles/tailwind.css +15 -8
|
@@ -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','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;\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.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','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","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","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@
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-kanban@0.54.4",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-iKPjysInOqrY+MJeTjo8WX5kvjtq1q/hBTcf3VMe/24m/gAZkBdYo0NM4t1ovAEm+6bcpNsChhy4FlZD53VK3Q==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-kanban",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-0.54.4.tgz",
|
|
23
|
+
"_shasum": "7d190bb3fd1f1145feed9bae963ac46319c505a4",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-kanban@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~19.
|
|
35
|
-
"@syncfusion/ej2-base": "~19.
|
|
36
|
-
"@syncfusion/ej2-kanban": "19.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~19.3.44",
|
|
35
|
+
"@syncfusion/ej2-base": "~19.3.43",
|
|
36
|
+
"@syncfusion/ej2-kanban": "19.3.44"
|
|
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",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"schematics": "./schematics/collection.json",
|
|
67
67
|
"sideEffects": false,
|
|
68
68
|
"typings": "ej2-angular-kanban.d.ts",
|
|
69
|
-
"version": "19.
|
|
69
|
+
"version": "19.3.44"
|
|
70
70
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-kanban";
|
|
2
|
-
export declare const pkgVer = "^
|
|
2
|
+
export declare const pkgVer = "^0.54.4";
|
|
3
3
|
export declare const moduleName = "KanbanModule";
|
|
4
|
-
export declare const themeVer = "~
|
|
4
|
+
export declare const themeVer = "~0.54.4";
|
|
@@ -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 = '^
|
|
4
|
+
exports.pkgVer = '^0.54.4';
|
|
5
5
|
exports.moduleName = 'KanbanModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~0.54.4';
|
|
@@ -19,6 +19,23 @@ export declare class KanbanComponent extends Kanban implements IComponentBase {
|
|
|
19
19
|
private injector;
|
|
20
20
|
context: any;
|
|
21
21
|
tagObjects: any;
|
|
22
|
+
actionBegin: any;
|
|
23
|
+
actionComplete: any;
|
|
24
|
+
actionFailure: any;
|
|
25
|
+
cardClick: any;
|
|
26
|
+
cardDoubleClick: any;
|
|
27
|
+
cardRendered: any;
|
|
28
|
+
created: any;
|
|
29
|
+
dataBinding: any;
|
|
30
|
+
dataBound: any;
|
|
31
|
+
dataSourceChanged: any;
|
|
32
|
+
dataStateChange: any;
|
|
33
|
+
dialogClose: any;
|
|
34
|
+
dialogOpen: any;
|
|
35
|
+
drag: any;
|
|
36
|
+
dragStart: any;
|
|
37
|
+
dragStop: any;
|
|
38
|
+
queryCellInfo: any;
|
|
22
39
|
childColumns: QueryList<ColumnsDirective>;
|
|
23
40
|
childStackedHeaders: QueryList<StackedHeadersDirective>;
|
|
24
41
|
tags: string[];
|
|
@@ -902,6 +902,10 @@
|
|
|
902
902
|
padding: 4px;
|
|
903
903
|
}
|
|
904
904
|
|
|
905
|
+
.e-kanban-dialog {
|
|
906
|
+
min-width: 350px;
|
|
907
|
+
}
|
|
908
|
+
|
|
905
909
|
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
906
910
|
.e-kanban-dialog .e-kanban-form-container table {
|
|
907
911
|
width: 100%;
|
|
@@ -979,6 +983,10 @@
|
|
|
979
983
|
color: #fff;
|
|
980
984
|
}
|
|
981
985
|
|
|
986
|
+
.e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
|
|
987
|
+
background-color: rgba(0, 112, 240, 0.1);
|
|
988
|
+
}
|
|
989
|
+
|
|
982
990
|
.e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
|
|
983
991
|
color: #0070f0;
|
|
984
992
|
}
|
|
@@ -1022,3 +1030,8 @@
|
|
|
1022
1030
|
.e-kanban .e-frozen-swimlane-row .e-swimlane-header .e-item-count {
|
|
1023
1031
|
color: #fff;
|
|
1024
1032
|
}
|
|
1033
|
+
|
|
1034
|
+
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1035
|
+
background-color: initial;
|
|
1036
|
+
color: #f0f0f0;
|
|
1037
|
+
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -900,6 +900,10 @@
|
|
|
900
900
|
padding: 4px;
|
|
901
901
|
}
|
|
902
902
|
|
|
903
|
+
.e-kanban-dialog {
|
|
904
|
+
min-width: 350px;
|
|
905
|
+
}
|
|
906
|
+
|
|
903
907
|
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
904
908
|
.e-kanban-dialog .e-kanban-form-container table {
|
|
905
909
|
width: 100%;
|
|
@@ -977,6 +981,10 @@
|
|
|
977
981
|
color: #333;
|
|
978
982
|
}
|
|
979
983
|
|
|
984
|
+
.e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
|
|
985
|
+
background-color: rgba(49, 122, 185, 0.1);
|
|
986
|
+
}
|
|
987
|
+
|
|
980
988
|
.e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
|
|
981
989
|
color: #317ab9;
|
|
982
990
|
}
|
|
@@ -1020,3 +1028,8 @@
|
|
|
1020
1028
|
.e-kanban .e-frozen-swimlane-row .e-swimlane-header .e-item-count {
|
|
1021
1029
|
color: #333;
|
|
1022
1030
|
}
|
|
1031
|
+
|
|
1032
|
+
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1033
|
+
background-color: initial;
|
|
1034
|
+
color: #555;
|
|
1035
|
+
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -232,19 +232,19 @@
|
|
|
232
232
|
|
|
233
233
|
/*! Kanban component's bootstrap4 theme definitions and variables */
|
|
234
234
|
.e-kanban .e-column-expand::before {
|
|
235
|
-
content: '\
|
|
235
|
+
content: '\e70d';
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
.e-kanban .e-column-collapse::before {
|
|
239
|
-
content: '\
|
|
239
|
+
content: '\e76a';
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
.e-kanban .e-swimlane-row-expand::before {
|
|
243
|
-
content: '\
|
|
243
|
+
content: '\e705';
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
.e-kanban .e-swimlane-row-collapse::before {
|
|
247
|
-
content: '\
|
|
247
|
+
content: '\e76a';
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
.e-kanban .e-show-add-icon::before {
|
|
@@ -256,15 +256,15 @@
|
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
.e-kanban.e-rtl .e-column-collapse::before {
|
|
259
|
-
content: '\
|
|
259
|
+
content: '\e70d';
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.e-kanban.e-rtl .e-column-expand::before {
|
|
263
|
-
content: '\
|
|
263
|
+
content: '\e76a';
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
.e-kanban.e-rtl .e-swimlane-row-collapse::before {
|
|
267
|
-
content: '\
|
|
267
|
+
content: '\e70d';
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
@@ -974,6 +974,10 @@
|
|
|
974
974
|
width: 100%;
|
|
975
975
|
}
|
|
976
976
|
|
|
977
|
+
.e-kanban-dialog {
|
|
978
|
+
min-width: 350px;
|
|
979
|
+
}
|
|
980
|
+
|
|
977
981
|
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
978
982
|
.e-kanban-dialog .e-kanban-form-container table {
|
|
979
983
|
width: 100%;
|
|
@@ -1053,6 +1057,10 @@
|
|
|
1053
1057
|
color: #212529;
|
|
1054
1058
|
}
|
|
1055
1059
|
|
|
1060
|
+
.e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button:hover {
|
|
1061
|
+
background-color: rgba(0, 123, 255, 0.1);
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1056
1064
|
.e-kanban .e-kanban-table.e-content-table .e-content-row .e-show-add-button .e-show-add-icon {
|
|
1057
1065
|
color: #007bff;
|
|
1058
1066
|
}
|
|
@@ -1096,3 +1104,8 @@
|
|
|
1096
1104
|
.e-kanban .e-frozen-swimlane-row .e-swimlane-header .e-item-count {
|
|
1097
1105
|
color: #212529;
|
|
1098
1106
|
}
|
|
1107
|
+
|
|
1108
|
+
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1109
|
+
background-color: initial;
|
|
1110
|
+
color: #495057;
|
|
1111
|
+
}
|