From a7ab59de77af1f0125708963b7a5c7f46c5da38e Mon Sep 17 00:00:00 2001 From: mayank1513 Date: Thu, 20 Jun 2024 16:10:23 +0000 Subject: [PATCH] upgrade deps && docs --- docs/functions/client_core_core.Core.html | 2 +- .../client_core_core.noFOUCScript.html | 2 +- .../client_switch_switch.Switch.html | 2 +- docs/functions/hooks_use_mode.useMode.html | 2 +- docs/functions/utils.useStore.html | 2 +- .../client_core_core.CoreProps.html | 8 ++-- .../client_switch_switch.SwitchProps.html | 8 ++-- .../hooks_use_mode.UseModeYeild.html | 4 +- docs/interfaces/utils.Store.html | 4 +- docs/modules/client_core_core.html | 2 +- docs/modules/client_switch_switch.html | 2 +- docs/modules/constants.html | 2 +- docs/modules/hooks_use_mode.html | 2 +- docs/modules/hooks_use_mode_test.html | 2 +- docs/modules/utils.html | 2 +- docs/types/utils.ColorSchemePreference.html | 2 +- docs/types/utils.ResolvedScheme.html | 2 +- docs/variables/constants.DARK.html | 2 +- docs/variables/constants.LIGHT.html | 2 +- docs/variables/constants.SYSTEM.html | 2 +- docs/variables/constants.modes.html | 2 +- examples/nextjs/package.json | 4 +- examples/tailwind/package.json | 4 +- examples/vite/package.json | 2 +- packages/shared/package.json | 4 +- pnpm-lock.yaml | 40 +++++++++---------- 26 files changed, 56 insertions(+), 56 deletions(-) diff --git a/docs/functions/client_core_core.Core.html b/docs/functions/client_core_core.Core.html index cbd6f433..02df23c7 100644 --- a/docs/functions/client_core_core.Core.html +++ b/docs/functions/client_core_core.Core.html @@ -7,4 +7,4 @@

Source

const Core = ({ t, nonce, k = "o" }: CoreProps) => {
// handle client side exceptions when script is not run. <- for client side apps like vite or CRA
if (typeof window !== "undefined" && !window.m) noFOUCScript(k);

const [{ m: mode, s: systemMode }, setThemeState] = useStore();

useEffect(() => {
// store global functions to local variables to avoid any interference
[media, updateDOM] = [m, u];

media.addEventListener("change", () =>
setThemeState(state => ({ ...state, s: media.matches ? DARK : LIGHT })),
);
/** Sync the tabs */
addEventListener("storage", (e: StorageEvent): void => {
e.key === k && setThemeState(state => ({ ...state, m: e.newValue as ColorSchemePreference }));
});
}, []);

useEffect(() => {
const restoreTransitions = modifyTransition(t, nonce);
updateDOM(mode, systemMode);
restoreTransitions();
}, [systemMode, mode, t, nonce]);

return <Script {...{ n: nonce, k }} />;
}
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/client_core_core.noFOUCScript.html b/docs/functions/client_core_core.noFOUCScript.html index 5b34af4f..cc42406c 100644 --- a/docs/functions/client_core_core.noFOUCScript.html +++ b/docs/functions/client_core_core.noFOUCScript.html @@ -1,2 +1,2 @@ noFOUCScript | React18 Loaders
  • function to be injected in script tag for avoiding FOUC

    -

    Parameters

    • storageKey: string

    Returns void

\ No newline at end of file +

Parameters

Returns void

\ No newline at end of file diff --git a/docs/functions/client_switch_switch.Switch.html b/docs/functions/client_switch_switch.Switch.html index 18817dae..e3a5f71a 100644 --- a/docs/functions/client_switch_switch.Switch.html +++ b/docs/functions/client_switch_switch.Switch.html @@ -6,4 +6,4 @@

Source

