@innovaccer/design-system 2.28.1 → 2.28.3

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,80 @@
1
+ ## 2.28.3 (2024-03-01)
2
+
3
+ ### Highlights
4
+
5
+ - fix(avatar): remove redundant class implementation in avatar (4b63de6c)
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
+ NA
22
+
23
+ ### Fixes
24
+
25
+ - fix(avatar): remove redundant class implementation in avatar (4b63de6c)
26
+
27
+ ### Improvements
28
+
29
+ NA
30
+
31
+ ### Documentation
32
+
33
+ NA
34
+
35
+ ---
36
+
37
+ ## 2.28.2 (2024-02-27)
38
+
39
+ ### Highlights
40
+
41
+ - feat(datepicker): add functionality to detect invalid manually entered dates in datepicker (bdf54a43)
42
+ - fix(dateRangePicker): add validation for invalid date range (7e337673)
43
+ - fix(avatargroup): update border color and popper body dimensions (51c648f0)
44
+ - fix(datepicker): datePicker popover not opening in fullscreenModal (5238f1e8)
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
+ NA
61
+
62
+ ### Fixes
63
+
64
+ - fix(datepicker): datePicker popover not opening in fullscreenModal (5238f1e8)
65
+
66
+ ### Improvements
67
+
68
+ - feat(datepicker): add functionality to detect invalid manually entered dates in datepicker (bdf54a43)
69
+ - fix(dateRangePicker): add validation for invalid date range (7e337673)
70
+ - fix(avatargroup): update border color and popper body dimensions (51c648f0)
71
+
72
+ ### Documentation
73
+
74
+ NA
75
+
76
+ ---
77
+
1
78
  ## 2.28.1 (2024-02-19)
2
79
 
3
80
  ### Highlights
@@ -985,10 +985,9 @@ body {
985
985
  }
986
986
 
987
987
  .AvatarGroup-TextWrapper {
988
- padding-right: var(--spacing);
989
988
  display: flex;
990
989
  flex-direction: column;
991
- align-items: flex-end;
990
+ align-items: flex-start;
992
991
  overflow-y: auto;
993
992
  }
994
993