foxact 0.2.50 → 0.2.52

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 (41) hide show
  1. package/context-reducer/index.cjs +1 -0
  2. package/context-reducer/index.d.ts +55 -0
  3. package/context-reducer/index.mjs +1 -0
  4. package/create-context-reducer/index.cjs +1 -0
  5. package/create-context-reducer/index.d.ts +1 -0
  6. package/create-context-reducer/index.mjs +1 -0
  7. package/create-magic-portal/index.cjs +1 -1
  8. package/create-magic-portal/index.mjs +1 -1
  9. package/create-storage-hook/index.cjs +1 -1
  10. package/create-storage-hook/index.mjs +1 -1
  11. package/current-year/index.cjs +1 -1
  12. package/current-year/index.mjs +1 -1
  13. package/fetch-jsonp/index.cjs +1 -1
  14. package/fetch-jsonp/index.mjs +1 -1
  15. package/is-safari/index.cjs +1 -1
  16. package/is-safari/index.mjs +1 -1
  17. package/magic-portal/index.cjs +1 -1
  18. package/magic-portal/index.d.ts +6 -0
  19. package/magic-portal/index.mjs +1 -1
  20. package/no-ssr/index.cjs +1 -1
  21. package/no-ssr/index.mjs +1 -1
  22. package/open-new-tab/index.cjs +1 -1
  23. package/open-new-tab/index.mjs +1 -1
  24. package/package.json +78 -56
  25. package/request-idle-callback/index.cjs +1 -1
  26. package/request-idle-callback/index.mjs +1 -1
  27. package/sizes.json +1 -1
  28. package/use-is-online/index.cjs +1 -1
  29. package/use-is-online/index.mjs +1 -1
  30. package/use-isomorphic-layout-effect/index.cjs +1 -1
  31. package/use-isomorphic-layout-effect/index.mjs +1 -1
  32. package/use-media-query/index.cjs +1 -1
  33. package/use-media-query/index.mjs +1 -1
  34. package/use-next-link/index.cjs +1 -1
  35. package/use-next-link/index.mjs +1 -1
  36. package/use-page-visibility/index.cjs +1 -1
  37. package/use-page-visibility/index.mjs +1 -1
  38. package/use-stable-handler-only-when-you-know-what-you-are-doing-or-you-will-be-fired/index.cjs +1 -1
  39. package/use-stable-handler-only-when-you-know-what-you-are-doing-or-you-will-be-fired/index.mjs +1 -1
  40. package/use-url-hash-state/index.cjs +1 -1
  41. package/use-url-hash-state/index.mjs +1 -1
