@djb25/digit-ui-module-ekyc 1.0.36 → 1.0.38
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/dist/index.js +6 -20
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -20
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5145,7 +5145,7 @@ const AssignEkycModal = _ref => {
|
|
|
5145
5145
|
}, isZroLoading ? "Loading ZRO Locations..." : "Select ZRO Location"), mappedZROLocation.map(loc => /*#__PURE__*/React__default.createElement("option", {
|
|
5146
5146
|
key: loc.code,
|
|
5147
5147
|
value: loc.name
|
|
5148
|
-
}, loc.name))
|
|
5148
|
+
}, loc.name))), /*#__PURE__*/React__default.createElement("select", {
|
|
5149
5149
|
className: "form-control",
|
|
5150
5150
|
value: filters.ward,
|
|
5151
5151
|
onChange: e => handleFilterChange("ward", e.target.value)
|
|
@@ -5168,19 +5168,11 @@ const AssignEkycModal = _ref => {
|
|
|
5168
5168
|
placeholder: "MR Key",
|
|
5169
5169
|
value: filters.mrkey,
|
|
5170
5170
|
onChange: e => handleFilterChange("mrkey", e.target.value)
|
|
5171
|
-
}), /*#__PURE__*/React__default.createElement("
|
|
5172
|
-
className: "
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
5176
|
-
value: ""
|
|
5177
|
-
}, "All eKYC Status"), /*#__PURE__*/React__default.createElement("option", {
|
|
5178
|
-
value: "PENDING"
|
|
5179
|
-
}, "Pending"), /*#__PURE__*/React__default.createElement("option", {
|
|
5180
|
-
value: "APPROVED"
|
|
5181
|
-
}, "Approved"), /*#__PURE__*/React__default.createElement("option", {
|
|
5182
|
-
value: "REJECTED"
|
|
5183
|
-
}, "Rejected"))), /*#__PURE__*/React__default.createElement(digitUiReactComponents.Table, {
|
|
5171
|
+
}), selectedKnos.length > 0 && /*#__PURE__*/React__default.createElement("button", {
|
|
5172
|
+
className: "clear-selected-btn",
|
|
5173
|
+
type: "button",
|
|
5174
|
+
onClick: () => setSelectedKnos([])
|
|
5175
|
+
}, t("EKYC_CLEAR_SELECTION") || "Clear Selected (" + selectedKnos.length + ")")), /*#__PURE__*/React__default.createElement(digitUiReactComponents.Table, {
|
|
5184
5176
|
tableTitle: "eKYC Applications",
|
|
5185
5177
|
tableClass: "ekycTable",
|
|
5186
5178
|
data: tableData,
|
|
@@ -7481,12 +7473,6 @@ const Home = () => {
|
|
|
7481
7473
|
}
|
|
7482
7474
|
if (roles.length === 1 && roles.includes("CITIZEN")) {
|
|
7483
7475
|
propsForModuleCard.links.push({
|
|
7484
|
-
label: t("EKYC_CREATE_KYC"),
|
|
7485
|
-
link: "/digit-ui/citizen/ekyc/create-kyc"
|
|
7486
|
-
}, {
|
|
7487
|
-
label: t("EKYC_UPDATE_KYC"),
|
|
7488
|
-
link: "/digit-ui/citizen/ekyc/update-kyc"
|
|
7489
|
-
}, {
|
|
7490
7476
|
label: t("EKYC_STATUS"),
|
|
7491
7477
|
link: "/digit-ui/citizen/ekyc/:id"
|
|
7492
7478
|
});
|