@egovernments/digit-ui-components 0.0.1-beta.27 → 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 +16 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,7 @@ yarn storybook
|
|
|
58
58
|
# Changelog
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
+
0.0.1-beta.28 Added restrictSelection prop in MultiSelectDropdown
|
|
61
62
|
0.0.1-beta.27 Added uploader variants and its CSS
|
|
62
63
|
0.0.1-beta.26 Updated Toast Usage
|
|
63
64
|
0.0.1-beta.25 Updated RemoveableTag component to have error
|
|
@@ -86,6 +87,21 @@ yarn storybook
|
|
|
86
87
|
0.0.1 base version
|
|
87
88
|
```
|
|
88
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
|
+
|
|
89
105
|
## [0.0.1-beta.22] - 2024-05-20
|
|
90
106
|
|
|
91
107
|
### Breaking Changes
|