const Switch = ({
tag: Tag = "button",
size = 24,
skipSystem,
children,
...props
}: SwitchProps) => {
const [state, setState] = useStore();

const handleModeSwitch = () => {
let index = modes.indexOf(state.m);
const n = modes.length;
if (skipSystem && index === n - 1) index = 0;
setState({
...state,
m: modes[(index + 1) % n],
});
};
if (children) {
return (
// @ts-expect-error -- too complex types
<Tag
suppressHydrationWarning
{...props}
data-testid="switch"
// skipcq: JS-0417
onClick={handleModeSwitch}>
{/* @ts-expect-error -> we are setting the CSS variable */}
<div className={styles.switch} style={{ "--size": `${size}px` }} />
{children}
</Tag>
);
}
return (
<Tag
// Hydration warning is caused when the data from localStorage differs from the default data provided while rendering on server
suppressHydrationWarning
{...props}
className={[props.className, styles.switch].join(" ")}
// @ts-expect-error -> we are setting the CSS variable
style={{ "--size": `${size}px` }}
data-testid="switch"
// skipcq: JS-0417 -> tradeoff between size and best practices
onClick={handleModeSwitch}
/>
);
}
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/hooks_use_mode.useMode.html b/docs/functions/hooks_use_mode.useMode.html index ce443f34..108745c8 100644 --- a/docs/functions/hooks_use_mode.useMode.html +++ b/docs/functions/hooks_use_mode.useMode.html @@ -6,4 +6,4 @@

Source

const useMode = (): UseModeYeild => {
const [{ m: mode, s: systemMode }, setState] = useStore();

const setMode = (m: ColorSchemePreference) => {
setState(prev => ({ ...prev, m }));
};
return {
mode,
systemMode,
resolvedMode: (mode === SYSTEM ? systemMode : mode) as ResolvedScheme,
setMode,
};
}
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/utils.useStore.html b/docs/functions/utils.useStore.html index 9123ba00..c9e54a24 100644 --- a/docs/functions/utils.useStore.html +++ b/docs/functions/utils.useStore.html @@ -1,2 +1,2 @@ useStore | React18 Loaders
\ No newline at end of file +

Returns [Store, SetStateAction<Store>]

\ No newline at end of file diff --git a/docs/interfaces/client_core_core.CoreProps.html b/docs/interfaces/client_core_core.CoreProps.html index cc0705df..60ad8253 100644 --- a/docs/interfaces/client_core_core.CoreProps.html +++ b/docs/interfaces/client_core_core.CoreProps.html @@ -1,13 +1,13 @@ -CoreProps | React18 Loaders
interface CoreProps {
    k?: string;
    nonce?: string;
    t?: string;
}

Properties

k? +CoreProps | React18 Loaders
interface CoreProps {
    k?: string;
    nonce?: string;
    t?: string;
}

Properties

Properties

k?: string

storageKey

Default Value

'o'
 
-
nonce?: string

The nonce value for your Content Security Policy.

+
nonce?: string

The nonce value for your Content Security Policy.

Default Value

''
 
-
t?: string

themeTransition: force apply CSS transition property to all the elements during theme switching. E.g., all .3s

+
t?: string

themeTransition: force apply CSS transition property to all the elements during theme switching. E.g., all .3s

Default Value

'none'
 
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/interfaces/client_switch_switch.SwitchProps.html b/docs/interfaces/client_switch_switch.SwitchProps.html index a0c43d5e..665c8f4a 100644 --- a/docs/interfaces/client_switch_switch.SwitchProps.html +++ b/docs/interfaces/client_switch_switch.SwitchProps.html @@ -1,9 +1,9 @@ -SwitchProps | React18 Loaders
interface SwitchProps {
    size?: number;
    skipSystem?: boolean;
    tag?: "button" | "div";
}

Hierarchy

Properties

size? +SwitchProps | React18 Loaders
interface SwitchProps {
    size?: number;
    skipSystem?: boolean;
    tag?: "button" | "div";
}

Hierarchy

Properties

size?: number

Diameter of the color switch

-
skipSystem?: boolean

Skip system colorScheme while toggling

-
tag?: "button" | "div"

html tag

+
skipSystem?: boolean

Skip system colorScheme while toggling

+
tag?: "button" | "div"

html tag

Default Value

'button'
 
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/interfaces/hooks_use_mode.UseModeYeild.html b/docs/interfaces/hooks_use_mode.UseModeYeild.html index 18a94724..2db40d7a 100644 --- a/docs/interfaces/hooks_use_mode.UseModeYeild.html +++ b/docs/interfaces/hooks_use_mode.UseModeYeild.html @@ -1,5 +1,5 @@ -UseModeYeild | React18 Loaders
interface UseModeYeild {
    mode: ColorSchemePreference;
    resolvedMode: ResolvedScheme;
    setMode: ((mode) => void);
    systemMode: ResolvedScheme;
}

