@sankhyalabs/ez-design 1.1.2 → 1.2.1

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.
@@ -8392,6 +8392,159 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
8392
8392
  background-color: var(--ag-input-focus-border-color); }
8393
8393
  .ez-grid input[class^='ag-'][type='range']:disabled {
8394
8394
  opacity: 0.5; }
8395
+ .ez-grid__cell-header:not([col-id="checkBoxColumn"]) {
8396
+ border-right: var(--border--small) var(--color--strokes);
8397
+ padding-right: var(--space--medium); }
8398
+ .ez-grid__cell-header .ag-header-cell-comp-wrapper {
8399
+ width: 100%; }
8400
+ .ez-grid__cell-body {
8401
+ font-family: var(--font-pattern);
8402
+ font-size: var(--text--medium);
8403
+ color: var(--text--primary); }
8404
+ .ez-grid__cell-body.ag-cell-value:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid__cell-body.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid__cell-body.ag-cell-last-right-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
8405
+ border-right-color: var(--color--strokes); }
8406
+ .ez-grid__cell-body.ag-cell[col-id="statusColumn"] {
8407
+ display: flex;
8408
+ align-items: center;
8409
+ justify-content: center;
8410
+ padding-left: 0;
8411
+ padding-right: 11px; }
8412
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] {
8413
+ border-right: none;
8414
+ padding-left: 0;
8415
+ padding-right: 0; }
8416
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-selection-checkbox {
8417
+ margin: 0 5px; }
8418
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper {
8419
+ width: 18px;
8420
+ height: 18px; }
8421
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"] {
8422
+ position: relative;
8423
+ cursor: pointer;
8424
+ display: inline-block;
8425
+ background-color: transparent; }
8426
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:before {
8427
+ content: "";
8428
+ display: block;
8429
+ position: absolute;
8430
+ width: 18px;
8431
+ height: 18px;
8432
+ top: 50%;
8433
+ left: 50%;
8434
+ transform: translate(-50%, -50%);
8435
+ border: 2px solid var(--title--primary);
8436
+ border-radius: var(--border--radius-small);
8437
+ background-color: #ffffff; }
8438
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:checked:before {
8439
+ border-color: var(--color--primary);
8440
+ background-color: var(--color--primary-200); }
8441
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:checked:after {
8442
+ content: "";
8443
+ display: block;
8444
+ width: 5px;
8445
+ height: 8px;
8446
+ border: solid var(--color--primary);
8447
+ border-width: 0 2.5px 2.5px 0;
8448
+ -webkit-transform: rotate(45deg);
8449
+ -ms-transform: rotate(45deg);
8450
+ transform: rotate(45deg);
8451
+ position: absolute;
8452
+ top: 4px;
8453
+ left: 6.5px; }
8454
+ .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:indeterminate::after {
8455
+ content: "";
8456
+ display: block;
8457
+ width: 6px;
8458
+ height: 8px;
8459
+ border: solid var(--title--primary);
8460
+ border-width: 0 0 2.5px 0;
8461
+ position: absolute;
8462
+ top: 2px;
8463
+ left: 6px; }
8464
+ .ez-grid__cell-status {
8465
+ display: inline-block;
8466
+ vertical-align: middle;
8467
+ clear: both;
8468
+ width: 12px;
8469
+ height: 12px;
8470
+ background-color: var(--color--strokes);
8471
+ border: 1px solid transparent;
8472
+ border-radius: 50%;
8473
+ margin: 0 auto; }
8474
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell-value:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell-last-right-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
8475
+ border-right-color: var(--color--strokes); }
8476
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="statusColumn"] {
8477
+ display: flex;
8478
+ align-items: center;
8479
+ justify-content: center;
8480
+ padding-left: 0;
8481
+ padding-right: 11px; }
8482
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] {
8483
+ border-right: none;
8484
+ padding-left: 0;
8485
+ padding-right: 0; }
8486
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-selection-checkbox {
8487
+ margin: 0 5px; }
8488
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper {
8489
+ width: 18px;
8490
+ height: 18px; }
8491
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"] {
8492
+ position: relative;
8493
+ cursor: pointer;
8494
+ display: inline-block;
8495
+ background-color: transparent; }
8496
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:before {
8497
+ content: "";
8498
+ display: block;
8499
+ position: absolute;
8500
+ width: 18px;
8501
+ height: 18px;
8502
+ top: 50%;
8503
+ left: 50%;
8504
+ transform: translate(-50%, -50%);
8505
+ border: 2px solid var(--title--primary);
8506
+ border-radius: var(--border--radius-small);
8507
+ background-color: #ffffff; }
8508
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:checked:before {
8509
+ border-color: var(--color--primary);
8510
+ background-color: var(--color--primary-200); }
8511
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:checked:after {
8512
+ content: "";
8513
+ display: block;
8514
+ width: 5px;
8515
+ height: 8px;
8516
+ border: solid var(--color--primary);
8517
+ border-width: 0 2.5px 2.5px 0;
8518
+ -webkit-transform: rotate(45deg);
8519
+ -ms-transform: rotate(45deg);
8520
+ transform: rotate(45deg);
8521
+ position: absolute;
8522
+ top: 4px;
8523
+ left: 6.5px; }
8524
+ .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:indeterminate::after {
8525
+ content: "";
8526
+ display: block;
8527
+ width: 6px;
8528
+ height: 8px;
8529
+ border: solid var(--title--primary);
8530
+ border-width: 0 0 2.5px 0;
8531
+ position: absolute;
8532
+ top: 2px;
8533
+ left: 6px; }
8534
+ .ez-grid .ag-pinned-left-header {
8535
+ border-right: none; }
8536
+ .ez-grid .ag-pinned-right-header {
8537
+ border-left: none; }
8538
+ .ez-grid .ag-pinned-left-header .ez-grid__header-cell,
8539
+ .ez-grid .ag-pinned-right-header .ez-grid__header-cell {
8540
+ padding-right: var(--space--medium); }
8541
+ .ez-grid .ag-horizontal-left-spacer:not(.ag-scroller-corner) {
8542
+ border-right-color: var(--color--strokes); }
8543
+ .ez-grid .ag-horizontal-right-spacer:not(.ag-scroller-corner) {
8544
+ border-left-color: var(--color--strokes); }
8545
+ .ez-grid .ag-horizontal-left-spacer,
8546
+ .ez-grid .ag-horizontal-right-spacer {
8547
+ overflow-x: auto; }
8395
8548
  .ez-grid .ag-header-cell-text {
8396
8549
  font-family: var(--font-pattern);
8397
8550
  color: var(--title--primary);
@@ -8399,13 +8552,6 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
8399
8552
  font-weight: var(--text-weight--large); }
8400
8553
  .ez-grid .ag-header {
8401
8554
  border-bottom: none; }
8402
- .ez-grid .ag-cell {
8403
- display: flex;
8404
- align-items: center;
8405
- line-height: normal;
8406
- font-family: var(--font-pattern);
8407
- font-size: var(--text--medium);
8408
- color: var(--text--primary); }
8409
8555
  .ez-grid .ag-menu-separator {
8410
8556
  display: none; }
8411
8557
  .ez-grid .ag-tabs-header.ag-menu-header {
@@ -8508,44 +8654,6 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
8508
8654
  content: ""; }
8509
8655
  .ez-grid input.ag-input-field-input.ag-checkbox-input {
8510
8656
  opacity: 1; }
8511
- .ez-grid input[type="checkbox"] {
8512
- position: relative;
8513
- cursor: pointer;
8514
- display: inline-block; }
8515
- .ez-grid input[type="checkbox"]:before {
8516
- content: "";
8517
- display: block;
8518
- position: absolute;
8519
- width: 16px;
8520
- height: 16px;
8521
- top: -3px;
8522
- left: 0;
8523
- border: 2px solid var(--title--primary);
8524
- border-radius: var(--border--radius-small);
8525
- background-color: white; }
8526
- .ez-grid input[type="checkbox"]:checked:after {
8527
- content: "";
8528
- display: block;
8529
- width: 5px;
8530
- height: 8px;
8531
- border: solid var(--color--primary);
8532
- border-width: 0 2px 2px 0;
8533
- -webkit-transform: rotate(45deg);
8534
- -ms-transform: rotate(45deg);
8535
- transform: rotate(45deg);
8536
- position: absolute;
8537
- top: 0px;
8538
- left: 5.5px; }
8539
- .ez-grid input[type="checkbox"]:indeterminate::after {
8540
- content: "";
8541
- display: block;
8542
- width: 6px;
8543
- height: 8px;
8544
- border: solid var(--title--primary);
8545
- border-width: 0 0 2px 0;
8546
- position: absolute;
8547
- top: -2px;
8548
- left: 5px; }
8549
8657
  .ez-grid .ag-virtual-list-viewport.ag-column-select-virtual-list-viewport.ag-focus-managed {
8550
8658
  max-height: 120px;
8551
8659
  overflow-y: auto; }