@innovaccer/design-system 2.32.0 → 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 CHANGED
@@ -1,3 +1,79 @@
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
+
39
+ ## 2.32.1 (2024-05-08)
40
+
41
+ ### Highlights
42
+
43
+ - feat(spacing): implement 6px token and replace hardcoded value (292e6e2e)
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
+ - feat(listbox): add selected and activated type in listbox stories (46c24416)
60
+ - feat(spacing): implement 6px token and replace hardcoded value (292e6e2e)
61
+ - feat(select): add appendToBody and boundary element props support (8a74dc4f)
62
+
63
+ ### Fixes
64
+
65
+ - fix(select): make title description optional in empty template (42ae0d79)
66
+
67
+ ### Improvements
68
+
69
+ NA
70
+
71
+ ### Documentation
72
+
73
+ - docs(spacing): add 6px token documentation (93d299e7)
74
+
75
+ ---
76
+
1
77
  ## 2.32.0 (2024-05-01)
2
78
 
3
79
  ### Highlights
@@ -2546,7 +2622,7 @@ NA
2546
2622
  - fixes GridBody scrollTop issue on unmount. (766b5686)
2547
2623
  - updates pagination component according to design. (601c3a47)
2548
2624
  - fixes expanded state on initial render of Collapsible component. (e2967a7b)
2549
- - fixes single line case for width<240px in ChipInput. (92a37b6f)
2625
+ - fixes single line case for width greater than 240px in ChipInput. (92a37b6f)
2550
2626
  - fixes slider tooltip to move with pointer in Slider component. (f1698ff3)
2551
2627
  - fixes label onClick handling of MultiSlider component (ff4af117)
2552
2628
  - Updates DS-_ to Design-System-_ as data-test attribute value in components. (6956653e)
@@ -163,6 +163,7 @@
163
163
  --spacing-xs: 1px;
164
164
  --spacing-s: 2px;
165
165
  --spacing-m: 4px;
166
+ --spacing-0-75: 6px;
166
167
  --spacing: 8px;
167
168
  --spacing-l: 12px;
168
169
  /* 8 * 2 */
@@ -680,12 +681,12 @@ body {
680
681
  }
681
682
 
682
683
  .Label-requiredIndicator {
683
- height: 6px;
684
- width: 6px;
684
+ height: var(--spacing-0-75);
685
+ width: var(--spacing-0-75);
685
686
  border-radius: 50%;
686
687
  background: var(--alert);
687
688
  margin-left: var(--spacing-m);
688
- margin-bottom: 6px;
689
+ margin-bottom: var(--spacing-0-75);
689
690
  display: inline-flex;
690
691
  }
691
692
 
@@ -2528,7 +2529,7 @@ body {
2528
2529
  height: var(--spacing-2);
2529
2530
  padding: var(--spacing-s);
2530
2531
  margin-left: var(--spacing);
2531
- margin-top: 6px;
2532
+ margin-top: var(--spacing-0-75);
2532
2533
  cursor: pointer;
2533
2534
  border-radius: 10px;
2534
2535
  }
@@ -2723,7 +2724,7 @@ body {
2723
2724
  align-items: center;
2724
2725
  margin-left: var(--spacing-l);
2725
2726
  margin-top: var(--spacing-l);
2726
- margin-bottom: 6px;
2727
+ margin-bottom: var(--spacing-0-75);
2727
2728
  }
2728
2729
 
