From d210d5bf9667b095caadb2fe1b3558d291fd514c Mon Sep 17 00:00:00 2001 From: mayank1513 Date: Sat, 22 Jun 2024 16:16:58 +0000 Subject: [PATCH] upgrade deps && docs --- docs/functions/index.useRGS.html | 2 +- docs/functions/plugins_persist.persist.html | 2 +- docs/functions/utils.createHook.html | 2 +- docs/functions/utils.createSetter.html | 2 +- docs/functions/utils.createSubcriber.html | 2 +- docs/functions/utils.initWithPlugins.html | 2 +- docs/functions/utils.useRGSWithPlugins.html | 2 +- docs/functions/with_plugins.create.html | 2 +- docs/functions/with_plugins.withPlugins.html | 2 +- .../plugins_persist.PersistOptions.html | 6 +- docs/modules/index.html | 2 +- docs/modules/plugins_persist.html | 2 +- docs/modules/utils.html | 2 +- docs/modules/with_plugins.html | 2 +- docs/types/utils.Plugin.html | 2 +- docs/types/utils.SetStateAction.html | 2 +- docs/types/utils.SetterArgType.html | 2 +- docs/types/utils.ValueType.html | 2 +- docs/types/utils._internal_.Listener.html | 2 +- docs/types/utils._internal_.Mutate.html | 2 +- docs/types/utils._internal_.RGS.html | 2 +- docs/types/utils._internal_.Subscriber.html | 2 +- docs/variables/utils.globalRGS.html | 2 +- examples/nextjs/package.json | 2 +- examples/remix/package.json | 2 +- examples/vite/package.json | 2 +- package.json | 6 +- packages/shared/package.json | 2 +- pnpm-lock.yaml | 66 +++++++++---------- 29 files changed, 65 insertions(+), 65 deletions(-) diff --git a/docs/functions/index.useRGS.html b/docs/functions/index.useRGS.html index 1c4e9406..7fabc043 100644 --- a/docs/functions/index.useRGS.html +++ b/docs/functions/index.useRGS.html @@ -10,4 +10,4 @@

Returns [T, SetStateAction<T>]

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/plugins_persist.persist.html b/docs/functions/plugins_persist.persist.html index f0b8d222..9348ff34 100644 --- a/docs/functions/plugins_persist.persist.html +++ b/docs/functions/plugins_persist.persist.html @@ -1,3 +1,3 @@ persist | React18 Global Store

A plugin that persists and syncs RGS store between tabs.

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/utils.createHook.html b/docs/functions/utils.createHook.html index a6f37d6f..222c6985 100644 --- a/docs/functions/utils.createHook.html +++ b/docs/functions/utils.createHook.html @@ -1,2 +1,2 @@ createHook | React18 Global Store

Extract coomon create hook logic to utils

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/utils.createSetter.html b/docs/functions/utils.createSetter.html index 7e54b6b8..98a526e3 100644 --- a/docs/functions/utils.createSetter.html +++ b/docs/functions/utils.createSetter.html @@ -1,2 +1,2 @@ createSetter | React18 Global Store

setter function to set the state.

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/utils.createSubcriber.html b/docs/functions/utils.createSubcriber.html index 8959c8bf..248a576b 100644 --- a/docs/functions/utils.createSubcriber.html +++ b/docs/functions/utils.createSubcriber.html @@ -1,2 +1,2 @@ createSubcriber | React18 Global Store

craete subscriber function to subscribe to the store.

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/utils.initWithPlugins.html b/docs/functions/utils.initWithPlugins.html index 942a42c7..57c1cb36 100644 --- a/docs/functions/utils.initWithPlugins.html +++ b/docs/functions/utils.initWithPlugins.html @@ -1,2 +1,2 @@ initWithPlugins | React18 Global Store

Initialize the named store when invoked for the first time.

