@innovaccer/design-system 2.15.0 → 2.15.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,41 @@
1
+ ## 2.15.1 (2023-03-27)
2
+
3
+ ### Highlights
4
+
5
+ - fix(card): add new shadows in card component (165740cd)
6
+
7
+ ### Breaking changes
8
+
9
+ NA
10
+
11
+ ### Migration guide
12
+
13
+ NA
14
+
15
+ ### Deprecations
16
+
17
+ NA
18
+
19
+ ### Features
20
+
21
+ NA
22
+
23
+ ### Fixes
24
+
25
+ - fix(docs): fix scroll issue with sticky tabs (b26110d7)
26
+ - fix(card): add new shadows in card component (165740cd)
27
+ - fix(tooltip): update animation delay property in tooltip component (b391f26c)
28
+
29
+ ### Improvements
30
+
31
+ NA
32
+
33
+ ### Documentation
34
+
35
+ NA
36
+
37
+ ---
38
+
1
39
  ## 2.15.0 (2023-03-06)
2
40
 
3
41
  ### Highlights
@@ -1732,14 +1732,29 @@ body {
1732
1732
  background-color: var(--white);
1733
1733
  }
1734
1734
 
1735
- .Card--shadow-default,
1736
- .Card--shadow-light,
1737
- .Card--shadow-medium,
1738
- .Card--shadow-dark {
1735
+ .Card--default,
1736
+ .Card--light,
1737
+ .Card--medium,
1738
+ .Card--dark {
1739
1739
  border: none;
1740
1740
  box-shadow: var(--shadow-s);
1741
1741
  }
1742
1742
 
1743
+ .Card--shadow10 {
1744
+ border: none;
1745
+ box-shadow: var(--shadow-s);
1746
+ }
1747
+
1748
+ .Card--shadow20 {
1749
+ border: none;
1750
+ box-shadow: var(--shadow-m);
1751
+ }
1752
+
1753
+ .Card--shadow30 {
1754
+ border: none;
1755
+ box-shadow: var(--shadow-l);
1756
+ }
1757
+
1743
1758
  .Card-header {
1744
1759
  padding: var(--spacing-2) var(--spacing-2) var(--spacing-l) var(--spacing-2);
1745
1760
  }
@@ -6365,7 +6380,6 @@ body {
6365
6380
  overflow: hidden;
6366
6381
  box-sizing: border-box;
6367
6382
  transition: opacity 120ms;
6368
- transition-delay: 800ms;
6369
6383
  transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
6370
6384
  }
6371
6385
 
@@ -6379,7 +6393,7 @@ body {
6379
6393
  @-webkit-keyframes tooltip-open-top {
6380
6394
  from {
6381
6395
  top: 0px;
6382
- opacity: 0.5;
6396
+ opacity: 0;
6383
6397
  }
6384
6398
  to {
6385
6399
  top: -4px;
@@ -6390,7 +6404,7 @@ body {
6390
6404
  @keyframes tooltip-open-top {
6391
6405
  from {
6392
6406
  top: 0px;
6393
- opacity: 0.5;
6407
+ opacity: 0;
6394
6408
  }
6395
6409
  to {
6396
6410
  top: -4px;
@@ -6400,7 +6414,7 @@ body {
6400
6414
  @-webkit-keyframes tooltip-close-top {
6401
6415
  from {
6402
6416
  top: -4px;
6403
- opacity: 0.5;
6417
+ opacity: 1;
6404
6418
  }
6405
6419
  to {
6406
6420
  top: 0px;
@@ -6410,7 +6424,7 @@ body {
6410
6424
  @keyframes tooltip-close-top {
6411
6425
  from {
6412
6426
  top: -4px;
6413
- opacity: 0.5;
6427
+ opacity: 1;
6414
6428
  }
6415
6429
  to {
6416
6430
  top: 0px;
@@ -6425,13 +6439,13 @@ body {
6425
6439
  animation-fill-mode: forwards;
6426
6440
  }
6427
6441
  .Tooltip-animation-close-top {
6428
- -webkit-animation: tooltip-close-top 120ms cubic-bezier(0.4, 0.14, 1, 1);
6429
- animation: tooltip-close-top 120ms cubic-bezier(0.4, 0.14, 1, 1);
6442
+ -webkit-animation: tooltip-close-top 80ms cubic-bezier(0.4, 0.14, 1, 1);
6443
+ animation: tooltip-close-top 80ms cubic-bezier(0.4, 0.14, 1, 1);
6430
6444
  }
6431
6445
  @-webkit-keyframes tooltip-open-bottom {
6432
6446
  from {
6433
6447
  top: 0px;
6434
- opacity: 0.5;
6448
+ opacity: 0;
6435
6449
  }
6436
6450
  to {
6437
6451
  top: 4px;
@@ -6441,7 +6455,7 @@ body {
6441
6455
  @keyframes tooltip-open-bottom {
6442
6456
  from {
6443
6457
  top: 0px;
6444
- opacity: 0.5;
6458
+ opacity: 0;
6445
6459
  }
6446
6460
  to {
6447
6461
  top: 4px;
@@ -6451,7 +6465,7 @@ body {
6451
6465
  @-webkit-keyframes tooltip-close-bottom {
6452
6466
  from {
6453
6467
  top: 4px;
6454
- opacity: 0.5;
6468
+ opacity: 1;
6455
6469
  }
6456
6470
  to {
6457
6471
  top: 0px;
@@ -6461,7 +6475,7 @@ body {
6461
6475
  @keyframes tooltip-close-bottom {
6462
6476
  from {
6463
6477
  top: 4px;
6464
- opacity: 0.5;
6478
+ opacity: 1;
6465
6479
  }
6466
6480
  to {
6467
6481
  top: 0px;
@@ -6476,14 +6490,14 @@ body {
6476
6490
  animation-fill-mode: forwards;
6477
6491
  }
6478
6492
  .Tooltip-animation-close-bottom {
6479
- -webkit-animation: tooltip-close-bottom 120ms cubic-bezier(0.4, 0.14, 1, 1);
6480
- animation: tooltip-close-bottom 120ms cubic-bezier(0.4, 0.14, 1, 1);
6493
+ -webkit-animation: tooltip-close-bottom 80ms cubic-bezier(0.4, 0.14, 1, 1);
6494
+ animation: tooltip-close-bottom 80ms cubic-bezier(0.4, 0.14, 1, 1);
6481
6495
  }
6482
6496
 
6483
6497
  @-webkit-keyframes tooltip-open-left {
6484
6498
  from {
6485
6499
  left: 0px;
6486
- opacity: 0.5;
6500
+ opacity: 0;
6487
6501
  }
6488
6502
  to {
6489
6503
  left: -4px;
@@ -6494,7 +6508,7 @@ body {
6494
6508
  @keyframes tooltip-open-left {
6495
6509
  from {
6496
6510
  left: 0px;
6497
- opacity: 0.5;
6511
+ opacity: 0;
6498
6512
  }
6499
6513
  to {
6500
6514
  left: -4px;
@@ -6504,7 +6518,7 @@ body {
6504
6518
  @-webkit-keyframes tooltip-close-left {
6505
6519
  from {
6506
6520
  left: -4px;
6507
- opacity: 0.5;
6521
+ opacity: 1;
6508
6522
  }
6509
6523
  to {
6510
6524
  left: 0px;
@@ -6514,7 +6528,7 @@ body {
6514
6528
  @keyframes tooltip-close-left {
6515
6529
  from {
6516
6530
  left: -4px;
6517
- opacity: 0.5;
6531
+ opacity: 1;
6518
6532
  }
6519
6533
  to {
6520
6534
  left: 0px;
@@ -6529,14 +6543,14 @@ body {
6529
6543
  animation-fill-mode: forwards;
6530
6544
  }
6531
6545
  .Tooltip-animation-close-left {
6532
- -webkit-animation: tooltip-close-left 120ms cubic-bezier(0.4, 0.14, 1, 1);
6533
- animation: tooltip-close-left 120ms cubic-bezier(0.4, 0.14, 1, 1);
6546
+ -webkit-animation: tooltip-close-left 80ms cubic-bezier(0.4, 0.14, 1, 1);
6547
+ animation: tooltip-close-left 80ms cubic-bezier(0.4, 0.14, 1, 1);
6534
6548
  }
6535
6549
 
6536
6550
  @-webkit-keyframes tooltip-open-right {
6537
6551
  from {
6538
6552
  left: 0px;
6539
- opacity: 0.5;
6553
+ opacity: 0;
6540
6554
  }
6541
6555
  to {
6542
6556
  left: 4px;
@@ -6547,7 +6561,7 @@ body {
6547
6561
  @keyframes tooltip-open-right {
6548
6562
  from {
6549
6563
  left: 0px;
6550
- opacity: 0.5;
6564
+ opacity: 0;
6551
6565
  }
6552
6566
  to {
6553
6567
  left: 4px;
@@ -6557,7 +6571,7 @@ body {
6557
6571
  @-webkit-keyframes tooltip-close-right {
6558
6572
  from {
6559
6573
  left: 4px;
6560
- opacity: 0.5;
6574
+ opacity: 1;
6561
6575
  }
6562
6576
  to {
6563
6577
  left: 0px;
@@ -6567,7 +6581,7 @@ body {
6567
6581
  @keyframes tooltip-close-right {
6568
6582
  from {
6569
6583
  left: 4px;
6570
- opacity: 0.5;
6584
+ opacity: 1;
6571
6585
  }
6572
6586
  to {
6573
6587
  left: 0px;
@@ -6582,8 +6596,14 @@ body {
6582
6596
  animation-fill-mode: forwards;
6583
6597
  }
6584
6598
  .Tooltip-animation-close-right {
6585
- -webkit-animation: tooltip-close-right 120ms cubic-bezier(0.4, 0.14, 1, 1);
6586
- animation: tooltip-close-right 120ms cubic-bezier(0.4, 0.14, 1, 1);
6599
+ -webkit-animation: tooltip-close-right 80ms cubic-bezier(0.4, 0.14, 1, 1);
6600
+ animation: tooltip-close-right 80ms cubic-bezier(0.4, 0.14, 1, 1);
6601
+ }
6602
+
6603
+ .Tooltip-container {
6604
+ transition-delay: 400ms;
6605
+ -webkit-animation-delay: 400ms;
6606
+ animation-delay: 400ms;
6587
6607
  }
6588
6608
 
6589
6609
  .VerificationCodeInput-Input {