@opexa/portal-components 0.0.947 → 0.0.949

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.
Files changed (51) hide show
  1. package/dist/components/DepositWithdrawal/Deposit/Deposit.js +9 -6
  2. package/dist/components/DepositWithdrawal/Deposit/OnlineBankDeposit/OnlineBankDepositContext.d.ts +2 -2
  3. package/dist/components/DepositWithdrawal/Deposit/OnlineBankDeposit/useOnlineBankDeposit.d.ts +1 -1
  4. package/dist/components/DepositWithdrawal/DepositWithdrawal.lazy.d.ts +1 -0
  5. package/dist/components/DepositWithdrawal/DepositWithdrawal.lazy.js +2 -1
  6. package/dist/components/Disclaimer/DisclaimerV3.js +2 -2
  7. package/dist/handlers/index.d.ts +2 -2
  8. package/dist/schemas/forgotPasswordSchema.d.ts +4 -4
  9. package/dist/ui/AlertDialog/AlertDialog.d.ts +154 -154
  10. package/dist/ui/AlertDialog/alertDialog.recipe.d.ts +14 -14
  11. package/dist/ui/Badge/Badge.d.ts +12 -12
  12. package/dist/ui/Badge/badge.anatomy.d.ts +1 -1
  13. package/dist/ui/Badge/badge.recipe.d.ts +3 -3
  14. package/dist/ui/Carousel/Carousel.d.ts +72 -72
  15. package/dist/ui/Carousel/carousel.recipe.d.ts +8 -8
  16. package/dist/ui/Checkbox/Checkbox.d.ts +23 -23
  17. package/dist/ui/Checkbox/checkbox.recipe.d.ts +3 -3
  18. package/dist/ui/Clipboard/Clipboard.d.ts +18 -18
  19. package/dist/ui/Clipboard/clipboard.recipe.d.ts +3 -3
  20. package/dist/ui/Collapsible/Collapsible.d.ts +20 -20
  21. package/dist/ui/Collapsible/collapsible.recipe.d.ts +5 -5
  22. package/dist/ui/Combobox/Combobox.d.ts +42 -42
  23. package/dist/ui/Combobox/combobox.recipe.d.ts +3 -3
  24. package/dist/ui/DatePicker/DatePicker.d.ts +72 -72
  25. package/dist/ui/DatePicker/datePicker.recipe.d.ts +3 -3
  26. package/dist/ui/Dialog/Dialog.d.ts +33 -33
  27. package/dist/ui/Dialog/dialog.recipe.d.ts +3 -3
  28. package/dist/ui/Drawer/Drawer.d.ts +33 -33
  29. package/dist/ui/Drawer/drawer.recipe.d.ts +3 -3
  30. package/dist/ui/Menu/Menu.d.ts +198 -198
  31. package/dist/ui/Menu/menu.recipe.d.ts +11 -11
  32. package/dist/ui/Popover/Popover.d.ts +88 -88
  33. package/dist/ui/Popover/popover.recipe.d.ts +8 -8
  34. package/dist/ui/QrCode/QrCode.d.ts +25 -25
  35. package/dist/ui/QrCode/qrCode.recipe.d.ts +5 -5
  36. package/dist/ui/Select/Select.d.ts +45 -45
  37. package/dist/ui/Select/select.recipe.d.ts +3 -3
  38. package/dist/ui/Table/Table.d.ts +21 -21
  39. package/dist/ui/Table/table.anatomy.d.ts +1 -1
  40. package/dist/ui/Table/table.recipe.d.ts +3 -3
  41. package/dist/ui/Tabs/Tabs.d.ts +15 -15
  42. package/dist/ui/Tabs/tabs.recipe.d.ts +3 -3
  43. package/package.json +1 -1
  44. package/dist/client/hooks/useVerifyMobileNumber.d.ts +0 -3
  45. package/dist/client/hooks/useVerifyMobileNumber.js +0 -20
  46. package/dist/components/DepositWithdrawal/Deposit/AurixPayPayMayaDeposit/AurixPayGrabPayDeposit.d.ts +0 -1
  47. package/dist/components/DepositWithdrawal/Deposit/AurixPayPayMayaDeposit/AurixPayGrabPayDeposit.js +0 -241
  48. package/dist/components/SingleSignOn/SingleSignOn.d.ts +0 -4
  49. package/dist/components/SingleSignOn/SingleSignOn.js +0 -185
  50. package/dist/components/SingleSignOn/index.d.ts +0 -1
  51. package/dist/components/SingleSignOn/index.js +0 -1
