@innovaccer/design-system 2.32.1 → 2.33.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 +40 -2
- package/css/dist/index.css +8 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/fileList.css +2 -0
- package/css/src/components/verticalNav.css +6 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +3 -3
- package/dist/index.esm.js +41 -47
- package/dist/index.js +38 -47
- 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,41 @@
|
|
|
1
|
+
## 2.33.0 (2024-05-14)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(verticalnav): add auto tooltip feature and update spacing (f1182a50)
|
|
6
|
+
- feat(verticalnav): add support for tooltip in case of non expandable icon (53a5a3d5)
|
|
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(verticalnav): add auto tooltip feature and update spacing (f1182a50)
|
|
23
|
+
- feat(verticalnav): add support for tooltip in case of non expandable icon (53a5a3d5)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- fix(fileList): update font size weight and spacing in between the text and action icon (4acfbeac)
|
|
28
|
+
|
|
29
|
+
### Improvements
|
|
30
|
+
|
|
31
|
+
- feat(gatsby): update changelog for latest gatsby version (57bb181d)
|
|
32
|
+
|
|
33
|
+
### Documentation
|
|
34
|
+
|
|
35
|
+
- docs(verticalnav): add overflow documentation (0c49411e)
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
1
39
|
## 2.32.1 (2024-05-08)
|
|
2
40
|
|
|
3
41
|
### Highlights
|
|
@@ -20,7 +58,7 @@ NA
|
|
|
20
58
|
|
|
21
59
|
- feat(listbox): add selected and activated type in listbox stories (46c24416)
|
|
22
60
|
- feat(spacing): implement 6px token and replace hardcoded value (292e6e2e)
|
|
23
|
-
- feat(select): add appendToBody and boundary element props support
|
|
61
|
+
- feat(select): add appendToBody and boundary element props support (8a74dc4f)
|
|
24
62
|
|
|
25
63
|
### Fixes
|
|
26
64
|
|
|
@@ -2584,7 +2622,7 @@ NA
|
|
|
2584
2622
|
- fixes GridBody scrollTop issue on unmount. (766b5686)
|
|
2585
2623
|
- updates pagination component according to design. (601c3a47)
|
|
2586
2624
|
- fixes expanded state on initial render of Collapsible component. (e2967a7b)
|
|
2587
|
-
- fixes single line case for width
|
|
2625
|
+
- fixes single line case for width greater than 240px in ChipInput. (92a37b6f)
|
|
2588
2626
|
- fixes slider tooltip to move with pointer in Slider component. (f1698ff3)
|
|
2589
2627
|
- fixes label onClick handling of MultiSlider component (ff4af117)
|
|
2590
2628
|
- Updates DS-_ to Design-System-_ as data-test attribute value in components. (6956653e)
|
package/css/dist/index.css
CHANGED
|
@@ -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
|
}
|