@insforge/react 1.0.0 → 1.0.2-dev.0
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/atoms.cjs +2 -0
- package/dist/atoms.cjs.map +1 -1
- package/dist/atoms.js +2 -0
- package/dist/atoms.js.map +1 -1
- package/dist/components.cjs +6 -12
- package/dist/components.cjs.map +1 -1
- package/dist/components.js +6 -12
- package/dist/components.js.map +1 -1
- package/dist/forms.cjs +2 -0
- package/dist/forms.cjs.map +1 -1
- package/dist/forms.js +2 -0
- package/dist/forms.js.map +1 -1
- package/dist/index.cjs +7 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +2 -0
- package/package.json +2 -2
package/dist/components.js
CHANGED
|
@@ -2549,6 +2549,8 @@ var VerificationCodeInput = styled.input`
|
|
|
2549
2549
|
font-weight: ${theme.fontWeight.semibold};
|
|
2550
2550
|
border: 1px solid ${theme.colors.border};
|
|
2551
2551
|
border-radius: ${theme.radius.sm};
|
|
2552
|
+
background-color: ${theme.colors.bgWhite};
|
|
2553
|
+
color: ${theme.colors.text};
|
|
2552
2554
|
transition: border-color ${theme.transition.base};
|
|
2553
2555
|
font-family: ${theme.fontFamily.manrope};
|
|
2554
2556
|
|
|
@@ -4765,18 +4767,10 @@ function UserButton({ afterSignOutUrl = "/", mode = "simple" }) {
|
|
|
4765
4767
|
]
|
|
4766
4768
|
}
|
|
4767
4769
|
),
|
|
4768
|
-
isOpen && /* @__PURE__ */ jsx(
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
$openUpward: openUpward,
|
|
4773
|
-
$horizontalOffset: horizontalOffset,
|
|
4774
|
-
children: /* @__PURE__ */ jsx(SignOutButton, { afterSignOutUrl, children: /* @__PURE__ */ jsxs(UserButtonMenuItem, { $signout: true, onClick: () => setIsOpen(false), children: [
|
|
4775
|
-
/* @__PURE__ */ jsx(UserButtonMenuItemIcon, { children: /* @__PURE__ */ jsx(LogOut, {}) }),
|
|
4776
|
-
"Sign out"
|
|
4777
|
-
] }) })
|
|
4778
|
-
}
|
|
4779
|
-
)
|
|
4770
|
+
isOpen && /* @__PURE__ */ jsx(UserButtonMenu, { ref: menuRef, $openUpward: openUpward, $horizontalOffset: horizontalOffset, children: /* @__PURE__ */ jsx(SignOutButton, { afterSignOutUrl, children: /* @__PURE__ */ jsxs(UserButtonMenuItem, { $signout: true, onClick: () => setIsOpen(false), children: [
|
|
4771
|
+
/* @__PURE__ */ jsx(UserButtonMenuItemIcon, { children: /* @__PURE__ */ jsx(LogOut, {}) }),
|
|
4772
|
+
"Sign out"
|
|
4773
|
+
] }) }) })
|
|
4780
4774
|
] });
|
|
4781
4775
|
}
|
|
4782
4776
|
function Protect({
|