@innovaccer/design-system 2.28.1 → 2.28.2
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 +41 -0
- package/css/dist/index.css +1 -2
- package/css/dist/index.css.map +1 -1
- package/css/src/components/avatarGroup.css +1 -2
- package/dist/.lib/tsconfig.type.tsbuildinfo +8 -8
- package/dist/core/components/organisms/datePicker/DatePicker.d.ts +7 -0
- package/dist/index.esm.js +41 -23
- package/dist/index.js +59 -41
- 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,44 @@
|
|
|
1
|
+
## 2.28.2 (2024-02-27)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(datepicker): add functionality to detect invalid manually entered dates in datepicker (bdf54a43)
|
|
6
|
+
- fix(dateRangePicker): add validation for invalid date range (7e337673)
|
|
7
|
+
- fix(avatargroup): update border color and popper body dimensions (51c648f0)
|
|
8
|
+
- fix(datepicker): datePicker popover not opening in fullscreenModal (5238f1e8)
|
|
9
|
+
|
|
10
|
+
### Breaking changes
|
|
11
|
+
|
|
12
|
+
NA
|
|
13
|
+
|
|
14
|
+
### Migration guide
|
|
15
|
+
|
|
16
|
+
NA
|
|
17
|
+
|
|
18
|
+
### Deprecations
|
|
19
|
+
|
|
20
|
+
NA
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
NA
|
|
25
|
+
|
|
26
|
+
### Fixes
|
|
27
|
+
|
|
28
|
+
- fix(datepicker): datePicker popover not opening in fullscreenModal (5238f1e8)
|
|
29
|
+
|
|
30
|
+
### Improvements
|
|
31
|
+
|
|
32
|
+
- feat(datepicker): add functionality to detect invalid manually entered dates in datepicker (bdf54a43)
|
|
33
|
+
- fix(dateRangePicker): add validation for invalid date range (7e337673)
|
|
34
|
+
- fix(avatargroup): update border color and popper body dimensions (51c648f0)
|
|
35
|
+
|
|
36
|
+
### Documentation
|
|
37
|
+
|
|
38
|
+
NA
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
1
42
|
## 2.28.1 (2024-02-19)
|
|
2
43
|
|
|
3
44
|
### Highlights
|
package/css/dist/index.css
CHANGED