hplx-react-elements-dev 1.0.55 → 1.0.56
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/esm/index.js +11 -8
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -2449,15 +2449,18 @@ var InputField = function InputField(_a) {
|
|
|
2449
2449
|
}))
|
|
2450
2450
|
})), showEmailSuggestions && // This div displays a dropdown of email provider options
|
|
2451
2451
|
jsxRuntime.exports.jsx("div", __assign({
|
|
2452
|
-
className: "hplxt-absolute hplxt-
|
|
2452
|
+
className: "hplxt-absolute ".concat(showEmailDropdown ? "hplxt-block" : "hplxt-hidden", " hplxt-mt-1 hplxt-min-w-max hplxt-rounded-lg hplxt-border hplxt-border-Blue_gray-200 hplxt-bg-White hplxt-overflow-y-scroll hplxt-shadow-md hplxt-z-10 hplxt-max-h-72 ")
|
|
2453
2453
|
}, {
|
|
2454
|
-
children:
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2454
|
+
children: jsxRuntime.exports.jsx("div", {
|
|
2455
|
+
children: emailProviders === null || emailProviders === void 0 ? void 0 : emailProviders.map(function (option) {
|
|
2456
|
+
return jsxRuntime.exports.jsx(DropdownItems, {
|
|
2457
|
+
className: "hplxt-text-Primary-700",
|
|
2458
|
+
label: option,
|
|
2459
|
+
onSelect: function onSelect() {
|
|
2460
|
+
handleEmailProviderSelection(option);
|
|
2461
|
+
}
|
|
2462
|
+
}, option);
|
|
2463
|
+
})
|
|
2461
2464
|
})
|
|
2462
2465
|
})), (Boolean(hint_text) || Boolean(errorMsg)) && jsxRuntime.exports.jsx("div", __assign({
|
|
2463
2466
|
className: "".concat(errorMsg ? "hplxt-text-Error-500" : "hplxt-text-Gray-500 hplxt-mt-1")
|