@opexa/portal-components 0.0.549 → 0.0.551
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/components/Disclaimer/DisclaimerV3.js +1 -1
- package/dist/components/SignIn/MobileNumberSignIn.js +1 -1
- package/dist/components/SignIn/NameAndPasswordSignIn.js +1 -1
- package/dist/components/SignIn/SignInMethod.js +1 -1
- package/dist/components/SignUp/SignUpNameAndPassword/SignUpNameAndPasswordForm.js +1 -1
- package/package.json +1 -1
|
@@ -35,7 +35,7 @@ export function DisclaimerV3(props) {
|
|
|
35
35
|
globalStore.responsibleGaming.setOpen(true);
|
|
36
36
|
globalStore.responsibleGaming.setNext('DISCLAIMER');
|
|
37
37
|
disclaimer.close();
|
|
38
|
-
}, children: "Responsible Gaming guidelines" }), "."] }), _jsx(Checkbox.HiddenInput, {})] }), showWarning && (_jsxs("div", { className: twMerge('mt-2 flex max-w-full items-center gap-2 break-words rounded-md text-text-error-primary text-xs'), role: "alert", "aria-live": "assertive", children: [_jsx(AlertCircleIcon, { className: "size-5 text-text-error-primary" }), "Please agree to ", props.siteName, "'s Terms of Use and Responsible Gaming to proceed."] }))] }) }), _jsxs("div", { className: "grid w-full grid-cols-2 items-center gap-3xl", children: [_jsx(Image, { src: props.pagcorLogo ?? pagcorLogo, alt: "PAGCOR logo", height: 50, width: 186, className: "h-[43px] w-auto shrink-0", draggable: false, unoptimized: true }), _jsx(Image, { src: props.responsibleGamingLogo ?? responsibleGamingLogo, alt: "Responsible Gaming logo", height: 50, width: 186, className: "h-[50px] w-auto shrink-0", draggable: false, unoptimized: true })] }), _jsxs("div", { className: "row mt-4 flex w-full flex-col gap-3", children: [_jsx(Button, { type: "button", onClick: () => {
|
|
38
|
+
}, children: "Responsible Gaming guidelines" }), "."] }), _jsx(Checkbox.HiddenInput, {})] }), showWarning && (_jsxs("div", { className: twMerge('mt-2 flex max-w-full items-center gap-2 break-words rounded-md text-text-error-primary text-xs'), role: "alert", "aria-live": "assertive", children: [_jsx(AlertCircleIcon, { className: "size-5 text-text-error-primary" }), "Please agree to ", props.siteName, "'s Terms of Use and Responsible Gaming to proceed."] }))] }) }), _jsxs("div", { className: "grid w-full grid-cols-2 items-center gap-3xl", children: [_jsx(Image, { src: props.pagcorLogo ?? pagcorLogo, alt: "PAGCOR logo", height: 50, width: 186, className: "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: "h-[50px] w-auto shrink-0", draggable: false, unoptimized: true })] }), _jsxs("div", { className: "row mt-4 flex w-full flex-col gap-3", children: [_jsx(Button, { type: "button", onClick: () => {
|
|
39
39
|
if (!checked) {
|
|
40
40
|
setShowWarning(true);
|
|
41
41
|
setTimeout(() => setShowWarning(false), 4000);
|
|
@@ -148,7 +148,7 @@ export function MobileNumberSignIn() {
|
|
|
148
148
|
globalStore.termsAndConditions.setOpen(true);
|
|
149
149
|
globalStore.termsAndConditions.setNext('SIGN_IN');
|
|
150
150
|
}
|
|
151
|
-
}, children: "Terms
|
|
151
|
+
}, children: "Terms of Use" }), ' ', "and", ' ', _jsx("button", { type: "button", className: "text-brand-400 underline underline-offset-2", onClick: () => {
|
|
152
152
|
if (signInProps.responsibleGamingUrl) {
|
|
153
153
|
globalStore.signIn.setOpen(false);
|
|
154
154
|
router.push(signInProps.responsibleGamingUrl);
|
|
@@ -163,7 +163,7 @@ export function NameAndPasswordSignIn() {
|
|
|
163
163
|
globalStore.termsAndConditions.setOpen(true);
|
|
164
164
|
globalStore.termsAndConditions.setNext('SIGN_IN');
|
|
165
165
|
}
|
|
166
|
-
}, children: "Terms
|
|
166
|
+
}, children: "Terms of Use" }), ' ', "and", ' ', _jsx("button", { type: "button", className: "text-brand-400 underline underline-offset-2", onClick: () => {
|
|
167
167
|
if (signInProps.responsibleGamingUrl) {
|
|
168
168
|
globalStore.signIn.setOpen(false);
|
|
169
169
|
router.push(signInProps.responsibleGamingUrl);
|
|
@@ -212,7 +212,7 @@ export function SignUpNameAndPasswordForm() {
|
|
|
212
212
|
globalStore.termsAndConditions.setNext('SIGN_UP');
|
|
213
213
|
globalStore.signUp.setOpen(false);
|
|
214
214
|
}
|
|
215
|
-
}, children: "Terms
|
|
215
|
+
}, children: "Terms of Use" }), ' ', "and", ' ', _jsx("button", { type: "button", className: "text-brand-400 underline underline-offset-2", onClick: () => {
|
|
216
216
|
if (signUpProps.responsibleGamingUrl) {
|
|
217
217
|
globalStore.signUp.setOpen(false);
|
|
218
218
|
router.push(signUpProps.responsibleGamingUrl);
|