Skip to content

Commit

Permalink
ui changes and validations for boundary added (#2175)
Browse files Browse the repository at this point in the history
  • Loading branch information
suryansh-egov authored Jan 29, 2025
1 parent c692a06 commit 7573213
Show file tree
Hide file tree
Showing 7 changed files with 222 additions and 196 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<title>DIGIT</title>
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css@1.8.12/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-components-css@0.0.2-beta.44/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-health-css@0.2.41/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-health-css@0.2.42/dist/index.css" />


<!-- added below css for hcm-workbench module inclusion-->
<!-- <link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css@1.5.41/dist/index.css" /> -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egovernments/digit-ui-health-css",
"version": "0.2.41",
"version": "0.2.42",
"license": "MIT",
"main": "dist/index.css",
"author": "Jagankumar <jagan.kumar@egov.org.in>",
Expand Down Expand Up @@ -66,4 +66,4 @@
"digit-ui",
"css"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
}

.digit-popup-wrapper.custom-pop-up-mapping {
width: fit-content !important;
max-width: 35rem;

.digit-popup-footer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ const AddOrEditMapping = forwardRef(({ schema, dispatch, boundaryHierarchy, all
{
return (
<div style={{ marginBottom: "1rem" }}>
<label>{t("CHOOSE_BOUNDARY_LEVEL")}</label>
<div style={{display:"flex"}}>
<label>{t("CHOOSE_BOUNDARY_LEVEL")}</label>
<span className="mandatory-span">*</span>
</div>
<Dropdown
className="mappingPopUp"
selected={selectedLevel}
Expand All @@ -77,7 +80,10 @@ const AddOrEditMapping = forwardRef(({ schema, dispatch, boundaryHierarchy, all
t={t}
/>
<div style={{height:"1rem"}}></div>
<label>{t("CHOOSE_BOUNDARY")}</label>
<div style={{display:"flex"}}>
<label>{t("CHOOSE_BOUNDARY")}</label>
<span className="mandatory-span">*</span>
</div>
<MultiSelectDropdown
variant="nestedmultiselect"
props={{ className: "data-mapping-dropdown" }}
Expand Down
Loading

0 comments on commit 7573213

Please sign in to comment.