-
  • Type Parameters

    • T

    Parameters

    • key: string
    • Optionalvalue: ValueType<T>
    • plugins: Plugin<T>[] = []
    • doNotInit: boolean = false

    Returns void

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/utils.useRGSWithPlugins.html b/docs/functions/utils.useRGSWithPlugins.html index bdb16a3d..41d1e402 100644 --- a/docs/functions/utils.useRGSWithPlugins.html +++ b/docs/functions/utils.useRGSWithPlugins.html @@ -12,4 +12,4 @@

Returns [T, SetStateAction<T>]

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/with_plugins.create.html b/docs/functions/with_plugins.create.html index 9c8fc9f2..f5b0b42f 100644 --- a/docs/functions/with_plugins.create.html +++ b/docs/functions/with_plugins.create.html @@ -8,4 +8,4 @@

Returns (() => [T, SetStateAction<T>])

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/with_plugins.withPlugins.html b/docs/functions/with_plugins.withPlugins.html index 218340d4..ad3c6c81 100644 --- a/docs/functions/with_plugins.withPlugins.html +++ b/docs/functions/with_plugins.withPlugins.html @@ -1,4 +1,4 @@ withPlugins | React18 Global Store

Creates a hook similar to useRGS, but with plugins to be applied on first invocation.

  • Type Parameters

    • T

    Parameters

    • plugins: Plugin<T>[]

      Plugins to be applied to the store.

    Returns (<U>(key: string, value?: U, doNotInit?: boolean) => [U, SetStateAction<U>])

    A hook that automatically initializes the store (if not already initialized) with the given plugins.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/interfaces/plugins_persist.PersistOptions.html b/docs/interfaces/plugins_persist.PersistOptions.html index b5470b68..94ac0b85 100644 --- a/docs/interfaces/plugins_persist.PersistOptions.html +++ b/docs/interfaces/plugins_persist.PersistOptions.html @@ -1,9 +1,9 @@ -PersistOptions | React18 Global Store
interface PersistOptions {
    storage?: "local" | "session" | "cookie";
    sync?: boolean;
}

Properties

storage? +PersistOptions | React18 Global Store
interface PersistOptions {
    storage?: "local" | "session" | "cookie";
    sync?: boolean;
}

Properties

Properties

storage?: "local" | "session" | "cookie"
local
 
-
sync?: boolean
true
+
sync?: boolean
true
 
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html index e832ee82..321da828 100644 --- a/docs/modules/index.html +++ b/docs/modules/index.html @@ -1,4 +1,4 @@ -index | React18 Global Store

References

Plugin +index | React18 Global Store

References

Plugin SetStateAction SetterArgType index diff --git a/docs/modules/plugins_persist.html b/docs/modules/plugins_persist.html index d5487779..e2400d38 100644 --- a/docs/modules/plugins_persist.html +++ b/docs/modules/plugins_persist.html @@ -1,3 +1,3 @@ -plugins/persist | React18 Global Store

Index

Interfaces

PersistOptions +plugins/persist | React18 Global Store

Index

Interfaces

Functions

\ No newline at end of file diff --git a/docs/modules/utils.html b/docs/modules/utils.html index f4cc6e5b..a553c402 100644 --- a/docs/modules/utils.html +++ b/docs/modules/utils.html @@ -1,4 +1,4 @@ -utils | React18 Global Store

Index

Modules

<internal> +utils | React18 Global Store

Index

Modules

Type Aliases

Plugin SetStateAction SetterArgType diff --git a/docs/modules/with_plugins.html b/docs/modules/with_plugins.html index eb7a6158..dbef93a0 100644 --- a/docs/modules/with_plugins.html +++ b/docs/modules/with_plugins.html @@ -1,4 +1,4 @@ -with-plugins | React18 Global Store

References

useRGSWithPlugins +with-plugins | React18 Global Store

References

