@syncfusion/ej2-angular-kanban 20.2.44-ngcc → 20.2.45
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +7 -0
- package/esm2020/src/kanban/columns.directive.mjs +66 -0
- package/esm2020/src/kanban/kanban-all.module.mjs +23 -0
- package/esm2020/src/kanban/kanban.component.mjs +100 -0
- package/esm2020/src/kanban/kanban.module.mjs +43 -0
- package/esm2020/src/kanban/stackedheaders.directive.mjs +58 -0
- package/esm2020/syncfusion-ej2-angular-kanban.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs +279 -0
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs +279 -0
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +1 -0
- package/package.json +29 -15
- package/src/kanban/columns.directive.d.ts +5 -0
- package/src/kanban/kanban-all.module.d.ts +6 -0
- package/src/kanban/kanban.component.d.ts +3 -0
- package/src/kanban/kanban.module.d.ts +8 -0
- package/src/kanban/stackedheaders.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +14 -12
- package/styles/bootstrap.css +6 -4
- package/styles/bootstrap4.css +6 -3
- package/styles/bootstrap5-dark.css +8 -5
- package/styles/bootstrap5.css +8 -5
- package/styles/fabric-dark.css +7 -5
- package/styles/fabric.css +7 -5
- package/styles/fluent-dark.css +7 -4
- package/styles/fluent.css +7 -4
- package/styles/highcontrast-light.css +10 -5
- package/styles/highcontrast.css +10 -5
- package/styles/kanban/_all.scss +2 -0
- package/styles/kanban/_bootstrap-dark-definition.scss +224 -0
- package/styles/kanban/_bootstrap-definition.scss +223 -0
- package/styles/kanban/_bootstrap4-definition.scss +224 -0
- package/styles/kanban/_bootstrap5-dark-definition.scss +1 -0
- package/styles/kanban/_bootstrap5-definition.scss +233 -0
- package/styles/kanban/_fabric-dark-definition.scss +223 -0
- package/styles/kanban/_fabric-definition.scss +223 -0
- package/styles/kanban/_fluent-dark-definition.scss +1 -0
- package/styles/kanban/_fluent-definition.scss +225 -0
- package/styles/kanban/_fusionnew-definition.scss +233 -0
- package/styles/kanban/_highcontrast-definition.scss +224 -0
- package/styles/kanban/_highcontrast-light-definition.scss +224 -0
- package/styles/kanban/_layout.scss +976 -0
- package/styles/kanban/_material-dark-definition.scss +223 -0
- package/styles/kanban/_material-definition.scss +223 -0
- package/styles/kanban/_material3-definition.scss +233 -0
- package/styles/kanban/_tailwind-dark-definition.scss +1 -0
- package/styles/kanban/_tailwind-definition.scss +234 -0
- package/styles/kanban/_theme.scss +148 -0
- package/styles/kanban/bootstrap-dark.css +14 -12
- package/styles/kanban/bootstrap-dark.scss +15 -1
- package/styles/kanban/bootstrap.css +6 -4
- package/styles/kanban/bootstrap.scss +15 -1
- package/styles/kanban/bootstrap4.css +6 -3
- package/styles/kanban/bootstrap4.scss +15 -1
- package/styles/kanban/bootstrap5-dark.css +8 -5
- package/styles/kanban/bootstrap5-dark.scss +15 -1
- package/styles/kanban/bootstrap5.css +8 -5
- package/styles/kanban/bootstrap5.scss +15 -1
- package/styles/kanban/fabric-dark.css +7 -5
- package/styles/kanban/fabric-dark.scss +15 -1
- package/styles/kanban/fabric.css +7 -5
- package/styles/kanban/fabric.scss +15 -1
- package/styles/kanban/fluent-dark.css +7 -4
- package/styles/kanban/fluent-dark.scss +15 -1
- package/styles/kanban/fluent.css +7 -4
- package/styles/kanban/fluent.scss +15 -1
- package/styles/kanban/highcontrast-light.css +10 -5
- package/styles/kanban/highcontrast-light.scss +15 -1
- package/styles/kanban/highcontrast.css +10 -5
- package/styles/kanban/highcontrast.scss +15 -1
- package/styles/kanban/icons/_bootstrap-dark.scss +47 -0
- package/styles/kanban/icons/_bootstrap.scss +47 -0
- package/styles/kanban/icons/_bootstrap4.scss +47 -0
- package/styles/kanban/icons/_bootstrap5-dark.scss +1 -0
- package/styles/kanban/icons/_bootstrap5.scss +47 -0
- package/styles/kanban/icons/_fabric-dark.scss +47 -0
- package/styles/kanban/icons/_fabric.scss +47 -0
- package/styles/kanban/icons/_fluent-dark.scss +1 -0
- package/styles/kanban/icons/_fluent.scss +47 -0
- package/styles/kanban/icons/_fusionnew.scss +47 -0
- package/styles/kanban/icons/_highcontrast-light.scss +47 -0
- package/styles/kanban/icons/_highcontrast.scss +47 -0
- package/styles/kanban/icons/_material-dark.scss +47 -0
- package/styles/kanban/icons/_material.scss +47 -0
- package/styles/kanban/icons/_material3.scss +47 -0
- package/styles/kanban/icons/_tailwind-dark.scss +1 -0
- package/styles/kanban/icons/_tailwind.scss +47 -0
- package/styles/kanban/material-dark.css +20 -18
- package/styles/kanban/material-dark.scss +15 -1
- package/styles/kanban/material.css +6 -4
- package/styles/kanban/material.scss +15 -1
- package/styles/kanban/tailwind-dark.css +8 -5
- package/styles/kanban/tailwind-dark.scss +15 -1
- package/styles/kanban/tailwind.css +8 -5
- package/styles/kanban/tailwind.scss +15 -1
- package/styles/material-dark.css +20 -18
- package/styles/material.css +6 -4
- package/styles/tailwind-dark.css +8 -5
- package/styles/tailwind.css +8 -5
- package/syncfusion-ej2-angular-kanban.d.ts +5 -0
- package/@syncfusion/ej2-angular-kanban.es5.js +0 -355
- package/@syncfusion/ej2-angular-kanban.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-kanban.js +0 -323
- package/@syncfusion/ej2-angular-kanban.js.map +0 -1
- package/CHANGELOG.md +0 -405
- package/dist/ej2-angular-kanban.umd.js +0 -397
- package/dist/ej2-angular-kanban.umd.js.map +0 -1
- package/dist/ej2-angular-kanban.umd.min.js +0 -11
- package/dist/ej2-angular-kanban.umd.min.js.map +0 -1
- package/ej2-angular-kanban.d.ts +0 -5
- package/ej2-angular-kanban.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -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 */\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','cardSettings','columns','constraintType','cssClass','dataSource','dialogSettings','enablePersistence','enableRtl','enableTooltip','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 */\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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-kanban@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-kanban@20.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-kanban@20.2.44",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-x5Niv1o2x/Yr4yxrFSz+YQjUSnuLRJUTyZOX2CxrQlVE+fHqGCVAzN6FSvJDioAH6iePMYXIany4D8ETnQK35w==",
|
|
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": "http://nexus.syncfusion.com/repository/ej2-hotfix
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-kanban/-/ej2-angular-kanban-20.2.44.tgz",
|
|
23
|
+
"_shasum": "5268fdde8f0f827888a8abe1006715991c0506b9",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-kanban@*",
|
|
25
|
-
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/
|
|
25
|
+
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/ivypackages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,14 +31,30 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~20.2.
|
|
35
|
-
"@syncfusion/ej2-base": "~20.2.
|
|
36
|
-
"@syncfusion/ej2-kanban": "20.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~20.2.45",
|
|
35
|
+
"@syncfusion/ej2-base": "~20.2.45",
|
|
36
|
+
"@syncfusion/ej2-kanban": "20.2.45",
|
|
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
|
-
"
|
|
41
|
-
"
|
|
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://github.com/syncfusion/ej2-angular-ui-components#readme",
|
|
43
59
|
"keywords": [
|
|
44
60
|
"ej2",
|
|
@@ -55,9 +71,7 @@
|
|
|
55
71
|
"angular-kanban-board"
|
|
56
72
|
],
|
|
57
73
|
"license": "SEE LICENSE IN license",
|
|
58
|
-
"
|
|
59
|
-
"metadata": "ej2-angular-kanban.metadata.json",
|
|
60
|
-
"module": "@syncfusion/ej2-angular-kanban.es5.js",
|
|
74
|
+
"module": "fesm2015/syncfusion-ej2-angular-kanban.mjs",
|
|
61
75
|
"name": "@syncfusion/ej2-angular-kanban",
|
|
62
76
|
"repository": {
|
|
63
77
|
"type": "git",
|
|
@@ -65,6 +79,6 @@
|
|
|
65
79
|
},
|
|
66
80
|
"schematics": "./schematics/collection.json",
|
|
67
81
|
"sideEffects": false,
|
|
68
|
-
"typings": "ej2-angular-kanban.d.ts",
|
|
69
|
-
"version": "20.2.
|
|
82
|
+
"typings": "syncfusion-ej2-angular-kanban.d.ts",
|
|
83
|
+
"version": "20.2.45"
|
|
70
84
|
}
|
|
@@ -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`).
|
|
@@ -79,6 +80,8 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
|
79
80
|
*/
|
|
80
81
|
template: any;
|
|
81
82
|
constructor(viewContainerRef: ViewContainerRef);
|
|
83
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>;
|
|
84
|
+
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"]>;
|
|
82
85
|
}
|
|
83
86
|
/**
|
|
84
87
|
* Column Array Directive
|
|
@@ -86,4 +89,6 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
|
86
89
|
*/
|
|
87
90
|
export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
|
|
88
91
|
constructor();
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
|
|
93
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-kanban>e-columns", never, {}, {}, ["children"]>;
|
|
89
94
|
}
|
|
@@ -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[];
|
|
@@ -55,4 +56,6 @@ export declare class KanbanComponent extends Kanban implements IComponentBase {
|
|
|
55
56
|
ngAfterContentChecked(): void;
|
|
56
57
|
registerEvents: (eventList: string[]) => void;
|
|
57
58
|
addTwoWay: (propList: string[]) => void;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KanbanComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KanbanComponent, "ejs-kanban", never, { "allowDragAndDrop": "allowDragAndDrop"; "allowKeyboard": "allowKeyboard"; "cardSettings": "cardSettings"; "columns": "columns"; "constraintType": "constraintType"; "cssClass": "cssClass"; "dataSource": "dataSource"; "dialogSettings": "dialogSettings"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableTooltip": "enableTooltip"; "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>;
|
|
58
61
|
}
|
|
@@ -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
|
}
|
|
@@ -131,8 +131,10 @@
|
|
|
131
131
|
width: 40px;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
/*! component's default definitions and variables */
|
|
134
|
+
/* stylelint-disable-line no-empty-source */ /*! component's default definitions and variables */
|
|
135
135
|
/*! component's theme wise override material-definitions and variables */
|
|
136
|
+
/* stylelint-disable */
|
|
137
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
136
138
|
@keyframes material-spinner-rotate {
|
|
137
139
|
0% {
|
|
138
140
|
transform: rotate(0);
|
|
@@ -217,7 +219,7 @@
|
|
|
217
219
|
}
|
|
218
220
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
219
221
|
font-size: 14px;
|
|
220
|
-
font-weight:
|
|
222
|
+
font-weight: normal;
|
|
221
223
|
line-height: 20px;
|
|
222
224
|
padding: 2px;
|
|
223
225
|
}
|
|
@@ -298,7 +300,7 @@
|
|
|
298
300
|
background: #ffcdd2;
|
|
299
301
|
}
|
|
300
302
|
.e-kanban .e-kanban-header .e-header-cells.e-collapsed {
|
|
301
|
-
background-color: #
|
|
303
|
+
background-color: #2a2a2a;
|
|
302
304
|
text-align: center;
|
|
303
305
|
width: 50px;
|
|
304
306
|
}
|
|
@@ -407,7 +409,7 @@
|
|
|
407
409
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
408
410
|
display: inline-block;
|
|
409
411
|
font-size: 13px;
|
|
410
|
-
font-weight:
|
|
412
|
+
font-weight: normal;
|
|
411
413
|
opacity: 0.57;
|
|
412
414
|
}
|
|
413
415
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -643,7 +645,7 @@
|
|
|
643
645
|
}
|
|
644
646
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
645
647
|
font-size: 14px;
|
|
646
|
-
font-weight:
|
|
648
|
+
font-weight: normal;
|
|
647
649
|
line-height: 20px;
|
|
648
650
|
padding: 2px;
|
|
649
651
|
}
|
|
@@ -718,7 +720,7 @@
|
|
|
718
720
|
margin: 0 8px 0 0;
|
|
719
721
|
}
|
|
720
722
|
.e-kanban.e-device .e-swimlane-header .e-swimlane-header-toolbar {
|
|
721
|
-
background: #
|
|
723
|
+
background: #2a2a2a;
|
|
722
724
|
border-bottom: 0;
|
|
723
725
|
display: -ms-flexbox;
|
|
724
726
|
display: flex;
|
|
@@ -752,7 +754,7 @@
|
|
|
752
754
|
width: 100%;
|
|
753
755
|
}
|
|
754
756
|
.e-kanban.e-device .e-swimlane-content .e-swimlane-resource {
|
|
755
|
-
background: #
|
|
757
|
+
background: #2a2a2a;
|
|
756
758
|
border: 1px solid #959595;
|
|
757
759
|
height: 100%;
|
|
758
760
|
width: 225px;
|
|
@@ -950,7 +952,7 @@
|
|
|
950
952
|
|
|
951
953
|
.e-mobile-popup-wrapper.e-device,
|
|
952
954
|
.e-mobile-popup-container.e-device {
|
|
953
|
-
background-color: #
|
|
955
|
+
background-color: #2a2a2a;
|
|
954
956
|
border-radius: 2px;
|
|
955
957
|
bottom: 0;
|
|
956
958
|
box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
|
|
@@ -1035,10 +1037,10 @@
|
|
|
1035
1037
|
|
|
1036
1038
|
/*! kanban component theme */
|
|
1037
1039
|
.e-kanban {
|
|
1038
|
-
background: #
|
|
1040
|
+
background: #2a2a2a;
|
|
1039
1041
|
}
|
|
1040
1042
|
.e-kanban .e-kanban-table .e-header-cells {
|
|
1041
|
-
background-color: #
|
|
1043
|
+
background-color: #2a2a2a;
|
|
1042
1044
|
}
|
|
1043
1045
|
.e-kanban .e-kanban-table .e-header-cells .e-header-text {
|
|
1044
1046
|
color: #fff;
|
|
@@ -1064,7 +1066,7 @@
|
|
|
1064
1066
|
color: #393939;
|
|
1065
1067
|
}
|
|
1066
1068
|
.e-kanban .e-kanban-table.e-content-table .e-content-row:not(.e-swimlane-row) td {
|
|
1067
|
-
background-color: #
|
|
1069
|
+
background-color: #2a2a2a;
|
|
1068
1070
|
}
|
|
1069
1071
|
.e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-swimlane-text,
|
|
1070
1072
|
.e-kanban .e-kanban-table.e-content-table .e-content-row.e-swimlane-row .e-item-count {
|
|
@@ -1100,7 +1102,7 @@
|
|
|
1100
1102
|
border-color: #0070f0;
|
|
1101
1103
|
}
|
|
1102
1104
|
.e-kanban .e-frozen-swimlane-row {
|
|
1103
|
-
background: #
|
|
1105
|
+
background: #2a2a2a;
|
|
1104
1106
|
}
|
|
1105
1107
|
.e-kanban .e-frozen-swimlane-row .e-swimlane-header .e-swimlane-text {
|
|
1106
1108
|
color: #fff;
|
package/styles/bootstrap.css
CHANGED
|
@@ -129,7 +129,9 @@
|
|
|
129
129
|
width: 40px;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
-
/*! component's theme wise override material-definitions and variables */ /*! TreeView's bootstrap theme wise override definitions and variables */
|
|
132
|
+
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override material-definitions and variables */ /*! TreeView's bootstrap theme wise override definitions and variables */
|
|
133
|
+
/* stylelint-disable */
|
|
134
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
133
135
|
@keyframes material-spinner-rotate {
|
|
134
136
|
0% {
|
|
135
137
|
transform: rotate(0);
|
|
@@ -214,7 +216,7 @@
|
|
|
214
216
|
}
|
|
215
217
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
216
218
|
font-size: 14px;
|
|
217
|
-
font-weight:
|
|
219
|
+
font-weight: normal;
|
|
218
220
|
line-height: 20px;
|
|
219
221
|
padding: 2px;
|
|
220
222
|
}
|
|
@@ -404,7 +406,7 @@
|
|
|
404
406
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
405
407
|
display: inline-block;
|
|
406
408
|
font-size: 13px;
|
|
407
|
-
font-weight:
|
|
409
|
+
font-weight: normal;
|
|
408
410
|
opacity: 0.57;
|
|
409
411
|
}
|
|
410
412
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -640,7 +642,7 @@
|
|
|
640
642
|
}
|
|
641
643
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
642
644
|
font-size: 14px;
|
|
643
|
-
font-weight:
|
|
645
|
+
font-weight: normal;
|
|
644
646
|
line-height: 20px;
|
|
645
647
|
padding: 2px;
|
|
646
648
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -209,6 +209,9 @@
|
|
|
209
209
|
margin-top: -3.5em;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
+
/* stylelint-disable-line no-empty-source */
|
|
213
|
+
/* stylelint-disable */
|
|
214
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
212
215
|
@keyframes material-spinner-rotate {
|
|
213
216
|
0% {
|
|
214
217
|
transform: rotate(0);
|
|
@@ -293,7 +296,7 @@
|
|
|
293
296
|
}
|
|
294
297
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
295
298
|
font-size: 14px;
|
|
296
|
-
font-weight:
|
|
299
|
+
font-weight: normal;
|
|
297
300
|
line-height: 20px;
|
|
298
301
|
padding: 2px;
|
|
299
302
|
}
|
|
@@ -483,7 +486,7 @@
|
|
|
483
486
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
484
487
|
display: inline-block;
|
|
485
488
|
font-size: 13px;
|
|
486
|
-
font-weight:
|
|
489
|
+
font-weight: normal;
|
|
487
490
|
opacity: 0.57;
|
|
488
491
|
}
|
|
489
492
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -719,7 +722,7 @@
|
|
|
719
722
|
}
|
|
720
723
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
721
724
|
font-size: 14px;
|
|
722
|
-
font-weight:
|
|
725
|
+
font-weight: normal;
|
|
723
726
|
line-height: 20px;
|
|
724
727
|
padding: 2px;
|
|
725
728
|
}
|
|
@@ -179,7 +179,10 @@
|
|
|
179
179
|
border-left-width: 0;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
182
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
183
|
+
/* stylelint-disable */
|
|
184
|
+
/* stylelint-disable-line no-empty-source */
|
|
185
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
183
186
|
@keyframes material-spinner-rotate {
|
|
184
187
|
0% {
|
|
185
188
|
transform: rotate(0);
|
|
@@ -263,7 +266,7 @@
|
|
|
263
266
|
}
|
|
264
267
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
265
268
|
font-size: 14px;
|
|
266
|
-
font-weight:
|
|
269
|
+
font-weight: normal;
|
|
267
270
|
line-height: 1.5;
|
|
268
271
|
padding: 0 0 0 8px;
|
|
269
272
|
}
|
|
@@ -453,7 +456,7 @@
|
|
|
453
456
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
454
457
|
display: inline-block;
|
|
455
458
|
font-size: 13px;
|
|
456
|
-
font-weight:
|
|
459
|
+
font-weight: normal;
|
|
457
460
|
opacity: 0.57;
|
|
458
461
|
}
|
|
459
462
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -692,7 +695,7 @@
|
|
|
692
695
|
}
|
|
693
696
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
694
697
|
font-size: 14px;
|
|
695
|
-
font-weight:
|
|
698
|
+
font-weight: normal;
|
|
696
699
|
line-height: 1.5;
|
|
697
700
|
padding: 0 0 0 8px;
|
|
698
701
|
}
|
|
@@ -1174,7 +1177,7 @@
|
|
|
1174
1177
|
background-color: initial;
|
|
1175
1178
|
color: #fff;
|
|
1176
1179
|
min-width: 70%;
|
|
1177
|
-
font-weight:
|
|
1180
|
+
font-weight: normal;
|
|
1178
1181
|
border-color: #dee2e6;
|
|
1179
1182
|
border-radius: 4px;
|
|
1180
1183
|
outline: none;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -179,7 +179,10 @@
|
|
|
179
179
|
border-left-width: 0;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
182
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
183
|
+
/* stylelint-disable */
|
|
184
|
+
/* stylelint-disable-line no-empty-source */
|
|
185
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
183
186
|
@keyframes material-spinner-rotate {
|
|
184
187
|
0% {
|
|
185
188
|
transform: rotate(0);
|
|
@@ -263,7 +266,7 @@
|
|
|
263
266
|
}
|
|
264
267
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
265
268
|
font-size: 14px;
|
|
266
|
-
font-weight:
|
|
269
|
+
font-weight: normal;
|
|
267
270
|
line-height: 1.5;
|
|
268
271
|
padding: 0 0 0 8px;
|
|
269
272
|
}
|
|
@@ -453,7 +456,7 @@
|
|
|
453
456
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
454
457
|
display: inline-block;
|
|
455
458
|
font-size: 13px;
|
|
456
|
-
font-weight:
|
|
459
|
+
font-weight: normal;
|
|
457
460
|
opacity: 0.57;
|
|
458
461
|
}
|
|
459
462
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -692,7 +695,7 @@
|
|
|
692
695
|
}
|
|
693
696
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
694
697
|
font-size: 14px;
|
|
695
|
-
font-weight:
|
|
698
|
+
font-weight: normal;
|
|
696
699
|
line-height: 1.5;
|
|
697
700
|
padding: 0 0 0 8px;
|
|
698
701
|
}
|
|
@@ -1174,7 +1177,7 @@
|
|
|
1174
1177
|
background-color: initial;
|
|
1175
1178
|
color: #212529;
|
|
1176
1179
|
min-width: 70%;
|
|
1177
|
-
font-weight:
|
|
1180
|
+
font-weight: normal;
|
|
1178
1181
|
border-color: #dee2e6;
|
|
1179
1182
|
border-radius: 4px;
|
|
1180
1183
|
outline: none;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -98,8 +98,10 @@
|
|
|
98
98
|
margin: 2px 2px 2px 0;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
/*! component's default definitions and variables */
|
|
101
|
+
/* stylelint-disable-line no-empty-source */ /*! component's default definitions and variables */
|
|
102
102
|
/*! component's theme wise override material-definitions and variables */
|
|
103
|
+
/* stylelint-disable */
|
|
104
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
103
105
|
@keyframes material-spinner-rotate {
|
|
104
106
|
0% {
|
|
105
107
|
transform: rotate(0);
|
|
@@ -184,7 +186,7 @@
|
|
|
184
186
|
}
|
|
185
187
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
186
188
|
font-size: 14px;
|
|
187
|
-
font-weight:
|
|
189
|
+
font-weight: normal;
|
|
188
190
|
line-height: 20px;
|
|
189
191
|
padding: 2px;
|
|
190
192
|
}
|
|
@@ -374,7 +376,7 @@
|
|
|
374
376
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
375
377
|
display: inline-block;
|
|
376
378
|
font-size: 13px;
|
|
377
|
-
font-weight:
|
|
379
|
+
font-weight: normal;
|
|
378
380
|
opacity: 0.57;
|
|
379
381
|
}
|
|
380
382
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -610,7 +612,7 @@
|
|
|
610
612
|
}
|
|
611
613
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
612
614
|
font-size: 14px;
|
|
613
|
-
font-weight:
|
|
615
|
+
font-weight: normal;
|
|
614
616
|
line-height: 20px;
|
|
615
617
|
padding: 2px;
|
|
616
618
|
}
|
|
@@ -1080,7 +1082,7 @@
|
|
|
1080
1082
|
background-color: initial;
|
|
1081
1083
|
color: #dadada;
|
|
1082
1084
|
min-width: 70%;
|
|
1083
|
-
font-weight:
|
|
1085
|
+
font-weight: normal;
|
|
1084
1086
|
}
|
|
1085
1087
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1086
1088
|
box-shadow: none;
|
package/styles/fabric.css
CHANGED
|
@@ -91,7 +91,9 @@
|
|
|
91
91
|
margin: 2px 2px 2px 0;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
/*! component's theme wise override material-definitions and variables */ /*! TreeView's fabric theme wise override definitions and variables */
|
|
94
|
+
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override material-definitions and variables */ /*! TreeView's fabric theme wise override definitions and variables */
|
|
95
|
+
/* stylelint-disable */
|
|
96
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
95
97
|
@keyframes material-spinner-rotate {
|
|
96
98
|
0% {
|
|
97
99
|
transform: rotate(0);
|
|
@@ -176,7 +178,7 @@
|
|
|
176
178
|
}
|
|
177
179
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
178
180
|
font-size: 14px;
|
|
179
|
-
font-weight:
|
|
181
|
+
font-weight: normal;
|
|
180
182
|
line-height: 20px;
|
|
181
183
|
padding: 2px;
|
|
182
184
|
}
|
|
@@ -366,7 +368,7 @@
|
|
|
366
368
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
367
369
|
display: inline-block;
|
|
368
370
|
font-size: 13px;
|
|
369
|
-
font-weight:
|
|
371
|
+
font-weight: normal;
|
|
370
372
|
opacity: 0.57;
|
|
371
373
|
}
|
|
372
374
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -602,7 +604,7 @@
|
|
|
602
604
|
}
|
|
603
605
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
604
606
|
font-size: 14px;
|
|
605
|
-
font-weight:
|
|
607
|
+
font-weight: normal;
|
|
606
608
|
line-height: 20px;
|
|
607
609
|
padding: 2px;
|
|
608
610
|
}
|
|
@@ -1072,7 +1074,7 @@
|
|
|
1072
1074
|
background-color: initial;
|
|
1073
1075
|
color: #333;
|
|
1074
1076
|
min-width: 70%;
|
|
1075
|
-
font-weight:
|
|
1077
|
+
font-weight: normal;
|
|
1076
1078
|
}
|
|
1077
1079
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1078
1080
|
box-shadow: none;
|
package/styles/fluent-dark.css
CHANGED
|
@@ -159,7 +159,10 @@
|
|
|
159
159
|
border-left-width: 0;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
162
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
163
|
+
/* stylelint-disable */
|
|
164
|
+
/* stylelint-disable-line no-empty-source */
|
|
165
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
163
166
|
@keyframes material-spinner-rotate {
|
|
164
167
|
0% {
|
|
165
168
|
transform: rotate(0);
|
|
@@ -243,7 +246,7 @@
|
|
|
243
246
|
}
|
|
244
247
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
245
248
|
font-size: 14px;
|
|
246
|
-
font-weight:
|
|
249
|
+
font-weight: normal;
|
|
247
250
|
line-height: 1.5;
|
|
248
251
|
padding: 0 0 0 8px;
|
|
249
252
|
}
|
|
@@ -433,7 +436,7 @@
|
|
|
433
436
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
434
437
|
display: inline-block;
|
|
435
438
|
font-size: 13px;
|
|
436
|
-
font-weight:
|
|
439
|
+
font-weight: normal;
|
|
437
440
|
opacity: 0.57;
|
|
438
441
|
}
|
|
439
442
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -669,7 +672,7 @@
|
|
|
669
672
|
}
|
|
670
673
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
671
674
|
font-size: 14px;
|
|
672
|
-
font-weight:
|
|
675
|
+
font-weight: normal;
|
|
673
676
|
line-height: 1.5;
|
|
674
677
|
padding: 2px;
|
|
675
678
|
}
|