Properties

mode +UseModeYeild | React18 Loaders
interface UseModeYeild {
    mode: ColorSchemePreference;
    resolvedMode: ResolvedScheme;
    setMode: ((mode) => void);
    systemMode: ResolvedScheme;
}

Properties

resolvedMode: ResolvedScheme
setMode: ((mode) => void)

Type declaration

systemMode: ResolvedScheme
\ No newline at end of file +

Properties

resolvedMode: ResolvedScheme
setMode: ((mode) => void)

Type declaration

systemMode: ResolvedScheme
\ No newline at end of file diff --git a/docs/interfaces/utils.Store.html b/docs/interfaces/utils.Store.html index cb65e93d..260e7a13 100644 --- a/docs/interfaces/utils.Store.html +++ b/docs/interfaces/utils.Store.html @@ -1,3 +1,3 @@ -Store | React18 Loaders
interface Store {
    m: ColorSchemePreference;
    s: ResolvedScheme;
}

Properties

m +Store | React18 Loaders
interface Store {
    m: ColorSchemePreference;
    s: ResolvedScheme;
}

Properties

m s -

Properties

\ No newline at end of file +

Properties

\ No newline at end of file diff --git a/docs/modules/client_core_core.html b/docs/modules/client_core_core.html index 98e4a868..4441b44d 100644 --- a/docs/modules/client_core_core.html +++ b/docs/modules/client_core_core.html @@ -1,4 +1,4 @@ -client/core/core | React18 Loaders

Module client/core/core

Index

Interfaces

CoreProps +client/core/core | React18 Loaders

Module client/core/core

Index

Interfaces

Functions

\ No newline at end of file diff --git a/docs/modules/client_switch_switch.html b/docs/modules/client_switch_switch.html index 897eabe4..59ccded5 100644 --- a/docs/modules/client_switch_switch.html +++ b/docs/modules/client_switch_switch.html @@ -1,3 +1,3 @@ -client/switch/switch | React18 Loaders

Module client/switch/switch

Index

Interfaces

SwitchProps +client/switch/switch | React18 Loaders

Module client/switch/switch

Index

Interfaces

Functions

\ No newline at end of file diff --git a/docs/modules/constants.html b/docs/modules/constants.html index c5e0780d..5c8ccbe3 100644 --- a/docs/modules/constants.html +++ b/docs/modules/constants.html @@ -1,4 +1,4 @@ -constants | React18 Loaders

Module constants

Index

Variables

DARK +constants | React18 Loaders

Module constants

Index

Variables

DARK LIGHT SYSTEM modes diff --git a/docs/modules/hooks_use_mode.html b/docs/modules/hooks_use_mode.html index a57543ba..0f1408d2 100644 --- a/docs/modules/hooks_use_mode.html +++ b/docs/modules/hooks_use_mode.html @@ -1,3 +1,3 @@ -hooks/use-mode | React18 Loaders

Module hooks/use-mode

Index

Interfaces

UseModeYeild +hooks/use-mode | React18 Loaders

Module hooks/use-mode

Index

Interfaces

Functions

\ No newline at end of file diff --git a/docs/modules/hooks_use_mode_test.html b/docs/modules/hooks_use_mode_test.html index 3c2b6089..c873c871 100644 --- a/docs/modules/hooks_use_mode_test.html +++ b/docs/modules/hooks_use_mode_test.html @@ -1 +1 @@ -hooks/use-mode.test | React18 Loaders
\ No newline at end of file +hooks/use-mode.test | React18 Loaders
\ No newline at end of file diff --git a/docs/modules/utils.html b/docs/modules/utils.html index 24901a55..0a9b8623 100644 --- a/docs/modules/utils.html +++ b/docs/modules/utils.html @@ -1,4 +1,4 @@ -utils | React18 Loaders

Index

Interfaces

Store +utils | React18 Loaders

Index

Interfaces

Type Aliases

Functions

useStore diff --git a/docs/types/utils.ColorSchemePreference.html b/docs/types/utils.ColorSchemePreference.html index 73156127..100f478b 100644 --- a/docs/types/utils.ColorSchemePreference.html +++ b/docs/types/utils.ColorSchemePreference.html @@ -1 +1 @@ -ColorSchemePreference | React18 Loaders

Type alias ColorSchemePreference

ColorSchemePreference: "system" | "dark" | ""
\ No newline at end of file +ColorSchemePreference | React18 Loaders

