@egovernments/digit-ui-components 0.2.0-beta.8 → 0.2.0-webpack.10
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 +7 -37
- package/dist/main-166735b3.0348cd7ee77dd894b972.js +1 -0
- package/dist/main-7c36387c.eeb2144481c02ceff5c6.js +1 -0
- package/dist/main-aec23333.0f710af04816aa9023ca.js +1 -0
- package/dist/main-c92480b7.146a0950f01e364f98c3.js +1 -0
- package/dist/main-d91a9049.74cc6b9811eb52c58052.js +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +14 -0
- package/dist/runtime.a6dd0909c73994cc13d4.js +1 -0
- package/dist/vendors-059be3de.7d2a68d0f771fef635da.js +1 -0
- package/dist/vendors-125a01f4.e52f0a6e7c9305346a4e.js +1 -0
- package/dist/vendors-1bbbe0aa.beda1528edc86806c455.js +1 -0
- package/dist/vendors-1c59d003.7363983b62b3d7533702.js +1 -0
- package/dist/vendors-27545368.c6e0cb5dc6d9f6bba82d.js +2 -0
- package/dist/vendors-27545368.c6e0cb5dc6d9f6bba82d.js.LICENSE.txt +10 -0
- package/dist/vendors-49d0a293.1900eb063b3794032292.js +2 -0
- package/dist/vendors-49d0a293.1900eb063b3794032292.js.LICENSE.txt +5 -0
- package/dist/vendors-536eaa00.cc3edfd2361e81b5c1a9.js +1 -0
- package/dist/vendors-5a94f17d.917fc072320583ea418f.js +1 -0
- package/dist/vendors-78622f30.82b357b2a77611bc148c.js +1 -0
- package/dist/vendors-ab957e66.a94d8e721e8367535849.js +1 -0
- package/dist/vendors-beb35932.da545c87b5acf6832c54.js +1 -0
- package/dist/vendors-dbef025e.385620497955134874cb.js +2 -0
- package/dist/vendors-dbef025e.385620497955134874cb.js.LICENSE.txt +21 -0
- package/dist/vendors-fcf017cf.bbe1787ab7ed288fc3d0.js +2 -0
- package/dist/vendors-fcf017cf.bbe1787ab7ed288fc3d0.js.LICENSE.txt +8 -0
- package/package.json +34 -50
- package/CHANGELOG.md +0 -473
- package/dist/index.js +0 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ npm install --save @egovernments/digit-ui-components
|
|
|
10
10
|
## Limitation
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
This Package is more specific to DIGIT-UI's can be used across mission's
|
|
13
|
+
This Package is more specific to DIGIT-UI's can be used across mission's for webpack builds & node v20
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## Usage
|
|
@@ -39,7 +39,7 @@ import { SVG } from "@egovernments/digit-ui-components";
|
|
|
39
39
|
<SVG.Accessibility />;
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
# Local Development
|
|
42
|
+
# Local Development
|
|
43
43
|
Use Node 14 version
|
|
44
44
|
|
|
45
45
|
Step 1
|
|
@@ -48,43 +48,15 @@ Step 1
|
|
|
48
48
|
yarn install
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
Step 2
|
|
51
|
+
Step 2
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
54
|
yarn storybook
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
### New Changes
|
|
58
57
|
|
|
59
|
-
## [0.0.
|
|
58
|
+
## [0.0.2-webpack.2]
|
|
60
59
|
|
|
61
|
-
- Added restrictSelection prop in Multiselectdropdown. If this is sent as true, it restricts any option to get selected.
|
|
62
|
-
|
|
63
|
-
- Usage:
|
|
64
|
-
```jsx
|
|
65
|
-
<MultiSelectDropdown
|
|
66
|
-
restrictSelection={true}
|
|
67
|
-
/>
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
### Breaking Changes while migrating from any version below 0.0.1-beta.22
|
|
71
|
-
|
|
72
|
-
## [0.0.1-beta.22] - 2024-05-20
|
|
73
|
-
|
|
74
|
-
- 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`.
|
|
75
|
-
- Old Usage:
|
|
76
|
-
```jsx
|
|
77
|
-
<Toast info={true} label={"Info Toast"} />
|
|
78
|
-
<Toast warning="warning" label={"Warning Toast"}/>
|
|
79
|
-
<Toast error={true} label={"Error Toast"}/>
|
|
80
|
-
```
|
|
81
|
-
- New Usage:
|
|
82
|
-
```jsx
|
|
83
|
-
<Toast type="info" label={"Info Toast"} />
|
|
84
|
-
<Toast type="warning" label={"Warning Toast"} />
|
|
85
|
-
<Toast type="error" label={"Error Toast"} />
|
|
86
|
-
<Toast type="success" label={"Success Toast"} />
|
|
87
|
-
```
|
|
88
60
|
|
|
89
61
|
## Changelog
|
|
90
62
|
|
|
@@ -121,13 +93,11 @@ DIGIT-UI-LIBRARIES Repo (https://github.com/egovernments/DIGIT-UI-LIBRARIES/tree
|
|
|
121
93
|
|
|
122
94
|
# Contributors
|
|
123
95
|
|
|
124
|
-
[nabeelmd-egov] [
|
|
125
|
-
|
|
126
|
-
# Reference
|
|
96
|
+
[nabeelmd-egov] [anilsingha-eGov] [nipunarora-eGov] [swathi-egov] [jagankumar-egov]
|
|
127
97
|
|
|
128
|
-
|
|
98
|
+
# Reference
|
|
129
99
|
|
|
130
|
-
|
|
100
|
+
Home Page (https://unified-dev.digit.org/storybook/)
|
|
131
101
|
|
|
132
102
|
## License
|
|
133
103
|
|