@egovernments/digit-ui-components 0.0.1-beta.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 +81 -0
- package/dist/index.js +1 -0
- package/package.json +83 -0
package/README.md
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
|
|
2
|
+
# digit-ui-components
|
|
3
|
+
|
|
4
|
+
## Install
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npm install --save @egovernments/digit-ui-components
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Limitation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
This Package is more specific to DIGIT-UI's can be used across mission's
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
After adding the dependency make sure you have this dependency in
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
frontend/micro-ui/web/package.json
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
"@egovernments/digit-ui-components":"0.0.1",
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
then navigate to App.js
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
frontend/micro-ui/web/src/App.js
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
# Syntax for importing any components
|
|
35
|
+
|
|
36
|
+
```jsx
|
|
37
|
+
import { SVG } from "@egovernments/digit-ui-components";
|
|
38
|
+
|
|
39
|
+
<SVG.Accessibility />;
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
# Local Development
|
|
43
|
+
Use Node 14 version
|
|
44
|
+
|
|
45
|
+
Step 1
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
yarn install
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Step 2
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
yarn storybook
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# Changelog
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
0.0.1 base version
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Published from DIGIT Core
|
|
65
|
+
|
|
66
|
+
Digit Core Repo (https://github.com/egovernments/Core-Platform/tree/digit-ui-core)
|
|
67
|
+
|
|
68
|
+
# Contributors
|
|
69
|
+
|
|
70
|
+
[nabeelmd-egov] [anilsingha-eGov] [nipunarora-eGov] [swathi-egov] [jagankumar-egov]
|
|
71
|
+
|
|
72
|
+
# Reference
|
|
73
|
+
|
|
74
|
+
Home Page (https://unified-dev.digit.org/storybook/)
|
|
75
|
+
|
|
76
|
+
## License
|
|
77
|
+
|
|
78
|
+
MIT © [jagankumar-egov](https://github.com/jagankumar-egov)
|
|
79
|
+
|
|
80
|
+

|
|
81
|
+
|