Re-exports useRGSWithPlugins
\ No newline at end of file diff --git a/docs/types/utils.Plugin.html b/docs/types/utils.Plugin.html index bbeb1793..3d45843e 100644 --- a/docs/types/utils.Plugin.html +++ b/docs/types/utils.Plugin.html @@ -1 +1 @@ -Plugin | React18 Global Store
Plugin<T>: {
    init?: ((key: string, value: T | undefined, mutate: Mutate<T>) => void);
    onChange?: ((key: string, value?: T) => void);
}

Type Parameters

  • T
\ No newline at end of file +Plugin | React18 Global Store
Plugin<T>: {
    init?: ((key: string, value: T | undefined, mutate: Mutate<T>) => void);
    onChange?: ((key: string, value?: T) => void);
}

Type Parameters

  • T
\ No newline at end of file diff --git a/docs/types/utils.SetStateAction.html b/docs/types/utils.SetStateAction.html index 891e9d50..a4c18719 100644 --- a/docs/types/utils.SetStateAction.html +++ b/docs/types/utils.SetStateAction.html @@ -1 +1 @@ -SetStateAction | React18 Global Store

Type Alias SetStateAction<T>

SetStateAction<T>: ((value: SetterArgType<T>) => void)

Type Parameters

  • T
\ No newline at end of file +SetStateAction | React18 Global Store

Type Alias SetStateAction<T>

SetStateAction<T>: ((value: SetterArgType<T>) => void)

Type Parameters

  • T
\ No newline at end of file diff --git a/docs/types/utils.SetterArgType.html b/docs/types/utils.SetterArgType.html index 3e9d1f46..d5e8fbea 100644 --- a/docs/types/utils.SetterArgType.html +++ b/docs/types/utils.SetterArgType.html @@ -1 +1 @@ -SetterArgType | React18 Global Store

Type Alias SetterArgType<T>

SetterArgType<T>: T | ((prevState: T) => T)

Type Parameters

  • T
\ No newline at end of file +SetterArgType | React18 Global Store

Type Alias SetterArgType<T>

SetterArgType<T>: T | ((prevState: T) => T)

Type Parameters

  • T
\ No newline at end of file diff --git a/docs/types/utils.ValueType.html b/docs/types/utils.ValueType.html index 377e8763..769cb417 100644 --- a/docs/types/utils.ValueType.html +++ b/docs/types/utils.ValueType.html @@ -1 +1 @@ -ValueType | React18 Global Store

Type Alias ValueType<T>

ValueType<T>: T | (() => T)

Type Parameters

  • T
\ No newline at end of file +ValueType | React18 Global Store

Type Alias ValueType<T>

ValueType<T>: T | (() => T)

Type Parameters

  • T
\ No newline at end of file diff --git a/docs/types/utils._internal_.Listener.html b/docs/types/utils._internal_.Listener.html index bd796872..948294b3 100644 --- a/docs/types/utils._internal_.Listener.html +++ b/docs/types/utils._internal_.Listener.html @@ -1 +1 @@ -Listener | React18 Global Store
Listener: (() => void)
\ No newline at end of file +Listener | React18 Global Store
Listener: (() => void)
\ No newline at end of file diff --git a/docs/types/utils._internal_.Mutate.html b/docs/types/utils._internal_.Mutate.html index 4124fd95..cf7452bb 100644 --- a/docs/types/utils._internal_.Mutate.html +++ b/docs/types/utils._internal_.Mutate.html @@ -1 +1 @@ -Mutate | React18 Global Store
Mutate<T>: ((value?: T) => void)

Type Parameters

  • T
\ No newline at end of file +Mutate | React18 Global Store
Mutate<T>: ((value?: T) => void)

Type Parameters

  • T
