@opexa/portal-components 0.0.536 → 0.0.538

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 (65) hide show
  1. package/dist/components/Banner/Banner.client.d.ts +12 -0
  2. package/dist/components/Banner/Banner.client.js +49 -0
  3. package/dist/components/DigitainLauncher/Loading.d.ts +1 -0
  4. package/dist/components/DigitainLauncher/Loading.js +5 -0
  5. package/dist/components/KYC/BasicInformation.d.ts +1 -0
  6. package/dist/components/KYC/BasicInformation.js +101 -0
  7. package/dist/components/KYC/IdentityVerification.d.ts +1 -0
  8. package/dist/components/KYC/IdentityVerification.js +120 -0
  9. package/dist/components/KYC/Indicator.d.ts +1 -0
  10. package/dist/components/KYC/Indicator.js +8 -0
  11. package/dist/components/KYC/KYC.lazy.d.ts +6 -0
  12. package/dist/components/KYC/KYC.lazy.js +45 -0
  13. package/dist/components/KYC/KYCContext.d.ts +6 -0
  14. package/dist/components/KYC/KYCContext.js +2 -0
  15. package/dist/components/KYC/PersonalInformation.d.ts +1 -0
  16. package/dist/components/KYC/PersonalInformation.js +122 -0
  17. package/dist/components/KYC/useKYC.d.ts +25 -0
  18. package/dist/components/KYC/useKYC.js +38 -0
  19. package/dist/components/PortalProvider/CXDTokenObserver.d.ts +1 -0
  20. package/dist/components/PortalProvider/CXDTokenObserver.js +30 -0
  21. package/dist/components/SignIn/NameAndPasswordSignIn.js +1 -1
  22. package/dist/components/SignIn/utils.d.ts +8 -0
  23. package/dist/components/SignIn/utils.js +26 -0
  24. package/dist/components/SignUp/SignUpKYC/SelfieImageField/useSelfieImageField.js +2 -2
  25. package/dist/components/SignUp/SignUpNameAndPassword/SignUpNameAndPasswordForm.js +1 -1
  26. package/dist/components/shared/SelfieImageField/useSelfieImageField.js +2 -2
  27. package/dist/constants/Branches.d.ts +2 -0
  28. package/dist/constants/Branches.js +42 -0
  29. package/dist/images/responsible-gaming-yellow.png +0 -0
  30. package/dist/third-parties/FacebookPixel/FacebookPixel.d.ts +4 -0
  31. package/dist/third-parties/FacebookPixel/FacebookPixel.js +4 -0
  32. package/dist/third-parties/FacebookPixel/api.d.ts +0 -0
  33. package/dist/third-parties/FacebookPixel/api.js +1 -0
  34. package/dist/third-parties/FacebookPixel/index.d.ts +1 -0
  35. package/dist/third-parties/FacebookPixel/index.js +1 -0
  36. package/dist/third-parties/GoogleRecaptcha/GoogleRecaptcha.d.ts +4 -0
  37. package/dist/third-parties/GoogleRecaptcha/GoogleRecaptcha.js +4 -0
  38. package/dist/third-parties/GoogleRecaptcha/api.d.ts +0 -0
  39. package/dist/third-parties/GoogleRecaptcha/api.js +1 -0
  40. package/dist/third-parties/GoogleRecaptcha/index.d.ts +1 -0
  41. package/dist/third-parties/GoogleRecaptcha/index.js +1 -0
  42. package/dist/third-parties/index.d.ts +2 -0
  43. package/dist/third-parties/index.js +2 -0
  44. package/dist/ui/AlertDialog/AlertDialog.d.ts +55 -55
  45. package/dist/ui/AlertDialog/alertDialog.recipe.d.ts +5 -5
  46. package/dist/ui/Carousel/Carousel.d.ts +45 -45
  47. package/dist/ui/Carousel/carousel.recipe.d.ts +5 -5
  48. package/dist/ui/Checkbox/Checkbox.d.ts +23 -23
  49. package/dist/ui/Checkbox/checkbox.recipe.d.ts +3 -3
  50. package/dist/ui/Clipboard/Clipboard.d.ts +18 -18
  51. package/dist/ui/Clipboard/clipboard.recipe.d.ts +3 -3
  52. package/dist/ui/Combobox/Combobox.d.ts +42 -42
  53. package/dist/ui/Combobox/combobox.recipe.d.ts +3 -3
  54. package/dist/ui/Dialog/Dialog.d.ts +33 -33
  55. package/dist/ui/Dialog/dialog.recipe.d.ts +3 -3
  56. package/dist/ui/Drawer/Drawer.d.ts +33 -33
  57. package/dist/ui/Drawer/drawer.recipe.d.ts +3 -3
  58. package/dist/ui/PasswordInput/PasswordInput.d.ts +18 -18
  59. package/dist/ui/PasswordInput/passwordInput.recipe.d.ts +3 -3
  60. package/dist/ui/Select/Select.d.ts +45 -45
  61. package/dist/ui/Select/select.recipe.d.ts +3 -3
  62. package/dist/ui/Table/Table.d.ts +21 -21
  63. package/dist/ui/Table/table.anatomy.d.ts +1 -1
  64. package/dist/ui/Table/table.recipe.d.ts +3 -3
  65. package/package.json +1 -1
