@egovernments/digit-ui-components 0.0.1-beta.3 → 0.0.1-beta.30

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