@egovernments/digit-ui-components 0.0.1-beta.9 → 0.0.1-webpack.1
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 +64 -13
- package/dist/index.js +2 -1
- package/dist/index.js.LICENSE.txt +85 -0
- package/package.json +26 -31
package/README.md
CHANGED
|
@@ -55,22 +55,73 @@ yarn storybook
|
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
## [0.0.1-beta.28] - 2024-05-24
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
```
|
|
60
|
+
### New Changes
|
|
61
|
+
|
|
62
|
+
- Added restrictSelection prop in Multiselectdropdown. If this is sent as true, it restricts any option to get selected.
|
|
63
|
+
|
|
64
|
+
- Usage:
|
|
65
|
+
```jsx
|
|
66
|
+
<MultiSelectDropdown
|
|
67
|
+
restrictSelection={true}
|
|
68
|
+
/>
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
## [0.0.1-beta.22] - 2024-05-20
|
|
75
|
+
|
|
76
|
+
### Breaking Changes
|
|
77
|
+
|
|
78
|
+
- 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`.
|
|
79
|
+
- Old Usage:
|
|
80
|
+
```jsx
|
|
81
|
+
<Toast info={true} label={"Info Toast"} />
|
|
82
|
+
<Toast warning="warning" label={"Warning Toast"}/>
|
|
83
|
+
<Toast error={true} label={"Error Toast"}/>
|
|
84
|
+
```
|
|
85
|
+
- New Usage:
|
|
86
|
+
```jsx
|
|
87
|
+
<Toast type="info" label={"Info Toast"} />
|
|
88
|
+
<Toast type="warning" label={"Warning Toast"} />
|
|
89
|
+
<Toast type="error" label={"Error Toast"} />
|
|
90
|
+
<Toast type="success" label={"Success Toast"} />
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Changelog
|
|
94
|
+
|
|
95
|
+
### Summary for Version [0.0.2] - 2024-06-03
|
|
96
|
+
|
|
97
|
+
#### New Changes
|
|
98
|
+
|
|
99
|
+
- Added Error Message Component.
|
|
100
|
+
- Added Info Button Component.
|
|
101
|
+
- Added Panels Component.
|
|
102
|
+
- Added Popup Component with two variants: `default` and `alert`.
|
|
103
|
+
- Added RemoveableTag Component.
|
|
104
|
+
- Added Stepper Component.
|
|
105
|
+
- Added TextBlock Component.
|
|
106
|
+
- Added Timeline Component.
|
|
107
|
+
- Added Uploader Component with three variants: `UploadFile`, `UploadPopup`, and `UploadImage`.
|
|
108
|
+
- Added PanelCard Molecule.
|
|
109
|
+
|
|
110
|
+
#### Enhancements
|
|
111
|
+
|
|
112
|
+
- Updated Button Component Styles.
|
|
113
|
+
- Updated Dropdown Component Styles and added SelectAll Option.
|
|
114
|
+
- Updated InfoCard Component Styles.
|
|
115
|
+
- Added Animation for Toast.
|
|
116
|
+
- Added new prop `type` for Toast, replacing the separate props for `info`, `warning`, and `error`.
|
|
117
|
+
- Updated Typography with lineHeight.
|
|
118
|
+
- Updated Color Typography.
|
|
119
|
+
|
|
120
|
+
For a detailed changelog, see the [CHANGELOG.md](./CHANGELOG.md) file.
|
|
70
121
|
|
|
71
|
-
## Published from DIGIT
|
|
122
|
+
## Published from DIGIT-UI-LIBRARIES
|
|
72
123
|
|
|
73
|
-
|
|
124
|
+
DIGIT-UI-LIBRARIES Repo (https://github.com/egovernments/DIGIT-UI-LIBRARIES/tree/master)
|
|
74
125
|
|
|
75
126
|
# Contributors
|
|
76
127
|
|