@syncfusion/ej2-angular-kanban 25.2.6-ngcc → 25.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +7 -0
  3. package/esm2020/src/kanban/columns.directive.mjs +66 -0
  4. package/esm2020/src/kanban/kanban-all.module.mjs +23 -0
  5. package/esm2020/src/kanban/kanban.component.mjs +100 -0
  6. package/esm2020/src/kanban/kanban.module.mjs +43 -0
  7. package/esm2020/src/kanban/stackedheaders.directive.mjs +58 -0
  8. package/esm2020/syncfusion-ej2-angular-kanban.mjs +5 -0
  9. package/fesm2015/syncfusion-ej2-angular-kanban.mjs +279 -0
  10. package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +1 -0
  11. package/fesm2020/syncfusion-ej2-angular-kanban.mjs +279 -0
  12. package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +1 -0
  13. package/package.json +26 -12
  14. package/postinstall/tagchange.js +16 -16
  15. package/src/kanban/columns.directive.d.ts +5 -0
  16. package/src/kanban/kanban-all.module.d.ts +6 -0
  17. package/src/kanban/kanban.component.d.ts +3 -0
  18. package/src/kanban/kanban.module.d.ts +8 -0
  19. package/src/kanban/stackedheaders.directive.d.ts +5 -0
  20. package/syncfusion-ej2-angular-kanban.d.ts +5 -0
  21. package/@syncfusion/ej2-angular-kanban.es5.js +0 -355
  22. package/@syncfusion/ej2-angular-kanban.es5.js.map +0 -1
  23. package/@syncfusion/ej2-angular-kanban.js +0 -323
  24. package/@syncfusion/ej2-angular-kanban.js.map +0 -1
  25. package/CHANGELOG.md +0 -523
  26. package/dist/ej2-angular-kanban.umd.js +0 -397
  27. package/dist/ej2-angular-kanban.umd.js.map +0 -1
  28. package/dist/ej2-angular-kanban.umd.min.js +0 -11
  29. package/dist/ej2-angular-kanban.umd.min.js.map +0 -1
  30. package/ej2-angular-kanban.d.ts +0 -5
  31. package/ej2-angular-kanban.metadata.json +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"syncfusion-ej2-angular-kanban.mjs","sources":["../../src/kanban/columns.directive.ts","../../src/kanban/stackedheaders.directive.ts","../../src/kanban/kanban.component.ts","../../src/kanban/kanban.module.ts","../../src/kanban/kanban-all.module.ts","../../public_api.ts","../../syncfusion-ej2-angular-kanban.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 input: string[] = ['allowDrag', 'allowDrop', 'allowToggle', 'headerText', 'isExpanded', 'keyField', 'maxCount', 'minCount', 'showAddButton', 'showItemCount', 'template', 'transitionColumns'];\nlet 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 */\n@Directive({\n selector: 'e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Enable or disable column drag\n * @default true\n */\n public allowDrag: any;\n /** \n * Enable or disable column drop\n * @default true\n */\n public allowDrop: any;\n /** \n * Enable or disable toggle column\n * @default false\n */\n public allowToggle: any;\n /** \n * Defines the column header title\n * @default null\n */\n public headerText: any;\n /** \n * Defines the collapsed or expandable state\n * @default true\n */\n public 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 */\n public keyField: any;\n /** \n * Defines the maximum card count in column\n * @default null\n * @asptype int\n */\n public maxCount: any;\n /** \n * Defines the minimum card count in column\n * @default null\n * @asptype int\n */\n public minCount: any;\n /** \n * Enable or disable cell add button\n * @default false\n */\n public showAddButton: any;\n /** \n * Enable or disable card count in column\n * @default true\n */\n public showItemCount: any;\n /** \n * Defines the column transition\n * @default []\n */\n public transitionColumns: any;\n /** \n * Defines the column template\n * @default null\n * @asptype string\n */\n @ContentChild('template')\n @Template()\n public template: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Column Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-kanban>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n})\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\n constructor() {\n super('columns');\n }\n}","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['keyFields', 'text'];\nlet 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 */\n@Directive({\n selector: 'e-stackedHeaders>e-stackedHeader',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class StackedHeaderDirective extends ComplexBase<StackedHeaderDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Defines the multiple columns keyField\n * @default null\n */\n public keyFields: any;\n /** \n * Defines the column header text\n * @default null\n */\n public text: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * StackedHeader Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-kanban>e-stackedHeaders',\n queries: {\n children: new ContentChildren(StackedHeaderDirective)\n },\n})\nexport class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {\n constructor() {\n super('stackedheaders');\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 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 outputs: string[] = ['actionBegin','actionComplete','actionFailure','cardClick','cardDoubleClick','cardRendered','created','dataBinding','dataBound','dataSourceChanged','dataStateChange','dialogClose','dialogOpen','drag','dragStart','dragStop','queryCellInfo'];\nexport const twoWays: string[] = [''];\n\n/**\n * `ej-kanban` represents the Angular Kanban Component.\n * ```html\n * <ejs-kanban></ejs-kanban>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class KanbanComponent extends Kanban implements IComponentBase {\n public context : any;\n public 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;\n\tpublic queryCellInfo: any;\n public childColumns: QueryList<ColumnsDirective>;\n public childStackedHeaders: QueryList<StackedHeadersDirective>;\n public 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 @ContentChild('tooltipTemplate')\n @Template()\n public tooltipTemplate: any;\n @ContentChild('columnsTemplate')\n @Template()\n public columns_template: any;\n @ContentChild('swimlaneSettingsTemplate')\n @Template()\n public swimlaneSettings_template: any;\n @ContentChild('cardSettingsTemplate')\n @Template()\n public cardSettings_template: any;\n @ContentChild('dialogSettingsTemplate')\n @Template()\n public dialogSettings_template: any;\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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 public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n if (this.childStackedHeaders) {\n this.tagObjects[1].instance = this.childStackedHeaders as any;\n }\n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the Kanban component.\n */\n@NgModule({\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})\nexport class KanbanModule { }","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\n\n\n\n/**\n * NgModule definition for the Kanban component with providers.\n */\n@NgModule({\n imports: [CommonModule, KanbanModule],\n exports: [\n KanbanModule\n ],\n providers:[\n \n ]\n})\nexport class KanbanAllModule { }","// Mapping root file for package generation\nexport * from './src/index';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["input","outputs"],"mappings":"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"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "_from": "@syncfusion/ej2-angular-kanban@*",
3
3
  "_id": "@syncfusion/ej2-angular-kanban@25.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-O8/j1oPhC6xRowfAF9gk6LWOpHNfd2tcR1ob5ghvBdWEla02evksPjGUZsW6xT5YVRDtFU6KyIsCGF/TKsBc/Q==",
5
+ "_integrity": "sha512-wkS+CvsLg3t14X1sf/V7hKa7xE3ENfbWtnVjvEFKYk3U3DaZgaHUFxRa9n5Ga2piIpgp1yuwVdiGQJR3MhvAqQ==",
6
6
  "_location": "/@syncfusion/ej2-angular-kanban",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-25.2.3.tgz",
23
- "_shasum": "b9ad602641bd744ca9bfb4294ced98b0c7ff4229",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-25.2.3.tgz",
23
+ "_shasum": "3adea83017bb9e6fbb6eb7b0d5beb65e9db31fa8",
24
24
  "_spec": "@syncfusion/ej2-angular-kanban@*",
25
- "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/ivypackages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -33,12 +33,28 @@
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-angular-base": "~25.2.6",
35
35
  "@syncfusion/ej2-base": "~25.2.5",
36
- "@syncfusion/ej2-kanban": "25.2.6"
36
+ "@syncfusion/ej2-kanban": "25.2.6",
37
+ "tslib": "^2.3.0"
37
38
  },