@@ -0,0 +1,26 @@
1
+ export function getFriendlyErrorMessage(code, options) {
2
+ const accountName = options?.accountName ?? '';
3
+ const siteName = options?.siteName ?? '';
4
+ const signInOptions = options?.signInOptions ?? 'NAME_AND_PASSWORD';
5
+ switch (code) {
6
+ case 'MEMBER_ACCOUNT_BLACKLISTED':
7
+ return `Your account ${accountName} has been blacklisted due to a serious violation of our policies. For more information or to appeal, please contact the ${siteName} Chat Support team.`;
8
+ case 'MEMBER_ACCOUNT_SUSPENDED':
9
+ return `Your account ${accountName} has been temporarily suspended. Please reach out to the ${siteName} Chat Support team to learn more and get help with resolving the issue.`;
10
+ case 'INVALID_RECAPTCHA_RESPONSE':
11
+ return 'Invalid reCAPTCHA response';
12
+ case 'MEMBER_NOT_FOUND':
13
+ return 'Account not found. Please check your username and try again.';
14
+ case 'RATE_LIMIT_REACH':
15
+ return 'Rate limit exceeded';
16
+ case 'NOT_READY_TO_SEND_VERIFICATION_ERROR':
17
+ return 'Your account is not ready to send verification requests. Please try again later.';
18
+ case 'Forbidden':
19
+ if (signInOptions === 'MOBILE_NUMBER') {
20
+ return 'Invalid verification code. Please check the code and try again.';
21
+ }
22
+ return 'Invalid username or password, please try again.';
23
+ default:
24
+ return 'Something went wrong. Please try again later.';
25
+ }
26
+ }
@@ -117,7 +117,7 @@ async function getImageFaceDetector() {
117
117
  }
