@egovernments/digit-ui-health-css 0.0.13 → 0.1.0
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 +56 -0
- package/dist/index.css +4423 -3095
- package/dist/index.min.css +6 -1
- package/package.json +69 -58
- package/src/components/microplan.scss +169 -0
- package/src/components/microplanning.scss +2592 -0
- package/src/index.scss +18 -1059
- package/src/pages/employee/campaign.scss +151 -0
- package/src/pages/employee/campaignCycle.scss +331 -0
- package/src/pages/employee/coreOverride.scss +188 -0
- package/src/pages/employee/facility.scss +3 -0
- package/src/pages/employee/formulaConfig.scss +30 -0
- package/src/pages/employee/hcmworkbench.scss +225 -0
- package/src/pages/employee/index.scss +1150 -539
- package/src/pages/employee/microplanInbox.scss +5 -0
- package/src/pages/employee/villageView.scss +59 -0
- package/src/typography.scss +512 -0
- package/src/components/attendencetable.scss +0 -112
- package/src/components/button.scss +0 -50
- package/src/components/datatable.scss +0 -114
- package/src/components/filters.scss +0 -111
- package/src/components/radiobtn.scss +0 -61
- package/src/components/table.scss +0 -422
- package/src/components/uploadcomponents.scss +0 -103
- package/src/pages/employee/dss.scss +0 -637
- package/src/pages/works/InboxLinks.scss +0 -53
- package/src/pages/works/horizontalNav.scss +0 -149
- package/src/pages/works/inboxSearch.scss +0 -104
- package/src/pages/works/inboxSearchComposer.scss +0 -99
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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.1.0/dist/index.css" />
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
### Changelog
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
|
|
44
|
+
0.1.0 Base version
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
## Contributors
|
|
48
|
+
|
|
49
|
+
[jagankumar-egov] [nipunarora-eGov] [nabeelmd-eGov] [Bhavya-eGov]
|
|
50
|
+
|
|
51
|
+
### Published from DIGIT Frontend
|
|
52
|
+
DIGIT Frontend Repo (https://github.com/egovernments/Digit-Frontend/tree/develop)
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT © [jagankumar-egov](https://github.com/jagankumar-egov)
|