@orangecheck/auth-client 2.17.0 → 2.17.1
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 +35 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +35 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1872,6 +1872,41 @@ function OcSignIn({
|
|
|
1872
1872
|
children: "That sign-in didn't complete. Please try again."
|
|
1873
1873
|
}
|
|
1874
1874
|
),
|
|
1875
|
+
addMode && /* @__PURE__ */ jsxs(
|
|
1876
|
+
"div",
|
|
1877
|
+
{
|
|
1878
|
+
"data-oc-signin-add-mode": "",
|
|
1879
|
+
style: {
|
|
1880
|
+
marginBottom: 14,
|
|
1881
|
+
padding: "0.6rem 0.75rem",
|
|
1882
|
+
border: "1px solid var(--primary, #f97316)",
|
|
1883
|
+
borderLeftWidth: 3,
|
|
1884
|
+
borderRadius: 4,
|
|
1885
|
+
background: "color-mix(in srgb, var(--primary, #f97316) 8%, transparent)",
|
|
1886
|
+
color: "var(--foreground, #fafafa)",
|
|
1887
|
+
fontFamily: "ui-monospace, SFMono-Regular, monospace",
|
|
1888
|
+
fontSize: 11,
|
|
1889
|
+
lineHeight: 1.6
|
|
1890
|
+
},
|
|
1891
|
+
children: [
|
|
1892
|
+
/* @__PURE__ */ jsx(
|
|
1893
|
+
"strong",
|
|
1894
|
+
{
|
|
1895
|
+
style: {
|
|
1896
|
+
color: "var(--primary, #f97316)",
|
|
1897
|
+
letterSpacing: "0.12em",
|
|
1898
|
+
textTransform: "uppercase",
|
|
1899
|
+
fontSize: 10,
|
|
1900
|
+
display: "block",
|
|
1901
|
+
marginBottom: 3
|
|
1902
|
+
},
|
|
1903
|
+
children: "\xA7 adding another account"
|
|
1904
|
+
}
|
|
1905
|
+
),
|
|
1906
|
+
"Your current OrangeCheck account stays signed in. The new account joins your browser's roster; you can switch between them anytime from the account menu."
|
|
1907
|
+
]
|
|
1908
|
+
}
|
|
1909
|
+
),
|
|
1875
1910
|
bothEnabled && /* @__PURE__ */ jsxs(
|
|
1876
1911
|
"div",
|
|
1877
1912
|
{
|