38
39
  "deprecated": false,
39
40
  "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",
40
- "devDependencies": {},
41
- "es2015": "@syncfusion/ej2-angular-kanban.js",
41
+ "es2020": "fesm2020/syncfusion-ej2-angular-kanban.mjs",
42
+ "esm2020": "esm2020/syncfusion-ej2-angular-kanban.mjs",
43
+ "exports": {
44
+ "./package.json": {
45
+ "default": "./package.json"
46
+ },
47
+ ".": {
48
+ "types": "./syncfusion-ej2-angular-kanban.d.ts",
49
+ "esm2020": "./esm2020/syncfusion-ej2-angular-kanban.mjs",
50
+ "es2020": "./fesm2020/syncfusion-ej2-angular-kanban.mjs",
51
+ "es2015": "./fesm2015/syncfusion-ej2-angular-kanban.mjs",
52
+ "node": "./fesm2015/syncfusion-ej2-angular-kanban.mjs",
53
+ "default": "./fesm2020/syncfusion-ej2-angular-kanban.mjs"
54
+ }
55
+ },
56
+ "fesm2015": "fesm2015/syncfusion-ej2-angular-kanban.mjs",
57
+ "fesm2020": "fesm2020/syncfusion-ej2-angular-kanban.mjs",
42
58
  "homepage": "https://www.syncfusion.com/angular-components",
