@telicent-oss/ds 0.27.5 → 0.27.6
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/ds.js +7 -1
- package/dist/ds.umd.cjs +7 -1
- package/dist/logout-syncer/sw.js +1 -1
- package/package.json +1 -1
package/dist/ds.js
CHANGED
|
@@ -80523,6 +80523,9 @@ const AuthModal = ({
|
|
|
80523
80523
|
});
|
|
80524
80524
|
return unsubscribe;
|
|
80525
80525
|
}, []);
|
|
80526
|
+
const handleCloseClick = () => {
|
|
80527
|
+
setIsOpen(false);
|
|
80528
|
+
};
|
|
80526
80529
|
return /* @__PURE__ */ jsx$1(Modal2, { hideCloseButton: true, onClose: () => {
|
|
80527
80530
|
}, sx: {
|
|
80528
80531
|
m: 2,
|
|
@@ -80542,7 +80545,10 @@ const AuthModal = ({
|
|
|
80542
80545
|
/* @__PURE__ */ jsx$1(Text, { sx: {
|
|
80543
80546
|
pt: 4
|
|
80544
80547
|
}, children: "If you continue to have issues, contact your system administrator." }),
|
|
80545
|
-
/* @__PURE__ */
|
|
80548
|
+
/* @__PURE__ */ jsxs(FlexBox, { ml: "auto", mt: 2, gap: 1, direction: "row", children: [
|
|
80549
|
+
/* @__PURE__ */ jsx$1(Button2, { variant: "secondary", disableElevation: true, onClick: handleCloseClick, size: "large", children: "Close" }),
|
|
80550
|
+
/* @__PURE__ */ jsx$1(Button2, { variant: "primary", onClick: handleLoginClick, size: "large", children: "Login" })
|
|
80551
|
+
] })
|
|
80546
80552
|
] }) });
|
|
80547
80553
|
};
|
|
80548
80554
|
const registerAuthSync = (queryClient2) => onAuthEvent((event) => {
|
package/dist/ds.umd.cjs
CHANGED
|
@@ -80541,6 +80541,9 @@ uniform ${i3} ${s4} u_${a3};
|
|
|
80541
80541
|
});
|
|
80542
80542
|
return unsubscribe;
|
|
80543
80543
|
}, []);
|
|
80544
|
+
const handleCloseClick = () => {
|
|
80545
|
+
setIsOpen(false);
|
|
80546
|
+
};
|
|
80544
80547
|
return /* @__PURE__ */ jsx$1(Modal, { hideCloseButton: true, onClose: () => {
|
|
80545
80548
|
}, sx: {
|
|
80546
80549
|
m: 2,
|
|
@@ -80560,7 +80563,10 @@ uniform ${i3} ${s4} u_${a3};
|
|
|
80560
80563
|
/* @__PURE__ */ jsx$1(Text, { sx: {
|
|
80561
80564
|
pt: 4
|
|
80562
80565
|
}, children: "If you continue to have issues, contact your system administrator." }),
|
|
80563
|
-
/* @__PURE__ */
|
|
80566
|
+
/* @__PURE__ */ jsxs(FlexBox, { ml: "auto", mt: 2, gap: 1, direction: "row", children: [
|
|
80567
|
+
/* @__PURE__ */ jsx$1(Button, { variant: "secondary", disableElevation: true, onClick: handleCloseClick, size: "large", children: "Close" }),
|
|
80568
|
+
/* @__PURE__ */ jsx$1(Button, { variant: "primary", onClick: handleLoginClick, size: "large", children: "Login" })
|
|
80569
|
+
] })
|
|
80564
80570
|
] }) });
|
|
80565
80571
|
};
|
|
80566
80572
|
const registerAuthSync = (queryClient2) => onAuthEvent((event) => {
|
package/dist/logout-syncer/sw.js
CHANGED