Type alias ColorSchemePreference

ColorSchemePreference: "system" | "dark" | ""
\ No newline at end of file diff --git a/docs/types/utils.ResolvedScheme.html b/docs/types/utils.ResolvedScheme.html index 97bb7e08..69c0c978 100644 --- a/docs/types/utils.ResolvedScheme.html +++ b/docs/types/utils.ResolvedScheme.html @@ -1 +1 @@ -ResolvedScheme | React18 Loaders

Type alias ResolvedScheme

ResolvedScheme: "dark" | ""
\ No newline at end of file +ResolvedScheme | React18 Loaders

Type alias ResolvedScheme

ResolvedScheme: "dark" | ""
\ No newline at end of file diff --git a/docs/variables/constants.DARK.html b/docs/variables/constants.DARK.html index 6aead54b..fb69f559 100644 --- a/docs/variables/constants.DARK.html +++ b/docs/variables/constants.DARK.html @@ -1 +1 @@ -DARK | React18 Loaders

Variable DARKConst

DARK: ResolvedScheme = "dark"
\ No newline at end of file +DARK | React18 Loaders

Variable DARKConst

DARK: ResolvedScheme = "dark"
\ No newline at end of file diff --git a/docs/variables/constants.LIGHT.html b/docs/variables/constants.LIGHT.html index e3bfad36..282ded7c 100644 --- a/docs/variables/constants.LIGHT.html +++ b/docs/variables/constants.LIGHT.html @@ -1 +1 @@ -LIGHT | React18 Loaders

Variable LIGHTConst

LIGHT: ResolvedScheme = ""
\ No newline at end of file +LIGHT | React18 Loaders

Variable LIGHTConst

LIGHT: ResolvedScheme = ""
\ No newline at end of file diff --git a/docs/variables/constants.SYSTEM.html b/docs/variables/constants.SYSTEM.html index 3d88b40f..2330d32d 100644 --- a/docs/variables/constants.SYSTEM.html +++ b/docs/variables/constants.SYSTEM.html @@ -1 +1 @@ -SYSTEM | React18 Loaders

Variable SYSTEMConst

SYSTEM: ColorSchemePreference = "system"
\ No newline at end of file +SYSTEM | React18 Loaders

Variable SYSTEMConst

SYSTEM: ColorSchemePreference = "system"
\ No newline at end of file diff --git a/docs/variables/constants.modes.html b/docs/variables/constants.modes.html index 1cb6b391..21c5f8d4 100644 --- a/docs/variables/constants.modes.html +++ b/docs/variables/constants.modes.html @@ -1 +1 @@ -modes | React18 Loaders

Variable modesConst

modes: ColorSchemePreference[] = ...
\ No newline at end of file +modes | React18 Loaders

Variable modesConst

