@innovaccer/design-system 2.28.0 → 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 +77 -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 +11 -11
- package/dist/core/components/organisms/datePicker/DatePicker.d.ts +7 -0
- package/dist/core/utils/navigationHelper.d.ts +6 -0
- package/dist/index.esm.js +85 -28
- package/dist/index.js +94 -46
- 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,80 @@
|
|
|
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
|
+
|
|
42
|
+
## 2.28.1 (2024-02-19)
|
|
43
|
+
|
|
44
|
+
### Highlights
|
|
45
|
+
|
|
46
|
+
- feat(verticalNav): add expanded state in menu items (84635a2e)
|
|
47
|
+
|
|
48
|
+
### Breaking changes
|
|
49
|
+
|
|
50
|
+
NA
|
|
51
|
+
|
|
52
|
+
### Migration guide
|
|
53
|
+
|
|
54
|
+
NA
|
|
55
|
+
|
|
56
|
+
### Deprecations
|
|
57
|
+
|
|
58
|
+
NA
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
|
|
62
|
+
- feat(verticalNav): add expanded state in menu items (84635a2e)
|
|
63
|
+
|
|
64
|
+
### Fixes
|
|
65
|
+
|
|
66
|
+
NA
|
|
67
|
+
|
|
68
|
+
### Improvements
|
|
69
|
+
|
|
70
|
+
- fix(selection-card): update spacing between selection cards and action cards in story (f9580def)
|
|
71
|
+
|
|
72
|
+
### Documentation
|
|
73
|
+
|
|
74
|
+
- docs(docs): update images and spacing documentation between interactive cards (f45c8873)
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
1
78
|
## 2.28.0 (2024-02-09)
|
|
2
79
|
|
|
3
80
|
### Highlights
|
package/css/dist/index.css
CHANGED