@medialane/ui 0.126.5 → 0.126.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.
|
@@ -31,25 +31,24 @@ function EmailVerificationGate({
|
|
|
31
31
|
settingsHref,
|
|
32
32
|
className
|
|
33
33
|
}) {
|
|
34
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
]
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
] });
|
|
34
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
35
|
+
"a",
|
|
36
|
+
{
|
|
37
|
+
href: settingsHref,
|
|
38
|
+
className: (0, import_cn.cn)(
|
|
39
|
+
"ml-gbtn col-span-2 mb-3 flex h-[54px] items-center justify-center gap-2 rounded-[13px] bg-transparent px-5 font-semibold transition-transform active:scale-[0.99]",
|
|
40
|
+
className
|
|
41
|
+
),
|
|
42
|
+
style: { "--ml-grad": BRAND_LOOP },
|
|
43
|
+
children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Mail, { className: "h-4 w-4 shrink-0 text-brand-orange" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("span", { className: "truncate text-base", children: [
|
|
46
|
+
"Verify email to ",
|
|
47
|
+
reason
|
|
48
|
+
] })
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
);
|
|
53
52
|
}
|
|
54
53
|
// Annotate the CommonJS export names for ESM import in node:
|
|
55
54
|
0 && (module.exports = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/email-verification-gate.tsx"],"sourcesContent":["\"use client\";\n\nimport { Mail
|
|
1
|
+
{"version":3,"sources":["../../src/components/email-verification-gate.tsx"],"sourcesContent":["\"use client\";\n\nimport { Mail } from \"lucide-react\";\nimport { cn } from \"../utils/cn.js\";\n\nexport interface EmailVerificationGateProps {\n reason: string;\n settingsHref: string;\n className?: string;\n}\n\nconst BRAND_LOOP = \"linear-gradient(270deg, #3b7bff, #8a5cf6, #f6608f, #fb8b46, #3b7bff)\";\n\nexport function EmailVerificationGate({\n reason,\n settingsHref,\n className,\n}: EmailVerificationGateProps) {\n return (\n <a\n href={settingsHref}\n className={cn(\n \"ml-gbtn col-span-2 mb-3 flex h-[54px] items-center justify-center gap-2 rounded-[13px] bg-transparent px-5 font-semibold transition-transform active:scale-[0.99]\",\n className,\n )}\n style={{ '--ml-grad': BRAND_LOOP } as React.CSSProperties}\n >\n <Mail className=\"h-4 w-4 shrink-0 text-brand-orange\" />\n <span className=\"truncate text-base\">Verify email to {reason}</span>\n </a>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AA2BM;AAzBN,0BAAqB;AACrB,gBAAmB;AAQnB,MAAM,aAAa;AAEZ,SAAS,sBAAsB;AAAA,EACpC;AAAA,EACA;AAAA,EACA;AACF,GAA+B;AAC7B,SACE;AAAA,IAAC;AAAA;AAAA,MACC,MAAM;AAAA,MACN,eAAW;AAAA,QACT;AAAA,QACA;AAAA,MACF;AAAA,MACA,OAAO,EAAE,aAAa,WAAW;AAAA,MAEjC;AAAA,oDAAC,4BAAK,WAAU,sCAAqC;AAAA,QACrD,6CAAC,UAAK,WAAU,sBAAqB;AAAA;AAAA,UAAiB;AAAA,WAAO;AAAA;AAAA;AAAA,EAC/D;AAEJ;","names":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
import { Mail
|
|
3
|
+
import { Mail } from "lucide-react";
|
|
4
4
|
import { cn } from "../utils/cn.js";
|
|
5
5
|
const BRAND_LOOP = "linear-gradient(270deg, #3b7bff, #8a5cf6, #f6608f, #fb8b46, #3b7bff)";
|
|
6
6
|
function EmailVerificationGate({
|
|
@@ -8,25 +8,24 @@ function EmailVerificationGate({
|
|
|
8
8
|
settingsHref,
|
|
9
9
|
className
|
|
10
10
|
}) {
|
|
11
|
-
return /* @__PURE__ */ jsxs(
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
]
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
] });
|
|
11
|
+
return /* @__PURE__ */ jsxs(
|
|
12
|
+
"a",
|
|
13
|
+
{
|
|
14
|
+
href: settingsHref,
|
|
15
|
+
className: cn(
|
|
16
|
+
"ml-gbtn col-span-2 mb-3 flex h-[54px] items-center justify-center gap-2 rounded-[13px] bg-transparent px-5 font-semibold transition-transform active:scale-[0.99]",
|
|
17
|
+
className
|
|
18
|
+
),
|
|
19
|
+
style: { "--ml-grad": BRAND_LOOP },
|
|
20
|
+
children: [
|
|
21
|
+
/* @__PURE__ */ jsx(Mail, { className: "h-4 w-4 shrink-0 text-brand-orange" }),
|
|
22
|
+
/* @__PURE__ */ jsxs("span", { className: "truncate text-base", children: [
|
|
23
|
+
"Verify email to ",
|
|
24
|
+
reason
|
|
25
|
+
] })
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
);
|
|
30
29
|
}
|
|
31
30
|
export {
|
|
32
31
|
EmailVerificationGate
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/email-verification-gate.tsx"],"sourcesContent":["\"use client\";\n\nimport { Mail
|
|
1
|
+
{"version":3,"sources":["../../src/components/email-verification-gate.tsx"],"sourcesContent":["\"use client\";\n\nimport { Mail } from \"lucide-react\";\nimport { cn } from \"../utils/cn.js\";\n\nexport interface EmailVerificationGateProps {\n reason: string;\n settingsHref: string;\n className?: string;\n}\n\nconst BRAND_LOOP = \"linear-gradient(270deg, #3b7bff, #8a5cf6, #f6608f, #fb8b46, #3b7bff)\";\n\nexport function EmailVerificationGate({\n reason,\n settingsHref,\n className,\n}: EmailVerificationGateProps) {\n return (\n <a\n href={settingsHref}\n className={cn(\n \"ml-gbtn col-span-2 mb-3 flex h-[54px] items-center justify-center gap-2 rounded-[13px] bg-transparent px-5 font-semibold transition-transform active:scale-[0.99]\",\n className,\n )}\n style={{ '--ml-grad': BRAND_LOOP } as React.CSSProperties}\n >\n <Mail className=\"h-4 w-4 shrink-0 text-brand-orange\" />\n <span className=\"truncate text-base\">Verify email to {reason}</span>\n </a>\n );\n}\n"],"mappings":";AA2BM,cACA,YADA;AAzBN,SAAS,YAAY;AACrB,SAAS,UAAU;AAQnB,MAAM,aAAa;AAEZ,SAAS,sBAAsB;AAAA,EACpC;AAAA,EACA;AAAA,EACA;AACF,GAA+B;AAC7B,SACE;AAAA,IAAC;AAAA;AAAA,MACC,MAAM;AAAA,MACN,WAAW;AAAA,QACT;AAAA,QACA;AAAA,MACF;AAAA,MACA,OAAO,EAAE,aAAa,WAAW;AAAA,MAEjC;AAAA,4BAAC,QAAK,WAAU,sCAAqC;AAAA,QACrD,qBAAC,UAAK,WAAU,sBAAqB;AAAA;AAAA,UAAiB;AAAA,WAAO;AAAA;AAAA;AAAA,EAC/D;AAEJ;","names":[]}
|