118
118
  const detector = await FaceDetector.createFromOptions(__vision__, {
119
119
  runningMode: 'IMAGE',
120
- minDetectionConfidence: 0.8,
120
+ minDetectionConfidence: 0.5,
121
121
  baseOptions: {
122
122
  delegate: 'GPU',
123
123
  modelAssetPath: 'https://storage.googleapis.com/mediapipe-models/face_detector/blaze_face_short_range/float16/1/blaze_face_short_range.tflite',
@@ -135,7 +135,7 @@ async function getVideoFaceDetector() {
135
135
  }
136
136
  const detector = await FaceDetector.createFromOptions(__vision__, {
137
137
  runningMode: 'VIDEO',
138
- minDetectionConfidence: 0.8,
138
+ minDetectionConfidence: 0.5,
139
139
  baseOptions: {
140
140
  delegate: 'GPU',
141
141
  modelAssetPath: 'https://storage.googleapis.com/mediapipe-models/face_detector/blaze_face_short_range/float16/1/blaze_face_short_range.tflite',
@@ -172,7 +172,7 @@ export function SignUpNameAndPasswordForm() {
172
172
  description: error instanceof Error ? error.message : 'Something went wrong',
173
173
  });
174
174
  }
175
- }), children: [_jsxs(Field.Root, { invalid: !!form.formState.errors.name, className: "mt-xl", children: [_jsx(Field.Label, { children: "Name" }), _jsx(Field.Input, { placeholder: "Enter your name", ...form.register('name') }), _jsx(Field.ErrorText, { children: form.formState.errors.name?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.password, className: "mt-xl", children: [_jsxs(PasswordInput.Root, { children: [_jsx(PasswordInput.Label, { children: "Password" }), _jsxs(PasswordInput.Control, { children: [_jsx(PasswordInput.Input, { placeholder: "Enter your password", ...form.register('password') }), _jsx(PasswordInput.VisibilityTrigger, { children: _jsx(PasswordInput.Indicator, { fallback: _jsx(EyeOffIcon, {}), asChild: true, children: _jsx(EyeIcon, {}) }) })] })] }), _jsx(Field.ErrorText, { children: form.formState.errors.password?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.firstName, className: "mt-xl", children: [_jsx(Field.Label, { children: "First Name" }), _jsx(Field.Input, { placeholder: "Enter your first name", ...form.register('firstName') }), _jsx(Field.ErrorText, { children: form.formState.errors.firstName?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.lastName, className: "mt-xl", children: [_jsx(Field.Label, { children: "Last Name" }), _jsx(Field.Input, { placeholder: "Enter your last name", ...form.register('lastName') }), _jsx(Field.ErrorText, { children: form.formState.errors.lastName?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.birthDay, className: "mt-xl", children: [_jsx(DateOfBirthField, { value: form.watch('birthDay'), onChange: (value) => {
175
+ }), children: [_jsxs(Field.Root, { invalid: !!form.formState.errors.name, className: "mt-xl", children: [_jsx(Field.Label, { children: "Username" }), _jsx(Field.Input, { placeholder: "Enter your username", ...form.register('name') }), _jsx(Field.ErrorText, { children: form.formState.errors.name?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.password, className: "mt-xl", children: [_jsxs(PasswordInput.Root, { children: [_jsx(PasswordInput.Label, { children: "Password" }), _jsxs(PasswordInput.Control, { children: [_jsx(PasswordInput.Input, { placeholder: "Enter your password", ...form.register('password') }), _jsx(PasswordInput.VisibilityTrigger, { children: _jsx(PasswordInput.Indicator, { fallback: _jsx(EyeOffIcon, {}), asChild: true, children: _jsx(EyeIcon, {}) }) })] })] }), _jsx(Field.ErrorText, { children: form.formState.errors.password?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.firstName, className: "mt-xl", children: [_jsx(Field.Label, { children: "First Name" }), _jsx(Field.Input, { placeholder: "Enter your first name", ...form.register('firstName') }), _jsx(Field.ErrorText, { children: form.formState.errors.firstName?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.lastName, className: "mt-xl", children: [_jsx(Field.Label, { children: "Last Name" }), _jsx(Field.Input, { placeholder: "Enter your last name", ...form.register('lastName') }), _jsx(Field.ErrorText, { children: form.formState.errors.lastName?.message })] }), _jsxs(Field.Root, { invalid: !!form.formState.errors.birthDay, className: "mt-xl", children: [_jsx(DateOfBirthField, { value: form.watch('birthDay'), onChange: (value) => {
176
176
  if (!value)
177
177
  return;
178
178
  form.setValue('birthDay', value, {
@@ -147,7 +147,7 @@ async function getImageFaceDetector() {
147
147
  }
148
148
  const detector = await FaceDetector.createFromOptions(__vision__, {
149
149
  runningMode: 'IMAGE',
150
- minDetectionConfidence: 0.8,
150
+ minDetectionConfidence: 0.5,
151
151
  baseOptions: {
152
152
  delegate: 'GPU',
153
153
  modelAssetPath: 'https://storage.googleapis.com/mediapipe-models/face_detector/blaze_face_short_range/float16/1/blaze_face_short_range.tflite',
@@ -165,7 +165,7 @@ async function getVideoFaceDetector() {
165
165
  }
166
166
  const detector = await FaceDetector.createFromOptions(__vision__, {
167
167
  runningMode: 'VIDEO',
168
- minDetectionConfidence: 0.8,
168
+ minDetectionConfidence: 0.5,
169
169
  baseOptions: {
170
170
  delegate: 'GPU',
171
171
  modelAssetPath: 'https://storage.googleapis.com/mediapipe-models/face_detector/blaze_face_short_range/float16/1/blaze_face_short_range.tflite',
@@ -0,0 +1,2 @@
1
+ import type { Branch } from '../types';
2
+ export declare const BRANCHES: Branch[];
@@ -0,0 +1,42 @@
1
+ export const BRANCHES = [
2
+ {
3
+ code: 'BRCAL',
4
+ name: 'Bingo Republic 2nd floor Primark Center Deparo St., Caloocan City',
5
+ },
6
+ {
7
+ code: 'BRNAG',
8
+ name: 'Bingo Republic 3rd floor Robinsons Mall, Naga City, Camarines Sur',
9
+ },
10
+ {
11
+ code: 'BRANT',
12
+ name: 'Bingo Republic 2nd floor Robinsons Mall, San Vicente,Antique',
13
+ },
14
+ {
15
+ code: 'BRCLA',
16
+ name: 'Clark',
17
+ },
18
+ {
19
+ code: 'BRLAG',
20
+ name: 'Laguna',
21
+ },
22
+ {
23
+ code: 'BREAS',
24
+ name: 'Eastwood City, Quezon City',
25
+ },
26
+ {
27
+ code: 'BRMAR',
28
+ name: 'Bingo ng Bayan 4th floor Marikina Public Market, Marikina City',
29
+ },
30
+ {
31
+ code: 'BRILO',
32
+ name: 'Iloilo',
33
+ },
34
+ {
35
+ code: 'BRFIM',
36
+ name: 'Fisher Mall,Quezon City',
37
+ },
38
+ {
39
+ code: 'BRCAC',
40
+ name: 'Villa Caceres Hotel, Naga City,Camsur',
41
+ },
42
+ ];
@@ -0,0 +1,4 @@
1
+ export interface FacebookPixelProps {
2
+ fbId: string;
3
+ }
4
+ export declare function FacebookPixel(props: FacebookPixelProps): null;
@@ -0,0 +1,4 @@
1
+ export function FacebookPixel(props) {
2
+ console.log(props);
3
+ return null;
4
+ }
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ export * from './FacebookPixel';
@@ -0,0 +1 @@
1
+ export * from './FacebookPixel.js';
@@ -0,0 +1,4 @@
1
+ export interface GoogleRecaptchaProps {
2
+ siteKey: string;
3
+ }
4
+ export declare function GoogleRecaptcha(props: GoogleRecaptchaProps): null;
@@ -0,0 +1,4 @@
1
+ export function GoogleRecaptcha(props) {
2
+ console.log(props);
3
+ return null;
4
+ }
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ export * from './GoogleRecaptcha';
@@ -0,0 +1 @@
1
+ export * from './GoogleRecaptcha.js';
@@ -0,0 +1,2 @@
1
+ export * from './FacebookPixel';
2
+ export * from './GoogleRecaptcha';
@@ -0,0 +1,2 @@
1
+ export * from './FacebookPixel/index.js';
2
+ export * from './GoogleRecaptcha/index.js';