akeyless-client-commons 1.0.216 → 1.0.218
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/components/index.js
CHANGED
|
@@ -855,7 +855,7 @@ var getUserByEmail = /*#__PURE__*/ function() {
|
|
|
855
855
|
case 0:
|
|
856
856
|
return [
|
|
857
857
|
4,
|
|
858
|
-
query_document("nx-users", "email", "==", email, true)
|
|
858
|
+
query_document("nx-users", "email", "==", email.toLowerCase(), true)
|
|
859
859
|
];
|
|
860
860
|
case 1:
|
|
861
861
|
return [
|
|
@@ -1791,7 +1791,7 @@ var TableProvider = function(props) {
|
|
|
1791
1791
|
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TableContext.Provider, {
|
|
1792
1792
|
value: providerValues,
|
|
1793
1793
|
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", {
|
|
1794
|
-
className: cn("flex flex-col
|
|
1794
|
+
className: cn("flex flex-col w-full h-full", containerClassName),
|
|
1795
1795
|
style: _object_spread_props(_object_spread({}, containerStyle), {
|
|
1796
1796
|
direction: direction
|
|
1797
1797
|
}),
|
|
@@ -640,7 +640,7 @@ var getUserByEmail = /*#__PURE__*/ function() {
|
|
|
640
640
|
case 0:
|
|
641
641
|
return [
|
|
642
642
|
4,
|
|
643
|
-
query_document("nx-users", "email", "==", email, true)
|
|
643
|
+
query_document("nx-users", "email", "==", email.toLowerCase(), true)
|
|
644
644
|
];
|
|
645
645
|
case 1:
|
|
646
646
|
return [
|
|
@@ -1575,7 +1575,7 @@ var TableProvider = function(props) {
|
|
|
1575
1575
|
return /* @__PURE__ */ jsx7(TableContext.Provider, {
|
|
1576
1576
|
value: providerValues,
|
|
1577
1577
|
children: /* @__PURE__ */ jsx7("div", {
|
|
1578
|
-
className: cn("flex flex-col
|
|
1578
|
+
className: cn("flex flex-col w-full h-full", containerClassName),
|
|
1579
1579
|
style: _object_spread_props(_object_spread({}, containerStyle), {
|
|
1580
1580
|
direction: direction
|
|
1581
1581
|
}),
|
package/dist/helpers/index.js
CHANGED
|
@@ -1657,7 +1657,7 @@ var getUserByEmail = /*#__PURE__*/ function() {
|
|
|
1657
1657
|
case 0:
|
|
1658
1658
|
return [
|
|
1659
1659
|
4,
|
|
1660
|
-
query_document("nx-users", "email", "==", email, true)
|
|
1660
|
+
query_document("nx-users", "email", "==", email.toLowerCase(), true)
|
|
1661
1661
|
];
|
|
1662
1662
|
case 1:
|
|
1663
1663
|
return [
|
package/dist/helpers/index.mjs
CHANGED
|
@@ -1309,7 +1309,7 @@ var getUserByEmail = /*#__PURE__*/ function() {
|
|
|
1309
1309
|
case 0:
|
|
1310
1310
|
return [
|
|
1311
1311
|
4,
|
|
1312
|
-
query_document("nx-users", "email", "==", email, true)
|
|
1312
|
+
query_document("nx-users", "email", "==", email.toLowerCase(), true)
|
|
1313
1313
|
];
|
|
1314
1314
|
case 1:
|
|
1315
1315
|
return [
|