@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theseam/ui-common",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.0.2",
6
6
  "@angular/core": "^12.0.2",
@@ -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
- position: relative;
426
- margin: 0;
427
- cursor: pointer;
428
- vertical-align: middle;
429
- display: inline-block;
430
- box-sizing: border-box;
431
- padding: 0;
432
-
433
- input[type='checkbox'] {
434
- position: relative;
435
- margin: 0 1rem 0 0;
436
- cursor: pointer;
437
- outline: none;
438
-
439
- &:before {
440
- -webkit-transition: all 0.3s ease-in-out;
441
- -moz-transition: all 0.3s ease-in-out;
442
- transition: all 0.3s ease-in-out;
443
- content: '';
444
- position: absolute;
445
- left: 0;
446
- z-index: 1;
447
- width: 1rem;
448
- height: 1rem;
449
- border: 2px solid #f2f2f2;
450
- }
451
-
452
- &:checked:before {
453
- -webkit-transform: rotate(-45deg);
454
- -moz-transform: rotate(-45deg);
455
- -ms-transform: rotate(-45deg);
456
- transform: rotate(-45deg);
457
- height: 0.5rem;
458
- border-color: #009688;
459
- border-top-style: none;
460
- border-right-style: none;
461
- }
462
-
463
- &:after {
464
- content: '';
465
- position: absolute;
466
- top: 0;
467
- left: 0;
468
- width: 1rem;
469
- height: 1rem;
470
- background: #fff;
471
- cursor: pointer;
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;