@egovernments/digit-ui-components 0.0.1-beta.3 → 0.0.1-beta.31
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 +63 -0
- package/dist/index.js +1 -1
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -58,10 +58,73 @@ yarn storybook
|
|
|
58
58
|
# Changelog
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
+
0.0.1-beta.31 Added new prop named activeSteps in Stepper
|
|
62
|
+
0.0.1-beta.30 Updated Panel Animation Styles
|
|
63
|
+
0.0.1-beta.29 Added PopUp,Panels and Panel Cards
|
|
64
|
+
0.0.1-beta.28 Added restrictSelection prop in MultiSelectDropdown
|
|
65
|
+
0.0.1-beta.27 Added uploader variants and its CSS
|
|
66
|
+
0.0.1-beta.26 Updated Toast Usage
|
|
67
|
+
0.0.1-beta.25 Updated RemoveableTag component to have error
|
|
68
|
+
0.0.1-beta.24 Updated numeric type to disable input and use only buttons and made date and time fields clickable
|
|
69
|
+
0.0.1-beta.23 Updated ErrorMessage component to have new props named showIcon,truncateMessage and maxLength
|
|
70
|
+
0.0.1-beta.22 From this version of ui-components the Toast component will have a new prop named type, replacing the seperate props for info,warning and error
|
|
71
|
+
0.0.1-beta.21 Added categorySelectAllState in the nestedmultiselect variant of multiselectdropdown
|
|
72
|
+
0.0.1-beta.20 updated multiselectdropdown categoryselectall functionality and added key navigation for dropdown options
|
|
73
|
+
0.0.1-beta.19 making CheckBox more customizable and adding custom color for Button
|
|
74
|
+
0.0.1-beta.18 updated dropdown option labels
|
|
75
|
+
0.0.1-beta.17 updated toast info varinat css and category option css
|
|
76
|
+
0.0.1-beta.16 added erroe boundary atom
|
|
77
|
+
0.0.1-beta.15 added info varinat for toast
|
|
78
|
+
0.0.1-beta.14 updated dropdown options label to use optionsKey
|
|
79
|
+
0.0.1-beta.13 nested and tree dropdown varinat updated
|
|
80
|
+
0.0.1-beta.12 enhancements of components
|
|
81
|
+
0.0.1-beta.11 updated mobilenumber classname
|
|
82
|
+
0.0.1-beta.10 updated header and textinput classnames
|
|
83
|
+
0.0.1-beta.9 updated key to IS_STRING_MANIPULATED
|
|
84
|
+
0.0.1-beta.8 Updated the string manipulation based on globalConfig flag isStringManipulated
|
|
85
|
+
0.0.1-beta.7 updated classnames
|
|
86
|
+
0.0.1-beta.6 updated version
|
|
87
|
+
0.0.1-beta.5 modified classnames
|
|
88
|
+
0.0.1-beta.4 fixed some date issues
|
|
61
89
|
0.0.3 Added new components
|
|
62
90
|
0.0.1 base version
|
|
63
91
|
```
|
|
64
92
|
|
|
93
|
+
## [0.0.1-beta.28] - 2024-05-24
|
|
94
|
+
|
|
95
|
+
### New Changes
|
|
96
|
+
|
|
97
|
+
- Added restrictSelection prop in Multiselectdropdown. If this is sent as true, it restricts any option to get selected.
|
|
98
|
+
|
|
99
|
+
- Usage:
|
|
100
|
+
```jsx
|
|
101
|
+
<MultiSelectDropdown
|
|
102
|
+
restrictSelection={true}
|
|
103
|
+
/>
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
## [0.0.1-beta.22] - 2024-05-20
|
|
109
|
+
|
|
110
|
+
### Breaking Changes
|
|
111
|
+
|
|
112
|
+
- Toast Component: From this version of `ui-components`, the `Toast` component has a new prop named `type`, replacing the separate props for `info`, `warning`, and `error`.
|
|
113
|
+
- Old Usage:
|
|
114
|
+
```jsx
|
|
115
|
+
<Toast info={true} label={"Info Toast"} />
|
|
116
|
+
<Toast warning="warning" label={"Warning Toast"}/>
|
|
117
|
+
<Toast error={true} label={"Error Toast"}/>
|
|
118
|
+
```
|
|
119
|
+
- New Usage:
|
|
120
|
+
```jsx
|
|
121
|
+
<Toast type="info" label={"Info Toast"} />
|
|
122
|
+
<Toast type="warning" label={"Warning Toast"} />
|
|
123
|
+
<Toast type="error" label={"Error Toast"} />
|
|
124
|
+
<Toast type="success" label={"Success Toast"} />
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
|
|
65
128
|
## Published from DIGIT Core
|
|
66
129
|
|
|
67
130
|
Digit Core Repo (https://github.com/egovernments/Core-Platform/tree/digit-ui-core)
|