@egovernments/digit-ui-health-css 0.3.1 → 0.3.3
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/CHANGELOG.md +26 -11
- package/dist/index.css +3680 -833
- package/dist/index.min.css +2 -2
- package/package.json +5 -2
- package/src/components/microplan.scss +28 -0
- package/src/components/microplanning.scss +3 -1
- package/src/index.scss +3 -1
- package/src/pages/employee/campaign.scss +541 -28
- package/src/pages/employee/campaignCommon.scss +345 -0
- package/src/pages/employee/campaignCycle.scss +3 -2
- package/src/pages/employee/coreOverride.scss +39 -6
- package/src/pages/employee/healthdss.scss +1400 -0
- package/src/pages/employee/hrmsupdate.scss +14 -0
- package/src/pages/employee/index.scss +440 -30
- package/src/pages/employee/mapview.scss +36 -0
- package/src/pages/employee/mycampaignsnew.scss +110 -0
- package/src/pages/employee/payment.scss +44 -35
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egovernments/digit-ui-health-css",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.css",
|
|
6
6
|
"author": "Jagankumar <jagan.kumar@egov.org.in>",
|
|
@@ -47,6 +47,9 @@
|
|
|
47
47
|
"postcss-scss": "3.0.5",
|
|
48
48
|
"sass": "^1.26.11"
|
|
49
49
|
},
|
|
50
|
+
"resolutions": {
|
|
51
|
+
"**/minimatch": "7.4.6"
|
|
52
|
+
},
|
|
50
53
|
"files": [
|
|
51
54
|
"dist/index.min.css",
|
|
52
55
|
"dist/index.css",
|
|
@@ -66,4 +69,4 @@
|
|
|
66
69
|
"digit-ui",
|
|
67
70
|
"css"
|
|
68
71
|
]
|
|
69
|
-
}
|
|
72
|
+
}
|
|
@@ -559,4 +559,32 @@ tbody tr:last-child td:last-child .digit-dropdown-employee-select-wrap .digit-dr
|
|
|
559
559
|
flex:1;
|
|
560
560
|
}
|
|
561
561
|
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.my-microplans-action-button+.header-dropdown-container {
|
|
565
|
+
.header-dropdown-menu {
|
|
566
|
+
width: 18.125rem !important;
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.bold-column{
|
|
571
|
+
font-weight: 700;
|
|
572
|
+
width: 9rem;
|
|
573
|
+
margin-top: 0.6rem;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.fieldv1-deleteIcon-container.addColumnsScreen .label-field-wrapper {
|
|
577
|
+
max-width: 37.5rem;
|
|
578
|
+
|
|
579
|
+
.digit-field{
|
|
580
|
+
width: 100%;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.mp-hypothesis-label-field.addColumnsScreen .assumption-label{
|
|
585
|
+
width: 20%;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.new-columns-screen{
|
|
589
|
+
width:37%;
|
|
562
590
|
}
|
|
@@ -2566,6 +2566,7 @@ $border-color: rgba(214, 213, 212, 1);
|
|
|
2566
2566
|
cursor: pointer;
|
|
2567
2567
|
margin-left: 1rem;
|
|
2568
2568
|
font-size: 1.2rem;
|
|
2569
|
+
width:10rem;
|
|
2569
2570
|
}
|
|
2570
2571
|
|
|
2571
2572
|
.fieldv1-deleteIcon-container {
|
|
@@ -2816,4 +2817,5 @@ $border-color: rgba(214, 213, 212, 1);
|
|
|
2816
2817
|
|
|
2817
2818
|
.digit-popup-alert-message{
|
|
2818
2819
|
line-height: normal !important;
|
|
2819
|
-
}
|
|
2820
|
+
}
|
|
2821
|
+
|
package/src/index.scss
CHANGED
|
@@ -18,4 +18,6 @@
|
|
|
18
18
|
@import "./pages/employee/fetchFromMicroplan.scss";
|
|
19
19
|
@import "./pages/employee/checklist.scss";
|
|
20
20
|
@import "./pages/employee/mapview.scss";
|
|
21
|
-
@import "./pages/employee/payment.scss";
|
|
21
|
+
@import "./pages/employee/payment.scss";
|
|
22
|
+
@import "./pages/employee/healthdss.scss";
|
|
23
|
+
@import "./pages/employee/mycampaignsnew.scss";
|