-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d254f72
commit 2e1f9ca
Showing
6 changed files
with
236 additions
and
6 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
frontend/micro-ui/web/micro-ui-internals/packages/modules/fsm/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
|
||
# digit-ui-module-fsm | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-fsm | ||
``` | ||
|
||
## Limitation | ||
|
||
```bash | ||
This Package is more specific to DIGIT-UI's can be used across mission's | ||
``` | ||
|
||
## Usage | ||
|
||
After adding the dependency make sure you have this dependency in | ||
|
||
```bash | ||
frontend/micro-ui/web/package.json | ||
``` | ||
|
||
```json | ||
"@egovernments/digit-ui-module-fsm":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { initfsmComponents } from "@egovernments/digit-ui-module-fsm"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["fsm"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
initfsmComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### Changelog | ||
|
||
```bash | ||
1.7.1 UPYOG Base version | ||
``` | ||
|
||
### Contributors | ||
|
||
[jagankumar-egov] [Tulika-eGov] [vamshikrishnakole-wtt-egov] | ||
|
||
## Documentation | ||
|
||
Documentation Site (https://core.digit.org/guides/developer-guide/ui-developer-guide/digit-ui) | ||
|
||
## Maintainer | ||
|
||
- [jagankumar-egov](https://www.github.com/jagankumar-egov) | ||
|
||
|
||
### Published from DIGIT Frontend | ||
DIGIT Frontend Repo (https://github.com/egovernments/UPYOG/tree/develop) | ||
|
||
|
||
![Logo](https://s3.ap-south-1.amazonaws.com/works-dev-asset/mseva-white-logo.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
frontend/micro-ui/web/micro-ui-internals/packages/modules/obps/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
|
||
# digit-ui-module-obps | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-obps | ||
``` | ||
|
||
## Limitation | ||
|
||
```bash | ||
This Package is more specific to DIGIT-UI's can be used across mission's | ||
``` | ||
|
||
## Usage | ||
|
||
After adding the dependency make sure you have this dependency in | ||
|
||
```bash | ||
frontend/micro-ui/web/package.json | ||
``` | ||
|
||
```json | ||
"@egovernments/digit-ui-module-obps":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { initobpsComponents } from "@egovernments/digit-ui-module-obps"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["obps"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
initobpsComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### Changelog | ||
|
||
```bash | ||
1.7.1 UPYOG Base version | ||
``` | ||
|
||
### Contributors | ||
|
||
[jagankumar-egov] [Tulika-eGov] [vamshikrishnakole-wtt-egov] | ||
|
||
## Documentation | ||
|
||
Documentation Site (https://core.digit.org/guides/developer-guide/ui-developer-guide/digit-ui) | ||
|
||
## Maintainer | ||
|
||
- [jagankumar-egov](https://www.github.com/jagankumar-egov) | ||
|
||
|
||
### Published from DIGIT Frontend | ||
DIGIT Frontend Repo (https://github.com/egovernments/UPYOG/tree/develop) | ||
|
||
|
||
![Logo](https://s3.ap-south-1.amazonaws.com/works-dev-asset/mseva-white-logo.png) |
2 changes: 1 addition & 1 deletion
2
frontend/micro-ui/web/micro-ui-internals/packages/modules/obps/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
frontend/micro-ui/web/micro-ui-internals/packages/modules/ws/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
|
||
# digit-ui-module-ws | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-ws | ||
``` | ||
|
||
## Limitation | ||
|
||
```bash | ||
This Package is more specific to DIGIT-UI's can be used across mission's | ||
``` | ||
|
||
## Usage | ||
|
||
After adding the dependency make sure you have this dependency in | ||
|
||
```bash | ||
frontend/micro-ui/web/package.json | ||
``` | ||
|
||
```json | ||
"@egovernments/digit-ui-module-ws":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { initwsComponents } from "@egovernments/digit-ui-module-ws"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["ws"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
initwsComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### Changelog | ||
|
||
```bash | ||
1.7.1 UPYOG Base version | ||
``` | ||
|
||
### Contributors | ||
|
||
[jagankumar-egov] [Tulika-eGov] [vamshikrishnakole-wtt-egov] | ||
|
||
## Documentation | ||
|
||
Documentation Site (https://core.digit.org/guides/developer-guide/ui-developer-guide/digit-ui) | ||
|
||
## Maintainer | ||
|
||
- [jagankumar-egov](https://www.github.com/jagankumar-egov) | ||
|
||
|
||
### Published from DIGIT Frontend | ||
DIGIT Frontend Repo (https://github.com/egovernments/UPYOG/tree/develop) | ||
|
||
|
||
![Logo](https://s3.ap-south-1.amazonaws.com/works-dev-asset/mseva-white-logo.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters