@doujins/payments-ui 0.1.11 → 0.1.12
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.cjs +15 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -542,7 +542,7 @@ var Input = React15__namespace.forwardRef(
|
|
|
542
542
|
{
|
|
543
543
|
type,
|
|
544
544
|
className: cn(
|
|
545
|
-
"flex h-
|
|
545
|
+
"placeholder:text-white/30 flex h-9 w-full rounded-md border border-white/30 bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium font-light file:text-foreground text-foreground focus:outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
|
546
546
|
className
|
|
547
547
|
),
|
|
548
548
|
ref,
|
|
@@ -553,7 +553,7 @@ var Input = React15__namespace.forwardRef(
|
|
|
553
553
|
);
|
|
554
554
|
Input.displayName = "Input";
|
|
555
555
|
var labelVariants = classVarianceAuthority.cva(
|
|
556
|
-
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
556
|
+
"text-sm font-medium leading-none text-foreground peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
557
557
|
);
|
|
558
558
|
var Label = React15__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
559
559
|
LabelPrimitive__namespace.Root,
|
|
@@ -571,7 +571,7 @@ var SelectTrigger = React15__namespace.forwardRef(({ className, children, ...pro
|
|
|
571
571
|
{
|
|
572
572
|
ref,
|
|
573
573
|
className: cn(
|
|
574
|
-
"flex h-
|
|
574
|
+
"flex h-9 w-full cursor-pointer items-center justify-between rounded-md border border-white/30 bg-transparent px-3 py-1 text-sm placeholder:text-white/30 focus:outline-none disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1 [&>span]:text-current",
|
|
575
575
|
className
|
|
576
576
|
),
|
|
577
577
|
...props,
|
|
@@ -613,7 +613,7 @@ var SelectContent = React15__namespace.forwardRef(({ className, children, positi
|
|
|
613
613
|
{
|
|
614
614
|
ref,
|
|
615
615
|
className: cn(
|
|
616
|
-
"relative z-
|
|
616
|
+
"relative z-[200] max-h-64 min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border border-white/20 bg-background-regular text-foreground shadow-lg backdrop-blur-xl data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-select-content-transform-origin]",
|
|
617
617
|
position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
|
618
618
|
className
|
|
619
619
|
),
|
|
@@ -650,13 +650,13 @@ var SelectItem = React15__namespace.forwardRef(({ className, children, ...props
|
|
|
650
650
|
{
|
|
651
651
|
ref,
|
|
652
652
|
className: cn(
|
|
653
|
-
"relative flex w-full cursor-
|
|
653
|
+
"relative flex w-full cursor-pointer select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none hover:bg-foreground/10 focus:bg-foreground/10 data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
654
654
|
className
|
|
655
655
|
),
|
|
656
656
|
...props,
|
|
657
657
|
children: [
|
|
658
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
659
|
-
/* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.
|
|
658
|
+
/* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemText, { children }),
|
|
659
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Check, { className: "h-4 w-4" }) }) })
|
|
660
660
|
]
|
|
661
661
|
}
|
|
662
662
|
));
|
|
@@ -847,7 +847,8 @@ var CardDetailsForm = ({
|
|
|
847
847
|
visible
|
|
848
848
|
]);
|
|
849
849
|
const validate = () => {
|
|
850
|
-
|
|
850
|
+
const emailRequired = !defaultValues?.email && !config.defaultUser?.email;
|
|
851
|
+
if (!firstName.trim() || !lastName.trim() || !address1.trim() || !city.trim() || !postalCode.trim() || !country.trim() || emailRequired && !email.trim()) {
|
|
851
852
|
setLocalError("Please complete all required billing fields.");
|
|
852
853
|
return false;
|
|
853
854
|
}
|
|
@@ -865,7 +866,8 @@ var CardDetailsForm = ({
|
|
|
865
866
|
window.CollectJS.startPaymentRequest();
|
|
866
867
|
};
|
|
867
868
|
const errorMessage = localError ?? externalError;
|
|
868
|
-
const collectFieldClass = "relative flex h-
|
|
869
|
+
const collectFieldClass = "relative flex h-9 w-full items-center overflow-hidden rounded-md border border-white/30 bg-transparent px-3 text-sm text-foreground";
|
|
870
|
+
const showEmailField = !defaultValues?.email && !config.defaultUser?.email;
|
|
869
871
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
870
872
|
"form",
|
|
871
873
|
{
|
|
@@ -900,7 +902,7 @@ var CardDetailsForm = ({
|
|
|
900
902
|
)
|
|
901
903
|
] })
|
|
902
904
|
] }),
|
|
903
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-2", children: [
|
|
905
|
+
showEmailField && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-2", children: [
|
|
904
906
|
/* @__PURE__ */ jsxRuntime.jsx(Label, { htmlFor: "email", children: "Email" }),
|
|
905
907
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
906
908
|
Input,
|
|
@@ -989,7 +991,7 @@ var CardDetailsForm = ({
|
|
|
989
991
|
Button,
|
|
990
992
|
{
|
|
991
993
|
type: "submit",
|
|
992
|
-
className: "w-full",
|
|
994
|
+
className: "w-full border-0 bg-emerald-600 text-white hover:bg-emerald-500 disabled:opacity-50",
|
|
993
995
|
disabled: submitting || submitDisabled || isTokenizing,
|
|
994
996
|
children: submitting || isTokenizing ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
995
997
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Loader2, { className: "mr-2 h-4 w-4 animate-spin" }),
|
|
@@ -2287,7 +2289,7 @@ var SubscriptionCheckoutModal = ({
|
|
|
2287
2289
|
/* @__PURE__ */ jsxRuntime.jsx(Dialog, { open, onOpenChange: handleClose, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2288
2290
|
DialogContent,
|
|
2289
2291
|
{
|
|
2290
|
-
className: "z-[100] max-w-
|
|
2292
|
+
className: "z-[100] max-w-xl max-h-[90vh] overflow-y-auto border border-white/20 p-6 backdrop-blur-xl bg-background-regular rounded-md [&::-webkit-scrollbar]:hidden",
|
|
2291
2293
|
children: [
|
|
2292
2294
|
/* @__PURE__ */ jsxRuntime.jsx(DialogHeader, { children: /* @__PURE__ */ jsxRuntime.jsx(DialogTitle, { className: "flex items-center gap-2 text-foreground", children: "Checkout" }) }),
|
|
2293
2295
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-4", children: !priceId ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 text-center px-3 py-2 text-sm text-destructive", children: [
|
|
@@ -3204,7 +3206,7 @@ var PaymentMethodsSection = ({
|
|
|
3204
3206
|
/* @__PURE__ */ jsxRuntime.jsx(Dialog, { open: isModalOpen, onOpenChange: setIsModalOpen, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3205
3207
|
DialogContent,
|
|
3206
3208
|
{
|
|
3207
|
-
className: "z-[100] max-w-
|
|
3209
|
+
className: "z-[100] max-w-xl max-h-[90vh] overflow-y-auto border border-white/20 p-6 backdrop-blur-xl bg-background-regular rounded-md [&::-webkit-scrollbar]:hidden",
|
|
3208
3210
|
children: [
|
|
3209
3211
|
/* @__PURE__ */ jsxRuntime.jsxs(DialogHeader, { children: [
|
|
3210
3212
|
/* @__PURE__ */ jsxRuntime.jsx(DialogTitle, { className: "flex items-center gap-2 text-foreground", children: t.addNewCard }),
|