@innovaccer/design-system 2.36.0 → 2.36.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,77 @@
1
+ ## 2.36.2 (2024-06-13)
2
+
3
+ ### Highlights
4
+
5
+ - style(colors): update night color hex code (d6f913c6)
6
+ - feat(combobox): add support for computeStyle prop for popover positioning (b073ff74)
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
+ - style(colors): update night color hex code (d6f913c6)
23
+ - feat(combobox): add support for computeStyle prop for popover positioning (b073ff74)
24
+
25
+ ### Fixes
26
+
27
+ NA
28
+
29
+ ### Improvements
30
+
31
+ NA
32
+
33
+ ### Documentation
34
+
35
+ NA
36
+
37
+ ---
38
+
39
+ ## 2.36.1 (2024-06-12)
40
+
41
+ ### Highlights
42
+
43
+ NA
44
+
45
+ ### Breaking changes
46
+
47
+ NA
48
+
49
+ ### Migration guide
50
+
51
+ NA
52
+
53
+ ### Deprecations
54
+
55
+ NA
56
+
57
+ ### Features
58
+
59
+ NA
60
+
61
+ ### Fixes
62
+
63
+ - fix(select): enable support for arbitrary default values in single select (bea359b7)
64
+
65
+ ### Improvements
66
+
67
+ NA
68
+
69
+ ### Documentation
70
+
71
+ NA
72
+
73
+ ---
74
+
1
75
  ## 2.36.0 (2024-06-11)
2
76
 
3
77
  ### Highlights
package/css/Readme.md CHANGED
@@ -42,9 +42,9 @@
42
42
  ## NEUTRALS
43
43
  | Token | value | preview |
44
44
  |- |- |- |
45
- | --inverse | `#2F2F2F` | ![#2F2F2F](https://via.placeholder.com/15/2F2F2F/000000?text=+) |
46
- | --inverse-light | `#595959` | ![#595959](https://via.placeholder.com/15/595959/000000?text=+) |
47
- | --inverse-lighter | `#868686` | ![#868686](https://via.placeholder.com/15/868686/000000?text=+) |
45
+ | --inverse | `#1F1F1F` | ![#1F1F1F](https://via.placeholder.com/15/1F1F1F/000000?text=+) |
46
+ | --inverse-light | `#494949` | ![#494949](https://via.placeholder.com/15/494949/000000?text=+) |
47
+ | --inverse-lighter | `#707070` | ![#707070](https://via.placeholder.com/15/707070/000000?text=+) |
48
48
  | --inverse-lightest | `#A6A6A6` | ![#A6A6A6](https://via.placeholder.com/15/A6A6A6/000000?text=+) |
49
49
  | --secondary | `#D5D5D5` | ![#D5D5D5](https://via.placeholder.com/15/D5D5D5/000000?text=+) |
50
50
  | --secondary-dark | `#C5C5C5` | ![#C5C5C5](https://via.placeholder.com/15/C5C5C5/000000?text=+) |
@@ -36,9 +36,9 @@
36
36
  --neem-light: #71c077;
37
37
  --neem-lighter: #a5d8aa;
38
38
  --neem-lightest: #d7efdf;
39
- --night: #2f2f2f;
40
- --night-light: #595959;
41
- --night-lighter: #868686;
39
+ --night: #1f1f1f;
40
+ --night-light: #494949;
41
+ --night-lighter: #707070;
42
42
  --night-lightest: #a6a6a6;
43
43
  --nimbu: #82c91e;
44
44
  --nimbu-dark: #578715;
@@ -148,7 +148,7 @@
148
148
  --accent2-shadow: rgba(122, 83, 178, 0.16);
149
149
  --accent3-shadow: rgba(61, 81, 212, 0.16);
150
150
  --accent4-shadow: rgba(130, 201, 30, 0.16);
151
- --inverse-shadow: rgba(47, 47, 47, 0.16);
151
+ --inverse-shadow: rgba(31, 31, 31, 0.16);
152
152
 
153
153
  /* Text colors */
154
154
  --text: var(--night);
@@ -1188,7 +1188,7 @@ body {
1188
1188
  }
1189
1189
 
1190
1190
  .Backdrop {
1191
- background-color: rgba(47, 47, 47, 0.64);
1191
+ background-color: rgba(31, 31, 31, 0.64);
1192
1192
  height: 100vh;
1193
1193
  width: 100vw;
1194
1194
  position: fixed;
@@ -7445,7 +7445,7 @@ body {
7445
7445
  }
7446
7446
 
7447
7447
  .Toast-actionButton--default:focus {
7448
- box-shadow: var(--shadow-spread) rgba(134, 134, 134, 0.16);
7448
+ box-shadow: var(--shadow-spread) rgba(112, 112, 112, 0.16);
7449
7449
  }
7450
7450
 
7451
7451
  .Toast-actionButton--info {
@@ -7505,7 +7505,7 @@ body {
7505
7505
  padding: var(--spacing-m) var(--spacing);
7506
7506
  border-radius: var(--spacing-m);
7507
7507
  z-index: 500;
7508
- background: rgba(47, 47, 47, 0.88);
7508
+ background: rgba(31, 31, 31, 0.88);
7509
7509
  overflow: hidden;
7510
7510
  box-sizing: border-box;
7511
7511
  transition: opacity 120ms;