@innovaccer/design-system 2.15.0 → 2.15.2
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 +79 -0
- package/css/dist/index.css +56 -35
- package/css/dist/index.css.map +1 -1
- package/css/src/components/backdrop.css +1 -1
- package/css/src/components/badge.css +6 -5
- package/css/src/components/card.css +19 -4
- package/css/src/components/tooltip.css +17 -13
- package/dist/.lib/tsconfig.type.tsbuildinfo +4 -4
- package/dist/core/components/atoms/card/Card.d.ts +1 -1
- package/dist/index.esm.js +12 -7
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,82 @@
|
|
|
1
|
+
## 2.15.2 (2023-04-03)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- fix(backdrop): update 80% opacity with 60% opacity in backdrop component (bc46072c)
|
|
6
|
+
- fix(badge): update subtle text appearances of badge component (3c1c2b47)
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
NA
|
|
11
|
+
|
|
12
|
+
### Migration guide
|
|
13
|
+
|
|
14
|
+
NA
|
|
15
|
+
|
|
16
|
+
### Deprecations
|
|
17
|
+
|
|
18
|
+
NA
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
NA
|
|
23
|
+
|
|
24
|
+
### Fixes
|
|
25
|
+
|
|
26
|
+
- fix(backdrop): update 80% opacity with 60% opacity (bc46072c)
|
|
27
|
+
- fix(badge): update subtle text appearances of badge component (3c1c2b47)
|
|
28
|
+
|
|
29
|
+
### Improvements
|
|
30
|
+
|
|
31
|
+
NA
|
|
32
|
+
|
|
33
|
+
### Documentation
|
|
34
|
+
|
|
35
|
+
- docs(badge): update documentation with hover and statusHint vs badge comparison (e7b69672)
|
|
36
|
+
- docs(statusHint): update documentation with statusHint vs badge comparison (d928e95d)
|
|
37
|
+
- docs(table): update documentation with data alignment guideline (7270caea)
|
|
38
|
+
- docs(content): update house rules documentation (203dd85f)
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 2.15.1 (2023-03-27)
|
|
43
|
+
|
|
44
|
+
### Highlights
|
|
45
|
+
|
|
46
|
+
- fix(card): add new shadows in card component (165740cd)
|
|
47
|
+
|
|
48
|
+
### Breaking changes
|
|
49
|
+
|
|
50
|
+
NA
|
|
51
|
+
|
|
52
|
+
### Migration guide
|
|
53
|
+
|
|
54
|
+
NA
|
|
55
|
+
|
|
56
|
+
### Deprecations
|
|
57
|
+
|
|
58
|
+
NA
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
|
|
62
|
+
NA
|
|
63
|
+
|
|
64
|
+
### Fixes
|
|
65
|
+
|
|
66
|
+
- fix(docs): fix scroll issue with sticky tabs (b26110d7)
|
|
67
|
+
- fix(card): add new shadows in card component (165740cd)
|
|
68
|
+
- fix(tooltip): update animation delay property in tooltip component (b391f26c)
|
|
69
|
+
|
|
70
|
+
### Improvements
|
|
71
|
+
|
|
72
|
+
NA
|
|
73
|
+
|
|
74
|
+
### Documentation
|
|
75
|
+
|
|
76
|
+
NA
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
1
80
|
## 2.15.0 (2023-03-06)
|
|
2
81
|
|
|
3
82
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -974,7 +974,7 @@ body {
|
|
|
974
974
|
}
|
|
975
975
|
|
|
976
976
|
.Backdrop {
|
|
977
|
-
background-color: rgba(47, 47, 47, 0.
|
|
977
|
+
background-color: rgba(47, 47, 47, 0.6);
|
|
978
978
|
height: 100vh;
|
|
979
979
|
width: 100vw;
|
|
980
980
|
position: fixed;
|
|
@@ -1074,21 +1074,22 @@ body {
|
|
|
1074
1074
|
}
|
|
1075
1075
|
|
|
1076
1076
|
.Badge--subtle-primary {
|
|
1077
|
-
color: var(--primary-
|
|
1077
|
+
color: var(--primary-darker);
|
|
1078
1078
|
background: var(--primary-lightest);
|
|
1079
1079
|
}
|
|
1080
1080
|
|
|
1081
1081
|
.Badge--subtle-secondary {
|
|
1082
|
+
color: var(--text);
|
|
1082
1083
|
background: var(--secondary-light);
|
|
1083
1084
|
}
|
|
1084
1085
|
|
|
1085
1086
|
.Badge--subtle-success {
|
|
1086
|
-
color: var(--success-
|
|
1087
|
+
color: var(--success-darker);
|
|
1087
1088
|
background: var(--success-lightest);
|
|
1088
1089
|
}
|
|
1089
1090
|
|
|
1090
1091
|
.Badge--subtle-alert {
|
|
1091
|
-
color: var(--alert-
|
|
1092
|
+
color: var(--alert-darker);
|
|
1092
1093
|
background: var(--alert-lightest);
|
|
1093
1094
|
}
|
|
1094
1095
|
|
|
@@ -1103,12 +1104,12 @@ body {
|
|
|
1103
1104
|
}
|
|
1104
1105
|
|
|
1105
1106
|
.Badge--subtle-accent2 {
|
|
1106
|
-
color: var(--accent2-
|
|
1107
|
+
color: var(--accent2-darker);
|
|
1107
1108
|
background: var(--accent2-lightest);
|
|
1108
1109
|
}
|
|
1109
1110
|
|
|
1110
1111
|
.Badge--subtle-accent3 {
|
|
1111
|
-
color: var(--accent3-
|
|
1112
|
+
color: var(--accent3-darker);
|
|
1112
1113
|
background: var(--accent3-lightest);
|
|
1113
1114
|
}
|
|
1114
1115
|
|
|
@@ -1732,14 +1733,29 @@ body {
|
|
|
1732
1733
|
background-color: var(--white);
|
|
1733
1734
|
}
|
|
1734
1735
|
|
|
1735
|
-
.Card--
|
|
1736
|
-
.Card--
|
|
1737
|
-
.Card--
|
|
1738
|
-
.Card--
|
|
1736
|
+
.Card--default,
|
|
1737
|
+
.Card--light,
|
|
1738
|
+
.Card--medium,
|
|
1739
|
+
.Card--dark {
|
|
1739
1740
|
border: none;
|
|
1740
1741
|
box-shadow: var(--shadow-s);
|
|
1741
1742
|
}
|
|
1742
1743
|
|
|
1744
|
+
.Card--shadow10 {
|
|
1745
|
+
border: none;
|
|
1746
|
+
box-shadow: var(--shadow-s);
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.Card--shadow20 {
|
|
1750
|
+
border: none;
|
|
1751
|
+
box-shadow: var(--shadow-m);
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
.Card--shadow30 {
|
|
1755
|
+
border: none;
|
|
1756
|
+
box-shadow: var(--shadow-l);
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1743
1759
|
.Card-header {
|
|
1744
1760
|
padding: var(--spacing-2) var(--spacing-2) var(--spacing-l) var(--spacing-2);
|
|
1745
1761
|
}
|
|
@@ -6365,7 +6381,6 @@ body {
|
|
|
6365
6381
|
overflow: hidden;
|
|
6366
6382
|
box-sizing: border-box;
|
|
6367
6383
|
transition: opacity 120ms;
|
|
6368
|
-
transition-delay: 800ms;
|
|
6369
6384
|
transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
6370
6385
|
}
|
|
6371
6386
|
|
|
@@ -6379,7 +6394,7 @@ body {
|
|
|
6379
6394
|
@-webkit-keyframes tooltip-open-top {
|
|
6380
6395
|
from {
|
|
6381
6396
|
top: 0px;
|
|
6382
|
-
opacity: 0
|
|
6397
|
+
opacity: 0;
|
|
6383
6398
|
}
|
|
6384
6399
|
to {
|
|
6385
6400
|
top: -4px;
|
|
@@ -6390,7 +6405,7 @@ body {
|
|
|
6390
6405
|
@keyframes tooltip-open-top {
|
|
6391
6406
|
from {
|
|
6392
6407
|
top: 0px;
|
|
6393
|
-
opacity: 0
|
|
6408
|
+
opacity: 0;
|
|
6394
6409
|
}
|
|
6395
6410
|
to {
|
|
6396
6411
|
top: -4px;
|
|
@@ -6400,7 +6415,7 @@ body {
|
|
|
6400
6415
|
@-webkit-keyframes tooltip-close-top {
|
|
6401
6416
|
from {
|
|
6402
6417
|
top: -4px;
|
|
6403
|
-
opacity:
|
|
6418
|
+
opacity: 1;
|
|
6404
6419
|
}
|
|
6405
6420
|
to {
|
|
6406
6421
|
top: 0px;
|
|
@@ -6410,7 +6425,7 @@ body {
|
|
|
6410
6425
|
@keyframes tooltip-close-top {
|
|
6411
6426
|
from {
|
|
6412
6427
|
top: -4px;
|
|
6413
|
-
opacity:
|
|
6428
|
+
opacity: 1;
|
|
6414
6429
|
}
|
|
6415
6430
|
to {
|
|
6416
6431
|
top: 0px;
|
|
@@ -6425,13 +6440,13 @@ body {
|
|
|
6425
6440
|
animation-fill-mode: forwards;
|
|
6426
6441
|
}
|
|
6427
6442
|
.Tooltip-animation-close-top {
|
|
6428
|
-
-webkit-animation: tooltip-close-top
|
|
6429
|
-
animation: tooltip-close-top
|
|
6443
|
+
-webkit-animation: tooltip-close-top 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6444
|
+
animation: tooltip-close-top 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6430
6445
|
}
|
|
6431
6446
|
@-webkit-keyframes tooltip-open-bottom {
|
|
6432
6447
|
from {
|
|
6433
6448
|
top: 0px;
|
|
6434
|
-
opacity: 0
|
|
6449
|
+
opacity: 0;
|
|
6435
6450
|
}
|
|
6436
6451
|
to {
|
|
6437
6452
|
top: 4px;
|
|
@@ -6441,7 +6456,7 @@ body {
|
|
|
6441
6456
|
@keyframes tooltip-open-bottom {
|
|
6442
6457
|
from {
|
|
6443
6458
|
top: 0px;
|
|
6444
|
-
opacity: 0
|
|
6459
|
+
opacity: 0;
|
|
6445
6460
|
}
|
|
6446
6461
|
to {
|
|
6447
6462
|
top: 4px;
|
|
@@ -6451,7 +6466,7 @@ body {
|
|
|
6451
6466
|
@-webkit-keyframes tooltip-close-bottom {
|
|
6452
6467
|
from {
|
|
6453
6468
|
top: 4px;
|
|
6454
|
-
opacity:
|
|
6469
|
+
opacity: 1;
|
|
6455
6470
|
}
|
|
6456
6471
|
to {
|
|
6457
6472
|
top: 0px;
|
|
@@ -6461,7 +6476,7 @@ body {
|
|
|
6461
6476
|
@keyframes tooltip-close-bottom {
|
|
6462
6477
|
from {
|
|
6463
6478
|
top: 4px;
|
|
6464
|
-
opacity:
|
|
6479
|
+
opacity: 1;
|
|
6465
6480
|
}
|
|
6466
6481
|
to {
|
|
6467
6482
|
top: 0px;
|
|
@@ -6476,14 +6491,14 @@ body {
|
|
|
6476
6491
|
animation-fill-mode: forwards;
|
|
6477
6492
|
}
|
|
6478
6493
|
.Tooltip-animation-close-bottom {
|
|
6479
|
-
-webkit-animation: tooltip-close-bottom
|
|
6480
|
-
animation: tooltip-close-bottom
|
|
6494
|
+
-webkit-animation: tooltip-close-bottom 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6495
|
+
animation: tooltip-close-bottom 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6481
6496
|
}
|
|
6482
6497
|
|
|
6483
6498
|
@-webkit-keyframes tooltip-open-left {
|
|
6484
6499
|
from {
|
|
6485
6500
|
left: 0px;
|
|
6486
|
-
opacity: 0
|
|
6501
|
+
opacity: 0;
|
|
6487
6502
|
}
|
|
6488
6503
|
to {
|
|
6489
6504
|
left: -4px;
|
|
@@ -6494,7 +6509,7 @@ body {
|
|
|
6494
6509
|
@keyframes tooltip-open-left {
|
|
6495
6510
|
from {
|
|
6496
6511
|
left: 0px;
|
|
6497
|
-
opacity: 0
|
|
6512
|
+
opacity: 0;
|
|
6498
6513
|
}
|
|
6499
6514
|
to {
|
|
6500
6515
|
left: -4px;
|
|
@@ -6504,7 +6519,7 @@ body {
|
|
|
6504
6519
|
@-webkit-keyframes tooltip-close-left {
|
|
6505
6520
|
from {
|
|
6506
6521
|
left: -4px;
|
|
6507
|
-
opacity:
|
|
6522
|
+
opacity: 1;
|
|
6508
6523
|
}
|
|
6509
6524
|
to {
|
|
6510
6525
|
left: 0px;
|
|
@@ -6514,7 +6529,7 @@ body {
|
|
|
6514
6529
|
@keyframes tooltip-close-left {
|
|
6515
6530
|
from {
|
|
6516
6531
|
left: -4px;
|
|
6517
|
-
opacity:
|
|
6532
|
+
opacity: 1;
|
|
6518
6533
|
}
|
|
6519
6534
|
to {
|
|
6520
6535
|
left: 0px;
|
|
@@ -6529,14 +6544,14 @@ body {
|
|
|
6529
6544
|
animation-fill-mode: forwards;
|
|
6530
6545
|
}
|
|
6531
6546
|
.Tooltip-animation-close-left {
|
|
6532
|
-
-webkit-animation: tooltip-close-left
|
|
6533
|
-
animation: tooltip-close-left
|
|
6547
|
+
-webkit-animation: tooltip-close-left 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6548
|
+
animation: tooltip-close-left 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6534
6549
|
}
|
|
6535
6550
|
|
|
6536
6551
|
@-webkit-keyframes tooltip-open-right {
|
|
6537
6552
|
from {
|
|
6538
6553
|
left: 0px;
|
|
6539
|
-
opacity: 0
|
|
6554
|
+
opacity: 0;
|
|
6540
6555
|
}
|
|
6541
6556
|
to {
|
|
6542
6557
|
left: 4px;
|
|
@@ -6547,7 +6562,7 @@ body {
|
|
|
6547
6562
|
@keyframes tooltip-open-right {
|
|
6548
6563
|
from {
|
|
6549
6564
|
left: 0px;
|
|
6550
|
-
opacity: 0
|
|
6565
|
+
opacity: 0;
|
|
6551
6566
|
}
|
|
6552
6567
|
to {
|
|
6553
6568
|
left: 4px;
|
|
@@ -6557,7 +6572,7 @@ body {
|
|
|
6557
6572
|
@-webkit-keyframes tooltip-close-right {
|
|
6558
6573
|
from {
|
|
6559
6574
|
left: 4px;
|
|
6560
|
-
opacity:
|
|
6575
|
+
opacity: 1;
|
|
6561
6576
|
}
|
|
6562
6577
|
to {
|
|
6563
6578
|
left: 0px;
|
|
@@ -6567,7 +6582,7 @@ body {
|
|
|
6567
6582
|
@keyframes tooltip-close-right {
|
|
6568
6583
|
from {
|
|
6569
6584
|
left: 4px;
|
|
6570
|
-
opacity:
|
|
6585
|
+
opacity: 1;
|
|
6571
6586
|
}
|
|
6572
6587
|
to {
|
|
6573
6588
|
left: 0px;
|
|
@@ -6582,8 +6597,14 @@ body {
|
|
|
6582
6597
|
animation-fill-mode: forwards;
|
|
6583
6598
|
}
|
|
6584
6599
|
.Tooltip-animation-close-right {
|
|
6585
|
-
-webkit-animation: tooltip-close-right
|
|
6586
|
-
animation: tooltip-close-right
|
|
6600
|
+
-webkit-animation: tooltip-close-right 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6601
|
+
animation: tooltip-close-right 80ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
6602
|
+
}
|
|
6603
|
+
|
|
6604
|
+
.Tooltip-container {
|
|
6605
|
+
transition-delay: 400ms;
|
|
6606
|
+
-webkit-animation-delay: 400ms;
|
|
6607
|
+
animation-delay: 400ms;
|
|
6587
6608
|
}
|
|
6588
6609
|
|
|
6589
6610
|
.VerificationCodeInput-Input {
|