\ No newline at end of file diff --git a/docs/types/utils._internal_.RGS.html b/docs/types/utils._internal_.RGS.html index a2f14577..dd35014a 100644 --- a/docs/types/utils._internal_.RGS.html +++ b/docs/types/utils._internal_.RGS.html @@ -1 +1 @@ -RGS | React18 Global Store
RGS: [unknown, Listener[], SetStateAction<unknown> | null, Subscriber]
\ No newline at end of file +RGS | React18 Global Store
RGS: [unknown, Listener[], SetStateAction<unknown> | null, Subscriber]
\ No newline at end of file diff --git a/docs/types/utils._internal_.Subscriber.html b/docs/types/utils._internal_.Subscriber.html index 6e2d09ec..e56c488a 100644 --- a/docs/types/utils._internal_.Subscriber.html +++ b/docs/types/utils._internal_.Subscriber.html @@ -1 +1 @@ -Subscriber | React18 Global Store
Subscriber: ((l: Listener) => (() => void))
\ No newline at end of file +Subscriber | React18 Global Store
Subscriber: ((l: Listener) => (() => void))
\ No newline at end of file diff --git a/docs/variables/utils.globalRGS.html b/docs/variables/utils.globalRGS.html index e15931e0..4a982fdf 100644 --- a/docs/variables/utils.globalRGS.html +++ b/docs/variables/utils.globalRGS.html @@ -1 +1 @@ -globalRGS | React18 Global Store

Variable globalRGSConst

globalRGS: Record<string, undefined | RGS> = globalThisForBetterMinification.rgs
\ No newline at end of file +globalRGS | React18 Global Store

Variable globalRGSConst

