@innovaccer/design-system 2.15.1 → 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 CHANGED
@@ -1,3 +1,44 @@
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
+
1
42
  ## 2.15.1 (2023-03-27)
2
43
 
3
44
  ### Highlights
@@ -974,7 +974,7 @@ body {
974
974
  }
975
975
 
976
976
  .Backdrop {
977
- background-color: rgba(47, 47, 47, 0.8);
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-dark);
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-dark);
1087
+ color: var(--success-darker);
1087
1088
  background: var(--success-lightest);
1088
1089
  }
1089
1090
 
1090
1091
  .Badge--subtle-alert {
1091
- color: var(--alert-dark);
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-dark);
1107
+ color: var(--accent2-darker);
1107
1108
  background: var(--accent2-lightest);
1108
1109
  }
1109
1110
 
1110
1111
  .Badge--subtle-accent3 {
1111
- color: var(--accent3-dark);
1112
+ color: var(--accent3-darker);
1112
1113
  background: var(--accent3-lightest);
1113
1114
  }
1114
1115