@innovaccer/design-system 2.27.0 → 2.28.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,46 @@
1
+ ## 2.28.0 (2024-02-09)
2
+
3
+ ### Highlights
4
+
5
+ - feat(avatargroup): add image and icon support in avatar group component (1c6c63c0)
6
+ - feat(avatar): add square shape avatar support (09118a08)
7
+ - feat(avatargroup): add images in avatar group stories (645bed48)
8
+
9
+ ### Breaking changes
10
+
11
+ NA
12
+
13
+ ### Migration guide
14
+
15
+ NA
16
+
17
+ ### Deprecations
18
+
19
+ NA
20
+
21
+ ### Features
22
+
23
+ - feat(avatargroup): add image and icon support in avatar group component (1c6c63c0)
24
+ - feat(avatargroup): add images in avatar group stories (645bed48)
25
+ - feat(avatar): add square shape avatar support (09118a08)
26
+
27
+ ### Fixes
28
+
29
+ - fix(docs): fix z-index for algolia search modal (5bcb01d1)
30
+ - fix(metric-input): arrow button causes form to submit (71aa9257)
31
+ - fix: add compatibility for resize in textarea for firefox browser (aed1a437)
32
+
33
+ ### Improvements
34
+
35
+ NA
36
+
37
+ ### Documentation
38
+
39
+ - docs(docs): update message, toast, and modal documentation (501d4bdc)
40
+ - docs(docs): add shapes documentation in avatar (0c0ad3ab)
41
+
42
+ ---
43
+
1
44
  ## 2.27.0 (2024-01-15)
2
45
 
3
46
  ### 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 */