@syncfusion/ej2-angular-kanban 20.2.43-ngcc → 20.2.43
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 +6 -4
- 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 +6 -4
- 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 +6 -4
- 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 +6 -4
- 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 -397
- 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
|
@@ -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
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/bootstrap-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/bootstrap-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/bootstrap-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/bootstrap-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/bootstrap-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-definition.scss';
|
|
13
|
+
@import 'bootstrap-definition.scss';
|
|
14
|
+
@import 'icons/bootstrap.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -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
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap4-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap4-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/bootstrap4-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/bootstrap4-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/bootstrap4-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/bootstrap4-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/bootstrap4-definition.scss';
|
|
13
|
+
@import 'bootstrap4-definition.scss';
|
|
14
|
+
@import 'icons/bootstrap4.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -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;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/bootstrap5-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/bootstrap5-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/bootstrap5-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-dark-definition.scss';
|
|
13
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
14
|
+
@import 'icons/bootstrap5-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -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;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/bootstrap5-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/bootstrap5-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/bootstrap5-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
|
|
13
|
+
@import 'bootstrap5-definition.scss';
|
|
14
|
+
@import 'icons/bootstrap5.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -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;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fabric-dark-definition.scss';
|
|
13
|
+
@import 'fabric-dark-definition.scss';
|
|
14
|
+
@import 'icons/fabric-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
package/styles/kanban/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;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fabric-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fabric-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fabric-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fabric-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fabric-definition.scss';
|
|
13
|
+
@import 'fabric-definition.scss';
|
|
14
|
+
@import 'icons/fabric.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -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
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fluent-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fluent-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fluent-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fluent-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fluent-dark-definition.scss';
|
|
13
|
+
@import 'fluent-dark-definition.scss';
|
|
14
|
+
@import 'icons/fluent-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
package/styles/kanban/fluent.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
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fluent-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fluent-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fluent-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fluent-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fluent-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fluent-definition.scss';
|
|
13
|
+
@import 'fluent-definition.scss';
|
|
14
|
+
@import 'icons/fluent.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -80,6 +80,9 @@
|
|
|
80
80
|
color: #000;
|
|
81
81
|
top: 12px;
|
|
82
82
|
}
|
|
83
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
84
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
85
|
+
}
|
|
83
86
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
84
87
|
color: #4f4f4f;
|
|
85
88
|
font-family: inherit;
|
|
@@ -172,8 +175,10 @@
|
|
|
172
175
|
width: 30px;
|
|
173
176
|
}
|
|
174
177
|
|
|
175
|
-
/*! component's default definitions and variables */
|
|
178
|
+
/* stylelint-disable-line no-empty-source */ /*! component's default definitions and variables */
|
|
176
179
|
/*! component's theme wise override material-definitions and variables */
|
|
180
|
+
/* stylelint-disable */
|
|
181
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
177
182
|
@keyframes material-spinner-rotate {
|
|
178
183
|
0% {
|
|
179
184
|
transform: rotate(0);
|
|
@@ -258,7 +263,7 @@
|
|
|
258
263
|
}
|
|
259
264
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
260
265
|
font-size: 14px;
|
|
261
|
-
font-weight:
|
|
266
|
+
font-weight: normal;
|
|
262
267
|
line-height: 20px;
|
|
263
268
|
padding: 2px;
|
|
264
269
|
}
|
|
@@ -448,7 +453,7 @@
|
|
|
448
453
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
449
454
|
display: inline-block;
|
|
450
455
|
font-size: 13px;
|
|
451
|
-
font-weight:
|
|
456
|
+
font-weight: normal;
|
|
452
457
|
opacity: 0.57;
|
|
453
458
|
}
|
|
454
459
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -685,7 +690,7 @@
|
|
|
685
690
|
}
|
|
686
691
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
687
692
|
font-size: 14px;
|
|
688
|
-
font-weight:
|
|
693
|
+
font-weight: normal;
|
|
689
694
|
line-height: 20px;
|
|
690
695
|
padding: 2px;
|
|
691
696
|
}
|
|
@@ -1154,7 +1159,7 @@
|
|
|
1154
1159
|
background-color: initial;
|
|
1155
1160
|
color: #000;
|
|
1156
1161
|
min-width: 70%;
|
|
1157
|
-
font-weight:
|
|
1162
|
+
font-weight: normal;
|
|
1158
1163
|
}
|
|
1159
1164
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1160
1165
|
box-shadow: none;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'highcontrast-light-definition.scss';
|
|
14
|
+
@import 'icons/highcontrast-light.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -80,6 +80,9 @@
|
|
|
80
80
|
color: #fff;
|
|
81
81
|
top: 12px;
|
|
82
82
|
}
|
|
83
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
84
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
85
|
+
}
|
|
83
86
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
84
87
|
color: #969696;
|
|
85
88
|
font-family: inherit;
|
|
@@ -174,7 +177,9 @@
|
|
|
174
177
|
width: 30px;
|
|
175
178
|
}
|
|
176
179
|
|
|
177
|
-
/*! component's theme wise override material-definitions and variables */ /*! TreeView's high contrast theme wise override definitions and variables */
|
|
180
|
+
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override material-definitions and variables */ /*! TreeView's high contrast theme wise override definitions and variables */
|
|
181
|
+
/* stylelint-disable */
|
|
182
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
178
183
|
@keyframes material-spinner-rotate {
|
|
179
184
|
0% {
|
|
180
185
|
transform: rotate(0);
|
|
@@ -259,7 +264,7 @@
|
|
|
259
264
|
}
|
|
260
265
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
261
266
|
font-size: 14px;
|
|
262
|
-
font-weight:
|
|
267
|
+
font-weight: normal;
|
|
263
268
|
line-height: 20px;
|
|
264
269
|
padding: 2px;
|
|
265
270
|
}
|
|
@@ -449,7 +454,7 @@
|
|
|
449
454
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
450
455
|
display: inline-block;
|
|
451
456
|
font-size: 13px;
|
|
452
|
-
font-weight:
|
|
457
|
+
font-weight: normal;
|
|
453
458
|
opacity: 0.57;
|
|
454
459
|
}
|
|
455
460
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -686,7 +691,7 @@
|
|
|
686
691
|
}
|
|
687
692
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
688
693
|
font-size: 14px;
|
|
689
|
-
font-weight:
|
|
694
|
+
font-weight: normal;
|
|
690
695
|
line-height: 20px;
|
|
691
696
|
padding: 2px;
|
|
692
697
|
}
|
|
@@ -1155,7 +1160,7 @@
|
|
|
1155
1160
|
background-color: initial;
|
|
1156
1161
|
color: #fff;
|
|
1157
1162
|
min-width: 70%;
|
|
1158
|
-
font-weight:
|
|
1163
|
+
font-weight: normal;
|
|
1159
1164
|
}
|
|
1160
1165
|
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1161
1166
|
box-shadow: none;
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/highcontrast-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/highcontrast-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/highcontrast-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-definition.scss';
|
|
13
|
+
@import 'highcontrast-definition.scss';
|
|
14
|
+
@import 'icons/highcontrast.scss';
|
|
15
|
+
@import 'all.scss';
|