@@ -0,0 +1 @@
1
+ "use strict";var e=require("react/jsx-runtime");require("client-only");var r=require("react"),t=require("../noop/index.cjs"),n=require("../chunks/index.b9dLwVor.cjs"),u=require("../chunks/index.BtiK5_Nn.cjs");exports.createContextReducer=function(i,c,o){let s;s=u.n(o)?o(c):c;const l=r.createContext(s),x=r.createContext(t.noop);return[t=>{var u;let{children:s,initialArg:a,init:d}=t;const v=null!=a?a:c,j=null!=(u=null!=d?d:o)?u:n.t,[q,C]=r.useReducer(i,v,j);return e.jsx(l.Provider,{value:q,children:e.jsx(x.Provider,{value:C,children:s})})},()=>r.useContext(l),()=>r.useContext(x),l]};
@@ -0,0 +1,55 @@
1
+ /**
2
+ * @see https://foxact.skk.moe/context-reducer
3
+ *
4
+ * Option 1:
5
+ *
6
+ * ```ts
7
+ * createContextReducer<S, A, I = S>(reducer, initialArg: I, init?: (arg: I) => S)
8
+ * ```
9
+ */
10
+ declare function createContextReducer<S, A, I = S>(reducer: (state: S, action: A) => S, initialArg: I, init?: (arg: I) => S): [
11
+ Provider: React.ComponentType<React.PropsWithChildren>,
12
+ useValue: () => S,
13
+ useDispatch: () => React.Dispatch<A>,
14
+ StateContext: React.Context<S>
15
+ ];
16
+ /**
17
+ * @see https://foxact.skk.moe/context-reducer
18
+ *
19
+ * Option 2:
20
+ *
21
+ * ```ts
22
+ * createContextReducer<S, A, I = S>(reducer, initialArg?: I, init?: (arg: I) => S)
23
+ * ```
24
+ * Call `initialArg`/`init` in `<Provider>` is optional
25
+ */
26
+ declare function createContextReducer<S, A, I = S>(reducer: (state: S, action: A) => S, initialArg?: I, init?: (arg: I) => S): [
27
+ Provider: React.ComponentType<React.PropsWithChildren<{
28
+ initialArg?: I;
29
+ init?: (arg: I) => S;
30
+ }>>,
31
+ useValue: () => S,
32
+ useDispatch: () => React.Dispatch<A>,
33
+ StateContext: React.Context<S>
34
+ ];
35
+ /**
36
+ * @see https://foxact.skk.moe/context-reducer
37
+ *
38
+ * Option 3:
39
+ *
40
+ * ```ts
41
+ * createContextReducer<S, A, I = S>(reducer)
42
+ * ```
43
+ * Provide `initialArg` and/or `init` via `<Provider initialArg={...} init={...}>`
44
+ */
45
+ declare function createContextReducer<S, A, I = S>(reducer: (state: S, action: A) => S): [
46
+ Provider: React.ComponentType<React.PropsWithChildren<Required<{
47
+ initialArg?: I;
48
+ init?: (arg: I) => S;
49
+ }>>>,
50
+ useValue: () => S,
51
+ useDispatch: () => React.Dispatch<A>,
52
+ StateContext: React.Context<S>
53
+ ];
54
+
55
+ export { createContextReducer };
@@ -0,0 +1 @@
1
+ import{jsx as r}from"react/jsx-runtime";import"client-only";import{useContext as n,createContext as e,useReducer as t}from"react";import{noop as i}from"../noop/index.mjs";import{t as o}from"../chunks/index.D0KaUCcV.mjs";import{n as m}from"../chunks/index.C9-3oDdv.mjs";function l(l,c,u){const d=e(m(u)?u(c):c),p=e(i);return[n=>{var e;let{children:i,initialArg:m,init:s}=n;const[a,f]=t(l,null!=m?m:c,null!=(e=null!=s?s:u)?e:o);return r(d.Provider,{value:a,children:r(p.Provider,{value:f,children:i})})},()=>n(d),()=>n(p),d]}export{l as createContextReducer};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../context-reducer/index.cjs");require("react/jsx-runtime"),require("client-only"),require("react"),require("../noop/index.cjs"),require("../chunks/index.b9dLwVor.cjs"),require("../chunks/index.BtiK5_Nn.cjs"),exports.createContextReducer=e.createContextReducer;
@@ -0,0 +1 @@
1
+ export { createContextReducer } from '../context-reducer/index.js';
@@ -0,0 +1 @@
1
+ export{createContextReducer}from"../context-reducer/index.mjs";import"react/jsx-runtime";import"client-only";import"react";import"../noop/index.mjs";import"../chunks/index.D0KaUCcV.mjs";import"../chunks/index.C9-3oDdv.mjs";
@@ -1 +1 @@
1
- "use strict";var e=require("../magic-portal/index.cjs");require("react/jsx-runtime"),require("client-only"),require("react-dom"),require("../context-state/index.cjs"),require("react"),require("../noop/index.cjs"),exports.createMagicPortal=e.createMagicPortal;
1
+ "use strict";var e=require("../magic-portal/index.cjs");require("react/jsx-runtime"),require("client-only"),require("react-dom"),require("../context-state/index.cjs"),require("react"),require("../noop/index.cjs"),require("../no-ssr/index.cjs"),exports.createMagicPortal=e.createMagicPortal;
@@ -1 +1 @@
1
- export{createMagicPortal}from"../magic-portal/index.mjs";import"react/jsx-runtime";import"client-only";import"react-dom";import"../context-state/index.mjs";import"react";import"../noop/index.mjs";
1
+ export{createMagicPortal}from"../magic-portal/index.mjs";import"react/jsx-runtime";import"client-only";import"react-dom";import"../context-state/index.mjs";import"react";import"../noop/index.mjs";import"../no-ssr/index.mjs";
@@ -1 +1 @@
1
- "use strict";require("client-only");var e=require("react"),n=require("../noop/index.cjs"),o=require("../use-isomorphic-layout-effect/index.cjs"),t=require("../no-ssr/index.cjs"),r=require("../chunks/index.b9dLwVor.cjs"),i=require("../chunks/index.BtiK5_Nn.cjs");function a(){throw t.noSSRError("useLocalStorage cannot be used on the server without a serverValue")}exports.createStorage=function(t){const l="localStorage"===t?"foxact-use-local-storage":"foxact-use-session-storage",c="localStorage"===t?"foxact/use-local-storage":"foxact/use-session-storage",s="undefined"==typeof window?n.noop:e=>{window.dispatchEvent(new CustomEvent(l,{detail:e}))},u="undefined"==typeof window?n.noop:(e,n)=>{try{window[t].setItem(e,n)}catch(e){console.warn("[".concat(c,"] Failed to set value to ").concat(t,", it might be blocked"))}finally{s(e)}},d="undefined"==typeof window?n.noop:e=>{try{window[t].removeItem(e)}catch(e){console.warn("[".concat(c,"] Failed to remove value from ").concat(t,", it might be blocked"))}finally{s(e)}},w=e=>{if("undefined"==typeof window)return null;try{return window[t].getItem(e)}catch(e){return console.warn("[".concat(c,"] Failed to get value from ").concat(t,", it might be blocked")),null}};return{useStorage:function(t,c){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:JSON.stringify,deserializer:JSON.parse};const f=e.useCallback(e=>{if("undefined"==typeof window)return n.noop;const o=n=>{"key"in n&&n.key!==t||e()},r=n=>{n.detail===t&&e()};return window.addEventListener("storage",o),window.addEventListener(l,r),()=>{window.removeEventListener("storage",o),window.removeEventListener(l,r)}},[t]),v=s.raw?r.t:s.serializer,g=s.raw?r.t:s.deserializer,y=void 0===c?a:()=>v(c),h=e.useSyncExternalStore(f,()=>w(t),y),m=e.useMemo(()=>null===h?null:g(h),[h,g]),p=e.useCallback(e=>{try{const n=i.n(e)?e(null!=m?m:null):e;null===n?d(t):u(t,v(n))}catch(e){console.warn(e)}},[t,v,m]);return o.useLayoutEffect(()=>{null===w(t)&&void 0!==c&&u(t,v(c))},[g,t,v,c]),[null===m?void 0===c?null:c:m,p]},useSetStorage:(n,o)=>e.useCallback(e=>{try{null===e?d(n):u(n,o(e))}catch(e){console.warn(e)}},[n,o])}};
1
+ "use strict";require("client-only");var e=require("react"),o=require("../noop/index.cjs"),t=require("../use-isomorphic-layout-effect/index.cjs"),n=require("../no-ssr/index.cjs"),r=require("../chunks/index.b9dLwVor.cjs"),a=require("../chunks/index.BtiK5_Nn.cjs");function i(){throw n.noSSRError("useLocalStorage cannot be used on the server without a serverValue")}exports.createStorage=function(n){const l="localStorage"===n?"foxact-use-local-storage":"foxact-use-session-storage",s="localStorage"===n?"foxact/use-local-storage":"foxact/use-session-storage",c="u"<typeof window?o.noop:e=>{window.dispatchEvent(new CustomEvent(l,{detail:e}))},u="u"<typeof window?o.noop:(e,o)=>{try{window[n].setItem(e,o)}catch(e){console.warn("[".concat(s,"] Failed to set value to ").concat(n,", it might be blocked"))}finally{c(e)}},d="u"<typeof window?o.noop:e=>{try{window[n].removeItem(e)}catch(e){console.warn("[".concat(s,"] Failed to remove value from ").concat(n,", it might be blocked"))}finally{c(e)}},w=e=>{if("u"<typeof window)return null;try{return window[n].getItem(e)}catch(e){return console.warn("[".concat(s,"] Failed to get value from ").concat(n,", it might be blocked")),null}};return{useStorage:function(n,s){let c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:JSON.stringify,deserializer:JSON.parse};const f=e.useCallback(e=>{if("u"<typeof window)return o.noop;const t=o=>{"key"in o&&o.key!==n||e()},r=o=>{o.detail===n&&e()};return window.addEventListener("storage",t),window.addEventListener(l,r),()=>{window.removeEventListener("storage",t),window.removeEventListener(l,r)}},[n]),v=c.raw?r.t:c.serializer,g=c.raw?r.t:c.deserializer,y=void 0===s?i:()=>v(s),h=e.useSyncExternalStore(f,()=>w(n),y),m=e.useMemo(()=>null===h?null:g(h),[h,g]),p=e.useCallback(e=>{try{const o=a.n(e)?e(null!=m?m:null):e;null===o?d(n):u(n,v(o))}catch(e){console.warn(e)}},[n,v,m]);return t.useLayoutEffect(()=>{null===w(n)&&void 0!==s&&u(n,v(s))},[g,n,v,s]),[null===m?void 0===s?null:s:m,p]},useSetStorage:(o,t)=>e.useCallback(e=>{try{null===e?d(o):u(o,t(e))}catch(e){console.warn(e)}},[o,t])}};
@@ -1 +1 @@
1
- import"client-only";import{useCallback as e,useSyncExternalStore as o,useMemo as t}from"react";import{noop as n}from"../noop/index.mjs";import{useLayoutEffect as r}from"../use-isomorphic-layout-effect/index.mjs";import{noSSRError as i}from"../no-ssr/index.mjs";import{t as a}from"../chunks/index.D0KaUCcV.mjs";import{n as l}from"../chunks/index.C9-3oDdv.mjs";function s(){throw i("useLocalStorage cannot be used on the server without a serverValue")}function c(i){const c="localStorage"===i?"foxact-use-local-storage":"foxact-use-session-storage",d="localStorage"===i?"foxact/use-local-storage":"foxact/use-session-storage",u="undefined"==typeof window?n:e=>{window.dispatchEvent(new CustomEvent(c,{detail:e}))},w="undefined"==typeof window?n:(e,o)=>{try{window[i].setItem(e,o)}catch(e){console.warn("[".concat(d,"] Failed to set value to ").concat(i,", it might be blocked"))}finally{u(e)}},f="undefined"==typeof window?n:e=>{try{window[i].removeItem(e)}catch(e){console.warn("[".concat(d,"] Failed to remove value from ").concat(i,", it might be blocked"))}finally{u(e)}},m=e=>{if("undefined"==typeof window)return null;try{return window[i].getItem(e)}catch(e){return console.warn("[".concat(d,"] Failed to get value from ").concat(i,", it might be blocked")),null}};return{useStorage:function(i,d){let u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:JSON.stringify,deserializer:JSON.parse};const g=e(e=>{if("undefined"==typeof window)return n;const o=o=>{"key"in o&&o.key!==i||e()},t=o=>{o.detail===i&&e()};return window.addEventListener("storage",o),window.addEventListener(c,t),()=>{window.removeEventListener("storage",o),window.removeEventListener(c,t)}},[i]),v=u.raw?a:u.serializer,p=u.raw?a:u.deserializer,y=o(g,()=>m(i),void 0===d?s:()=>v(d)),h=t(()=>null===y?null:p(y),[y,p]),x=e(e=>{try{const o=l(e)?e(null!=h?h:null):e;null===o?f(i):w(i,v(o))}catch(e){console.warn(e)}},[i,v,h]);return r(()=>{null===m(i)&&void 0!==d&&w(i,v(d))},[p,i,v,d]),[null===h?void 0===d?null:d:h,x]},useSetStorage:(o,t)=>e(e=>{try{null===e?f(o):w(o,t(e))}catch(e){console.warn(e)}},[o,t])}}export{c as createStorage};
1
+ import"client-only";import{useCallback as e,useSyncExternalStore as o,useMemo as t}from"react";import{noop as n}from"../noop/index.mjs";import{useLayoutEffect as r}from"../use-isomorphic-layout-effect/index.mjs";import{noSSRError as i}from"../no-ssr/index.mjs";import{t as a}from"../chunks/index.D0KaUCcV.mjs";import{n as l}from"../chunks/index.C9-3oDdv.mjs";function s(){throw i("useLocalStorage cannot be used on the server without a serverValue")}function c(i){const c="localStorage"===i?"foxact-use-local-storage":"foxact-use-session-storage",u="localStorage"===i?"foxact/use-local-storage":"foxact/use-session-storage",d="u"<typeof window?n:e=>{window.dispatchEvent(new CustomEvent(c,{detail:e}))},w="u"<typeof window?n:(e,o)=>{try{window[i].setItem(e,o)}catch(e){console.warn("[".concat(u,"] Failed to set value to ").concat(i,", it might be blocked"))}finally{d(e)}},m="u"<typeof window?n:e=>{try{window[i].removeItem(e)}catch(e){console.warn("[".concat(u,"] Failed to remove value from ").concat(i,", it might be blocked"))}finally{d(e)}},f=e=>{if("u"<typeof window)return null;try{return window[i].getItem(e)}catch(e){return console.warn("[".concat(u,"] Failed to get value from ").concat(i,", it might be blocked")),null}};return{useStorage:function(i,u){let d=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:JSON.stringify,deserializer:JSON.parse};const g=e(e=>{if("u"<typeof window)return n;const o=o=>{"key"in o&&o.key!==i||e()},t=o=>{o.detail===i&&e()};return window.addEventListener("storage",o),window.addEventListener(c,t),()=>{window.removeEventListener("storage",o),window.removeEventListener(c,t)}},[i]),v=d.raw?a:d.serializer,p=d.raw?a:d.deserializer,y=o(g,()=>f(i),void 0===u?s:()=>v(u)),h=t(()=>null===y?null:p(y),[y,p]),x=e(e=>{try{const o=l(e)?e(null!=h?h:null):e;null===o?m(i):w(i,v(o))}catch(e){console.warn(e)}},[i,v,h]);return r(()=>{null===f(i)&&void 0!==u&&w(i,v(u))},[p,i,v,u]),[null===h?void 0===u?null:u:h,x]},useSetStorage:(o,t)=>e(e=>{try{null===e?m(o):w(o,t(e))}catch(e){console.warn(e)}},[o,t])}}export{c as createStorage};
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- "use strict";var e=require("react/jsx-runtime"),r=require("react"),t=require("../use-isomorphic-layout-effect/index.cjs");require("client-only");const n=r.memo(n=>{let{defaultYear:i,...u}=n;"undefined"==typeof window&&void 0===i&&console.warn('[foxact/current-year] "defaultYear" is required during the server-side rendering.');const[s,a]=r.useState(i||new Date().getFullYear());return t.useIsomorphicLayoutEffect(()=>{a(new Date().getFullYear())},[]),e.jsx("span",{...u,children:s})});"production"!==process.env.NODE_ENV&&(n.displayName="CurrentYear"),exports.CurrentYear=n;
2
+ "use strict";var e=require("react/jsx-runtime"),r=require("react"),t=require("../use-isomorphic-layout-effect/index.cjs");require("client-only");const n=r.memo(n=>{let{defaultYear:u,...i}=n;"u"<typeof window&&void 0===u&&console.warn('[foxact/current-year] "defaultYear" is required during the server-side rendering.');const[s,a]=r.useState(u||new Date().getFullYear());return t.useIsomorphicLayoutEffect(()=>{a(new Date().getFullYear())},[]),e.jsx("span",{...i,children:s})});"production"!==process.env.NODE_ENV&&(n.displayName="CurrentYear"),exports.CurrentYear=n;
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- import{jsx as e}from"react/jsx-runtime";import{memo as r,useState as t}from"react";import{useIsomorphicLayoutEffect as n}from"../use-isomorphic-layout-effect/index.mjs";import"client-only";const o=r(r=>{let{defaultYear:o,...i}=r;"undefined"==typeof window&&void 0===o&&console.warn('[foxact/current-year] "defaultYear" is required during the server-side rendering.');const[a,s]=t(o||new Date().getFullYear());return n(()=>{s(new Date().getFullYear())},[]),e("span",{...i,children:a})});"production"!==process.env.NODE_ENV&&(o.displayName="CurrentYear");export{o as CurrentYear};
2
+ import{jsx as e}from"react/jsx-runtime";import{memo as r,useState as t}from"react";import{useIsomorphicLayoutEffect as o}from"../use-isomorphic-layout-effect/index.mjs";import"client-only";const n=r(r=>{let{defaultYear:n,...i}=r;"u"<typeof window&&void 0===n&&console.warn('[foxact/current-year] "defaultYear" is required during the server-side rendering.');const[a,s]=t(n||new Date().getFullYear());return o(()=>{s(new Date().getFullYear())},[]),e("span",{...i,children:a})});"production"!==process.env.NODE_ENV&&(n.displayName="CurrentYear");export{n as CurrentYear};
@@ -1 +1 @@
1
- "use strict";const e="__foxact_jsonp_callbacks__SECRET_INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED";exports.fetchJsonp=function(o,n){if("undefined"==typeof window)throw TypeError("fetchJsonp is only available in the browser");window[e]||Object.defineProperty(window,e,{value:{},writable:!0,configurable:!0,enumerable:!1});const t="__".concat(Date.now(),"_").concat(Math.random().toString().slice(2),"__"),r="window.".concat(e,".").concat(t);if(Object.prototype.hasOwnProperty.call(window[e],t))throw TypeError("Callback name conflict: ".concat(t));const c=o(r);return new Promise((o,r)=>{const a=document.createElement("script");a.src=c,a.async=!0,n&&Object.assign(a,n);const i=()=>{a.removeEventListener("error",s),a.remove(),window[e][t]&&delete window[e][t]};function s(){i(),r(Error("Failed to load script: ".concat(c)))}a.addEventListener("error",s),window[e][t]=e=>{i(),o(e)},document.body.append(a)})};
1
+ "use strict";const e="__foxact_jsonp_callbacks__SECRET_INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED";exports.fetchJsonp=function(o,n){if("u"<typeof window)throw TypeError("fetchJsonp is only available in the browser");window[e]||Object.defineProperty(window,e,{value:{},writable:!0,configurable:!0,enumerable:!1});const t="__".concat(Date.now(),"_").concat(Math.random().toString().slice(2),"__"),r="window.".concat(e,".").concat(t);if(Object.prototype.hasOwnProperty.call(window[e],t))throw TypeError("Callback name conflict: ".concat(t));const c=o(r);return new Promise((o,r)=>{const a=document.createElement("script");a.src=c,a.async=!0,n&&Object.assign(a,n);const i=()=>{a.removeEventListener("error",s),a.remove(),window[e][t]&&delete window[e][t]};function s(){i(),r(Error("Failed to load script: ".concat(c)))}a.addEventListener("error",s),window[e][t]=e=>{i(),o(e)},document.body.append(a)})};
@@ -1 +1 @@
1
- const e="__foxact_jsonp_callbacks__SECRET_INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED";function o(o,n){if("undefined"==typeof window)throw TypeError("fetchJsonp is only available in the browser");window[e]||Object.defineProperty(window,e,{value:{},writable:!0,configurable:!0,enumerable:!1});const t="__".concat(Date.now(),"_").concat(Math.random().toString().slice(2),"__"),r="window.".concat(e,".").concat(t);if(Object.prototype.hasOwnProperty.call(window[e],t))throw TypeError("Callback name conflict: ".concat(t));const c=o(r);return new Promise((o,r)=>{const a=document.createElement("script");a.src=c,a.async=!0,n&&Object.assign(a,n);const i=()=>{a.removeEventListener("error",w),a.remove(),window[e][t]&&delete window[e][t]};function w(){i(),r(Error("Failed to load script: ".concat(c)))}a.addEventListener("error",w),window[e][t]=e=>{i(),o(e)},document.body.append(a)})}export{o as fetchJsonp};
1
+ const o="__foxact_jsonp_callbacks__SECRET_INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED";function e(e,n){if("u"<typeof window)throw TypeError("fetchJsonp is only available in the browser");window[o]||Object.defineProperty(window,o,{value:{},writable:!0,configurable:!0,enumerable:!1});const t="__".concat(Date.now(),"_").concat(Math.random().toString().slice(2),"__"),r="window.".concat(o,".").concat(t);if(Object.prototype.hasOwnProperty.call(window[o],t))throw TypeError("Callback name conflict: ".concat(t));const c=e(r);return new Promise((e,r)=>{const a=document.createElement("script");a.src=c,a.async=!0,n&&Object.assign(a,n);const i=()=>{a.removeEventListener("error",w),a.remove(),window[o][t]&&delete window[o][t]};function w(){i(),r(Error("Failed to load script: ".concat(c)))}a.addEventListener("error",w),window[o][t]=o=>{i(),e(o)},document.body.append(a)})}export{e as fetchJsonp};
@@ -1 +1 @@
1
- "use strict";exports.isSafari=function(){return"undefined"!=typeof window&&"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&!!(/version\/[\d._].*?safari/i.test(navigator.userAgent)||/mobile safari [\d._]+/i.test(navigator.userAgent))};
1
+ "use strict";exports.isSafari=function(){return!("u"<typeof window||"u"<typeof navigator)&&"string"==typeof navigator.userAgent&&!!(/version\/[\d._].*?safari/i.test(navigator.userAgent)||/mobile safari [\d._]+/i.test(navigator.userAgent))};
@@ -1 +1 @@
1
- function e(){return"undefined"!=typeof window&&"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&!!(/version\/[\d._].*?safari/i.test(navigator.userAgent)||/mobile safari [\d._]+/i.test(navigator.userAgent))}export{e as isSafari};
1
+ function t(){return!("u"<typeof window||"u"<typeof navigator)&&"string"==typeof navigator.userAgent&&!!(/version\/[\d._].*?safari/i.test(navigator.userAgent)||/mobile safari [\d._]+/i.test(navigator.userAgent))}export{t as isSafari};
@@ -1 +1 @@
1
- "use strict";var e=require("react/jsx-runtime");require("client-only");var t=require("react-dom"),r=require("../context-state/index.cjs");require("react"),require("../noop/index.cjs"),exports.createMagicPortal=function(){let n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"(Anoymous)";const[o,a,c]=r.createContextState(null);function i(t){let{as:r,...o}=t;const a=c();return e.jsx(r||"div",{...n?{"data-foxact-magic-portal-target":n}:{},ref:a,...o})}function u(e){let{children:r}=e;const n=a();return"undefined"!=typeof window&&n?t.createPortal(r,n):null}return"production"!==process.env.NODE_ENV&&(i.displayName=n+".PortalTarget"),"production"!==process.env.NODE_ENV&&(u.displayName=n+".PortalContent"),[function(t){let{children:r}=t;return e.jsx(o,{children:r})},i,u]};
1
+ "use strict";var e=require("react/jsx-runtime");require("client-only");var r=require("react-dom"),t=require("../context-state/index.cjs"),n=require("../no-ssr/index.cjs"),o=require("react");require("../noop/index.cjs"),exports.createMagicPortal=function(){let c=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"(Anoymous)";const[i,l,a]=t.createContextState(null);function s(r){let{as:t,ssrFallback:o=null,...i}=r;null!=o&&n.noSSR();const l=a();return e.jsx(t||"div",{...c?{"data-foxact-magic-portal-target":c}:{},ref:l,...i})}function u(r){const{ssrFallback:t=null}=r;return null!=t?e.jsx(o.Suspense,{fallback:t,children:e.jsx(s,{...r})}):e.jsx(s,{...r})}function d(e){let{children:t}=e;const n=l();return"u"<typeof window||!n?null:r.createPortal(t,n)}function p(r){let{children:t}=r;return e.jsx(i,{children:t})}return"production"!==process.env.NODE_ENV&&(u.displayName=c+".PortalTarget"),"production"!==process.env.NODE_ENV&&(d.displayName=c+".PortalContent"),"production"!==process.env.NODE_ENV&&(p.displayName=c+".PortalProvider"),[p,u,d]};
@@ -1,5 +1,11 @@
1
1
  type MagicPortalTargetProps<T extends React.ElementType = 'div'> = Omit<React.ComponentPropsWithoutRef<T>, 'children' | 'ref'> & {
2
2
  as?: T | null;
3
+ /**
4
+ * MagicPortal do not support server-side rendering. By default, it will render nothing on the server.
5
+ *
6
+ * However, you can use `ssrFallback` to emit a fallback (e.g. skeleton) into server-rendered HTML.
7
+ */
8
+ ssrFallback?: React.ReactNode | null;
3
9
  };
4
10
  /** @see https://foxact.skk.moe/magic-portal */
5
11
  declare function createMagicPortal(name?: string): [
@@ -1 +1 @@
1
- import{jsx as t}from"react/jsx-runtime";import"client-only";import{createPortal as o}from"react-dom";import{createContextState as n}from"../context-state/index.mjs";import"react";import"../noop/index.mjs";function e(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"(Anoymous)";const[r,i,c]=n(null);function a(o){let{as:n,...r}=o;const i=c();return t(n||"div",{...e?{"data-foxact-magic-portal-target":e}:{},ref:i,...r})}function l(t){let{children:n}=t;const e=i();return"undefined"!=typeof window&&e?o(n,e):null}return"production"!==process.env.NODE_ENV&&(a.displayName=e+".PortalTarget"),"production"!==process.env.NODE_ENV&&(l.displayName=e+".PortalContent"),[function(o){let{children:n}=o;return t(r,{children:n})},a,l]}export{e as createMagicPortal};
1
+ import{jsx as t}from"react/jsx-runtime";import"client-only";import{createPortal as o}from"react-dom";import{createContextState as n}from"../context-state/index.mjs";import{noSSR as r}from"../no-ssr/index.mjs";import{Suspense as e}from"react";import"../noop/index.mjs";function i(){let i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"(Anoymous)";const[l,c,a]=n(null);function m(o){let{as:n,ssrFallback:e=null,...l}=o;null!=e&&r();const c=a();return t(n||"div",{...i?{"data-foxact-magic-portal-target":i}:{},ref:c,...l})}function u(o){const{ssrFallback:n=null}=o;return null!=n?t(e,{fallback:n,children:t(m,{...o})}):t(m,{...o})}function s(t){let{children:n}=t;const r=c();return"u"<typeof window||!r?null:o(n,r)}function p(o){let{children:n}=o;return t(l,{children:n})}return"production"!==process.env.NODE_ENV&&(u.displayName=i+".PortalTarget"),"production"!==process.env.NODE_ENV&&(s.displayName=i+".PortalContent"),"production"!==process.env.NODE_ENV&&(p.displayName=i+".PortalProvider"),[p,u,s]}export{i as createMagicPortal};
package/no-ssr/index.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";const r=Object.getOwnPropertyDescriptor(Error,"stackTraceLimit"),t=(null==r?void 0:r.writable)&&"number"==typeof r.value;function e(r){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"BAILOUT_TO_CLIENT_SIDE_RENDERING";const o=Error.stackTraceLimit;t&&(Error.stackTraceLimit=0);const i=Error(r);return t&&(Error.stackTraceLimit=o),i.digest=e,i.recoverableError="NO_SSR",i}exports.noSSR=function(r){if("undefined"==typeof window)throw e(r)},exports.noSSRError=e;
1
+ "use strict";const r=Object.getOwnPropertyDescriptor(Error,"stackTraceLimit"),t=(null==r?void 0:r.writable)&&"number"==typeof r.value;function o(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"BAILOUT_TO_CLIENT_SIDE_RENDERING";const e=Error.stackTraceLimit;t&&(Error.stackTraceLimit=0);const i=Error(r);return t&&(Error.stackTraceLimit=e),i.digest=o,i.recoverableError="NO_SSR",i}exports.noSSR=function(r){if("u"<typeof window)throw o(r)},exports.noSSRError=o;
package/no-ssr/index.mjs CHANGED
@@ -1 +1 @@
1
- const r=Object.getOwnPropertyDescriptor(Error,"stackTraceLimit"),t=(null==r?void 0:r.writable)&&"number"==typeof r.value;function o(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"BAILOUT_TO_CLIENT_SIDE_RENDERING";const e=Error.stackTraceLimit;t&&(Error.stackTraceLimit=0);const i=Error(r);return t&&(Error.stackTraceLimit=e),i.digest=o,i.recoverableError="NO_SSR",i}function e(r){if("undefined"==typeof window)throw o(r)}export{e as noSSR,o as noSSRError};
1
+ const r=Object.getOwnPropertyDescriptor(Error,"stackTraceLimit"),t=(null==r?void 0:r.writable)&&"number"==typeof r.value;function o(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"BAILOUT_TO_CLIENT_SIDE_RENDERING";const e=Error.stackTraceLimit;t&&(Error.stackTraceLimit=0);const i=Error(r);return t&&(Error.stackTraceLimit=e),i.digest=o,i.recoverableError="NO_SSR",i}function e(r){if("u"<typeof window)throw o(r)}export{e as noSSR,o as noSSRError};
@@ -1 +1 @@
1
- "use strict";var e=require("../is-safari/index.cjs");exports.openInNewTab=function(n){if("undefined"==typeof window)return;if(e.isSafari())return void window.open(n,"_blank");const r=document.createElement("a");r.href=n,r.target="_blank",r.rel="noopener noreferrer",document.body.appendChild(r),r.click(),Promise.resolve().finally(()=>{r.remove()})};
1
+ "use strict";var e=require("../is-safari/index.cjs");exports.openInNewTab=function(r){if("u"<typeof window)return;if(e.isSafari())return void window.open(r,"_blank");const n=document.createElement("a");n.href=r,n.target="_blank",n.rel="noopener noreferrer",document.body.appendChild(n),n.click(),Promise.resolve().finally(()=>{n.remove()})};
@@ -1 +1 @@
1
- import{isSafari as e}from"../is-safari/index.mjs";function n(n){if("undefined"==typeof window)return;if(e())return void window.open(n,"_blank");const o=document.createElement("a");o.href=n,o.target="_blank",o.rel="noopener noreferrer",document.body.appendChild(o),o.click(),Promise.resolve().finally(()=>{o.remove()})}export{n as openInNewTab};
1
+ import{isSafari as e}from"../is-safari/index.mjs";function n(n){if("u"<typeof window)return;if(e())return void window.open(n,"_blank");const o=document.createElement("a");o.href=n,o.target="_blank",o.rel="noopener noreferrer",document.body.appendChild(o),o.click(),Promise.resolve().finally(()=>{o.remove()})}export{n as openInNewTab};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foxact",
3
- "version": "0.2.50",
3
+ "version": "0.2.52",
4
4
  "description": "React Hooks/Utils done right. For browser, SSR, and React Server Components.",
5
5
  "homepage": "https://foxact.skk.moe",
6
6
  "repository": {
@@ -25,11 +25,15 @@
25
25
  "server-only": "^0.0.1"
26
26
  },
27
27
  "peerDependencies": {
28
- "react": "*"
28
+ "react": "*",
29
+ "react-dom": "*"
29
30
  },
30
31
  "peerDependenciesMeta": {
31
32
  "react": {
32
33
  "optional": true
34
+ },
35
+ "react-dom": {
36
+ "optional": true
33
37
  }
34
38
  },
35
39
  "typeVersions": {
@@ -56,6 +60,24 @@
56
60
  "require": "./compose-context-provider/index.cjs",
57
61
  "default": "./compose-context-provider/index.cjs"
58
62
  },
63
+ "./context-reducer": {
64
+ "types": "./context-reducer/index.d.ts",
65
+ "import": {
66
+ "types": "./context-reducer/index.d.ts",
67
+ "default": "./context-reducer/index.mjs"
68
+ },
69
+ "require": "./context-reducer/index.cjs",
70
+ "default": "./context-reducer/index.cjs"
71
+ },
72
+ "./create-context-reducer": {
73
+ "types": "./create-context-reducer/index.d.ts",
74
+ "import": {
75
+ "types": "./create-context-reducer/index.d.ts",
76
+ "default": "./create-context-reducer/index.mjs"
77
+ },
78
+ "require": "./create-context-reducer/index.cjs",
79
+ "default": "./create-context-reducer/index.cjs"
80
+ },
59
81
  "./context-state": {
60
82
  "types": "./context-state/index.d.ts",
61
83
  "import": {
@@ -83,15 +105,6 @@
83
105
  "require": "./create-local-storage-state/index.cjs",
84
106
  "default": "./create-local-storage-state/index.cjs"
85
107
  },
86
- "./create-magic-portal": {
87
- "types": "./create-magic-portal/index.d.ts",
88
- "import": {
89
- "types": "./create-magic-portal/index.d.ts",
90
- "default": "./create-magic-portal/index.mjs"
91
- },
92
- "require": "./create-magic-portal/index.cjs",
93
- "default": "./create-magic-portal/index.cjs"
94
- },
95
108
  "./create-context-state": {
96
109
  "types": "./create-context-state/index.d.ts",
97
110
  "import": {
@@ -101,6 +114,15 @@
101
114
  "require": "./create-context-state/index.cjs",
102
115
  "default": "./create-context-state/index.cjs"
103
116
  },
117
+ "./create-magic-portal": {
118
+ "types": "./create-magic-portal/index.d.ts",
119
+ "import": {
120
+ "types": "./create-magic-portal/index.d.ts",
121
+ "default": "./create-magic-portal/index.mjs"
122
+ },
123
+ "require": "./create-magic-portal/index.cjs",
124
+ "default": "./create-magic-portal/index.cjs"
125
+ },
104
126
  "./create-session-storage-state": {
105
127
  "types": "./create-session-storage-state/index.d.ts",
106
128
  "import": {
@@ -137,6 +159,15 @@
137
159
  "require": "./current-year/index.cjs",
138
160
  "default": "./current-year/index.cjs"
139
161
  },
162
+ "./email-protection": {
163
+ "types": "./email-protection/index.d.ts",
164
+ "import": {
165
+ "types": "./email-protection/index.d.ts",
166
+ "default": "./email-protection/index.mjs"
167
+ },
168
+ "require": "./email-protection/index.cjs",
169
+ "default": "./email-protection/index.cjs"
170
+ },
140
171
  "./fetch-jsonp": {
141
172
  "types": "./fetch-jsonp/index.d.ts",
142
173
  "import": {
@@ -155,15 +186,6 @@
155
186
  "require": "./invariant/index.cjs",
156
187
  "default": "./invariant/index.cjs"
157
188
  },
158
- "./is-safari": {
159
- "types": "./is-safari/index.d.ts",
160
- "import": {
161
- "types": "./is-safari/index.d.ts",
162
- "default": "./is-safari/index.mjs"
163
- },
164
- "require": "./is-safari/index.cjs",
165
- "default": "./is-safari/index.cjs"
166
- },
167
189
  "./magic-portal": {
168
190
  "types": "./magic-portal/index.d.ts",
169
191
  "import": {
@@ -173,6 +195,15 @@
173
195
  "require": "./magic-portal/index.cjs",
174
196
  "default": "./magic-portal/index.cjs"
175
197
  },
198
+ "./is-safari": {
199
+ "types": "./is-safari/index.d.ts",
200
+ "import": {
201
+ "types": "./is-safari/index.d.ts",
202
+ "default": "./is-safari/index.mjs"
203
+ },
204
+ "require": "./is-safari/index.cjs",
205
+ "default": "./is-safari/index.cjs"
206
+ },
176
207
  "./no-ssr": {
177
208
  "types": "./no-ssr/index.d.ts",
178
209
  "import": {
@@ -191,15 +222,6 @@
191
222
  "require": "./noop/index.cjs",
192
223
  "default": "./noop/index.cjs"
193
224
  },
194
- "./email-protection": {
195
- "types": "./email-protection/index.d.ts",
196
- "import": {
197
- "types": "./email-protection/index.d.ts",
198
- "default": "./email-protection/index.mjs"
199
- },
200
- "require": "./email-protection/index.cjs",
201
- "default": "./email-protection/index.cjs"
202
- },
203
225
  "./nullthrow": {
204
226
  "types": "./nullthrow/index.d.ts",
205
227
  "import": {
@@ -281,15 +303,6 @@
281
303
  "require": "./use-array/index.cjs",
282
304
  "default": "./use-array/index.cjs"
283
305
  },
284
- "./use-component-will-receive-update": {
285
- "types": "./use-component-will-receive-update/index.d.ts",
286
- "import": {
287
- "types": "./use-component-will-receive-update/index.d.ts",
288
- "default": "./use-component-will-receive-update/index.mjs"
289
- },
290
- "require": "./use-component-will-receive-update/index.cjs",
291
- "default": "./use-component-will-receive-update/index.cjs"
292
- },
293
306
  "./use-clipboard": {
294
307
  "types": "./use-clipboard/index.d.ts",
295
308
  "import": {
@@ -299,6 +312,15 @@
299
312
  "require": "./use-clipboard/index.cjs",
300
313
  "default": "./use-clipboard/index.cjs"
301
314
  },
315
+ "./use-component-will-receive-update": {
316
+ "types": "./use-component-will-receive-update/index.d.ts",
317
+ "import": {
318
+ "types": "./use-component-will-receive-update/index.d.ts",
319
+ "default": "./use-component-will-receive-update/index.mjs"
320
+ },
321
+ "require": "./use-component-will-receive-update/index.cjs",
322
+ "default": "./use-component-will-receive-update/index.cjs"
323
+ },
302
324
  "./use-composition-input": {
303
325
  "types": "./use-composition-input/index.d.ts",
304
326
  "import": {
@@ -380,15 +402,6 @@
380
402
  "require": "./use-isomorphic-layout-effect/index.cjs",
381
403
  "default": "./use-isomorphic-layout-effect/index.cjs"
382
404
  },
383
- "./use-map": {
384
- "types": "./use-map/index.d.ts",
385
- "import": {
386
- "types": "./use-map/index.d.ts",
387
- "default": "./use-map/index.mjs"
388
- },
389
- "require": "./use-map/index.cjs",
390
- "default": "./use-map/index.cjs"
391
- },
392
405
  "./use-local-storage": {
393
406
  "types": "./use-local-storage/index.d.ts",
394
407
  "import": {
@@ -398,6 +411,15 @@
398
411
  "require": "./use-local-storage/index.cjs",
399
412
  "default": "./use-local-storage/index.cjs"
400
413
  },
414
+ "./use-map": {
415
+ "types": "./use-map/index.d.ts",
416
+ "import": {
417
+ "types": "./use-map/index.d.ts",
418
+ "default": "./use-map/index.mjs"
419
+ },
420
+ "require": "./use-map/index.cjs",
421
+ "default": "./use-map/index.cjs"
422
+ },
401
423
  "./use-media-query": {
402
424
  "types": "./use-media-query/index.d.ts",
403
425
  "import": {
@@ -506,15 +528,6 @@
506
528
  "require": "./use-typescript-happy-callback/index.cjs",
507
529
  "default": "./use-typescript-happy-callback/index.cjs"
508
530
  },
509
- "./use-url-hash-state": {
510
- "types": "./use-url-hash-state/index.d.ts",
511
- "import": {
512
- "types": "./use-url-hash-state/index.d.ts",
513
- "default": "./use-url-hash-state/index.mjs"
514
- },
515
- "require": "./use-url-hash-state/index.cjs",
516
- "default": "./use-url-hash-state/index.cjs"
517
- },
518
531
  "./use-uncontrolled": {
519
532
  "types": "./use-uncontrolled/index.d.ts",
520
533
  "import": {
@@ -523,6 +536,15 @@
523
536
  },
524
537
  "require": "./use-uncontrolled/index.cjs",
525
538
  "default": "./use-uncontrolled/index.cjs"
539
+ },
540
+ "./use-url-hash-state": {
541
+ "types": "./use-url-hash-state/index.d.ts",
542
+ "import": {
543
+ "types": "./use-url-hash-state/index.d.ts",
544
+ "default": "./use-url-hash-state/index.mjs"
545
+ },
546
+ "require": "./use-url-hash-state/index.cjs",
547
+ "default": "./use-url-hash-state/index.cjs"
526
548
  }
527
549
  }
528
550
  }
@@ -1 +1 @@
1
- "use strict";const e="undefined"!=typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(self)||function(e){const l=Date.now();return self.setTimeout(()=>{e({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-l))})},1)},l="undefined"!=typeof self&&self.cancelIdleCallback&&self.cancelIdleCallback.bind(self)||function(e){return clearTimeout(e)};exports.cancelIdleCallback=l,exports.requestIdleCallback=e;
1
+ "use strict";const e="u">typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(self)||function(e){const l=Date.now();return self.setTimeout(()=>{e({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-l))})},1)},l="u">typeof self&&self.cancelIdleCallback&&self.cancelIdleCallback.bind(self)||function(e){return clearTimeout(e)};exports.cancelIdleCallback=l,exports.requestIdleCallback=e;
@@ -1 +1 @@
1
- const e="undefined"!=typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(self)||function(e){const l=Date.now();return self.setTimeout(()=>{e({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-l))})},1)},l="undefined"!=typeof self&&self.cancelIdleCallback&&self.cancelIdleCallback.bind(self)||function(e){return clearTimeout(e)};export{l as cancelIdleCallback,e as requestIdleCallback};
1
+ const e="u">typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(self)||function(e){const l=Date.now();return self.setTimeout(()=>{e({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-l))})},1)},l="u">typeof self&&self.cancelIdleCallback&&self.cancelIdleCallback.bind(self)||function(e){return clearTimeout(e)};export{l as cancelIdleCallback,e as requestIdleCallback};
package/sizes.json CHANGED
@@ -1 +1 @@
1
- {"total":{"raw":25234,"gzip":15377,"br":0},"exports":{"context-state":{"raw":402,"gzip":259,"br":221},"create-fixed-array":{"raw":452,"gzip":282,"br":248},"create-local-storage-state":{"raw":402,"gzip":216,"br":189},"create-context-state":{"raw":145,"gzip":116,"br":96},"create-magic-portal":{"raw":196,"gzip":131,"br":104},"compose-context-provider":{"raw":177,"gzip":155,"br":122},"current-year":{"raw":592,"gzip":400,"br":326},"create-session-storage-state":{"raw":406,"gzip":215,"br":188},"create-storage-hook":{"raw":2132,"gzip":903,"br":789},"create-storage-state-factory":{"raw":592,"gzip":338,"br":304},"is-safari":{"raw":248,"gzip":164,"br":117},"magic-portal":{"raw":768,"gzip":431,"br":364},"noop":{"raw":33,"gzip":53,"br":37},"no-ssr":{"raw":474,"gzip":316,"br":260},"email-protection":{"raw":426,"gzip":321,"br":272},"fetch-jsonp":{"raw":899,"gzip":547,"br":430},"open-new-tab":{"raw":344,"gzip":260,"br":190},"request-idle-callback":{"raw":410,"gzip":229,"br":175},"types":{"raw":0,"gzip":20,"br":1},"nullthrow":{"raw":187,"gzip":163,"br":121},"typescript-happy-forward-ref":{"raw":119,"gzip":103,"br":80},"use":{"raw":298,"gzip":197,"br":160},"use-abortable-effect":{"raw":215,"gzip":170,"br":144},"use-array":{"raw":322,"gzip":236,"br":202},"use-composition-input":{"raw":470,"gzip":286,"br":241},"use-clipboard":{"raw":1177,"gzip":650,"br":552},"invariant":{"raw":178,"gzip":156,"br":118},"use-component-will-receive-update":{"raw":216,"gzip":188,"br":154},"use-error-boundary":{"raw":252,"gzip":195,"br":165},"use-debounced-value":{"raw":524,"gzip":342,"br":286},"use-fast-click":{"raw":553,"gzip":364,"br":297},"use-is-client":{"raw":204,"gzip":153,"br":121},"use-intersection":{"raw":1230,"gzip":649,"br":597},"use-isomorphic-layout-effect":{"raw":178,"gzip":142,"br":112},"use-is-online":{"raw":356,"gzip":212,"br":158},"rem":{"raw":823,"gzip":395,"br":350},"use-map":{"raw":339,"gzip":243,"br":208},"use-local-storage":{"raw":384,"gzip":215,"br":201},"use-next-pathname":{"raw":314,"gzip":235,"br":203},"use-page-visibility":{"raw":290,"gzip":206,"br":154},"use-next-link":{"raw":1656,"gzip":880,"br":743},"use-react-router-enable-concurrent-navigation":{"raw":966,"gzip":470,"br":397},"use-react-router-is-match":{"raw":594,"gzip":395,"br":337},"use-retimer":{"raw":199,"gzip":166,"br":127},"use-set":{"raw":340,"gzip":238,"br":203},"use-session-storage":{"raw":390,"gzip":210,"br":201},"use-debounced-state":{"raw":401,"gzip":280,"br":242},"use-singleton":{"raw":149,"gzip":135,"br":116},"use-stable-handler-only-when-you-know-what-you-are-doing-or-you-will-be-fired":{"raw":459,"gzip":325,"br":249},"use-uncontrolled":{"raw":388,"gzip":273,"br":230},"use-url-hash-state":{"raw":1133,"gzip":641,"br":554},"use-typescript-happy-callback":{"raw":107,"gzip":102,"br":77},"use-media-query":{"raw":725,"gzip":406,"br":332}}}
1
+ {"total":{"raw":26128,"gzip":15892,"br":0},"exports":{"compose-context-provider":{"raw":177,"gzip":155,"br":122},"create-context-reducer":{"raw":223,"gzip":146,"br":117},"context-reducer":{"raw":557,"gzip":331,"br":299},"context-state":{"raw":402,"gzip":259,"br":221},"create-magic-portal":{"raw":224,"gzip":136,"br":112},"create-local-storage-state":{"raw":402,"gzip":216,"br":189},"create-fixed-array":{"raw":452,"gzip":282,"br":248},"create-context-state":{"raw":145,"gzip":116,"br":96},"current-year":{"raw":583,"gzip":395,"br":323},"create-storage-state-factory":{"raw":592,"gzip":338,"br":304},"create-session-storage-state":{"raw":406,"gzip":215,"br":188},"invariant":{"raw":178,"gzip":156,"br":118},"email-protection":{"raw":426,"gzip":321,"br":272},"fetch-jsonp":{"raw":890,"gzip":546,"br":429},"is-safari":{"raw":233,"gzip":164,"br":119},"noop":{"raw":33,"gzip":53,"br":37},"create-storage-hook":{"raw":2087,"gzip":897,"br":789},"nullthrow":{"raw":187,"gzip":163,"br":121},"no-ssr":{"raw":465,"gzip":313,"br":260},"magic-portal":{"raw":1039,"gzip":521,"br":463},"request-idle-callback":{"raw":392,"gzip":221,"br":171},"rem":{"raw":823,"gzip":395,"br":350},"open-new-tab":{"raw":335,"gzip":255,"br":187},"use-abortable-effect":{"raw":215,"gzip":170,"br":144},"types":{"raw":0,"gzip":20,"br":1},"typescript-happy-forward-ref":{"raw":119,"gzip":103,"br":80},"use":{"raw":298,"gzip":197,"br":160},"use-component-will-receive-update":{"raw":216,"gzip":188,"br":154},"use-debounced-state":{"raw":401,"gzip":280,"br":242},"use-composition-input":{"raw":470,"gzip":286,"br":241},"use-array":{"raw":322,"gzip":236,"br":202},"use-debounced-value":{"raw":524,"gzip":342,"br":286},"use-clipboard":{"raw":1177,"gzip":650,"br":552},"use-is-client":{"raw":204,"gzip":153,"br":121},"use-error-boundary":{"raw":252,"gzip":195,"br":165},"use-isomorphic-layout-effect":{"raw":169,"gzip":137,"br":110},"use-fast-click":{"raw":553,"gzip":364,"br":297},"use-intersection":{"raw":1230,"gzip":649,"br":597},"use-local-storage":{"raw":384,"gzip":215,"br":201},"use-map":{"raw":339,"gzip":243,"br":208},"use-is-online":{"raw":350,"gzip":209,"br":162},"use-page-visibility":{"raw":284,"gzip":203,"br":150},"use-media-query":{"raw":702,"gzip":404,"br":331},"use-next-link":{"raw":1647,"gzip":875,"br":742},"use-next-pathname":{"raw":314,"gzip":235,"br":203},"use-retimer":{"raw":199,"gzip":166,"br":127},"use-react-router-is-match":{"raw":594,"gzip":395,"br":337},"use-react-router-enable-concurrent-navigation":{"raw":966,"gzip":470,"br":397},"use-singleton":{"raw":149,"gzip":135,"br":116},"use-set":{"raw":340,"gzip":238,"br":203},"use-session-storage":{"raw":390,"gzip":210,"br":201},"use-typescript-happy-callback":{"raw":107,"gzip":102,"br":77},"use-uncontrolled":{"raw":388,"gzip":273,"br":230},"use-stable-handler-only-when-you-know-what-you-are-doing-or-you-will-be-fired":{"raw":450,"gzip":318,"br":249},"use-url-hash-state":{"raw":1124,"gzip":637,"br":559}}}
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- "use strict";var e=require("react");function n(e){return window.addEventListener("online",e),window.addEventListener("offline",e),()=>{window.removeEventListener("online",e),window.removeEventListener("offline",e)}}function i(){return"undefined"!=typeof window&&navigator.onLine}exports.useIsOnline=function(){return e.useSyncExternalStore(n,i,i)};
2
+ "use strict";var e=require("react");function n(e){return window.addEventListener("online",e),window.addEventListener("offline",e),()=>{window.removeEventListener("online",e),window.removeEventListener("offline",e)}}function t(){return!("u"<typeof window)&&navigator.onLine}exports.useIsOnline=function(){return e.useSyncExternalStore(n,t,t)};
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- import{useSyncExternalStore as n}from"react";function e(n){return window.addEventListener("online",n),window.addEventListener("offline",n),()=>{window.removeEventListener("online",n),window.removeEventListener("offline",n)}}function i(){return"undefined"!=typeof window&&navigator.onLine}function o(){return n(e,i,i)}export{o as useIsOnline};
2
+ import{useSyncExternalStore as n}from"react";function e(n){return window.addEventListener("online",n),window.addEventListener("offline",n),()=>{window.removeEventListener("online",n),window.removeEventListener("offline",n)}}function i(){return!("u"<typeof window)&&navigator.onLine}function o(){return n(e,i,i)}export{o as useIsOnline};
@@ -1 +1 @@
1
- "use strict";require("client-only");var e=require("react");const t="undefined"==typeof window?e.useEffect:e.useLayoutEffect;exports.useIsomorphicLayoutEffect=t,exports.useLayoutEffect=t;
1
+ "use strict";require("client-only");var e=require("react");const t="u"<typeof window?e.useEffect:e.useLayoutEffect;exports.useIsomorphicLayoutEffect=t,exports.useLayoutEffect=t;
@@ -1 +1 @@
1
- import"client-only";import{useEffect as o,useLayoutEffect as t}from"react";const e="undefined"==typeof window?o:t,f=e;export{e as useIsomorphicLayoutEffect,f as useLayoutEffect};
1
+ import"client-only";import{useEffect as o,useLayoutEffect as t}from"react";const e="u"<typeof window?o:t,f=e;export{e as useIsomorphicLayoutEffect,f as useLayoutEffect};
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- "use strict";var e=require("../no-ssr/index.cjs"),n=require("../noop/index.cjs"),t=require("react");const r=new Map;function o(){throw e.noSSRError("useMediaQuery cannot be used on the server without a serverValue")}exports.useMediaQuery=function(e,i){"undefined"==typeof window||r.has(e)||r.set(e,window.matchMedia(e).matches);const a=t.useCallback(t=>(function(e,t){if("undefined"==typeof window)return n.noop;const o=window.matchMedia(e),i=()=>{r.set(e,o.matches),t()};return o.addEventListener("change",i),()=>{o.removeEventListener("change",i)}})(e,t),[e]);return t.useSyncExternalStore(a,()=>{var n;return"undefined"!=typeof window&&(null!=(n=r.get(e))?n:window.matchMedia(e).matches)},void 0===i?o:()=>i)};
2
+ "use strict";var e=require("../no-ssr/index.cjs"),n=require("../noop/index.cjs"),t=require("react");const r=new Map;function o(){throw e.noSSRError("useMediaQuery cannot be used on the server without a serverValue")}exports.useMediaQuery=function(e,a){"u">typeof window&&!r.has(e)&&r.set(e,window.matchMedia(e).matches);const i=t.useCallback(t=>(function(e,t){if("u"<typeof window)return n.noop;const o=window.matchMedia(e),a=()=>{r.set(e,o.matches),t()};return o.addEventListener("change",a),()=>{o.removeEventListener("change",a)}})(e,t),[e]);return t.useSyncExternalStore(i,()=>{var n;return!("u"<typeof window)&&(null!=(n=r.get(e))?n:window.matchMedia(e).matches)},void 0===a?o:()=>a)};
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- import{noSSRError as e}from"../no-ssr/index.mjs";import{noop as n}from"../noop/index.mjs";import{useCallback as t,useSyncExternalStore as o}from"react";const r=new Map;function i(){throw e("useMediaQuery cannot be used on the server without a serverValue")}function d(e,d){return"undefined"==typeof window||r.has(e)||r.set(e,window.matchMedia(e).matches),o(t(t=>(function(e,t){if("undefined"==typeof window)return n;const o=window.matchMedia(e),i=()=>{r.set(e,o.matches),t()};return o.addEventListener("change",i),()=>{o.removeEventListener("change",i)}})(e,t),[e]),()=>{var n;return"undefined"!=typeof window&&(null!=(n=r.get(e))?n:window.matchMedia(e).matches)},void 0===d?i:()=>d)}export{d as useMediaQuery};
2
+ import{noSSRError as e}from"../no-ssr/index.mjs";import{noop as t}from"../noop/index.mjs";import{useCallback as n,useSyncExternalStore as o}from"react";const r=new Map;function i(){throw e("useMediaQuery cannot be used on the server without a serverValue")}function a(e,a){return"u">typeof window&&!r.has(e)&&r.set(e,window.matchMedia(e).matches),o(n(n=>(function(e,n){if("u"<typeof window)return t;const o=window.matchMedia(e),i=()=>{r.set(e,o.matches),n()};return o.addEventListener("change",i),()=>{o.removeEventListener("change",i)}})(e,n),[e]),()=>{var t;return!("u"<typeof window)&&(null!=(t=r.get(e))?t:window.matchMedia(e).matches)},void 0===a?i:()=>a)}export{a as useMediaQuery};
@@ -1 +1 @@
1
- "use strict";require("client-only");var e=require("react"),t=require("next/navigation"),n=require("next/dist/shared/lib/router/utils/format-url"),r=require("../use-intersection/index.cjs"),o=require("../use-component-will-receive-update/index.cjs");function u(e,t,n){"undefined"!=typeof window&&Promise.resolve(e.prefetch(t,n)).catch(e=>{if("production"!==process.env.NODE_ENV)throw e})}require("../request-idle-callback/index.cjs");const i={rootMargin:"200px"};exports.unstable_useNextLink=function(c,s){let{prefetch:l,ref:a,onClick:f,onMouseEnter:p,onTouchStart:d,scroll:v=!0,replace:y=!1,...E}=s;const h=null==l?"auto":"full",k=!1!==l,m=t.useRouter(),[N,b]=e.useTransition(),[q,x,g]=r.useIntersection(i),C=e.useMemo(()=>"string"==typeof c?c:n.formatUrl(c),[c]);return o.useComponentWillReceiveUpdate(g,[C]),e.useEffect(()=>{"production"!==process.env.NODE_ENV||x&&k&&u(m,C,{kind:h})},[h,x,k,C,m]),[N,{ref:e.useCallback(e=>{q(e),"function"==typeof a?a(e):a&&e&&(a.current=e)},[a,q]),onClick:e.useCallback(e=>{if("function"==typeof f&&f(e),e.defaultPrevented)return;const{nodeName:t}=e.currentTarget;"A"===t.toUpperCase()&&function(e){var t;const n=e.currentTarget,r=n.getAttribute("target");return r&&"_self"!==r||n.download||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||(null==(t=e.nativeEvent)?void 0:t.which)===2}(e)||(e.preventDefault(),b(()=>{m[y?"replace":"push"](C,{scroll:v})}))},[f,y,C,m,v]),onMouseEnter:e.useCallback(e=>{"function"==typeof p&&p(e),"development"===process.env.NODE_ENV||k&&u(m,C,{kind:h})},[h,p,k,C,m]),onTouchStart:e.useCallback(e=>{"function"==typeof d&&d(e),"development"===process.env.NODE_ENV||k&&u(m,C,{kind:h})},[h,d,k,C,m]),...E}]};
1
+ "use strict";require("client-only");var e=require("react"),t=require("next/navigation"),r=require("next/dist/shared/lib/router/utils/format-url"),n=require("../use-intersection/index.cjs"),o=require("../use-component-will-receive-update/index.cjs");function u(e,t,r){"u">typeof window&&Promise.resolve(e.prefetch(t,r)).catch(e=>{if("production"!==process.env.NODE_ENV)throw e})}require("../request-idle-callback/index.cjs");const i={rootMargin:"200px"};exports.unstable_useNextLink=function(c,s){let{prefetch:l,ref:a,onClick:f,onMouseEnter:p,onTouchStart:d,scroll:v=!0,replace:y=!1,...E}=s;const h=null==l?"auto":"full",k=!1!==l,m=t.useRouter(),[N,b]=e.useTransition(),[q,x,g]=n.useIntersection(i),C=e.useMemo(()=>"string"==typeof c?c:r.formatUrl(c),[c]);return o.useComponentWillReceiveUpdate(g,[C]),e.useEffect(()=>{"production"!==process.env.NODE_ENV||x&&k&&u(m,C,{kind:h})},[h,x,k,C,m]),[N,{ref:e.useCallback(e=>{q(e),"function"==typeof a?a(e):a&&e&&(a.current=e)},[a,q]),onClick:e.useCallback(e=>{if("function"==typeof f&&f(e),e.defaultPrevented)return;const{nodeName:t}=e.currentTarget;"A"===t.toUpperCase()&&function(e){var t;const r=e.currentTarget,n=r.getAttribute("target");return n&&"_self"!==n||r.download||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||(null==(t=e.nativeEvent)?void 0:t.which)===2}(e)||(e.preventDefault(),b(()=>{m[y?"replace":"push"](C,{scroll:v})}))},[f,y,C,m,v]),onMouseEnter:e.useCallback(e=>{"function"==typeof p&&p(e),"development"===process.env.NODE_ENV||k&&u(m,C,{kind:h})},[h,p,k,C,m]),onTouchStart:e.useCallback(e=>{"function"==typeof d&&d(e),"development"===process.env.NODE_ENV||k&&u(m,C,{kind:h})},[h,d,k,C,m]),...E}]};
@@ -1 +1 @@
1
- import"client-only";import{useTransition as e,useMemo as t,useEffect as n,useCallback as o}from"react";import{useRouter as r}from"next/navigation";import{formatUrl as i}from"next/dist/shared/lib/router/utils/format-url";import{useIntersection as c}from"../use-intersection/index.mjs";import{useComponentWillReceiveUpdate as u}from"../use-component-will-receive-update/index.mjs";import"../request-idle-callback/index.mjs";function s(e,t,n){"undefined"!=typeof window&&Promise.resolve(e.prefetch(t,n)).catch(e=>{if("production"!==process.env.NODE_ENV)throw e})}const l={rootMargin:"200px"},p=function(p,f){let{prefetch:a,ref:d,onClick:m,onMouseEnter:v,onTouchStart:y,scroll:h=!0,replace:E=!1,...N}=f;const x=null==a?"auto":"full",g=!1!==a,k=r(),[w,_]=e(),[D,b,K]=c(l),O=t(()=>"string"==typeof p?p:i(p),[p]);return u(K,[O]),n(()=>{"production"!==process.env.NODE_ENV||b&&g&&s(k,O,{kind:x})},[x,b,g,O,k]),[w,{ref:o(e=>{D(e),"function"==typeof d?d(e):d&&e&&(d.current=e)},[d,D]),onClick:o(e=>{if("function"==typeof m&&m(e),e.defaultPrevented)return;const{nodeName:t}=e.currentTarget;"A"===t.toUpperCase()&&function(e){var t;const n=e.currentTarget,o=n.getAttribute("target");return o&&"_self"!==o||n.download||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||(null==(t=e.nativeEvent)?void 0:t.which)===2}(e)||(e.preventDefault(),_(()=>{k[E?"replace":"push"](O,{scroll:h})}))},[m,E,O,k,h]),onMouseEnter:o(e=>{"function"==typeof v&&v(e),"development"===process.env.NODE_ENV||g&&s(k,O,{kind:x})},[x,v,g,O,k]),onTouchStart:o(e=>{"function"==typeof y&&y(e),"development"===process.env.NODE_ENV||g&&s(k,O,{kind:x})},[x,y,g,O,k]),...N}]};export{p as unstable_useNextLink};
1
+ import"client-only";import{useTransition as e,useMemo as t,useEffect as o,useCallback as n}from"react";import{useRouter as r}from"next/navigation";import{formatUrl as i}from"next/dist/shared/lib/router/utils/format-url";import{useIntersection as c}from"../use-intersection/index.mjs";import{useComponentWillReceiveUpdate as u}from"../use-component-will-receive-update/index.mjs";import"../request-idle-callback/index.mjs";function s(e,t,o){"u">typeof window&&Promise.resolve(e.prefetch(t,o)).catch(e=>{if("production"!==process.env.NODE_ENV)throw e})}const l={rootMargin:"200px"},p=function(p,f){let{prefetch:a,ref:m,onClick:d,onMouseEnter:v,onTouchStart:y,scroll:h=!0,replace:E=!1,...N}=f;const x=null==a?"auto":"full",g=!1!==a,k=r(),[w,_]=e(),[D,b,K]=c(l),O=t(()=>"string"==typeof p?p:i(p),[p]);return u(K,[O]),o(()=>{"production"!==process.env.NODE_ENV||b&&g&&s(k,O,{kind:x})},[x,b,g,O,k]),[w,{ref:n(e=>{D(e),"function"==typeof m?m(e):m&&e&&(m.current=e)},[m,D]),onClick:n(e=>{if("function"==typeof d&&d(e),e.defaultPrevented)return;const{nodeName:t}=e.currentTarget;"A"===t.toUpperCase()&&function(e){var t;const o=e.currentTarget,n=o.getAttribute("target");return n&&"_self"!==n||o.download||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||(null==(t=e.nativeEvent)?void 0:t.which)===2}(e)||(e.preventDefault(),_(()=>{k[E?"replace":"push"](O,{scroll:h})}))},[d,E,O,k,h]),onMouseEnter:n(e=>{"function"==typeof v&&v(e),"development"===process.env.NODE_ENV||g&&s(k,O,{kind:x})},[x,v,g,O,k]),onTouchStart:n(e=>{"function"==typeof y&&y(e),"development"===process.env.NODE_ENV||g&&s(k,O,{kind:x})},[x,y,g,O,k]),...N}]};export{p as unstable_useNextLink};
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- "use strict";var e=require("react");const t=e=>(document.addEventListener("visibilitychange",e),()=>{document.removeEventListener("visibilitychange",e)}),i=()=>"undefined"!=typeof document&&!document.hidden;exports.usePageVisibility=function(){return e.useSyncExternalStore(t,i,i)};
2
+ "use strict";var e=require("react");const t=e=>(document.addEventListener("visibilitychange",e),()=>{document.removeEventListener("visibilitychange",e)}),i=()=>!("u"<typeof document)&&!document.hidden;exports.usePageVisibility=function(){return e.useSyncExternalStore(t,i,i)};
@@ -1,2 +1,2 @@
1
1
  'use client';
2
- import{useSyncExternalStore as e}from"react";const i=e=>(document.addEventListener("visibilitychange",e),()=>{document.removeEventListener("visibilitychange",e)}),t=()=>"undefined"!=typeof document&&!document.hidden;function n(){return e(i,t,t)}export{n as usePageVisibility};
2
+ import{useSyncExternalStore as e}from"react";const t=e=>(document.addEventListener("visibilitychange",e),()=>{document.removeEventListener("visibilitychange",e)}),i=()=>!("u"<typeof document)&&!document.hidden;function n(){return e(t,i,i)}export{n as usePageVisibility};
@@ -1 +1 @@
1
- "use strict";var e=require("react");const t="undefined"==typeof window?e.useEffect:e.useInsertionEffect||e.useLayoutEffect;function n(){throw Error("foxact: the stablized handler cannot be invoked before the component has mounted.")}exports.useStableHandler=function(r){const o=e.useRef(n);return t(()=>{o.current=r},[r]),e.useCallback(function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return(0,o.current)(...t)},[])};
1
+ "use strict";var e=require("react");const t="u"<typeof window?e.useEffect:e.useInsertionEffect||e.useLayoutEffect;function r(){throw Error("foxact: the stablized handler cannot be invoked before the component has mounted.")}exports.useStableHandler=function(n){const o=e.useRef(r);return t(()=>{o.current=n},[n]),e.useCallback(function(){for(var e=arguments.length,t=Array(e),r=0;r<e;r++)t[r]=arguments[r];return(0,o.current)(...t)},[])};
@@ -1 +1 @@
1
- import e,{useEffect as n,useLayoutEffect as t,useRef as r,useCallback as o}from"react";const c="undefined"==typeof window?n:e.useInsertionEffect||t;function f(e){const n=r(u);return c(()=>{n.current=e},[e]),o(function(){for(var e=arguments.length,t=Array(e),r=0;r<e;r++)t[r]=arguments[r];return(0,n.current)(...t)},[])}function u(){throw Error("foxact: the stablized handler cannot be invoked before the component has mounted.")}export{f as useStableHandler};
1
+ import t,{useEffect as e,useLayoutEffect as n,useRef as r,useCallback as o}from"react";const c="u"<typeof window?e:t.useInsertionEffect||n;function u(t){const e=r(a);return c(()=>{e.current=t},[t]),o(function(){for(var t=arguments.length,n=Array(t),r=0;r<t;r++)n[r]=arguments[r];return(0,e.current)(...n)},[])}function a(){throw Error("foxact: the stablized handler cannot be invoked before the component has mounted.")}export{u as useStableHandler};
@@ -1 +1 @@
1
- "use strict";require("client-only");var e=require("react"),r=require("../noop/index.cjs"),n=require("../no-ssr/index.cjs"),t=require("../chunks/index.b9dLwVor.cjs"),s=require("../chunks/index.BtiK5_Nn.cjs");const a=(()=>{if("undefined"==typeof window)return e=>r.noop;let e=!1;const n=new Set,t=()=>{n.forEach(e=>e())};return r=>(n.add(r),e||(e=!0,window.addEventListener("hashchange",t)),()=>{n.delete(r)})})();function l(){throw n.noSSRError("useUrlHashState cannot be used on the server without a serverValue")}exports.unstable_useUrlHashState=function(r,n){var i;let o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:t.t,deserializer:t.t};const u=o.raw?t.t:o.serializer,c=o.raw?t.t:o.deserializer,h=void 0===n?l:()=>u(n),d=e.useSyncExternalStore(a,()=>new URLSearchParams(location.hash.slice(1)).get(r),h),w=e.useMemo(()=>null===d?null!=n?n:null:c(d),[n,c,d]),S=e.useCallback(e=>{const t=location.hash,a=new URLSearchParams(t.slice(1)),l=s.n(e)?e(w):e;l===n||null===l?a.delete(r):a.set(r,u(l));const i=a.toString();t!==i&&(location.hash=i)},[n,w,r,u]);return[null!=(i=null!=w?w:n)?i:null,S]};
1
+ "use strict";require("client-only");var e=require("react"),r=require("../noop/index.cjs"),n=require("../no-ssr/index.cjs"),t=require("../chunks/index.b9dLwVor.cjs"),s=require("../chunks/index.BtiK5_Nn.cjs");const a=(()=>{if("u"<typeof window)return e=>r.noop;let e=!1;const n=new Set,t=()=>{n.forEach(e=>e())};return r=>(n.add(r),e||(e=!0,window.addEventListener("hashchange",t)),()=>{n.delete(r)})})();function l(){throw n.noSSRError("useUrlHashState cannot be used on the server without a serverValue")}exports.unstable_useUrlHashState=function(r,n){var i;let o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:t.t,deserializer:t.t};const u=o.raw?t.t:o.serializer,c=o.raw?t.t:o.deserializer,h=void 0===n?l:()=>u(n),d=e.useSyncExternalStore(a,()=>new URLSearchParams(location.hash.slice(1)).get(r),h),w=e.useMemo(()=>null===d?null!=n?n:null:c(d),[n,c,d]),S=e.useCallback(e=>{const t=location.hash,a=new URLSearchParams(t.slice(1)),l=s.n(e)?e(w):e;l===n||null===l?a.delete(r):a.set(r,u(l));const i=a.toString();t!==i&&(location.hash=i)},[n,w,r,u]);return[null!=(i=null!=w?w:n)?i:null,S]};
@@ -1 +1 @@
1
- import"client-only";import{useSyncExternalStore as e,useMemo as n,useCallback as r}from"react";import{noop as t}from"../noop/index.mjs";import{noSSRError as o}from"../no-ssr/index.mjs";import{t as s}from"../chunks/index.D0KaUCcV.mjs";import{n as a}from"../chunks/index.C9-3oDdv.mjs";const i=(()=>{if("undefined"==typeof window)return e=>t;let e=!1;const n=new Set,r=()=>{n.forEach(e=>e())};return t=>(n.add(t),e||(e=!0,window.addEventListener("hashchange",r)),()=>{n.delete(t)})})();function l(){throw o("useUrlHashState cannot be used on the server without a serverValue")}function u(t,o){var u;let c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:s,deserializer:s};const h=c.raw?s:c.serializer,d=c.raw?s:c.deserializer,m=e(i,()=>new URLSearchParams(location.hash.slice(1)).get(t),void 0===o?l:()=>h(o)),w=n(()=>null===m?null!=o?o:null:d(m),[o,d,m]),f=r(e=>{const n=location.hash,r=new URLSearchParams(n.slice(1)),s=a(e)?e(w):e;s===o||null===s?r.delete(t):r.set(t,h(s));const i=r.toString();n!==i&&(location.hash=i)},[o,w,t,h]);return[null!=(u=null!=w?w:o)?u:null,f]}export{u as unstable_useUrlHashState};
1
+ import"client-only";import{useSyncExternalStore as e,useMemo as r,useCallback as t}from"react";import{noop as n}from"../noop/index.mjs";import{noSSRError as o}from"../no-ssr/index.mjs";import{t as s}from"../chunks/index.D0KaUCcV.mjs";import{n as a}from"../chunks/index.C9-3oDdv.mjs";const l=(()=>{if("u"<typeof window)return e=>n;let e=!1;const r=new Set,t=()=>{r.forEach(e=>e())};return n=>(r.add(n),e||(e=!0,window.addEventListener("hashchange",t)),()=>{r.delete(n)})})();function i(){throw o("useUrlHashState cannot be used on the server without a serverValue")}function u(n,o){var u;let c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{raw:!1,serializer:s,deserializer:s};const h=c.raw?s:c.serializer,d=c.raw?s:c.deserializer,m=e(l,()=>new URLSearchParams(location.hash.slice(1)).get(n),void 0===o?i:()=>h(o)),w=r(()=>null===m?null!=o?o:null:d(m),[o,d,m]),f=t(e=>{const r=location.hash,t=new URLSearchParams(r.slice(1)),s=a(e)?e(w):e;s===o||null===s?t.delete(n):t.set(n,h(s));const l=t.toString();r!==l&&(location.hash=l)},[o,w,n,h]);return[null!=(u=null!=w?w:o)?u:null,f]}export{u as unstable_useUrlHashState};