43
59
  "keywords": [
44
60
  "angular",
@@ -48,9 +64,7 @@
48
64
  "angular-kanban-board"
49
65
  ],
50
66
  "license": "SEE LICENSE IN license",
51
- "main": "dist/ej2-angular-kanban.umd.js",
52
- "metadata": "ej2-angular-kanban.metadata.json",
53
- "module": "@syncfusion/ej2-angular-kanban.es5.js",
67
+ "module": "fesm2015/syncfusion-ej2-angular-kanban.mjs",
54
68
  "name": "@syncfusion/ej2-angular-kanban",
55
69
  "repository": {
56
70
  "type": "git",
@@ -58,6 +72,6 @@
58
72
  },
59
73
  "schematics": "./schematics/collection.json",
60
74
  "sideEffects": false,
61
- "typings": "ej2-angular-kanban.d.ts",
62
- "version": "25.2.6-ngcc"
75
+ "typings": "syncfusion-ej2-angular-kanban.d.ts",
76
+ "version": "25.2.6"
63
77
  }
@@ -1,18 +1,18 @@
1
- var fs = require("fs");
2
- var glob = require("glob");
1
+ // var fs = require("fs");
2
+ // var glob = require("glob");
3
3
 
4
- var selectors = ['ejs-kanban'];
4
+ // // selectors
5
5
 
6
- if (process.env.tagName !== undefined) {
7
- var newTagPrefix = process.env.tagName.trim();
8
- var files = glob.sync("./@syncfusion/*");
9
- for (var i = 0; i < files.length; i++) {
10
- var sourceFile = fs.readFileSync(files[i], "utf8");
11
- for (var j = 0; j < selectors.length; j++) {
12
- selectors[j] = selectors[j].replace('[','').replace(']','');
13
- var tagRegex = new RegExp(selectors[j], "g");
14
- sourceFile = sourceFile.replace(tagRegex,selectors[j].replace("ejs", newTagPrefix));
15
- }
16
- fs.writeFileSync(files[i], sourceFile, "utf8");
17
- }
18
- }
6
+ // if (process.env.tagName !== undefined) {
7
+ // var newTagPrefix = process.env.tagName.trim();
8
+ // var files = glob.sync("./@syncfusion/*");
9
+ // for (var i = 0; i < files.length; i++) {
10
+ // var sourceFile = fs.readFileSync(files[i], "utf8");
11
+ // for (var j = 0; j < selectors.length; j++) {
12
+ // selectors[j] = selectors[j].replace('[','').replace(']','');
13
+ // var tagRegex = new RegExp(selectors[j], "g");
14
+ // sourceFile = sourceFile.replace(tagRegex,selectors[j].replace("ejs", newTagPrefix));
15
+ // }
16
+ // fs.writeFileSync(files[i], sourceFile, "utf8");
17
+ // }
18
+ // }
@@ -1,5 +1,6 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * `e-columns` directive represent a columns of the Kanban board.
5
6
  * It must be contained in a Kanban component(`ejs-kanban`).
