cloudflare-next-intl 0.5.3 → 0.5.4
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/src/cookie_consent/client/components/cookie_consent_dialog.js +2 -1
- package/dist/src/cookie_consent/client/components/default_dialog_styles.js +1 -1
- package/dist/src/cookie_consent/client/components/dialog_portal.d.ts +11 -0
- package/dist/src/cookie_consent/client/components/dialog_portal.js +13 -0
- package/dist/src/cookie_consent/client/components/privacy_policy_update_dialog.js +2 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
import useCookieConsent from '../use_cookie_consent';
|
|
4
4
|
import DefaultPrivacyPolicyLink from './default_privacy_policy_link';
|
|
5
|
+
import DialogPortal from './dialog_portal';
|
|
5
6
|
import { getLocaleCache } from '../../../general/cache_variables';
|
|
6
7
|
import { defaultCookieConsentText } from './default_dialog_text';
|
|
7
8
|
import { defaultCookieDialogClassNames } from './default_dialog_styles';
|
|
@@ -26,5 +27,5 @@ export default function CookieConsentDialog({ message, link, privacyPolicyLinkTe
|
|
|
26
27
|
const resolvedLink = link !== undefined
|
|
27
28
|
? link
|
|
28
29
|
: _jsx(DefaultPrivacyPolicyLink, { privacyPolicyPath: privacyPolicyPath, text: resolvedPrivacyPolicyLinkText, className: resolvedClassNames.link });
|
|
29
|
-
return (_jsxs("div", { id: id, role: "dialog", "aria-modal": "false", "aria-labelledby": `${id}-title`, className: resolvedClassNames.root, style: styles?.root, children: [_jsxs("p", { id: `${id}-title`, className: resolvedClassNames.message, style: styles?.message, children: [resolvedMessage, resolvedLink ? _jsxs("span", { children: [" ", resolvedLink] }) : null] }), _jsxs("div", { className: resolvedClassNames.actions, style: styles?.actions, children: [!hideDecline && (_jsx("button", { type: "button", onClick: () => setConsent(false), className: resolvedClassNames.declineButton, style: styles?.declineButton, children: resolvedDeclineText })), _jsx("button", { type: "button", onClick: () => setConsent(true), className: resolvedClassNames.acceptButton, style: styles?.acceptButton, children: resolvedAcceptText })] })] }));
|
|
30
|
+
return (_jsx(DialogPortal, { children: _jsxs("div", { id: id, role: "dialog", "aria-modal": "false", "aria-labelledby": `${id}-title`, className: resolvedClassNames.root, style: styles?.root, children: [_jsxs("p", { id: `${id}-title`, className: resolvedClassNames.message, style: styles?.message, children: [resolvedMessage, resolvedLink ? _jsxs("span", { children: [" ", resolvedLink] }) : null] }), _jsxs("div", { className: resolvedClassNames.actions, style: styles?.actions, children: [!hideDecline && (_jsx("button", { type: "button", onClick: () => setConsent(false), className: resolvedClassNames.declineButton, style: styles?.declineButton, children: resolvedDeclineText })), _jsx("button", { type: "button", onClick: () => setConsent(true), className: resolvedClassNames.acceptButton, style: styles?.acceptButton, children: resolvedAcceptText })] })] }) }));
|
|
30
31
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const defaultCookieDialogClassNames = {
|
|
2
|
-
root: 'fixed bottom-0 w-full bg-cyan-50 dark:bg-cyan-950 text-gray-800 dark:text-gray-200 z-
|
|
2
|
+
root: 'fixed bottom-0 w-full bg-cyan-50 dark:bg-cyan-950 text-gray-800 dark:text-gray-200 z-[2147483647] flex flex-col sm:flex-row sm:justify-between items-center gap-3 sticky border-t border-t-gray-600 dark:border-t-gray-400 rounded-t-2xl px-4 py-3',
|
|
3
3
|
message: 'text-sm sm:text-base text-gray-600 dark:text-gray-300',
|
|
4
4
|
link: 'underline font-bold duration-200 text-gray-600 hover:text-cyan-800 dark:text-gray-200 dark:hover:text-gray-100 active:text-cyan-700',
|
|
5
5
|
actions: 'flex flex-row gap-2',
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Renders `children` into `document.body` via a portal, so the default
|
|
3
|
+
* dialogs always stack on top of the host app regardless of its own
|
|
4
|
+
* stacking contexts (a `z-index` alone can't escape an ancestor with
|
|
5
|
+
* `transform`/`filter`/`opacity`/`isolation`, all common in app shells).
|
|
6
|
+
* Only called client-side (both dialogs already gate on `isMounted`), so
|
|
7
|
+
* `document` is always defined here.
|
|
8
|
+
*/
|
|
9
|
+
export default function DialogPortal({ children }: {
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
}): React.ReactPortal;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { createPortal } from 'react-dom';
|
|
3
|
+
/**
|
|
4
|
+
* Renders `children` into `document.body` via a portal, so the default
|
|
5
|
+
* dialogs always stack on top of the host app regardless of its own
|
|
6
|
+
* stacking contexts (a `z-index` alone can't escape an ancestor with
|
|
7
|
+
* `transform`/`filter`/`opacity`/`isolation`, all common in app shells).
|
|
8
|
+
* Only called client-side (both dialogs already gate on `isMounted`), so
|
|
9
|
+
* `document` is always defined here.
|
|
10
|
+
*/
|
|
11
|
+
export default function DialogPortal({ children }) {
|
|
12
|
+
return createPortal(children, document.body);
|
|
13
|
+
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
import useCookieConsent from '../use_cookie_consent';
|
|
4
4
|
import DefaultPrivacyPolicyLink from './default_privacy_policy_link';
|
|
5
|
+
import DialogPortal from './dialog_portal';
|
|
5
6
|
import { getLocaleCache } from '../../../general/cache_variables';
|
|
6
7
|
import { defaultPrivacyPolicyUpdateText } from './default_dialog_text';
|
|
7
8
|
import { defaultCookieDialogClassNames } from './default_dialog_styles';
|
|
@@ -25,5 +26,5 @@ export default function PrivacyPolicyUpdateDialog({ message, link, privacyPolicy
|
|
|
25
26
|
const resolvedLink = link !== undefined
|
|
26
27
|
? link
|
|
27
28
|
: _jsx(DefaultPrivacyPolicyLink, { privacyPolicyPath: privacyPolicyPath, text: resolvedPrivacyPolicyLinkText, className: resolvedClassNames.link });
|
|
28
|
-
return (_jsxs("div", { id: id, role: "dialog", "aria-modal": "false", "aria-labelledby": `${id}-title`, className: resolvedClassNames.root, style: styles?.root, children: [_jsxs("p", { id: `${id}-title`, className: resolvedClassNames.message, style: styles?.message, children: [resolvedMessage, resolvedLink ? _jsxs("span", { children: [" ", resolvedLink] }) : null] }), _jsx("button", { type: "button", onClick: acknowledgePrivacyPolicyUpdate, "aria-label": resolvedCloseText, className: resolvedClassNames.closeButton, style: styles?.closeButton, children: resolvedCloseText })] }));
|
|
29
|
+
return (_jsx(DialogPortal, { children: _jsxs("div", { id: id, role: "dialog", "aria-modal": "false", "aria-labelledby": `${id}-title`, className: resolvedClassNames.root, style: styles?.root, children: [_jsxs("p", { id: `${id}-title`, className: resolvedClassNames.message, style: styles?.message, children: [resolvedMessage, resolvedLink ? _jsxs("span", { children: [" ", resolvedLink] }) : null] }), _jsx("button", { type: "button", onClick: acknowledgePrivacyPolicyUpdate, "aria-label": resolvedCloseText, className: resolvedClassNames.closeButton, style: styles?.closeButton, children: resolvedCloseText })] }) }));
|
|
29
30
|
}
|