@redhq/ui 3.0.2 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compound/Calendar/Calendar.d.ts +2 -2
- package/dist/compound/Cover/Cover.d.ts +6 -6
- package/dist/compound/Cover/{CoverBase.d.ts → CoverPage.d.ts} +3 -3
- package/dist/compound/{Letter/LetterDetails.d.ts → Cover/CoverSpacer.d.ts} +3 -3
- package/dist/compound/Letter/Letter.d.ts +6 -6
- package/dist/compound/Letter/{LetterBase.d.ts → LetterPage.d.ts} +3 -3
- package/dist/compound/{Cover/CoverDetailsWrapper.d.ts → Letter/LetterSpacer.d.ts} +3 -3
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +119 -119
- package/dist/pagesV2/data.d.ts +6 -5
- package/dist/pagesV2/styles.d.ts +17 -20
- package/dist/stories/print/Calendar.stories.d.ts +1 -1
- package/dist/stories/print/Cover.stories.d.ts +3 -4
- package/dist/stories/print/Letter.stories.d.ts +7 -7
- package/package.json +1 -1
- package/dist/pagesV2/_components/CoronisCompoundCover.d.ts +0 -8
- package/dist/pagesV2/_components/RuralCompoundCover.d.ts +0 -7
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as CalendarPage } from './CalendarPage';
|
|
2
|
+
import { default as CalendarSpacer } from './CalendarSpacer';
|
|
2
3
|
import { default as CalendarImage } from './CalendarImage';
|
|
3
4
|
import { default as CalendarContainer } from './CalendarContainer';
|
|
4
5
|
import { default as CalendarTitle } from './CalendarTitle';
|
|
@@ -14,7 +15,6 @@ import { default as CalendarTableCellItem } from './CalendarTableCellItem';
|
|
|
14
15
|
import { default as CalendarFooter } from './CalendarFooter';
|
|
15
16
|
import { default as CalendarFooterLogo } from './CalendarFooterLogo';
|
|
16
17
|
import { default as CalendarFooterText } from './CalendarFooterText';
|
|
17
|
-
import { default as CalendarSpacer } from './CalendarSpacer';
|
|
18
18
|
export default Calendar;
|
|
19
19
|
declare function Calendar({ id, mode, children }: {
|
|
20
20
|
id?: string;
|
|
@@ -23,6 +23,7 @@ declare function Calendar({ id, mode, children }: {
|
|
|
23
23
|
}): import("react/jsx-runtime").JSX.Element;
|
|
24
24
|
declare namespace Calendar {
|
|
25
25
|
export { CalendarPage as Page };
|
|
26
|
+
export { CalendarSpacer as Spacer };
|
|
26
27
|
export { CalendarImage as Image };
|
|
27
28
|
export { CalendarContainer as Container };
|
|
28
29
|
export { CalendarTitle as Title };
|
|
@@ -38,7 +39,6 @@ declare namespace Calendar {
|
|
|
38
39
|
export { CalendarFooter as Footer };
|
|
39
40
|
export { CalendarFooterLogo as FooterLogo };
|
|
40
41
|
export { CalendarFooterText as FooterText };
|
|
41
|
-
export { CalendarSpacer as Spacer };
|
|
42
42
|
export namespace propTypes {
|
|
43
43
|
let id: any;
|
|
44
44
|
let mode: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { default as
|
|
1
|
+
import { default as CoverPage } from './CoverPage';
|
|
2
|
+
import { default as CoverSpacer } from './CoverSpacer';
|
|
3
3
|
import { default as CoverImage } from './CoverImage';
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as CoverContainer } from './CoverContainer';
|
|
5
5
|
import { default as CoverTitle } from './CoverTitle';
|
|
6
6
|
import { default as CoverAgent } from './CoverAgent';
|
|
7
7
|
import { default as CoverVendor } from './CoverVendor';
|
|
@@ -16,10 +16,10 @@ declare function Cover({ id, mode, children }: {
|
|
|
16
16
|
children: any;
|
|
17
17
|
}): import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
declare namespace Cover {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
19
|
+
export { CoverPage as Page };
|
|
20
|
+
export { CoverSpacer as Spacer };
|
|
21
21
|
export { CoverImage as Image };
|
|
22
|
-
export {
|
|
22
|
+
export { CoverContainer as Container };
|
|
23
23
|
export { CoverTitle as Title };
|
|
24
24
|
export { CoverAgent as Agent };
|
|
25
25
|
export { CoverVendor as Vendor };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export default
|
|
2
|
-
declare function
|
|
1
|
+
export default CoverPage;
|
|
2
|
+
declare function CoverPage({ dpi, wrap, debug, size, bookmark, orientation, style, children, ...rest }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
dpi?: number;
|
|
5
5
|
wrap?: boolean;
|
|
@@ -10,7 +10,7 @@ declare function CoverBase({ dpi, wrap, debug, size, bookmark, orientation, styl
|
|
|
10
10
|
style?: {};
|
|
11
11
|
children: any;
|
|
12
12
|
}): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
declare namespace
|
|
13
|
+
declare namespace CoverPage {
|
|
14
14
|
let displayName: string;
|
|
15
15
|
namespace propTypes {
|
|
16
16
|
let dpi: any;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export default
|
|
2
|
-
declare function
|
|
1
|
+
export default CoverSpacer;
|
|
2
|
+
declare function CoverSpacer({ style, children, ...rest }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
style?: {};
|
|
5
5
|
children: any;
|
|
6
6
|
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare namespace
|
|
7
|
+
declare namespace CoverSpacer {
|
|
8
8
|
let displayName: string;
|
|
9
9
|
namespace propTypes {
|
|
10
10
|
let style: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { default as
|
|
1
|
+
import { default as LetterPage } from './LetterPage';
|
|
2
|
+
import { default as LetterSpacer } from './LetterSpacer';
|
|
3
3
|
import { default as LetterImage } from './LetterImage';
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as LetterContainer } from './LetterContainer';
|
|
5
5
|
import { default as LetterTitle } from './LetterTitle';
|
|
6
6
|
import { default as LetterContent } from './LetterContent';
|
|
7
7
|
import { default as LetterSalutation } from './LetterSalutation';
|
|
@@ -24,10 +24,10 @@ declare function Letter({ id, mode, children }: {
|
|
|
24
24
|
children: any;
|
|
25
25
|
}): import("react/jsx-runtime").JSX.Element;
|
|
26
26
|
declare namespace Letter {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
27
|
+
export { LetterPage as Page };
|
|
28
|
+
export { LetterSpacer as Spacer };
|
|
29
29
|
export { LetterImage as Image };
|
|
30
|
-
export {
|
|
30
|
+
export { LetterContainer as Container };
|
|
31
31
|
export { LetterTitle as Title };
|
|
32
32
|
export { LetterContent as Content };
|
|
33
33
|
export { LetterSalutation as Salutation };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export default
|
|
2
|
-
declare function
|
|
1
|
+
export default LetterPage;
|
|
2
|
+
declare function LetterPage({ dpi, wrap, debug, size, bookmark, orientation, style, children, ...rest }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
dpi?: number;
|
|
5
5
|
wrap?: boolean;
|
|
@@ -10,7 +10,7 @@ declare function LetterBase({ dpi, wrap, debug, size, bookmark, orientation, sty
|
|
|
10
10
|
style?: {};
|
|
11
11
|
children: any;
|
|
12
12
|
}): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
declare namespace
|
|
13
|
+
declare namespace LetterPage {
|
|
14
14
|
let displayName: string;
|
|
15
15
|
namespace propTypes {
|
|
16
16
|
let dpi: any;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export default
|
|
2
|
-
declare function
|
|
1
|
+
export default LetterSpacer;
|
|
2
|
+
declare function LetterSpacer({ style, children, ...rest }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
style?: {};
|
|
5
5
|
children: any;
|
|
6
6
|
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
declare namespace
|
|
7
|
+
declare namespace LetterSpacer {
|
|
8
8
|
let displayName: string;
|
|
9
9
|
namespace propTypes {
|
|
10
10
|
let style: any;
|
package/dist/index.cjs.js
CHANGED
|
@@ -445,4 +445,4 @@ Check the render method of \``+F+"`."),T||w&&(T=`
|
|
|
445
445
|
Check the top-level render call using <`+w+">.");var re="";v!=null&&o!==v&&(w=null,typeof v.tag=="number"?w=m(v):typeof v.name=="string"&&(w=v.name),w&&(re=" It was passed a child from "+w+".")),st(l,(function(){console.error('Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',T,re)}))}}};var rc,xf=Jt(!0),SA=Jt(!1),QA=1,Jf=2,kc=[],Zf=0,qg=0,Gh=0,Wo=1,Ui=2,d0=3,m0=!1,_c=!1,Kg=null,kA=!1,_A=y(null),Wh=y(0),Xc=y(null),If=null,DA=1,d1=2,t0=y(0),nc=0,ac=1,$l=2,os=4,oa=8,bd=new Set,Kd=new Set,jh=new Set,Dc=new Set,$c=0,In=null,X0=null,jo=null,Y1=!1,A1=!1,Vd=!1,$2=0,Jd=0,Qu=null,Vg=0,h1=25,wt=null,Rc=null,Xf=-1,Yh=!1,Zd={readContext:at,use:Y0,useCallback:r0,useContext:r0,useEffect:r0,useImperativeHandle:r0,useLayoutEffect:r0,useInsertionEffect:r0,useMemo:r0,useReducer:r0,useRef:r0,useState:r0,useDebugValue:r0,useDeferredValue:r0,useTransition:r0,useSyncExternalStore:r0,useId:r0,useHostTransitionStatus:r0,useFormState:r0,useActionState:r0,useOptimistic:r0,useMemoCache:r0,useCacheRefresh:r0};Zd.useEffectEvent=r0;var qh=null,Jg=null,q1=null,I5=null,ku=null,ic=null,Xd=null;qh={readContext:function(o){return at(o)},use:Y0,useCallback:function(o,l){return wt="useCallback",jr(),Ps(l),Fo(o,l)},useContext:function(o){return wt="useContext",jr(),at(o)},useEffect:function(o,l){return wt="useEffect",jr(),Ps(l),hc(o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",jr(),Ps(v),Nc(o,l,v)},useInsertionEffect:function(o,l){wt="useInsertionEffect",jr(),Ps(l),ms(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",jr(),Ps(l),Ou(o,l)},useMemo:function(o,l){wt="useMemo",jr(),Ps(l);var v=_t.H;_t.H=ku;try{return Gl(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",jr();var w=_t.H;_t.H=ku;try{return yi(o,l,v)}finally{_t.H=w}},useRef:function(o){return wt="useRef",jr(),Ac(o)},useState:function(o){wt="useState",jr();var l=_t.H;_t.H=ku;try{return ou(o)}finally{_t.H=l}},useDebugValue:function(){wt="useDebugValue",jr()},useDeferredValue:function(o,l){return wt="useDeferredValue",jr(),vs(o,l)},useTransition:function(){return wt="useTransition",jr(),ys()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",jr(),qn(o,l,v)},useId:function(){return wt="useId",jr(),Yi()},useFormState:function(o,l){return wt="useFormState",jr(),S0(),Do(o,l)},useActionState:function(o,l){return wt="useActionState",jr(),Do(o,l)},useOptimistic:function(o){return wt="useOptimistic",jr(),su(o)},useHostTransitionStatus:ho,useMemoCache:s0,useCacheRefresh:function(){return wt="useCacheRefresh",jr(),bs()},useEffectEvent:function(o){return wt="useEffectEvent",jr(),uu(o)}},Jg={readContext:function(o){return at(o)},use:Y0,useCallback:function(o,l){return wt="useCallback",Zt(),Fo(o,l)},useContext:function(o){return wt="useContext",Zt(),at(o)},useEffect:function(o,l){return wt="useEffect",Zt(),hc(o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",Zt(),Nc(o,l,v)},useInsertionEffect:function(o,l){wt="useInsertionEffect",Zt(),ms(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",Zt(),Ou(o,l)},useMemo:function(o,l){wt="useMemo",Zt();var v=_t.H;_t.H=ku;try{return Gl(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",Zt();var w=_t.H;_t.H=ku;try{return yi(o,l,v)}finally{_t.H=w}},useRef:function(o){return wt="useRef",Zt(),Ac(o)},useState:function(o){wt="useState",Zt();var l=_t.H;_t.H=ku;try{return ou(o)}finally{_t.H=l}},useDebugValue:function(){wt="useDebugValue",Zt()},useDeferredValue:function(o,l){return wt="useDeferredValue",Zt(),vs(o,l)},useTransition:function(){return wt="useTransition",Zt(),ys()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",Zt(),qn(o,l,v)},useId:function(){return wt="useId",Zt(),Yi()},useActionState:function(o,l){return wt="useActionState",Zt(),Do(o,l)},useFormState:function(o,l){return wt="useFormState",Zt(),S0(),Do(o,l)},useOptimistic:function(o){return wt="useOptimistic",Zt(),su(o)},useHostTransitionStatus:ho,useMemoCache:s0,useCacheRefresh:function(){return wt="useCacheRefresh",Zt(),bs()},useEffectEvent:function(o){return wt="useEffectEvent",Zt(),uu(o)}},q1={readContext:function(o){return at(o)},use:Y0,useCallback:function(o,l){return wt="useCallback",Zt(),ji(o,l)},useContext:function(o){return wt="useContext",Zt(),at(o)},useEffect:function(o,l){wt="useEffect",Zt(),q0(2048,oa,o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",Zt(),ol(o,l,v)},useInsertionEffect:function(o,l){return wt="useInsertionEffect",Zt(),q0(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",Zt(),q0(4,os,o,l)},useMemo:function(o,l){wt="useMemo",Zt();var v=_t.H;_t.H=ic;try{return Ti(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",Zt();var w=_t.H;_t.H=ic;try{return Ja(o)}finally{_t.H=w}},useRef:function(){return wt="useRef",Zt(),Hn().memoizedState},useState:function(){wt="useState",Zt();var o=_t.H;_t.H=ic;try{return Ja(Ca)}finally{_t.H=o}},useDebugValue:function(){wt="useDebugValue",Zt()},useDeferredValue:function(o,l){return wt="useDeferredValue",Zt(),na(o,l)},useTransition:function(){return wt="useTransition",Zt(),g0()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",Zt(),Na(o,l,v)},useId:function(){return wt="useId",Zt(),Hn().memoizedState},useFormState:function(o){return wt="useFormState",Zt(),S0(),cf(o)},useActionState:function(o){return wt="useActionState",Zt(),cf(o)},useOptimistic:function(o,l){return wt="useOptimistic",Zt(),Zo(o,l)},useHostTransitionStatus:ho,useMemoCache:s0,useCacheRefresh:function(){return wt="useCacheRefresh",Zt(),Hn().memoizedState},useEffectEvent:function(o){return wt="useEffectEvent",Zt(),Ro(o)}},I5={readContext:function(o){return at(o)},use:Y0,useCallback:function(o,l){return wt="useCallback",Zt(),ji(o,l)},useContext:function(o){return wt="useContext",Zt(),at(o)},useEffect:function(o,l){wt="useEffect",Zt(),q0(2048,oa,o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",Zt(),ol(o,l,v)},useInsertionEffect:function(o,l){return wt="useInsertionEffect",Zt(),q0(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",Zt(),q0(4,os,o,l)},useMemo:function(o,l){wt="useMemo",Zt();var v=_t.H;_t.H=Xd;try{return Ti(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",Zt();var w=_t.H;_t.H=Xd;try{return Jo(o)}finally{_t.H=w}},useRef:function(){return wt="useRef",Zt(),Hn().memoizedState},useState:function(){wt="useState",Zt();var o=_t.H;_t.H=Xd;try{return Jo(Ca)}finally{_t.H=o}},useDebugValue:function(){wt="useDebugValue",Zt()},useDeferredValue:function(o,l){return wt="useDeferredValue",Zt(),fo(o,l)},useTransition:function(){return wt="useTransition",Zt(),Uu()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",Zt(),Na(o,l,v)},useId:function(){return wt="useId",Zt(),Hn().memoizedState},useFormState:function(o){return wt="useFormState",Zt(),S0(),ps(o)},useActionState:function(o){return wt="useActionState",Zt(),ps(o)},useOptimistic:function(o,l){return wt="useOptimistic",Zt(),Cl(o,l)},useHostTransitionStatus:ho,useMemoCache:s0,useCacheRefresh:function(){return wt="useCacheRefresh",Zt(),Hn().memoizedState},useEffectEvent:function(o){return wt="useEffectEvent",Zt(),Ro(o)}},ku={readContext:function(o){return a(),at(o)},use:function(o){return n(),Y0(o)},useCallback:function(o,l){return wt="useCallback",n(),jr(),Fo(o,l)},useContext:function(o){return wt="useContext",n(),jr(),at(o)},useEffect:function(o,l){return wt="useEffect",n(),jr(),hc(o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",n(),jr(),Nc(o,l,v)},useInsertionEffect:function(o,l){wt="useInsertionEffect",n(),jr(),ms(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",n(),jr(),Ou(o,l)},useMemo:function(o,l){wt="useMemo",n(),jr();var v=_t.H;_t.H=ku;try{return Gl(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",n(),jr();var w=_t.H;_t.H=ku;try{return yi(o,l,v)}finally{_t.H=w}},useRef:function(o){return wt="useRef",n(),jr(),Ac(o)},useState:function(o){wt="useState",n(),jr();var l=_t.H;_t.H=ku;try{return ou(o)}finally{_t.H=l}},useDebugValue:function(){wt="useDebugValue",n(),jr()},useDeferredValue:function(o,l){return wt="useDeferredValue",n(),jr(),vs(o,l)},useTransition:function(){return wt="useTransition",n(),jr(),ys()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",n(),jr(),qn(o,l,v)},useId:function(){return wt="useId",n(),jr(),Yi()},useFormState:function(o,l){return wt="useFormState",n(),jr(),Do(o,l)},useActionState:function(o,l){return wt="useActionState",n(),jr(),Do(o,l)},useOptimistic:function(o){return wt="useOptimistic",n(),jr(),su(o)},useMemoCache:function(o){return n(),s0(o)},useHostTransitionStatus:ho,useCacheRefresh:function(){return wt="useCacheRefresh",jr(),bs()},useEffectEvent:function(o){return wt="useEffectEvent",n(),jr(),uu(o)}},ic={readContext:function(o){return a(),at(o)},use:function(o){return n(),Y0(o)},useCallback:function(o,l){return wt="useCallback",n(),Zt(),ji(o,l)},useContext:function(o){return wt="useContext",n(),Zt(),at(o)},useEffect:function(o,l){wt="useEffect",n(),Zt(),q0(2048,oa,o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",n(),Zt(),ol(o,l,v)},useInsertionEffect:function(o,l){return wt="useInsertionEffect",n(),Zt(),q0(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",n(),Zt(),q0(4,os,o,l)},useMemo:function(o,l){wt="useMemo",n(),Zt();var v=_t.H;_t.H=ic;try{return Ti(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",n(),Zt();var w=_t.H;_t.H=ic;try{return Ja(o)}finally{_t.H=w}},useRef:function(){return wt="useRef",n(),Zt(),Hn().memoizedState},useState:function(){wt="useState",n(),Zt();var o=_t.H;_t.H=ic;try{return Ja(Ca)}finally{_t.H=o}},useDebugValue:function(){wt="useDebugValue",n(),Zt()},useDeferredValue:function(o,l){return wt="useDeferredValue",n(),Zt(),na(o,l)},useTransition:function(){return wt="useTransition",n(),Zt(),g0()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",n(),Zt(),Na(o,l,v)},useId:function(){return wt="useId",n(),Zt(),Hn().memoizedState},useFormState:function(o){return wt="useFormState",n(),Zt(),cf(o)},useActionState:function(o){return wt="useActionState",n(),Zt(),cf(o)},useOptimistic:function(o,l){return wt="useOptimistic",n(),Zt(),Zo(o,l)},useMemoCache:function(o){return n(),s0(o)},useHostTransitionStatus:ho,useCacheRefresh:function(){return wt="useCacheRefresh",Zt(),Hn().memoizedState},useEffectEvent:function(o){return wt="useEffectEvent",n(),Zt(),Ro(o)}},Xd={readContext:function(o){return a(),at(o)},use:function(o){return n(),Y0(o)},useCallback:function(o,l){return wt="useCallback",n(),Zt(),ji(o,l)},useContext:function(o){return wt="useContext",n(),Zt(),at(o)},useEffect:function(o,l){wt="useEffect",n(),Zt(),q0(2048,oa,o,l)},useImperativeHandle:function(o,l,v){return wt="useImperativeHandle",n(),Zt(),ol(o,l,v)},useInsertionEffect:function(o,l){return wt="useInsertionEffect",n(),Zt(),q0(4,$l,o,l)},useLayoutEffect:function(o,l){return wt="useLayoutEffect",n(),Zt(),q0(4,os,o,l)},useMemo:function(o,l){wt="useMemo",n(),Zt();var v=_t.H;_t.H=ic;try{return Ti(o,l)}finally{_t.H=v}},useReducer:function(o,l,v){wt="useReducer",n(),Zt();var w=_t.H;_t.H=ic;try{return Jo(o)}finally{_t.H=w}},useRef:function(){return wt="useRef",n(),Zt(),Hn().memoizedState},useState:function(){wt="useState",n(),Zt();var o=_t.H;_t.H=ic;try{return Jo(Ca)}finally{_t.H=o}},useDebugValue:function(){wt="useDebugValue",n(),Zt()},useDeferredValue:function(o,l){return wt="useDeferredValue",n(),Zt(),fo(o,l)},useTransition:function(){return wt="useTransition",n(),Zt(),Uu()},useSyncExternalStore:function(o,l,v){return wt="useSyncExternalStore",n(),Zt(),Na(o,l,v)},useId:function(){return wt="useId",n(),Zt(),Hn().memoizedState},useFormState:function(o){return wt="useFormState",n(),Zt(),ps(o)},useActionState:function(o){return wt="useActionState",n(),Zt(),ps(o)},useOptimistic:function(o,l){return wt="useOptimistic",n(),Zt(),Cl(o,l)},useMemoCache:function(o){return n(),s0(o)},useHostTransitionStatus:ho,useCacheRefresh:function(){return wt="useCacheRefresh",Zt(),Hn().memoizedState},useEffectEvent:function(o){return wt="useEffectEvent",n(),Zt(),Ro(o)}};var w5={},B5=new Set,S5=new Set,Kh=new Set,ep=new Set,tp=new Set,rp=new Set,np=new Set,ap=new Set,u=new Set,c=new Set;Object.freeze(w5);var b={enqueueSetState:function(o,l,v){var w=Nr(o=o._reactInternals),F=W0(w);F.payload=l,v!=null&&(Es(v),F.callback=v),(l=ii(o,F,w))!==null&&(It(w,"this.setState()",o),Ln(l,o,w),oi(l,o,w))},enqueueReplaceState:function(o,l,v){var w=Nr(o=o._reactInternals),F=W0(w);F.tag=Wo,F.payload=l,v!=null&&(Es(v),F.callback=v),(l=ii(o,F,w))!==null&&(It(w,"this.replaceState()",o),Ln(l,o,w),oi(l,o,w))},enqueueForceUpdate:function(o,l){var v=Nr(o=o._reactInternals),w=W0(v);w.tag=Ui,l!=null&&(Es(l),w.callback=l),(l=ii(o,w,v))!==null&&(It(v,"this.forceUpdate()",o),Ln(l,o,v),oi(l,o,v))}},k=Error("This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue."),O=!1,Y={},ce={},Qe={},Je={},zt=!1,Ir={},mr={},Vt={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},Kr=!1,Wn=null;Wn=new Set;var R0=!1,Ke=!1,et=!1,lt=typeof WeakSet=="function"?WeakSet:Set,$t=null,Vr=null,oo=null,Mn=null,$0=!1,Cn=null,tn=!1,ti=8192,Js={getCacheForType:function(o){var l=at(ao),v=l.data.get(o);return v===void 0&&(v=o(),l.data.set(o,v)),v},cacheSignal:function(){return at(ao).controller.signal},getOwner:function(){return Md}};if(typeof Symbol=="function"&&Symbol.for){var So=Symbol.for;So("selector.component"),So("selector.has_pseudo_class"),So("selector.role"),So("selector.test_id"),So("selector.text")}var P0=typeof WeakMap=="function"?WeakMap:Map,Qn=0,ln=2,wa=4,Ba=0,ef=1,K1=2,Q5=3,Vh=4,k5=6,sx=5,ri=Qn,Qo=null,E0=null,v0=0,wf=0,_5=1,Jh=2,ip=3,lx=4,H4=5,op=6,D5=7,G4=8,Zh=9,ci=wf,$f=null,V1=!1,Zg=!1,W4=!1,RA=0,Zs=Ba,J1=0,Z1=0,j4=0,Bf=0,Xh=0,sp=null,tf=null,R5=!1,F5=0,ux=0,cx=300,Y4=1/0,tD=500,lp=null,Xs=null,X1=null,T5=0,q4=1,K4=2,fx=3,$1=0,dx=1,Ax=2,hx=3,gx=4,N5=5,Nl=0,eh=null,Xg=null,$d=0,V4=0,J4=-0,Z4=null,px=null,mx=null,eA=T5,vx=null,rD=50,up=0,X4=null,$4=!1,L5=!1,nD=50,$h=0,cp=null,$g=!1,P5=null,yx=!1,bx=new Set,Ex=!1;try{var Cx=Object.preventExtensions({})}catch{Ex=!0}var xx=!1;return xc.createContainer=function(o,l,v,w,F,T,re,oe,Ie,Ne){return(function(ot,bt,Ft,Qr,nn,jn,$e,rt,yt,rr,en,yn){return ot=new Dl(ot,bt,Ft,$e,yt,rr,en,yn,null),bt=1,jn===!0&&(bt|=24),jn=r(3,null,null,2|bt),ot.current=jn,jn.stateNode=ot,ht(bt=ke()),ot.pooledCache=bt,ht(bt),jn.memoizedState={element:Qr,isDehydrated:Ft,cache:bt},mn(jn),ot})(o,l,!1,null,0,w,T,0,re,oe,Ie,Ne)},xc.flushSyncWork=function(){return(ri&(ln|wa))!==Qn||(_n(0),!1)},xc.updateContainer=function(o,l,v,w){var F=l.current,T=Nr(F);return mf(F,T,o,l,v,w),T},xc.updateContainerSync=function(o,l,v,w){return mf(l.current,2,o,l,v,w),2},xc},t.exports.default=t.exports,Object.defineProperty(t.exports,"__esModule",{value:!0}))),A7.exports;var t})();var h7;Bne(Pb.exports);var sh={},g7,lh={};process.env.NODE_ENV==="production"?h7||(h7=1,sh.ConcurrentRoot=1,sh.ContinuousEventPriority=8,sh.DefaultEventPriority=32,sh.DiscreteEventPriority=2,sh.IdleEventPriority=268435456,sh.LegacyRoot=0,sh.NoEventPriority=0):g7||(g7=1,process.env.NODE_ENV!=="production"&&(lh.ConcurrentRoot=1,lh.ContinuousEventPriority=8,lh.DefaultEventPriority=32,lh.DiscreteEventPriority=2,lh.IdleEventPriority=268435456,lh.LegacyRoot=0,lh.NoEventPriority=0));var Qne=m7();const kne=cs(Qne);function _ne(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function Dne(t){if(t.__esModule)return t;var e=t.default;if(typeof e=="function"){var r=function n(){return this instanceof n?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};r.prototype=e.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(t).forEach((function(n){var a=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(r,n,a.get?a:{enumerable:!0,get:function(){return t[n]}})})),r}var bm,$_={exports:{}},Rne=Dne(AC);(bm=$_).exports=function t(e){var r=kne,n=pn,a=Rne;function i(x){for(var E="https://reactjs.org/docs/error-decoder.html?invariant="+x,D=1;D<arguments.length;D++)E+="&args[]="+encodeURIComponent(arguments[D]);return"Minified React error #"+x+"; visit "+E+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var s=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;s.hasOwnProperty("ReactCurrentDispatcher")||(s.ReactCurrentDispatcher={current:null}),s.hasOwnProperty("ReactCurrentBatchConfig")||(s.ReactCurrentBatchConfig={suspense:null});var d=typeof Symbol=="function"&&Symbol.for,p=d?Symbol.for("react.element"):60103,m=d?Symbol.for("react.portal"):60106,y=d?Symbol.for("react.fragment"):60107,I=d?Symbol.for("react.strict_mode"):60108,S=d?Symbol.for("react.profiler"):60114,_=d?Symbol.for("react.provider"):60109,R=d?Symbol.for("react.context"):60110,P=d?Symbol.for("react.concurrent_mode"):60111,U=d?Symbol.for("react.forward_ref"):60112,q=d?Symbol.for("react.suspense"):60113,z=d?Symbol.for("react.suspense_list"):60120,M=d?Symbol.for("react.memo"):60115,G=d?Symbol.for("react.lazy"):60116,N=typeof Symbol=="function"&&Symbol.iterator;function ne(x){return x===null||typeof x!="object"?null:typeof(x=N&&x[N]||x["@@iterator"])=="function"?x:null}function Z(x){if(x==null)return null;if(typeof x=="function")return x.displayName||x.name||null;if(typeof x=="string")return x;switch(x){case y:return"Fragment";case m:return"Portal";case S:return"Profiler";case I:return"StrictMode";case q:return"Suspense";case z:return"SuspenseList"}if(typeof x=="object")switch(x.$$typeof){case R:return"Context.Consumer";case _:return"Context.Provider";case U:var E=x.render;return E=E.displayName||E.name||"",x.displayName||(E!==""?"ForwardRef("+E+")":"ForwardRef");case M:return Z(x.type);case G:if(x=x._status===1?x._result:null)return Z(x)}return null}function J(x){var E=x,D=x;if(x.alternate)for(;E.return;)E=E.return;else{x=E;do(1026&(E=x).effectTag)!=0&&(D=E.return),x=E.return;while(x)}return E.tag===3?D:null}function le(x){if(J(x)!==x)throw Error(i(188))}function $(x){var E=x.alternate;if(!E){if((E=J(x))===null)throw Error(i(188));return E!==x?null:x}for(var D=x,te=E;;){var ie=D.return;if(ie===null)break;var ye=ie.alternate;if(ye===null){if((te=ie.return)!==null){D=te;continue}break}if(ie.child===ye.child){for(ye=ie.child;ye;){if(ye===D)return le(ie),x;if(ye===te)return le(ie),E;ye=ye.sibling}throw Error(i(188))}if(D.return!==te.return)D=ie,te=ye;else{for(var Oe=!1,Bt=ie.child;Bt;){if(Bt===D){Oe=!0,D=ie,te=ye;break}if(Bt===te){Oe=!0,te=ie,D=ye;break}Bt=Bt.sibling}if(!Oe){for(Bt=ye.child;Bt;){if(Bt===D){Oe=!0,D=ye,te=ie;break}if(Bt===te){Oe=!0,te=ye,D=ie;break}Bt=Bt.sibling}if(!Oe)throw Error(i(189))}}if(D.alternate!==te)throw Error(i(190))}if(D.tag!==3)throw Error(i(188));return D.stateNode.current===D?x:E}function ge(x){if(!(x=$(x)))return null;for(var E=x;;){if(E.tag===5||E.tag===6)return E;if(E.child)E.child.return=E,E=E.child;else{if(E===x)break;for(;!E.sibling;){if(!E.return||E.return===x)return null;E=E.return}E.sibling.return=E.return,E=E.sibling}}return null}var W=e.getPublicInstance,ee=e.getRootHostContext,be=e.getChildHostContext,we=e.prepareForCommit,fe=e.resetAfterCommit,Ee=e.createInstance,Be=e.appendInitialChild,Ge=e.finalizeInitialChildren,Se=e.prepareUpdate,_e=e.shouldSetTextContent,Pe=e.createTextInstance,Me=null,Ue=null,Tt=e.noTimeout,Ct=!0,pt=null,Le=e.appendChild,Ve=e.appendChildToContainer,qe=e.commitTextUpdate,We=null,Ze=e.commitUpdate,jt=e.insertBefore,nr=null,cr=e.removeChild,Br=e.removeChildFromContainer,or=e.resetTextContent,tt=null,sr=null,Pr=null,st=null,hr=null,dr=null,br=/^(.*)[\\\/]/;function gr(x){var E="";do{e:switch(x.tag){case 3:case 4:case 6:case 7:case 10:case 9:var D="";break e;default:var te=x._debugOwner,ie=x._debugSource,ye=Z(x.type);D=null,te&&(D=Z(te.type)),te=ye,ye="",ie?ye=" (at "+ie.fileName.replace(br,"")+":"+ie.lineNumber+")":D&&(ye=" (created by "+D+")"),D=`
|
|
446
446
|
in `+(te||"Unknown")+ye}E+=D,x=x.return}while(x);return E}var Wr=[],yr=-1;function wr(x){0>yr||(x.current=Wr[yr],Wr[yr]=null,yr--)}function Rr(x,E){yr++,Wr[yr]=x.current,x.current=E}var zr={},me={current:zr},at={current:!1},kt=zr;function Rt(x,E){var D=x.type.contextTypes;if(!D)return zr;var te=x.stateNode;if(te&&te.__reactInternalMemoizedUnmaskedChildContext===E)return te.__reactInternalMemoizedMaskedChildContext;var ie,ye={};for(ie in D)ye[ie]=E[ie];return te&&((x=x.stateNode).__reactInternalMemoizedUnmaskedChildContext=E,x.__reactInternalMemoizedMaskedChildContext=ye),ye}function ke(x){return(x=x.childContextTypes)!=null}function ht(x){wr(at),wr(me)}function ue(x){wr(at),wr(me)}function It(x,E,D){if(me.current!==zr)throw Error(i(168));Rr(me,E),Rr(at,D)}function fr(x,E,D){var te=x.stateNode;if(x=E.childContextTypes,typeof te.getChildContext!="function")return D;for(var ie in te=te.getChildContext())if(!(ie in x))throw Error(i(108,Z(E)||"Unknown",ie));return r({},D,{},te)}function H(x){var E=x.stateNode;return E=E&&E.__reactInternalMemoizedMergedChildContext||zr,kt=me.current,Rr(me,E),Rr(at,at.current),!0}function At(x,E,D){var te=x.stateNode;if(!te)throw Error(i(169));D?(E=fr(x,E,kt),te.__reactInternalMemoizedMergedChildContext=E,wr(at),wr(me),Rr(me,E)):wr(at),Rr(at,D)}var gt=a.unstable_runWithPriority,Ae=a.unstable_scheduleCallback,De=a.unstable_cancelCallback,Xe=a.unstable_shouldYield,lr=a.unstable_requestPaint,er=a.unstable_now,Ht=a.unstable_getCurrentPriorityLevel,Yr=a.unstable_ImmediatePriority,x0=a.unstable_UserBlockingPriority,Xr=a.unstable_NormalPriority,Er=a.unstable_LowPriority,rn=a.unstable_IdlePriority,Lr={},Yn=lr!==void 0?lr:function(){},y0=null,I0=null,_n=!1,w0=er(),wn=1e4>w0?er:function(){return er()-w0};function h0(){switch(Ht()){case Yr:return 99;case x0:return 98;case Xr:return 97;case Er:return 96;case rn:return 95;default:throw Error(i(332))}}function B0(x){switch(x){case 99:return Yr;case 98:return x0;case 97:return Xr;case 96:return Er;case 95:return rn;default:throw Error(i(332))}}function zn(x,E){return x=B0(x),gt(x,E)}function Tr(x,E,D){return x=B0(x),Ae(x,E,D)}function Mt(x){return y0===null?(y0=[x],I0=Ae(Yr,Qa)):y0.push(x),Lr}function Nn(){if(I0!==null){var x=I0;I0=null,De(x)}Qa()}function Qa(){if(!_n&&y0!==null){_n=!0;var x=0;try{var E=y0;zn(99,(function(){for(;x<E.length;x++){var D=E[x];do D=D(!0);while(D!==null)}})),y0=null}catch(D){throw y0!==null&&(y0=y0.slice(x+1)),Ae(Yr,Nn),D}finally{_n=!1}}}var bn=3;function la(x,E,D){return 1073741821-(1+((1073741821-x+E/10)/(D/=10)|0))*D}var ka=typeof Object.is=="function"?Object.is:function(x,E){return x===E&&(x!==0||1/x==1/E)||x!=x&&E!=E},Or=Object.prototype.hasOwnProperty;function Di(x,E){if(ka(x,E))return!0;if(typeof x!="object"||x===null||typeof E!="object"||E===null)return!1;var D=Object.keys(x),te=Object.keys(E);if(D.length!==te.length)return!1;for(te=0;te<D.length;te++)if(!Or.call(E,D[te])||!ka(x[D[te]],E[D[te]]))return!1;return!0}function z0(x,E){if(x&&x.defaultProps)for(var D in E=r({},E),x=x.defaultProps)E[D]===void 0&&(E[D]=x[D]);return E}var H0={current:null},gi=null,Ri=null,Bn=null;function dn(){Bn=Ri=gi=null}function N0(x,E){var D=x.type._context;Rr(H0,D._currentValue2),D._currentValue2=E}function ua(x){var E=H0.current;wr(H0),(x=x.type._context)._currentValue2=E}function ai(x,E){for(;x!==null;){var D=x.alternate;if(x.childExpirationTime<E)x.childExpirationTime=E,D!==null&&D.childExpirationTime<E&&(D.childExpirationTime=E);else{if(!(D!==null&&D.childExpirationTime<E))break;D.childExpirationTime=E}x=x.return}}function de(x,E){gi=x,Bn=Ri=null,(x=x.dependencies)!==null&&x.firstContext!==null&&(x.expirationTime>=E&&(gs=!0),x.firstContext=null)}function he(x,E){if(Bn!==x&&E!==!1&&E!==0)if(typeof E=="number"&&E!==1073741823||(Bn=x,E=1073741823),E={context:x,observedBits:E,next:null},Ri===null){if(gi===null)throw Error(i(308));Ri=E,gi.dependencies={expirationTime:0,firstContext:E,responders:null}}else Ri=Ri.next=E;return x._currentValue2}var Te=!1;function je(x){return{baseState:x,firstUpdate:null,lastUpdate:null,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function ct(x){return{baseState:x.baseState,firstUpdate:x.firstUpdate,lastUpdate:x.lastUpdate,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Qt(x,E){return{expirationTime:x,suspenseConfig:E,tag:0,payload:null,callback:null,next:null,nextEffect:null}}function Jt(x,E){x.lastUpdate===null?x.firstUpdate=x.lastUpdate=E:(x.lastUpdate.next=E,x.lastUpdate=E)}function qt(x,E){var D=x.alternate;if(D===null){var te=x.updateQueue,ie=null;te===null&&(te=x.updateQueue=je(x.memoizedState))}else te=x.updateQueue,ie=D.updateQueue,te===null?ie===null?(te=x.updateQueue=je(x.memoizedState),ie=D.updateQueue=je(D.memoizedState)):te=x.updateQueue=ct(ie):ie===null&&(ie=D.updateQueue=ct(te));ie===null||te===ie?Jt(te,E):te.lastUpdate===null||ie.lastUpdate===null?(Jt(te,E),Jt(ie,E)):(Jt(te,E),ie.lastUpdate=E)}function Ar(x,E){var D=x.updateQueue;(D=D===null?x.updateQueue=je(x.memoizedState):tr(x,D)).lastCapturedUpdate===null?D.firstCapturedUpdate=D.lastCapturedUpdate=E:(D.lastCapturedUpdate.next=E,D.lastCapturedUpdate=E)}function tr(x,E){var D=x.alternate;return D!==null&&E===D.updateQueue&&(E=x.updateQueue=ct(E)),E}function Sr(x,E,D,te,ie,ye){switch(D.tag){case 1:return typeof(x=D.payload)=="function"?x.call(ye,te,ie):x;case 3:x.effectTag=-4097&x.effectTag|64;case 0:if((ie=typeof(x=D.payload)=="function"?x.call(ye,te,ie):x)==null)break;return r({},te,ie);case 2:Te=!0}return te}function Gr(x,E,D,te,ie){Te=!1;for(var ye=(E=tr(x,E)).baseState,Oe=null,Bt=0,Kt=E.firstUpdate,pr=ye;Kt!==null;){var Nr=Kt.expirationTime;Nr<ie?(Oe===null&&(Oe=Kt,ye=pr),Bt<Nr&&(Bt=Nr)):(Wu(Nr,Kt.suspenseConfig),pr=Sr(x,0,Kt,pr,D,te),Kt.callback!==null&&(x.effectTag|=32,Kt.nextEffect=null,E.lastEffect===null?E.firstEffect=E.lastEffect=Kt:(E.lastEffect.nextEffect=Kt,E.lastEffect=Kt))),Kt=Kt.next}for(Nr=null,Kt=E.firstCapturedUpdate;Kt!==null;){var Ua=Kt.expirationTime;Ua<ie?(Nr===null&&(Nr=Kt,Oe===null&&(ye=pr)),Bt<Ua&&(Bt=Ua)):(pr=Sr(x,0,Kt,pr,D,te),Kt.callback!==null&&(x.effectTag|=32,Kt.nextEffect=null,E.lastCapturedEffect===null?E.firstCapturedEffect=E.lastCapturedEffect=Kt:(E.lastCapturedEffect.nextEffect=Kt,E.lastCapturedEffect=Kt))),Kt=Kt.next}Oe===null&&(E.lastUpdate=null),Nr===null?E.lastCapturedUpdate=null:x.effectTag|=32,Oe===null&&Nr===null&&(ye=pr),E.baseState=ye,E.firstUpdate=Oe,E.firstCapturedUpdate=Nr,ju(Bt),x.expirationTime=Bt,x.memoizedState=pr}function hn(x,E,D){E.firstCapturedUpdate!==null&&(E.lastUpdate!==null&&(E.lastUpdate.next=E.firstCapturedUpdate,E.lastUpdate=E.lastCapturedUpdate),E.firstCapturedUpdate=E.lastCapturedUpdate=null),e0(E.firstEffect,D),E.firstEffect=E.lastEffect=null,e0(E.firstCapturedEffect,D),E.firstCapturedEffect=E.lastCapturedEffect=null}function e0(x,E){for(;x!==null;){var D=x.callback;if(D!==null){x.callback=null;var te=E;if(typeof D!="function")throw Error(i(191,D));D.call(te)}x=x.nextEffect}}var mn=s.ReactCurrentBatchConfig,G0=new n.Component().refs;function W0(x,E,D,te){D=(D=D(te,E=x.memoizedState))==null?E:r({},E,D),x.memoizedState=D,(te=x.updateQueue)!==null&&x.expirationTime===0&&(te.baseState=D)}var ii={isMounted:function(x){return!!(x=x._reactInternalFiber)&&J(x)===x},enqueueSetState:function(x,E,D){x=x._reactInternalFiber;var te=ui(),ie=mn.suspense;(ie=Qt(te=da(te,x,ie),ie)).payload=E,D!=null&&(ie.callback=D),qt(x,ie),Vi(x,te)},enqueueReplaceState:function(x,E,D){x=x._reactInternalFiber;var te=ui(),ie=mn.suspense;(ie=Qt(te=da(te,x,ie),ie)).tag=1,ie.payload=E,D!=null&&(ie.callback=D),qt(x,ie),Vi(x,te)},enqueueForceUpdate:function(x,E){x=x._reactInternalFiber;var D=ui(),te=mn.suspense;(te=Qt(D=da(D,x,te),te)).tag=2,E!=null&&(te.callback=E),qt(x,te),Vi(x,D)}};function oi(x,E,D,te,ie,ye,Oe){return typeof(x=x.stateNode).shouldComponentUpdate=="function"?x.shouldComponentUpdate(te,ye,Oe):!(E.prototype&&E.prototype.isPureReactComponent&&Di(D,te)&&Di(ie,ye))}function al(x,E,D){var te=!1,ie=zr,ye=E.contextType;return typeof ye=="object"&&ye!==null?ye=he(ye):(ie=ke(E)?kt:me.current,ye=(te=(te=E.contextTypes)!=null)?Rt(x,ie):zr),E=new E(D,ye),x.memoizedState=E.state!==null&&E.state!==void 0?E.state:null,E.updater=ii,x.stateNode=E,E._reactInternalFiber=x,te&&((x=x.stateNode).__reactInternalMemoizedUnmaskedChildContext=ie,x.__reactInternalMemoizedMaskedChildContext=ye),E}function co(x,E,D,te){x=E.state,typeof E.componentWillReceiveProps=="function"&&E.componentWillReceiveProps(D,te),typeof E.UNSAFE_componentWillReceiveProps=="function"&&E.UNSAFE_componentWillReceiveProps(D,te),E.state!==x&&ii.enqueueReplaceState(E,E.state,null)}function zi(x,E,D,te){var ie=x.stateNode;ie.props=D,ie.state=x.memoizedState,ie.refs=G0;var ye=E.contextType;typeof ye=="object"&&ye!==null?ie.context=he(ye):(ye=ke(E)?kt:me.current,ie.context=Rt(x,ye)),(ye=x.updateQueue)!==null&&(Gr(x,ye,D,ie,te),ie.state=x.memoizedState),typeof(ye=E.getDerivedStateFromProps)=="function"&&(W0(x,E,ye,D),ie.state=x.memoizedState),typeof E.getDerivedStateFromProps=="function"||typeof ie.getSnapshotBeforeUpdate=="function"||typeof ie.UNSAFE_componentWillMount!="function"&&typeof ie.componentWillMount!="function"||(E=ie.state,typeof ie.componentWillMount=="function"&&ie.componentWillMount(),typeof ie.UNSAFE_componentWillMount=="function"&&ie.UNSAFE_componentWillMount(),E!==ie.state&&ii.enqueueReplaceState(ie,ie.state,null),(ye=x.updateQueue)!==null&&(Gr(x,ye,D,ie,te),ie.state=x.memoizedState)),typeof ie.componentDidMount=="function"&&(x.effectTag|=4)}var qo=Array.isArray;function fs(x,E,D){if((x=D.ref)!==null&&typeof x!="function"&&typeof x!="object"){if(D._owner){if(D=D._owner){if(D.tag!==1)throw Error(i(309));var te=D.stateNode}if(!te)throw Error(i(147,x));var ie=""+x;return E!==null&&E.ref!==null&&typeof E.ref=="function"&&E.ref._stringRef===ie?E.ref:(E=function(ye){var Oe=te.refs;Oe===G0&&(Oe=te.refs={}),ye===null?delete Oe[ie]:Oe[ie]=ye},E._stringRef=ie,E)}if(typeof x!="string")throw Error(i(284));if(!D._owner)throw Error(i(290,x))}return x}function Ko(x,E){if(x.type!=="textarea")throw Error(i(31,Object.prototype.toString.call(E)==="[object Object]"?"object with keys {"+Object.keys(E).join(", ")+"}":E,""))}function Vo(x){function E(xt,vt){if(x){var Pt=xt.lastEffect;Pt!==null?(Pt.nextEffect=vt,xt.lastEffect=vt):xt.firstEffect=xt.lastEffect=vt,vt.nextEffect=null,vt.effectTag=8}}function D(xt,vt){if(!x)return null;for(;vt!==null;)E(xt,vt),vt=vt.sibling;return null}function te(xt,vt){for(xt=new Map;vt!==null;)vt.key!==null?xt.set(vt.key,vt):xt.set(vt.index,vt),vt=vt.sibling;return xt}function ie(xt,vt,Pt){return(xt=yo(xt,vt)).index=0,xt.sibling=null,xt}function ye(xt,vt,Pt){return xt.index=Pt,x?(Pt=xt.alternate)!==null?(Pt=Pt.index)<vt?(xt.effectTag=2,vt):Pt:(xt.effectTag=2,vt):vt}function Oe(xt){return x&&xt.alternate===null&&(xt.effectTag=2),xt}function Bt(xt,vt,Pt,Mr){return vt===null||vt.tag!==6?((vt=ld(Pt,xt.mode,Mr)).return=xt,vt):((vt=ie(vt,Pt)).return=xt,vt)}function Kt(xt,vt,Pt,Mr){return vt!==null&&vt.elementType===Pt.type?((Mr=ie(vt,Pt.props)).ref=fs(xt,vt,Pt),Mr.return=xt,Mr):((Mr=bc(Pt.type,Pt.key,Pt.props,null,xt.mode,Mr)).ref=fs(xt,vt,Pt),Mr.return=xt,Mr)}function pr(xt,vt,Pt,Mr){return vt===null||vt.tag!==4||vt.stateNode.containerInfo!==Pt.containerInfo||vt.stateNode.implementation!==Pt.implementation?((vt=Bs(Pt,xt.mode,Mr)).return=xt,vt):((vt=ie(vt,Pt.children||[])).return=xt,vt)}function Nr(xt,vt,Pt,Mr,on){return vt===null||vt.tag!==7?((vt=Oa(Pt,xt.mode,Mr,on)).return=xt,vt):((vt=ie(vt,Pt)).return=xt,vt)}function Ua(xt,vt,Pt){if(typeof vt=="string"||typeof vt=="number")return(vt=ld(""+vt,xt.mode,Pt)).return=xt,vt;if(typeof vt=="object"&&vt!==null){switch(vt.$$typeof){case p:return(Pt=bc(vt.type,vt.key,vt.props,null,xt.mode,Pt)).ref=fs(xt,null,vt),Pt.return=xt,Pt;case m:return(vt=Bs(vt,xt.mode,Pt)).return=xt,vt}if(qo(vt)||ne(vt))return(vt=Oa(vt,xt.mode,Pt,null)).return=xt,vt;Ko(xt,vt)}return null}function Ln(xt,vt,Pt,Mr){var on=vt!==null?vt.key:null;if(typeof Pt=="string"||typeof Pt=="number")return on!==null?null:Bt(xt,vt,""+Pt,Mr);if(typeof Pt=="object"&&Pt!==null){switch(Pt.$$typeof){case p:return Pt.key===on?Pt.type===y?Nr(xt,vt,Pt.props.children,Mr,on):Kt(xt,vt,Pt,Mr):null;case m:return Pt.key===on?pr(xt,vt,Pt,Mr):null}if(qo(Pt)||ne(Pt))return on!==null?null:Nr(xt,vt,Pt,Mr,null);Ko(xt,Pt)}return null}function Uo(xt,vt,Pt,Mr,on){if(typeof Mr=="string"||typeof Mr=="number")return Bt(vt,xt=xt.get(Pt)||null,""+Mr,on);if(typeof Mr=="object"&&Mr!==null){switch(Mr.$$typeof){case p:return xt=xt.get(Mr.key===null?Pt:Mr.key)||null,Mr.type===y?Nr(vt,xt,Mr.props.children,on,Mr.key):Kt(vt,xt,Mr,on);case m:return pr(vt,xt=xt.get(Mr.key===null?Pt:Mr.key)||null,Mr,on)}if(qo(Mr)||ne(Mr))return Nr(vt,xt=xt.get(Pt)||null,Mr,on,null);Ko(vt,Mr)}return null}function zs(xt,vt,Pt,Mr){for(var on=null,D0=null,vn=vt,n0=vt=0,Ii=null;vn!==null&&n0<Pt.length;n0++){vn.index>n0?(Ii=vn,vn=null):Ii=vn.sibling;var l0=Ln(xt,vn,Pt[n0],Mr);if(l0===null){vn===null&&(vn=Ii);break}x&&vn&&l0.alternate===null&&E(xt,vn),vt=ye(l0,vt,n0),D0===null?on=l0:D0.sibling=l0,D0=l0,vn=Ii}if(n0===Pt.length)return D(xt,vn),on;if(vn===null){for(;n0<Pt.length;n0++)(vn=Ua(xt,Pt[n0],Mr))!==null&&(vt=ye(vn,vt,n0),D0===null?on=vn:D0.sibling=vn,D0=vn);return on}for(vn=te(xt,vn);n0<Pt.length;n0++)(Ii=Uo(vn,xt,n0,Pt[n0],Mr))!==null&&(x&&Ii.alternate!==null&&vn.delete(Ii.key===null?n0:Ii.key),vt=ye(Ii,vt,n0),D0===null?on=Ii:D0.sibling=Ii,D0=Ii);return x&&vn.forEach((function(jl){return E(xt,jl)})),on}function Hs(xt,vt,Pt,Mr){var on=ne(Pt);if(typeof on!="function")throw Error(i(150));if((Pt=on.call(Pt))==null)throw Error(i(151));for(var D0=on=null,vn=vt,n0=vt=0,Ii=null,l0=Pt.next();vn!==null&&!l0.done;n0++,l0=Pt.next()){vn.index>n0?(Ii=vn,vn=null):Ii=vn.sibling;var jl=Ln(xt,vn,l0.value,Mr);if(jl===null){vn===null&&(vn=Ii);break}x&&vn&&jl.alternate===null&&E(xt,vn),vt=ye(jl,vt,n0),D0===null?on=jl:D0.sibling=jl,D0=jl,vn=Ii}if(l0.done)return D(xt,vn),on;if(vn===null){for(;!l0.done;n0++,l0=Pt.next())(l0=Ua(xt,l0.value,Mr))!==null&&(vt=ye(l0,vt,n0),D0===null?on=l0:D0.sibling=l0,D0=l0);return on}for(vn=te(xt,vn);!l0.done;n0++,l0=Pt.next())(l0=Uo(vn,xt,n0,l0.value,Mr))!==null&&(x&&l0.alternate!==null&&vn.delete(l0.key===null?n0:l0.key),vt=ye(l0,vt,n0),D0===null?on=l0:D0.sibling=l0,D0=l0);return x&&vn.forEach((function(qu){return E(xt,qu)})),on}return function(xt,vt,Pt,Mr){var on=typeof Pt=="object"&&Pt!==null&&Pt.type===y&&Pt.key===null;on&&(Pt=Pt.props.children);var D0=typeof Pt=="object"&&Pt!==null;if(D0)switch(Pt.$$typeof){case p:e:{for(D0=Pt.key,on=vt;on!==null;){if(on.key===D0){if(on.tag===7?Pt.type===y:on.elementType===Pt.type){D(xt,on.sibling),(vt=ie(on,Pt.type===y?Pt.props.children:Pt.props)).ref=fs(xt,on,Pt),vt.return=xt,xt=vt;break e}D(xt,on);break}E(xt,on),on=on.sibling}Pt.type===y?((vt=Oa(Pt.props.children,xt.mode,Mr,Pt.key)).return=xt,xt=vt):((Mr=bc(Pt.type,Pt.key,Pt.props,null,xt.mode,Mr)).ref=fs(xt,vt,Pt),Mr.return=xt,xt=Mr)}return Oe(xt);case m:e:{for(on=Pt.key;vt!==null;){if(vt.key===on){if(vt.tag===4&&vt.stateNode.containerInfo===Pt.containerInfo&&vt.stateNode.implementation===Pt.implementation){D(xt,vt.sibling),(vt=ie(vt,Pt.children||[])).return=xt,xt=vt;break e}D(xt,vt);break}E(xt,vt),vt=vt.sibling}(vt=Bs(Pt,xt.mode,Mr)).return=xt,xt=vt}return Oe(xt)}if(typeof Pt=="string"||typeof Pt=="number")return Pt=""+Pt,vt!==null&&vt.tag===6?(D(xt,vt.sibling),(vt=ie(vt,Pt)).return=xt,xt=vt):(D(xt,vt),(vt=ld(Pt,xt.mode,Mr)).return=xt,xt=vt),Oe(xt);if(qo(Pt))return zs(xt,vt,Pt,Mr);if(ne(Pt))return Hs(xt,vt,Pt,Mr);if(D0&&Ko(xt,Pt),Pt===void 0&&!on)switch(xt.tag){case 1:case 0:throw xt=xt.type,Error(i(152,xt.displayName||xt.name||"Component"))}return D(xt,vt)}}var ds=Vo(!0),ca=Vo(!1),_o={},Fi={current:_o},As={current:_o},Hi={current:_o};function _0(x){if(x===_o)throw Error(i(174));return x}function fa(x,E){Rr(Hi,E),Rr(As,x),Rr(Fi,_o),E=ee(E),wr(Fi),Rr(Fi,E)}function jr(x){wr(Fi),wr(As),wr(Hi)}function Zt(x){var E=_0(Hi.current),D=_0(Fi.current);D!==(E=be(D,x.type,E))&&(Rr(As,x),Rr(Fi,E))}function Ps(x){As.current===x&&(wr(Fi),wr(As))}var S0={current:0};function r0(x){for(var E=x;E!==null;){if(E.tag===13){var D=E.memoizedState;if(D!==null&&((D=D.dehydrated)===null||hr(D)||dr(D)))return E}else if(E.tag===19&&E.memoizedProps.revealOrder!==void 0){if((64&E.effectTag)!=0)return E}else if(E.child!==null){E.child.return=E,E=E.child;continue}if(E===x)break;for(;E.sibling===null;){if(E.return===null||E.return===x)return null;E=E.return}E.sibling.return=E.return,E=E.sibling}return null}function Ol(x,E){return{responder:x,props:E}}var hs=s.ReactCurrentDispatcher,j0=s.ReactCurrentBatchConfig,pi=0,mi=null,Ka=null,Gi=null,Va=null,An=null,Hn=null,vi=0,Y0=null,s0=0,Ca=!1,yi=null,Ja=0;function si(){throw Error(i(321))}function Jo(x,E){if(E===null)return!1;for(var D=0;D<E.length&&D<x.length;D++)if(!ka(x[D],E[D]))return!1;return!0}function qn(x,E,D,te,ie,ye){if(pi=ye,mi=E,Gi=x!==null?x.memoizedState:null,hs.current=Gi===null?Pa:Do,E=D(te,ie),Ca){do Ca=!1,Ja+=1,Gi=x!==null?x.memoizedState:null,Hn=Va,Y0=An=Ka=null,hs.current=Do,E=D(te,ie);while(Ca);yi=null,Ja=0}if(hs.current=zl,(x=mi).memoizedState=Va,x.expirationTime=vi,x.updateQueue=Y0,x.effectTag|=s0,x=Ka!==null&&Ka.next!==null,pi=0,Hn=An=Va=Gi=Ka=mi=null,vi=0,Y0=null,s0=0,x)throw Error(i(300));return E}function Na(){hs.current=zl,pi=0,Hn=An=Va=Gi=Ka=mi=null,vi=0,Y0=null,s0=0,Ca=!1,yi=null,Ja=0}function xa(){var x={memoizedState:null,baseState:null,queue:null,baseUpdate:null,next:null};return An===null?Va=An=x:An=An.next=x,An}function li(){if(Hn!==null)Hn=(An=Hn).next,Gi=(Ka=Gi)!==null?Ka.next:null;else{if(Gi===null)throw Error(i(310));var x={memoizedState:(Ka=Gi).memoizedState,baseState:Ka.baseState,queue:Ka.queue,baseUpdate:Ka.baseUpdate,next:null};An=An===null?Va=x:An.next=x,Gi=Ka.next}return An}function il(x,E){return typeof E=="function"?E(x):E}function Tc(x){var E=li(),D=E.queue;if(D===null)throw Error(i(311));if(D.lastRenderedReducer=x,0<Ja){var te=D.dispatch;if(yi!==null){var ie=yi.get(D);if(ie!==void 0){yi.delete(D);var ye=E.memoizedState;do ye=x(ye,ie.action),ie=ie.next;while(ie!==null);return ka(ye,E.memoizedState)||(gs=!0),E.memoizedState=ye,E.baseUpdate===D.last&&(E.baseState=ye),D.lastRenderedState=ye,[ye,te]}}return[E.memoizedState,te]}te=D.last;var Oe=E.baseUpdate;if(ye=E.baseState,Oe!==null?(te!==null&&(te.next=null),te=Oe.next):te=te!==null?te.next:null,te!==null){var Bt=ie=null,Kt=te,pr=!1;do{var Nr=Kt.expirationTime;Nr<pi?(pr||(pr=!0,Bt=Oe,ie=ye),Nr>vi&&ju(vi=Nr)):(Wu(Nr,Kt.suspenseConfig),ye=Kt.eagerReducer===x?Kt.eagerState:x(ye,Kt.action)),Oe=Kt,Kt=Kt.next}while(Kt!==null&&Kt!==te);pr||(Bt=Oe,ie=ye),ka(ye,E.memoizedState)||(gs=!0),E.memoizedState=ye,E.baseUpdate=Bt,E.baseState=ie,D.lastRenderedState=ye}return[E.memoizedState,D.dispatch]}function Ul(x){var E=xa();return typeof x=="function"&&(x=x()),E.memoizedState=E.baseState=x,x=(x=E.queue={last:null,dispatch:null,lastRenderedReducer:il,lastRenderedState:x}).dispatch=Pu.bind(null,mi,x),[E.memoizedState,x]}function Ml(x){return Tc(il)}function ou(x,E,D,te){return x={tag:x,create:E,destroy:D,deps:te,next:null},Y0===null?(Y0={lastEffect:null}).lastEffect=x.next=x:(E=Y0.lastEffect)===null?Y0.lastEffect=x.next=x:(D=E.next,E.next=x,x.next=D,Y0.lastEffect=x),x}function su(x,E,D,te){var ie=xa();s0|=x,ie.memoizedState=ou(E,D,void 0,te===void 0?null:te)}function Zo(x,E,D,te){var ie=li();te=te===void 0?null:te;var ye=void 0;if(Ka!==null){var Oe=Ka.memoizedState;if(ye=Oe.destroy,te!==null&&Jo(te,Oe.deps))return void ou(0,D,ye,te)}s0|=x,ie.memoizedState=ou(E,D,ye,te)}function bi(x,E){return su(516,192,x,E)}function Cl(x,E){return Zo(516,192,x,E)}function Tf(x,E){return typeof E=="function"?(x=x(),E(x),function(){E(null)}):E!=null?(x=x(),E.current=x,function(){E.current=null}):void 0}function uf(){}function lu(x,E){return xa().memoizedState=[x,E===void 0?null:E],x}function La(x,E){var D=li();E=E===void 0?null:E;var te=D.memoizedState;return te!==null&&E!==null&&Jo(E,te[1])?te[0]:(D.memoizedState=[x,E],x)}function Pu(x,E,D){if(!(25>Ja))throw Error(i(301));var te=x.alternate;if(x===mi||te!==null&&te===mi)if(Ca=!0,x={expirationTime:pi,suspenseConfig:null,action:D,eagerReducer:null,eagerState:null,next:null},yi===null&&(yi=new Map),(D=yi.get(E))===void 0)yi.set(E,x);else{for(E=D;E.next!==null;)E=E.next;E.next=x}else{var ie=ui(),ye=mn.suspense;ye={expirationTime:ie=da(ie,x,ye),suspenseConfig:ye,action:D,eagerReducer:null,eagerState:null,next:null};var Oe=E.last;if(Oe===null)ye.next=ye;else{var Bt=Oe.next;Bt!==null&&(ye.next=Bt),Oe.next=ye}if(E.last=ye,x.expirationTime===0&&(te===null||te.expirationTime===0)&&(te=E.lastRenderedReducer)!==null)try{var Kt=E.lastRenderedState,pr=te(Kt,D);if(ye.eagerReducer=te,ye.eagerState=pr,ka(pr,Kt))return}catch{}Vi(x,ie)}}var zl={readContext:he,useCallback:si,useContext:si,useEffect:si,useImperativeHandle:si,useLayoutEffect:si,useMemo:si,useReducer:si,useRef:si,useState:si,useDebugValue:si,useResponder:si,useDeferredValue:si,useTransition:si},Pa={readContext:he,useCallback:lu,useContext:he,useEffect:bi,useImperativeHandle:function(x,E,D){return D=D!=null?D.concat([x]):null,su(4,36,Tf.bind(null,E,x),D)},useLayoutEffect:function(x,E){return su(4,36,x,E)},useMemo:function(x,E){var D=xa();return E=E===void 0?null:E,x=x(),D.memoizedState=[x,E],x},useReducer:function(x,E,D){var te=xa();return E=D!==void 0?D(E):E,te.memoizedState=te.baseState=E,x=(x=te.queue={last:null,dispatch:null,lastRenderedReducer:x,lastRenderedState:E}).dispatch=Pu.bind(null,mi,x),[te.memoizedState,x]},useRef:function(x){return x={current:x},xa().memoizedState=x},useState:Ul,useDebugValue:uf,useResponder:Ol,useDeferredValue:function(x,E){var D=Ul(x),te=D[0],ie=D[1];return bi((function(){a.unstable_next((function(){var ye=j0.suspense;j0.suspense=E===void 0?null:E;try{ie(x)}finally{j0.suspense=ye}}))}),[x,E]),te},useTransition:function(x){var E=Ul(!1),D=E[0],te=E[1];return[lu((function(ie){te(!0),a.unstable_next((function(){var ye=j0.suspense;j0.suspense=x===void 0?null:x;try{te(!1),ie()}finally{j0.suspense=ye}}))}),[x,D]),D]}},Do={readContext:he,useCallback:La,useContext:he,useEffect:Cl,useImperativeHandle:function(x,E,D){return D=D!=null?D.concat([x]):null,Zo(4,36,Tf.bind(null,E,x),D)},useLayoutEffect:function(x,E){return Zo(4,36,x,E)},useMemo:function(x,E){var D=li();E=E===void 0?null:E;var te=D.memoizedState;return te!==null&&E!==null&&Jo(E,te[1])?te[0]:(x=x(),D.memoizedState=[x,E],x)},useReducer:Tc,useRef:function(){return li().memoizedState},useState:Ml,useDebugValue:uf,useResponder:Ol,useDeferredValue:function(x,E){var D=Ml(),te=D[0],ie=D[1];return Cl((function(){a.unstable_next((function(){var ye=j0.suspense;j0.suspense=E===void 0?null:E;try{ie(x)}finally{j0.suspense=ye}}))}),[x,E]),te},useTransition:function(x){var E=Ml(),D=E[0],te=E[1];return[La((function(ie){te(!0),a.unstable_next((function(){var ye=j0.suspense;j0.suspense=x===void 0?null:x;try{te(!1),ie()}finally{j0.suspense=ye}}))}),[x,D]),D]}},cf=s.ReactCurrentOwner,gs=!1;function Wi(x,E,D,te){E.child=x===null?ca(E,null,D,te):ds(E,x.child,D,te)}function ps(x,E,D,te,ie){D=D.render;var ye=E.ref;return de(E,ie),te=qn(x,E,D,te,ye,ie),x===null||gs?(E.effectTag|=1,Wi(x,E,te,ie),E.child):(E.updateQueue=x.updateQueue,E.effectTag&=-517,x.expirationTime<=ie&&(x.expirationTime=0),na(x,E,ie))}function Hl(x,E,D,te,ie,ye){if(x===null){var Oe=D.type;return typeof Oe!="function"||Mc(Oe)||Oe.defaultProps!==void 0||D.compare!==null||D.defaultProps!==void 0?((x=bc(D.type,null,te,null,E.mode,ye)).ref=E.ref,x.return=E,E.child=x):(E.tag=15,E.type=Oe,Ac(x,E,Oe,te,ie,ye))}return Oe=x.child,ie<ye&&(ie=Oe.memoizedProps,(D=(D=D.compare)!==null?D:Di)(ie,te)&&x.ref===E.ref)?na(x,E,ye):(E.effectTag|=1,(x=yo(Oe,te)).ref=E.ref,x.return=E,E.child=x)}function Ac(x,E,D,te,ie,ye){return x!==null&&Di(x.memoizedProps,te)&&x.ref===E.ref&&(gs=!1,ie<ye)?na(x,E,ye):q0(x,E,D,te,ye)}function ms(x,E){var D=E.ref;(x===null&&D!==null||x!==null&&x.ref!==D)&&(E.effectTag|=128)}function q0(x,E,D,te,ie){var ye=ke(D)?kt:me.current;return ye=Rt(E,ye),de(E,ie),D=qn(x,E,D,te,ye,ie),x===null||gs?(E.effectTag|=1,Wi(x,E,D,ie),E.child):(E.updateQueue=x.updateQueue,E.effectTag&=-517,x.expirationTime<=ie&&(x.expirationTime=0),na(x,E,ie))}function hc(x,E,D,te,ie){if(ke(D)){var ye=!0;H(E)}else ye=!1;if(de(E,ie),E.stateNode===null)x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),al(E,D,te),zi(E,D,te,ie),te=!0;else if(x===null){var Oe=E.stateNode,Bt=E.memoizedProps;Oe.props=Bt;var Kt=Oe.context,pr=D.contextType;pr=typeof pr=="object"&&pr!==null?he(pr):Rt(E,pr=ke(D)?kt:me.current);var Nr=D.getDerivedStateFromProps,Ua=typeof Nr=="function"||typeof Oe.getSnapshotBeforeUpdate=="function";Ua||typeof Oe.UNSAFE_componentWillReceiveProps!="function"&&typeof Oe.componentWillReceiveProps!="function"||(Bt!==te||Kt!==pr)&&co(E,Oe,te,pr),Te=!1;var Ln=E.memoizedState;Kt=Oe.state=Ln;var Uo=E.updateQueue;Uo!==null&&(Gr(E,Uo,te,Oe,ie),Kt=E.memoizedState),Bt!==te||Ln!==Kt||at.current||Te?(typeof Nr=="function"&&(W0(E,D,Nr,te),Kt=E.memoizedState),(Bt=Te||oi(E,D,Bt,te,Ln,Kt,pr))?(Ua||typeof Oe.UNSAFE_componentWillMount!="function"&&typeof Oe.componentWillMount!="function"||(typeof Oe.componentWillMount=="function"&&Oe.componentWillMount(),typeof Oe.UNSAFE_componentWillMount=="function"&&Oe.UNSAFE_componentWillMount()),typeof Oe.componentDidMount=="function"&&(E.effectTag|=4)):(typeof Oe.componentDidMount=="function"&&(E.effectTag|=4),E.memoizedProps=te,E.memoizedState=Kt),Oe.props=te,Oe.state=Kt,Oe.context=pr,te=Bt):(typeof Oe.componentDidMount=="function"&&(E.effectTag|=4),te=!1)}else Oe=E.stateNode,Bt=E.memoizedProps,Oe.props=E.type===E.elementType?Bt:z0(E.type,Bt),Kt=Oe.context,pr=typeof(pr=D.contextType)=="object"&&pr!==null?he(pr):Rt(E,pr=ke(D)?kt:me.current),(Ua=typeof(Nr=D.getDerivedStateFromProps)=="function"||typeof Oe.getSnapshotBeforeUpdate=="function")||typeof Oe.UNSAFE_componentWillReceiveProps!="function"&&typeof Oe.componentWillReceiveProps!="function"||(Bt!==te||Kt!==pr)&&co(E,Oe,te,pr),Te=!1,Kt=E.memoizedState,Ln=Oe.state=Kt,(Uo=E.updateQueue)!==null&&(Gr(E,Uo,te,Oe,ie),Ln=E.memoizedState),Bt!==te||Kt!==Ln||at.current||Te?(typeof Nr=="function"&&(W0(E,D,Nr,te),Ln=E.memoizedState),(Nr=Te||oi(E,D,Bt,te,Kt,Ln,pr))?(Ua||typeof Oe.UNSAFE_componentWillUpdate!="function"&&typeof Oe.componentWillUpdate!="function"||(typeof Oe.componentWillUpdate=="function"&&Oe.componentWillUpdate(te,Ln,pr),typeof Oe.UNSAFE_componentWillUpdate=="function"&&Oe.UNSAFE_componentWillUpdate(te,Ln,pr)),typeof Oe.componentDidUpdate=="function"&&(E.effectTag|=4),typeof Oe.getSnapshotBeforeUpdate=="function"&&(E.effectTag|=256)):(typeof Oe.componentDidUpdate!="function"||Bt===x.memoizedProps&&Kt===x.memoizedState||(E.effectTag|=4),typeof Oe.getSnapshotBeforeUpdate!="function"||Bt===x.memoizedProps&&Kt===x.memoizedState||(E.effectTag|=256),E.memoizedProps=te,E.memoizedState=Ln),Oe.props=te,Oe.state=Ln,Oe.context=pr,te=Nr):(typeof Oe.componentDidUpdate!="function"||Bt===x.memoizedProps&&Kt===x.memoizedState||(E.effectTag|=4),typeof Oe.getSnapshotBeforeUpdate!="function"||Bt===x.memoizedProps&&Kt===x.memoizedState||(E.effectTag|=256),te=!1);return uu(x,E,D,te,ye,ie)}function uu(x,E,D,te,ie,ye){ms(x,E);var Oe=(64&E.effectTag)!=0;if(!te&&!Oe)return ie&&At(E,D,!1),na(x,E,ye);te=E.stateNode,cf.current=E;var Bt=Oe&&typeof D.getDerivedStateFromError!="function"?null:te.render();return E.effectTag|=1,x!==null&&Oe?(E.child=ds(E,x.child,null,ye),E.child=ds(E,null,Bt,ye)):Wi(x,E,Bt,ye),E.memoizedState=te.state,ie&&At(E,D,!0),E.child}function Ro(x){var E=x.stateNode;E.pendingContext?It(0,E.pendingContext,E.pendingContext!==E.context):E.context&&It(0,E.context,!1),fa(x,E.containerInfo)}var Ou,Xo,Nc,ol,Fo={dehydrated:null,retryTime:0};function ji(x,E,D){var te,ie=E.mode,ye=E.pendingProps,Oe=S0.current,Bt=!1;if((te=(64&E.effectTag)!=0)||(te=(2&Oe)!=0&&(x===null||x.memoizedState!==null)),te?(Bt=!0,E.effectTag&=-65):x!==null&&x.memoizedState===null||ye.fallback===void 0||ye.unstable_avoidThisFallback===!0||(Oe|=1),Rr(S0,1&Oe),x===null){if(ye.fallback,Bt){if(Bt=ye.fallback,(ye=Oa(null,ie,0,null)).return=E,(2&E.mode)==0)for(x=E.memoizedState!==null?E.child.child:E.child,ye.child=x;x!==null;)x.return=ye,x=x.sibling;return(D=Oa(Bt,ie,D,null)).return=E,ye.sibling=D,E.memoizedState=Fo,E.child=ye,D}return ie=ye.children,E.memoizedState=null,E.child=ca(E,null,ie,D)}if(x.memoizedState!==null){if(ie=(x=x.child).sibling,Bt){if(ye=ye.fallback,(D=yo(x,x.pendingProps)).return=E,(2&E.mode)==0&&(Bt=E.memoizedState!==null?E.child.child:E.child)!==x.child)for(D.child=Bt;Bt!==null;)Bt.return=D,Bt=Bt.sibling;return(ie=yo(ie,ye,ie.expirationTime)).return=E,D.sibling=ie,D.childExpirationTime=0,E.memoizedState=Fo,E.child=D,ie}return D=ds(E,x.child,ye.children,D),E.memoizedState=null,E.child=D}if(x=x.child,Bt){if(Bt=ye.fallback,(ye=Oa(null,ie,0,null)).return=E,ye.child=x,x!==null&&(x.return=ye),(2&E.mode)==0)for(x=E.memoizedState!==null?E.child.child:E.child,ye.child=x;x!==null;)x.return=ye,x=x.sibling;return(D=Oa(Bt,ie,D,null)).return=E,ye.sibling=D,D.effectTag|=2,ye.childExpirationTime=0,E.memoizedState=Fo,E.child=ye,D}return E.memoizedState=null,E.child=ds(E,x,ye.children,D)}function Gl(x,E){x.expirationTime<E&&(x.expirationTime=E);var D=x.alternate;D!==null&&D.expirationTime<E&&(D.expirationTime=E),ai(x.return,E)}function Ti(x,E,D,te,ie,ye){var Oe=x.memoizedState;Oe===null?x.memoizedState={isBackwards:E,rendering:null,last:te,tail:D,tailExpiration:0,tailMode:ie,lastEffect:ye}:(Oe.isBackwards=E,Oe.rendering=null,Oe.last=te,Oe.tail=D,Oe.tailExpiration=0,Oe.tailMode=ie,Oe.lastEffect=ye)}function vs(x,E,D){var te=E.pendingProps,ie=te.revealOrder,ye=te.tail;if(Wi(x,E,te.children,D),(2&(te=S0.current))!=0)te=1&te|2,E.effectTag|=64;else{if(x!==null&&(64&x.effectTag)!=0)e:for(x=E.child;x!==null;){if(x.tag===13)x.memoizedState!==null&&Gl(x,D);else if(x.tag===19)Gl(x,D);else if(x.child!==null){x.child.return=x,x=x.child;continue}if(x===E)break e;for(;x.sibling===null;){if(x.return===null||x.return===E)break e;x=x.return}x.sibling.return=x.return,x=x.sibling}te&=1}if(Rr(S0,te),(2&E.mode)==0)E.memoizedState=null;else switch(ie){case"forwards":for(D=E.child,ie=null;D!==null;)(x=D.alternate)!==null&&r0(x)===null&&(ie=D),D=D.sibling;(D=ie)===null?(ie=E.child,E.child=null):(ie=D.sibling,D.sibling=null),Ti(E,!1,ie,D,ye,E.lastEffect);break;case"backwards":for(D=null,ie=E.child,E.child=null;ie!==null;){if((x=ie.alternate)!==null&&r0(x)===null){E.child=ie;break}x=ie.sibling,ie.sibling=D,D=ie,ie=x}Ti(E,!0,D,null,ye,E.lastEffect);break;case"together":Ti(E,!1,null,null,void 0,E.lastEffect);break;default:E.memoizedState=null}return E.child}function na(x,E,D){x!==null&&(E.dependencies=x.dependencies);var te=E.expirationTime;if(te!==0&&ju(te),E.childExpirationTime<D)return null;if(x!==null&&E.child!==x.child)throw Error(i(153));if(E.child!==null){for(D=yo(x=E.child,x.pendingProps,x.expirationTime),E.child=D,D.return=E;x.sibling!==null;)x=x.sibling,(D=D.sibling=yo(x,x.pendingProps,x.expirationTime)).return=E;D.sibling=null}return E.child}function fo(x){x.effectTag|=4}function Ao(x,E){switch(x.tailMode){case"hidden":E=x.tail;for(var D=null;E!==null;)E.alternate!==null&&(D=E),E=E.sibling;D===null?x.tail=null:D.sibling=null;break;case"collapsed":D=x.tail;for(var te=null;D!==null;)D.alternate!==null&&(te=D),D=D.sibling;te===null?E||x.tail===null?x.tail=null:x.tail.sibling=null:te.sibling=null}}function Os(x){switch(x.tag){case 1:ke(x.type)&&ht();var E=x.effectTag;return 4096&E?(x.effectTag=-4097&E|64,x):null;case 3:if(jr(),ue(),(64&(E=x.effectTag))!=0)throw Error(i(285));return x.effectTag=-4097&E|64,x;case 5:return Ps(x),null;case 13:return wr(S0),4096&(E=x.effectTag)?(x.effectTag=-4097&E|64,x):null;case 19:return wr(S0),null;case 4:return jr(),null;case 10:return ua(x),null;default:return null}}function $o(x,E){return{value:x,source:E,stack:gr(E)}}Ou=function(x,E){for(var D=E.child;D!==null;){if(D.tag===5||D.tag===6)Be(x,D.stateNode);else if(D.tag!==4&&D.child!==null){D.child.return=D,D=D.child;continue}if(D===E)break;for(;D.sibling===null;){if(D.return===null||D.return===E)return;D=D.return}D.sibling.return=D.return,D=D.sibling}},Xo=function(){},Nc=function(x,E,D,te,ie){if((x=x.memoizedProps)!==te){var ye=E.stateNode,Oe=_0(Fi.current);D=Se(ye,D,x,te,ie,Oe),(E.updateQueue=D)&&fo(E)}},ol=function(x,E,D,te){D!==te&&fo(E)};var Lc=typeof WeakSet=="function"?WeakSet:Set;function ys(x,E){var D=E.source,te=E.stack;te===null&&D!==null&&(te=gr(D)),D!==null&&Z(D.type),E=E.value,x!==null&&x.tag===1&&Z(x.type);try{console.error(E)}catch(ie){setTimeout((function(){throw ie}))}}function g0(x){var E=x.ref;if(E!==null)if(typeof E=="function")try{E(null)}catch(D){Po(x,D)}else E.current=null}function Uu(x,E){switch(E.tag){case 0:case 11:case 15:ho(2,0,E);break;case 1:if(256&E.effectTag&&x!==null){var D=x.memoizedProps,te=x.memoizedState;E=(x=E.stateNode).getSnapshotBeforeUpdate(E.elementType===E.type?D:z0(E.type,D),te),x.__reactInternalSnapshotBeforeUpdate=E}break;case 3:case 5:case 6:case 4:case 17:break;default:throw Error(i(163))}}function ho(x,E,D){if((D=(D=D.updateQueue)!==null?D.lastEffect:null)!==null){var te=D=D.next;do{if((te.tag&x)!=0){var ie=te.destroy;te.destroy=void 0,ie!==void 0&&ie()}(te.tag&E)!=0&&(ie=te.create,te.destroy=ie()),te=te.next}while(te!==D)}}function Yi(x,E,D){switch(typeof Pf=="function"&&Pf(E),E.tag){case 0:case 11:case 14:case 15:if((x=E.updateQueue)!==null&&(x=x.lastEffect)!==null){var te=x.next;zn(97<D?97:D,(function(){var ie=te;do{var ye=ie.destroy;if(ye!==void 0){var Oe=E;try{ye()}catch(Bt){Po(Oe,Bt)}}ie=ie.next}while(ie!==te)}))}break;case 1:g0(E),typeof(D=E.stateNode).componentWillUnmount=="function"&&(function(ie,ye){try{ye.props=ie.memoizedProps,ye.state=ie.memoizedState,ye.componentWillUnmount()}catch(Oe){Po(ie,Oe)}})(E,D);break;case 5:g0(E);break;case 4:gc(x,E,D)}}function bs(x,E,D){for(var te=E;;)if(Yi(x,te,D),te.child===null||te.tag===4){if(te===E)break;for(;te.sibling===null;){if(te.return===null||te.return===E)return;te=te.return}te.sibling.return=te.return,te=te.sibling}else te.child.return=te,te=te.child}function go(x){var E=x.alternate;x.return=null,x.child=null,x.memoizedState=null,x.updateQueue=null,x.dependencies=null,x.alternate=null,x.firstEffect=null,x.lastEffect=null,x.pendingProps=null,x.memoizedProps=null,E!==null&&go(E)}function ff(x){return x.tag===5||x.tag===3||x.tag===4}function cu(x){e:{for(var E=x.return;E!==null;){if(ff(E)){var D=E;break e}E=E.return}throw Error(i(160))}switch(E=D.stateNode,D.tag){case 5:var te=!1;break;case 3:case 4:E=E.containerInfo,te=!0;break;default:throw Error(i(161))}16&D.effectTag&&(or(E),D.effectTag&=-17);e:t:for(D=x;;){for(;D.sibling===null;){if(D.return===null||ff(D.return)){D=null;break e}D=D.return}for(D.sibling.return=D.return,D=D.sibling;D.tag!==5&&D.tag!==6&&D.tag!==18;){if(2&D.effectTag||D.child===null||D.tag===4)continue t;D.child.return=D,D=D.child}if(!(2&D.effectTag)){D=D.stateNode;break e}}for(var ie=x;;){var ye=ie.tag===5||ie.tag===6;if(ye)ye=ye?ie.stateNode:ie.stateNode.instance,D?te?nr(E,ye,D):jt(E,ye,D):te?Ve(E,ye):Le(E,ye);else if(ie.tag!==4&&ie.child!==null){ie.child.return=ie,ie=ie.child;continue}if(ie===x)break;for(;ie.sibling===null;){if(ie.return===null||ie.return===x)return;ie=ie.return}ie.sibling.return=ie.return,ie=ie.sibling}}function gc(x,E,D){for(var te,ie,ye=E,Oe=!1;;){if(!Oe){Oe=ye.return;e:for(;;){if(Oe===null)throw Error(i(160));switch(te=Oe.stateNode,Oe.tag){case 5:ie=!1;break e;case 3:case 4:te=te.containerInfo,ie=!0;break e}Oe=Oe.return}Oe=!0}if(ye.tag===5||ye.tag===6)bs(x,ye,D),ie?Br(te,ye.stateNode):cr(te,ye.stateNode);else if(ye.tag===4){if(ye.child!==null){te=ye.stateNode.containerInfo,ie=!0,ye.child.return=ye,ye=ye.child;continue}}else if(Yi(x,ye,D),ye.child!==null){ye.child.return=ye,ye=ye.child;continue}if(ye===E)break;for(;ye.sibling===null;){if(ye.return===null||ye.return===E)return;(ye=ye.return).tag===4&&(Oe=!1)}ye.sibling.return=ye.return,ye=ye.sibling}}function fu(x,E){switch(E.tag){case 0:case 11:case 14:case 15:ho(4,8,E);break;case 1:case 3:case 12:case 17:case 20:case 21:break;case 5:var D=E.stateNode;if(D!=null){var te=E.memoizedProps;x=x!==null?x.memoizedProps:te;var ie=E.type,ye=E.updateQueue;E.updateQueue=null,ye!==null&&Ze(D,ye,ie,x,te,E)}break;case 6:if(E.stateNode===null)throw Error(i(162));D=E.memoizedProps,qe(E.stateNode,x!==null?x.memoizedProps:D,D);break;case 13:(function(Oe){var Bt=Oe;if(Oe.memoizedState===null)var Kt=!1;else Kt=!0,Bt=Oe.child,Oc=wn();if(Bt!==null){e:if(Oe=Bt,Ct)for(Bt=Oe;;){if(Bt.tag===5){var pr=Bt.stateNode;Kt?tt(pr):Pr(Bt.stateNode,Bt.memoizedProps)}else if(Bt.tag===6)pr=Bt.stateNode,Kt?sr(pr):st(pr,Bt.memoizedProps);else{if(Bt.tag===13&&Bt.memoizedState!==null&&Bt.memoizedState.dehydrated===null){(pr=Bt.child.sibling).return=Bt,Bt=pr;continue}if(Bt.child!==null){Bt.child.return=Bt,Bt=Bt.child;continue}}if(Bt===Oe)break e;for(;Bt.sibling===null;){if(Bt.return===null||Bt.return===Oe)break e;Bt=Bt.return}Bt.sibling.return=Bt.return,Bt=Bt.sibling}}})(E),es(E);break;case 19:es(E);break;default:throw Error(i(163))}}function es(x){var E=x.updateQueue;if(E!==null){x.updateQueue=null;var D=x.stateNode;D===null&&(D=x.stateNode=new Lc),E.forEach((function(te){var ie=sd.bind(null,x,te);D.has(te)||(D.add(te),te.then(ie,ie))}))}}var To=typeof WeakMap=="function"?WeakMap:Map;function Za(x,E,D){(D=Qt(D,null)).tag=3,D.payload={element:null};var te=E.value;return D.callback=function(){Gu||(Gu=!0,No=te),ys(x,E)},D}function Es(x,E,D){(D=Qt(D,null)).tag=3;var te=x.type.getDerivedStateFromError;if(typeof te=="function"){var ie=E.value;D.payload=function(){return ys(x,E),te(ie)}}var ye=x.stateNode;return ye!==null&&typeof ye.componentDidCatch=="function"&&(D.callback=function(){typeof te!="function"&&(ll===null?ll=new Set([this]):ll.add(this),ys(x,E));var Oe=E.stack;this.componentDidCatch(E.value,{componentStack:Oe!==null?Oe:""})}),D}var df,Nf=Math.ceil,Cs=s.ReactCurrentDispatcher,po=s.ReactCurrentOwner,K0=0,sl=8,qi=16,xs=32,xl=0,_a=1,pc=2,Af=3,Pc=4,hf=5,Zr=K0,V0=null,Hr=null,mo=0,Ei=xl,Mu=null,Il=1073741823,zu=1073741823,Hu=null,wl=0,Is=!1,Oc=0,Kn=500,Ur=null,Gu=!1,No=null,ll=null,ws=!1,Us=null,vo=90,Ki=null,Lo=0,Uc=null,Q0=0;function ui(){return(Zr&(qi|xs))!==K0?1073741821-(wn()/10|0):Q0!==0?Q0:Q0=1073741821-(wn()/10|0)}function da(x,E,D){if((2&(E=E.mode))==0)return 1073741823;var te=h0();if((4&E)==0)return te===99?1073741823:1073741822;if((Zr&qi)!==K0)return mo;if(D!==null)x=la(x,0|D.timeoutMs||5e3,250);else switch(te){case 99:x=1073741823;break;case 98:x=la(x,150,100);break;case 97:case 96:x=la(x,5e3,250);break;case 95:x=2;break;default:throw Error(i(326))}return V0!==null&&x===mo&&--x,x}function Vi(x,E){if(50<Lo)throw Lo=0,Uc=null,Error(i(185));if((x=du(x,E))!==null){var D=h0();E===1073741823?(Zr&sl)!==K0&&(Zr&(qi|xs))===K0?Bl(x):(Da(x),Zr===K0&&Nn()):Da(x),(4&Zr)===K0||D!==98&&D!==99||(Ki===null?Ki=new Map([[x,E]]):((D=Ki.get(x))===void 0||D>E)&&Ki.set(x,E))}}function du(x,E){x.expirationTime<E&&(x.expirationTime=E);var D=x.alternate;D!==null&&D.expirationTime<E&&(D.expirationTime=E);var te=x.return,ie=null;if(te===null&&x.tag===3)ie=x.stateNode;else for(;te!==null;){if(D=te.alternate,te.childExpirationTime<E&&(te.childExpirationTime=E),D!==null&&D.childExpirationTime<E&&(D.childExpirationTime=E),te.return===null&&te.tag===3){ie=te.stateNode;break}te=te.return}return ie!==null&&(V0===ie&&(ju(E),Ei===Pc&&Ms(ie,mo)),Yu(ie,E)),ie}function Ji(x){var E=x.lastExpiredTime;return E!==0?E:Oo(x,E=x.firstPendingTime)?(E=x.lastPingedTime)>(x=x.nextKnownPendingLevel)?E:x:E}function Da(x){if(x.lastExpiredTime!==0)x.callbackExpirationTime=1073741823,x.callbackPriority=99,x.callbackNode=Mt(Bl.bind(null,x));else{var E=Ji(x),D=x.callbackNode;if(E===0)D!==null&&(x.callbackNode=null,x.callbackExpirationTime=0,x.callbackPriority=90);else{var te=ui();if(te=E===1073741823?99:E===1||E===2?95:0>=(te=10*(1073741821-E)-10*(1073741821-te))?99:250>=te?98:5250>=te?97:95,D!==null){var ie=x.callbackPriority;if(x.callbackExpirationTime===E&&ie>=te)return;D!==Lr&&De(D)}x.callbackExpirationTime=E,x.callbackPriority=te,E=E===1073741823?Mt(Bl.bind(null,x)):Tr(te,Ci.bind(null,x),{timeout:10*(1073741821-E)-wn()}),x.callbackNode=E}}}function Ci(x,E){if(Q0=0,E)return zc(x,E=ui()),Da(x),null;var D=Ji(x);if(D!==0){if(E=x.callbackNode,(Zr&(qi|xs))!==K0)throw Error(i(327));if(yc(),x===V0&&D===mo||Xa(x,D),Hr!==null){var te=Zr;Zr|=qi;for(var ie=Sl();;)try{Wl();break}catch(Bt){ul(x,Bt)}if(dn(),Zr=te,Cs.current=ie,Ei===_a)throw E=Mu,Xa(x,D),Ms(x,D),Da(x),E;if(Hr===null)switch(ie=x.finishedWork=x.current.alternate,x.finishedExpirationTime=D,te=Ei,V0=null,te){case xl:case _a:throw Error(i(345));case pc:zc(x,2<D?2:D);break;case Af:if(Ms(x,D),D===(te=x.lastSuspendedTime)&&(x.nextKnownPendingLevel=xi(ie)),Il===1073741823&&10<(ie=Oc+Kn-wn())){if(Is){var ye=x.lastPingedTime;if(ye===0||ye>=D){x.lastPingedTime=D,Xa(x,D);break}}if((ye=Ji(x))!==0&&ye!==D)break;if(te!==0&&te!==D){x.lastPingedTime=te;break}x.timeoutHandle=Me(En.bind(null,x),ie);break}En(x);break;case Pc:if(Ms(x,D),D===(te=x.lastSuspendedTime)&&(x.nextKnownPendingLevel=xi(ie)),Is&&((ie=x.lastPingedTime)===0||ie>=D)){x.lastPingedTime=D,Xa(x,D);break}if((ie=Ji(x))!==0&&ie!==D)break;if(te!==0&&te!==D){x.lastPingedTime=te;break}if(zu!==1073741823?te=10*(1073741821-zu)-wn():Il===1073741823?te=0:(te=10*(1073741821-Il)-5e3,0>(te=(ie=wn())-te)&&(te=0),(D=10*(1073741821-D)-ie)<(te=(120>te?120:480>te?480:1080>te?1080:1920>te?1920:3e3>te?3e3:4320>te?4320:1960*Nf(te/1960))-te)&&(te=D)),10<te){x.timeoutHandle=Me(En.bind(null,x),te);break}En(x);break;case hf:if(Il!==1073741823&&Hu!==null){ye=Il;var Oe=Hu;if(0>=(te=0|Oe.busyMinDurationMs)?te=0:(ie=0|Oe.busyDelayMs,te=(ye=wn()-(10*(1073741821-ye)-(0|Oe.timeoutMs||5e3)))<=ie?0:ie+te-ye),10<te){Ms(x,D),x.timeoutHandle=Me(En.bind(null,x),te);break}}En(x);break;default:throw Error(i(329))}if(Da(x),x.callbackNode===E)return Ci.bind(null,x)}}return null}function Bl(x){var E=x.lastExpiredTime;if(E=E!==0?E:1073741823,x.finishedExpirationTime===E)En(x);else{if((Zr&(qi|xs))!==K0)throw Error(i(327));if(yc(),x===V0&&E===mo||Xa(x,E),Hr!==null){var D=Zr;Zr|=qi;for(var te=Sl();;)try{Au();break}catch(ie){ul(x,ie)}if(dn(),Zr=D,Cs.current=te,Ei===_a)throw D=Mu,Xa(x,E),Ms(x,E),Da(x),D;if(Hr!==null)throw Error(i(261));x.finishedWork=x.current.alternate,x.finishedExpirationTime=E,V0=null,En(x),Da(x)}}return null}function mc(x,E){if((Zr&(qi|xs))!==K0)throw Error(i(187));var D=Zr;Zr|=1;try{return zn(99,x.bind(null,E))}finally{Zr=D,Nn()}}function Xa(x,E){x.finishedWork=null,x.finishedExpirationTime=0;var D=x.timeoutHandle;if(D!==Tt&&(x.timeoutHandle=Tt,Ue(D)),Hr!==null)for(D=Hr.return;D!==null;){var te=D;switch(te.tag){case 1:var ie=te.type.childContextTypes;ie!=null&&ht();break;case 3:jr(),ue();break;case 5:Ps(te);break;case 4:jr();break;case 13:case 19:wr(S0);break;case 10:ua(te)}D=D.return}V0=x,Hr=yo(x.current,null),mo=E,Ei=xl,Mu=null,zu=Il=1073741823,Hu=null,wl=0,Is=!1}function ul(x,E){for(;;){try{if(dn(),Na(),Hr===null||Hr.return===null)return Ei=_a,Mu=E,null;e:{var D=x,te=Hr.return,ie=Hr,ye=E;if(E=mo,ie.effectTag|=2048,ie.firstEffect=ie.lastEffect=null,ye!==null&&typeof ye=="object"&&typeof ye.then=="function"){var Oe=ye,Bt=(1&S0.current)!=0,Kt=te;do{var pr;if(pr=Kt.tag===13){var Nr=Kt.memoizedState;if(Nr!==null)pr=Nr.dehydrated!==null;else{var Ua=Kt.memoizedProps;pr=Ua.fallback!==void 0&&(Ua.unstable_avoidThisFallback!==!0||!Bt)}}if(pr){var Ln=Kt.updateQueue;if(Ln===null){var Uo=new Set;Uo.add(Oe),Kt.updateQueue=Uo}else Ln.add(Oe);if((2&Kt.mode)==0){if(Kt.effectTag|=64,ie.effectTag&=-2981,ie.tag===1)if(ie.alternate===null)ie.tag=17;else{var zs=Qt(1073741823,null);zs.tag=2,qt(ie,zs)}ie.expirationTime=1073741823;break e}ye=void 0,ie=E;var Hs=D.pingCache;if(Hs===null?(Hs=D.pingCache=new To,ye=new Set,Hs.set(Oe,ye)):(ye=Hs.get(Oe))===void 0&&(ye=new Set,Hs.set(Oe,ye)),!ye.has(ie)){ye.add(ie);var xt=Rn.bind(null,D,Oe,ie);Oe.then(xt,xt)}Kt.effectTag|=4096,Kt.expirationTime=E;break e}Kt=Kt.return}while(Kt!==null);ye=Error((Z(ie.type)||"A React component")+` suspended while rendering, but no fallback UI was specified.
|
|
447
447
|
|
|
448
|
-
Add a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.`+gr(ie))}Ei!==hf&&(Ei=pc),ye=$o(ye,ie),Kt=te;do{switch(Kt.tag){case 3:Oe=ye,Kt.effectTag|=4096,Kt.expirationTime=E,Ar(Kt,Za(Kt,Oe,E));break e;case 1:Oe=ye;var vt=Kt.type,Pt=Kt.stateNode;if((64&Kt.effectTag)==0&&(typeof vt.getDerivedStateFromError=="function"||Pt!==null&&typeof Pt.componentDidCatch=="function"&&(ll===null||!ll.has(Pt)))){Kt.effectTag|=4096,Kt.expirationTime=E,Ar(Kt,Es(Kt,Oe,E));break e}}Kt=Kt.return}while(Kt!==null)}Hr=hu(Hr)}catch(Mr){E=Mr;continue}break}}function Sl(){var x=Cs.current;return Cs.current=zl,x===null?zl:x}function Wu(x,E){x<Il&&2<x&&(Il=x),E!==null&&x<zu&&2<x&&(zu=x,Hu=E)}function ju(x){x>wl&&(wl=x)}function Au(){for(;Hr!==null;)Hr=cl(Hr)}function Wl(){for(;Hr!==null&&!Xe();)Hr=cl(Hr)}function cl(x){var E=df(x.alternate,x,mo);return x.memoizedProps=x.pendingProps,E===null&&(E=hu(x)),po.current=null,E}function hu(x){Hr=x;do{var E=Hr.alternate;if(x=Hr.return,(2048&Hr.effectTag)==0){e:{var D=E,te=mo,ie=(E=Hr).pendingProps;switch(E.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:case 20:case 21:break;case 1:case 17:ke(E.type)&&ht();break;case 3:jr(),ue(),(ie=E.stateNode).pendingContext&&(ie.context=ie.pendingContext,ie.pendingContext=null),D===null||D.child,Xo(E);break;case 5:Ps(E);var ye=_0(Hi.current);if(te=E.type,D!==null&&E.stateNode!=null)Nc(D,E,te,ie,ye),D.ref!==E.ref&&(E.effectTag|=128);else if(ie){D=_0(Fi.current);var Oe=Ee(te,ie,ye,D,E);Ou(Oe,E,!1,!1),E.stateNode=Oe,Ge(Oe,te,ie,ye,D)&&fo(E),E.ref!==null&&(E.effectTag|=128)}else if(E.stateNode===null)throw Error(i(166));break;case 6:if(D&&E.stateNode!=null)ol(D,E,D.memoizedProps,ie);else{if(typeof ie!="string"&&E.stateNode===null)throw Error(i(166));D=_0(Hi.current),ye=_0(Fi.current),E.stateNode=Pe(ie,D,ye,E)}break;case 13:if(wr(S0),ie=E.memoizedState,(64&E.effectTag)!=0){E.expirationTime=te;break e}ie=ie!==null,ye=!1,D===null?E.memoizedProps.fallback:(ye=(te=D.memoizedState)!==null,ie||te===null||(te=D.child.sibling)!==null&&((Oe=E.firstEffect)!==null?(E.firstEffect=te,te.nextEffect=Oe):(E.firstEffect=E.lastEffect=te,te.nextEffect=null),te.effectTag=8)),ie&&!ye&&(2&E.mode)!=0&&(D===null&&E.memoizedProps.unstable_avoidThisFallback!==!0||(1&S0.current)!=0?Ei===xl&&(Ei=Af):(Ei!==xl&&Ei!==Af||(Ei=Pc),wl!==0&&V0!==null&&(Ms(V0,mo),Yu(V0,wl)))),(ie||ye)&&(E.effectTag|=4);break;case 4:jr(),Xo(E);break;case 10:ua(E);break;case 19:if(wr(S0),(ie=E.memoizedState)===null)break;if(ye=(64&E.effectTag)!=0,(Oe=ie.rendering)===null){if(ye)Ao(ie,!1);else if(Ei!==xl||D!==null&&(64&D.effectTag)!=0)for(D=E.child;D!==null;){if((Oe=r0(D))!==null){for(E.effectTag|=64,Ao(ie,!1),(D=Oe.updateQueue)!==null&&(E.updateQueue=D,E.effectTag|=4),ie.lastEffect===null&&(E.firstEffect=null),E.lastEffect=ie.lastEffect,D=te,ie=E.child;ie!==null;)te=D,(ye=ie).effectTag&=2,ye.nextEffect=null,ye.firstEffect=null,ye.lastEffect=null,(Oe=ye.alternate)===null?(ye.childExpirationTime=0,ye.expirationTime=te,ye.child=null,ye.memoizedProps=null,ye.memoizedState=null,ye.updateQueue=null,ye.dependencies=null):(ye.childExpirationTime=Oe.childExpirationTime,ye.expirationTime=Oe.expirationTime,ye.child=Oe.child,ye.memoizedProps=Oe.memoizedProps,ye.memoizedState=Oe.memoizedState,ye.updateQueue=Oe.updateQueue,te=Oe.dependencies,ye.dependencies=te===null?null:{expirationTime:te.expirationTime,firstContext:te.firstContext,responders:te.responders}),ie=ie.sibling;Rr(S0,1&S0.current|2),E=E.child;break e}D=D.sibling}}else{if(!ye)if((D=r0(Oe))!==null){if(E.effectTag|=64,ye=!0,(D=D.updateQueue)!==null&&(E.updateQueue=D,E.effectTag|=4),Ao(ie,!0),ie.tail===null&&ie.tailMode==="hidden"){(E=E.lastEffect=ie.lastEffect)!==null&&(E.nextEffect=null);break}}else wn()>ie.tailExpiration&&1<te&&(E.effectTag|=64,ye=!0,Ao(ie,!1),E.expirationTime=E.childExpirationTime=te-1);ie.isBackwards?(Oe.sibling=E.child,E.child=Oe):((D=ie.last)!==null?D.sibling=Oe:E.child=Oe,ie.last=Oe)}if(ie.tail!==null){ie.tailExpiration===0&&(ie.tailExpiration=wn()+500),D=ie.tail,ie.rendering=D,ie.tail=D.sibling,ie.lastEffect=E.lastEffect,D.sibling=null,ie=S0.current,Rr(S0,ie=ye?1&ie|2:1&ie),E=D;break e}break;default:throw Error(i(156,E.tag))}E=null}if(D=Hr,mo===1||D.childExpirationTime!==1){for(ie=0,ye=D.child;ye!==null;)(te=ye.expirationTime)>ie&&(ie=te),(Oe=ye.childExpirationTime)>ie&&(ie=Oe),ye=ye.sibling;D.childExpirationTime=ie}if(E!==null)return E;x!==null&&(2048&x.effectTag)==0&&(x.firstEffect===null&&(x.firstEffect=Hr.firstEffect),Hr.lastEffect!==null&&(x.lastEffect!==null&&(x.lastEffect.nextEffect=Hr.firstEffect),x.lastEffect=Hr.lastEffect),1<Hr.effectTag&&(x.lastEffect!==null?x.lastEffect.nextEffect=Hr:x.firstEffect=Hr,x.lastEffect=Hr))}else{if((E=Os(Hr))!==null)return E.effectTag&=2047,E;x!==null&&(x.firstEffect=x.lastEffect=null,x.effectTag|=2048)}if((E=Hr.sibling)!==null)return E;Hr=x}while(Hr!==null);return Ei===xl&&(Ei=hf),null}function xi(x){var E=x.expirationTime;return E>(x=x.childExpirationTime)?E:x}function En(x){var E=h0();return zn(99,Ql.bind(null,x,E)),null}function Ql(x,E){if(yc(),(Zr&(qi|xs))!==K0)throw Error(i(327));var D=x.finishedWork,te=x.finishedExpirationTime;if(D===null)return null;if(x.finishedWork=null,x.finishedExpirationTime=0,D===x.current)throw Error(i(177));x.callbackNode=null,x.callbackExpirationTime=0,x.callbackPriority=90,x.nextKnownPendingLevel=0;var ie=xi(D);if(x.firstPendingTime=ie,te<=x.lastSuspendedTime?x.firstSuspendedTime=x.lastSuspendedTime=x.nextKnownPendingLevel=0:te<=x.firstSuspendedTime&&(x.firstSuspendedTime=te-1),te<=x.lastPingedTime&&(x.lastPingedTime=0),te<=x.lastExpiredTime&&(x.lastExpiredTime=0),x===V0&&(Hr=V0=null,mo=0),1<D.effectTag?D.lastEffect!==null?(D.lastEffect.nextEffect=D,ie=D.firstEffect):ie=D:ie=D.firstEffect,ie!==null){var ye=Zr;Zr|=xs,po.current=null,we(x.containerInfo),Ur=ie;do try{vc()}catch(n0){if(Ur===null)throw Error(i(330));Po(Ur,n0),Ur=Ur.nextEffect}while(Ur!==null);Ur=ie;do try{for(var Oe=x,Bt=E;Ur!==null;){var Kt=Ur.effectTag;if(16&Kt&&Ct&&or(Ur.stateNode),128&Kt){var pr=Ur.alternate;if(pr!==null){var Nr=pr.ref;Nr!==null&&(typeof Nr=="function"?Nr(null):Nr.current=null)}}switch(1038&Kt){case 2:cu(Ur),Ur.effectTag&=-3;break;case 6:cu(Ur),Ur.effectTag&=-3,fu(Ur.alternate,Ur);break;case 1024:Ur.effectTag&=-1025;break;case 1028:Ur.effectTag&=-1025,fu(Ur.alternate,Ur);break;case 4:fu(Ur.alternate,Ur);break;case 8:var Ua=Oe,Ln=Ur,Uo=Bt;Ct?gc(Ua,Ln,Uo):bs(Ua,Ln,Uo),go(Ln)}Ur=Ur.nextEffect}}catch(n0){if(Ur===null)throw Error(i(330));Po(Ur,n0),Ur=Ur.nextEffect}while(Ur!==null);fe(x.containerInfo),x.current=D,Ur=ie;do try{for(Kt=te;Ur!==null;){var zs=Ur.effectTag;if(36&zs){var Hs=Ur.alternate;switch(Nr=Kt,(pr=Ur).tag){case 0:case 11:case 15:ho(16,32,pr);break;case 1:var xt=pr.stateNode;if(4&pr.effectTag)if(Hs===null)xt.componentDidMount();else{var vt=pr.elementType===pr.type?Hs.memoizedProps:z0(pr.type,Hs.memoizedProps);xt.componentDidUpdate(vt,Hs.memoizedState,xt.__reactInternalSnapshotBeforeUpdate)}var Pt=pr.updateQueue;Pt!==null&&hn(0,Pt,xt);break;case 3:var Mr=pr.updateQueue;if(Mr!==null){if(Oe=null,pr.child!==null)switch(pr.child.tag){case 5:Oe=W(pr.child.stateNode);break;case 1:Oe=pr.child.stateNode}hn(0,Mr,Oe)}break;case 5:var on=pr.stateNode;Hs===null&&4&pr.effectTag&&We(on,pr.type,pr.memoizedProps,pr);break;case 6:case 4:case 12:case 19:case 17:case 20:case 21:break;case 13:pt&&pr.memoizedState;break;default:throw Error(i(163))}}if(128&zs){pr=void 0;var D0=Ur.ref;if(D0!==null){var vn=Ur.stateNode;pr=Ur.tag===5?W(vn):vn,typeof D0=="function"?D0(pr):D0.current=pr}}Ur=Ur.nextEffect}}catch(n0){if(Ur===null)throw Error(i(330));Po(Ur,n0),Ur=Ur.nextEffect}while(Ur!==null);Ur=null,Yn(),Zr=ye}else x.current=D;if(ws)ws=!1,Us=x,vo=E;else for(Ur=ie;Ur!==null;)E=Ur.nextEffect,Ur.nextEffect=null,Ur=E;if((E=x.firstPendingTime)===0&&(ll=null),E===1073741823?x===Uc?Lo++:(Lo=0,Uc=x):Lo=0,typeof Lf=="function"&&Lf(D.stateNode,te),Da(x),Gu)throw Gu=!1,x=No,No=null,x;return(Zr&sl)!==K0||Nn(),null}function vc(){for(;Ur!==null;){var x=Ur.effectTag;(256&x)!=0&&Uu(Ur.alternate,Ur),(512&x)==0||ws||(ws=!0,Tr(97,(function(){return yc(),null}))),Ur=Ur.nextEffect}}function yc(){if(vo!==90){var x=97<vo?97:vo;return vo=90,zn(x,gu)}}function gu(){if(Us===null)return!1;var x=Us;if(Us=null,(Zr&(qi|xs))!==K0)throw Error(i(331));var E=Zr;for(Zr|=xs,x=x.current.firstEffect;x!==null;){try{var D=x;if((512&D.effectTag)!=0)switch(D.tag){case 0:case 11:case 15:ho(128,0,D),ho(0,64,D)}}catch(te){if(x===null)throw Error(i(330));Po(x,te)}D=x.nextEffect,x.nextEffect=null,x=D}return Zr=E,Nn(),!0}function gf(x,E,D){qt(x,E=Za(x,E=$o(D,E),1073741823)),(x=du(x,1073741823))!==null&&Da(x)}function Po(x,E){if(x.tag===3)gf(x,x,E);else for(var D=x.return;D!==null;){if(D.tag===3){gf(D,x,E);break}if(D.tag===1){var te=D.stateNode;if(typeof D.type.getDerivedStateFromError=="function"||typeof te.componentDidCatch=="function"&&(ll===null||!ll.has(te))){qt(D,x=Es(D,x=$o(E,x),1073741823)),(D=du(D,1073741823))!==null&&Da(D);break}}D=D.return}}function Rn(x,E,D){var te=x.pingCache;te!==null&&te.delete(E),V0===x&&mo===D?Ei===Pc||Ei===Af&&Il===1073741823&&wn()-Oc<Kn?Xa(x,mo):Is=!0:Oo(x,D)&&((E=x.lastPingedTime)!==0&&E<D||(x.lastPingedTime=D,x.finishedExpirationTime===D&&(x.finishedExpirationTime=0,x.finishedWork=null),Da(x)))}function sd(x,E){var D=x.stateNode;D!==null&&D.delete(E),(E=0)==0&&(E=da(E=ui(),x,null)),(x=du(x,E))!==null&&Da(x)}df=function(x,E,D){var te=E.expirationTime;if(x!==null){var ie=E.pendingProps;if(x.memoizedProps!==ie||at.current)gs=!0;else{if(te<D){switch(gs=!1,E.tag){case 3:Ro(E);break;case 5:if(Zt(E),4&E.mode&&D!==1&&null(E.type,ie))return E.expirationTime=E.childExpirationTime=1,null;break;case 1:ke(E.type)&&H(E);break;case 4:fa(E,E.stateNode.containerInfo);break;case 10:N0(E,E.memoizedProps.value);break;case 13:if(E.memoizedState!==null)return(te=E.child.childExpirationTime)!==0&&te>=D?ji(x,E,D):(Rr(S0,1&S0.current),(E=na(x,E,D))!==null?E.sibling:null);Rr(S0,1&S0.current);break;case 19:if(te=E.childExpirationTime>=D,(64&x.effectTag)!=0){if(te)return vs(x,E,D);E.effectTag|=64}if((ie=E.memoizedState)!==null&&(ie.rendering=null,ie.tail=null),Rr(S0,S0.current),!te)return null}return na(x,E,D)}gs=!1}}else gs=!1;switch(E.expirationTime=0,E.tag){case 2:if(te=E.type,x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),x=E.pendingProps,ie=Rt(E,me.current),de(E,D),ie=qn(null,E,te,x,ie,D),E.effectTag|=1,typeof ie=="object"&&ie!==null&&typeof ie.render=="function"&&ie.$$typeof===void 0){if(E.tag=1,Na(),ke(te)){var ye=!0;H(E)}else ye=!1;E.memoizedState=ie.state!==null&&ie.state!==void 0?ie.state:null;var Oe=te.getDerivedStateFromProps;typeof Oe=="function"&&W0(E,te,Oe,x),ie.updater=ii,E.stateNode=ie,ie._reactInternalFiber=E,zi(E,te,x,D),E=uu(null,E,te,!0,ye,D)}else E.tag=0,Wi(null,E,ie,D),E=E.child;return E;case 16:if(ie=E.elementType,x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),x=E.pendingProps,(function(Nr){if(Nr._status===-1){Nr._status=0;var Ua=Nr._ctor;Ua=Ua(),Nr._result=Ua,Ua.then((function(Ln){Nr._status===0&&(Ln=Ln.default,Nr._status=1,Nr._result=Ln)}),(function(Ln){Nr._status===0&&(Nr._status=2,Nr._result=Ln)}))}})(ie),ie._status!==1)throw ie._result;switch(ie=ie._result,E.type=ie,ye=E.tag=(function(Nr){if(typeof Nr=="function")return Mc(Nr)?1:0;if(Nr!=null){if((Nr=Nr.$$typeof)===U)return 11;if(Nr===M)return 14}return 2})(ie),x=z0(ie,x),ye){case 0:E=q0(null,E,ie,x,D);break;case 1:E=hc(null,E,ie,x,D);break;case 11:E=ps(null,E,ie,x,D);break;case 14:E=Hl(null,E,ie,z0(ie.type,x),te,D);break;default:throw Error(i(306,ie,""))}return E;case 0:return te=E.type,ie=E.pendingProps,q0(x,E,te,ie=E.elementType===te?ie:z0(te,ie),D);case 1:return te=E.type,ie=E.pendingProps,hc(x,E,te,ie=E.elementType===te?ie:z0(te,ie),D);case 3:if(Ro(E),(te=E.updateQueue)===null)throw Error(i(282));if(ie=(ie=E.memoizedState)!==null?ie.element:null,Gr(E,te,E.pendingProps,null,D),(te=E.memoizedState.element)===ie)E=na(x,E,D);else{if((ie=E.stateNode.hydrate)&&(ie=!1),ie)for(D=ca(E,null,te,D),E.child=D;D;)D.effectTag=-3&D.effectTag|1024,D=D.sibling;else Wi(x,E,te,D);E=E.child}return E;case 5:return Zt(E),te=E.type,ie=E.pendingProps,ye=x!==null?x.memoizedProps:null,Oe=ie.children,_e(te,ie)?Oe=null:ye!==null&&_e(te,ye)&&(E.effectTag|=16),ms(x,E),4&E.mode&&D!==1&&null(te,ie)?(E.expirationTime=E.childExpirationTime=1,E=null):(Wi(x,E,Oe,D),E=E.child),E;case 6:return null;case 13:return ji(x,E,D);case 4:return fa(E,E.stateNode.containerInfo),te=E.pendingProps,x===null?E.child=ds(E,null,te,D):Wi(x,E,te,D),E.child;case 11:return te=E.type,ie=E.pendingProps,ps(x,E,te,ie=E.elementType===te?ie:z0(te,ie),D);case 7:return Wi(x,E,E.pendingProps,D),E.child;case 8:case 12:return Wi(x,E,E.pendingProps.children,D),E.child;case 10:e:{if(te=E.type._context,ie=E.pendingProps,Oe=E.memoizedProps,N0(E,ye=ie.value),Oe!==null){var Bt=Oe.value;if((ye=ka(Bt,ye)?0:0|(typeof te._calculateChangedBits=="function"?te._calculateChangedBits(Bt,ye):1073741823))==0){if(Oe.children===ie.children&&!at.current){E=na(x,E,D);break e}}else for((Bt=E.child)!==null&&(Bt.return=E);Bt!==null;){var Kt=Bt.dependencies;if(Kt!==null){Oe=Bt.child;for(var pr=Kt.firstContext;pr!==null;){if(pr.context===te&&(pr.observedBits&ye)!=0){Bt.tag===1&&((pr=Qt(D,null)).tag=2,qt(Bt,pr)),Bt.expirationTime<D&&(Bt.expirationTime=D),(pr=Bt.alternate)!==null&&pr.expirationTime<D&&(pr.expirationTime=D),ai(Bt.return,D),Kt.expirationTime<D&&(Kt.expirationTime=D);break}pr=pr.next}}else Oe=Bt.tag===10&&Bt.type===E.type?null:Bt.child;if(Oe!==null)Oe.return=Bt;else for(Oe=Bt;Oe!==null;){if(Oe===E){Oe=null;break}if((Bt=Oe.sibling)!==null){Bt.return=Oe.return,Oe=Bt;break}Oe=Oe.return}Bt=Oe}}Wi(x,E,ie.children,D),E=E.child}return E;case 9:return ie=E.type,te=(ye=E.pendingProps).children,de(E,D),te=te(ie=he(ie,ye.unstable_observedBits)),E.effectTag|=1,Wi(x,E,te,D),E.child;case 14:return ye=z0(ie=E.type,E.pendingProps),Hl(x,E,ie,ye=z0(ie.type,ye),te,D);case 15:return Ac(x,E,E.type,E.pendingProps,te,D);case 17:return te=E.type,ie=E.pendingProps,ie=E.elementType===te?ie:z0(te,ie),x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),E.tag=1,ke(te)?(x=!0,H(E)):x=!1,de(E,D),al(E,te,ie),zi(E,te,ie,D),uu(null,E,te,!0,x,D);case 19:return vs(x,E,D)}throw Error(i(156,E.tag))};var Lf=null,Pf=null;function pu(x,E,D,te){this.tag=x,this.key=D,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=E,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=te,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function kl(x,E,D,te){return new pu(x,E,D,te)}function Mc(x){return!(!(x=x.prototype)||!x.isReactComponent)}function yo(x,E){var D=x.alternate;return D===null?((D=kl(x.tag,E,x.key,x.mode)).elementType=x.elementType,D.type=x.type,D.stateNode=x.stateNode,D.alternate=x,x.alternate=D):(D.pendingProps=E,D.effectTag=0,D.nextEffect=null,D.firstEffect=null,D.lastEffect=null),D.childExpirationTime=x.childExpirationTime,D.expirationTime=x.expirationTime,D.child=x.child,D.memoizedProps=x.memoizedProps,D.memoizedState=x.memoizedState,D.updateQueue=x.updateQueue,E=x.dependencies,D.dependencies=E===null?null:{expirationTime:E.expirationTime,firstContext:E.firstContext,responders:E.responders},D.sibling=x.sibling,D.index=x.index,D.ref=x.ref,D}function bc(x,E,D,te,ie,ye){var Oe=2;if(te=x,typeof x=="function")Mc(x)&&(Oe=1);else if(typeof x=="string")Oe=5;else e:switch(x){case y:return Oa(D.children,ie,ye,E);case P:Oe=8,ie|=7;break;case I:Oe=8,ie|=1;break;case S:return(x=kl(12,D,E,8|ie)).elementType=S,x.type=S,x.expirationTime=ye,x;case q:return(x=kl(13,D,E,ie)).type=q,x.elementType=q,x.expirationTime=ye,x;case z:return(x=kl(19,D,E,ie)).elementType=z,x.expirationTime=ye,x;default:if(typeof x=="object"&&x!==null)switch(x.$$typeof){case _:Oe=10;break e;case R:Oe=9;break e;case U:Oe=11;break e;case M:Oe=14;break e;case G:Oe=16,te=null;break e}throw Error(i(130,x==null?x:typeof x,""))}return(E=kl(Oe,D,E,ie)).elementType=x,E.type=te,E.expirationTime=ye,E}function Oa(x,E,D,te){return(x=kl(7,x,te,E)).expirationTime=D,x}function ld(x,E,D){return(x=kl(6,x,null,E)).expirationTime=D,x}function Bs(x,E,D){return(E=kl(4,x.children!==null?x.children:[],x.key,E)).expirationTime=D,E.stateNode={containerInfo:x.containerInfo,pendingChildren:null,implementation:x.implementation},E}function _l(x,E,D){this.tag=E,this.current=null,this.containerInfo=x,this.pingCache=this.pendingChildren=null,this.finishedExpirationTime=0,this.finishedWork=null,this.timeoutHandle=Tt,this.pendingContext=this.context=null,this.hydrate=D,this.callbackNode=null,this.callbackPriority=90,this.lastExpiredTime=this.lastPingedTime=this.nextKnownPendingLevel=this.lastSuspendedTime=this.firstSuspendedTime=this.firstPendingTime=0}function Oo(x,E){var D=x.firstSuspendedTime;return x=x.lastSuspendedTime,D!==0&&D>=E&&x<=E}function Ms(x,E){var D=x.firstSuspendedTime,te=x.lastSuspendedTime;D<E&&(x.firstSuspendedTime=E),(te>E||D===0)&&(x.lastSuspendedTime=E),E<=x.lastPingedTime&&(x.lastPingedTime=0),E<=x.lastExpiredTime&&(x.lastExpiredTime=0)}function Yu(x,E){E>x.firstPendingTime&&(x.firstPendingTime=E);var D=x.firstSuspendedTime;D!==0&&(E>=D?x.firstSuspendedTime=x.lastSuspendedTime=x.nextKnownPendingLevel=0:E>=x.lastSuspendedTime&&(x.lastSuspendedTime=E+1),E>x.nextKnownPendingLevel&&(x.nextKnownPendingLevel=E))}function zc(x,E){var D=x.lastExpiredTime;(D===0||D>E)&&(x.lastExpiredTime=E)}function Ni(x){var E=x._reactInternalFiber;if(E===void 0)throw typeof x.render=="function"?Error(i(188)):Error(i(268,Object.keys(x)));return(x=ge(E))===null?null:x.stateNode}function Zi(x,E){(x=x.memoizedState)!==null&&x.dehydrated!==null&&x.retryTime<E&&(x.retryTime=E)}function J0(x,E){Zi(x,E),(x=x.alternate)&&Zi(x,E)}var mu={createContainer:function(x,E,D){return x=new _l(x,E,D),E=kl(3,null,null,E===2?7:E===1?3:0),x.current=E,E.stateNode=x},updateContainer:function(x,E,D,te){var ie=E.current,ye=ui(),Oe=mn.suspense;ye=da(ye,ie,Oe);e:if(D){t:{if(J(D=D._reactInternalFiber)!==D||D.tag!==1)throw Error(i(170));var Bt=D;do{switch(Bt.tag){case 3:Bt=Bt.stateNode.context;break t;case 1:if(ke(Bt.type)){Bt=Bt.stateNode.__reactInternalMemoizedMergedChildContext;break t}}Bt=Bt.return}while(Bt!==null);throw Error(i(171))}if(D.tag===1){var Kt=D.type;if(ke(Kt)){D=fr(D,Kt,Bt);break e}}D=Bt}else D=zr;return E.context===null?E.context=D:E.pendingContext=D,(E=Qt(ye,Oe)).payload={element:x},(te=te===void 0?null:te)!==null&&(E.callback=te),qt(ie,E),Vi(ie,ye),ye},batchedEventUpdates:function(x,E){var D=Zr;Zr|=2;try{return x(E)}finally{(Zr=D)===K0&&Nn()}},batchedUpdates:function(x,E){var D=Zr;Zr|=1;try{return x(E)}finally{(Zr=D)===K0&&Nn()}},unbatchedUpdates:function(x,E){var D=Zr;Zr&=-2,Zr|=sl;try{return x(E)}finally{(Zr=D)===K0&&Nn()}},deferredUpdates:function(x){return zn(97,x)},syncUpdates:function(x,E,D,te){return zn(99,x.bind(null,E,D,te))},discreteUpdates:function(x,E,D,te){var ie=Zr;Zr|=4;try{return zn(98,x.bind(null,E,D,te))}finally{(Zr=ie)===K0&&Nn()}},flushDiscreteUpdates:function(){(Zr&(1|qi|xs))===K0&&((function(){if(Ki!==null){var x=Ki;Ki=null,x.forEach((function(E,D){zc(D,E),Da(D)})),Nn()}})(),yc())},flushControlled:function(x){var E=Zr;Zr|=1;try{zn(99,x)}finally{(Zr=E)===K0&&Nn()}},flushSync:mc,flushPassiveEffects:yc,IsThisRendererActing:{current:!1},getPublicRootInstance:function(x){return(x=x.current).child?x.child.tag===5?W(x.child.stateNode):x.child.stateNode:null},attemptSynchronousHydration:function(x){switch(x.tag){case 3:var E=x.stateNode;E.hydrate&&(function(D,te){zc(D,te),Da(D),(Zr&(qi|xs))===K0&&Nn()})(E,E.firstPendingTime);break;case 13:mc((function(){return Vi(x,1073741823)})),E=la(ui(),150,100),J0(x,E)}},attemptUserBlockingHydration:function(x){if(x.tag===13){var E=la(ui(),150,100);Vi(x,E),J0(x,E)}},attemptContinuousHydration:function(x){if(x.tag===13){ui();var E=bn++;Vi(x,E),J0(x,E)}},attemptHydrationAtCurrentPriority:function(x){if(x.tag===13){var E=ui();Vi(x,E=da(E,x,null)),J0(x,E)}},findHostInstance:Ni,findHostInstanceWithWarning:function(x){return Ni(x)},findHostInstanceWithNoPortals:function(x){return(x=(function(E){if(!(E=$(E)))return null;for(var D=E;;){if(D.tag===5||D.tag===6)return D;if(D.child&&D.tag!==4)D.child.return=D,D=D.child;else{if(D===E)break;for(;!D.sibling;){if(!D.return||D.return===E)return null;D=D.return}D.sibling.return=D.return,D=D.sibling}}return null})(x))===null?null:x.tag===20?x.stateNode.instance:x.stateNode},shouldSuspend:function(){return!1},injectIntoDevTools:function(x){var E=x.findFiberByHostInstance;return(function(D){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")return!1;var te=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(te.isDisabled||!te.supportsFiber)return!0;try{var ie=te.inject(D);Lf=function(ye){try{te.onCommitFiberRoot(ie,ye,void 0,(64&ye.current.effectTag)==64)}catch{}},Pf=function(ye){try{te.onCommitFiberUnmount(ie,ye)}catch{}}}catch{}return!0})(r({},x,{overrideHookState:null,overrideProps:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:s.ReactCurrentDispatcher,findHostInstanceByFiber:function(D){return(D=ge(D))===null?null:D.stateNode},findFiberByHostInstance:function(D){return E?E(D):null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null}))}};bm.exports=mu.default||mu;var hA=bm.exports;return bm.exports=t,hA};_ne($_.exports);const[Hne,Gne]=pn.version.split(".").map(t=>parseInt(t,10)),Fne=new ZK,eD=Fne,N2={A4:{portrait:{width:793,height:1122},landscape:{width:1122,height:793}},A3:{portrait:{width:1122,height:1587},landscape:{width:1587,height:1122}},LETTER:{portrait:{width:612,height:792},landscape:{width:792,height:612}}},hC=({dpi:t=72,wrap:e=!0,debug:r=!1,size:n="A4",bookmark:a="",orientation:i="portrait",style:s={},children:d,...p})=>{const{id:m,mode:y}=pn.useContext(Ru),I=`${m}-calendar`,S=N2[n.toUpperCase()]||N2.A4,_=S[i]||S.portrait;return y==="print"?ur.jsx(V3,{id:I,size:n,dpi:t,wrap:e,debug:r,bookmark:a,orientation:i,style:{backgroundColor:"white"},children:ur.jsx(nl,{style:s,children:d})}):ur.jsx("section",{...p,id:I,style:{...s,width:_.width,minHeight:_.height,marginInline:"auto"},children:d})};hC.displayName="Calendar.Page";hC.propTypes={dpi:Gt.number,wrap:Gt.bool,debug:Gt.bool,bookmark:Gt.string,size:Gt.oneOf(["A3","A4","Letter"]),orientation:Gt.oneOf(["portrait","landscape"]),style:Gt.object,children:Gt.node};const gC=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Ru);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};gC.displayName="Calendar.Image";gC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const pC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};pC.displayName="Calendar.Container";pC.propTypes={style:Gt.object,children:Gt.node};const mC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("h1",{...r,style:t,children:e})};mC.displayName="Calendar.Title";mC.propTypes={style:Gt.object,children:Gt.node};const vC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-table",...r,style:t,children:e})};vC.displayName="Calendar.Table";vC.propTypes={style:Gt.object,children:Gt.node};const yC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-thead",...r,style:t,children:e})};yC.displayName="Calendar.Head";yC.propTypes={style:Gt.object,children:Gt.node};const bC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-tbody",...r,style:t,children:e})};bC.displayName="Calendar.Body";bC.propTypes={style:Gt.object,children:Gt.node};const EC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{wrap:!1,style:t,children:e}):ur.jsx("div",{className:"calendar-tr",...r,style:t,children:e})};EC.displayName="Calendar.Row";EC.propTypes={style:Gt.object,children:Gt.node};const CC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{wrap:!1,style:t,children:e}):ur.jsx("div",{className:"calendar-tr-wrapper",...r,style:t,children:e})};CC.displayName="Calendar.RowWrapper";CC.propTypes={style:Gt.object,children:Gt.node};const xC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-td",...r,style:t,children:e})};xC.displayName="Calendar.Cell";xC.propTypes={style:Gt.object,children:Gt.node};const IC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};IC.displayName="Calendar.CellText";IC.propTypes={style:Gt.object,children:Gt.node};const wC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("span",{...r,style:t,children:e})};wC.displayName="Calendar.CellDate";wC.propTypes={style:Gt.object,children:Gt.node};const BC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};BC.displayName="Calendar.CellItem";BC.propTypes={style:Gt.object,children:Gt.node};const SC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{fixed:!0,style:t,children:e}):ur.jsx("footer",{...r,style:t,children:e})};SC.displayName="Calendar.Footer";SC.propTypes={style:Gt.object,children:Gt.node};const QC=({alt:t="",src:e="",style:r={},...n})=>{const{mode:a}=pn.useContext(Ru);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};QC.displayName="Calendar.FooterLogo";QC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const kC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};kC.displayName="Calendar.FooterText";kC.propTypes={style:Gt.object,children:Gt.node};const _C=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{fixed:!0,style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};_C.displayName="Calendar.Spacer";_C.propTypes={style:Gt.object,children:Gt.node};const iu=({id:t="cover",mode:e="preview",children:r})=>ur.jsx(hD,{id:t,mode:e,children:r});iu.Page=hC;iu.Image=gC;iu.Container=pC;iu.Title=mC;iu.Table=vC;iu.Head=yC;iu.Body=bC;iu.Row=EC;iu.RowWrapper=CC;iu.Cell=xC;iu.CellText=IC;iu.CellDate=wC;iu.CellItem=BC;iu.Footer=SC;iu.FooterLogo=QC;iu.FooterText=kC;iu.Spacer=_C;iu.propTypes={id:Gt.string.isRequired,mode:Gt.oneOf(["preview","print"]).isRequired,children:Gt.node.isRequired};const Fd=pn.createContext({id:"cover",mode:"preview"}),Tne=({id:t,mode:e,children:r})=>ur.jsx(Fd.Provider,{value:{id:t,mode:e},children:r}),DC=({dpi:t=72,wrap:e=!0,debug:r=!1,size:n="A4",bookmark:a="",orientation:i="portrait",style:s={},children:d,...p})=>{const{id:m,mode:y}=pn.useContext(Fd),I=`${m}-cover`,S=N2[n.toUpperCase()]||N2.A4,_=S[i]||S.portrait;return y==="print"?ur.jsx(V3,{id:I,size:n,dpi:t,wrap:e,debug:r,bookmark:a,orientation:i,style:{backgroundColor:"white"},children:ur.jsx(nl,{style:s,children:d})}):ur.jsx("section",{...p,id:I,style:{...s,width:_.width,height:_.height,marginInline:"auto"},children:d})};DC.displayName="Cover.Base";DC.propTypes={dpi:Gt.number,wrap:Gt.bool,debug:Gt.bool,bookmark:Gt.string,size:Gt.oneOf(["A3","A4","Letter"]),orientation:Gt.oneOf(["portrait","landscape"]),style:Gt.object,children:Gt.node};const RC=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Fd);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};RC.displayName="Cover.Image";RC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const FC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("h1",{...r,style:t,children:e})};FC.displayName="Cover.Title";FC.propTypes={style:Gt.object,children:Gt.node};const TC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};TC.displayName="Cover.Agent";TC.propTypes={style:Gt.object,children:Gt.node};const NC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};NC.displayName="Cover.Vendor";NC.propTypes={style:Gt.object,children:Gt.node};const LC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};LC.displayName="Cover.Footer";LC.propTypes={style:Gt.object,children:Gt.node};const PC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};PC.displayName="Cover.Address";PC.propTypes={style:Gt.object,children:Gt.node};const OC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};OC.displayName="Cover.Container";OC.propTypes={style:Gt.object,children:Gt.node};const UC=({alt:t="",src:e="",style:r={},...n})=>{const{mode:a}=pn.useContext(Fd);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};UC.displayName="Cover.FooterLogo";UC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const MC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};MC.displayName="Cover.FooterText";MC.propTypes={style:Gt.object,children:Gt.node};const zC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};zC.displayName="Cover.DetailsWrapper";zC.propTypes={style:Gt.object,children:Gt.node};const od=({id:t="cover",mode:e="preview",children:r})=>ur.jsx(Tne,{id:t,mode:e,children:r});od.Base=DC;od.Container=OC;od.Image=RC;od.DetailsWrapper=zC;od.Title=FC;od.Agent=TC;od.Vendor=NC;od.Address=PC;od.Footer=LC;od.FooterLogo=UC;od.FooterText=MC;od.propTypes={id:Gt.string.isRequired,mode:Gt.oneOf(["preview","print"]).isRequired,children:Gt.node.isRequired};const Pl=pn.createContext({id:"letter",mode:"preview"}),Nne=({id:t,mode:e,children:r})=>ur.jsx(Pl.Provider,{value:{id:t,mode:e},children:r}),HC=({dpi:t=72,wrap:e=!0,debug:r=!1,size:n="A4",bookmark:a="",orientation:i="portrait",style:s={},children:d,...p})=>{const{id:m,mode:y}=pn.useContext(Pl),I=`${m}-letter`,S=N2[n.toUpperCase()]||N2.A4,_=S[i]||S.portrait;return y==="print"?ur.jsx(V3,{id:I,size:n,dpi:t,wrap:e,debug:r,bookmark:a,orientation:i,style:{backgroundColor:"white"},children:ur.jsx(nl,{style:s,children:d})}):ur.jsx("section",{...p,id:I,style:{...s,width:_.width,height:_.height,marginInline:"auto"},children:d})};HC.displayName="Letter.Base";HC.propTypes={dpi:Gt.number,wrap:Gt.bool,debug:Gt.bool,bookmark:Gt.string,size:Gt.oneOf(["A3","A4","Letter"]),orientation:Gt.oneOf(["portrait","landscape"]),style:Gt.object,children:Gt.node};const GC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};GC.displayName="Letter.Container";GC.propTypes={style:Gt.object,children:Gt.node};const WC=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Pl);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};WC.displayName="Letter.Image";WC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const jC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};jC.displayName="Letter.Details";jC.propTypes={style:Gt.object,children:Gt.node};const YC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("h1",{...r,style:t,children:e})};YC.displayName="Letter.Title";YC.propTypes={style:Gt.object,children:Gt.node};const qC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};qC.displayName="Letter.Salutation";qC.propTypes={style:Gt.object,children:Gt.node};const KC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return eD.registerHyphenationCallback(a=>[a]),n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:{...t,whiteSpace:"pre-line"},children:e})};KC.displayName="Letter.Body";KC.propTypes={style:Gt.object,children:Gt.node};const VC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};VC.displayName="Letter.Closing";VC.propTypes={style:Gt.object,children:Gt.node};const JC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};JC.displayName="Letter.AgentWrapper";JC.propTypes={style:Gt.object,children:Gt.node};const ZC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};ZC.displayName="Letter.Agent";ZC.propTypes={style:Gt.object,children:Gt.node};const XC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};XC.displayName="Letter.AgentName";XC.propTypes={style:Gt.object,children:Gt.node};const $C=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};$C.displayName="Letter.AgentPhone";$C.propTypes={style:Gt.object,children:Gt.node};const ex=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};ex.displayName="Letter.AgentEmail";ex.propTypes={style:Gt.object,children:Gt.node};const tx=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return eD.registerHyphenationCallback(a=>[a]),n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};tx.displayName="Letter.AgentOfficeLicense";tx.propTypes={style:Gt.object,children:Gt.node};const rx=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Pl);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};rx.displayName="Letter.AgentImage";rx.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const nx=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};nx.displayName="Letter.Footer";nx.propTypes={style:Gt.object,children:Gt.node};const ax=({alt:t="",src:e="",style:r={},...n})=>{const{mode:a}=pn.useContext(Pl);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};ax.displayName="Letter.FooterLogo";ax.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const ix=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};ix.displayName="Letter.FooterText";ix.propTypes={style:Gt.object,children:Gt.node};const ox=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};ox.displayName="Letter.Content";ox.propTypes={style:Gt.object,children:Gt.node};const El=({id:t="letter",mode:e="preview",children:r})=>ur.jsx(Nne,{id:t,mode:e,children:r});El.Base=HC;El.Container=GC;El.Image=WC;El.Details=jC;El.Title=YC;El.Content=ox;El.Salutation=qC;El.Body=KC;El.Closing=VC;El.AgentWrapper=JC;El.Agent=ZC;El.AgentName=XC;El.AgentPhone=$C;El.AgentEmail=ex;El.AgentOfficeLicense=tx;El.AgentImage=rx;El.Footer=nx;El.FooterLogo=ax;El.FooterText=ix;El.propTypes={id:Gt.string.isRequired,mode:Gt.oneOf(["preview","print"]).isRequired,children:Gt.node.isRequired};exports.Calendar=iu;exports.Cover=od;exports.Letter=El;
|
|
448
|
+
Add a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.`+gr(ie))}Ei!==hf&&(Ei=pc),ye=$o(ye,ie),Kt=te;do{switch(Kt.tag){case 3:Oe=ye,Kt.effectTag|=4096,Kt.expirationTime=E,Ar(Kt,Za(Kt,Oe,E));break e;case 1:Oe=ye;var vt=Kt.type,Pt=Kt.stateNode;if((64&Kt.effectTag)==0&&(typeof vt.getDerivedStateFromError=="function"||Pt!==null&&typeof Pt.componentDidCatch=="function"&&(ll===null||!ll.has(Pt)))){Kt.effectTag|=4096,Kt.expirationTime=E,Ar(Kt,Es(Kt,Oe,E));break e}}Kt=Kt.return}while(Kt!==null)}Hr=hu(Hr)}catch(Mr){E=Mr;continue}break}}function Sl(){var x=Cs.current;return Cs.current=zl,x===null?zl:x}function Wu(x,E){x<Il&&2<x&&(Il=x),E!==null&&x<zu&&2<x&&(zu=x,Hu=E)}function ju(x){x>wl&&(wl=x)}function Au(){for(;Hr!==null;)Hr=cl(Hr)}function Wl(){for(;Hr!==null&&!Xe();)Hr=cl(Hr)}function cl(x){var E=df(x.alternate,x,mo);return x.memoizedProps=x.pendingProps,E===null&&(E=hu(x)),po.current=null,E}function hu(x){Hr=x;do{var E=Hr.alternate;if(x=Hr.return,(2048&Hr.effectTag)==0){e:{var D=E,te=mo,ie=(E=Hr).pendingProps;switch(E.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:case 20:case 21:break;case 1:case 17:ke(E.type)&&ht();break;case 3:jr(),ue(),(ie=E.stateNode).pendingContext&&(ie.context=ie.pendingContext,ie.pendingContext=null),D===null||D.child,Xo(E);break;case 5:Ps(E);var ye=_0(Hi.current);if(te=E.type,D!==null&&E.stateNode!=null)Nc(D,E,te,ie,ye),D.ref!==E.ref&&(E.effectTag|=128);else if(ie){D=_0(Fi.current);var Oe=Ee(te,ie,ye,D,E);Ou(Oe,E,!1,!1),E.stateNode=Oe,Ge(Oe,te,ie,ye,D)&&fo(E),E.ref!==null&&(E.effectTag|=128)}else if(E.stateNode===null)throw Error(i(166));break;case 6:if(D&&E.stateNode!=null)ol(D,E,D.memoizedProps,ie);else{if(typeof ie!="string"&&E.stateNode===null)throw Error(i(166));D=_0(Hi.current),ye=_0(Fi.current),E.stateNode=Pe(ie,D,ye,E)}break;case 13:if(wr(S0),ie=E.memoizedState,(64&E.effectTag)!=0){E.expirationTime=te;break e}ie=ie!==null,ye=!1,D===null?E.memoizedProps.fallback:(ye=(te=D.memoizedState)!==null,ie||te===null||(te=D.child.sibling)!==null&&((Oe=E.firstEffect)!==null?(E.firstEffect=te,te.nextEffect=Oe):(E.firstEffect=E.lastEffect=te,te.nextEffect=null),te.effectTag=8)),ie&&!ye&&(2&E.mode)!=0&&(D===null&&E.memoizedProps.unstable_avoidThisFallback!==!0||(1&S0.current)!=0?Ei===xl&&(Ei=Af):(Ei!==xl&&Ei!==Af||(Ei=Pc),wl!==0&&V0!==null&&(Ms(V0,mo),Yu(V0,wl)))),(ie||ye)&&(E.effectTag|=4);break;case 4:jr(),Xo(E);break;case 10:ua(E);break;case 19:if(wr(S0),(ie=E.memoizedState)===null)break;if(ye=(64&E.effectTag)!=0,(Oe=ie.rendering)===null){if(ye)Ao(ie,!1);else if(Ei!==xl||D!==null&&(64&D.effectTag)!=0)for(D=E.child;D!==null;){if((Oe=r0(D))!==null){for(E.effectTag|=64,Ao(ie,!1),(D=Oe.updateQueue)!==null&&(E.updateQueue=D,E.effectTag|=4),ie.lastEffect===null&&(E.firstEffect=null),E.lastEffect=ie.lastEffect,D=te,ie=E.child;ie!==null;)te=D,(ye=ie).effectTag&=2,ye.nextEffect=null,ye.firstEffect=null,ye.lastEffect=null,(Oe=ye.alternate)===null?(ye.childExpirationTime=0,ye.expirationTime=te,ye.child=null,ye.memoizedProps=null,ye.memoizedState=null,ye.updateQueue=null,ye.dependencies=null):(ye.childExpirationTime=Oe.childExpirationTime,ye.expirationTime=Oe.expirationTime,ye.child=Oe.child,ye.memoizedProps=Oe.memoizedProps,ye.memoizedState=Oe.memoizedState,ye.updateQueue=Oe.updateQueue,te=Oe.dependencies,ye.dependencies=te===null?null:{expirationTime:te.expirationTime,firstContext:te.firstContext,responders:te.responders}),ie=ie.sibling;Rr(S0,1&S0.current|2),E=E.child;break e}D=D.sibling}}else{if(!ye)if((D=r0(Oe))!==null){if(E.effectTag|=64,ye=!0,(D=D.updateQueue)!==null&&(E.updateQueue=D,E.effectTag|=4),Ao(ie,!0),ie.tail===null&&ie.tailMode==="hidden"){(E=E.lastEffect=ie.lastEffect)!==null&&(E.nextEffect=null);break}}else wn()>ie.tailExpiration&&1<te&&(E.effectTag|=64,ye=!0,Ao(ie,!1),E.expirationTime=E.childExpirationTime=te-1);ie.isBackwards?(Oe.sibling=E.child,E.child=Oe):((D=ie.last)!==null?D.sibling=Oe:E.child=Oe,ie.last=Oe)}if(ie.tail!==null){ie.tailExpiration===0&&(ie.tailExpiration=wn()+500),D=ie.tail,ie.rendering=D,ie.tail=D.sibling,ie.lastEffect=E.lastEffect,D.sibling=null,ie=S0.current,Rr(S0,ie=ye?1&ie|2:1&ie),E=D;break e}break;default:throw Error(i(156,E.tag))}E=null}if(D=Hr,mo===1||D.childExpirationTime!==1){for(ie=0,ye=D.child;ye!==null;)(te=ye.expirationTime)>ie&&(ie=te),(Oe=ye.childExpirationTime)>ie&&(ie=Oe),ye=ye.sibling;D.childExpirationTime=ie}if(E!==null)return E;x!==null&&(2048&x.effectTag)==0&&(x.firstEffect===null&&(x.firstEffect=Hr.firstEffect),Hr.lastEffect!==null&&(x.lastEffect!==null&&(x.lastEffect.nextEffect=Hr.firstEffect),x.lastEffect=Hr.lastEffect),1<Hr.effectTag&&(x.lastEffect!==null?x.lastEffect.nextEffect=Hr:x.firstEffect=Hr,x.lastEffect=Hr))}else{if((E=Os(Hr))!==null)return E.effectTag&=2047,E;x!==null&&(x.firstEffect=x.lastEffect=null,x.effectTag|=2048)}if((E=Hr.sibling)!==null)return E;Hr=x}while(Hr!==null);return Ei===xl&&(Ei=hf),null}function xi(x){var E=x.expirationTime;return E>(x=x.childExpirationTime)?E:x}function En(x){var E=h0();return zn(99,Ql.bind(null,x,E)),null}function Ql(x,E){if(yc(),(Zr&(qi|xs))!==K0)throw Error(i(327));var D=x.finishedWork,te=x.finishedExpirationTime;if(D===null)return null;if(x.finishedWork=null,x.finishedExpirationTime=0,D===x.current)throw Error(i(177));x.callbackNode=null,x.callbackExpirationTime=0,x.callbackPriority=90,x.nextKnownPendingLevel=0;var ie=xi(D);if(x.firstPendingTime=ie,te<=x.lastSuspendedTime?x.firstSuspendedTime=x.lastSuspendedTime=x.nextKnownPendingLevel=0:te<=x.firstSuspendedTime&&(x.firstSuspendedTime=te-1),te<=x.lastPingedTime&&(x.lastPingedTime=0),te<=x.lastExpiredTime&&(x.lastExpiredTime=0),x===V0&&(Hr=V0=null,mo=0),1<D.effectTag?D.lastEffect!==null?(D.lastEffect.nextEffect=D,ie=D.firstEffect):ie=D:ie=D.firstEffect,ie!==null){var ye=Zr;Zr|=xs,po.current=null,we(x.containerInfo),Ur=ie;do try{vc()}catch(n0){if(Ur===null)throw Error(i(330));Po(Ur,n0),Ur=Ur.nextEffect}while(Ur!==null);Ur=ie;do try{for(var Oe=x,Bt=E;Ur!==null;){var Kt=Ur.effectTag;if(16&Kt&&Ct&&or(Ur.stateNode),128&Kt){var pr=Ur.alternate;if(pr!==null){var Nr=pr.ref;Nr!==null&&(typeof Nr=="function"?Nr(null):Nr.current=null)}}switch(1038&Kt){case 2:cu(Ur),Ur.effectTag&=-3;break;case 6:cu(Ur),Ur.effectTag&=-3,fu(Ur.alternate,Ur);break;case 1024:Ur.effectTag&=-1025;break;case 1028:Ur.effectTag&=-1025,fu(Ur.alternate,Ur);break;case 4:fu(Ur.alternate,Ur);break;case 8:var Ua=Oe,Ln=Ur,Uo=Bt;Ct?gc(Ua,Ln,Uo):bs(Ua,Ln,Uo),go(Ln)}Ur=Ur.nextEffect}}catch(n0){if(Ur===null)throw Error(i(330));Po(Ur,n0),Ur=Ur.nextEffect}while(Ur!==null);fe(x.containerInfo),x.current=D,Ur=ie;do try{for(Kt=te;Ur!==null;){var zs=Ur.effectTag;if(36&zs){var Hs=Ur.alternate;switch(Nr=Kt,(pr=Ur).tag){case 0:case 11:case 15:ho(16,32,pr);break;case 1:var xt=pr.stateNode;if(4&pr.effectTag)if(Hs===null)xt.componentDidMount();else{var vt=pr.elementType===pr.type?Hs.memoizedProps:z0(pr.type,Hs.memoizedProps);xt.componentDidUpdate(vt,Hs.memoizedState,xt.__reactInternalSnapshotBeforeUpdate)}var Pt=pr.updateQueue;Pt!==null&&hn(0,Pt,xt);break;case 3:var Mr=pr.updateQueue;if(Mr!==null){if(Oe=null,pr.child!==null)switch(pr.child.tag){case 5:Oe=W(pr.child.stateNode);break;case 1:Oe=pr.child.stateNode}hn(0,Mr,Oe)}break;case 5:var on=pr.stateNode;Hs===null&&4&pr.effectTag&&We(on,pr.type,pr.memoizedProps,pr);break;case 6:case 4:case 12:case 19:case 17:case 20:case 21:break;case 13:pt&&pr.memoizedState;break;default:throw Error(i(163))}}if(128&zs){pr=void 0;var D0=Ur.ref;if(D0!==null){var vn=Ur.stateNode;pr=Ur.tag===5?W(vn):vn,typeof D0=="function"?D0(pr):D0.current=pr}}Ur=Ur.nextEffect}}catch(n0){if(Ur===null)throw Error(i(330));Po(Ur,n0),Ur=Ur.nextEffect}while(Ur!==null);Ur=null,Yn(),Zr=ye}else x.current=D;if(ws)ws=!1,Us=x,vo=E;else for(Ur=ie;Ur!==null;)E=Ur.nextEffect,Ur.nextEffect=null,Ur=E;if((E=x.firstPendingTime)===0&&(ll=null),E===1073741823?x===Uc?Lo++:(Lo=0,Uc=x):Lo=0,typeof Lf=="function"&&Lf(D.stateNode,te),Da(x),Gu)throw Gu=!1,x=No,No=null,x;return(Zr&sl)!==K0||Nn(),null}function vc(){for(;Ur!==null;){var x=Ur.effectTag;(256&x)!=0&&Uu(Ur.alternate,Ur),(512&x)==0||ws||(ws=!0,Tr(97,(function(){return yc(),null}))),Ur=Ur.nextEffect}}function yc(){if(vo!==90){var x=97<vo?97:vo;return vo=90,zn(x,gu)}}function gu(){if(Us===null)return!1;var x=Us;if(Us=null,(Zr&(qi|xs))!==K0)throw Error(i(331));var E=Zr;for(Zr|=xs,x=x.current.firstEffect;x!==null;){try{var D=x;if((512&D.effectTag)!=0)switch(D.tag){case 0:case 11:case 15:ho(128,0,D),ho(0,64,D)}}catch(te){if(x===null)throw Error(i(330));Po(x,te)}D=x.nextEffect,x.nextEffect=null,x=D}return Zr=E,Nn(),!0}function gf(x,E,D){qt(x,E=Za(x,E=$o(D,E),1073741823)),(x=du(x,1073741823))!==null&&Da(x)}function Po(x,E){if(x.tag===3)gf(x,x,E);else for(var D=x.return;D!==null;){if(D.tag===3){gf(D,x,E);break}if(D.tag===1){var te=D.stateNode;if(typeof D.type.getDerivedStateFromError=="function"||typeof te.componentDidCatch=="function"&&(ll===null||!ll.has(te))){qt(D,x=Es(D,x=$o(E,x),1073741823)),(D=du(D,1073741823))!==null&&Da(D);break}}D=D.return}}function Rn(x,E,D){var te=x.pingCache;te!==null&&te.delete(E),V0===x&&mo===D?Ei===Pc||Ei===Af&&Il===1073741823&&wn()-Oc<Kn?Xa(x,mo):Is=!0:Oo(x,D)&&((E=x.lastPingedTime)!==0&&E<D||(x.lastPingedTime=D,x.finishedExpirationTime===D&&(x.finishedExpirationTime=0,x.finishedWork=null),Da(x)))}function sd(x,E){var D=x.stateNode;D!==null&&D.delete(E),(E=0)==0&&(E=da(E=ui(),x,null)),(x=du(x,E))!==null&&Da(x)}df=function(x,E,D){var te=E.expirationTime;if(x!==null){var ie=E.pendingProps;if(x.memoizedProps!==ie||at.current)gs=!0;else{if(te<D){switch(gs=!1,E.tag){case 3:Ro(E);break;case 5:if(Zt(E),4&E.mode&&D!==1&&null(E.type,ie))return E.expirationTime=E.childExpirationTime=1,null;break;case 1:ke(E.type)&&H(E);break;case 4:fa(E,E.stateNode.containerInfo);break;case 10:N0(E,E.memoizedProps.value);break;case 13:if(E.memoizedState!==null)return(te=E.child.childExpirationTime)!==0&&te>=D?ji(x,E,D):(Rr(S0,1&S0.current),(E=na(x,E,D))!==null?E.sibling:null);Rr(S0,1&S0.current);break;case 19:if(te=E.childExpirationTime>=D,(64&x.effectTag)!=0){if(te)return vs(x,E,D);E.effectTag|=64}if((ie=E.memoizedState)!==null&&(ie.rendering=null,ie.tail=null),Rr(S0,S0.current),!te)return null}return na(x,E,D)}gs=!1}}else gs=!1;switch(E.expirationTime=0,E.tag){case 2:if(te=E.type,x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),x=E.pendingProps,ie=Rt(E,me.current),de(E,D),ie=qn(null,E,te,x,ie,D),E.effectTag|=1,typeof ie=="object"&&ie!==null&&typeof ie.render=="function"&&ie.$$typeof===void 0){if(E.tag=1,Na(),ke(te)){var ye=!0;H(E)}else ye=!1;E.memoizedState=ie.state!==null&&ie.state!==void 0?ie.state:null;var Oe=te.getDerivedStateFromProps;typeof Oe=="function"&&W0(E,te,Oe,x),ie.updater=ii,E.stateNode=ie,ie._reactInternalFiber=E,zi(E,te,x,D),E=uu(null,E,te,!0,ye,D)}else E.tag=0,Wi(null,E,ie,D),E=E.child;return E;case 16:if(ie=E.elementType,x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),x=E.pendingProps,(function(Nr){if(Nr._status===-1){Nr._status=0;var Ua=Nr._ctor;Ua=Ua(),Nr._result=Ua,Ua.then((function(Ln){Nr._status===0&&(Ln=Ln.default,Nr._status=1,Nr._result=Ln)}),(function(Ln){Nr._status===0&&(Nr._status=2,Nr._result=Ln)}))}})(ie),ie._status!==1)throw ie._result;switch(ie=ie._result,E.type=ie,ye=E.tag=(function(Nr){if(typeof Nr=="function")return Mc(Nr)?1:0;if(Nr!=null){if((Nr=Nr.$$typeof)===U)return 11;if(Nr===M)return 14}return 2})(ie),x=z0(ie,x),ye){case 0:E=q0(null,E,ie,x,D);break;case 1:E=hc(null,E,ie,x,D);break;case 11:E=ps(null,E,ie,x,D);break;case 14:E=Hl(null,E,ie,z0(ie.type,x),te,D);break;default:throw Error(i(306,ie,""))}return E;case 0:return te=E.type,ie=E.pendingProps,q0(x,E,te,ie=E.elementType===te?ie:z0(te,ie),D);case 1:return te=E.type,ie=E.pendingProps,hc(x,E,te,ie=E.elementType===te?ie:z0(te,ie),D);case 3:if(Ro(E),(te=E.updateQueue)===null)throw Error(i(282));if(ie=(ie=E.memoizedState)!==null?ie.element:null,Gr(E,te,E.pendingProps,null,D),(te=E.memoizedState.element)===ie)E=na(x,E,D);else{if((ie=E.stateNode.hydrate)&&(ie=!1),ie)for(D=ca(E,null,te,D),E.child=D;D;)D.effectTag=-3&D.effectTag|1024,D=D.sibling;else Wi(x,E,te,D);E=E.child}return E;case 5:return Zt(E),te=E.type,ie=E.pendingProps,ye=x!==null?x.memoizedProps:null,Oe=ie.children,_e(te,ie)?Oe=null:ye!==null&&_e(te,ye)&&(E.effectTag|=16),ms(x,E),4&E.mode&&D!==1&&null(te,ie)?(E.expirationTime=E.childExpirationTime=1,E=null):(Wi(x,E,Oe,D),E=E.child),E;case 6:return null;case 13:return ji(x,E,D);case 4:return fa(E,E.stateNode.containerInfo),te=E.pendingProps,x===null?E.child=ds(E,null,te,D):Wi(x,E,te,D),E.child;case 11:return te=E.type,ie=E.pendingProps,ps(x,E,te,ie=E.elementType===te?ie:z0(te,ie),D);case 7:return Wi(x,E,E.pendingProps,D),E.child;case 8:case 12:return Wi(x,E,E.pendingProps.children,D),E.child;case 10:e:{if(te=E.type._context,ie=E.pendingProps,Oe=E.memoizedProps,N0(E,ye=ie.value),Oe!==null){var Bt=Oe.value;if((ye=ka(Bt,ye)?0:0|(typeof te._calculateChangedBits=="function"?te._calculateChangedBits(Bt,ye):1073741823))==0){if(Oe.children===ie.children&&!at.current){E=na(x,E,D);break e}}else for((Bt=E.child)!==null&&(Bt.return=E);Bt!==null;){var Kt=Bt.dependencies;if(Kt!==null){Oe=Bt.child;for(var pr=Kt.firstContext;pr!==null;){if(pr.context===te&&(pr.observedBits&ye)!=0){Bt.tag===1&&((pr=Qt(D,null)).tag=2,qt(Bt,pr)),Bt.expirationTime<D&&(Bt.expirationTime=D),(pr=Bt.alternate)!==null&&pr.expirationTime<D&&(pr.expirationTime=D),ai(Bt.return,D),Kt.expirationTime<D&&(Kt.expirationTime=D);break}pr=pr.next}}else Oe=Bt.tag===10&&Bt.type===E.type?null:Bt.child;if(Oe!==null)Oe.return=Bt;else for(Oe=Bt;Oe!==null;){if(Oe===E){Oe=null;break}if((Bt=Oe.sibling)!==null){Bt.return=Oe.return,Oe=Bt;break}Oe=Oe.return}Bt=Oe}}Wi(x,E,ie.children,D),E=E.child}return E;case 9:return ie=E.type,te=(ye=E.pendingProps).children,de(E,D),te=te(ie=he(ie,ye.unstable_observedBits)),E.effectTag|=1,Wi(x,E,te,D),E.child;case 14:return ye=z0(ie=E.type,E.pendingProps),Hl(x,E,ie,ye=z0(ie.type,ye),te,D);case 15:return Ac(x,E,E.type,E.pendingProps,te,D);case 17:return te=E.type,ie=E.pendingProps,ie=E.elementType===te?ie:z0(te,ie),x!==null&&(x.alternate=null,E.alternate=null,E.effectTag|=2),E.tag=1,ke(te)?(x=!0,H(E)):x=!1,de(E,D),al(E,te,ie),zi(E,te,ie,D),uu(null,E,te,!0,x,D);case 19:return vs(x,E,D)}throw Error(i(156,E.tag))};var Lf=null,Pf=null;function pu(x,E,D,te){this.tag=x,this.key=D,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=E,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=te,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function kl(x,E,D,te){return new pu(x,E,D,te)}function Mc(x){return!(!(x=x.prototype)||!x.isReactComponent)}function yo(x,E){var D=x.alternate;return D===null?((D=kl(x.tag,E,x.key,x.mode)).elementType=x.elementType,D.type=x.type,D.stateNode=x.stateNode,D.alternate=x,x.alternate=D):(D.pendingProps=E,D.effectTag=0,D.nextEffect=null,D.firstEffect=null,D.lastEffect=null),D.childExpirationTime=x.childExpirationTime,D.expirationTime=x.expirationTime,D.child=x.child,D.memoizedProps=x.memoizedProps,D.memoizedState=x.memoizedState,D.updateQueue=x.updateQueue,E=x.dependencies,D.dependencies=E===null?null:{expirationTime:E.expirationTime,firstContext:E.firstContext,responders:E.responders},D.sibling=x.sibling,D.index=x.index,D.ref=x.ref,D}function bc(x,E,D,te,ie,ye){var Oe=2;if(te=x,typeof x=="function")Mc(x)&&(Oe=1);else if(typeof x=="string")Oe=5;else e:switch(x){case y:return Oa(D.children,ie,ye,E);case P:Oe=8,ie|=7;break;case I:Oe=8,ie|=1;break;case S:return(x=kl(12,D,E,8|ie)).elementType=S,x.type=S,x.expirationTime=ye,x;case q:return(x=kl(13,D,E,ie)).type=q,x.elementType=q,x.expirationTime=ye,x;case z:return(x=kl(19,D,E,ie)).elementType=z,x.expirationTime=ye,x;default:if(typeof x=="object"&&x!==null)switch(x.$$typeof){case _:Oe=10;break e;case R:Oe=9;break e;case U:Oe=11;break e;case M:Oe=14;break e;case G:Oe=16,te=null;break e}throw Error(i(130,x==null?x:typeof x,""))}return(E=kl(Oe,D,E,ie)).elementType=x,E.type=te,E.expirationTime=ye,E}function Oa(x,E,D,te){return(x=kl(7,x,te,E)).expirationTime=D,x}function ld(x,E,D){return(x=kl(6,x,null,E)).expirationTime=D,x}function Bs(x,E,D){return(E=kl(4,x.children!==null?x.children:[],x.key,E)).expirationTime=D,E.stateNode={containerInfo:x.containerInfo,pendingChildren:null,implementation:x.implementation},E}function _l(x,E,D){this.tag=E,this.current=null,this.containerInfo=x,this.pingCache=this.pendingChildren=null,this.finishedExpirationTime=0,this.finishedWork=null,this.timeoutHandle=Tt,this.pendingContext=this.context=null,this.hydrate=D,this.callbackNode=null,this.callbackPriority=90,this.lastExpiredTime=this.lastPingedTime=this.nextKnownPendingLevel=this.lastSuspendedTime=this.firstSuspendedTime=this.firstPendingTime=0}function Oo(x,E){var D=x.firstSuspendedTime;return x=x.lastSuspendedTime,D!==0&&D>=E&&x<=E}function Ms(x,E){var D=x.firstSuspendedTime,te=x.lastSuspendedTime;D<E&&(x.firstSuspendedTime=E),(te>E||D===0)&&(x.lastSuspendedTime=E),E<=x.lastPingedTime&&(x.lastPingedTime=0),E<=x.lastExpiredTime&&(x.lastExpiredTime=0)}function Yu(x,E){E>x.firstPendingTime&&(x.firstPendingTime=E);var D=x.firstSuspendedTime;D!==0&&(E>=D?x.firstSuspendedTime=x.lastSuspendedTime=x.nextKnownPendingLevel=0:E>=x.lastSuspendedTime&&(x.lastSuspendedTime=E+1),E>x.nextKnownPendingLevel&&(x.nextKnownPendingLevel=E))}function zc(x,E){var D=x.lastExpiredTime;(D===0||D>E)&&(x.lastExpiredTime=E)}function Ni(x){var E=x._reactInternalFiber;if(E===void 0)throw typeof x.render=="function"?Error(i(188)):Error(i(268,Object.keys(x)));return(x=ge(E))===null?null:x.stateNode}function Zi(x,E){(x=x.memoizedState)!==null&&x.dehydrated!==null&&x.retryTime<E&&(x.retryTime=E)}function J0(x,E){Zi(x,E),(x=x.alternate)&&Zi(x,E)}var mu={createContainer:function(x,E,D){return x=new _l(x,E,D),E=kl(3,null,null,E===2?7:E===1?3:0),x.current=E,E.stateNode=x},updateContainer:function(x,E,D,te){var ie=E.current,ye=ui(),Oe=mn.suspense;ye=da(ye,ie,Oe);e:if(D){t:{if(J(D=D._reactInternalFiber)!==D||D.tag!==1)throw Error(i(170));var Bt=D;do{switch(Bt.tag){case 3:Bt=Bt.stateNode.context;break t;case 1:if(ke(Bt.type)){Bt=Bt.stateNode.__reactInternalMemoizedMergedChildContext;break t}}Bt=Bt.return}while(Bt!==null);throw Error(i(171))}if(D.tag===1){var Kt=D.type;if(ke(Kt)){D=fr(D,Kt,Bt);break e}}D=Bt}else D=zr;return E.context===null?E.context=D:E.pendingContext=D,(E=Qt(ye,Oe)).payload={element:x},(te=te===void 0?null:te)!==null&&(E.callback=te),qt(ie,E),Vi(ie,ye),ye},batchedEventUpdates:function(x,E){var D=Zr;Zr|=2;try{return x(E)}finally{(Zr=D)===K0&&Nn()}},batchedUpdates:function(x,E){var D=Zr;Zr|=1;try{return x(E)}finally{(Zr=D)===K0&&Nn()}},unbatchedUpdates:function(x,E){var D=Zr;Zr&=-2,Zr|=sl;try{return x(E)}finally{(Zr=D)===K0&&Nn()}},deferredUpdates:function(x){return zn(97,x)},syncUpdates:function(x,E,D,te){return zn(99,x.bind(null,E,D,te))},discreteUpdates:function(x,E,D,te){var ie=Zr;Zr|=4;try{return zn(98,x.bind(null,E,D,te))}finally{(Zr=ie)===K0&&Nn()}},flushDiscreteUpdates:function(){(Zr&(1|qi|xs))===K0&&((function(){if(Ki!==null){var x=Ki;Ki=null,x.forEach((function(E,D){zc(D,E),Da(D)})),Nn()}})(),yc())},flushControlled:function(x){var E=Zr;Zr|=1;try{zn(99,x)}finally{(Zr=E)===K0&&Nn()}},flushSync:mc,flushPassiveEffects:yc,IsThisRendererActing:{current:!1},getPublicRootInstance:function(x){return(x=x.current).child?x.child.tag===5?W(x.child.stateNode):x.child.stateNode:null},attemptSynchronousHydration:function(x){switch(x.tag){case 3:var E=x.stateNode;E.hydrate&&(function(D,te){zc(D,te),Da(D),(Zr&(qi|xs))===K0&&Nn()})(E,E.firstPendingTime);break;case 13:mc((function(){return Vi(x,1073741823)})),E=la(ui(),150,100),J0(x,E)}},attemptUserBlockingHydration:function(x){if(x.tag===13){var E=la(ui(),150,100);Vi(x,E),J0(x,E)}},attemptContinuousHydration:function(x){if(x.tag===13){ui();var E=bn++;Vi(x,E),J0(x,E)}},attemptHydrationAtCurrentPriority:function(x){if(x.tag===13){var E=ui();Vi(x,E=da(E,x,null)),J0(x,E)}},findHostInstance:Ni,findHostInstanceWithWarning:function(x){return Ni(x)},findHostInstanceWithNoPortals:function(x){return(x=(function(E){if(!(E=$(E)))return null;for(var D=E;;){if(D.tag===5||D.tag===6)return D;if(D.child&&D.tag!==4)D.child.return=D,D=D.child;else{if(D===E)break;for(;!D.sibling;){if(!D.return||D.return===E)return null;D=D.return}D.sibling.return=D.return,D=D.sibling}}return null})(x))===null?null:x.tag===20?x.stateNode.instance:x.stateNode},shouldSuspend:function(){return!1},injectIntoDevTools:function(x){var E=x.findFiberByHostInstance;return(function(D){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")return!1;var te=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(te.isDisabled||!te.supportsFiber)return!0;try{var ie=te.inject(D);Lf=function(ye){try{te.onCommitFiberRoot(ie,ye,void 0,(64&ye.current.effectTag)==64)}catch{}},Pf=function(ye){try{te.onCommitFiberUnmount(ie,ye)}catch{}}}catch{}return!0})(r({},x,{overrideHookState:null,overrideProps:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:s.ReactCurrentDispatcher,findHostInstanceByFiber:function(D){return(D=ge(D))===null?null:D.stateNode},findFiberByHostInstance:function(D){return E?E(D):null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null}))}};bm.exports=mu.default||mu;var hA=bm.exports;return bm.exports=t,hA};_ne($_.exports);const[Hne,Gne]=pn.version.split(".").map(t=>parseInt(t,10)),Fne=new ZK,eD=Fne,N2={A4:{portrait:{width:793,height:1122},landscape:{width:1122,height:793}},A3:{portrait:{width:1122,height:1587},landscape:{width:1587,height:1122}},LETTER:{portrait:{width:612,height:792},landscape:{width:792,height:612}}},hC=({dpi:t=72,wrap:e=!0,debug:r=!1,size:n="A4",bookmark:a="",orientation:i="portrait",style:s={},children:d,...p})=>{const{id:m,mode:y}=pn.useContext(Ru),I=`${m}-calendar`,S=N2[n.toUpperCase()]||N2.A4,_=S[i]||S.portrait;return y==="print"?ur.jsx(V3,{id:I,size:n,dpi:t,wrap:e,debug:r,bookmark:a,orientation:i,style:{backgroundColor:"white"},children:ur.jsx(nl,{style:s,children:d})}):ur.jsx("section",{...p,id:I,style:{...s,width:_.width,minHeight:_.height,marginInline:"auto"},children:d})};hC.displayName="Calendar.Page";hC.propTypes={dpi:Gt.number,wrap:Gt.bool,debug:Gt.bool,bookmark:Gt.string,size:Gt.oneOf(["A3","A4","Letter"]),orientation:Gt.oneOf(["portrait","landscape"]),style:Gt.object,children:Gt.node};const gC=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Ru);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};gC.displayName="Calendar.Image";gC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const pC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};pC.displayName="Calendar.Container";pC.propTypes={style:Gt.object,children:Gt.node};const mC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("h1",{...r,style:t,children:e})};mC.displayName="Calendar.Title";mC.propTypes={style:Gt.object,children:Gt.node};const vC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-table",...r,style:t,children:e})};vC.displayName="Calendar.Table";vC.propTypes={style:Gt.object,children:Gt.node};const yC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-thead",...r,style:t,children:e})};yC.displayName="Calendar.Head";yC.propTypes={style:Gt.object,children:Gt.node};const bC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-tbody",...r,style:t,children:e})};bC.displayName="Calendar.Body";bC.propTypes={style:Gt.object,children:Gt.node};const EC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{wrap:!1,style:t,children:e}):ur.jsx("div",{className:"calendar-tr",...r,style:t,children:e})};EC.displayName="Calendar.Row";EC.propTypes={style:Gt.object,children:Gt.node};const CC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{className:"calendar-td",...r,style:t,children:e})};CC.displayName="Calendar.Cell";CC.propTypes={style:Gt.object,children:Gt.node};const xC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};xC.displayName="Calendar.CellText";xC.propTypes={style:Gt.object,children:Gt.node};const IC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("span",{...r,style:t,children:e})};IC.displayName="Calendar.CellDate";IC.propTypes={style:Gt.object,children:Gt.node};const wC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};wC.displayName="Calendar.CellItem";wC.propTypes={style:Gt.object,children:Gt.node};const BC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{wrap:!1,style:t,children:e}):ur.jsx("div",{className:"calendar-tr-wrapper",...r,style:t,children:e})};BC.displayName="Calendar.RowWrapper";BC.propTypes={style:Gt.object,children:Gt.node};const SC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{fixed:!0,style:t,children:e}):ur.jsx("footer",{...r,style:t,children:e})};SC.displayName="Calendar.Footer";SC.propTypes={style:Gt.object,children:Gt.node};const QC=({alt:t="",src:e="",style:r={},...n})=>{const{mode:a}=pn.useContext(Ru);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};QC.displayName="Calendar.FooterLogo";QC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const kC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};kC.displayName="Calendar.FooterText";kC.propTypes={style:Gt.object,children:Gt.node};const _C=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Ru);return n==="print"?ur.jsx(nl,{fixed:!0,style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};_C.displayName="Calendar.Spacer";_C.propTypes={style:Gt.object,children:Gt.node};const iu=({id:t="cover",mode:e="preview",children:r})=>ur.jsx(hD,{id:t,mode:e,children:r});iu.Page=hC;iu.Spacer=_C;iu.Image=gC;iu.Container=pC;iu.Title=mC;iu.Table=vC;iu.Head=yC;iu.Body=bC;iu.Row=EC;iu.RowWrapper=BC;iu.Cell=CC;iu.CellText=xC;iu.CellDate=IC;iu.CellItem=wC;iu.Footer=SC;iu.FooterLogo=QC;iu.FooterText=kC;iu.propTypes={id:Gt.string.isRequired,mode:Gt.oneOf(["preview","print"]).isRequired,children:Gt.node.isRequired};const Fd=pn.createContext({id:"cover",mode:"preview"}),Tne=({id:t,mode:e,children:r})=>ur.jsx(Fd.Provider,{value:{id:t,mode:e},children:r}),DC=({dpi:t=72,wrap:e=!0,debug:r=!1,size:n="A4",bookmark:a="",orientation:i="portrait",style:s={},children:d,...p})=>{const{id:m,mode:y}=pn.useContext(Fd),I=`${m}-cover`,S=N2[n.toUpperCase()]||N2.A4,_=S[i]||S.portrait;return y==="print"?ur.jsx(V3,{id:I,size:n,dpi:t,wrap:e,debug:r,bookmark:a,orientation:i,style:{backgroundColor:"white"},children:ur.jsx(nl,{style:s,children:d})}):ur.jsx("section",{...p,id:I,style:{...s,width:_.width,height:_.height,marginInline:"auto"},children:d})};DC.displayName="Cover.Page";DC.propTypes={dpi:Gt.number,wrap:Gt.bool,debug:Gt.bool,bookmark:Gt.string,size:Gt.oneOf(["A3","A4","Letter"]),orientation:Gt.oneOf(["portrait","landscape"]),style:Gt.object,children:Gt.node};const RC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(nl,{fixed:!0,style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};RC.displayName="Cover.Spacer";RC.propTypes={style:Gt.object,children:Gt.node};const FC=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Fd);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};FC.displayName="Cover.Image";FC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const TC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};TC.displayName="Cover.Container";TC.propTypes={style:Gt.object,children:Gt.node};const NC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("h1",{...r,style:t,children:e})};NC.displayName="Cover.Title";NC.propTypes={style:Gt.object,children:Gt.node};const LC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};LC.displayName="Cover.Agent";LC.propTypes={style:Gt.object,children:Gt.node};const PC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};PC.displayName="Cover.Vendor";PC.propTypes={style:Gt.object,children:Gt.node};const OC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};OC.displayName="Cover.Address";OC.propTypes={style:Gt.object,children:Gt.node};const UC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};UC.displayName="Cover.Footer";UC.propTypes={style:Gt.object,children:Gt.node};const MC=({alt:t="",src:e="",style:r={},...n})=>{const{mode:a}=pn.useContext(Fd);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};MC.displayName="Cover.FooterLogo";MC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const zC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Fd);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};zC.displayName="Cover.FooterText";zC.propTypes={style:Gt.object,children:Gt.node};const od=({id:t="cover",mode:e="preview",children:r})=>ur.jsx(Tne,{id:t,mode:e,children:r});od.Page=DC;od.Spacer=RC;od.Image=FC;od.Container=TC;od.Title=NC;od.Agent=LC;od.Vendor=PC;od.Address=OC;od.Footer=UC;od.FooterLogo=MC;od.FooterText=zC;od.propTypes={id:Gt.string.isRequired,mode:Gt.oneOf(["preview","print"]).isRequired,children:Gt.node.isRequired};const Pl=pn.createContext({id:"letter",mode:"preview"}),Nne=({id:t,mode:e,children:r})=>ur.jsx(Pl.Provider,{value:{id:t,mode:e},children:r}),HC=({dpi:t=72,wrap:e=!0,debug:r=!1,size:n="A4",bookmark:a="",orientation:i="portrait",style:s={},children:d,...p})=>{const{id:m,mode:y}=pn.useContext(Pl),I=`${m}-letter`,S=N2[n.toUpperCase()]||N2.A4,_=S[i]||S.portrait;return y==="print"?ur.jsx(V3,{id:I,size:n,dpi:t,wrap:e,debug:r,bookmark:a,orientation:i,style:{backgroundColor:"white"},children:ur.jsx(nl,{style:s,children:d})}):ur.jsx("section",{...p,id:I,style:{...s,width:_.width,height:_.height,marginInline:"auto"},children:d})};HC.displayName="Letter.Page";HC.propTypes={dpi:Gt.number,wrap:Gt.bool,debug:Gt.bool,bookmark:Gt.string,size:Gt.oneOf(["A3","A4","Letter"]),orientation:Gt.oneOf(["portrait","landscape"]),style:Gt.object,children:Gt.node};const GC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{fixed:!0,style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};GC.displayName="Letter.Spacer";GC.propTypes={style:Gt.object,children:Gt.node};const WC=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Pl);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};WC.displayName="Letter.Image";WC.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const jC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};jC.displayName="Letter.Container";jC.propTypes={style:Gt.object,children:Gt.node};const YC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("h1",{...r,style:t,children:e})};YC.displayName="Letter.Title";YC.propTypes={style:Gt.object,children:Gt.node};const qC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};qC.displayName="Letter.Content";qC.propTypes={style:Gt.object,children:Gt.node};const KC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};KC.displayName="Letter.Salutation";KC.propTypes={style:Gt.object,children:Gt.node};const VC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return eD.registerHyphenationCallback(a=>[a]),n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:{...t,whiteSpace:"pre-line"},children:e})};VC.displayName="Letter.Body";VC.propTypes={style:Gt.object,children:Gt.node};const JC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};JC.displayName="Letter.Closing";JC.propTypes={style:Gt.object,children:Gt.node};const ZC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};ZC.displayName="Letter.AgentWrapper";ZC.propTypes={style:Gt.object,children:Gt.node};const XC=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};XC.displayName="Letter.Agent";XC.propTypes={style:Gt.object,children:Gt.node};const $C=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};$C.displayName="Letter.AgentName";$C.propTypes={style:Gt.object,children:Gt.node};const ex=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};ex.displayName="Letter.AgentPhone";ex.propTypes={style:Gt.object,children:Gt.node};const tx=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};tx.displayName="Letter.AgentEmail";tx.propTypes={style:Gt.object,children:Gt.node};const rx=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return eD.registerHyphenationCallback(a=>[a]),n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};rx.displayName="Letter.AgentOfficeLicense";rx.propTypes={style:Gt.object,children:Gt.node};const nx=({alt:t,src:e,style:r={},...n})=>{const{mode:a}=pn.useContext(Pl);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};nx.displayName="Letter.AgentImage";nx.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const ax=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(nl,{style:t,children:e}):ur.jsx("div",{...r,style:t,children:e})};ax.displayName="Letter.Footer";ax.propTypes={style:Gt.object,children:Gt.node};const ix=({alt:t="",src:e="",style:r={},...n})=>{const{mode:a}=pn.useContext(Pl);return a==="print"?ur.jsx(dA,{src:e,style:r}):ur.jsx("img",{...n,alt:t,src:e,style:r})};ix.displayName="Letter.FooterLogo";ix.propTypes={alt:Gt.string,src:Gt.string,style:Gt.object};const ox=({style:t={},children:e,...r})=>{const{mode:n}=pn.useContext(Pl);return n==="print"?ur.jsx(lo,{style:t,children:e}):ur.jsx("p",{...r,style:t,children:e})};ox.displayName="Letter.FooterText";ox.propTypes={style:Gt.object,children:Gt.node};const El=({id:t="letter",mode:e="preview",children:r})=>ur.jsx(Nne,{id:t,mode:e,children:r});El.Page=HC;El.Spacer=GC;El.Image=WC;El.Container=jC;El.Title=YC;El.Content=qC;El.Salutation=KC;El.Body=VC;El.Closing=JC;El.AgentWrapper=ZC;El.Agent=XC;El.AgentName=$C;El.AgentPhone=ex;El.AgentEmail=tx;El.AgentOfficeLicense=rx;El.AgentImage=nx;El.Footer=ax;El.FooterLogo=ix;El.FooterText=ox;El.propTypes={id:Gt.string.isRequired,mode:Gt.oneOf(["preview","print"]).isRequired,children:Gt.node.isRequired};exports.Calendar=iu;exports.Cover=od;exports.Letter=El;
|
package/dist/index.es.js
CHANGED
|
@@ -96141,45 +96141,45 @@ CC.propTypes = {
|
|
|
96141
96141
|
};
|
|
96142
96142
|
const IC = ({ style: t = {}, children: e, ...r }) => {
|
|
96143
96143
|
const { mode: n } = Yn(Du);
|
|
96144
|
-
return n === "print" ? /* @__PURE__ */ ur(nl, {
|
|
96144
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { className: "calendar-td", ...r, style: t, children: e });
|
|
96145
96145
|
};
|
|
96146
|
-
IC.displayName = "Calendar.
|
|
96146
|
+
IC.displayName = "Calendar.Cell";
|
|
96147
96147
|
IC.propTypes = {
|
|
96148
96148
|
style: Gt.object,
|
|
96149
96149
|
children: Gt.node
|
|
96150
96150
|
};
|
|
96151
96151
|
const xC = ({ style: t = {}, children: e, ...r }) => {
|
|
96152
96152
|
const { mode: n } = Yn(Du);
|
|
96153
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96153
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96154
96154
|
};
|
|
96155
|
-
xC.displayName = "Calendar.
|
|
96155
|
+
xC.displayName = "Calendar.CellText";
|
|
96156
96156
|
xC.propTypes = {
|
|
96157
96157
|
style: Gt.object,
|
|
96158
96158
|
children: Gt.node
|
|
96159
96159
|
};
|
|
96160
96160
|
const wC = ({ style: t = {}, children: e, ...r }) => {
|
|
96161
96161
|
const { mode: n } = Yn(Du);
|
|
96162
|
-
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("
|
|
96162
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("span", { ...r, style: t, children: e });
|
|
96163
96163
|
};
|
|
96164
|
-
wC.displayName = "Calendar.
|
|
96164
|
+
wC.displayName = "Calendar.CellDate";
|
|
96165
96165
|
wC.propTypes = {
|
|
96166
96166
|
style: Gt.object,
|
|
96167
96167
|
children: Gt.node
|
|
96168
96168
|
};
|
|
96169
96169
|
const BC = ({ style: t = {}, children: e, ...r }) => {
|
|
96170
96170
|
const { mode: n } = Yn(Du);
|
|
96171
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96171
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96172
96172
|
};
|
|
96173
|
-
BC.displayName = "Calendar.
|
|
96173
|
+
BC.displayName = "Calendar.CellItem";
|
|
96174
96174
|
BC.propTypes = {
|
|
96175
96175
|
style: Gt.object,
|
|
96176
96176
|
children: Gt.node
|
|
96177
96177
|
};
|
|
96178
96178
|
const SC = ({ style: t = {}, children: e, ...r }) => {
|
|
96179
96179
|
const { mode: n } = Yn(Du);
|
|
96180
|
-
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96180
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { wrap: !1, style: t, children: e }) : /* @__PURE__ */ ur("div", { className: "calendar-tr-wrapper", ...r, style: t, children: e });
|
|
96181
96181
|
};
|
|
96182
|
-
SC.displayName = "Calendar.
|
|
96182
|
+
SC.displayName = "Calendar.RowWrapper";
|
|
96183
96183
|
SC.propTypes = {
|
|
96184
96184
|
style: Gt.object,
|
|
96185
96185
|
children: Gt.node
|
|
@@ -96223,6 +96223,7 @@ DC.propTypes = {
|
|
|
96223
96223
|
};
|
|
96224
96224
|
const Lu = ({ id: t = "cover", mode: e = "preview", children: r }) => /* @__PURE__ */ ur(gD, { id: t, mode: e, children: r });
|
|
96225
96225
|
Lu.Page = gC;
|
|
96226
|
+
Lu.Spacer = DC;
|
|
96226
96227
|
Lu.Image = pC;
|
|
96227
96228
|
Lu.Container = mC;
|
|
96228
96229
|
Lu.Title = vC;
|
|
@@ -96230,15 +96231,14 @@ Lu.Table = yC;
|
|
|
96230
96231
|
Lu.Head = bC;
|
|
96231
96232
|
Lu.Body = EC;
|
|
96232
96233
|
Lu.Row = CC;
|
|
96233
|
-
Lu.RowWrapper =
|
|
96234
|
-
Lu.Cell =
|
|
96235
|
-
Lu.CellText =
|
|
96236
|
-
Lu.CellDate =
|
|
96237
|
-
Lu.CellItem =
|
|
96234
|
+
Lu.RowWrapper = SC;
|
|
96235
|
+
Lu.Cell = IC;
|
|
96236
|
+
Lu.CellText = xC;
|
|
96237
|
+
Lu.CellDate = wC;
|
|
96238
|
+
Lu.CellItem = BC;
|
|
96238
96239
|
Lu.Footer = QC;
|
|
96239
96240
|
Lu.FooterLogo = kC;
|
|
96240
96241
|
Lu.FooterText = _C;
|
|
96241
|
-
Lu.Spacer = DC;
|
|
96242
96242
|
Lu.propTypes = {
|
|
96243
96243
|
id: Gt.string.isRequired,
|
|
96244
96244
|
mode: Gt.oneOf(["preview", "print"]).isRequired,
|
|
@@ -96282,7 +96282,7 @@ const Rd = Ob({
|
|
|
96282
96282
|
}
|
|
96283
96283
|
);
|
|
96284
96284
|
};
|
|
96285
|
-
RC.displayName = "Cover.
|
|
96285
|
+
RC.displayName = "Cover.Page";
|
|
96286
96286
|
RC.propTypes = {
|
|
96287
96287
|
dpi: Gt.number,
|
|
96288
96288
|
wrap: Gt.bool,
|
|
@@ -96293,48 +96293,48 @@ RC.propTypes = {
|
|
|
96293
96293
|
style: Gt.object,
|
|
96294
96294
|
children: Gt.node
|
|
96295
96295
|
};
|
|
96296
|
-
const FC = ({
|
|
96296
|
+
const FC = ({ style: t = {}, children: e, ...r }) => {
|
|
96297
|
+
const { mode: n } = Yn(Rd);
|
|
96298
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { fixed: !0, style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96299
|
+
};
|
|
96300
|
+
FC.displayName = "Cover.Spacer";
|
|
96301
|
+
FC.propTypes = {
|
|
96302
|
+
style: Gt.object,
|
|
96303
|
+
children: Gt.node
|
|
96304
|
+
};
|
|
96305
|
+
const TC = ({ alt: t, src: e, style: r = {}, ...n }) => {
|
|
96297
96306
|
const { mode: a } = Yn(Rd);
|
|
96298
96307
|
return a === "print" ? /* @__PURE__ */ ur(dA, { src: e, style: r }) : /* @__PURE__ */ ur("img", { ...n, alt: t, src: e, style: r });
|
|
96299
96308
|
};
|
|
96300
|
-
|
|
96301
|
-
|
|
96309
|
+
TC.displayName = "Cover.Image";
|
|
96310
|
+
TC.propTypes = {
|
|
96302
96311
|
alt: Gt.string,
|
|
96303
96312
|
src: Gt.string,
|
|
96304
96313
|
style: Gt.object
|
|
96305
96314
|
};
|
|
96306
|
-
const TC = ({ style: t = {}, children: e, ...r }) => {
|
|
96307
|
-
const { mode: n } = Yn(Rd);
|
|
96308
|
-
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("h1", { ...r, style: t, children: e });
|
|
96309
|
-
};
|
|
96310
|
-
TC.displayName = "Cover.Title";
|
|
96311
|
-
TC.propTypes = {
|
|
96312
|
-
style: Gt.object,
|
|
96313
|
-
children: Gt.node
|
|
96314
|
-
};
|
|
96315
96315
|
const NC = ({ style: t = {}, children: e, ...r }) => {
|
|
96316
96316
|
const { mode: n } = Yn(Rd);
|
|
96317
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96317
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96318
96318
|
};
|
|
96319
|
-
NC.displayName = "Cover.
|
|
96319
|
+
NC.displayName = "Cover.Container";
|
|
96320
96320
|
NC.propTypes = {
|
|
96321
96321
|
style: Gt.object,
|
|
96322
96322
|
children: Gt.node
|
|
96323
96323
|
};
|
|
96324
96324
|
const LC = ({ style: t = {}, children: e, ...r }) => {
|
|
96325
96325
|
const { mode: n } = Yn(Rd);
|
|
96326
|
-
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("
|
|
96326
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("h1", { ...r, style: t, children: e });
|
|
96327
96327
|
};
|
|
96328
|
-
LC.displayName = "Cover.
|
|
96328
|
+
LC.displayName = "Cover.Title";
|
|
96329
96329
|
LC.propTypes = {
|
|
96330
96330
|
style: Gt.object,
|
|
96331
96331
|
children: Gt.node
|
|
96332
96332
|
};
|
|
96333
96333
|
const PC = ({ style: t = {}, children: e, ...r }) => {
|
|
96334
96334
|
const { mode: n } = Yn(Rd);
|
|
96335
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96335
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96336
96336
|
};
|
|
96337
|
-
PC.displayName = "Cover.
|
|
96337
|
+
PC.displayName = "Cover.Agent";
|
|
96338
96338
|
PC.propTypes = {
|
|
96339
96339
|
style: Gt.object,
|
|
96340
96340
|
children: Gt.node
|
|
@@ -96343,60 +96343,60 @@ const OC = ({ style: t = {}, children: e, ...r }) => {
|
|
|
96343
96343
|
const { mode: n } = Yn(Rd);
|
|
96344
96344
|
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96345
96345
|
};
|
|
96346
|
-
OC.displayName = "Cover.
|
|
96346
|
+
OC.displayName = "Cover.Vendor";
|
|
96347
96347
|
OC.propTypes = {
|
|
96348
96348
|
style: Gt.object,
|
|
96349
96349
|
children: Gt.node
|
|
96350
96350
|
};
|
|
96351
96351
|
const UC = ({ style: t = {}, children: e, ...r }) => {
|
|
96352
96352
|
const { mode: n } = Yn(Rd);
|
|
96353
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96353
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96354
96354
|
};
|
|
96355
|
-
UC.displayName = "Cover.
|
|
96355
|
+
UC.displayName = "Cover.Address";
|
|
96356
96356
|
UC.propTypes = {
|
|
96357
96357
|
style: Gt.object,
|
|
96358
96358
|
children: Gt.node
|
|
96359
96359
|
};
|
|
96360
|
-
const MC = ({
|
|
96360
|
+
const MC = ({ style: t = {}, children: e, ...r }) => {
|
|
96361
|
+
const { mode: n } = Yn(Rd);
|
|
96362
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96363
|
+
};
|
|
96364
|
+
MC.displayName = "Cover.Footer";
|
|
96365
|
+
MC.propTypes = {
|
|
96366
|
+
style: Gt.object,
|
|
96367
|
+
children: Gt.node
|
|
96368
|
+
};
|
|
96369
|
+
const zC = ({ alt: t = "", src: e = "", style: r = {}, ...n }) => {
|
|
96361
96370
|
const { mode: a } = Yn(Rd);
|
|
96362
96371
|
return a === "print" ? /* @__PURE__ */ ur(dA, { src: e, style: r }) : /* @__PURE__ */ ur("img", { ...n, alt: t, src: e, style: r });
|
|
96363
96372
|
};
|
|
96364
|
-
|
|
96365
|
-
|
|
96373
|
+
zC.displayName = "Cover.FooterLogo";
|
|
96374
|
+
zC.propTypes = {
|
|
96366
96375
|
alt: Gt.string,
|
|
96367
96376
|
src: Gt.string,
|
|
96368
96377
|
style: Gt.object
|
|
96369
96378
|
};
|
|
96370
|
-
const zC = ({ style: t = {}, children: e, ...r }) => {
|
|
96371
|
-
const { mode: n } = Yn(Rd);
|
|
96372
|
-
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96373
|
-
};
|
|
96374
|
-
zC.displayName = "Cover.FooterText";
|
|
96375
|
-
zC.propTypes = {
|
|
96376
|
-
style: Gt.object,
|
|
96377
|
-
children: Gt.node
|
|
96378
|
-
};
|
|
96379
96379
|
const HC = ({ style: t = {}, children: e, ...r }) => {
|
|
96380
96380
|
const { mode: n } = Yn(Rd);
|
|
96381
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96381
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96382
96382
|
};
|
|
96383
|
-
HC.displayName = "Cover.
|
|
96383
|
+
HC.displayName = "Cover.FooterText";
|
|
96384
96384
|
HC.propTypes = {
|
|
96385
96385
|
style: Gt.object,
|
|
96386
96386
|
children: Gt.node
|
|
96387
96387
|
};
|
|
96388
96388
|
const Fd = ({ id: t = "cover", mode: e = "preview", children: r }) => /* @__PURE__ */ ur(Nne, { id: t, mode: e, children: r });
|
|
96389
|
-
Fd.
|
|
96390
|
-
Fd.
|
|
96391
|
-
Fd.Image =
|
|
96392
|
-
Fd.
|
|
96393
|
-
Fd.Title =
|
|
96394
|
-
Fd.Agent =
|
|
96395
|
-
Fd.Vendor =
|
|
96396
|
-
Fd.Address =
|
|
96397
|
-
Fd.Footer =
|
|
96398
|
-
Fd.FooterLogo =
|
|
96399
|
-
Fd.FooterText =
|
|
96389
|
+
Fd.Page = RC;
|
|
96390
|
+
Fd.Spacer = FC;
|
|
96391
|
+
Fd.Image = TC;
|
|
96392
|
+
Fd.Container = NC;
|
|
96393
|
+
Fd.Title = LC;
|
|
96394
|
+
Fd.Agent = PC;
|
|
96395
|
+
Fd.Vendor = OC;
|
|
96396
|
+
Fd.Address = UC;
|
|
96397
|
+
Fd.Footer = MC;
|
|
96398
|
+
Fd.FooterLogo = zC;
|
|
96399
|
+
Fd.FooterText = HC;
|
|
96400
96400
|
Fd.propTypes = {
|
|
96401
96401
|
id: Gt.string.isRequired,
|
|
96402
96402
|
mode: Gt.oneOf(["preview", "print"]).isRequired,
|
|
@@ -96440,7 +96440,7 @@ const Ll = Ob({
|
|
|
96440
96440
|
}
|
|
96441
96441
|
);
|
|
96442
96442
|
};
|
|
96443
|
-
GC.displayName = "Letter.
|
|
96443
|
+
GC.displayName = "Letter.Page";
|
|
96444
96444
|
GC.propTypes = {
|
|
96445
96445
|
dpi: Gt.number,
|
|
96446
96446
|
wrap: Gt.bool,
|
|
@@ -96453,9 +96453,9 @@ GC.propTypes = {
|
|
|
96453
96453
|
};
|
|
96454
96454
|
const WC = ({ style: t = {}, children: e, ...r }) => {
|
|
96455
96455
|
const { mode: n } = Yn(Ll);
|
|
96456
|
-
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96456
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { fixed: !0, style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96457
96457
|
};
|
|
96458
|
-
WC.displayName = "Letter.
|
|
96458
|
+
WC.displayName = "Letter.Spacer";
|
|
96459
96459
|
WC.propTypes = {
|
|
96460
96460
|
style: Gt.object,
|
|
96461
96461
|
children: Gt.node
|
|
@@ -96474,7 +96474,7 @@ const jC = ({ style: t = {}, children: e, ...r }) => {
|
|
|
96474
96474
|
const { mode: n } = Yn(Ll);
|
|
96475
96475
|
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96476
96476
|
};
|
|
96477
|
-
jC.displayName = "Letter.
|
|
96477
|
+
jC.displayName = "Letter.Container";
|
|
96478
96478
|
jC.propTypes = {
|
|
96479
96479
|
style: Gt.object,
|
|
96480
96480
|
children: Gt.node
|
|
@@ -96490,36 +96490,36 @@ qC.propTypes = {
|
|
|
96490
96490
|
};
|
|
96491
96491
|
const KC = ({ style: t = {}, children: e, ...r }) => {
|
|
96492
96492
|
const { mode: n } = Yn(Ll);
|
|
96493
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96493
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96494
96494
|
};
|
|
96495
|
-
KC.displayName = "Letter.
|
|
96495
|
+
KC.displayName = "Letter.Content";
|
|
96496
96496
|
KC.propTypes = {
|
|
96497
96497
|
style: Gt.object,
|
|
96498
96498
|
children: Gt.node
|
|
96499
96499
|
};
|
|
96500
96500
|
const VC = ({ style: t = {}, children: e, ...r }) => {
|
|
96501
96501
|
const { mode: n } = Yn(Ll);
|
|
96502
|
-
return
|
|
96502
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96503
96503
|
};
|
|
96504
|
-
VC.displayName = "Letter.
|
|
96504
|
+
VC.displayName = "Letter.Salutation";
|
|
96505
96505
|
VC.propTypes = {
|
|
96506
96506
|
style: Gt.object,
|
|
96507
96507
|
children: Gt.node
|
|
96508
96508
|
};
|
|
96509
96509
|
const JC = ({ style: t = {}, children: e, ...r }) => {
|
|
96510
96510
|
const { mode: n } = Yn(Ll);
|
|
96511
|
-
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96511
|
+
return tD.registerHyphenationCallback((a) => [a]), n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: { ...t, whiteSpace: "pre-line" }, children: e });
|
|
96512
96512
|
};
|
|
96513
|
-
JC.displayName = "Letter.
|
|
96513
|
+
JC.displayName = "Letter.Body";
|
|
96514
96514
|
JC.propTypes = {
|
|
96515
96515
|
style: Gt.object,
|
|
96516
96516
|
children: Gt.node
|
|
96517
96517
|
};
|
|
96518
96518
|
const ZC = ({ style: t = {}, children: e, ...r }) => {
|
|
96519
96519
|
const { mode: n } = Yn(Ll);
|
|
96520
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96520
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96521
96521
|
};
|
|
96522
|
-
ZC.displayName = "Letter.
|
|
96522
|
+
ZC.displayName = "Letter.Closing";
|
|
96523
96523
|
ZC.propTypes = {
|
|
96524
96524
|
style: Gt.object,
|
|
96525
96525
|
children: Gt.node
|
|
@@ -96528,16 +96528,16 @@ const XC = ({ style: t = {}, children: e, ...r }) => {
|
|
|
96528
96528
|
const { mode: n } = Yn(Ll);
|
|
96529
96529
|
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96530
96530
|
};
|
|
96531
|
-
XC.displayName = "Letter.
|
|
96531
|
+
XC.displayName = "Letter.AgentWrapper";
|
|
96532
96532
|
XC.propTypes = {
|
|
96533
96533
|
style: Gt.object,
|
|
96534
96534
|
children: Gt.node
|
|
96535
96535
|
};
|
|
96536
96536
|
const $C = ({ style: t = {}, children: e, ...r }) => {
|
|
96537
96537
|
const { mode: n } = Yn(Ll);
|
|
96538
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96538
|
+
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96539
96539
|
};
|
|
96540
|
-
$C.displayName = "Letter.
|
|
96540
|
+
$C.displayName = "Letter.Agent";
|
|
96541
96541
|
$C.propTypes = {
|
|
96542
96542
|
style: Gt.object,
|
|
96543
96543
|
children: Gt.node
|
|
@@ -96546,7 +96546,7 @@ const eI = ({ style: t = {}, children: e, ...r }) => {
|
|
|
96546
96546
|
const { mode: n } = Yn(Ll);
|
|
96547
96547
|
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96548
96548
|
};
|
|
96549
|
-
eI.displayName = "Letter.
|
|
96549
|
+
eI.displayName = "Letter.AgentName";
|
|
96550
96550
|
eI.propTypes = {
|
|
96551
96551
|
style: Gt.object,
|
|
96552
96552
|
children: Gt.node
|
|
@@ -96555,87 +96555,87 @@ const tI = ({ style: t = {}, children: e, ...r }) => {
|
|
|
96555
96555
|
const { mode: n } = Yn(Ll);
|
|
96556
96556
|
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96557
96557
|
};
|
|
96558
|
-
tI.displayName = "Letter.
|
|
96558
|
+
tI.displayName = "Letter.AgentPhone";
|
|
96559
96559
|
tI.propTypes = {
|
|
96560
96560
|
style: Gt.object,
|
|
96561
96561
|
children: Gt.node
|
|
96562
96562
|
};
|
|
96563
96563
|
const rI = ({ style: t = {}, children: e, ...r }) => {
|
|
96564
96564
|
const { mode: n } = Yn(Ll);
|
|
96565
|
-
return
|
|
96565
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96566
96566
|
};
|
|
96567
|
-
rI.displayName = "Letter.
|
|
96567
|
+
rI.displayName = "Letter.AgentEmail";
|
|
96568
96568
|
rI.propTypes = {
|
|
96569
96569
|
style: Gt.object,
|
|
96570
96570
|
children: Gt.node
|
|
96571
96571
|
};
|
|
96572
|
-
const nI = ({
|
|
96572
|
+
const nI = ({ style: t = {}, children: e, ...r }) => {
|
|
96573
|
+
const { mode: n } = Yn(Ll);
|
|
96574
|
+
return tD.registerHyphenationCallback((a) => [a]), n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96575
|
+
};
|
|
96576
|
+
nI.displayName = "Letter.AgentOfficeLicense";
|
|
96577
|
+
nI.propTypes = {
|
|
96578
|
+
style: Gt.object,
|
|
96579
|
+
children: Gt.node
|
|
96580
|
+
};
|
|
96581
|
+
const aI = ({ alt: t, src: e, style: r = {}, ...n }) => {
|
|
96573
96582
|
const { mode: a } = Yn(Ll);
|
|
96574
96583
|
return a === "print" ? /* @__PURE__ */ ur(dA, { src: e, style: r }) : /* @__PURE__ */ ur("img", { ...n, alt: t, src: e, style: r });
|
|
96575
96584
|
};
|
|
96576
|
-
|
|
96577
|
-
|
|
96585
|
+
aI.displayName = "Letter.AgentImage";
|
|
96586
|
+
aI.propTypes = {
|
|
96578
96587
|
alt: Gt.string,
|
|
96579
96588
|
src: Gt.string,
|
|
96580
96589
|
style: Gt.object
|
|
96581
96590
|
};
|
|
96582
|
-
const
|
|
96591
|
+
const iI = ({ style: t = {}, children: e, ...r }) => {
|
|
96583
96592
|
const { mode: n } = Yn(Ll);
|
|
96584
96593
|
return n === "print" ? /* @__PURE__ */ ur(nl, { style: t, children: e }) : /* @__PURE__ */ ur("div", { ...r, style: t, children: e });
|
|
96585
96594
|
};
|
|
96586
|
-
|
|
96587
|
-
|
|
96595
|
+
iI.displayName = "Letter.Footer";
|
|
96596
|
+
iI.propTypes = {
|
|
96588
96597
|
style: Gt.object,
|
|
96589
96598
|
children: Gt.node
|
|
96590
96599
|
};
|
|
96591
|
-
const
|
|
96600
|
+
const oI = ({ alt: t = "", src: e = "", style: r = {}, ...n }) => {
|
|
96592
96601
|
const { mode: a } = Yn(Ll);
|
|
96593
96602
|
return a === "print" ? /* @__PURE__ */ ur(dA, { src: e, style: r }) : /* @__PURE__ */ ur("img", { ...n, alt: t, src: e, style: r });
|
|
96594
96603
|
};
|
|
96595
|
-
|
|
96596
|
-
|
|
96604
|
+
oI.displayName = "Letter.FooterLogo";
|
|
96605
|
+
oI.propTypes = {
|
|
96597
96606
|
alt: Gt.string,
|
|
96598
96607
|
src: Gt.string,
|
|
96599
96608
|
style: Gt.object
|
|
96600
96609
|
};
|
|
96601
|
-
const oI = ({ style: t = {}, children: e, ...r }) => {
|
|
96602
|
-
const { mode: n } = Yn(Ll);
|
|
96603
|
-
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96604
|
-
};
|
|
96605
|
-
oI.displayName = "Letter.FooterText";
|
|
96606
|
-
oI.propTypes = {
|
|
96607
|
-
style: Gt.object,
|
|
96608
|
-
children: Gt.node
|
|
96609
|
-
};
|
|
96610
96610
|
const sI = ({ style: t = {}, children: e, ...r }) => {
|
|
96611
96611
|
const { mode: n } = Yn(Ll);
|
|
96612
|
-
return n === "print" ? /* @__PURE__ */ ur(
|
|
96612
|
+
return n === "print" ? /* @__PURE__ */ ur(lo, { style: t, children: e }) : /* @__PURE__ */ ur("p", { ...r, style: t, children: e });
|
|
96613
96613
|
};
|
|
96614
|
-
sI.displayName = "Letter.
|
|
96614
|
+
sI.displayName = "Letter.FooterText";
|
|
96615
96615
|
sI.propTypes = {
|
|
96616
96616
|
style: Gt.object,
|
|
96617
96617
|
children: Gt.node
|
|
96618
96618
|
};
|
|
96619
96619
|
const Pl = ({ id: t = "letter", mode: e = "preview", children: r }) => /* @__PURE__ */ ur(Lne, { id: t, mode: e, children: r });
|
|
96620
|
-
Pl.
|
|
96621
|
-
Pl.
|
|
96620
|
+
Pl.Page = GC;
|
|
96621
|
+
Pl.Spacer = WC;
|
|
96622
96622
|
Pl.Image = YC;
|
|
96623
|
-
Pl.
|
|
96623
|
+
Pl.Container = jC;
|
|
96624
96624
|
Pl.Title = qC;
|
|
96625
|
-
Pl.Content =
|
|
96626
|
-
Pl.Salutation =
|
|
96627
|
-
Pl.Body =
|
|
96628
|
-
Pl.Closing =
|
|
96629
|
-
Pl.AgentWrapper =
|
|
96630
|
-
Pl.Agent =
|
|
96631
|
-
Pl.AgentName =
|
|
96632
|
-
Pl.AgentPhone =
|
|
96633
|
-
Pl.AgentEmail =
|
|
96634
|
-
Pl.AgentOfficeLicense =
|
|
96635
|
-
Pl.AgentImage =
|
|
96636
|
-
Pl.Footer =
|
|
96637
|
-
Pl.FooterLogo =
|
|
96638
|
-
Pl.FooterText =
|
|
96625
|
+
Pl.Content = KC;
|
|
96626
|
+
Pl.Salutation = VC;
|
|
96627
|
+
Pl.Body = JC;
|
|
96628
|
+
Pl.Closing = ZC;
|
|
96629
|
+
Pl.AgentWrapper = XC;
|
|
96630
|
+
Pl.Agent = $C;
|
|
96631
|
+
Pl.AgentName = eI;
|
|
96632
|
+
Pl.AgentPhone = tI;
|
|
96633
|
+
Pl.AgentEmail = rI;
|
|
96634
|
+
Pl.AgentOfficeLicense = nI;
|
|
96635
|
+
Pl.AgentImage = aI;
|
|
96636
|
+
Pl.Footer = iI;
|
|
96637
|
+
Pl.FooterLogo = oI;
|
|
96638
|
+
Pl.FooterText = sI;
|
|
96639
96639
|
Pl.propTypes = {
|
|
96640
96640
|
id: Gt.string.isRequired,
|
|
96641
96641
|
mode: Gt.oneOf(["preview", "print"]).isRequired,
|
package/dist/pagesV2/data.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export namespace cover_data {
|
|
|
4
4
|
export let footerText: string;
|
|
5
5
|
export let title: string;
|
|
6
6
|
export { vendorName as vendor };
|
|
7
|
-
import
|
|
8
|
-
export {
|
|
7
|
+
import agent1 = fullname;
|
|
8
|
+
export { agent1 };
|
|
9
9
|
export { addressName as address };
|
|
10
10
|
export { suburbName as suburb };
|
|
11
11
|
export let alt: string;
|
|
@@ -13,7 +13,9 @@ export namespace cover_data {
|
|
|
13
13
|
export let id: string;
|
|
14
14
|
}
|
|
15
15
|
export namespace letter_data {
|
|
16
|
-
export
|
|
16
|
+
export let body: string;
|
|
17
|
+
export let closing: string;
|
|
18
|
+
export namespace agent1_1 {
|
|
17
19
|
let firstname: string;
|
|
18
20
|
let lastname: string;
|
|
19
21
|
let fullname: string;
|
|
@@ -24,6 +26,7 @@ export namespace letter_data {
|
|
|
24
26
|
let top5Image: string;
|
|
25
27
|
let top10Image: string;
|
|
26
28
|
}
|
|
29
|
+
export { agent1_1 as agent1 };
|
|
27
30
|
export namespace agent2 {
|
|
28
31
|
let firstname_1: string;
|
|
29
32
|
export { firstname_1 as firstname };
|
|
@@ -67,8 +70,6 @@ export namespace letter_data {
|
|
|
67
70
|
let title_1: string;
|
|
68
71
|
export { title_1 as title };
|
|
69
72
|
export { vendorName as vendor };
|
|
70
|
-
export let body: string;
|
|
71
|
-
export let closing: string;
|
|
72
73
|
let id_1: string;
|
|
73
74
|
export { id_1 as id };
|
|
74
75
|
}
|
package/dist/pagesV2/styles.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export namespace calendarStyle {
|
|
2
|
-
export { spacer };
|
|
3
2
|
export namespace footer {
|
|
4
3
|
let position: "absolute";
|
|
5
4
|
let left: number;
|
|
@@ -45,6 +44,7 @@ export namespace calendarStyle {
|
|
|
45
44
|
export let marginTop: string;
|
|
46
45
|
}
|
|
47
46
|
export { pageStyle as page };
|
|
47
|
+
export { spacer };
|
|
48
48
|
export namespace image {
|
|
49
49
|
let height_3: string;
|
|
50
50
|
export { height_3 as height };
|
|
@@ -72,10 +72,8 @@ export namespace coverStyle {
|
|
|
72
72
|
let fontWeight_3: string;
|
|
73
73
|
export { fontWeight_3 as fontWeight };
|
|
74
74
|
}
|
|
75
|
-
export
|
|
76
|
-
|
|
77
|
-
export { backgroundColor_1 as backgroundColor };
|
|
78
|
-
}
|
|
75
|
+
export { pageStyle as page };
|
|
76
|
+
export { spacer };
|
|
79
77
|
export namespace image_1 {
|
|
80
78
|
let height_4: string;
|
|
81
79
|
export { height_4 as height };
|
|
@@ -115,8 +113,6 @@ export namespace letterStyle {
|
|
|
115
113
|
export { agent_1 as agent };
|
|
116
114
|
export namespace agentName {
|
|
117
115
|
export { theme as color };
|
|
118
|
-
let fontSize_3: string;
|
|
119
|
-
export { fontSize_3 as fontSize };
|
|
120
116
|
let fontWeight_5: string;
|
|
121
117
|
export { fontWeight_5 as fontWeight };
|
|
122
118
|
}
|
|
@@ -129,26 +125,26 @@ export namespace letterStyle {
|
|
|
129
125
|
export { marginTop_7 as marginTop };
|
|
130
126
|
}
|
|
131
127
|
export namespace agentOfficeLicense {
|
|
132
|
-
let fontSize_4: string;
|
|
133
|
-
export { fontSize_4 as fontSize };
|
|
134
|
-
let fontWeight_6: string;
|
|
135
|
-
export { fontWeight_6 as fontWeight };
|
|
136
128
|
let marginTop_8: string;
|
|
137
129
|
export { marginTop_8 as marginTop };
|
|
130
|
+
let fontSize_3: string;
|
|
131
|
+
export { fontSize_3 as fontSize };
|
|
132
|
+
let lineHeight_2: string;
|
|
133
|
+
export { lineHeight_2 as lineHeight };
|
|
134
|
+
let fontWeight_6: string;
|
|
135
|
+
export { fontWeight_6 as fontWeight };
|
|
138
136
|
export let textTransform: "uppercase";
|
|
139
137
|
export let hyphens: string;
|
|
140
|
-
let lineHeight_2: number;
|
|
141
|
-
export { lineHeight_2 as lineHeight };
|
|
142
138
|
}
|
|
143
139
|
export namespace agentImage {
|
|
144
|
-
let
|
|
145
|
-
export {
|
|
140
|
+
let marginTop_9: string;
|
|
141
|
+
export { marginTop_9 as marginTop };
|
|
146
142
|
let width_5: string;
|
|
147
143
|
export { width_5 as width };
|
|
144
|
+
let height_5: string;
|
|
145
|
+
export { height_5 as height };
|
|
148
146
|
export let objectFit: string;
|
|
149
147
|
export let objectPosition: string;
|
|
150
|
-
let marginTop_9: string;
|
|
151
|
-
export { marginTop_9 as marginTop };
|
|
152
148
|
}
|
|
153
149
|
export namespace content {
|
|
154
150
|
let width_6: string;
|
|
@@ -160,8 +156,8 @@ export namespace letterStyle {
|
|
|
160
156
|
let width_7: string;
|
|
161
157
|
export { width_7 as width };
|
|
162
158
|
export { theme as color };
|
|
163
|
-
let
|
|
164
|
-
export {
|
|
159
|
+
let fontSize_4: string;
|
|
160
|
+
export { fontSize_4 as fontSize };
|
|
165
161
|
let fontWeight_7: string;
|
|
166
162
|
export { fontWeight_7 as fontWeight };
|
|
167
163
|
let fontStyle_2: "normal";
|
|
@@ -176,6 +172,7 @@ export namespace letterStyle {
|
|
|
176
172
|
[key: string]: import("@react-pdf/stylesheet").Style;
|
|
177
173
|
};
|
|
178
174
|
export { pageStyle as page };
|
|
175
|
+
export { spacer };
|
|
179
176
|
export namespace image_2 {
|
|
180
177
|
let height_6: string;
|
|
181
178
|
export { height_6 as height };
|
|
@@ -189,7 +186,7 @@ export namespace letterStyle {
|
|
|
189
186
|
}
|
|
190
187
|
export { container_2 as container };
|
|
191
188
|
}
|
|
192
|
-
declare const spacer: import('@react-pdf/renderer').Styles;
|
|
193
189
|
declare const theme: "teal";
|
|
194
190
|
declare const pageStyle: import('@react-pdf/renderer').Styles;
|
|
191
|
+
declare const spacer: import('@react-pdf/renderer').Styles;
|
|
195
192
|
export {};
|
|
@@ -75,7 +75,6 @@ export default _default;
|
|
|
75
75
|
export namespace Bayleys {
|
|
76
76
|
let args: {
|
|
77
77
|
style: {
|
|
78
|
-
spacer: import("@react-pdf/renderer").Styles;
|
|
79
78
|
footer: {
|
|
80
79
|
position: "absolute";
|
|
81
80
|
left: number;
|
|
@@ -115,6 +114,7 @@ export namespace Bayleys {
|
|
|
115
114
|
marginTop: string;
|
|
116
115
|
};
|
|
117
116
|
page: import("@react-pdf/renderer").Styles;
|
|
117
|
+
spacer: import("@react-pdf/renderer").Styles;
|
|
118
118
|
image: {
|
|
119
119
|
height: string;
|
|
120
120
|
minHeight: string;
|
|
@@ -156,9 +156,8 @@ export namespace Bayleys {
|
|
|
156
156
|
backgroundColor: string;
|
|
157
157
|
marginTop: string;
|
|
158
158
|
};
|
|
159
|
-
page:
|
|
160
|
-
|
|
161
|
-
};
|
|
159
|
+
page: import("@react-pdf/renderer").Styles;
|
|
160
|
+
spacer: import("@react-pdf/renderer").Styles;
|
|
162
161
|
image: {
|
|
163
162
|
height: string;
|
|
164
163
|
minHeight: string;
|
|
@@ -171,7 +170,7 @@ export namespace Bayleys {
|
|
|
171
170
|
footerText: string;
|
|
172
171
|
title: string;
|
|
173
172
|
vendor: string;
|
|
174
|
-
|
|
173
|
+
agent1: string;
|
|
175
174
|
address: string;
|
|
176
175
|
suburb: string;
|
|
177
176
|
alt: string;
|
|
@@ -161,7 +161,6 @@ export namespace Bayleys {
|
|
|
161
161
|
};
|
|
162
162
|
agentName: {
|
|
163
163
|
color: string;
|
|
164
|
-
fontSize: string;
|
|
165
164
|
fontWeight: string;
|
|
166
165
|
};
|
|
167
166
|
agentPhone: {
|
|
@@ -171,19 +170,19 @@ export namespace Bayleys {
|
|
|
171
170
|
marginTop: string;
|
|
172
171
|
};
|
|
173
172
|
agentOfficeLicense: {
|
|
173
|
+
marginTop: string;
|
|
174
174
|
fontSize: string;
|
|
175
|
+
lineHeight: string;
|
|
175
176
|
fontWeight: string;
|
|
176
|
-
marginTop: string;
|
|
177
177
|
textTransform: "uppercase";
|
|
178
178
|
hyphens: string;
|
|
179
|
-
lineHeight: number;
|
|
180
179
|
};
|
|
181
180
|
agentImage: {
|
|
182
|
-
|
|
181
|
+
marginTop: string;
|
|
183
182
|
width: string;
|
|
183
|
+
height: string;
|
|
184
184
|
objectFit: string;
|
|
185
185
|
objectPosition: string;
|
|
186
|
-
marginTop: string;
|
|
187
186
|
};
|
|
188
187
|
content: {
|
|
189
188
|
width: string;
|
|
@@ -218,6 +217,7 @@ export namespace Bayleys {
|
|
|
218
217
|
marginTop: string;
|
|
219
218
|
};
|
|
220
219
|
page: import("@react-pdf/renderer").Styles;
|
|
220
|
+
spacer: import("@react-pdf/renderer").Styles;
|
|
221
221
|
image: {
|
|
222
222
|
height: string;
|
|
223
223
|
minHeight: string;
|
|
@@ -228,6 +228,8 @@ export namespace Bayleys {
|
|
|
228
228
|
};
|
|
229
229
|
footerLogo: string;
|
|
230
230
|
footerText: string;
|
|
231
|
+
body: string;
|
|
232
|
+
closing: string;
|
|
231
233
|
agent1: {
|
|
232
234
|
firstname: string;
|
|
233
235
|
lastname: string;
|
|
@@ -263,8 +265,6 @@ export namespace Bayleys {
|
|
|
263
265
|
};
|
|
264
266
|
title: string;
|
|
265
267
|
vendor: string;
|
|
266
|
-
body: string;
|
|
267
|
-
closing: string;
|
|
268
268
|
alt: string;
|
|
269
269
|
src: string;
|
|
270
270
|
id: string;
|
package/package.json
CHANGED