@syncfusion/ej2-angular-kanban 20.2.38-ngcc → 20.2.38
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 +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- 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 +3 -3
- package/styles/bootstrap.css +3 -3
- package/styles/bootstrap4.css +3 -3
- package/styles/bootstrap5-dark.css +4 -4
- package/styles/bootstrap5.css +4 -4
- package/styles/fabric-dark.css +4 -4
- package/styles/fabric.css +4 -4
- package/styles/fluent-dark.css +3 -3
- package/styles/fluent.css +3 -3
- package/styles/highcontrast-light.css +4 -4
- package/styles/highcontrast.css +4 -4
- package/styles/kanban/_all.scss +2 -0
- package/styles/kanban/_bootstrap-dark-definition.scss +223 -0
- package/styles/kanban/_bootstrap-definition.scss +222 -0
- package/styles/kanban/_bootstrap4-definition.scss +223 -0
- package/styles/kanban/_bootstrap5-dark-definition.scss +1 -0
- package/styles/kanban/_bootstrap5-definition.scss +231 -0
- package/styles/kanban/_fabric-dark-definition.scss +222 -0
- package/styles/kanban/_fabric-definition.scss +222 -0
- package/styles/kanban/_fluent-dark-definition.scss +1 -0
- package/styles/kanban/_fluent-definition.scss +224 -0
- package/styles/kanban/_fusionnew-definition.scss +231 -0
- package/styles/kanban/_highcontrast-definition.scss +223 -0
- package/styles/kanban/_highcontrast-light-definition.scss +223 -0
- package/styles/kanban/_layout.scss +976 -0
- package/styles/kanban/_material-dark-definition.scss +222 -0
- package/styles/kanban/_material-definition.scss +222 -0
- package/styles/kanban/_material3-definition.scss +231 -0
- package/styles/kanban/_tailwind-dark-definition.scss +1 -0
- package/styles/kanban/_tailwind-definition.scss +231 -0
- package/styles/kanban/_theme.scss +147 -0
- package/styles/kanban/bootstrap-dark.css +3 -3
- package/styles/kanban/bootstrap-dark.scss +15 -1
- package/styles/kanban/bootstrap.css +3 -3
- package/styles/kanban/bootstrap.scss +15 -1
- package/styles/kanban/bootstrap4.css +3 -3
- package/styles/kanban/bootstrap4.scss +15 -1
- package/styles/kanban/bootstrap5-dark.css +4 -4
- package/styles/kanban/bootstrap5-dark.scss +15 -1
- package/styles/kanban/bootstrap5.css +4 -4
- package/styles/kanban/bootstrap5.scss +15 -1
- package/styles/kanban/fabric-dark.css +4 -4
- package/styles/kanban/fabric-dark.scss +15 -1
- package/styles/kanban/fabric.css +4 -4
- package/styles/kanban/fabric.scss +15 -1
- package/styles/kanban/fluent-dark.css +3 -3
- package/styles/kanban/fluent-dark.scss +15 -1
- package/styles/kanban/fluent.css +3 -3
- package/styles/kanban/fluent.scss +15 -1
- package/styles/kanban/highcontrast-light.css +4 -4
- package/styles/kanban/highcontrast-light.scss +15 -1
- package/styles/kanban/highcontrast.css +4 -4
- package/styles/kanban/highcontrast.scss +15 -1
- package/styles/kanban/icons/_bootstrap-dark.scss +48 -0
- package/styles/kanban/icons/_bootstrap.scss +48 -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 +48 -0
- package/styles/kanban/icons/_fabric.scss +48 -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 +48 -0
- package/styles/kanban/icons/_highcontrast.scss +48 -0
- package/styles/kanban/icons/_material-dark.scss +48 -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 +3 -3
- package/styles/kanban/material-dark.scss +15 -1
- package/styles/kanban/material.css +3 -3
- package/styles/kanban/material.scss +15 -1
- package/styles/kanban/tailwind-dark.css +4 -4
- package/styles/kanban/tailwind-dark.scss +15 -1
- package/styles/kanban/tailwind.css +4 -4
- package/styles/kanban/tailwind.scss +15 -1
- package/styles/material-dark.css +3 -3
- package/styles/material.css +3 -3
- package/styles/tailwind-dark.css +4 -4
- package/styles/tailwind.css +4 -4
- 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 -387
- 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,48 @@
|
|
|
1
|
+
@include export-module('kanban-highcontrast-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e98f';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e219';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e652';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e653';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e7d5';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e94c';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e98f';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e219';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e654';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e953';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
@include export-module('kanban-highcontrast-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e98f';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e219';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e652';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e653';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e7d5';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e94c';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e98f';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e219';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e654';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e953';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
@include export-module('kanban-material-dark-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e937';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e956';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e652';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e653';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e823';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e99a';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e937';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e956';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e654';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e7fc';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@include export-module('kanban-material-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e937';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e956';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e652';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e653';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e823';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e99a';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e937';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e956';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e654';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e7fc';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@include export-module('kanban-bootstrap-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e765';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e748';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e729';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e748';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e805';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e799';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e765';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e748';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e765';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e7e7';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './tailwind.scss';
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@include export-module('kanban-bootstrap-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e765';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e748';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e729';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e748';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e805';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e799';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e765';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e748';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e765';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e7e7';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
}
|
|
192
192
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
193
193
|
font-size: 14px;
|
|
194
|
-
font-weight:
|
|
194
|
+
font-weight: normal;
|
|
195
195
|
line-height: 20px;
|
|
196
196
|
padding: 2px;
|
|
197
197
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
382
382
|
display: inline-block;
|
|
383
383
|
font-size: 13px;
|
|
384
|
-
font-weight:
|
|
384
|
+
font-weight: normal;
|
|
385
385
|
opacity: 0.57;
|
|
386
386
|
}
|
|
387
387
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -617,7 +617,7 @@
|
|
|
617
617
|
}
|
|
618
618
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
619
619
|
font-size: 14px;
|
|
620
|
-
font-weight:
|
|
620
|
+
font-weight: normal;
|
|
621
621
|
line-height: 20px;
|
|
622
622
|
padding: 2px;
|
|
623
623
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/material-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/material-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/material-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/material-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/material-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/material-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/material-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/material-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/material-dark-definition.scss';
|
|
13
|
+
@import 'material-dark-definition.scss';
|
|
14
|
+
@import 'icons/material-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
}
|
|
216
216
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
217
217
|
font-size: 14px;
|
|
218
|
-
font-weight:
|
|
218
|
+
font-weight: normal;
|
|
219
219
|
line-height: 20px;
|
|
220
220
|
padding: 2px;
|
|
221
221
|
}
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
406
406
|
display: inline-block;
|
|
407
407
|
font-size: 13px;
|
|
408
|
-
font-weight:
|
|
408
|
+
font-weight: normal;
|
|
409
409
|
opacity: 0.57;
|
|
410
410
|
}
|
|
411
411
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -641,7 +641,7 @@
|
|
|
641
641
|
}
|
|
642
642
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
643
643
|
font-size: 14px;
|
|
644
|
-
font-weight:
|
|
644
|
+
font-weight: normal;
|
|
645
645
|
line-height: 20px;
|
|
646
646
|
padding: 2px;
|
|
647
647
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/material-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/material-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/material-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/material-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/material-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/material-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/material-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/material-definition.scss';
|
|
13
|
+
@import 'material-definition.scss';
|
|
14
|
+
@import 'icons/material.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
}
|
|
209
209
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
210
210
|
font-size: 14px;
|
|
211
|
-
font-weight:
|
|
211
|
+
font-weight: normal;
|
|
212
212
|
line-height: 1.5;
|
|
213
213
|
padding: 0 0 0 8px;
|
|
214
214
|
}
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
399
399
|
display: inline-block;
|
|
400
400
|
font-size: 13px;
|
|
401
|
-
font-weight:
|
|
401
|
+
font-weight: normal;
|
|
402
402
|
opacity: 0.57;
|
|
403
403
|
}
|
|
404
404
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
}
|
|
638
638
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
639
639
|
font-size: 14px;
|
|
640
|
-
font-weight:
|
|
640
|
+
font-weight: normal;
|
|
641
641
|
line-height: 1.5;
|
|
642
642
|
padding: 0 0 0 8px;
|
|
643
643
|
}
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
background-color: initial;
|
|
1111
1111
|
color: #fff;
|
|
1112
1112
|
min-width: 70%;
|
|
1113
|
-
font-weight:
|
|
1113
|
+
font-weight: normal;
|
|
1114
1114
|
border-color: #d1d5db;
|
|
1115
1115
|
border-radius: 4px;
|
|
1116
1116
|
outline: none;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/tailwind-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/tailwind-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/tailwind-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/tailwind-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/tailwind-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/tailwind-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/tailwind-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/tailwind-dark-definition.scss';
|
|
13
|
+
@import 'tailwind-dark-definition.scss';
|
|
14
|
+
@import 'icons/tailwind-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
}
|
|
209
209
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
210
210
|
font-size: 14px;
|
|
211
|
-
font-weight:
|
|
211
|
+
font-weight: normal;
|
|
212
212
|
line-height: 1.5;
|
|
213
213
|
padding: 0 0 0 8px;
|
|
214
214
|
}
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
399
399
|
display: inline-block;
|
|
400
400
|
font-size: 13px;
|
|
401
|
-
font-weight:
|
|
401
|
+
font-weight: normal;
|
|
402
402
|
opacity: 0.57;
|
|
403
403
|
}
|
|
404
404
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
}
|
|
638
638
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
639
639
|
font-size: 14px;
|
|
640
|
-
font-weight:
|
|
640
|
+
font-weight: normal;
|
|
641
641
|
line-height: 1.5;
|
|
642
642
|
padding: 0 0 0 8px;
|
|
643
643
|
}
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
background-color: initial;
|
|
1111
1111
|
color: #111827;
|
|
1112
1112
|
min-width: 70%;
|
|
1113
|
-
font-weight:
|
|
1113
|
+
font-weight: normal;
|
|
1114
1114
|
border-color: #d1d5db;
|
|
1115
1115
|
border-radius: 4px;
|
|
1116
1116
|
outline: none;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/tailwind-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/tailwind-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/tailwind-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/tailwind-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/tailwind-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/tailwind-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/tailwind-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/tailwind-definition.scss';
|
|
13
|
+
@import 'tailwind-definition.scss';
|
|
14
|
+
@import 'icons/tailwind.scss';
|
|
15
|
+
@import 'all.scss';
|
package/styles/material-dark.css
CHANGED
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
}
|
|
192
192
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
193
193
|
font-size: 14px;
|
|
194
|
-
font-weight:
|
|
194
|
+
font-weight: normal;
|
|
195
195
|
line-height: 20px;
|
|
196
196
|
padding: 2px;
|
|
197
197
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
382
382
|
display: inline-block;
|
|
383
383
|
font-size: 13px;
|
|
384
|
-
font-weight:
|
|
384
|
+
font-weight: normal;
|
|
385
385
|
opacity: 0.57;
|
|
386
386
|
}
|
|
387
387
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -617,7 +617,7 @@
|
|
|
617
617
|
}
|
|
618
618
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
619
619
|
font-size: 14px;
|
|
620
|
-
font-weight:
|
|
620
|
+
font-weight: normal;
|
|
621
621
|
line-height: 20px;
|
|
622
622
|
padding: 2px;
|
|
623
623
|
}
|
package/styles/material.css
CHANGED
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
}
|
|
216
216
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
217
217
|
font-size: 14px;
|
|
218
|
-
font-weight:
|
|
218
|
+
font-weight: normal;
|
|
219
219
|
line-height: 20px;
|
|
220
220
|
padding: 2px;
|
|
221
221
|
}
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
406
406
|
display: inline-block;
|
|
407
407
|
font-size: 13px;
|
|
408
|
-
font-weight:
|
|
408
|
+
font-weight: normal;
|
|
409
409
|
opacity: 0.57;
|
|
410
410
|
}
|
|
411
411
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -641,7 +641,7 @@
|
|
|
641
641
|
}
|
|
642
642
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
643
643
|
font-size: 14px;
|
|
644
|
-
font-weight:
|
|
644
|
+
font-weight: normal;
|
|
645
645
|
line-height: 20px;
|
|
646
646
|
padding: 2px;
|
|
647
647
|
}
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
}
|
|
209
209
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
210
210
|
font-size: 14px;
|
|
211
|
-
font-weight:
|
|
211
|
+
font-weight: normal;
|
|
212
212
|
line-height: 1.5;
|
|
213
213
|
padding: 0 0 0 8px;
|
|
214
214
|
}
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
399
399
|
display: inline-block;
|
|
400
400
|
font-size: 13px;
|
|
401
|
-
font-weight:
|
|
401
|
+
font-weight: normal;
|
|
402
402
|
opacity: 0.57;
|
|
403
403
|
}
|
|
404
404
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
}
|
|
638
638
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
639
639
|
font-size: 14px;
|
|
640
|
-
font-weight:
|
|
640
|
+
font-weight: normal;
|
|
641
641
|
line-height: 1.5;
|
|
642
642
|
padding: 0 0 0 8px;
|
|
643
643
|
}
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
background-color: initial;
|
|
1111
1111
|
color: #fff;
|
|
1112
1112
|
min-width: 70%;
|
|
1113
|
-
font-weight:
|
|
1113
|
+
font-weight: normal;
|
|
1114
1114
|
border-color: #d1d5db;
|
|
1115
1115
|
border-radius: 4px;
|
|
1116
1116
|
outline: none;
|
package/styles/tailwind.css
CHANGED
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
}
|
|
209
209
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
210
210
|
font-size: 14px;
|
|
211
|
-
font-weight:
|
|
211
|
+
font-weight: normal;
|
|
212
212
|
line-height: 1.5;
|
|
213
213
|
padding: 0 0 0 8px;
|
|
214
214
|
}
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
399
399
|
display: inline-block;
|
|
400
400
|
font-size: 13px;
|
|
401
|
-
font-weight:
|
|
401
|
+
font-weight: normal;
|
|
402
402
|
opacity: 0.57;
|
|
403
403
|
}
|
|
404
404
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
}
|
|
638
638
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
639
639
|
font-size: 14px;
|
|
640
|
-
font-weight:
|
|
640
|
+
font-weight: normal;
|
|
641
641
|
line-height: 1.5;
|
|
642
642
|
padding: 0 0 0 8px;
|
|
643
643
|
}
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
background-color: initial;
|
|
1111
1111
|
color: #111827;
|
|
1112
1112
|
min-width: 70%;
|
|
1113
|
-
font-weight:
|
|
1113
|
+
font-weight: normal;
|
|
1114
1114
|
border-color: #d1d5db;
|
|
1115
1115
|
border-radius: 4px;
|
|
1116
1116
|
outline: none;
|