@@ -80,6 +81,8 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
80
81
  */
81
82
  template: any;
82
83
  constructor(viewContainerRef: ViewContainerRef);
84
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>;
85
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnDirective, "e-columns>e-column", never, { "allowDrag": "allowDrag"; "allowDrop": "allowDrop"; "allowToggle": "allowToggle"; "headerText": "headerText"; "isExpanded": "isExpanded"; "keyField": "keyField"; "maxCount": "maxCount"; "minCount": "minCount"; "showAddButton": "showAddButton"; "showItemCount": "showItemCount"; "template": "template"; "transitionColumns": "transitionColumns"; }, {}, ["template"]>;
83
86
  }
84
87
  /**
85
88
  * Column Array Directive
@@ -87,4 +90,6 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
87
90
  */
88
91
  export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
89
92
  constructor();
93
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
94
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-kanban>e-columns", never, {}, {}, ["children"]>;
90
95
  }
@@ -1,5 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./kanban.module";
1
4
  /**
2
5
  * NgModule definition for the Kanban component with providers.
3
6
  */
4
7
  export declare class KanbanAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KanbanAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KanbanAllModule, never, [typeof i1.CommonModule, typeof i2.KanbanModule], [typeof i2.KanbanModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<KanbanAllModule>;
5
11
  }
@@ -3,6 +3,7 @@ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
3
  import { Kanban } from '@syncfusion/ej2-kanban';
4
4
  import { ColumnsDirective } from './columns.directive';
5
5
  import { StackedHeadersDirective } from './stackedheaders.directive';
6
+ import * as i0 from "@angular/core";
6
7
  export declare const inputs: string[];
7
8
  export declare const outputs: string[];
8
9
  export declare const twoWays: string[];
@@ -56,4 +57,6 @@ export declare class KanbanComponent extends Kanban implements IComponentBase {
56
57
  ngAfterContentChecked(): void;
57
58
  registerEvents: (eventList: string[]) => void;
58
59
  addTwoWay: (propList: string[]) => void;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<KanbanComponent, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<KanbanComponent, "ejs-kanban", never, { "allowDragAndDrop": "allowDragAndDrop"; "allowKeyboard": "allowKeyboard"; "cardHeight": "cardHeight"; "cardSettings": "cardSettings"; "columns": "columns"; "constraintType": "constraintType"; "cssClass": "cssClass"; "dataSource": "dataSource"; "dialogSettings": "dialogSettings"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableTooltip": "enableTooltip"; "enableVirtualization": "enableVirtualization"; "externalDropId": "externalDropId"; "height": "height"; "keyField": "keyField"; "locale": "locale"; "query": "query"; "showEmptyColumn": "showEmptyColumn"; "sortSettings": "sortSettings"; "stackedHeaders": "stackedHeaders"; "swimlaneSettings": "swimlaneSettings"; "tooltipTemplate": "tooltipTemplate"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "cardClick": "cardClick"; "cardDoubleClick": "cardDoubleClick"; "cardRendered": "cardRendered"; "created": "created"; "dataBinding": "dataBinding"; "dataBound": "dataBound"; "dataSourceChanged": "dataSourceChanged"; "dataStateChange": "dataStateChange"; "dialogClose": "dialogClose"; "dialogOpen": "dialogOpen"; "drag": "drag"; "dragStart": "dragStart"; "dragStop": "dragStop"; "queryCellInfo": "queryCellInfo"; }, ["tooltipTemplate", "columns_template", "swimlaneSettings_template", "cardSettings_template", "dialogSettings_template", "childColumns", "childStackedHeaders"], never>;
59
62
  }
@@ -1,5 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kanban.component";
3
+ import * as i2 from "./columns.directive";
4
+ import * as i3 from "./stackedheaders.directive";
5
+ import * as i4 from "@angular/common";
1
6
  /**
2
7
  * NgModule definition for the Kanban component.
3
8
  */
4
9
  export declare class KanbanModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<KanbanModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KanbanModule, [typeof i1.KanbanComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective, typeof i3.StackedHeaderDirective, typeof i3.StackedHeadersDirective], [typeof i4.CommonModule], [typeof i1.KanbanComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective, typeof i3.StackedHeaderDirective, typeof i3.StackedHeadersDirective]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<KanbanModule>;
5
13
  }
