-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added readme and corrected the file version issue
- Loading branch information
1 parent
37fbbec
commit 27347f2
Showing
23 changed files
with
832 additions
and
40 deletions.
There are no files selected for viewing
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,20 @@ | ||
name: Node.js Publish UI Packages | ||
|
||
on: | ||
push: | ||
branches: [ 'jagan' ] | ||
paths: | ||
- 'frontend/micro-ui/web/micro-ui-internals/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 14.20.0 | ||
registry-url: https://registry.npmjs.org | ||
- run: cd frontend/micro-ui/web/micro-ui-internals/ && bash ./publish-beta.sh | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
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/common/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-common | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-common | ||
``` | ||
|
||
## 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-common":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { initcommonComponents } from "@egovernments/digit-ui-module-common"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["Payment"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
initcommonComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### 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
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-commonpt | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-commonpt | ||
``` | ||
|
||
## 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-commonpt":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { initcommonptComponents } from "@egovernments/digit-ui-module-commonpt"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["commonpt"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
initcommonptComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### 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/engagement/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-engagement | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-engagement | ||
``` | ||
|
||
## 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-engagement":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { initengagementComponents } from "@egovernments/digit-ui-module-engagement"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["engagement"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
initengagementComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### Changelog | ||
|
||
```bash | ||
1.7.1 UPYOG Base version | ||
``` | ||
|
||
### Contributors | ||
|
||
[jagankumar-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/hrms/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-hrms | ||
|
||
## Install | ||
|
||
```bash | ||
npm install --save @egovernments/digit-ui-module-hrms | ||
``` | ||
|
||
## 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-hrms":"^1.5.0", | ||
``` | ||
|
||
then navigate to App.js | ||
|
||
```bash | ||
frontend/micro-ui/web/src/App.js | ||
``` | ||
|
||
|
||
```jsx | ||
/** add this import **/ | ||
|
||
import { inithrmsComponents } from "@egovernments/digit-ui-module-hrms"; | ||
|
||
/** inside enabledModules add this new module key **/ | ||
|
||
const enabledModules = ["hrms"]; | ||
|
||
/** inside init Function call this function **/ | ||
|
||
const initDigitUI = () => { | ||
inithrmsComponents(); | ||
}; | ||
``` | ||
|
||
|
||
|
||
|
||
### 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) |
Oops, something went wrong.