@theseam/ui-common 0.2.13 → 0.2.14
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/bundles/theseam-ui-common-datatable.umd.js +7 -5
- package/bundles/theseam-ui-common-datatable.umd.js.map +1 -1
- package/esm2015/datatable/datatable-export-button/datatable-export-button.component.js +6 -5
- package/esm2015/datatable/models/columns-alterations/order.columns-alteration.js +3 -3
- package/fesm2015/theseam-ui-common-datatable.js +6 -5
- package/fesm2015/theseam-ui-common-datatable.js.map +1 -1
- package/package.json +1 -1
- package/styles/vendor/ngx-datatable/_ngx-datatable.scss +54 -52
package/package.json
CHANGED
|
@@ -418,60 +418,62 @@
|
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
+
// TODO: Update checkbox column to use seam-checkbox
|
|
422
|
+
// or at least seam-checkbox styling
|
|
421
423
|
/**
|
|
422
|
-
* Checkboxes
|
|
424
|
+
* Checkboxes custom material theme
|
|
423
425
|
**/
|
|
424
|
-
.datatable-checkbox {
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
}
|
|
426
|
+
// .datatable-checkbox {
|
|
427
|
+
// position: relative;
|
|
428
|
+
// margin: 0;
|
|
429
|
+
// cursor: pointer;
|
|
430
|
+
// vertical-align: middle;
|
|
431
|
+
// display: inline-block;
|
|
432
|
+
// box-sizing: border-box;
|
|
433
|
+
// padding: 0;
|
|
434
|
+
|
|
435
|
+
// input[type='checkbox'] {
|
|
436
|
+
// position: relative;
|
|
437
|
+
// margin: 0 1rem 0 0;
|
|
438
|
+
// cursor: pointer;
|
|
439
|
+
// outline: none;
|
|
440
|
+
|
|
441
|
+
// &:before {
|
|
442
|
+
// -webkit-transition: all 0.3s ease-in-out;
|
|
443
|
+
// -moz-transition: all 0.3s ease-in-out;
|
|
444
|
+
// transition: all 0.3s ease-in-out;
|
|
445
|
+
// content: '';
|
|
446
|
+
// position: absolute;
|
|
447
|
+
// left: 0;
|
|
448
|
+
// z-index: 1;
|
|
449
|
+
// width: 1rem;
|
|
450
|
+
// height: 1rem;
|
|
451
|
+
// border: 2px solid #f2f2f2;
|
|
452
|
+
// }
|
|
453
|
+
|
|
454
|
+
// &:checked:before {
|
|
455
|
+
// -webkit-transform: rotate(-45deg);
|
|
456
|
+
// -moz-transform: rotate(-45deg);
|
|
457
|
+
// -ms-transform: rotate(-45deg);
|
|
458
|
+
// transform: rotate(-45deg);
|
|
459
|
+
// height: 0.5rem;
|
|
460
|
+
// border-color: #009688;
|
|
461
|
+
// border-top-style: none;
|
|
462
|
+
// border-right-style: none;
|
|
463
|
+
// }
|
|
464
|
+
|
|
465
|
+
// &:after {
|
|
466
|
+
// content: '';
|
|
467
|
+
// position: absolute;
|
|
468
|
+
// top: 0;
|
|
469
|
+
// left: 0;
|
|
470
|
+
// width: 1rem;
|
|
471
|
+
// height: 1rem;
|
|
472
|
+
// background: #fff;
|
|
473
|
+
// cursor: pointer;
|
|
474
|
+
// }
|
|
475
|
+
// }
|
|
476
|
+
// }
|
|
475
477
|
|
|
476
478
|
.datatable-action-button {
|
|
477
479
|
color: $datatable-action-button-color;
|