@syncfusion/ej2-angular-kanban 21.2.3-ngcc → 22.1.34-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-kanban.es5.js +1 -1
- package/@syncfusion/ej2-angular-kanban.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-kanban.js +1 -1
- package/@syncfusion/ej2-angular-kanban.js.map +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/ej2-angular-kanban.umd.js +2 -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/license +10 -0
- 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/columns.directive.d.ts +1 -0
- package/src/kanban/kanban.component.d.ts +1 -0
- package/styles/bootstrap-dark.css +19 -0
- package/styles/bootstrap.css +19 -0
- package/styles/bootstrap4.css +19 -0
- package/styles/bootstrap5-dark.css +19 -0
- package/styles/bootstrap5.css +19 -0
- package/styles/fabric-dark.css +19 -0
- package/styles/fabric.css +19 -0
- package/styles/fluent-dark.css +19 -0
- package/styles/fluent.css +19 -0
- package/styles/highcontrast-light.css +19 -0
- package/styles/highcontrast.css +19 -0
- package/styles/kanban/bootstrap-dark.css +19 -0
- package/styles/kanban/bootstrap.css +19 -0
- package/styles/kanban/bootstrap4.css +19 -0
- package/styles/kanban/bootstrap5-dark.css +19 -0
- package/styles/kanban/bootstrap5.css +19 -0
- package/styles/kanban/fabric-dark.css +19 -0
- package/styles/kanban/fabric.css +19 -0
- package/styles/kanban/fluent-dark.css +19 -0
- package/styles/kanban/fluent.css +19 -0
- package/styles/kanban/highcontrast-light.css +19 -0
- package/styles/kanban/highcontrast.css +19 -0
- package/styles/kanban/material-dark.css +19 -0
- package/styles/kanban/material.css +19 -0
- package/styles/kanban/material3-dark.css +1193 -0
- package/styles/kanban/material3-dark.scss +2 -0
- package/styles/kanban/material3.css +1249 -0
- package/styles/kanban/material3.scss +2 -0
- package/styles/kanban/tailwind-dark.css +19 -0
- package/styles/kanban/tailwind.css +19 -0
- package/styles/material-dark.css +19 -0
- package/styles/material.css +19 -0
- package/styles/material3-dark.css +1193 -0
- package/styles/material3-dark.scss +2 -0
- package/styles/material3.css +1249 -0
- package/styles/material3.scss +2 -0
- package/styles/tailwind-dark.css +19 -0
- package/styles/tailwind.css +19 -0
|
@@ -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','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
|
+
{"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 * \\@asptype string\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 * \\@asptype string\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','cardHeight','cardSettings','columns','constraintType','cssClass','dataSource','dialogSettings','enableHtmlSanitizer','enablePersistence','enableRtl','enableTooltip','enableVirtualization','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 * \\@asptype string\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 * \\@asptype string\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","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"}
|
|
1
|
+
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-kanban"}],"metadata":{"ɵa":["allowDragAndDrop","allowKeyboard","cardHeight","cardSettings","columns","constraintType","cssClass","dataSource","dialogSettings","enableHtmlSanitizer","enablePersistence","enableRtl","enableTooltip","enableVirtualization","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/license
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
|
2
|
+
|
|
3
|
+
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
|
4
|
+
|
|
5
|
+
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
|
6
|
+
|
|
7
|
+
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
|
8
|
+
|
|
9
|
+
The Syncfusion license that contains the terms and conditions can be found at
|
|
10
|
+
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-kanban@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-kanban@21.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-kanban@21.3.0",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-7v4mv9w14yECBSD/OPuLvfG4xrb1tVunnfpreA1c1xnXZ6jVRHBmh1RoErWzYJBbTp2t7/cgShoTb5bZowsvog==",
|
|
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": "https://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-21.3.0.tgz",
|
|
23
|
+
"_shasum": "d1fe124bb3efddd6890b2a3767118718c3036d3b",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-kanban@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~
|
|
35
|
-
"@syncfusion/ej2-base": "~
|
|
36
|
-
"@syncfusion/ej2-kanban": "
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~22.1.34",
|
|
35
|
+
"@syncfusion/ej2-base": "~22.1.34",
|
|
36
|
+
"@syncfusion/ej2-kanban": "22.1.34"
|
|
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": "
|
|
62
|
+
"version": "22.1.34-ngcc"
|
|
63
63
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-kanban";
|
|
2
|
-
export declare const pkgVer = "^21.
|
|
2
|
+
export declare const pkgVer = "^21.3.0";
|
|
3
3
|
export declare const moduleName = "KanbanModule";
|
|
4
|
-
export declare const themeVer = "~21.
|
|
4
|
+
export declare const themeVer = "~21.3.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 = '^
|
|
4
|
+
exports.pkgVer = '^22.1.34';
|
|
5
5
|
exports.moduleName = 'KanbanModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~22.1.34';
|
|
@@ -42,6 +42,7 @@ export declare class KanbanComponent extends Kanban implements IComponentBase {
|
|
|
42
42
|
/**
|
|
43
43
|
* Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.
|
|
44
44
|
* @default null
|
|
45
|
+
* @asptype string
|
|
45
46
|
*/
|
|
46
47
|
tooltipTemplate: any;
|
|
47
48
|
columns_template: any;
|
|
@@ -1009,6 +1009,10 @@
|
|
|
1009
1009
|
padding: 5px 0;
|
|
1010
1010
|
text-align: left;
|
|
1011
1011
|
}
|
|
1012
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1013
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1014
|
+
resize: vertical;
|
|
1015
|
+
}
|
|
1012
1016
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1013
1017
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1014
1018
|
padding-right: 10px;
|
|
@@ -1034,6 +1038,16 @@
|
|
|
1034
1038
|
float: right;
|
|
1035
1039
|
}
|
|
1036
1040
|
|
|
1041
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1042
|
+
border-radius: 4px;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1046
|
+
height: inherit;
|
|
1047
|
+
overflow: hidden;
|
|
1048
|
+
padding: 8px 8px 0;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1037
1051
|
/*! kanban component theme */
|
|
1038
1052
|
.e-kanban {
|
|
1039
1053
|
background: #2a2a2a;
|
|
@@ -1117,4 +1131,9 @@
|
|
|
1117
1131
|
}
|
|
1118
1132
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1119
1133
|
box-shadow: none;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1137
|
+
.e-card-skeleton-wrapper {
|
|
1138
|
+
background: #2a2a2a;
|
|
1120
1139
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -1007,6 +1007,10 @@
|
|
|
1007
1007
|
padding: 5px 0;
|
|
1008
1008
|
text-align: left;
|
|
1009
1009
|
}
|
|
1010
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1011
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1012
|
+
resize: vertical;
|
|
1013
|
+
}
|
|
1010
1014
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1011
1015
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1012
1016
|
padding-right: 10px;
|
|
@@ -1032,6 +1036,16 @@
|
|
|
1032
1036
|
float: right;
|
|
1033
1037
|
}
|
|
1034
1038
|
|
|
1039
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1040
|
+
border-radius: 4px;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1044
|
+
height: inherit;
|
|
1045
|
+
overflow: hidden;
|
|
1046
|
+
padding: 8px 8px 0;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1035
1049
|
/*! kanban component theme */
|
|
1036
1050
|
.e-kanban {
|
|
1037
1051
|
background: #fff;
|
|
@@ -1115,4 +1129,9 @@
|
|
|
1115
1129
|
}
|
|
1116
1130
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1117
1131
|
box-shadow: none;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1135
|
+
.e-card-skeleton-wrapper {
|
|
1136
|
+
background: #f5f5f5;
|
|
1118
1137
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1086,6 +1086,10 @@
|
|
|
1086
1086
|
padding: 5px 0;
|
|
1087
1087
|
text-align: left;
|
|
1088
1088
|
}
|
|
1089
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1090
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1091
|
+
resize: vertical;
|
|
1092
|
+
}
|
|
1089
1093
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1090
1094
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1091
1095
|
padding-right: 10px;
|
|
@@ -1111,6 +1115,16 @@
|
|
|
1111
1115
|
float: right;
|
|
1112
1116
|
}
|
|
1113
1117
|
|
|
1118
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1119
|
+
border-radius: 4px;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1123
|
+
height: inherit;
|
|
1124
|
+
overflow: hidden;
|
|
1125
|
+
padding: 8px 8px 0;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1114
1128
|
/*! kanban component theme */
|
|
1115
1129
|
.e-kanban {
|
|
1116
1130
|
background: #fff;
|
|
@@ -1194,4 +1208,9 @@
|
|
|
1194
1208
|
}
|
|
1195
1209
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1196
1210
|
box-shadow: none;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1214
|
+
.e-card-skeleton-wrapper {
|
|
1215
|
+
background: #f2f4f6;
|
|
1197
1216
|
}
|
|
@@ -1069,6 +1069,10 @@
|
|
|
1069
1069
|
padding: 8px 0;
|
|
1070
1070
|
text-align: left;
|
|
1071
1071
|
}
|
|
1072
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1073
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1074
|
+
resize: vertical;
|
|
1075
|
+
}
|
|
1072
1076
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1073
1077
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1074
1078
|
padding-right: 10px;
|
|
@@ -1094,6 +1098,16 @@
|
|
|
1094
1098
|
float: right;
|
|
1095
1099
|
}
|
|
1096
1100
|
|
|
1101
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1102
|
+
border-radius: 6px;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1106
|
+
height: inherit;
|
|
1107
|
+
overflow: hidden;
|
|
1108
|
+
padding: 12px 12px 0;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1097
1111
|
/*! kanban component theme */
|
|
1098
1112
|
.e-kanban {
|
|
1099
1113
|
background: #212529;
|
|
@@ -1185,4 +1199,9 @@
|
|
|
1185
1199
|
}
|
|
1186
1200
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1187
1201
|
box-shadow: 0 0 0 2px #0d6efd;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1205
|
+
.e-card-skeleton-wrapper {
|
|
1206
|
+
background: #282d31;
|
|
1188
1207
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1069,6 +1069,10 @@
|
|
|
1069
1069
|
padding: 8px 0;
|
|
1070
1070
|
text-align: left;
|
|
1071
1071
|
}
|
|
1072
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1073
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1074
|
+
resize: vertical;
|
|
1075
|
+
}
|
|
1072
1076
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1073
1077
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1074
1078
|
padding-right: 10px;
|
|
@@ -1094,6 +1098,16 @@
|
|
|
1094
1098
|
float: right;
|
|
1095
1099
|
}
|
|
1096
1100
|
|
|
1101
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1102
|
+
border-radius: 6px;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1106
|
+
height: inherit;
|
|
1107
|
+
overflow: hidden;
|
|
1108
|
+
padding: 12px 12px 0;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1097
1111
|
/*! kanban component theme */
|
|
1098
1112
|
.e-kanban {
|
|
1099
1113
|
background: #fff;
|
|
@@ -1185,4 +1199,9 @@
|
|
|
1185
1199
|
}
|
|
1186
1200
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1187
1201
|
box-shadow: 0 0 0 2px #0d6efd;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1205
|
+
.e-card-skeleton-wrapper {
|
|
1206
|
+
background: #f8f9fa;
|
|
1188
1207
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -976,6 +976,10 @@
|
|
|
976
976
|
padding: 5px 0;
|
|
977
977
|
text-align: left;
|
|
978
978
|
}
|
|
979
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
980
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
981
|
+
resize: vertical;
|
|
982
|
+
}
|
|
979
983
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
980
984
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
981
985
|
padding-right: 10px;
|
|
@@ -1001,6 +1005,16 @@
|
|
|
1001
1005
|
float: right;
|
|
1002
1006
|
}
|
|
1003
1007
|
|
|
1008
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1009
|
+
border-radius: 0;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1013
|
+
height: inherit;
|
|
1014
|
+
overflow: hidden;
|
|
1015
|
+
padding: 8px 8px 0;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1004
1018
|
/*! kanban component theme */
|
|
1005
1019
|
.e-kanban {
|
|
1006
1020
|
background: #201f1f;
|
|
@@ -1085,4 +1099,9 @@
|
|
|
1085
1099
|
}
|
|
1086
1100
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1087
1101
|
box-shadow: none;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1105
|
+
.e-card-skeleton-wrapper {
|
|
1106
|
+
background: #333232;
|
|
1088
1107
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -969,6 +969,10 @@
|
|
|
969
969
|
padding: 5px 0;
|
|
970
970
|
text-align: left;
|
|
971
971
|
}
|
|
972
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
973
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
974
|
+
resize: vertical;
|
|
975
|
+
}
|
|
972
976
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
973
977
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
974
978
|
padding-right: 10px;
|
|
@@ -994,6 +998,16 @@
|
|
|
994
998
|
float: right;
|
|
995
999
|
}
|
|
996
1000
|
|
|
1001
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1002
|
+
border-radius: 0;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1006
|
+
height: inherit;
|
|
1007
|
+
overflow: hidden;
|
|
1008
|
+
padding: 8px 8px 0;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
997
1011
|
/*! kanban component theme */
|
|
998
1012
|
.e-kanban {
|
|
999
1013
|
background: #fff;
|
|
@@ -1078,4 +1092,9 @@
|
|
|
1078
1092
|
}
|
|
1079
1093
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1080
1094
|
box-shadow: none;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1098
|
+
.e-card-skeleton-wrapper {
|
|
1099
|
+
background: #f4f4f4;
|
|
1081
1100
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -1036,6 +1036,10 @@
|
|
|
1036
1036
|
padding: 8px 0;
|
|
1037
1037
|
text-align: left;
|
|
1038
1038
|
}
|
|
1039
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1040
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1041
|
+
resize: vertical;
|
|
1042
|
+
}
|
|
1039
1043
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1040
1044
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1041
1045
|
padding-right: 10px;
|
|
@@ -1061,6 +1065,16 @@
|
|
|
1061
1065
|
float: right;
|
|
1062
1066
|
}
|
|
1063
1067
|
|
|
1068
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1069
|
+
border-radius: 2px;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1073
|
+
height: inherit;
|
|
1074
|
+
overflow: hidden;
|
|
1075
|
+
padding: 12px 12px 0;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1064
1078
|
/*! kanban component theme */
|
|
1065
1079
|
.e-kanban {
|
|
1066
1080
|
background: #1b1a19;
|
|
@@ -1147,4 +1161,9 @@
|
|
|
1147
1161
|
}
|
|
1148
1162
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1149
1163
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1167
|
+
.e-card-skeleton-wrapper {
|
|
1168
|
+
background: #201f1e;
|
|
1150
1169
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -1036,6 +1036,10 @@
|
|
|
1036
1036
|
padding: 8px 0;
|
|
1037
1037
|
text-align: left;
|
|
1038
1038
|
}
|
|
1039
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td textarea.e-field,
|
|
1040
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td textarea.e-field {
|
|
1041
|
+
resize: vertical;
|
|
1042
|
+
}
|
|
1039
1043
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1040
1044
|
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1041
1045
|
padding-right: 10px;
|
|
@@ -1061,6 +1065,16 @@
|
|
|
1061
1065
|
float: right;
|
|
1062
1066
|
}
|
|
1063
1067
|
|
|
1068
|
+
.e-card-virtual-skeleton-wrapper .e-skeleton.e-skeleton-text.e-shimmer-wave {
|
|
1069
|
+
border-radius: 2px;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.e-card-virtual-skeleton-wrapper {
|
|
1073
|
+
height: inherit;
|
|
1074
|
+
overflow: hidden;
|
|
1075
|
+
padding: 12px 12px 0;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1064
1078
|
/*! kanban component theme */
|
|
1065
1079
|
.e-kanban {
|
|
1066
1080
|
background: #fff;
|
|
@@ -1147,4 +1161,9 @@
|
|
|
1147
1161
|
}
|
|
1148
1162
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1149
1163
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.e-card-virtual-skeleton-wrapper,
|
|
1167
|
+
.e-card-skeleton-wrapper {
|
|
1168
|
+
background: #faf9f8;
|
|
1150
1169
|
}
|