@egovernments/digit-ui-components 0.0.1-beta.26 → 0.0.1-beta.28
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/README.md +17 -0
- package/dist/index.js +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -58,6 +58,8 @@ yarn storybook
|
|
|
58
58
|
# Changelog
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
+
0.0.1-beta.28 Added restrictSelection prop in MultiSelectDropdown
|
|
62
|
+
0.0.1-beta.27 Added uploader variants and its CSS
|
|
61
63
|
0.0.1-beta.26 Updated Toast Usage
|
|
62
64
|
0.0.1-beta.25 Updated RemoveableTag component to have error
|
|
63
65
|
0.0.1-beta.24 Updated numeric type to disable input and use only buttons and made date and time fields clickable
|
|
@@ -85,6 +87,21 @@ yarn storybook
|
|
|
85
87
|
0.0.1 base version
|
|
86
88
|
```
|
|
87
89
|
|
|
90
|
+
## [0.0.1-beta.28] - 2024-05-24
|
|
91
|
+
|
|
92
|
+
### New Changes
|
|
93
|
+
|
|
94
|
+
- Added restrictSelection prop in Multiselectdropdown. If this is sent as true, it restricts any option to get selected.
|
|
95
|
+
|
|
96
|
+
- Usage:
|
|
97
|
+
```jsx
|
|
98
|
+
<MultiSelectDropdown
|
|
99
|
+
restrictSelection={true}
|
|
100
|
+
/>
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
88
105
|
## [0.0.1-beta.22] - 2024-05-20
|
|
89
106
|
|
|
90
107
|
### Breaking Changes
|