modes: ColorSchemePreference[] = ...
\ No newline at end of file diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 34ad8dc4..3df22cc6 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -16,10 +16,10 @@ "@repo/shared": "workspace:*", "next": "^14.2.4", "nextjs-darkmode": "workspace:*", - "nextjs-themes": "^3.1.5", + "nextjs-themes": "^3.1.6", "react": "^18.3.1", "react-dom": "^18.3.1", - "react18-loaders": "^1.1.2" + "react18-loaders": "^1.1.3" }, "devDependencies": { "@next/eslint-plugin-next": "^14.2.4", diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json index ddd80e0c..16594c44 100644 --- a/examples/tailwind/package.json +++ b/examples/tailwind/package.json @@ -17,10 +17,10 @@ "@repo/shared": "workspace:*", "next": "^14.2.4", "nextjs-darkmode": "workspace:*", - "nextjs-themes": "^3.1.5", + "nextjs-themes": "^3.1.6", "react": "^18.3.1", "react-dom": "^18.3.1", - "react18-loaders": "^1.1.2" + "react18-loaders": "^1.1.3" }, "devDependencies": { "@next/eslint-plugin-next": "^14.2.4", diff --git a/examples/vite/package.json b/examples/vite/package.json index bfb8030a..92789b70 100644 --- a/examples/vite/package.json +++ b/examples/vite/package.json @@ -15,7 +15,7 @@ "nextjs-darkmode": "workspace:*", "react": "^18.3.1", "react-dom": "^18.3.1", - "react18-loaders": "^1.1.2", + "react18-loaders": "^1.1.3", "react18-themes": "^3.1.0" }, "devDependencies": { diff --git a/packages/shared/package.json b/packages/shared/package.json index dd090f16..d15d58ed 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -41,10 +41,10 @@ "@mayank1513/fork-me": "^2.1.2", "@repo/scripts": "workspace:*", "nextjs-darkmode": "workspace:*", - "nextjs-themes": "^3.1.5", + "nextjs-themes": "^3.1.6", "r18gs": "^1.1.2", "react-live": "^4.1.6", - "react18-loaders": "^1.1.2" + "react18-loaders": "^1.1.3" }, "peerDependencies": { "@types/react": "16.8 - 19", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 53981c47..970a03a1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -64,8 +64,8 @@ importers: specifier: workspace:* version: link:../../lib nextjs-themes: - specifier: ^3.1.5 - version: 3.1.5(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^3.1.6 + version: 3.1.6(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -73,8 +73,8 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) react18-loaders: - specifier: ^1.1.2 - version: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^1.1.3 + version: 1.1.3(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) devDependencies: '@next/eslint-plugin-next': specifier: ^14.2.4 @@ -116,8 +116,8 @@ importers: specifier: workspace:* version: link:../../lib nextjs-themes: - specifier: ^3.1.5 - version: 3.1.5(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^3.1.6 + version: 3.1.6(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -125,8 +125,8 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) react18-loaders: - specifier: ^1.1.2 - version: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^1.1.3 + version: 1.1.3(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) devDependencies: '@next/eslint-plugin-next': specifier: ^14.2.4 @@ -174,8 +174,8 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) react18-loaders: - specifier: ^1.1.2 - version: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^1.1.3 + version: 1.1.3(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) react18-themes: specifier: ^3.1.0 version: 3.1.0(@remix-run/node@2.9.2(typescript@5.4.5))(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) @@ -338,8 +338,8 @@ importers: specifier: workspace:* version: link:../../lib nextjs-themes: - specifier: ^3.1.5 - version: 3.1.5(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^3.1.6 + version: 3.1.6(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) r18gs: specifier: ^1.1.2 version: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) @@ -347,8 +347,8 @@ importers: specifier: ^4.1.6 version: 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react18-loaders: - specifier: ^1.1.2 - version: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) + specifier: ^1.1.3 + version: 1.1.3(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) devDependencies: '@repo/eslint-config': specifier: workspace:* @@ -3883,8 +3883,8 @@ packages: sass: optional: true - nextjs-themes@3.1.5: - resolution: {integrity: sha512-lxmoA69R8e+Aa8CQ9y3LVSN/LifHZeUSiZbzloVo9od9Gkq5DlNFp0o8q2QyB1ylady4bhWPn8rd3e2T07fBvQ==} + nextjs-themes@3.1.6: + resolution: {integrity: sha512-X3mUS1/CfeAt7P++5wXrIROsGmhyjv1SDVM4HIUYLmEctSYhiQk4bxWUPEtuxgetukVCLTTLnuitDD87XyG/ww==} peerDependencies: '@types/react': 16.8 - 19 react: 16.8 - 19 @@ -4376,8 +4376,8 @@ packages: peerDependencies: react: '>=16.8' - react18-loaders@1.1.2: - resolution: {integrity: sha512-sRicyCHftC97LXvPqHbVaKk0pBtLbvjcSyVRlRc//R+9vTlL+FVgsbbaC37uBMbpijqtIubMAVn7xrr9BIsR2Q==} + react18-loaders@1.1.3: + resolution: {integrity: sha512-ASVWnD4Du1AsCYEpqCkzInuKn7NQt3AXQOwUjVHwM0DowpUoVFi7GWAzAry+LEjKfJFX5gZZF9CiRUqMGBTbeg==} peerDependencies: '@types/react': 16.8 - 19 next: 10 - 15 @@ -9982,7 +9982,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - nextjs-themes@3.1.5(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1): + nextjs-themes@3.1.6(@types/react@18.3.3)(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1): dependencies: '@types/react': 18.3.3 r18gs: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1) @@ -10510,7 +10510,7 @@ snapshots: react: 18.3.1 optional: true - react18-loaders@1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1): + react18-loaders@1.1.3(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1): dependencies: '@types/react': 18.3.3 r18gs: 1.1.2(@types/react@18.3.3)(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.6))(react@18.3.1)