globalRGS: Record<string, undefined | RGS> = globalThisForBetterMinification.rgs
\ No newline at end of file diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 9bacf6cd..78273f4f 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -14,7 +14,7 @@ "@repo/logger": "workspace:*", "@repo/shared": "workspace:*", "next": "^14.2.4", - "nextjs-darkmode": "^1.0.3", + "nextjs-darkmode": "^1.0.4", "nextjs-themes": "^3.1.6", "r18gs": "workspace:*", "react": "^18.3.1", diff --git a/examples/remix/package.json b/examples/remix/package.json index 0d2327a6..de450adc 100644 --- a/examples/remix/package.json +++ b/examples/remix/package.json @@ -17,7 +17,7 @@ "@repo/shared": "workspace:*", "@vercel/analytics": "^1.3.1", "@vercel/remix-entry-server": "^0.1.1", - "nextjs-darkmode": "^1.0.3", + "nextjs-darkmode": "^1.0.4", "r18gs": "workspace:*", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/vite/package.json b/examples/vite/package.json index 7926cca3..f300feb8 100644 --- a/examples/vite/package.json +++ b/examples/vite/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@repo/shared": "workspace:*", - "nextjs-darkmode": "^1.0.3", + "nextjs-darkmode": "^1.0.4", "r18gs": "workspace:*", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/package.json b/package.json index 1db60af6..b7ec7379 100644 --- a/package.json +++ b/package.json @@ -22,10 +22,10 @@ "typedoc": "^0.26.0", "typedoc-plugin-extras": "^3.0.0", "typedoc-plugin-inline-sources": "^1.0.2", - "typedoc-plugin-mdn-links": "^3.1.30", - "typedoc-plugin-missing-exports": "^2.3.0", + "typedoc-plugin-mdn-links": "^3.2.0", + "typedoc-plugin-missing-exports": "^3.0.0", "typedoc-plugin-rename-defaults": "^0.7.1", - "typedoc-plugin-zod": "^1.1.2" + "typedoc-plugin-zod": "^1.2.0" }, "packageManager": "pnpm@9.4.0", "engines": { diff --git a/packages/shared/package.json b/packages/shared/package.json index 27da7cd4..0d9184d3 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -40,7 +40,7 @@ "dependencies": { "@mayank1513/fork-me": "^2.1.2", "@repo/scripts": "workspace:*", - "nextjs-darkmode": "^1.0.3", + "nextjs-darkmode": "^1.0.4", "nextjs-themes": "^3.1.6", "r18gs": "workspace:*", "react-live": "^4.1.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a3afe006..26aff6ee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -39,17 +39,17 @@ importers: specifier: ^1.0.2 version: 1.0.2(typedoc@0.26.0(typescript@5.5.2)) typedoc-plugin-mdn-links: - specifier: ^3.1.30 - version: 3.1.30(typedoc@0.26.0(typescript@5.5.2)) + specifier: ^3.2.0 + version: 3.2.0(typedoc@0.26.0(typescript@5.5.2)) typedoc-plugin-missing-exports: - specifier: ^2.3.0 - version: 2.3.0(typedoc@0.26.0(typescript@5.5.2)) + specifier: ^3.0.0 + version: 3.0.0(typedoc@0.26.0(typescript@5.5.2)) typedoc-plugin-rename-defaults: specifier: ^0.7.1 version: 0.7.1(typedoc@0.26.0(typescript@5.5.2)) typedoc-plugin-zod: - specifier: ^1.1.2 - version: 1.1.2(typedoc@0.26.0(typescript@5.5.2)) + specifier: ^1.2.0 + version: 1.2.0(typedoc@0.26.0(typescript@5.5.2)) examples/nextjs: dependencies: @@ -63,8 +63,8 @@ importers: specifier: ^14.2.4 version: 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) nextjs-darkmode: - specifier: ^1.0.3 - version: 1.0.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) + specifier: ^1.0.4 + version: 1.0.4(@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) nextjs-themes: specifier: ^3.1.6 version: 3.1.6(@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) @@ -127,8 +127,8 @@ importers: specifier: ^0.1.1 version: 0.1.1(react@18.3.1) nextjs-darkmode: - specifier: ^1.0.3 - version: 1.0.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) + specifier: ^1.0.4 + version: 1.0.4(@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) r18gs: specifier: workspace:* version: link:../../lib @@ -170,8 +170,8 @@ importers: specifier: workspace:* version: link:../../packages/shared nextjs-darkmode: - specifier: ^1.0.3 - version: 1.0.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) + specifier: ^1.0.4 + version: 1.0.4(@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) r18gs: specifier: workspace:* version: link:../../lib @@ -336,8 +336,8 @@ importers: specifier: 10 - 14 version: 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) nextjs-darkmode: - specifier: ^1.0.3 - version: 1.0.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) + specifier: ^1.0.4 + version: 1.0.4(@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) nextjs-themes: specifier: ^3.1.6 version: 3.1.6(@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) @@ -2579,8 +2579,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.4.809: - resolution: {integrity: sha512-Xg2vEbpMfkVivK8l9QwbjkLoHSUQouZLC0InWHqKJhNvB1VGoOfdlzbdnl4f1jVGTnxmWV1dP/IwoJRqJP78ug==} + electron-to-chromium@1.4.810: + resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -4595,8 +4595,8 @@ packages: sass: optional: true - nextjs-darkmode@1.0.3: - resolution: {integrity: sha512-Mof4E4I0BHMkIEdBv8y3Nsh2nqB9fazJsArFgHABfLt4UCRMa9j4M7CAZCMi3DPjAGGGHxtqM5qFGvTDH8a4ug==} + nextjs-darkmode@1.0.4: + resolution: {integrity: sha512-GRpodrZ6NdCef7Ax9SYSMjWvweATcL4wC1PrRJcR07cU7vMOvq4TJLjLwkI7SuEh1aU13AD5iZ6xXhUVV8B1DA==} peerDependencies: '@types/react': 16.8 - 19 react: 16.8 - 19 @@ -6042,25 +6042,25 @@ packages: peerDependencies: typedoc: ^0.25.7 - typedoc-plugin-mdn-links@3.1.30: - resolution: {integrity: sha512-aB3UqyRGdxYziOHKzE7AQPh+9xpqqHHrp23F+T6yshHeuSiauCL+zzgTRhi4Ad1x30/7rTkCtyQ5dfO/+1FDKA==} + typedoc-plugin-mdn-links@3.2.0: + resolution: {integrity: sha512-6q/FvPwiBukjgGG8SfBNTkBuT7Vv089NUdB0fwdCtIiCgpT88kLnV4obS4aqFxV/Wq96Ju4IJcngjFYnEsJ8aA==} peerDependencies: - typedoc: '>= 0.23.14 || 0.24.x || 0.25.x' + typedoc: '>= 0.23.14 || 0.24.x || 0.25.x || 0.26.x' - typedoc-plugin-missing-exports@2.3.0: - resolution: {integrity: sha512-iI9ITNNLlbsLCBBeYDyu0Qqp3GN/9AGyWNKg8bctRXuZEPT7G1L+0+MNWG9MsHcf/BFmNbXL0nQ8mC/tXRicog==} + typedoc-plugin-missing-exports@3.0.0: + resolution: {integrity: sha512-R7D8fYrK34mBFZSlF1EqJxfqiUSlQSmyrCiQgTQD52nNm6+kUtqwiaqaNkuJ2rA2wBgWFecUA8JzHT7x2r7ePg==} peerDependencies: - typedoc: 0.24.x || 0.25.x + typedoc: 0.26.x typedoc-plugin-rename-defaults@0.7.1: resolution: {integrity: sha512-hgg4mAy5IumgUmPOnVVGmGywjTGtUCmRJ2jRbseqtXdlUuYKj652ODL9joUWFt5uvNu4Dr/pNILc/qsKGHJw+w==} peerDependencies: typedoc: '>=0.22.x <0.27.x' - typedoc-plugin-zod@1.1.2: - resolution: {integrity: sha512-jsmuYg1xsGjwKdhKN4tgRYORnbKpU7v5B1ZpsazMH5lUsI6ZLxBqAY5iiZ06oz/01gHOsAdhpABgWD97MOjKQA==} + typedoc-plugin-zod@1.2.0: + resolution: {integrity: sha512-eFvPQ4iJsoru4HJP8z7F0NhRxPBjgVPoM0j/xipB7nkGLYhfUjEOlABayaTdBiMocPNCXOCBjFWBHEJGBiMRdw==} peerDependencies: - typedoc: 0.23.x || 0.24.x || 0.25.x + typedoc: 0.23.x || 0.24.x || 0.25.x || 0.26.x typedoc@0.26.0: resolution: {integrity: sha512-OcYevjHsMN8DfpaL0dSBGAEBhOxuBB5Au8QVs9oz9iB0kRStPZwXLFWqh9gwbMUxNjW3yQuIM5GrVVauMJ2Akw==} @@ -8611,7 +8611,7 @@ snapshots: browserslist@4.23.1: dependencies: caniuse-lite: 1.0.30001636 - electron-to-chromium: 1.4.809 + electron-to-chromium: 1.4.810 node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.1) @@ -9136,7 +9136,7 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.4.809: {} + electron-to-chromium@1.4.810: {} emittery@0.13.1: {} @@ -12023,7 +12023,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - nextjs-darkmode@1.0.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): + nextjs-darkmode@1.0.4(@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) @@ -13587,11 +13587,11 @@ snapshots: dependencies: typedoc: 0.26.0(typescript@5.5.2) - typedoc-plugin-mdn-links@3.1.30(typedoc@0.26.0(typescript@5.5.2)): + typedoc-plugin-mdn-links@3.2.0(typedoc@0.26.0(typescript@5.5.2)): dependencies: typedoc: 0.26.0(typescript@5.5.2) - typedoc-plugin-missing-exports@2.3.0(typedoc@0.26.0(typescript@5.5.2)): + typedoc-plugin-missing-exports@3.0.0(typedoc@0.26.0(typescript@5.5.2)): dependencies: typedoc: 0.26.0(typescript@5.5.2) @@ -13600,7 +13600,7 @@ snapshots: camelcase: 8.0.0 typedoc: 0.26.0(typescript@5.5.2) - typedoc-plugin-zod@1.1.2(typedoc@0.26.0(typescript@5.5.2)): + typedoc-plugin-zod@1.2.0(typedoc@0.26.0(typescript@5.5.2)): dependencies: typedoc: 0.26.0(typescript@5.5.2)