@@ -1,5 +1,6 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * `e-stackedHeaders` directive represent a stacked header of the Kanban board.
5
6
  * It must be contained in a Kanban component(`ejs-kanban`).
@@ -26,6 +27,8 @@ export declare class StackedHeaderDirective extends ComplexBase<StackedHeaderDir
26
27
  */
27
28
  text: any;
28
29
  constructor(viewContainerRef: ViewContainerRef);
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<StackedHeaderDirective, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StackedHeaderDirective, "e-stackedHeaders>e-stackedHeader", never, { "keyFields": "keyFields"; "text": "text"; }, {}, never>;
29
32
  }
30
33
  /**
31
34
  * StackedHeader Array Directive
@@ -33,4 +36,6 @@ export declare class StackedHeaderDirective extends ComplexBase<StackedHeaderDir
33
36
  */
34
37
  export declare class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {
35
38
  constructor();
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<StackedHeadersDirective, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StackedHeadersDirective, "ejs-kanban>e-stackedHeaders", never, {}, {}, ["children"]>;
36
41
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-kanban" />
5
+ export * from './public_api';
@@ -1,355 +0,0 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = Object.setPrototypeOf ||
3
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5
- return function (d, b) {
6
- extendStatics(d, b);
7
- function __() { this.constructor = d; }
8
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9
- };
10
- })();
11
- import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
12
- import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
13
- import { Kanban } from '@syncfusion/ej2-kanban';
14
- import { CommonModule } from '@angular/common';
15
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
16
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18
- r = Reflect.decorate(decorators, target, key, desc);
19
- else
20
- for (var i = decorators.length - 1; i >= 0; i--)
21
- if (d = decorators[i])
22
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
23
- return c > 3 && r && Object.defineProperty(target, key, r), r;
24
- };
25
- var __metadata = (this && this.__metadata) || function (k, v) {
26
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
27
- return Reflect.metadata(k, v);
28
- };
29
- var input = ['allowDrag', 'allowDrop', 'allowToggle', 'headerText', 'isExpanded', 'keyField', 'maxCount', 'minCount', 'showAddButton', 'showItemCount', 'template', 'transitionColumns'];
30
- var outputs = [];
31
- /**
32
- * `e-columns` directive represent a columns of the Kanban board.
33
- * It must be contained in a Kanban component(`ejs-kanban`).
34
- * ```html
35
- * <ejs-kanban>
36
- * <e-columns>
37
- * <e-column keyField='Open' textField='To Do'></e-column>
38
- * <e-column keyField='Close' textField='Completed'></e-column>
39
- * </e-columns>
40
- * </ejs-kanban>
41
- * ```
42
- */
43
- var ColumnDirective = /** @class */ (function (_super) {
44
- __extends(ColumnDirective, _super);
45
- /**
46
- * @param {?} viewContainerRef
47
- */
48
- function ColumnDirective(viewContainerRef) {
49
- var _this = _super.call(this) || this;
50
- _this.viewContainerRef = viewContainerRef;
51
- setValue('currentInstance', _this, _this.viewContainerRef);
52
- _this.registerEvents(outputs);
53
- _this.directivePropList = input;
54
- return _this;
55
- }
56
- return ColumnDirective;
57
- }(ComplexBase));
58
- ColumnDirective.decorators = [
59
- { type: Directive, args: [{
60
- selector: 'e-columns>e-column',
61
- inputs: input,
62
- outputs: outputs,
63
- queries: {}
64
- },] },
65
- ];
66
- /**
67
- * @nocollapse
68
- */
69
- ColumnDirective.ctorParameters = function () { return [
70
- { type: ViewContainerRef, },
71
- ]; };
72
- ColumnDirective.propDecorators = {
73
- 'template': [{ type: ContentChild, args: ['template',] },],
74
- };
75
- __decorate([
76
- Template(),
77
- __metadata("design:type", Object)
78
- ], ColumnDirective.prototype, "template", void 0);
79
- /**
80
- * Column Array Directive
81
- */
82
- var ColumnsDirective = /** @class */ (function (_super) {
83
- __extends(ColumnsDirective, _super);
84
- function ColumnsDirective() {
85
- return _super.call(this, 'columns') || this;
86
- }
87
- return ColumnsDirective;
88
- }(ArrayBase));
89
- ColumnsDirective.decorators = [
90
- { type: Directive, args: [{
91
- selector: 'ejs-kanban>e-columns',
92
- queries: {
93
- children: new ContentChildren(ColumnDirective)
94
- },
95
- },] },
96
- ];
97
- /**
98
- * @nocollapse
99
- */
100
- ColumnsDirective.ctorParameters = function () { return []; };
101
- var input$1 = ['keyFields', 'text'];
102
- var outputs$1 = [];
103
- /**
104
- * `e-stackedHeaders` directive represent a stacked header of the Kanban board.
105
- * It must be contained in a Kanban component(`ejs-kanban`).
106
- * ```html
107
- * <ejs-kanban>
108
- * <e-stackedHeaders>
109
- * <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>
110
- * <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>
111
- * </e-stackedHeaders>
112
- * </ejs-kanban>
113
- * ```
114
- */
115
- var StackedHeaderDirective = /** @class */ (function (_super) {
116
- __extends(StackedHeaderDirective, _super);
117
- /**
118
- * @param {?} viewContainerRef
119
- */
120
- function StackedHeaderDirective(viewContainerRef) {
121
- var _this = _super.call(this) || this;
122
- _this.viewContainerRef = viewContainerRef;
123
- setValue('currentInstance', _this, _this.viewContainerRef);
124
- _this.registerEvents(outputs$1);
125
- _this.directivePropList = input$1;
126
- return _this;
127
- }
128
- return StackedHeaderDirective;
129
- }(ComplexBase));
130
- StackedHeaderDirective.decorators = [
131
- { type: Directive, args: [{
132
- selector: 'e-stackedHeaders>e-stackedHeader',
133
- inputs: input$1,
134
- outputs: outputs$1,
135
- queries: {}
136
- },] },
137
- ];
138
- /**
139
- * @nocollapse
140
- */
141
- StackedHeaderDirective.ctorParameters = function () { return [
142
- { type: ViewContainerRef, },
143
- ]; };
144
- /**
145
- * StackedHeader Array Directive
146
- */
147
- var StackedHeadersDirective = /** @class */ (function (_super) {
148
- __extends(StackedHeadersDirective, _super);
149
- function StackedHeadersDirective() {
150
- return _super.call(this, 'stackedheaders') || this;
151
- }
152
- return StackedHeadersDirective;
153
- }(ArrayBase));
154
- StackedHeadersDirective.decorators = [
155
- { type: Directive, args: [{
156
- selector: 'ejs-kanban>e-stackedHeaders',
157
- queries: {
158
- children: new ContentChildren(StackedHeaderDirective)
159
- },
160
- },] },
161
- ];
162
- /**
163
- * @nocollapse
164
- */
165
- StackedHeadersDirective.ctorParameters = function () { return []; };
166
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
167
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
168
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
169
- r = Reflect.decorate(decorators, target, key, desc);
170
- else
171
- for (var i = decorators.length - 1; i >= 0; i--)
172
- if (d = decorators[i])
173
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
174
- return c > 3 && r && Object.defineProperty(target, key, r), r;
175
- };
176
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
177
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
178
- return Reflect.metadata(k, v);
179
- };
180
- var inputs = ['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'];
181
- var outputs$2 = ['actionBegin', 'actionComplete', 'actionFailure', 'cardClick', 'cardDoubleClick', 'cardRendered', 'created', 'dataBinding', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'dialogClose', 'dialogOpen', 'drag', 'dragStart', 'dragStop', 'queryCellInfo'];
182
- var twoWays = [''];
183
- /**
184
- * `ej-kanban` represents the Angular Kanban Component.
185
- * ```html
186
- * <ejs-kanban></ejs-kanban>
187
- * ```
188
- */
189
- var KanbanComponent = /** @class */ (function (_super) {
190
- __extends(KanbanComponent, _super);
191
- /**
192
- * @param {?} ngEle
193
- * @param {?} srenderer
194
- * @param {?} viewContainerRef
195
- * @param {?} injector
196
- */
197
- function KanbanComponent(ngEle, srenderer, viewContainerRef, injector) {
198
- var _this = _super.call(this) || this;
199
- _this.ngEle = ngEle;
200
- _this.srenderer = srenderer;
201
- _this.viewContainerRef = viewContainerRef;
202
- _this.injector = injector;
203
- _this.tags = ['columns', 'stackedHeaders'];
204
- _this.element = _this.ngEle.nativeElement;
205
- _this.injectedModules = _this.injectedModules || [];
206
- _this.registerEvents(outputs$2);
207
- _this.addTwoWay.call(_this, twoWays);
208
- setValue('currentInstance', _this, _this.viewContainerRef);
209
- _this.context = new ComponentBase();
210
- return _this;
211
- }
212
- /**
213
- * @return {?}
214
- */
215
- KanbanComponent.prototype.ngOnInit = function () {
216
- this.context.ngOnInit(this);
217
- };
218
- /**
219
- * @return {?}
220
- */
221
- KanbanComponent.prototype.ngAfterViewInit = function () {
222
- this.context.ngAfterViewInit(this);
223
- };
224
- /**
225
- * @return {?}
226
- */
227
- KanbanComponent.prototype.ngOnDestroy = function () {
228
- this.context.ngOnDestroy(this);
229
- };
230
- /**
231
- * @return {?}
232
- */
233
- KanbanComponent.prototype.ngAfterContentChecked = function () {
234
- this.tagObjects[0].instance = this.childColumns;
235
- if (this.childStackedHeaders) {
236
- this.tagObjects[1].instance = /** @type {?} */ (this.childStackedHeaders);
237
- }
238
- this.context.ngAfterContentChecked(this);
239
- };
240
- return KanbanComponent;
241
- }(Kanban));
242
- KanbanComponent.decorators = [
243
- { type: Component, args: [{
244
- selector: 'ejs-kanban',
245
- inputs: inputs,
246
- outputs: outputs$2,
247
- template: '',
248
- changeDetection: ChangeDetectionStrategy.OnPush,
249
- queries: {
250
- childColumns: new ContentChild(ColumnsDirective),
251
- childStackedHeaders: new ContentChild(StackedHeadersDirective)
252
- }
253
- },] },
254
- ];
255
- /**
256
- * @nocollapse
257
- */
258
- KanbanComponent.ctorParameters = function () { return [
259
- { type: ElementRef, },
260
- { type: Renderer2, },
261
- { type: ViewContainerRef, },
262
- { type: Injector, },
263
- ]; };
264
- KanbanComponent.propDecorators = {
265
- 'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate',] },],
266
- 'columns_template': [{ type: ContentChild, args: ['columnsTemplate',] },],
267
- 'swimlaneSettings_template': [{ type: ContentChild, args: ['swimlaneSettingsTemplate',] },],
268
- 'cardSettings_template': [{ type: ContentChild, args: ['cardSettingsTemplate',] },],
269
- 'dialogSettings_template': [{ type: ContentChild, args: ['dialogSettingsTemplate',] },],
270
- };
271
- __decorate$1([
272
- Template(),
273
- __metadata$1("design:type", Object)
274
- ], KanbanComponent.prototype, "tooltipTemplate", void 0);
275
- __decorate$1([
276
- Template(),
277
- __metadata$1("design:type", Object)
278
- ], KanbanComponent.prototype, "columns_template", void 0);
279
- __decorate$1([
280
- Template(),
281
- __metadata$1("design:type", Object)
282
- ], KanbanComponent.prototype, "swimlaneSettings_template", void 0);
283
- __decorate$1([
284
- Template(),
285
- __metadata$1("design:type", Object)
286
- ], KanbanComponent.prototype, "cardSettings_template", void 0);
287
- __decorate$1([
288
- Template(),
289
- __metadata$1("design:type", Object)
290
- ], KanbanComponent.prototype, "dialogSettings_template", void 0);
291
- KanbanComponent = __decorate$1([
292
- ComponentMixins([ComponentBase]),
293
- __metadata$1("design:paramtypes", [ElementRef,
294
- Renderer2,
295
- ViewContainerRef,
296
- Injector])
297
- ], KanbanComponent);
298
- /**
299
- * NgModule definition for the Kanban component.
300
- */
301
- var KanbanModule = /** @class */ (function () {
302
- function KanbanModule() {
303
- }
304
- return KanbanModule;
305
- }());
306
- KanbanModule.decorators = [
307
- { type: NgModule, args: [{
308
- imports: [CommonModule],
309
- declarations: [
310
- KanbanComponent,
311
- ColumnDirective,
312
- ColumnsDirective,
313
- StackedHeaderDirective,
314
- StackedHeadersDirective
315
- ],
316
- exports: [
317
- KanbanComponent,
318
- ColumnDirective,
319
- ColumnsDirective,
320
- StackedHeaderDirective,
321
- StackedHeadersDirective
322
- ]
323
- },] },
324
- ];
325
- /**
326
- * @nocollapse
327
- */
328
- KanbanModule.ctorParameters = function () { return []; };
329
- /**
330
- * NgModule definition for the Kanban component with providers.
331
- */
332
- var KanbanAllModule = /** @class */ (function () {
333
- function KanbanAllModule() {
334
- }
335
- return KanbanAllModule;
336
- }());
337
- KanbanAllModule.decorators = [
338
- { type: NgModule, args: [{
339
- imports: [CommonModule, KanbanModule],
340
- exports: [
341
- KanbanModule
342
- ],
343
- providers: []
344
- },] },
345
- ];
346
- /**
347
- * @nocollapse
348
- */
349
- KanbanAllModule.ctorParameters = function () { return []; };
350
- /**
351
- * Generated bundle index. Do not edit.
352
- */
353
- export { ColumnDirective, ColumnsDirective, StackedHeaderDirective, StackedHeadersDirective, KanbanComponent, KanbanModule, KanbanAllModule, inputs as ɵa, outputs$2 as ɵb };
354
- export { Kanban, actionBegin, actionComplete, actionFailure, cardClick, cardDoubleClick, cardRendered, queryCellInfo, dataBinding, dataBound, dragStart, drag, dragStop, documentClick, dialogOpen, dialogClose, contentReady, dataReady, bottomSpace, cardSpace, toggleWidth, dataSourceChanged, dataStateChange } from '@syncfusion/ej2-kanban';
355
- //# sourceMappingURL=ej2-angular-kanban.es5.js.map