@egovernments/digit-ui-health-css 0.0.1-rc19
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 +68 -0
- package/dist/index.css +12 -0
- package/package.json +78 -0
- package/src/components/microplan.scss +578 -0
- package/src/components/microplanning.scss +2820 -0
- package/src/index.scss +20 -0
- package/src/pages/employee/campaign.scss +835 -0
- package/src/pages/employee/campaignCommon.scss +341 -0
- package/src/pages/employee/campaignCycle.scss +407 -0
- package/src/pages/employee/checklist.scss +451 -0
- package/src/pages/employee/coreOverride.scss +252 -0
- package/src/pages/employee/facility.scss +228 -0
- package/src/pages/employee/fetchFromMicroplan.scss +28 -0
- package/src/pages/employee/formulaConfig.scss +35 -0
- package/src/pages/employee/hcmworkbench.scss +223 -0
- package/src/pages/employee/healthdss.scss +1402 -0
- package/src/pages/employee/hrmsupdate.scss +14 -0
- package/src/pages/employee/index.scss +1314 -0
- package/src/pages/employee/mapview.scss +338 -0
- package/src/pages/employee/microplanInbox.scss +185 -0
- package/src/pages/employee/mycampaignsnew.scss +109 -0
- package/src/pages/employee/payment.scss +162 -0
- package/src/pages/employee/villageView.scss +84 -0
- package/src/theme-variables.css +102 -0
- package/src/typography.scss +510 -0
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# digit-ui-health-css
|
|
2
|
+
|
|
3
|
+
## Install
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install --save @egovernments/digit-ui-health-css
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Limitation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
This Package is more specific to DIGIT-UI's can be used across mission's
|
|
13
|
+
It is the base css for all Digit UI'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-health-css":"^0.1.0",
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
then navigate to App.js
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
frontend/micro-ui/web/public/index.html
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
```jsx
|
|
35
|
+
/** add this import **/
|
|
36
|
+
|
|
37
|
+
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-health-css@0.3.0/dist/index.css" />
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## List of features available in this package were as follows
|
|
43
|
+
|
|
44
|
+
1. Campaign Management
|
|
45
|
+
2. Checklist Management
|
|
46
|
+
3. Boundary Management
|
|
47
|
+
4. Microplanning
|
|
48
|
+
5. Campaign Settings
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Contributors
|
|
52
|
+
|
|
53
|
+
- [jagankumar-egov](https://github.com/jagankumar-egov)
|
|
54
|
+
- [nabeelmd-egov](https://github.com/nabeelmd-egov)
|
|
55
|
+
- [Bhavya-egov](https://github.com/Bhavya-egov)
|
|
56
|
+
- [nipunarora-eGov](https://github.com/nipunarora-eGov)
|
|
57
|
+
- [Swathi-egov](https://github.com/Swathi-egov)
|
|
58
|
+
- [suryansh-egov](https://github.com/suryansh-egov)
|
|
59
|
+
- [ramkrishna-egov](https://github.com/ramkrishna-egov)
|
|
60
|
+
- [rachna-egov](https://github.com/rachna-egov)
|
|
61
|
+
- [pitabash-eGov](https://github.com/pitabash-eGov)
|
|
62
|
+
|
|
63
|
+
### Published from DIGIT Frontend
|
|
64
|
+
DIGIT Frontend Repo (https://github.com/egovernments/Digit-Frontend/tree/console)
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
MIT © [jagankumar-egov](https://github.com/jagankumar-egov)
|