2729
2730
  .Dropdown-section--withClear {
@@ -2754,8 +2755,8 @@ body {
2754
2755
 
2755
2756
  .Option,
2756
2757
  .Option-loading {
2757
- padding-top: 6px;
2758
- padding-bottom: 6px;
2758
+ padding-top: var(--spacing-0-75);
2759
+ padding-bottom: var(--spacing-0-75);
2759
2760
  padding-left: var(--spacing-l);
2760
2761
  padding-right: var(--spacing);
2761
2762
  }
@@ -2771,8 +2772,8 @@ body {
2771
2772
  .OptionCheckbox {
2772
2773
  width: 100%;
2773
2774
  padding-left: var(--spacing-l);
2774
- padding-top: 6px;
2775
- padding-bottom: 6px;
2775
+ padding-top: var(--spacing-0-75);
2776
+ padding-bottom: var(--spacing-0-75);
2776
2777
  }
2777
2778
 
2778
2779
  .Option--active,
@@ -3344,6 +3345,7 @@ body {
3344
3345
  display: flex;
3345
3346
  justify-content: center;
3346
3347
  align-items: center;
3348
+ flex-shrink: 0;
3347
3349
  }
3348
3350
  .FileItem-file {
3349
3351
  display: flex;
@@ -3359,6 +3361,7 @@ body {
3359
3361
  white-space: nowrap;
3360
3362
  overflow: hidden;
3361
3363
  text-overflow: ellipsis;
3364
+ margin-right: var(--spacing);
3362
3365
  margin-left: var(--spacing-l);
3363
3366
  }
3364
3367
  .FileItem-error {
@@ -4423,8 +4426,8 @@ body {
4423
4426
 
4424
4427
  .Input--regular {
4425
4428
  height: var(--font-height-l);
4426
- padding-top: 6px;
4427
- padding-bottom: 6px;
4429
+ padding-top: var(--spacing-0-75);
4430
+ padding-bottom: var(--spacing-0-75);
4428
4431
  }
4429
4432
 
4430
4433
  .Input--large {
@@ -4912,7 +4915,7 @@ body {
4912
4915
  .Menu-Group-Label {
4913
4916
  display: flex;
4914
4917
  align-items: center;
4915
- padding-bottom: 6px;
4918
+ padding-bottom: var(--spacing-0-75);
4916
4919
  padding-top: var(--spacing-l);
4917
4920
  padding-left: var(--spacing-2);
4918
4921
  padding-right: var(--spacing-l);
@@ -5600,8 +5603,8 @@ body {
5600
5603
  font-size: var(--font-size-s);
5601
5604
  line-height: var(--font-height-s);
5602
5605
  text-transform: uppercase;
5603
- padding-right: 6px;
5604
- padding-left: 6px;
5606
+ padding-right: var(--spacing-0-75);
5607
+ padding-left: var(--spacing-0-75);
5605
5608
  padding-top: var(--spacing-s);
5606
5609
  padding-bottom: var(--spacing-s);
5607
5610
  border-radius: 20px;
@@ -6677,7 +6680,7 @@ body {
6677
6680
  height: var(--spacing);
6678
6681
  width: var(--spacing);
6679
6682
  margin-right: var(--spacing);
6680
- margin-top: 6px;
6683
+ margin-top: var(--spacing-0-75);
6681
6684
  }
6682
6685
 
6683
6686
  .StatusHint--alert {
@@ -6830,7 +6833,7 @@ body {
6830
6833
  width: 100%;
6831
6834
  background-color: var(--secondary-light);
6832
6835
  transition: background 120ms ease;
6833
- padding-right: 6px;
6836
+ padding-right: var(--spacing-0-75);
6834
6837
  }
6835
6838
 
6836
6839
  .Switch-input:focus ~ .Switch-wrapper {
@@ -6885,7 +6888,7 @@ body {
6885
6888
  .Switch-wrapper--checked {
6886
6889
  background-color: var(--primary);
6887
6890
  transition: background 120ms ease;
6888
- padding-left: 6px;
6891
+ padding-left: var(--spacing-0-75);
6889
6892
  padding-right: 2px !important;
6890
6893
  }
6891
6894
 
@@ -7644,7 +7647,7 @@ body {
7644
7647
  text-transform: uppercase;
7645
7648
  padding-left: var(--spacing-2);
7646
7649
  padding-top: var(--spacing-l);
7647
- padding-bottom: 6px;
7650
+ padding-bottom: var(--spacing-0-75);
7648
7651
  margin-top: var(--spacing);
7649
7652
  }
7650
7653
 
@@ -7752,6 +7755,12 @@ body {
7752
7755
  white-space: nowrap;
7753
7756
  }
7754
7757
 
7758
+ .MenuItem--overflow {
7759
+ overflow: hidden;
7760
+ text-overflow: ellipsis;
7761
+ white-space: nowrap;
7762
+ }
7763
+
7755
7764
  .MenuItem-count {
7756
7765
  margin-right: var(--spacing-m);
7757
7766
  }