@@ -7,6 +7,7 @@ import { usePaymentSettingsQuery } from '../../../client/hooks/usePaymentSetting
7
7
  import { AlertCircleIcon } from '../../../icons/AlertCircleIcon.js';
8
8
  import { SpinnerIcon } from '../../../icons/SpinnerIcon.js';
9
9
  import { onMobileDevice } from '../../../utils/onMobileDevice.js';
10
+ import { useDepositWithdrawalPropsContext } from '../DepositWithdrawalContext.js';
10
11
  import { PaymentMethods } from '../PaymentMethods.js';
11
12
  import { Voucher } from './Voucher/Voucher.js';
12
13
  const QRPHDeposit = lazy(() => import('./QRPHDeposit/QRPHDeposit.js').then((m) => ({ default: m.QRPHDeposit })));
@@ -49,6 +50,7 @@ export function Deposit() {
49
50
  const paymentSettingsQuery = usePaymentSettingsQuery();
50
51
  const paymentSettings = paymentSettingsQuery.data;
51
52
  const featureFlag = useFeatureFlag();
53
+ const { isOfWinSite } = useDepositWithdrawalPropsContext();
52
54
  const aurixComponents = useMemo(() => {
53
55
  return {
54
56
  gcash: lazy(() => import('./AurixPayGCashDeposit/AurixPayGCashDeposit.js').then((m) => ({
@@ -73,26 +75,27 @@ export function Deposit() {
73
75
  }
74
76
  const isMobile = onMobileDevice();
75
77
  const enabledKey = isMobile ? 'mobileWebEnabled' : 'webEnabled';
78
+ const isOfWinSiteDepositEnabled = isOfWinSite && featureFlag.enabled;
76
79
  const paymentMethods = [
77
80
  {
78
81
  method: 'GCASH',
79
82
  enabled: paymentSettings?.gcashDepositGatewaySettings?.[enabledKey] &&
80
- featureFlag.enabled,
83
+ isOfWinSiteDepositEnabled,
81
84
  },
82
85
  {
83
86
  method: 'MAYA',
84
87
  enabled: paymentSettings?.mayaDepositGatewaySettings?.[enabledKey] &&
85
- featureFlag.enabled,
88
+ isOfWinSiteDepositEnabled,
86
89
  },
87
90
  {
88
91
  method: 'QRPH',
89
92
  enabled: paymentSettings?.qrphDepositGatewaySettings?.[enabledKey] &&
90
- featureFlag.enabled,
93
+ isOfWinSiteDepositEnabled,
91
94
  },
92
95
  {
93
96
  method: 'ONLINE_BANK',
94
97
  enabled: paymentSettings?.onlineBankDepositGatewaySettings?.[enabledKey] &&
95
- featureFlag.enabled,
98
+ isOfWinSiteDepositEnabled,
96
99
  },
97
100
  {
98
101
  method: 'LIBANGAN_PAY_IN',
@@ -149,7 +152,7 @@ export function Deposit() {
149
152
  {
150
153
  method: 'VOUCHER',
151
154
  enabled: featureFlag.enabled,
152
- }
155
+ },
153
156
  ];
154
157
  paymentMethods.forEach((o) => {
155
158
  if (o.enabled) {
@@ -157,7 +160,7 @@ export function Deposit() {
157
160
  }
158
161
  });
159
162
  return l;
160
- }, [featureFlag.enabled, onMaya, paymentSettings]);
163
+ }, [featureFlag.enabled, onMaya, paymentSettings, isOfWinSite]);
161
164
  const [paymentMethod, setPaymentMethod] = useState();
162
165
  useEffect(() => {
163
166
  if (enabledPaymentMethods.length > 0 && !paymentMethod) {
@@ -1,7 +1,7 @@
1
1
  export declare const OnlineBankDepositContext: (props: {
2
2
  value: {
3
3
  view: "form" | "vca";
4
- status: "failed" | "waiting" | "processing" | "verification-waiting" | "verification-processing" | "verification-failed" | "verification-success";
4
+ status: "waiting" | "failed" | "processing" | "verification-waiting" | "verification-processing" | "verification-failed" | "verification-success";
5
5
  verify: () => void;
6
6
  reset: () => void;
7
7
  deposit: import("../../../../types").Deposit | null;
@@ -14,7 +14,7 @@ export declare const OnlineBankDepositContext: (props: {
14
14
  children?: import("react").ReactNode | undefined;
15
15
  }) => React.ReactNode, useOnlineBankDepositContext: () => {
16
16
  view: "form" | "vca";
17
- status: "failed" | "waiting" | "processing" | "verification-waiting" | "verification-processing" | "verification-failed" | "verification-success";
17
+ status: "waiting" | "failed" | "processing" | "verification-waiting" | "verification-processing" | "verification-failed" | "verification-success";
18
18
  verify: () => void;
19
19
  reset: () => void;
20
20
  deposit: import("../../../../types").Deposit | null;
@@ -2,7 +2,7 @@ import type { Deposit } from '../../../../types';
2
2
  export type UseOnlineBankDepositReturn = ReturnType<typeof useOnlineBankDeposit>;
3
3
  export declare function useOnlineBankDeposit(): {
4
4
  view: "form" | "vca";
5
- status: "failed" | "waiting" | "processing" | "verification-waiting" | "verification-processing" | "verification-failed" | "verification-success";
5
+ status: "waiting" | "failed" | "processing" | "verification-waiting" | "verification-processing" | "verification-failed" | "verification-success";
6
6
  verify: () => void;
7
7
  reset: () => void;
8
8
  deposit: Deposit | null;
@@ -11,6 +11,7 @@ export interface DepositWithdrawalProps {
11
11
  libanganRedirectionUrl?: string;
12
12
  hasPrivacyPolicyAndTermsOfUse?: boolean;
13
13
  bypassDomains?: BypassDomainConfig[];
14
+ isOfWinSite?: boolean;
14
15
  /**
15
16
  * List of enabled withdrawal providers
16
17
  * @example ['GCASH', 'MAYA_APP', 'VENTAJA_DISBURSEMENT']
@@ -21,10 +21,11 @@ import { HasPendingBonuses } from './HasPendingBonuses.js';
21
21
  import { Withdrawal } from './Withdrawal/Withdrawal.js';
22
22
  export function DepositWithdrawal(props) {
23
23
  const bypassDepositKycCheck = useBypassKycChecker(props.bypassDomains) || props.bypassDepositKycCheck;
24
- const { hasPrivacyPolicyAndTermsOfUse = true, ...restProps } = props;
24
+ const { hasPrivacyPolicyAndTermsOfUse = true, isOfWinSite = false, ...restProps } = props;
25
25
  const mergedProps = {
26
26
  ...restProps,
27
27
  hasPrivacyPolicyAndTermsOfUse,
28
+ isOfWinSite,
28
29
  bypassDepositKycCheck,
29
30
  };
30
31
  const globalStore = useGlobalStore(useShallow((ctx) => ({
@@ -30,12 +30,12 @@ export function DisclaimerV3(props) {
30
30
  const isAuthenticated = sessionQuery.data?.status === 'authenticated';
31
31
  const checked = globalStore.termsOfUse.accepted && globalStore.responsibleGaming.accepted;
32
32
  const [showWarning, setShowWarning] = useState(false);
33
- return (_jsx(Dialog.Root, { open: disclaimer.open, lazyMount: true, unmountOnExit: true, closeOnEscape: false, closeOnInteractOutside: false, children: _jsxs(Portal, { children: [_jsx(Dialog.Backdrop, {}), _jsx(Dialog.Positioner, { children: _jsxs(Dialog.Content, { "aria-label": `${props.siteName} Player Disclaimer`, "aria-labelledby": "disclaimer-title", "aria-describedby": "disclaimer-description", className: twMerge('flex h-full scrollbar:h-2 scrollbar:w-2 w-full flex-col items-start overflow-y-auto scrollbar-thumb:rounded-full scrollbar-thumb:bg-bg-quaternary scrollbar-track:bg-transparent p-3xl lg:mx-auto lg:h-auto lg:max-h-[85vh] lg:w-[500px] lg:rounded-xl'), children: [_jsx("div", { className: "mx-auto h-auto max-w-[120px]", children: _jsx(Image, { src: props.logo, alt: `${props.siteName} logo`, width: 200, height: 100, className: "h-full w-full object-cover", draggable: false, unoptimized: true }) }), _jsxs("div", { className: "my-4 grid w-full grid-cols-2 items-center justify-center gap-3xl", children: [_jsx(Image, { src: props.pagcorLogo ?? pagcorLogo, alt: "PAGCOR logo", height: 50, width: 186, className: "mx-auto h-[43px] w-auto shrink-0 object-contain", draggable: false, unoptimized: true }), _jsx(Image, { src: props.responsibleGamingLogo ?? responsibleGamingLogo, alt: "Responsible Gaming logo", height: 50, width: 186, className: "mx-auto h-[50px] w-auto shrink-0", draggable: false, unoptimized: true })] }), _jsx("div", { className: "w-full text-center font-semibold text-2xl uppercase", id: "disclaimer-title", children: "Notice" }), _jsx("div", { className: "mb-1 text-sm text-text-secondary-700", id: "disclaimer-description", children: "By entering this website, you acknowledge and confirm:" }), _jsx("div", { className: "w-full grow", children: _jsxs(Dialog.Description, { className: "space-y-4 text-sm", children: [_jsxs("ul", { className: "space-y-1.5 text-left", "aria-label": "Restricted persons list", children: [_jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are 21 years old and above."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are not a government official, or employee connected directly with the operation of the Government or any of its agencies, member of the Armed Forces of the Philippines including the Army, Navy, Air Force, or the Philippine Nationa Police."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are not included in the PAGCOR's National Database Restricted Persons (NDRP)."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "Funds or credits in the account of player who is found ineligible to play shall mean forfeiture of said funds/credits in favor of the Government."] }), _jsxs(Checkbox.Root, { checked: checked, onCheckedChange: (e) => {
33
+ return (_jsx(Dialog.Root, { open: disclaimer.open, lazyMount: true, unmountOnExit: true, closeOnEscape: false, closeOnInteractOutside: false, children: _jsxs(Portal, { children: [_jsx(Dialog.Backdrop, {}), _jsx(Dialog.Positioner, { children: _jsxs(Dialog.Content, { "aria-label": `${props.siteName} Player Disclaimer`, "aria-labelledby": "disclaimer-title", "aria-describedby": "disclaimer-description", className: twMerge('flex h-full scrollbar:h-2 scrollbar:w-2 w-full flex-col items-start overflow-y-auto scrollbar-thumb:rounded-full scrollbar-thumb:bg-bg-quaternary scrollbar-track:bg-transparent p-3xl lg:mx-auto lg:h-auto lg:max-h-[85vh] lg:w-[500px] lg:rounded-xl'), children: [_jsx("div", { className: "mx-auto h-auto max-w-[120px]", children: _jsx(Image, { src: props.logo, alt: `${props.siteName} logo`, width: 200, height: 100, className: "h-full w-full object-cover", draggable: false, unoptimized: true }) }), _jsxs("div", { className: "my-4 grid w-full grid-cols-2 items-center justify-center gap-3xl", children: [_jsx(Image, { src: props.pagcorLogo ?? pagcorLogo, alt: "PAGCOR logo", height: 50, width: 186, className: "mx-auto h-[43px] w-auto shrink-0 object-contain", draggable: false, unoptimized: true }), _jsx(Image, { src: props.responsibleGamingLogo ?? responsibleGamingLogo, alt: "Responsible Gaming logo", height: 50, width: 186, className: "mx-auto h-[50px] w-auto shrink-0", draggable: false, unoptimized: true })] }), _jsx("div", { className: "w-full text-center font-semibold text-2xl uppercase", id: "disclaimer-title", children: "Notice" }), _jsx("div", { className: "mb-1 text-sm text-text-secondary-700 mt-2", id: "disclaimer-description", children: "By entering this website, you acknowledge and confirm:" }), _jsx("div", { className: "w-full grow mt-4", children: _jsxs(Dialog.Description, { className: "space-y-4 text-sm", children: [_jsxs("ul", { className: "space-y-1.5 text-left", "aria-label": "Restricted persons list", children: [_jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are 21 years old and above."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are not a government official, or employee connected directly with the operation of the Government or any of its agencies, member of the Armed Forces of the Philippines including the Army, Navy, Air Force, or the Philippine Nationa Police."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are not included in the PAGCOR's National Database Restricted Persons (NDRP)."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "Funds or credits in the account of player who is found ineligible to play shall mean forfeiture of said funds/credits in favor of the Government."] }), _jsxs("li", { className: "flex gap-4 text-text-placeholder", children: [_jsx(Circle, {}), "You are prohibited from playing in open and public places."] }), _jsxs(Checkbox.Root, { checked: checked, onCheckedChange: (e) => {
34
34
  if (e.checked === 'indeterminate')
35
35
  return;
36
36
  globalStore.termsOfUse.setAccepted(e.checked);
37
37
  globalStore.responsibleGaming.setAccepted(e.checked);
38
- }, className: "pt-2.5 pb-2 text-sm", children: [_jsx(Checkbox.Control, { children: _jsx(Checkbox.Indicator, { asChild: true, children: _jsx(CheckIcon, {}) }) }), _jsxs(Checkbox.Label, { children: ["You agree and read the", ' ', _jsx("button", { type: "button", className: "text-brand-400 underline underline-offset-2", onClick: () => {
38
+ }, className: "pt-2.5 pb-2 text-sm", colorScheme: "neutral", children: [_jsx(Checkbox.Control, { children: _jsx(Checkbox.Indicator, { asChild: true, children: _jsx(CheckIcon, {}) }) }), _jsxs(Checkbox.Label, { children: ["You agree and read the", ' ', _jsx("button", { type: "button", className: "text-brand-400 underline underline-offset-2", onClick: () => {
39
39
  globalStore.termsOfUse.setOpen(true);
40
40
  globalStore.termsOfUse.setNext('DISCLAIMER');
41
41
  disclaimer.close();
@@ -18,14 +18,14 @@ export declare const GET: (req: NextRequest, { params }: Context) => Promise<Nex
18
18
  __error?: unknown;
19
19
  } | {
20
20
  ok: true;
21
- data: import("../types").Session;
21
+ data: Record<string, unknown>;
22
22
  }> | NextResponse<{
23
23
  ok: false;
24
24
  message: string;
25
25
  __error?: unknown;
26
26
  } | {
27
27
  ok: true;
28
- data: Record<string, unknown>;
28
+ data: import("../types").Session;
29
29
  }>>;
30
30
  export declare const DELETE: (req: NextRequest, { params }: Context) => Promise<NextResponse<{
31
31
  ok: true;
@@ -8,23 +8,23 @@ export declare const createForgotPasswordSchema: (mobileNumberParser: MobileNumb
8
8
  mobileNumber: z.ZodEffects<z.ZodString, string, string>;
9
9
  verificationCode: z.ZodEffects<z.ZodString, string, string>;
10
10
  }, "strip", z.ZodTypeAny, {
11
- verificationCode: string;
12
11
  password: string;
12
+ verificationCode: string;
13
13
  mobileNumber: string;
14
14
  confirmPassword: string;
15
15
  }, {
16
- verificationCode: string;
17
16
  password: string;
17
+ verificationCode: string;
18
18
  mobileNumber: string;
19
19
  confirmPassword: string;
20
20
  }>, {
21
- verificationCode: string;
22
21
  password: string;
22
+ verificationCode: string;
23
23
  mobileNumber: string;
24
24
  confirmPassword: string;
25
25
  }, {
26
- verificationCode: string;
27
26
  password: string;
27
+ verificationCode: string;
28
28
  mobileNumber: string;
29
29
  confirmPassword: string;
30
30
  }>;