@innovaccer/design-system 2.32.1 → 2.34.0

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,79 @@
1
+ ## 2.34.0 (2024-05-16)
2
+
3
+ ### Highlights
4
+
5
+ - feat(gatsby): migration from v3 to v5 (3a26576d)
6
+ - feat(select): add support for relative width for trigger (f74c8951)
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
+ - feat(gatsby): migration from v3 to v5 (3a26576d)
23
+ - feat(select): add support for relative width for trigger (f74c8951)
24
+
25
+ ### Fixes
26
+
27
+ - fix(select): update argument type of onchange prop for search input (ae61b0e0)
28
+
29
+ ### Improvements
30
+
31
+ NA
32
+
33
+ ### Documentation
34
+
35
+ NA
36
+
37
+ ---
38
+
39
+ ## 2.33.0 (2024-05-14)
40
+
41
+ ### Highlights
42
+
43
+ - feat(verticalnav): add auto tooltip feature and update spacing (f1182a50)
44
+ - feat(verticalnav): add support for tooltip in case of non expandable icon (53a5a3d5)
45
+
46
+ ### Breaking changes
47
+
48
+ NA
49
+
50
+ ### Migration guide
51
+
52
+ NA
53
+
54
+ ### Deprecations
55
+
56
+ NA
57
+
58
+ ### Features
59
+
60
+ - feat(verticalnav): add auto tooltip feature and update spacing (f1182a50)
61
+ - feat(verticalnav): add support for tooltip in case of non expandable icon (53a5a3d5)
62
+
63
+ ### Fixes
64
+
65
+ - fix(fileList): update font size weight and spacing in between the text and action icon (4acfbeac)
66
+
67
+ ### Improvements
68
+
69
+ - feat(gatsby): update changelog for latest gatsby version (57bb181d)
70
+
71
+ ### Documentation
72
+
73
+ - docs(verticalnav): add overflow documentation (0c49411e)
74
+
75
+ ---
76
+
1
77
  ## 2.32.1 (2024-05-08)
2
78
 
3
79
  ### Highlights
@@ -20,7 +96,7 @@ NA
20
96
 
21
97
  - feat(listbox): add selected and activated type in listbox stories (46c24416)
22
98
  - feat(spacing): implement 6px token and replace hardcoded value (292e6e2e)
23
- - feat(select): add appendToBody and boundary element props support
99
+ - feat(select): add appendToBody and boundary element props support (8a74dc4f)
24
100
 
25
101
  ### Fixes
26
102
 
@@ -2584,7 +2660,7 @@ NA
2584
2660
  - fixes GridBody scrollTop issue on unmount. (766b5686)
2585
2661
  - updates pagination component according to design. (601c3a47)
2586
2662
  - fixes expanded state on initial render of Collapsible component. (e2967a7b)
2587
- - fixes single line case for width<240px in ChipInput. (92a37b6f)
2663
+ - fixes single line case for width greater than 240px in ChipInput. (92a37b6f)
2588
2664
  - fixes slider tooltip to move with pointer in Slider component. (f1698ff3)
2589
2665
  - fixes label onClick handling of MultiSlider component (ff4af117)
2590
2666
  - Updates DS-_ to Design-System-_ as data-test attribute value in components. (6956653e)
@@ -3345,6 +3345,7 @@ body {
3345
3345
  display: flex;
3346
3346
  justify-content: center;
3347
3347
  align-items: center;
3348
+ flex-shrink: 0;
3348
3349
  }
3349
3350
  .FileItem-file {
3350
3351
  display: flex;
@@ -3360,6 +3361,7 @@ body {
3360
3361
  white-space: nowrap;
3361
3362
  overflow: hidden;
3362
3363
  text-overflow: ellipsis;
3364
+ margin-right: var(--spacing);
3363
3365
  margin-left: var(--spacing-l);
3364
3366
  }
3365
3367
  .FileItem-error {
@@ -7753,6 +7755,12 @@ body {
7753
7755
  white-space: nowrap;
7754
7756
  }
7755
7757
 
7758
+ .MenuItem--overflow {
7759
+ overflow: hidden;
7760
+ text-overflow: ellipsis;
7761
+ white-space: nowrap;
7762
+ }
7763
+
7756
7764
  .MenuItem-count {
7757
7765
  margin-right: var(--spacing-m);
7758
7766
  }