@innovaccer/design-system 2.15.1 → 2.15.3

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,80 @@
1
+ ## 2.15.3 (2023-04-12)
2
+
3
+ ### Highlights
4
+
5
+ - fix(dropdown): fix option list for all selected options in fetch function (8399f2c5)
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(dropdown): fix option list for all selected options in fetch function (8399f2c5)
26
+
27
+ ### Improvements
28
+
29
+ NA
30
+
31
+ ### Documentation
32
+
33
+ NA
34
+
35
+ ---
36
+
37
+ ## 2.15.2 (2023-04-03)
38
+
39
+ ### Highlights
40
+
41
+ - fix(backdrop): update 80% opacity with 60% opacity in backdrop component (bc46072c)
42
+ - fix(badge): update subtle text appearances of badge component (3c1c2b47)
43
+
44
+ ### Breaking changes
45
+
46
+ NA
47
+
48
+ ### Migration guide
49
+
50
+ NA
51
+
52
+ ### Deprecations
53
+
54
+ NA
55
+
56
+ ### Features
57
+
58
+ NA
59
+
60
+ ### Fixes
61
+
62
+ - fix(backdrop): update 80% opacity with 60% opacity (bc46072c)
63
+ - fix(badge): update subtle text appearances of badge component (3c1c2b47)
64
+
65
+ ### Improvements
66
+
67
+ NA
68
+
69
+ ### Documentation
70
+
71
+ - docs(badge): update documentation with hover and statusHint vs badge comparison (e7b69672)
72
+ - docs(statusHint): update documentation with statusHint vs badge comparison (d928e95d)
73
+ - docs(table): update documentation with data alignment guideline (7270caea)
74
+ - docs(content): update house rules documentation (203dd85f)
75
+
76
+ ---
77
+
1
78
  ## 2.15.1 (2023-03-27)
2
79
 
3
80
  ### 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