@innovaccer/design-system 2.27.0 → 2.28.1

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,82 @@
1
+ ## 2.28.1 (2024-02-19)
2
+
3
+ ### Highlights
4
+
5
+ - feat(verticalNav): add expanded state in menu items (84635a2e)
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
+ - feat(verticalNav): add expanded state in menu items (84635a2e)
22
+
23
+ ### Fixes
24
+
25
+ NA
26
+
27
+ ### Improvements
28
+
29
+ - fix(selection-card): update spacing between selection cards and action cards in story (f9580def)
30
+
31
+ ### Documentation
32
+
33
+ - docs(docs): update images and spacing documentation between interactive cards (f45c8873)
34
+
35
+ ---
36
+
37
+ ## 2.28.0 (2024-02-09)
38
+
39
+ ### Highlights
40
+
41
+ - feat(avatargroup): add image and icon support in avatar group component (1c6c63c0)
42
+ - feat(avatar): add square shape avatar support (09118a08)
43
+ - feat(avatargroup): add images in avatar group stories (645bed48)
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(avatargroup): add image and icon support in avatar group component (1c6c63c0)
60
+ - feat(avatargroup): add images in avatar group stories (645bed48)
61
+ - feat(avatar): add square shape avatar support (09118a08)
62
+
63
+ ### Fixes
64
+
65
+ - fix(docs): fix z-index for algolia search modal (5bcb01d1)
66
+ - fix(metric-input): arrow button causes form to submit (71aa9257)
67
+ - fix: add compatibility for resize in textarea for firefox browser (aed1a437)
68
+
69
+ ### Improvements
70
+
71
+ NA
72
+
73
+ ### Documentation
74
+
75
+ - docs(docs): update message, toast, and modal documentation (501d4bdc)
76
+ - docs(docs): add shapes documentation in avatar (0c0ad3ab)
77
+
78
+ ---
79
+
1
80
  ## 2.27.0 (2024-01-15)
2
81
 
3
82
  ### Highlights
@@ -874,6 +874,17 @@ body {
874
874
  cursor: default;
875
875
  }
876
876
 
877
+ .Avatar--wrapper {
878
+ padding: var(--spacing-xs);
879
+ box-sizing: border-box;
880
+ }
881
+
882
+ .Avatar--square {
883
+ width: 100%;
884
+ height: 100%;
885
+ border-radius: var(--spacing-m);
886
+ }
887
+
877
888
  .Avatar--regular {
878
889
  height: var(--spacing-3);
879
890
  width: var(--spacing-3);
@@ -955,10 +966,12 @@ body {
955
966
 
956
967
  .AvatarGroup-item--regular {
957
968
  margin-right: calc(var(--spacing-m) * -1);
969
+ height: var(--spacing-3);
958
970
  }
959
971
 
960
972
  .AvatarGroup-item--tiny {
961
973
  margin-right: calc(var(--spacing-s) * -1);
974
+ height: var(--spacing-xl);
962
975
  }
963
976
 
964
977
  .AvatarGroup-Popper {
@@ -6793,7 +6806,7 @@ body {
6793
6806
  }
6794
6807
 
6795
6808
  .Textarea--resize {
6796
- resize: auto;
6809
+ resize: both;
6797
6810
  }
6798
6811
 
6799
6812
  /* toast */