@embedpdf/plugin-annotation 2.13.0 → 2.14.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.
Files changed (40) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.js +449 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/lib/handlers/callout-free-text.handler.d.ts +3 -0
  6. package/dist/lib/handlers/index.d.ts +1 -0
  7. package/dist/lib/handlers/types.d.ts +7 -1
  8. package/dist/lib/patching/patch-utils.d.ts +38 -1
  9. package/dist/lib/patching/patches/callout-freetext.patch.d.ts +3 -0
  10. package/dist/lib/patching/patches/index.d.ts +1 -0
  11. package/dist/lib/tools/default-tools.d.ts +35 -0
  12. package/dist/preact/index.cjs +1 -1
  13. package/dist/preact/index.cjs.map +1 -1
  14. package/dist/preact/index.js +395 -14
  15. package/dist/preact/index.js.map +1 -1
  16. package/dist/react/index.cjs +1 -1
  17. package/dist/react/index.cjs.map +1 -1
  18. package/dist/react/index.js +395 -14
  19. package/dist/react/index.js.map +1 -1
  20. package/dist/shared/components/annotations/callout-free-text-preview.d.ts +15 -0
  21. package/dist/shared/components/annotations/callout-free-text.d.ts +15 -0
  22. package/dist/shared-preact/components/annotations/callout-free-text-preview.d.ts +15 -0
  23. package/dist/shared-preact/components/annotations/callout-free-text.d.ts +15 -0
  24. package/dist/shared-react/components/annotations/callout-free-text-preview.d.ts +15 -0
  25. package/dist/shared-react/components/annotations/callout-free-text.d.ts +15 -0
  26. package/dist/svelte/components/annotations/CalloutFreeText.svelte.d.ts +15 -0
  27. package/dist/svelte/components/annotations/CalloutFreeTextPreview.svelte.d.ts +10 -0
  28. package/dist/svelte/components/renderers/CalloutFreeTextRenderer.svelte.d.ts +5 -0
  29. package/dist/svelte/index.cjs +1 -1
  30. package/dist/svelte/index.cjs.map +1 -1
  31. package/dist/svelte/index.js +497 -86
  32. package/dist/svelte/index.js.map +1 -1
  33. package/dist/vue/components/annotations/callout-free-text-preview.vue.d.ts +10 -0
  34. package/dist/vue/components/annotations/callout-free-text.vue.d.ts +25 -0
  35. package/dist/vue/components/renderers/callout-free-text-renderer.vue.d.ts +6 -0
  36. package/dist/vue/index.cjs +1 -1
  37. package/dist/vue/index.cjs.map +1 -1
  38. package/dist/vue/index.js +544 -170
  39. package/dist/vue/index.js.map +1 -1
  40. package/package.json +12 -12
@@ -0,0 +1,3 @@
1
+ import { PdfFreeTextAnnoObject } from '@embedpdf/models';
2
+ import { HandlerFactory } from './types';
3
+ export declare const calloutFreeTextHandlerFactory: HandlerFactory<PdfFreeTextAnnoObject>;
@@ -1,6 +1,7 @@
1
1
  export * from './ink.handler';
2
2
  export * from './text.handler';
3
3
  export * from './free-text.handler';
4
+ export * from './callout-free-text.handler';
4
5
  export * from './line.handler';
5
6
  export * from './polyline.handler';
6
7
  export * from './polygon.handler';
@@ -1,5 +1,5 @@
1
1
  import { PointerEventHandlersWithLifecycle } from '@embedpdf/plugin-interaction-manager';
2
- import { PdfAnnotationObject, PdfAnnotationSubtype, Rect, Rotation, Size, AnnotationCreateContext, PdfAnnotationBorderStyle, Position, LineEndings, PdfInkListObject, PdfStandardFont, PdfTextAlignment, PdfVerticalAlignment, PdfBlendMode } from '@embedpdf/models';
2
+ import { PdfAnnotationObject, PdfAnnotationSubtype, Rect, Rotation, Size, AnnotationCreateContext, PdfAnnotationBorderStyle, Position, LineEndings, PdfInkListObject, PdfStandardFont, PdfTextAlignment, PdfVerticalAlignment, PdfBlendMode, PdfAnnotationLineEnding } from '@embedpdf/models';
3
3
  import { FormattedSelection } from '@embedpdf/plugin-selection';
4
4
  import { AnnotationTool } from '../tools/types';
5
5
  export interface CirclePreviewData {
@@ -66,6 +66,12 @@ export interface FreeTextPreviewData {
66
66
  textAlign?: PdfTextAlignment;
67
67
  verticalAlign?: PdfVerticalAlignment;
68
68
  contents?: string;
69
+ calloutLine?: Position[];
70
+ textBox?: Rect;
71
+ strokeColor?: string;
72
+ strokeWidth?: number;
73
+ lineEnding?: PdfAnnotationLineEnding;
74
+ color?: string;
69
75
  }
70
76
  export interface LinkPreviewData {
71
77
  rect: Rect;
@@ -1,4 +1,4 @@
1
- import { Rect, Position, LineEndings, getRectCenter, rotatePointAround, rotateVertices, calculateRotatedRectAABB, calculateRotatedRectAABBAroundPoint } from '@embedpdf/models';
1
+ import { Rect, Position, LineEndings, PdfAnnotationLineEnding, PdfRectDifferences, PdfFreeTextAnnoObject, getRectCenter, rotatePointAround, rotateVertices, calculateRotatedRectAABB, calculateRotatedRectAABBAroundPoint } from '@embedpdf/models';
2
2
  export { rotatePointAround as rotatePointAroundCenter, rotateVertices, getRectCenter, calculateRotatedRectAABB, calculateRotatedRectAABBAroundPoint, };
3
3
  /**
4
4
  * Calculate the axis-aligned bounding box for rotated vertices.
@@ -58,3 +58,40 @@ export declare function compensateRotatedVertexEdit(original: {
58
58
  unrotatedRect?: Rect;
59
59
  rotation?: number;
60
60
  }, vertices: Position[], tightRect: Rect): Position[];
61
+ /**
62
+ * Derive the text box rect from the annotation's overall rect and RD inset.
63
+ */
64
+ export declare function computeTextBoxFromRD(rect: Rect, rd: PdfRectDifferences | undefined): Rect;
65
+ /**
66
+ * Compute the RD inset from the overall rect to the text box.
67
+ */
68
+ export declare function computeRDFromTextBox(overallRect: Rect, textBox: Rect): PdfRectDifferences;
69
+ /**
70
+ * Auto-compute the callout connection point on the text box edge.
71
+ * Uses the knee's position relative to the text box center, scaled by aspect ratio,
72
+ * to choose the nearest edge midpoint (top, right, bottom, left).
73
+ */
74
+ export declare function computeCalloutConnectionPoint(knee: Position, textBox: Rect): Position;
75
+ /**
76
+ * Compute the overall bounding rect for a callout FreeText, encompassing
77
+ * the text box, callout line, and line ending geometry.
78
+ *
79
+ * The text box border grows inward (stroke outer edge = textBox boundary),
80
+ * so no outward padding is added for the text box. The callout line and
81
+ * arrow stroke extend outward and miter joins at the knee can protrude
82
+ * further, so they get strokeWidth padding (half for stroke + half for
83
+ * miter/join clearance).
84
+ */
85
+ export declare function computeCalloutOverallRect(textBox: Rect, calloutLine: Position[], lineEnding: PdfAnnotationLineEnding | undefined, strokeWidth: number): Rect;
86
+ export declare const calloutVertexConfig: {
87
+ extractVertices: (a: PdfFreeTextAnnoObject) => Position[];
88
+ transformAnnotation: (a: PdfFreeTextAnnoObject, vertices: Position[]) => {
89
+ calloutLine?: undefined;
90
+ rect?: undefined;
91
+ rectangleDifferences?: undefined;
92
+ } | {
93
+ calloutLine: Position[];
94
+ rect: Rect;
95
+ rectangleDifferences: PdfRectDifferences;
96
+ };
97
+ };
@@ -0,0 +1,3 @@
1
+ import { PdfFreeTextAnnoObject } from '@embedpdf/models';
2
+ import { PatchFunction } from '../patch-registry';
3
+ export declare const patchCalloutFreeText: PatchFunction<PdfFreeTextAnnoObject>;
@@ -5,4 +5,5 @@ export * from './polygon.patch';
5
5
  export * from './circle.patch';
6
6
  export * from './square.patch';
7
7
  export * from './freetext.patch';
8
+ export * from './callout-freetext.patch';
8
9
  export * from './stamp.patch';
@@ -431,6 +431,41 @@ export declare const defaultTools: ({
431
431
  };
432
432
  transform: import('..').PatchFunction<import('@embedpdf/models').PdfFreeTextAnnoObject>;
433
433
  pointerHandler: import('..').HandlerFactory<import('@embedpdf/models').PdfFreeTextAnnoObject, string>;
434
+ } | {
435
+ id: "freeTextCallout";
436
+ name: string;
437
+ labelKey: string;
438
+ categories: string[];
439
+ matchScore: (a: import('@embedpdf/models').PdfAnnotationObject) => 0 | 10;
440
+ interaction: {
441
+ exclusive: false;
442
+ cursor: string;
443
+ isDraggable: true;
444
+ isResizable: false;
445
+ isRotatable: false;
446
+ };
447
+ defaults: {
448
+ type: PdfAnnotationSubtype.FREETEXT;
449
+ intent: string;
450
+ contents: string;
451
+ fontSize: number;
452
+ fontColor: string;
453
+ fontFamily: PdfStandardFont.Helvetica;
454
+ textAlign: PdfTextAlignment.Left;
455
+ verticalAlign: PdfVerticalAlignment.Top;
456
+ color: string;
457
+ opacity: number;
458
+ lineEnding: PdfAnnotationLineEnding.OpenArrow;
459
+ strokeColor: string;
460
+ strokeWidth: number;
461
+ };
462
+ behavior: {
463
+ insertUpright: true;
464
+ editAfterCreate: true;
465
+ selectAfterCreate: true;
466
+ };
467
+ transform: import('..').PatchFunction<import('@embedpdf/models').PdfFreeTextAnnoObject>;
468
+ pointerHandler: import('..').HandlerFactory<import('@embedpdf/models').PdfFreeTextAnnoObject, string>;
434
469
  } | {
435
470
  id: "stamp";
436
471
  name: string;
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@embedpdf/core"),t=require("@embedpdf/plugin-annotation"),n=require("preact/jsx-runtime"),o=require("preact"),i=require("preact/hooks"),r=require("preact/compat"),s=require("@embedpdf/core/preact"),a=require("@embedpdf/models"),l=require("@embedpdf/plugin-interaction-manager/preact"),c=require("@embedpdf/plugin-selection/preact"),d=require("@embedpdf/utils/preact"),u=require("@embedpdf/utils"),p={},h=o.createContext(null),g=o.createContext([]);function v({children:e}){const[t,o]=i.useState([]),r=i.useCallback(e=>(o(t=>{const n=new Set(e.map(e=>e.id));return[...t.filter(e=>!n.has(e.id)),...e]}),()=>o(t=>t.filter(t=>!e.some(e=>e.id===t.id)))),[]);return n.jsx(h.Provider,{value:r,children:n.jsx(g.Provider,{value:t,children:e})})}function f(){return i.useContext(g)}const y=()=>s.usePlugin(t.AnnotationPlugin.id),x=()=>s.useCapability(t.AnnotationPlugin.id);let b;function m(){return void 0===b&&(b=function(){try{const e=navigator;return/iPad|iPhone|iPod/.test(navigator.userAgent)||"MacIntel"===navigator.platform&&(null==e?void 0:e.maxTouchPoints)>1}catch{return!1}}()),b}function k(e,t){const n=m();return i.useMemo(()=>{const o=n&&t&&e>0&&e<16,i=o?e/16:1;return{needsComp:o,adjustedFontPx:o?16:e,scaleComp:i,wrapperStyle:o?{width:100/i+"%",height:100/i+"%",transform:`scale(${i})`,transformOrigin:"top left"}:void 0}},[n,t,e])}function j({appearance:e,style:t}){const[o,r]=i.useState(null),s=i.useRef(null);i.useEffect(()=>{const t=URL.createObjectURL(e.data);return r(t),s.current=t,()=>{s.current&&(URL.revokeObjectURL(s.current),s.current=null)}},[e.data]);return o?n.jsx("img",{src:o,onLoad:()=>{s.current&&(URL.revokeObjectURL(s.current),s.current=null)},style:{position:"absolute",width:"100%",height:"100%",display:"block",pointerEvents:"none",userSelect:"none",...t}}):null}function S({scale:e,documentId:t,pageIndex:o,rotation:l,pageWidth:c,pageHeight:p,trackedAnnotation:h,children:g,isSelected:v,isEditing:f=!1,isMultiSelected:b=!1,isDraggable:m,isResizable:k,isRotatable:S=!0,lockAspectRatio:w=!1,style:C={},blendMode:A,vertexConfig:P,selectionMenu:I,outlineOffset:R=1,onDoubleClick:z,onSelect:D,appearance:E,zIndex:M=1,resizeUI:L,vertexUI:$,rotationUI:O,selectionOutlineColor:F,selectionOutline:B,customAnnotationRenderer:W,groupSelectionMenu:T,groupSelectionOutline:U,annotationRenderers:H,...N}){var G,q,Y;const[K,V]=i.useState(h.object),[X,Z]=i.useState(null),[Q,_]=i.useState(null),[J,ee]=i.useState(!1),[te,ne]=i.useState(!1),{provides:oe}=x(),{plugin:ie}=y(),{canModifyAnnotations:re}=s.useDocumentPermissions(t),se=i.useRef(null),ae=re&&m&&!b,le=re&&k&&!b,ce=re&&S&&!b,de=i.useMemo(()=>oe?oe.forDocument(t):null,[oe,t]),ue=K?{...h.object,...K}:h.object,pe=h.object.flags??[],he=pe.includes("noZoom"),ge=pe.includes("noRotate"),ve=he?1:e,fe=ge?0:l,ye=(null==L?void 0:L.color)??"#007ACC",xe=(null==$?void 0:$.color)??"#007ACC",be=(null==O?void 0:O.color)??"white",me=(null==O?void 0:O.connectorColor)??"#007ACC",ke=(null==L?void 0:L.size)??12,je=(null==$?void 0:$.size)??12,Se=(null==O?void 0:O.size)??32,we=null==O?void 0:O.margin,Ce=(null==O?void 0:O.iconColor)??"#007ACC",Ae=(null==O?void 0:O.showConnector)??!1,Pe=(null==(G=null==O?void 0:O.border)?void 0:G.color)??"#007ACC",Ie=(null==(q=null==O?void 0:O.border)?void 0:q.width)??1,Re=(null==(Y=null==O?void 0:O.border)?void 0:Y.style)??"solid",ze=(null==B?void 0:B.color)??F??"#007ACC",De=(null==B?void 0:B.style)??"solid",Ee=(null==B?void 0:B.width)??1,Me=(null==B?void 0:B.offset)??R??1,Le=X??ue.rotation??0,$e=X??ue.rotation??0,Oe=Number.isFinite($e)?Math.round(10*$e)/10:0,Fe=null!==X,Be=i.useRef(null),We=i.useCallback(e=>{var n;if(!(null==(n=e.transformData)?void 0:n.type)||b||!ie)return;const{type:i,changes:r,metadata:s}=e.transformData,a=h.object.id,l={width:c,height:p};if("start"===e.state&&(Be.current=h.object.unrotatedRect??h.object.rect,se.current=h.object,"resize"!==i&&"vertex-edit"!==i||ne(!0),"move"===i?ie.startDrag(t,{annotationIds:[a],pageSize:l}):"resize"===i&&ie.startResize(t,{annotationIds:[a],pageSize:l,resizeHandle:(null==s?void 0:s.handle)??"se"})),r.rect&&Be.current)if("move"===i){const e={x:r.rect.origin.x-Be.current.origin.x,y:r.rect.origin.y-Be.current.origin.y};ie.updateDrag(t,e)}else"resize"===i&&ie.updateResize(t,r.rect);if("vertex-edit"===i&&r.vertices&&P){const t=se.current??h.object,n=P.transformAnnotation(t,r.vertices),l=null==oe?void 0:oe.transformAnnotation(t,{type:i,changes:n,metadata:s});l&&(V(e=>({...e,...l})),"end"===e.state&&(null==de||de.updateAnnotation(o,a,l)))}if("rotate"===i){const n=(null==s?void 0:s.rotationAngle)??Le,o=null==s?void 0:s.cursorPosition;return o&&_({x:o.clientX,y:o.clientY}),void("start"===e.state?(Z(n),ie.startRotation(t,{annotationIds:[a],cursorAngle:n,rotationCenter:null==s?void 0:s.rotationCenter})):"move"===e.state?(Z(n),ie.updateRotation(t,n,null==s?void 0:s.rotationDelta)):"end"===e.state&&(Z(null),_(null),ie.commitRotation(t)))}"end"===e.state&&(Be.current=null,se.current=null,ne(!1),"move"===i?ie.commitDrag(t):"resize"===i&&ie.commitResize(t))},[ie,t,h.object,c,p,o,b,P,oe,de,Le]),Te=ue.unrotatedRect,Ue=Te??ue.rect,He=Te&&0!==Le?a.inferRotationCenterFromRects(Ue,ue.rect,Le):void 0,Ne=Ue,{dragProps:Ge,vertices:qe,resize:Ye,rotation:Ke}=d.useInteractionHandles({controller:{element:Ne,vertices:null==P?void 0:P.extractVertices(ue),constraints:{minWidth:10,minHeight:10,boundingBox:{width:c,height:p}},maintainAspectRatio:w,pageRotation:l,annotationRotation:Le,rotationCenter:He,rotationElement:ue.rect,scale:e,enabled:v&&!b,onUpdate:We},resizeUI:{handleSize:ke,spacing:Me,offsetMode:"outside",includeSides:!w,zIndex:M+1},vertexUI:{vertexSize:je,zIndex:M+2},rotationUI:{handleSize:Se,margin:we,zIndex:M+3,showConnector:Ae},includeVertices:!!P,includeRotation:ce,currentRotation:Le}),Ve=i.useMemo(()=>{if(re&&z)return z},[re,z]),Xe=d.useDoublePressProps(Ve);i.useEffect(()=>{V(h.object)},[h.object]),i.useEffect(()=>{if(!ie)return;const e=h.object.id,n=n=>{var o;if(n.documentId!==t)return;"end"!==n.type&&"cancel"!==n.type||Z(null);const i=null==(o=n.previewPatches)?void 0:o[e];"update"===n.type&&i?V(e=>({...e,...i})):"cancel"===n.type&&V(h.object)},o=[ie.onDragChange(n),ie.onResizeChange(n),ie.onRotateChange(n)];return()=>o.forEach(e=>e())},[ie,t,h.object]);const Ze=v&&!b,Qe=ue.rect.size.width*ve,_e=ue.rect.size.height*ve,Je=Ue.size.width*ve,et=Ue.size.height*ve,tt=Boolean(Te)&&0!==Le,nt=tt?(Ue.origin.x-ue.rect.origin.x)*ve:(Qe-Je)/2,ot=tt?(Ue.origin.y-ue.rect.origin.y)*ve:(_e-et)/2,it=tt&&He?`${(He.x-Ue.origin.x)*ve}px ${(He.y-Ue.origin.y)*ve}px`:"center center",rt=He?(He.x-ue.rect.origin.x)*ve:Qe/2,st=He?(He.y-ue.rect.origin.y)*ve:_e/2,at=Math.max(300,Math.max(Qe,_e)+80),lt=ge?u.getCounterRotation({origin:{x:0,y:0},size:{width:Qe,height:_e}},l):null,ct=i.useMemo(()=>Te?{...ue,rect:Te}:ue,[ue,Te]),dt=!(!(null==E?void 0:E.normal)||te||f||h.dictMode),ut={position:"absolute",left:ue.rect.origin.x*e,top:ue.rect.origin.y*e,width:lt?lt.width:Qe,height:lt?lt.height:_e,pointerEvents:"none",zIndex:M,...lt&&{transform:lt.matrix,transformOrigin:"0 0"}},pt={position:"absolute",left:nt,top:ot,width:Je,height:et,transform:0!==Le?`rotate(${Le}deg)`:void 0,transformOrigin:it};return n.jsxs("div",{"data-no-interaction":!0,children:[n.jsx("div",{style:{...ut,...A&&{mixBlendMode:A},...C},children:n.jsxs("div",{style:{...pt,pointerEvents:f?"auto":"none"},children:[(()=>{const t="function"==typeof g?g(ct,{appearanceActive:dt}):g;return(null==W?void 0:W({annotation:ct,children:t,isSelected:v,scale:e,rotation:l,pageWidth:c,pageHeight:p,pageIndex:o,onSelect:D}))??t})(),(null==E?void 0:E.normal)&&n.jsx(j,{appearance:E.normal,style:{display:dt?"block":"none"}})]})}),n.jsxs("div",{style:ut,...N,children:[Fe&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:rt-at/2,top:st,width:at,height:1,backgroundColor:me,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:rt,top:st-at/2,width:1,height:at,backgroundColor:me,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:rt-at/2,top:st,width:at,height:1,transformOrigin:"center center",transform:`rotate(${Le}deg)`,backgroundColor:me,opacity:.8,pointerEvents:"none"}})]}),v&&ce&&Ke&&((null==O?void 0:O.component)?n.jsx("div",{onPointerEnter:()=>ee(!0),onPointerLeave:()=>{ee(!1),_(null)},onPointerMove:e=>{Fe||_({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:O.component({...Ke.handle,backgroundColor:be,iconColor:Ce,connectorStyle:{...Ke.connector.style,backgroundColor:me,opacity:Fe?0:1},showConnector:Ae,opacity:Fe?0:1,border:{color:Pe,width:Ie,style:Re}})}):n.jsxs("div",{onPointerEnter:()=>ee(!0),onPointerLeave:()=>{ee(!1),_(null)},onPointerMove:e=>{Fe||_({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[Ae&&n.jsx("div",{style:{...Ke.connector.style,backgroundColor:me,opacity:Fe?0:1}}),n.jsx("div",{...Ke.handle,style:{...Ke.handle.style,backgroundColor:be,border:`${Ie}px ${Re} ${Pe}`,boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",opacity:Fe?0:1},children:n.jsxs("svg",{width:Math.round(.6*Se),height:Math.round(.6*Se),viewBox:"0 0 24 24",fill:"none",stroke:Ce,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n.jsx("path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}),n.jsx("path",{d:"M21 3v5h-5"})]})})]})),n.jsxs("div",{...ae&&v?Ge:{},...Xe,style:{...pt,outline:Ze?`${Ee}px ${De} ${ze}`:"none",outlineOffset:Ze?`${Me}px`:"0px",pointerEvents:!v||b||f?"none":"auto",touchAction:"none",cursor:v&&ae?"move":"default"},children:[v&&le&&!Fe&&Ye.map(({key:e,...t})=>(null==L?void 0:L.component)?L.component({key:e,...t,backgroundColor:ye}):n.jsx("div",{...t,style:{...t.style,backgroundColor:ye}},e)),v&&re&&!b&&!Fe&&qe.map(({key:e,...t})=>(null==$?void 0:$.component)?$.component({key:e,...t,backgroundColor:xe}):n.jsx("div",{...t,style:{...t.style,backgroundColor:xe}},e))]})]}),I&&!b&&!Fe&&n.jsx(d.CounterRotate,{rect:{origin:{x:ue.rect.origin.x*e,y:ue.rect.origin.y*e},size:{width:ue.rect.size.width*ve,height:ue.rect.size.height*ve}},rotation:l,children:e=>{const t=((Le+90*fe)%360+360)%360;return I({...e,context:{type:"annotation",annotation:h,pageIndex:o},selected:v,placement:{suggestTop:ce&&t>90&&t<270}})}}),(Fe||J)&&Q&&r.createPortal(n.jsxs("div",{style:{position:"fixed",left:Q.x+16,top:Q.y-16,background:"rgba(0,0,0,0.8)",color:"#fff",padding:"4px 8px",borderRadius:4,fontSize:12,fontFamily:"monospace",pointerEvents:"none",zIndex:1e4,whiteSpace:"nowrap"},children:[Oe.toFixed(0),"°"]}),document.body)]})}function w(e,t,n,o,i){switch(i){case 1:return{x:t,y:o-e};case 2:return{x:n-e,y:o-t};case 3:return{x:n-t,y:e};default:return{x:e,y:t}}}function C(e,t,n){const o=e.object.flags??[],i=o.includes("noZoom"),r=o.includes("noRotate"),s=e.object.rect.origin.x*t,a=e.object.rect.origin.y*t,l=e.object.rect.size.width*(i?1:t),c=e.object.rect.size.height*(i?1:t);if(!r||0===n)return{left:s,top:a,right:s+l,bottom:a+c};const d=[w(0,0,l,c,n),w(l,0,l,c,n),w(0,c,l,c,n),w(l,c,l,c,n)];let u=1/0,p=1/0,h=-1/0,g=-1/0;for(const v of d)v.x<u&&(u=v.x),v.y<p&&(p=v.y),v.x>h&&(h=v.x),v.y>g&&(g=v.y);return{left:s+u,top:a+p,right:s+h,bottom:a+g}}function A({documentId:e,pageIndex:t,scale:o,rotation:l,pageWidth:c,pageHeight:u,selectedAnnotations:p,isDraggable:h,isResizable:g,isRotatable:v=!0,lockAspectRatio:f=!1,resizeUI:x,rotationUI:b,selectionOutlineColor:m,outlineOffset:k,selectionOutline:j,zIndex:S=2,groupSelectionMenu:w}){var A,P,I;const{plugin:R}=y(),{canModifyAnnotations:z}=s.useDocumentPermissions(e),D=i.useRef(null),E=i.useRef(!1),M=i.useRef(!1),[L,$]=i.useState(null),[O,F]=i.useState(null),[B,W]=i.useState(!1),T=z&&h,U=z&&g,H=z&&v,N=i.useMemo(()=>{const e=p.map(e=>e.object.rect);return a.boundingRectOrEmpty(e)},[p]),[G,q]=i.useState(N);i.useEffect(()=>{E.current||M.current||q(N)},[N]),i.useEffect(()=>{if(!R)return;return R.onRotateChange(t=>{t.documentId===e&&("end"!==t.type&&"cancel"!==t.type||$(null))})},[R,e]);const Y=i.useCallback(t=>{var n,o,i,r,s,a;if(!(null==(n=t.transformData)?void 0:n.type))return;if(!R)return;const l=t.transformData.type,d="move"===l,h="resize"===l;if(d&&!T)return;if("start"===t.state&&(D.current=N,d?(E.current=!0,R.startDrag(e,{annotationIds:p.map(e=>e.object.id),pageSize:{width:c,height:u}})):h&&(M.current=!0,R.startResize(e,{annotationIds:p.map(e=>e.object.id),pageSize:{width:c,height:u},resizeHandle:(null==(o=t.transformData.metadata)?void 0:o.handle)??"se"}))),"rotate"===l){if(!v)return;const n=p.map(e=>e.object.id),o=(null==(i=t.transformData.metadata)?void 0:i.rotationAngle)??0,l=null==(r=t.transformData.metadata)?void 0:r.cursorPosition;return l&&F({x:l.clientX,y:l.clientY}),void("start"===t.state?($(o),R.startRotation(e,{annotationIds:n,cursorAngle:o,rotationCenter:null==(s=t.transformData.metadata)?void 0:s.rotationCenter})):"move"===t.state?($(o),R.updateRotation(e,o,null==(a=t.transformData.metadata)?void 0:a.rotationDelta)):"end"===t.state&&($(null),F(null),R.commitRotation(e)))}const g=D.current??N;if(d&&t.transformData.changes.rect){const n=t.transformData.changes.rect,o={x:n.origin.x-g.origin.x,y:n.origin.y-g.origin.y},i=R.updateDrag(e,o);q({...g,origin:{x:g.origin.x+i.x,y:g.origin.y+i.y}})}else if(h&&t.transformData.changes.rect){const n=t.transformData.changes.rect;R.updateResize(e,n),q(n)}"end"===t.state&&(D.current=null,d&&E.current?(E.current=!1,R.commitDrag(e)):h&&M.current&&(M.current=!1,R.commitResize(e)))},[R,e,c,u,N,T,p,v]),K=L??0,V=null!==L,X=Number.isFinite(K)?Math.round(10*K)/10:0,Z=(null==x?void 0:x.color)??"#007ACC",Q=(null==x?void 0:x.size)??12,_=(null==b?void 0:b.color)??"white",J=(null==b?void 0:b.connectorColor)??"#007ACC",ee=(null==b?void 0:b.size)??32,te=null==b?void 0:b.margin,ne=(null==b?void 0:b.iconColor)??"#007ACC",oe=(null==b?void 0:b.showConnector)??!1,ie=(null==(A=null==b?void 0:b.border)?void 0:A.color)??"#007ACC",re=(null==(P=null==b?void 0:b.border)?void 0:P.width)??1,se=(null==(I=null==b?void 0:b.border)?void 0:I.style)??"solid",ae=(null==j?void 0:j.color)??m??"#007ACC",le=(null==j?void 0:j.style)??"dashed",ce=(null==j?void 0:j.width)??2,de=(null==j?void 0:j.offset)??k??2,{dragProps:ue,resize:pe,rotation:he}=d.useInteractionHandles({controller:{element:G,constraints:{minWidth:20,minHeight:20,boundingBox:{width:c,height:u}},maintainAspectRatio:f,pageRotation:l,scale:o,enabled:!0,onUpdate:Y},resizeUI:{handleSize:Q,spacing:de,offsetMode:"outside",includeSides:!f,zIndex:S+1},vertexUI:{vertexSize:0,zIndex:S},rotationUI:{handleSize:ee,margin:te,zIndex:S+2,showConnector:oe},includeVertices:!1,includeRotation:H,currentRotation:L??0});if(p.length<2)return null;let ge=1/0,ve=1/0,fe=-1/0,ye=-1/0;for(const n of p){const e=C(n,o,l);ge=Math.min(ge,e.left),ve=Math.min(ve,e.top),fe=Math.max(fe,e.right),ye=Math.max(ye,e.bottom)}const xe=ge-N.origin.x*o,be=ve-N.origin.y*o,me=fe-(N.origin.x+N.size.width)*o,ke=ye-(N.origin.y+N.size.height)*o,je=G.origin.x*o+xe,Se=G.origin.y*o+be,we=G.size.width*o+(me-xe),Ce=G.size.height*o+(ke-be),Ae=we/2,Pe=Ce/2,Ie=Math.max(300,Math.max(we,Ce)+80);return n.jsxs("div",{"data-group-selection-box":!0,"data-no-interaction":!0,children:[n.jsxs("div",{style:{position:"absolute",left:je,top:Se,width:we,height:Ce,pointerEvents:"none",zIndex:S},children:[V&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:Ae-Ie/2,top:Pe,width:Ie,height:1,backgroundColor:Z,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:Ae,top:Pe-Ie/2,width:1,height:Ie,backgroundColor:Z,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:Ae-Ie/2,top:Pe,width:Ie,height:1,transformOrigin:"center center",transform:`rotate(${K}deg)`,backgroundColor:Z,opacity:.8,pointerEvents:"none"}})]}),H&&he&&((null==b?void 0:b.component)?n.jsx("div",{onPointerEnter:()=>W(!0),onPointerLeave:()=>{W(!1),F(null)},onPointerMove:e=>{V||F({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:b.component({...he.handle,backgroundColor:_,iconColor:ne,connectorStyle:{...he.connector.style,backgroundColor:J,opacity:V?0:1},showConnector:oe,opacity:V?0:1,border:{color:ie,width:re,style:se}})}):n.jsxs("div",{onPointerEnter:()=>W(!0),onPointerLeave:()=>{W(!1),F(null)},onPointerMove:e=>{V||F({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[oe&&n.jsx("div",{style:{...he.connector.style,backgroundColor:J,opacity:V?0:1}}),n.jsx("div",{...he.handle,style:{...he.handle.style,backgroundColor:_,border:`${re}px ${se} ${ie}`,boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",opacity:V?0:1},children:n.jsxs("svg",{width:Math.round(.6*ee),height:Math.round(.6*ee),viewBox:"0 0 24 24",fill:"none",stroke:ne,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n.jsx("path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}),n.jsx("path",{d:"M21 3v5h-5"})]})})]})),n.jsx("div",{...T?ue:{onPointerDown:e=>e.stopPropagation()},style:{position:"absolute",left:0,top:0,width:we,height:Ce,outline:V?"none":`${ce}px ${le} ${ae}`,outlineOffset:de-1,cursor:T?"move":"default",touchAction:"none",pointerEvents:"auto"},children:U&&!V&&pe.map(({key:e,...t})=>(null==x?void 0:x.component)?x.component({key:e,...t,backgroundColor:Z}):n.jsx("div",{...t,style:{...t.style,backgroundColor:Z}},e))})]}),(V||B)&&O&&r.createPortal(n.jsxs("div",{style:{position:"fixed",left:O.x+16,top:O.y-16,background:"rgba(0,0,0,0.8)",color:"#fff",padding:"4px 8px",borderRadius:4,fontSize:12,fontFamily:"monospace",pointerEvents:"none",zIndex:1e4,whiteSpace:"nowrap"},children:[X.toFixed(0),"°"]}),document.body),w&&!V&&n.jsx(d.CounterRotate,{rect:{origin:{x:je,y:Se},size:{width:we,height:Ce}},rotation:l,children:e=>{const n=((K+90*l)%360+360)%360;return w({...e,context:{type:"group",annotations:p,pageIndex:t},selected:!0,placement:{suggestTop:H&&n>90&&n<270}})}})]})}function P(e){return{id:e.id,matches:e.matches?t=>e.matches(t):()=>!1,render:e.render?t=>e.render(t):()=>null,matchesPreview:e.matchesPreview,renderPreview:e.renderPreview?t=>e.renderPreview(t):void 0,previewContainerStyle:e.previewContainerStyle?t=>e.previewContainerStyle(t):void 0,vertexConfig:e.vertexConfig,zIndex:e.zIndex,defaultBlendMode:e.defaultBlendMode,containerStyle:e.containerStyle,interactionDefaults:e.interactionDefaults,useAppearanceStream:e.useAppearanceStream,isDraggable:e.isDraggable,onDoubleClick:e.onDoubleClick,selectOverride:e.selectOverride,hideSelectionMenu:e.hideSelectionMenu,hiddenWhenLocked:e.hiddenWhenLocked,renderLocked:e.renderLocked?t=>e.renderLocked(t):void 0}}function I({isSelected:e,strokeColor:t,opacity:o=1,strokeWidth:r,inkList:s,rect:a,scale:l,onClick:c,appearanceActive:d=!1}){const u=t??"#000000",p=i.useMemo(()=>s.map(({points:e})=>{let t="";return e.forEach(({x:e,y:n},o)=>{const i=e-a.origin.x,r=n-a.origin.y;t+=(0===o?"M":"L")+i+" "+r+" "}),t.trim()}),[s,a]),h=a.size.width*l,g=a.size.height*l,v=Math.max(r,20/l);return n.jsxs("svg",{style:{position:"absolute",width:h,height:g,pointerEvents:"none",zIndex:2,overflow:"visible"},width:h,height:g,viewBox:`0 0 ${a.size.width} ${a.size.height}`,children:[p.map((t,o)=>n.jsx("path",{d:t,fill:"none",stroke:"transparent",strokeWidth:v,onPointerDown:c,style:{cursor:e?"move":c?"pointer":"default",pointerEvents:c?e?"none":"visibleStroke":"none",strokeLinecap:"round",strokeLinejoin:"round"}},`hit-${o}`)),!d&&p.map((e,t)=>n.jsx("path",{d:e,fill:"none",opacity:o,style:{pointerEvents:"none",stroke:u,strokeWidth:r,strokeLinecap:"round",strokeLinejoin:"round"}},`vis-${t}`))]})}function R({isSelected:e,color:o="#000000",strokeColor:r,opacity:s=1,strokeWidth:l,strokeStyle:c=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:d,rect:u,scale:p,onClick:h,appearanceActive:g=!1,cloudyBorderIntensity:v,rectangleDifferences:f}){const y=(v??0)>0,{width:x,height:b,x:m,y:k}=i.useMemo(()=>{const e=u.size.width,t=u.size.height;return{width:Math.max(e-l,0),height:Math.max(t-l,0),x:l/2,y:l/2}},[u,l]),j=i.useMemo(()=>y?t.generateCloudyRectanglePath({x:0,y:0,width:u.size.width,height:u.size.height},f,v,l):null,[y,u,f,v,l]),S=u.size.width*p,w=u.size.height*p,C=Math.max(l,20/p);return n.jsxs("svg",{style:{position:"absolute",width:S,height:w,pointerEvents:"none",zIndex:2},width:S,height:w,viewBox:`0 0 ${u.size.width} ${u.size.height}`,overflow:"visible",children:[y&&j?n.jsx("path",{d:j.path,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:h,style:{cursor:e?"move":h?"pointer":"default",pointerEvents:h?e?"none":"transparent"===o?"visibleStroke":"visible":"none"}}):n.jsx("rect",{x:m,y:k,width:x,height:b,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:h,style:{cursor:e?"move":h?"pointer":"default",pointerEvents:h?e?"none":"transparent"===o?"visibleStroke":"visible":"none"}}),!g&&(y&&j?n.jsx("path",{d:j.path,fill:o,opacity:s,style:{pointerEvents:"none",stroke:r??o,strokeWidth:l,strokeLinejoin:"round"}}):n.jsx("rect",{x:m,y:k,width:x,height:b,fill:o,opacity:s,style:{pointerEvents:"none",stroke:r??o,strokeWidth:l,...c===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==d?void 0:d.join(",")}}}))]})}function z({color:e="#000000",strokeColor:o,opacity:r=1,strokeWidth:s,strokeStyle:l=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:c,rect:d,scale:u,onClick:p,isSelected:h,appearanceActive:g=!1,cloudyBorderIntensity:v,rectangleDifferences:f}){const y=(v??0)>0,{width:x,height:b,cx:m,cy:k,rx:j,ry:S}=i.useMemo(()=>{const e=d.size.width,t=d.size.height,n=Math.max(e-s,0),o=Math.max(t-s,0);return{width:e,height:t,cx:s/2+n/2,cy:s/2+o/2,rx:n/2,ry:o/2}},[d,s]),w=i.useMemo(()=>y?t.generateCloudyEllipsePath({x:0,y:0,width:d.size.width,height:d.size.height},f,v,s):null,[y,d,f,v,s]),C=x*u,A=b*u,P=Math.max(s,20/u);return n.jsxs("svg",{style:{position:"absolute",width:C,height:A,pointerEvents:"none",zIndex:2},width:C,height:A,viewBox:`0 0 ${x} ${b}`,overflow:"visible",children:[y&&w?n.jsx("path",{d:w.path,fill:"transparent",stroke:"transparent",strokeWidth:P,onPointerDown:p,style:{cursor:h?"move":p?"pointer":"default",pointerEvents:p?h?"none":"transparent"===e?"visibleStroke":"visible":"none"}}):n.jsx("ellipse",{cx:m,cy:k,rx:j,ry:S,fill:"transparent",stroke:"transparent",strokeWidth:P,onPointerDown:p,style:{cursor:h?"move":p?"pointer":"default",pointerEvents:p?h?"none":"transparent"===e?"visibleStroke":"visible":"none"}}),!g&&(y&&w?n.jsx("path",{d:w.path,fill:e,opacity:r,style:{pointerEvents:"none",stroke:o??e,strokeWidth:s,strokeLinejoin:"round"}}):n.jsx("ellipse",{cx:m,cy:k,rx:j,ry:S,fill:e,opacity:r,style:{pointerEvents:"none",stroke:o??e,strokeWidth:s,...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}))]})}function D({color:e="transparent",opacity:o=1,strokeWidth:r,strokeColor:s="#000000",strokeStyle:l=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:c,rect:d,linePoints:u,lineEndings:p,scale:h,onClick:g,isSelected:v,appearanceActive:f=!1}){const{x1:y,y1:x,x2:b,y2:m}=i.useMemo(()=>({x1:u.start.x-d.origin.x,y1:u.start.y-d.origin.y,x2:u.end.x-d.origin.x,y2:u.end.y-d.origin.y}),[u,d]),k=i.useMemo(()=>{const e=Math.atan2(m-x,b-y);return{start:t.patching.createEnding(null==p?void 0:p.start,r,e+Math.PI,y,x),end:t.patching.createEnding(null==p?void 0:p.end,r,e,b,m)}},[p,r,y,x,b,m]),j=d.size.width*h,S=d.size.height*h,w=Math.max(r,20/h);return n.jsxs("svg",{style:{position:"absolute",width:j,height:S,pointerEvents:"none",zIndex:2,overflow:"visible"},width:j,height:S,viewBox:`0 0 ${d.size.width} ${d.size.height}`,children:[n.jsx("line",{x1:y,y1:x,x2:b,y2:m,stroke:"transparent",strokeWidth:w,onPointerDown:g,style:{cursor:v?"move":g?"pointer":"default",pointerEvents:g?v?"none":"visibleStroke":"none",strokeLinecap:"butt"}}),k.start&&n.jsx("path",{d:k.start.d,transform:k.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:w,onPointerDown:g,style:{cursor:v?"move":g?"pointer":"default",pointerEvents:g?v?"none":k.start.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),k.end&&n.jsx("path",{d:k.end.d,transform:k.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:w,onPointerDown:g,style:{cursor:v?"move":g?"pointer":"default",pointerEvents:g?v?"none":k.end.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),!f&&n.jsxs(n.Fragment,{children:[n.jsx("line",{x1:y,y1:x,x2:b,y2:m,opacity:o,style:{pointerEvents:"none",stroke:s,strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}),k.start&&n.jsx("path",{d:k.start.d,transform:k.start.transform,stroke:s,fill:k.start.filled?e:"none",style:{pointerEvents:"none",strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}),k.end&&n.jsx("path",{d:k.end.d,transform:k.end.transform,stroke:s,fill:k.end.filled?e:"none",style:{pointerEvents:"none",strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}})]})]})}function E({rect:e,vertices:o,color:r="transparent",strokeColor:s="#000000",opacity:l=1,strokeWidth:c,strokeStyle:d=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:u,scale:p,isSelected:h,onClick:g,lineEndings:v,appearanceActive:f=!1}){const y=i.useMemo(()=>o.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[o,e]),x=i.useMemo(()=>{if(!y.length)return"";const[e,...t]=y;return`M ${e.x} ${e.y} `+t.map(e=>`L ${e.x} ${e.y} `).join("").trim()},[y]),b=i.useMemo(()=>{if(y.length<2)return{start:null,end:null};const e=(e,t)=>Math.atan2(t.y-e.y,t.x-e.x),n=e(y[0],y[1]),o=e(y[y.length-2],y[y.length-1]);return{start:t.patching.createEnding(null==v?void 0:v.start,c,n+Math.PI,y[0].x,y[0].y),end:t.patching.createEnding(null==v?void 0:v.end,c,o,y[y.length-1].x,y[y.length-1].y)}},[y,v,c]),m=e.size.width*p,k=e.size.height*p,j=Math.max(c,20/p);return n.jsxs("svg",{style:{position:"absolute",width:m,height:k,pointerEvents:"none",zIndex:2,overflow:"visible"},width:m,height:k,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:x,fill:"none",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":"visibleStroke":"none",strokeLinecap:"butt",strokeLinejoin:"miter"}}),b.start&&n.jsx("path",{d:b.start.d,transform:b.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":b.start.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),b.end&&n.jsx("path",{d:b.end.d,transform:b.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":b.end.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),!f&&n.jsxs(n.Fragment,{children:[n.jsx("path",{d:x,opacity:l,style:{fill:"none",stroke:s??r,strokeWidth:c,pointerEvents:"none",strokeLinecap:"butt",strokeLinejoin:"miter",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}}),b.start&&n.jsx("path",{d:b.start.d,transform:b.start.transform,stroke:s,fill:b.start.filled?r:"none",style:{pointerEvents:"none",strokeWidth:c,strokeLinecap:"butt",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}}),b.end&&n.jsx("path",{d:b.end.d,transform:b.end.transform,stroke:s,fill:b.end.filled?r:"none",style:{pointerEvents:"none",strokeWidth:c,strokeLinecap:"butt",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}})]})]})}function M({rect:e,vertices:o,color:r="transparent",strokeColor:s="#000000",opacity:l=1,strokeWidth:c,strokeStyle:d=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:u,scale:p,isSelected:h,onClick:g,currentVertex:v,handleSize:f=14,appearanceActive:y=!1,cloudyBorderIntensity:x}){const b=(x??0)>0,m=v?[...o,v]:o,k=i.useMemo(()=>m.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[m,e]),j=i.useMemo(()=>{if(!k.length)return"";const[e,...t]=k,n=!!v;return(`M ${e.x} ${e.y} `+t.map(e=>`L ${e.x} ${e.y}`).join(" ")+(n?"":" Z")).trim()},[k,v]),S=i.useMemo(()=>!b||m.length<3?null:t.generateCloudyPolygonPath(m,e.origin,x,c),[b,m,e.origin,x,c]),w=v&&o.length>0,C=e.size.width*p,A=e.size.height*p,P=Math.max(c,20/p);return n.jsxs("svg",{style:{position:"absolute",width:C,height:A,pointerEvents:"none",zIndex:2,overflow:"visible"},width:C,height:A,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:b&&S?S.path:j,fill:"transparent",stroke:"transparent",strokeWidth:P,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":"transparent"===r?"visibleStroke":"visible":"none",strokeLinecap:"butt",strokeLinejoin:"miter"}}),!y&&n.jsx(n.Fragment,{children:b&&S?n.jsx("path",{d:S.path,opacity:l,style:{fill:r,stroke:s??r,strokeWidth:c,pointerEvents:"none",strokeLinejoin:"round"}}):n.jsxs(n.Fragment,{children:[n.jsx("path",{d:j,opacity:l,style:{fill:v?"none":r,stroke:s??r,strokeWidth:c,pointerEvents:"none",strokeLinecap:"butt",strokeLinejoin:"miter",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}}),w&&o.length>1&&n.jsx("path",{d:`M ${k[k.length-1].x} ${k[k.length-1].y} L ${k[0].x} ${k[0].y}`,fill:"none",style:{stroke:s,strokeWidth:c,strokeDasharray:"4,4",opacity:.7,pointerEvents:"none"}}),w&&o.length>=2&&n.jsx("rect",{x:k[0].x-f/p/2,y:k[0].y-f/p/2,width:f/p,height:f/p,fill:s,opacity:.4,stroke:s,strokeWidth:c/2,style:{pointerEvents:"none"}})]})})]})}function L({isSelected:e,color:t="#facc15",opacity:o=1,onClick:i,appearanceActive:r=!1}){const s=a.getContrastStrokeColor(t);return n.jsx("div",{style:{position:"absolute",inset:0,zIndex:2,pointerEvents:i?e?"none":"auto":"none",cursor:e?"move":i?"pointer":"default"},onPointerDown:i,children:!r&&n.jsxs("svg",{style:{position:"absolute",inset:0,pointerEvents:"none"},viewBox:"0 0 20 20",width:"100%",height:"100%",children:[n.jsx("path",{d:"M 0.5 15.5 L 0.5 0.5 L 19.5 0.5 L 19.5 15.5 L 8.5 15.5 L 6.5 19.5 L 4.5 15.5 Z",fill:t,opacity:o,stroke:s,strokeWidth:"1",strokeLinejoin:"miter"}),n.jsx("line",{x1:"2.5",y1:"4.25",x2:"17.5",y2:"4.25",stroke:s,strokeWidth:"1"}),n.jsx("line",{x1:"2.5",y1:"8",x2:"17.5",y2:"8",stroke:s,strokeWidth:"1"}),n.jsx("line",{x1:"2.5",y1:"11.75",x2:"17.5",y2:"11.75",stroke:s,strokeWidth:"1"})]})})}function $({documentId:e,isSelected:t,isEditing:o,annotation:r,pageIndex:s,scale:l,onClick:c,appearanceActive:d=!1}){const u=i.useRef(null),h=i.useRef(!1),{provides:g}=x(),v=(null==g?void 0:g.forDocument(e))??null,{adjustedFontPx:f,wrapperStyle:y}=k(r.object.fontSize*l,o);i.useEffect(()=>{var e;if(o&&u.current){h.current=!0;const t=u.current;t.focus();const n=null==v?void 0:v.findToolForAnnotation(r.object),o=null!=(null==(e=null==n?void 0:n.defaults)?void 0:e.contents)&&r.object.contents===n.defaults.contents,i=window.getSelection();if(i){const e=document.createRange();e.selectNodeContents(t),o||e.collapse(!1),i.removeAllRanges(),i.addRange(e)}}},[o]);return n.jsx("div",{style:{position:"absolute",width:r.object.rect.size.width*l,height:r.object.rect.size.height*l,cursor:t&&!o?"move":"default",pointerEvents:c?t&&!o?"none":"auto":"none",zIndex:2,opacity:d?0:1},onPointerDown:c,children:n.jsx("span",{ref:u,onBlur:()=>{h.current&&(h.current=!1,v&&u.current&&v.updateAnnotation(s,r.object.id,{contents:u.current.innerText.replace(/\u00A0/g," ")}))},tabIndex:0,style:{color:r.object.fontColor,fontSize:f,...a.standardFontCssProperties(r.object.fontFamily),textAlign:a.textAlignmentToCss(r.object.textAlign),flexDirection:"column",justifyContent:r.object.verticalAlign===a.PdfVerticalAlignment.Top?"flex-start":r.object.verticalAlign===a.PdfVerticalAlignment.Middle?"center":"flex-end",display:"flex",backgroundColor:r.object.color??r.object.backgroundColor,opacity:r.object.opacity,width:"100%",height:"100%",lineHeight:"1.18",overflow:"hidden",cursor:o?"text":c?"pointer":"default",outline:"none",...y},contentEditable:o,...p,children:r.object.contents})})}function O({documentId:e,pageIndex:t,annotation:r,scaleFactor:s=1,unrotated:l,style:c,...d}){const{provides:u}=x(),[p,h]=i.useState(null),g=i.useRef(null),{width:v,height:f}=r.rect.size;i.useEffect(()=>{if(u){const n=u.forDocument(e).renderAnnotation({pageIndex:t,annotation:r,options:{scaleFactor:s,dpr:window.devicePixelRatio,unrotated:l}});return n.wait(e=>{const t=URL.createObjectURL(e);h(t),g.current=t},a.ignore),()=>{g.current?(URL.revokeObjectURL(g.current),g.current=null):n.abort({code:a.PdfErrorCode.Cancelled,message:"canceled render task"})}}},[t,s,l,u,e,r.id,v,f]);return n.jsx(o.Fragment,{children:p&&n.jsx("img",{src:p,onLoad:()=>{g.current&&(URL.revokeObjectURL(g.current),g.current=null)},...d,style:{width:"100%",height:"100%",display:"block",...c||{}}})})}function F({isSelected:e,annotation:t,documentId:o,pageIndex:i,scale:r,onClick:s}){const a=!!t.object.rotation&&!!t.object.unrotatedRect;return n.jsx("div",{style:{position:"absolute",width:"100%",height:"100%",zIndex:2,pointerEvents:s?e?"none":"auto":"none",cursor:s?"pointer":"default"},onPointerDown:s,children:n.jsx(O,{documentId:o,pageIndex:i,annotation:{...t.object,id:t.object.id},scaleFactor:r,unrotated:a})})}function B({isSelected:e,strokeColor:t="#0000FF",strokeWidth:o=2,strokeStyle:r=a.PdfAnnotationBorderStyle.UNDERLINE,strokeDashArray:s,rect:l,scale:c,onClick:d,hasIRT:u=!1}){const{width:p,height:h}=i.useMemo(()=>({width:l.size.width,height:l.size.height}),[l]),g=p*c,v=h*c,f=i.useMemo(()=>{if(r===a.PdfAnnotationBorderStyle.DASHED)return(null==s?void 0:s.join(","))??`${3*o},${o}`},[r,s,o]),y=r===a.PdfAnnotationBorderStyle.UNDERLINE;return n.jsxs("svg",{style:{position:"absolute",width:g,height:v,pointerEvents:"none",zIndex:2},width:g,height:v,viewBox:`0 0 ${p} ${h}`,children:[n.jsx("rect",{x:0,y:0,width:p,height:h,fill:"transparent",onPointerDown:u?void 0:d,style:{cursor:u||!d?"default":e?"move":"pointer",pointerEvents:u||!d||e?"none":"visible"}}),y?n.jsx("line",{x1:1,y1:h-1,x2:p-1,y2:h-1,stroke:t,strokeWidth:o,strokeDasharray:f,style:{pointerEvents:"none"}}):n.jsx("rect",{x:o/2,y:o/2,width:Math.max(p-o,0),height:Math.max(h-o,0),fill:"transparent",stroke:t,strokeWidth:o,strokeDasharray:f,style:{pointerEvents:"none"}})]})}function W({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=e??"#FFFF00";return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:l?"transparent":c,opacity:l?void 0:t,pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:void 0,...a}},o))})}function T({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=e??"#FFFF00",d=2*r;return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:"transparent",pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:0,...a},children:!l&&n.jsx("div",{style:{position:"absolute",left:0,bottom:0,width:"100%",height:d,background:c,opacity:t,pointerEvents:"none"}})},o))})}function U({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=e??"#FFFF00",d=2*r;return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:"transparent",pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:0,...a},children:!l&&n.jsx("div",{style:{position:"absolute",left:0,top:"50%",width:"100%",height:d,background:c,opacity:t,transform:"translateY(-50%)",pointerEvents:"none"}})},o))})}function H({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=2*r,d=6*r,u=`url("data:image/svg+xml;utf8,${encodeURIComponent(`<svg xmlns="http://www.w3.org/2000/svg" width="${d}" height="${2*c}" viewBox="0 0 ${d} ${2*c}">\n <path d="M0 ${c} Q ${d/4} 0 ${d/2} ${c} T ${d} ${c}"\n fill="none" stroke="${e??"#FFFF00"}" stroke-width="${c}" stroke-linecap="round"/>\n </svg>`)}")`;return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:"transparent",pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:0,...a},children:!l&&n.jsx("div",{style:{position:"absolute",left:0,bottom:0,width:"100%",height:2*c,backgroundImage:u,backgroundRepeat:"repeat-x",backgroundSize:`${d}px ${2*c}px`,opacity:t,pointerEvents:"none"}})},o))})}function N({isSelected:e,strokeColor:t="#000000",opacity:o=1,rect:r,scale:s,onClick:a,appearanceActive:l=!1}){const{width:c,height:d,path:u}=i.useMemo(()=>{const e=r.size.width,t=r.size.height,n=e/2;return{width:e,height:t,path:[`M 0 ${t}`,`C ${.27*e} ${t} ${n} ${t-.44*t} ${n} 0`,`C ${n} ${t-.44*t} ${e-.27*e} ${t} ${e} ${t}`,"Z"].join(" ")}},[r]),p=c*s,h=d*s;return n.jsxs("svg",{style:{position:"absolute",width:p,height:h,pointerEvents:"none",zIndex:2},width:p,height:h,viewBox:`0 0 ${c} ${d}`,overflow:"visible",children:[n.jsx("path",{d:u,fill:"transparent",stroke:"transparent",strokeWidth:4,onPointerDown:a,style:{cursor:e?"move":a?"pointer":"default",pointerEvents:a?e?"none":"visible":"none"}}),!l&&n.jsx("path",{d:u,fill:t,stroke:t,strokeWidth:.5,opacity:o,fillRule:"evenodd",style:{pointerEvents:"none"}})]})}function G({annotation:e,documentId:t}){const{provides:o}=x(),r=i.useCallback(()=>{const n=e.object.target;n&&o&&o.forDocument(t).navigateTarget(n)},[e.object.target,o,t]);return n.jsx("div",{onClick:r,style:{width:"100%",height:"100%",cursor:"pointer",pointerEvents:"auto"}})}const q=[P({id:"ink",matches:e=>e.type===a.PdfAnnotationSubtype.INK,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.INK,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(I,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),renderPreview:({data:e,scale:t})=>n.jsx(I,{isSelected:!1,scale:t,...e}),previewContainerStyle:({data:e})=>({mixBlendMode:a.blendModeToCss(e.blendMode??a.PdfBlendMode.Normal)}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"square",matches:e=>e.type===a.PdfAnnotationSubtype.SQUARE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.SQUARE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(R,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),renderPreview:({data:e,scale:t})=>n.jsx(R,{isSelected:!1,scale:t,...e}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"circle",matches:e=>e.type===a.PdfAnnotationSubtype.CIRCLE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.CIRCLE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(z,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),renderPreview:({data:e,scale:t})=>n.jsx(z,{isSelected:!1,scale:t,...e}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"line",matches:e=>e.type===a.PdfAnnotationSubtype.LINE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.LINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(D,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),renderPreview:({data:e,scale:t})=>n.jsx(D,{isSelected:!1,scale:t,...e}),vertexConfig:{extractVertices:e=>[e.linePoints.start,e.linePoints.end],transformAnnotation:(e,t)=>({...e,linePoints:{start:t[0],end:t[1]}})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),P({id:"polyline",matches:e=>e.type===a.PdfAnnotationSubtype.POLYLINE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.POLYLINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(E,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),renderPreview:({data:e,scale:t})=>n.jsx(E,{isSelected:!1,scale:t,...e}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),P({id:"polygon",matches:e=>e.type===a.PdfAnnotationSubtype.POLYGON,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.POLYGON,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(M,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),renderPreview:({data:e,scale:t})=>n.jsx(M,{isSelected:!1,scale:t,...e}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),P({id:"highlight",matches:e=>e.type===a.PdfAnnotationSubtype.HIGHLIGHT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(W,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1},defaultBlendMode:a.PdfBlendMode.Multiply}),P({id:"underline",matches:e=>e.type===a.PdfAnnotationSubtype.UNDERLINE,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(T,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"strikeout",matches:e=>e.type===a.PdfAnnotationSubtype.STRIKEOUT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(U,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"squiggly",matches:e=>e.type===a.PdfAnnotationSubtype.SQUIGGLY,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(H,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"text",matches:e=>e.type===a.PdfAnnotationSubtype.TEXT&&!e.inReplyToId,render:({currentObject:e,isSelected:t,onClick:o,appearanceActive:i})=>n.jsx(L,{isSelected:t,color:e.strokeColor??e.color,opacity:e.opacity,onClick:o,appearanceActive:i}),interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!1}}),P({id:"caret",matches:e=>e.type===a.PdfAnnotationSubtype.CARET,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(N,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"freeText",matches:e=>e.type===a.PdfAnnotationSubtype.FREETEXT,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.FREETEXT,render:({annotation:e,currentObject:t,isSelected:o,isEditing:i,scale:r,pageIndex:s,documentId:a,onClick:l,appearanceActive:c})=>n.jsx($,{documentId:a,isSelected:o,isEditing:i,annotation:{...e,object:t},pageIndex:s,scale:r,onClick:l,appearanceActive:c}),renderPreview:({data:e})=>n.jsx("div",{style:{width:"100%",height:"100%",border:`1px dashed ${e.fontColor||"#000000"}`,backgroundColor:"transparent"}}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0},isDraggable:(e,{isEditing:t})=>e&&!t,onDoubleClick:(e,t)=>t(e)}),P({id:"stamp",matches:e=>e.type===a.PdfAnnotationSubtype.STAMP,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.STAMP,render:({annotation:e,isSelected:t,documentId:o,pageIndex:i,scale:r,onClick:s})=>n.jsx(F,{isSelected:t,annotation:e,documentId:o,pageIndex:i,scale:r,onClick:s}),renderPreview:({data:e})=>{const t=(4-e.pageRotation)%4*90;return n.jsx("img",{src:e.ghostUrl,style:{width:"100%",height:"100%",opacity:.6,objectFit:"contain",pointerEvents:"none",transform:t?`rotate(${t}deg)`:void 0},alt:""})},useAppearanceStream:!1,interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"link",matches:e=>e.type===a.PdfAnnotationSubtype.LINK,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.LINK,render:({currentObject:e,isSelected:t,scale:o,onClick:i})=>n.jsx(B,{...e,isSelected:t,scale:o,onClick:i,hasIRT:!!e.inReplyToId}),renderPreview:({data:e,bounds:t,scale:o})=>n.jsx("div",{style:{position:"absolute",left:0,top:0,width:t.size.width*o,height:t.size.height*o,borderBottom:`${e.strokeWidth*o}px solid ${e.strokeColor}`,backgroundColor:"rgba(0, 0, 255, 0.05)",boxSizing:"border-box"}}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!1},useAppearanceStream:!1,selectOverride:(e,t,n)=>{if(e.stopPropagation(),n.clearSelection(),t.object.inReplyToId){const e=n.allAnnotations.find(e=>e.object.id===t.object.inReplyToId);if(e)return void n.selectAnnotation(e.object.pageIndex,e.object.id)}n.selectAnnotation(n.pageIndex,t.object.id)},hideSelectionMenu:e=>!!e.inReplyToId,renderLocked:e=>n.jsx(G,{...e})})];function Y(e){const{documentId:o,pageIndex:r,scale:s,pageWidth:d,pageHeight:u,selectionMenu:p}=e,{provides:h}=x(),{provides:g}=c.useSelectionCapability(),[v,f]=i.useState([]),{register:y}=l.usePointerHandlers({documentId:o,pageIndex:r}),[b,m]=i.useState([]),[k,j]=i.useState(null),[w,C]=i.useState({}),[P,I]=i.useState({type:t.LockModeType.None}),R=i.useRef(s),z=i.useMemo(()=>h?h.forDocument(o):null,[h,o]),D=b.length>1;i.useEffect(()=>{if(z){const e=z.getState();return f(t.getAnnotationsByPageIndex(e,r)),m(t.getSelectedAnnotationIds(e)),I(e.locked),z.onStateChange(e=>{f(t.getAnnotationsByPageIndex(e,r)),m(t.getSelectedAnnotationIds(e)),I(e.locked)})}},[z,r]),i.useEffect(()=>{if(z)return z.onAnnotationEvent(e=>{"create"===e.type&&e.editAfterCreate&&j(e.annotation.id)})},[z]),i.useEffect(()=>{if(!z)return;R.current!==s&&(z.invalidatePageAppearances(r),R.current=s);z.getPageAppearances(r,{scaleFactor:s,dpr:"undefined"!=typeof window?window.devicePixelRatio:1}).wait(e=>C(e),()=>C({}))},[z,r,s]);const E=i.useMemo(()=>({onPointerDown:(e,t)=>{t.target===t.currentTarget&&z&&(k&&v.some(e=>e.object.id===k)&&t.stopImmediatePropagation(),z.deselectAnnotation(),j(null))}}),[z,k,v]),M=i.useCallback((e,t)=>{if(e.stopPropagation(),z&&g){g.clear();"metaKey"in e&&(e.metaKey||e.ctrlKey)?z.toggleSelection(r,t.object.id):z.selectAnnotation(r,t.object.id),t.object.id!==k&&j(null)}},[z,g,k,r]);i.useEffect(()=>y(E,{documentId:o}),[y,E]);const L=i.useMemo(()=>v.filter(e=>b.includes(e.object.id)),[v,b]),$=i.useMemo(()=>!(L.length<2)&&L.every(e=>{const n=null==z?void 0:z.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.isGroupDraggable,e.object,!0),i=t.resolveInteractionProp(null==n?void 0:n.interaction.isDraggable,e.object,!0);return void 0!==(null==n?void 0:n.interaction.isGroupDraggable)?o:i}),[L,z]),O=i.useMemo(()=>!(L.length<2)&&L.every(e=>{const n=null==z?void 0:z.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.isGroupResizable,e.object,!0),i=t.resolveInteractionProp(null==n?void 0:n.interaction.isResizable,e.object,!0);return void 0!==(null==n?void 0:n.interaction.isGroupResizable)?o:i}),[L,z]),F=i.useMemo(()=>!(L.length<2)&&L.every(e=>{const n=null==z?void 0:z.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.isGroupRotatable,e.object,!0),i=t.resolveInteractionProp(null==n?void 0:n.interaction.isRotatable,e.object,!0);return void 0!==(null==n?void 0:n.interaction.isGroupRotatable)?o:i}),[L,z]),B=i.useMemo(()=>!(L.length<2)&&L.some(e=>{const n=null==z?void 0:z.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.lockGroupAspectRatio,e.object,!1),i=t.resolveInteractionProp(null==n?void 0:n.interaction.lockAspectRatio,e.object,!1);return void 0!==(null==n?void 0:n.interaction.lockGroupAspectRatio)?o:i}),[L,z]),W=i.useMemo(()=>{if(!z)return!1;const e=z.getSelectedAnnotations();return e.length>1&&e.every(e=>e.object.pageIndex===r)},[z,r,b]),T=i.useCallback(e=>{if(e.dictMode)return null;if(e.object.rotation&&e.object.unrotatedRect)return null;const t=w[e.object.id];return(null==t?void 0:t.normal)?t:null},[w]),U=i.useMemo(()=>{const t=e.annotationRenderers??[],n=new Set(t.map(e=>e.id));return[...t,...q.filter(e=>!n.has(e.id))]},[e.annotationRenderers]),H=i.useCallback(e=>U.find(t=>t.matches(e.object))??null,[U]),N=i.useMemo(()=>({defaultSelect:M,selectAnnotation:(e,t)=>null==z?void 0:z.selectAnnotation(e,t),clearSelection:()=>null==g?void 0:g.clear(),allAnnotations:v,pageIndex:r}),[M,z,g,v,r]);return n.jsxs(n.Fragment,{children:[v.map(i=>{var l,c,d;const u=H(i);if(!u)return null;const h=(null==z?void 0:z.findToolForAnnotation(i.object))??null,g=t.getAnnotationCategories(h),v=t.hasLockedFlag(i.object)||t.isCategoryLocked(g,P);if(v&&u.hiddenWhenLocked)return null;const f=v&&!!u.renderLocked,y=!v&&b.includes(i.object.id),x=!v&&k===i.object.id,m=u.interactionDefaults,w=t.resolveInteractionProp(null==h?void 0:h.interaction.isDraggable,i.object,(null==m?void 0:m.isDraggable)??!0),C=!v&&(u.isDraggable?u.isDraggable(w,{isEditing:x}):w),A=(null==(l=null==h?void 0:h.behavior)?void 0:l.useAppearanceStream)??u.useAppearanceStream??!0,I=f?void 0:A?T(i):void 0,R=v?e=>{e.stopPropagation()}:u.selectOverride?e=>u.selectOverride(e,i,N):e=>M(e,i);return n.jsx(S,{trackedAnnotation:i,isSelected:y,isEditing:x,isMultiSelected:!v&&D,isDraggable:C,isResizable:!v&&t.resolveInteractionProp(null==h?void 0:h.interaction.isResizable,i.object,(null==m?void 0:m.isResizable)??!1),lockAspectRatio:t.resolveInteractionProp(null==h?void 0:h.interaction.lockAspectRatio,i.object,(null==m?void 0:m.lockAspectRatio)??!1),isRotatable:!v&&t.resolveInteractionProp(null==h?void 0:h.interaction.isRotatable,i.object,(null==m?void 0:m.isRotatable)??!1),vertexConfig:v?void 0:u.vertexConfig,selectionMenu:v||(null==(c=u.hideSelectionMenu)?void 0:c.call(u,i.object))?void 0:p,onSelect:R,onDoubleClick:v?void 0:u.onDoubleClick?e=>{e.stopPropagation(),u.onDoubleClick(i.object.id,j)}:void 0,zIndex:u.zIndex,blendMode:a.blendModeToCss(i.object.blendMode??u.defaultBlendMode??a.PdfBlendMode.Normal),style:null==(d=u.containerStyle)?void 0:d.call(u,i.object),appearance:I,...e,children:(e,{appearanceActive:t})=>f?u.renderLocked({annotation:i,currentObject:e,isSelected:!1,isEditing:!1,scale:s,pageIndex:r,documentId:o,onClick:void 0,appearanceActive:t}):u.render({annotation:i,currentObject:e,isSelected:y,isEditing:x,scale:s,pageIndex:r,documentId:o,onClick:v?void 0:R,appearanceActive:t})},i.object.id)}),W&&L.length>=2&&n.jsx(A,{documentId:o,pageIndex:r,scale:s,rotation:e.rotation,pageWidth:d,pageHeight:u,selectedAnnotations:L,isDraggable:$,isResizable:O,isRotatable:F,lockAspectRatio:B,resizeUI:e.resizeUI,rotationUI:e.rotationUI,selectionOutlineColor:e.selectionOutlineColor,selectionOutline:e.groupSelectionOutline??e.selectionOutline,groupSelectionMenu:e.groupSelectionMenu})]})}function K({documentId:e,pageIndex:t,scale:o}){var r,s,l,d,u,p,h,g,v,f,y,b;const{provides:m}=c.useSelectionCapability(),{provides:k}=x(),[j,S]=i.useState([]),[w,C]=i.useState(null),[A,P]=i.useState(null);if(i.useEffect(()=>{if(m)return m.forDocument(e).onSelectionChange(()=>{S(m.forDocument(e).getHighlightRectsForPage(t)),C(m.forDocument(e).getBoundingRectForPage(t))})},[m,e,t]),i.useEffect(()=>{if(k)return P(k.forDocument(e).getActiveTool()),k.forDocument(e).onActiveToolChange(e=>P(e))},[k,e]),!w)return null;if(!A||!A.defaults)return null;switch(A.defaults.type){case a.PdfAnnotationSubtype.UNDERLINE:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(r=A.defaults)?void 0:r.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(T,{strokeColor:null==(s=A.defaults)?void 0:s.strokeColor,opacity:null==(l=A.defaults)?void 0:l.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.HIGHLIGHT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(d=A.defaults)?void 0:d.blendMode)??a.PdfBlendMode.Multiply),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(W,{strokeColor:null==(u=A.defaults)?void 0:u.strokeColor,opacity:null==(p=A.defaults)?void 0:p.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.STRIKEOUT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(h=A.defaults)?void 0:h.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(U,{strokeColor:null==(g=A.defaults)?void 0:g.strokeColor,opacity:null==(v=A.defaults)?void 0:v.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.SQUIGGLY:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(f=A.defaults)?void 0:f.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(H,{strokeColor:null==(y=A.defaults)?void 0:y.strokeColor,opacity:null==(b=A.defaults)?void 0:b.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.CARET:default:return null}}function V({toolId:e,preview:t,scale:o}){var r;const{bounds:s}=t,a=f(),l=i.useMemo(()=>{const e=new Set(a.map(e=>e.id));return[...a,...q.filter(t=>!e.has(t.id))]},[a]),c={position:"absolute",left:s.origin.x*o,top:s.origin.y*o,width:s.size.width*o,height:s.size.height*o,pointerEvents:"none",zIndex:10},d=l.find(e=>{var n;return(null==(n=e.matchesPreview)?void 0:n.call(e,t))&&e.renderPreview})??l.find(t=>t.id===e&&t.renderPreview);if(null==d?void 0:d.renderPreview){const e=null==(r=d.previewContainerStyle)?void 0:r.call(d,{data:t.data,bounds:t.bounds,scale:o});return n.jsx("div",{style:{...c,...e},children:d.renderPreview({data:t.data,bounds:t.bounds,scale:o})})}return null}function X({documentId:e,pageIndex:t,scale:o}){const{plugin:r}=y(),[s,a]=i.useState(new Map),l=i.useRef(null),c=i.useMemo(()=>({requestFile:({accept:e,onFile:t})=>{if(!l.current)return;const n=l.current;n.accept=e,n.onchange=e=>{var o;const i=null==(o=e.target.files)?void 0:o[0];i&&(t(i),n.value="")},n.click()}}),[]);return i.useEffect(()=>{if(r)return r.registerPageHandlers(e,t,o,{services:c,onPreview:(e,t)=>{a(n=>{const o=new Map(n);return t?o.set(e,t):o.delete(e),o})}})},[e,t,o,r,c]),n.jsxs(n.Fragment,{children:[n.jsx("input",{ref:l,type:"file",style:{display:"none"}}),Array.from(s.entries()).map(([e,t])=>n.jsx(V,{toolId:e,preview:t,scale:o},e))]})}const Z=e.createPluginPackage(t.AnnotationPluginPackage).addWrapper(v).addUtility(function(){const{plugin:e}=y(),{provides:t}=x();return i.useEffect(()=>{if(t&&e)return t.onNavigate(t=>{"uri"===t.result.outcome&&!1!==e.config.autoOpenLinks&&window.open(t.result.uri,"_blank","noopener,noreferrer")})},[t,e]),null}).build();exports.AnnotationLayer=function({style:e,documentId:t,pageIndex:o,scale:r,rotation:a,selectionMenu:l,groupSelectionMenu:c,resizeUI:d,vertexUI:u,rotationUI:p,selectionOutlineColor:h,selectionOutline:g,groupSelectionOutline:v,customAnnotationRenderer:y,annotationRenderers:x,...b}){var m,k,j,S;const w=s.useDocumentState(t),C=null==(k=null==(m=null==w?void 0:w.document)?void 0:m.pages)?void 0:k[o],A=(null==(j=null==C?void 0:C.size)?void 0:j.width)??0,P=(null==(S=null==C?void 0:C.size)?void 0:S.height)??0,I=f(),R=i.useMemo(()=>{const e=[...I];for(const t of x??[]){const n=e.findIndex(e=>e.id===t.id);n>=0?e[n]=t:e.push(t)}return e},[I,x]),z=i.useMemo(()=>void 0!==r?r:(null==w?void 0:w.scale)??1,[r,null==w?void 0:w.scale]),D=i.useMemo(()=>{if(void 0!==a)return a;return(((null==C?void 0:C.rotation)??0)+((null==w?void 0:w.rotation)??0))%4},[a,null==C?void 0:C.rotation,null==w?void 0:w.rotation]);return n.jsxs("div",{style:{...e},...b,children:[n.jsx(Y,{documentId:t,selectionMenu:l,groupSelectionMenu:c,pageIndex:o,scale:z,rotation:D,pageWidth:A,pageHeight:P,resizeUI:d,vertexUI:u,rotationUI:p,selectionOutlineColor:h,selectionOutline:g,groupSelectionOutline:v,customAnnotationRenderer:y,annotationRenderers:R}),n.jsx(K,{documentId:t,pageIndex:o,scale:z}),n.jsx(X,{documentId:t,pageIndex:o,scale:z})]})},exports.AnnotationPluginPackage=Z,exports.AnnotationRendererProvider=v,exports.GroupSelectionBox=A,exports.createRenderer=P,exports.useAnnotation=e=>{var n;const{provides:o}=x(),[r,s]=i.useState((null==(n=null==o?void 0:o.forDocument(e))?void 0:n.getState())??t.initialDocumentState());return i.useEffect(()=>{if(!o)return;const t=o.forDocument(e);return s(t.getState()),t.onStateChange(e=>{s(e)})},[o,e]),{state:r,provides:(null==o?void 0:o.forDocument(e))??null}},exports.useAnnotationCapability=x,exports.useAnnotationPlugin=y,exports.useIOSZoomPrevention=k,exports.useRegisterRenderers=function(e){const t=i.useContext(h),n=i.useRef(e);i.useEffect(()=>{if(t)return t(n.current)},[t])},exports.useRegisteredRenderers=f,exports.useRendererRegistry=function(){return i.useContext(h)},Object.keys(t).forEach(e=>{"default"===e||Object.prototype.hasOwnProperty.call(exports,e)||Object.defineProperty(exports,e,{enumerable:!0,get:()=>t[e]})});
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@embedpdf/core"),t=require("@embedpdf/plugin-annotation"),n=require("preact/jsx-runtime"),o=require("preact"),i=require("preact/hooks"),r=require("preact/compat"),s=require("@embedpdf/core/preact"),a=require("@embedpdf/models"),l=require("@embedpdf/plugin-interaction-manager/preact"),c=require("@embedpdf/plugin-selection/preact"),d=require("@embedpdf/utils/preact"),u=require("@embedpdf/utils"),p={},h=o.createContext(null),g=o.createContext([]);function v({children:e}){const[t,o]=i.useState([]),r=i.useCallback(e=>(o(t=>{const n=new Set(e.map(e=>e.id));return[...t.filter(e=>!n.has(e.id)),...e]}),()=>o(t=>t.filter(t=>!e.some(e=>e.id===t.id)))),[]);return n.jsx(h.Provider,{value:r,children:n.jsx(g.Provider,{value:t,children:e})})}function f(){return i.useContext(g)}const x=()=>s.usePlugin(t.AnnotationPlugin.id),y=()=>s.useCapability(t.AnnotationPlugin.id);let b;function m(){return void 0===b&&(b=function(){try{const e=navigator;return/iPad|iPhone|iPod/.test(navigator.userAgent)||"MacIntel"===navigator.platform&&(null==e?void 0:e.maxTouchPoints)>1}catch{return!1}}()),b}function k(e,t){const n=m();return i.useMemo(()=>{const o=n&&t&&e>0&&e<16,i=o?e/16:1;return{needsComp:o,adjustedFontPx:o?16:e,scaleComp:i,wrapperStyle:o?{width:100/i+"%",height:100/i+"%",transform:`scale(${i})`,transformOrigin:"top left"}:void 0}},[n,t,e])}function j({appearance:e,style:t}){const[o,r]=i.useState(null),s=i.useRef(null);i.useEffect(()=>{const t=URL.createObjectURL(e.data);return r(t),s.current=t,()=>{s.current&&(URL.revokeObjectURL(s.current),s.current=null)}},[e.data]);return o?n.jsx("img",{src:o,onLoad:()=>{s.current&&(URL.revokeObjectURL(s.current),s.current=null)},style:{position:"absolute",width:"100%",height:"100%",display:"block",pointerEvents:"none",userSelect:"none",...t}}):null}function w({scale:e,documentId:t,pageIndex:o,rotation:l,pageWidth:c,pageHeight:p,trackedAnnotation:h,children:g,isSelected:v,isEditing:f=!1,isMultiSelected:b=!1,isDraggable:m,isResizable:k,isRotatable:w=!0,lockAspectRatio:S=!1,style:C={},blendMode:A,vertexConfig:P,selectionMenu:I,outlineOffset:z=1,onDoubleClick:R,onSelect:E,appearance:D,zIndex:M=1,resizeUI:L,vertexUI:$,rotationUI:F,selectionOutlineColor:O,selectionOutline:W,customAnnotationRenderer:B,groupSelectionMenu:T,groupSelectionOutline:U,annotationRenderers:H,...N}){var G,q,Y;const[V,X]=i.useState(h.object),[K,Z]=i.useState(null),[Q,_]=i.useState(null),[J,ee]=i.useState(!1),[te,ne]=i.useState(!1),{provides:oe}=y(),{plugin:ie}=x(),{canModifyAnnotations:re}=s.useDocumentPermissions(t),se=i.useRef(null),ae=re&&m&&!b,le=re&&k&&!b,ce=re&&w&&!b,de=i.useMemo(()=>oe?oe.forDocument(t):null,[oe,t]),ue=V?{...h.object,...V}:h.object,pe=h.object.flags??[],he=pe.includes("noZoom"),ge=pe.includes("noRotate"),ve=he?1:e,fe=ge?0:l,xe=(null==L?void 0:L.color)??"#007ACC",ye=(null==$?void 0:$.color)??"#007ACC",be=(null==F?void 0:F.color)??"white",me=(null==F?void 0:F.connectorColor)??"#007ACC",ke=(null==L?void 0:L.size)??12,je=(null==$?void 0:$.size)??12,we=(null==F?void 0:F.size)??32,Se=null==F?void 0:F.margin,Ce=(null==F?void 0:F.iconColor)??"#007ACC",Ae=(null==F?void 0:F.showConnector)??!1,Pe=(null==(G=null==F?void 0:F.border)?void 0:G.color)??"#007ACC",Ie=(null==(q=null==F?void 0:F.border)?void 0:q.width)??1,ze=(null==(Y=null==F?void 0:F.border)?void 0:Y.style)??"solid",Re=(null==W?void 0:W.color)??O??"#007ACC",Ee=(null==W?void 0:W.style)??"solid",De=(null==W?void 0:W.width)??1,Me=(null==W?void 0:W.offset)??z??1,Le=K??ue.rotation??0,$e=K??ue.rotation??0,Fe=Number.isFinite($e)?Math.round(10*$e)/10:0,Oe=null!==K,We=i.useRef(null),Be=i.useCallback(e=>{var n;if(!(null==(n=e.transformData)?void 0:n.type)||b||!ie)return;const{type:i,changes:r,metadata:s}=e.transformData,a=h.object.id,l={width:c,height:p};if("start"===e.state&&(We.current=h.object.unrotatedRect??h.object.rect,se.current=h.object,"resize"!==i&&"vertex-edit"!==i||ne(!0),"move"===i?ie.startDrag(t,{annotationIds:[a],pageSize:l}):"resize"===i&&ie.startResize(t,{annotationIds:[a],pageSize:l,resizeHandle:(null==s?void 0:s.handle)??"se"})),r.rect&&We.current)if("move"===i){const e={x:r.rect.origin.x-We.current.origin.x,y:r.rect.origin.y-We.current.origin.y};ie.updateDrag(t,e)}else"resize"===i&&ie.updateResize(t,r.rect);if("vertex-edit"===i&&r.vertices&&P){const t=se.current??h.object,n=P.transformAnnotation(t,r.vertices),l=null==oe?void 0:oe.transformAnnotation(t,{type:i,changes:n,metadata:s});l&&(X(e=>({...e,...l})),"end"===e.state&&(null==de||de.updateAnnotation(o,a,l)))}if("rotate"===i){const n=(null==s?void 0:s.rotationAngle)??Le,o=null==s?void 0:s.cursorPosition;return o&&_({x:o.clientX,y:o.clientY}),void("start"===e.state?(Z(n),ie.startRotation(t,{annotationIds:[a],cursorAngle:n,rotationCenter:null==s?void 0:s.rotationCenter})):"move"===e.state?(Z(n),ie.updateRotation(t,n,null==s?void 0:s.rotationDelta)):"end"===e.state&&(Z(null),_(null),ie.commitRotation(t)))}"end"===e.state&&(We.current=null,se.current=null,ne(!1),"move"===i?ie.commitDrag(t):"resize"===i&&ie.commitResize(t))},[ie,t,h.object,c,p,o,b,P,oe,de,Le]),Te=ue.unrotatedRect,Ue=Te??ue.rect,He=Te&&0!==Le?a.inferRotationCenterFromRects(Ue,ue.rect,Le):void 0,Ne=Ue,{dragProps:Ge,vertices:qe,resize:Ye,rotation:Ve}=d.useInteractionHandles({controller:{element:Ne,vertices:null==P?void 0:P.extractVertices(ue),constraints:{minWidth:10,minHeight:10,boundingBox:{width:c,height:p}},maintainAspectRatio:S,pageRotation:l,annotationRotation:Le,rotationCenter:He,rotationElement:ue.rect,scale:e,enabled:v&&!b,onUpdate:Be},resizeUI:{handleSize:ke,spacing:Me,offsetMode:"outside",includeSides:!S,zIndex:M+1},vertexUI:{vertexSize:je,zIndex:M+2},rotationUI:{handleSize:we,margin:Se,zIndex:M+3,showConnector:Ae},includeVertices:!!P,includeRotation:ce,currentRotation:Le}),Xe=i.useMemo(()=>{if(re&&R)return R},[re,R]),Ke=d.useDoublePressProps(Xe);i.useEffect(()=>{X(h.object)},[h.object]),i.useEffect(()=>{if(!ie)return;const e=h.object.id,n=n=>{var o;if(n.documentId!==t)return;"end"!==n.type&&"cancel"!==n.type||Z(null);const i=null==(o=n.previewPatches)?void 0:o[e];"update"===n.type&&i?X(e=>({...e,...i})):"cancel"===n.type&&X(h.object)},o=[ie.onDragChange(n),ie.onResizeChange(n),ie.onRotateChange(n)];return()=>o.forEach(e=>e())},[ie,t,h.object]);const Ze=v&&!b,Qe=ue.rect.size.width*ve,_e=ue.rect.size.height*ve,Je=Ue.size.width*ve,et=Ue.size.height*ve,tt=Boolean(Te)&&0!==Le,nt=tt?(Ue.origin.x-ue.rect.origin.x)*ve:(Qe-Je)/2,ot=tt?(Ue.origin.y-ue.rect.origin.y)*ve:(_e-et)/2,it=tt&&He?`${(He.x-Ue.origin.x)*ve}px ${(He.y-Ue.origin.y)*ve}px`:"center center",rt=He?(He.x-ue.rect.origin.x)*ve:Qe/2,st=He?(He.y-ue.rect.origin.y)*ve:_e/2,at=Math.max(300,Math.max(Qe,_e)+80),lt=ge?u.getCounterRotation({origin:{x:0,y:0},size:{width:Qe,height:_e}},l):null,ct=i.useMemo(()=>Te?{...ue,rect:Te}:ue,[ue,Te]),dt=!(!(null==D?void 0:D.normal)||te||f||h.dictMode),ut={position:"absolute",left:ue.rect.origin.x*e,top:ue.rect.origin.y*e,width:lt?lt.width:Qe,height:lt?lt.height:_e,pointerEvents:"none",zIndex:M,...lt&&{transform:lt.matrix,transformOrigin:"0 0"}},pt={position:"absolute",left:nt,top:ot,width:Je,height:et,transform:0!==Le?`rotate(${Le}deg)`:void 0,transformOrigin:it};return n.jsxs("div",{"data-no-interaction":!0,children:[n.jsx("div",{style:{...ut,...A&&{mixBlendMode:A},...C},children:n.jsxs("div",{style:{...pt,pointerEvents:f?"auto":"none"},children:[(()=>{const t="function"==typeof g?g(ct,{appearanceActive:dt}):g;return(null==B?void 0:B({annotation:ct,children:t,isSelected:v,scale:e,rotation:l,pageWidth:c,pageHeight:p,pageIndex:o,onSelect:E}))??t})(),(null==D?void 0:D.normal)&&n.jsx(j,{appearance:D.normal,style:{display:dt?"block":"none"}})]})}),n.jsxs("div",{style:ut,...N,children:[Oe&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:rt-at/2,top:st,width:at,height:1,backgroundColor:me,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:rt,top:st-at/2,width:1,height:at,backgroundColor:me,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:rt-at/2,top:st,width:at,height:1,transformOrigin:"center center",transform:`rotate(${Le}deg)`,backgroundColor:me,opacity:.8,pointerEvents:"none"}})]}),v&&ce&&Ve&&((null==F?void 0:F.component)?n.jsx("div",{onPointerEnter:()=>ee(!0),onPointerLeave:()=>{ee(!1),_(null)},onPointerMove:e=>{Oe||_({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:F.component({...Ve.handle,backgroundColor:be,iconColor:Ce,connectorStyle:{...Ve.connector.style,backgroundColor:me,opacity:Oe?0:1},showConnector:Ae,opacity:Oe?0:1,border:{color:Pe,width:Ie,style:ze}})}):n.jsxs("div",{onPointerEnter:()=>ee(!0),onPointerLeave:()=>{ee(!1),_(null)},onPointerMove:e=>{Oe||_({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[Ae&&n.jsx("div",{style:{...Ve.connector.style,backgroundColor:me,opacity:Oe?0:1}}),n.jsx("div",{...Ve.handle,style:{...Ve.handle.style,backgroundColor:be,border:`${Ie}px ${ze} ${Pe}`,boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",opacity:Oe?0:1},children:n.jsxs("svg",{width:Math.round(.6*we),height:Math.round(.6*we),viewBox:"0 0 24 24",fill:"none",stroke:Ce,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n.jsx("path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}),n.jsx("path",{d:"M21 3v5h-5"})]})})]})),n.jsxs("div",{...ae&&v?Ge:{},...Ke,style:{...pt,outline:Ze?`${De}px ${Ee} ${Re}`:"none",outlineOffset:Ze?`${Me}px`:"0px",pointerEvents:!v||b||f?"none":"auto",touchAction:"none",cursor:v&&ae?"move":"default"},children:[v&&le&&!Oe&&Ye.map(({key:e,...t})=>(null==L?void 0:L.component)?L.component({key:e,...t,backgroundColor:xe}):n.jsx("div",{...t,style:{...t.style,backgroundColor:xe}},e)),v&&re&&!b&&!Oe&&qe.map(({key:e,...t})=>(null==$?void 0:$.component)?$.component({key:e,...t,backgroundColor:ye}):n.jsx("div",{...t,style:{...t.style,backgroundColor:ye}},e))]})]}),I&&!b&&!Oe&&n.jsx(d.CounterRotate,{rect:{origin:{x:ue.rect.origin.x*e,y:ue.rect.origin.y*e},size:{width:ue.rect.size.width*ve,height:ue.rect.size.height*ve}},rotation:l,children:e=>{const t=((Le+90*fe)%360+360)%360;return I({...e,context:{type:"annotation",annotation:h,pageIndex:o},selected:v,placement:{suggestTop:ce&&t>90&&t<270}})}}),(Oe||J)&&Q&&r.createPortal(n.jsxs("div",{style:{position:"fixed",left:Q.x+16,top:Q.y-16,background:"rgba(0,0,0,0.8)",color:"#fff",padding:"4px 8px",borderRadius:4,fontSize:12,fontFamily:"monospace",pointerEvents:"none",zIndex:1e4,whiteSpace:"nowrap"},children:[Fe.toFixed(0),"°"]}),document.body)]})}function S(e,t,n,o,i){switch(i){case 1:return{x:t,y:o-e};case 2:return{x:n-e,y:o-t};case 3:return{x:n-t,y:e};default:return{x:e,y:t}}}function C(e,t,n){const o=e.object.flags??[],i=o.includes("noZoom"),r=o.includes("noRotate"),s=e.object.rect.origin.x*t,a=e.object.rect.origin.y*t,l=e.object.rect.size.width*(i?1:t),c=e.object.rect.size.height*(i?1:t);if(!r||0===n)return{left:s,top:a,right:s+l,bottom:a+c};const d=[S(0,0,l,c,n),S(l,0,l,c,n),S(0,c,l,c,n),S(l,c,l,c,n)];let u=1/0,p=1/0,h=-1/0,g=-1/0;for(const v of d)v.x<u&&(u=v.x),v.y<p&&(p=v.y),v.x>h&&(h=v.x),v.y>g&&(g=v.y);return{left:s+u,top:a+p,right:s+h,bottom:a+g}}function A({documentId:e,pageIndex:t,scale:o,rotation:l,pageWidth:c,pageHeight:u,selectedAnnotations:p,isDraggable:h,isResizable:g,isRotatable:v=!0,lockAspectRatio:f=!1,resizeUI:y,rotationUI:b,selectionOutlineColor:m,outlineOffset:k,selectionOutline:j,zIndex:w=2,groupSelectionMenu:S}){var A,P,I;const{plugin:z}=x(),{canModifyAnnotations:R}=s.useDocumentPermissions(e),E=i.useRef(null),D=i.useRef(!1),M=i.useRef(!1),[L,$]=i.useState(null),[F,O]=i.useState(null),[W,B]=i.useState(!1),T=R&&h,U=R&&g,H=R&&v,N=i.useMemo(()=>{const e=p.map(e=>e.object.rect);return a.boundingRectOrEmpty(e)},[p]),[G,q]=i.useState(N);i.useEffect(()=>{D.current||M.current||q(N)},[N]),i.useEffect(()=>{if(!z)return;return z.onRotateChange(t=>{t.documentId===e&&("end"!==t.type&&"cancel"!==t.type||$(null))})},[z,e]);const Y=i.useCallback(t=>{var n,o,i,r,s,a;if(!(null==(n=t.transformData)?void 0:n.type))return;if(!z)return;const l=t.transformData.type,d="move"===l,h="resize"===l;if(d&&!T)return;if("start"===t.state&&(E.current=N,d?(D.current=!0,z.startDrag(e,{annotationIds:p.map(e=>e.object.id),pageSize:{width:c,height:u}})):h&&(M.current=!0,z.startResize(e,{annotationIds:p.map(e=>e.object.id),pageSize:{width:c,height:u},resizeHandle:(null==(o=t.transformData.metadata)?void 0:o.handle)??"se"}))),"rotate"===l){if(!v)return;const n=p.map(e=>e.object.id),o=(null==(i=t.transformData.metadata)?void 0:i.rotationAngle)??0,l=null==(r=t.transformData.metadata)?void 0:r.cursorPosition;return l&&O({x:l.clientX,y:l.clientY}),void("start"===t.state?($(o),z.startRotation(e,{annotationIds:n,cursorAngle:o,rotationCenter:null==(s=t.transformData.metadata)?void 0:s.rotationCenter})):"move"===t.state?($(o),z.updateRotation(e,o,null==(a=t.transformData.metadata)?void 0:a.rotationDelta)):"end"===t.state&&($(null),O(null),z.commitRotation(e)))}const g=E.current??N;if(d&&t.transformData.changes.rect){const n=t.transformData.changes.rect,o={x:n.origin.x-g.origin.x,y:n.origin.y-g.origin.y},i=z.updateDrag(e,o);q({...g,origin:{x:g.origin.x+i.x,y:g.origin.y+i.y}})}else if(h&&t.transformData.changes.rect){const n=t.transformData.changes.rect;z.updateResize(e,n),q(n)}"end"===t.state&&(E.current=null,d&&D.current?(D.current=!1,z.commitDrag(e)):h&&M.current&&(M.current=!1,z.commitResize(e)))},[z,e,c,u,N,T,p,v]),V=L??0,X=null!==L,K=Number.isFinite(V)?Math.round(10*V)/10:0,Z=(null==y?void 0:y.color)??"#007ACC",Q=(null==y?void 0:y.size)??12,_=(null==b?void 0:b.color)??"white",J=(null==b?void 0:b.connectorColor)??"#007ACC",ee=(null==b?void 0:b.size)??32,te=null==b?void 0:b.margin,ne=(null==b?void 0:b.iconColor)??"#007ACC",oe=(null==b?void 0:b.showConnector)??!1,ie=(null==(A=null==b?void 0:b.border)?void 0:A.color)??"#007ACC",re=(null==(P=null==b?void 0:b.border)?void 0:P.width)??1,se=(null==(I=null==b?void 0:b.border)?void 0:I.style)??"solid",ae=(null==j?void 0:j.color)??m??"#007ACC",le=(null==j?void 0:j.style)??"dashed",ce=(null==j?void 0:j.width)??2,de=(null==j?void 0:j.offset)??k??2,{dragProps:ue,resize:pe,rotation:he}=d.useInteractionHandles({controller:{element:G,constraints:{minWidth:20,minHeight:20,boundingBox:{width:c,height:u}},maintainAspectRatio:f,pageRotation:l,scale:o,enabled:!0,onUpdate:Y},resizeUI:{handleSize:Q,spacing:de,offsetMode:"outside",includeSides:!f,zIndex:w+1},vertexUI:{vertexSize:0,zIndex:w},rotationUI:{handleSize:ee,margin:te,zIndex:w+2,showConnector:oe},includeVertices:!1,includeRotation:H,currentRotation:L??0});if(p.length<2)return null;let ge=1/0,ve=1/0,fe=-1/0,xe=-1/0;for(const n of p){const e=C(n,o,l);ge=Math.min(ge,e.left),ve=Math.min(ve,e.top),fe=Math.max(fe,e.right),xe=Math.max(xe,e.bottom)}const ye=ge-N.origin.x*o,be=ve-N.origin.y*o,me=fe-(N.origin.x+N.size.width)*o,ke=xe-(N.origin.y+N.size.height)*o,je=G.origin.x*o+ye,we=G.origin.y*o+be,Se=G.size.width*o+(me-ye),Ce=G.size.height*o+(ke-be),Ae=Se/2,Pe=Ce/2,Ie=Math.max(300,Math.max(Se,Ce)+80);return n.jsxs("div",{"data-group-selection-box":!0,"data-no-interaction":!0,children:[n.jsxs("div",{style:{position:"absolute",left:je,top:we,width:Se,height:Ce,pointerEvents:"none",zIndex:w},children:[X&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:Ae-Ie/2,top:Pe,width:Ie,height:1,backgroundColor:Z,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:Ae,top:Pe-Ie/2,width:1,height:Ie,backgroundColor:Z,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:Ae-Ie/2,top:Pe,width:Ie,height:1,transformOrigin:"center center",transform:`rotate(${V}deg)`,backgroundColor:Z,opacity:.8,pointerEvents:"none"}})]}),H&&he&&((null==b?void 0:b.component)?n.jsx("div",{onPointerEnter:()=>B(!0),onPointerLeave:()=>{B(!1),O(null)},onPointerMove:e=>{X||O({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:b.component({...he.handle,backgroundColor:_,iconColor:ne,connectorStyle:{...he.connector.style,backgroundColor:J,opacity:X?0:1},showConnector:oe,opacity:X?0:1,border:{color:ie,width:re,style:se}})}):n.jsxs("div",{onPointerEnter:()=>B(!0),onPointerLeave:()=>{B(!1),O(null)},onPointerMove:e=>{X||O({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[oe&&n.jsx("div",{style:{...he.connector.style,backgroundColor:J,opacity:X?0:1}}),n.jsx("div",{...he.handle,style:{...he.handle.style,backgroundColor:_,border:`${re}px ${se} ${ie}`,boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",opacity:X?0:1},children:n.jsxs("svg",{width:Math.round(.6*ee),height:Math.round(.6*ee),viewBox:"0 0 24 24",fill:"none",stroke:ne,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n.jsx("path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}),n.jsx("path",{d:"M21 3v5h-5"})]})})]})),n.jsx("div",{...T?ue:{onPointerDown:e=>e.stopPropagation()},style:{position:"absolute",left:0,top:0,width:Se,height:Ce,outline:X?"none":`${ce}px ${le} ${ae}`,outlineOffset:de-1,cursor:T?"move":"default",touchAction:"none",pointerEvents:"auto"},children:U&&!X&&pe.map(({key:e,...t})=>(null==y?void 0:y.component)?y.component({key:e,...t,backgroundColor:Z}):n.jsx("div",{...t,style:{...t.style,backgroundColor:Z}},e))})]}),(X||W)&&F&&r.createPortal(n.jsxs("div",{style:{position:"fixed",left:F.x+16,top:F.y-16,background:"rgba(0,0,0,0.8)",color:"#fff",padding:"4px 8px",borderRadius:4,fontSize:12,fontFamily:"monospace",pointerEvents:"none",zIndex:1e4,whiteSpace:"nowrap"},children:[K.toFixed(0),"°"]}),document.body),S&&!X&&n.jsx(d.CounterRotate,{rect:{origin:{x:je,y:we},size:{width:Se,height:Ce}},rotation:l,children:e=>{const n=((V+90*l)%360+360)%360;return S({...e,context:{type:"group",annotations:p,pageIndex:t},selected:!0,placement:{suggestTop:H&&n>90&&n<270}})}})]})}function P(e){return{id:e.id,matches:e.matches?t=>e.matches(t):()=>!1,render:e.render?t=>e.render(t):()=>null,matchesPreview:e.matchesPreview,renderPreview:e.renderPreview?t=>e.renderPreview(t):void 0,previewContainerStyle:e.previewContainerStyle?t=>e.previewContainerStyle(t):void 0,vertexConfig:e.vertexConfig,zIndex:e.zIndex,defaultBlendMode:e.defaultBlendMode,containerStyle:e.containerStyle,interactionDefaults:e.interactionDefaults,useAppearanceStream:e.useAppearanceStream,isDraggable:e.isDraggable,onDoubleClick:e.onDoubleClick,selectOverride:e.selectOverride,hideSelectionMenu:e.hideSelectionMenu,hiddenWhenLocked:e.hiddenWhenLocked,renderLocked:e.renderLocked?t=>e.renderLocked(t):void 0}}function I({isSelected:e,strokeColor:t,opacity:o=1,strokeWidth:r,inkList:s,rect:a,scale:l,onClick:c,appearanceActive:d=!1}){const u=t??"#000000",p=i.useMemo(()=>s.map(({points:e})=>{let t="";return e.forEach(({x:e,y:n},o)=>{const i=e-a.origin.x,r=n-a.origin.y;t+=(0===o?"M":"L")+i+" "+r+" "}),t.trim()}),[s,a]),h=a.size.width*l,g=a.size.height*l,v=Math.max(r,20/l);return n.jsxs("svg",{style:{position:"absolute",width:h,height:g,pointerEvents:"none",zIndex:2,overflow:"visible"},width:h,height:g,viewBox:`0 0 ${a.size.width} ${a.size.height}`,children:[p.map((t,o)=>n.jsx("path",{d:t,fill:"none",stroke:"transparent",strokeWidth:v,onPointerDown:c,style:{cursor:e?"move":c?"pointer":"default",pointerEvents:c?e?"none":"visibleStroke":"none",strokeLinecap:"round",strokeLinejoin:"round"}},`hit-${o}`)),!d&&p.map((e,t)=>n.jsx("path",{d:e,fill:"none",opacity:o,style:{pointerEvents:"none",stroke:u,strokeWidth:r,strokeLinecap:"round",strokeLinejoin:"round"}},`vis-${t}`))]})}function z({isSelected:e,color:o="#000000",strokeColor:r,opacity:s=1,strokeWidth:l,strokeStyle:c=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:d,rect:u,scale:p,onClick:h,appearanceActive:g=!1,cloudyBorderIntensity:v,rectangleDifferences:f}){const x=(v??0)>0,{width:y,height:b,x:m,y:k}=i.useMemo(()=>{const e=u.size.width,t=u.size.height;return{width:Math.max(e-l,0),height:Math.max(t-l,0),x:l/2,y:l/2}},[u,l]),j=i.useMemo(()=>x?t.generateCloudyRectanglePath({x:0,y:0,width:u.size.width,height:u.size.height},f,v,l):null,[x,u,f,v,l]),w=u.size.width*p,S=u.size.height*p,C=Math.max(l,20/p);return n.jsxs("svg",{style:{position:"absolute",width:w,height:S,pointerEvents:"none",zIndex:2},width:w,height:S,viewBox:`0 0 ${u.size.width} ${u.size.height}`,overflow:"visible",children:[x&&j?n.jsx("path",{d:j.path,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:h,style:{cursor:e?"move":h?"pointer":"default",pointerEvents:h?e?"none":"transparent"===o?"visibleStroke":"visible":"none"}}):n.jsx("rect",{x:m,y:k,width:y,height:b,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:h,style:{cursor:e?"move":h?"pointer":"default",pointerEvents:h?e?"none":"transparent"===o?"visibleStroke":"visible":"none"}}),!g&&(x&&j?n.jsx("path",{d:j.path,fill:o,opacity:s,style:{pointerEvents:"none",stroke:r??o,strokeWidth:l,strokeLinejoin:"round"}}):n.jsx("rect",{x:m,y:k,width:y,height:b,fill:o,opacity:s,style:{pointerEvents:"none",stroke:r??o,strokeWidth:l,...c===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==d?void 0:d.join(",")}}}))]})}function R({color:e="#000000",strokeColor:o,opacity:r=1,strokeWidth:s,strokeStyle:l=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:c,rect:d,scale:u,onClick:p,isSelected:h,appearanceActive:g=!1,cloudyBorderIntensity:v,rectangleDifferences:f}){const x=(v??0)>0,{width:y,height:b,cx:m,cy:k,rx:j,ry:w}=i.useMemo(()=>{const e=d.size.width,t=d.size.height,n=Math.max(e-s,0),o=Math.max(t-s,0);return{width:e,height:t,cx:s/2+n/2,cy:s/2+o/2,rx:n/2,ry:o/2}},[d,s]),S=i.useMemo(()=>x?t.generateCloudyEllipsePath({x:0,y:0,width:d.size.width,height:d.size.height},f,v,s):null,[x,d,f,v,s]),C=y*u,A=b*u,P=Math.max(s,20/u);return n.jsxs("svg",{style:{position:"absolute",width:C,height:A,pointerEvents:"none",zIndex:2},width:C,height:A,viewBox:`0 0 ${y} ${b}`,overflow:"visible",children:[x&&S?n.jsx("path",{d:S.path,fill:"transparent",stroke:"transparent",strokeWidth:P,onPointerDown:p,style:{cursor:h?"move":p?"pointer":"default",pointerEvents:p?h?"none":"transparent"===e?"visibleStroke":"visible":"none"}}):n.jsx("ellipse",{cx:m,cy:k,rx:j,ry:w,fill:"transparent",stroke:"transparent",strokeWidth:P,onPointerDown:p,style:{cursor:h?"move":p?"pointer":"default",pointerEvents:p?h?"none":"transparent"===e?"visibleStroke":"visible":"none"}}),!g&&(x&&S?n.jsx("path",{d:S.path,fill:e,opacity:r,style:{pointerEvents:"none",stroke:o??e,strokeWidth:s,strokeLinejoin:"round"}}):n.jsx("ellipse",{cx:m,cy:k,rx:j,ry:w,fill:e,opacity:r,style:{pointerEvents:"none",stroke:o??e,strokeWidth:s,...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}))]})}function E({color:e="transparent",opacity:o=1,strokeWidth:r,strokeColor:s="#000000",strokeStyle:l=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:c,rect:d,linePoints:u,lineEndings:p,scale:h,onClick:g,isSelected:v,appearanceActive:f=!1}){const{x1:x,y1:y,x2:b,y2:m}=i.useMemo(()=>({x1:u.start.x-d.origin.x,y1:u.start.y-d.origin.y,x2:u.end.x-d.origin.x,y2:u.end.y-d.origin.y}),[u,d]),k=i.useMemo(()=>{const e=Math.atan2(m-y,b-x);return{start:t.patching.createEnding(null==p?void 0:p.start,r,e+Math.PI,x,y),end:t.patching.createEnding(null==p?void 0:p.end,r,e,b,m)}},[p,r,x,y,b,m]),j=d.size.width*h,w=d.size.height*h,S=Math.max(r,20/h);return n.jsxs("svg",{style:{position:"absolute",width:j,height:w,pointerEvents:"none",zIndex:2,overflow:"visible"},width:j,height:w,viewBox:`0 0 ${d.size.width} ${d.size.height}`,children:[n.jsx("line",{x1:x,y1:y,x2:b,y2:m,stroke:"transparent",strokeWidth:S,onPointerDown:g,style:{cursor:v?"move":g?"pointer":"default",pointerEvents:g?v?"none":"visibleStroke":"none",strokeLinecap:"butt"}}),k.start&&n.jsx("path",{d:k.start.d,transform:k.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:S,onPointerDown:g,style:{cursor:v?"move":g?"pointer":"default",pointerEvents:g?v?"none":k.start.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),k.end&&n.jsx("path",{d:k.end.d,transform:k.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:S,onPointerDown:g,style:{cursor:v?"move":g?"pointer":"default",pointerEvents:g?v?"none":k.end.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),!f&&n.jsxs(n.Fragment,{children:[n.jsx("line",{x1:x,y1:y,x2:b,y2:m,opacity:o,style:{pointerEvents:"none",stroke:s,strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}),k.start&&n.jsx("path",{d:k.start.d,transform:k.start.transform,stroke:s,fill:k.start.filled?e:"none",style:{pointerEvents:"none",strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}),k.end&&n.jsx("path",{d:k.end.d,transform:k.end.transform,stroke:s,fill:k.end.filled?e:"none",style:{pointerEvents:"none",strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}})]})]})}function D({rect:e,vertices:o,color:r="transparent",strokeColor:s="#000000",opacity:l=1,strokeWidth:c,strokeStyle:d=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:u,scale:p,isSelected:h,onClick:g,lineEndings:v,appearanceActive:f=!1}){const x=i.useMemo(()=>o.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[o,e]),y=i.useMemo(()=>{if(!x.length)return"";const[e,...t]=x;return`M ${e.x} ${e.y} `+t.map(e=>`L ${e.x} ${e.y} `).join("").trim()},[x]),b=i.useMemo(()=>{if(x.length<2)return{start:null,end:null};const e=(e,t)=>Math.atan2(t.y-e.y,t.x-e.x),n=e(x[0],x[1]),o=e(x[x.length-2],x[x.length-1]);return{start:t.patching.createEnding(null==v?void 0:v.start,c,n+Math.PI,x[0].x,x[0].y),end:t.patching.createEnding(null==v?void 0:v.end,c,o,x[x.length-1].x,x[x.length-1].y)}},[x,v,c]),m=e.size.width*p,k=e.size.height*p,j=Math.max(c,20/p);return n.jsxs("svg",{style:{position:"absolute",width:m,height:k,pointerEvents:"none",zIndex:2,overflow:"visible"},width:m,height:k,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:y,fill:"none",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":"visibleStroke":"none",strokeLinecap:"butt",strokeLinejoin:"miter"}}),b.start&&n.jsx("path",{d:b.start.d,transform:b.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":b.start.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),b.end&&n.jsx("path",{d:b.end.d,transform:b.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":b.end.filled?"visible":"visibleStroke":"none",strokeLinecap:"butt"}}),!f&&n.jsxs(n.Fragment,{children:[n.jsx("path",{d:y,opacity:l,style:{fill:"none",stroke:s??r,strokeWidth:c,pointerEvents:"none",strokeLinecap:"butt",strokeLinejoin:"miter",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}}),b.start&&n.jsx("path",{d:b.start.d,transform:b.start.transform,stroke:s,fill:b.start.filled?r:"none",style:{pointerEvents:"none",strokeWidth:c,strokeLinecap:"butt",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}}),b.end&&n.jsx("path",{d:b.end.d,transform:b.end.transform,stroke:s,fill:b.end.filled?r:"none",style:{pointerEvents:"none",strokeWidth:c,strokeLinecap:"butt",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}})]})]})}function M({rect:e,vertices:o,color:r="transparent",strokeColor:s="#000000",opacity:l=1,strokeWidth:c,strokeStyle:d=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:u,scale:p,isSelected:h,onClick:g,currentVertex:v,handleSize:f=14,appearanceActive:x=!1,cloudyBorderIntensity:y}){const b=(y??0)>0,m=v?[...o,v]:o,k=i.useMemo(()=>m.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[m,e]),j=i.useMemo(()=>{if(!k.length)return"";const[e,...t]=k,n=!!v;return(`M ${e.x} ${e.y} `+t.map(e=>`L ${e.x} ${e.y}`).join(" ")+(n?"":" Z")).trim()},[k,v]),w=i.useMemo(()=>!b||m.length<3?null:t.generateCloudyPolygonPath(m,e.origin,y,c),[b,m,e.origin,y,c]),S=v&&o.length>0,C=e.size.width*p,A=e.size.height*p,P=Math.max(c,20/p);return n.jsxs("svg",{style:{position:"absolute",width:C,height:A,pointerEvents:"none",zIndex:2,overflow:"visible"},width:C,height:A,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:b&&w?w.path:j,fill:"transparent",stroke:"transparent",strokeWidth:P,onPointerDown:g,style:{cursor:h?"move":g?"pointer":"default",pointerEvents:g?h?"none":"transparent"===r?"visibleStroke":"visible":"none",strokeLinecap:"butt",strokeLinejoin:"miter"}}),!x&&n.jsx(n.Fragment,{children:b&&w?n.jsx("path",{d:w.path,opacity:l,style:{fill:r,stroke:s??r,strokeWidth:c,pointerEvents:"none",strokeLinejoin:"round"}}):n.jsxs(n.Fragment,{children:[n.jsx("path",{d:j,opacity:l,style:{fill:v?"none":r,stroke:s??r,strokeWidth:c,pointerEvents:"none",strokeLinecap:"butt",strokeLinejoin:"miter",...d===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==u?void 0:u.join(",")}}}),S&&o.length>1&&n.jsx("path",{d:`M ${k[k.length-1].x} ${k[k.length-1].y} L ${k[0].x} ${k[0].y}`,fill:"none",style:{stroke:s,strokeWidth:c,strokeDasharray:"4,4",opacity:.7,pointerEvents:"none"}}),S&&o.length>=2&&n.jsx("rect",{x:k[0].x-f/p/2,y:k[0].y-f/p/2,width:f/p,height:f/p,fill:s,opacity:.4,stroke:s,strokeWidth:c/2,style:{pointerEvents:"none"}})]})})]})}function L({isSelected:e,color:t="#facc15",opacity:o=1,onClick:i,appearanceActive:r=!1}){const s=a.getContrastStrokeColor(t);return n.jsx("div",{style:{position:"absolute",inset:0,zIndex:2,pointerEvents:i?e?"none":"auto":"none",cursor:e?"move":i?"pointer":"default"},onPointerDown:i,children:!r&&n.jsxs("svg",{style:{position:"absolute",inset:0,pointerEvents:"none"},viewBox:"0 0 20 20",width:"100%",height:"100%",children:[n.jsx("path",{d:"M 0.5 15.5 L 0.5 0.5 L 19.5 0.5 L 19.5 15.5 L 8.5 15.5 L 6.5 19.5 L 4.5 15.5 Z",fill:t,opacity:o,stroke:s,strokeWidth:"1",strokeLinejoin:"miter"}),n.jsx("line",{x1:"2.5",y1:"4.25",x2:"17.5",y2:"4.25",stroke:s,strokeWidth:"1"}),n.jsx("line",{x1:"2.5",y1:"8",x2:"17.5",y2:"8",stroke:s,strokeWidth:"1"}),n.jsx("line",{x1:"2.5",y1:"11.75",x2:"17.5",y2:"11.75",stroke:s,strokeWidth:"1"})]})})}function $({documentId:e,isSelected:t,isEditing:o,annotation:r,pageIndex:s,scale:l,onClick:c,appearanceActive:d=!1}){const u=i.useRef(null),h=i.useRef(!1),{provides:g}=y(),v=(null==g?void 0:g.forDocument(e))??null,{adjustedFontPx:f,wrapperStyle:x}=k(r.object.fontSize*l,o);i.useEffect(()=>{var e;if(o&&u.current){h.current=!0;const t=u.current;t.focus();const n=null==v?void 0:v.findToolForAnnotation(r.object),o=null!=(null==(e=null==n?void 0:n.defaults)?void 0:e.contents)&&r.object.contents===n.defaults.contents,i=window.getSelection();if(i){const e=document.createRange();e.selectNodeContents(t),o||e.collapse(!1),i.removeAllRanges(),i.addRange(e)}}},[o]);return n.jsx("div",{style:{position:"absolute",width:r.object.rect.size.width*l,height:r.object.rect.size.height*l,cursor:t&&!o?"move":"default",pointerEvents:c?t&&!o?"none":"auto":"none",zIndex:2,opacity:d?0:1},onPointerDown:c,children:n.jsx("span",{ref:u,onBlur:()=>{h.current&&(h.current=!1,v&&u.current&&v.updateAnnotation(s,r.object.id,{contents:u.current.innerText.replace(/\u00A0/g," ")}))},tabIndex:0,style:{color:r.object.fontColor,fontSize:f,...a.standardFontCssProperties(r.object.fontFamily),textAlign:a.textAlignmentToCss(r.object.textAlign),flexDirection:"column",justifyContent:r.object.verticalAlign===a.PdfVerticalAlignment.Top?"flex-start":r.object.verticalAlign===a.PdfVerticalAlignment.Middle?"center":"flex-end",display:"flex",backgroundColor:r.object.color??r.object.backgroundColor,opacity:r.object.opacity,width:"100%",height:"100%",lineHeight:"1.18",overflow:"hidden",cursor:o?"text":c?"pointer":"default",outline:"none",...x},contentEditable:o,...p,children:r.object.contents})})}function F({documentId:e,isSelected:o,isEditing:r,annotation:s,pageIndex:l,scale:c,onClick:d,appearanceActive:u=!1}){const h=i.useRef(null),g=i.useRef(!1),{provides:v}=y(),f=(null==v?void 0:v.forDocument(e))??null,x=s.object,b=x.rect,m=x.rectangleDifferences,j=x.calloutLine,w=x.strokeWidth??1,S=x.strokeColor??"#000000",C=i.useMemo(()=>t.patching.computeTextBoxFromRD(b,m),[b,m]),A=i.useMemo(()=>({left:(C.origin.x-b.origin.x+w/2)*c,top:(C.origin.y-b.origin.y+w/2)*c,width:(C.size.width-w)*c,height:(C.size.height-w)*c}),[C,b,c,w]),P=i.useMemo(()=>!j||j.length<3?null:j.map(e=>({x:e.x-b.origin.x,y:e.y-b.origin.y})),[j,b]),I=i.useMemo(()=>{if(!P||P.length<2)return null;const e=Math.atan2(P[1].y-P[0].y,P[1].x-P[0].x);return t.patching.createEnding(x.lineEnding,w,e+Math.PI,P[0].x,P[0].y)},[P,x.lineEnding,w]),z=i.useMemo(()=>{if(!P||P.length<2)return P;const e=P.map(e=>({...e})),t=e.length-1,n=t-1,o=e[t].x-e[n].x,i=e[t].y-e[n].y,r=Math.sqrt(o*o+i*i);if(r>0){const n=w/2;e[t].x+=o/r*n,e[t].y+=i/r*n}return e},[P,w]),{adjustedFontPx:R,wrapperStyle:E}=k(x.fontSize*c,r);i.useEffect(()=>{var e;if(r&&h.current){g.current=!0;const t=h.current;t.focus();const n=null==f?void 0:f.findToolForAnnotation(x),o=null!=(null==(e=null==n?void 0:n.defaults)?void 0:e.contents)&&x.contents===n.defaults.contents,i=window.getSelection();if(i){const e=document.createRange();e.selectNodeContents(t),o||e.collapse(!1),i.removeAllRanges(),i.addRange(e)}}},[r]);const D=b.size.width*c,M=b.size.height*c,L=Math.max(w,20/c);return n.jsxs("div",{style:{position:"absolute",width:D,height:M,cursor:o&&!r?"move":"default",pointerEvents:"none",zIndex:2,opacity:u?0:1},children:[n.jsxs("svg",{style:{position:"absolute",width:D,height:M,pointerEvents:"none",overflow:"visible"},width:D,height:M,viewBox:`0 0 ${b.size.width} ${b.size.height}`,children:[P&&n.jsxs(n.Fragment,{children:[n.jsx("polyline",{points:P.map(e=>`${e.x},${e.y}`).join(" "),fill:"none",stroke:"transparent",strokeWidth:L,onPointerDown:d?e=>d(e):void 0,style:{cursor:o?"move":d?"pointer":"default",pointerEvents:d?o?"none":"visibleStroke":"none"}}),I&&n.jsx("path",{d:I.d,transform:I.transform,fill:"transparent",stroke:"transparent",strokeWidth:L,onPointerDown:d?e=>d(e):void 0,style:{cursor:o?"move":d?"pointer":"default",pointerEvents:d?o?"none":I.filled?"visible":"visibleStroke":"none"}})]}),!u&&n.jsxs(n.Fragment,{children:[z&&n.jsxs(n.Fragment,{children:[n.jsx("polyline",{points:z.map(e=>`${e.x},${e.y}`).join(" "),fill:"none",stroke:S,strokeWidth:w,opacity:x.opacity,style:{pointerEvents:"none"}}),I&&n.jsx("path",{d:I.d,transform:I.transform,stroke:S,fill:I.filled?x.color??"transparent":"none",strokeWidth:w,opacity:x.opacity,style:{pointerEvents:"none"}})]}),n.jsx("rect",{x:C.origin.x-b.origin.x+w/2,y:C.origin.y-b.origin.y+w/2,width:C.size.width-w,height:C.size.height-w,fill:x.color??x.backgroundColor??"transparent",stroke:S,strokeWidth:w,opacity:x.opacity,style:{pointerEvents:"none"}})]})]}),n.jsx("div",{onPointerDown:d?e=>d(e):void 0,style:{position:"absolute",left:(C.origin.x-b.origin.x)*c,top:(C.origin.y-b.origin.y)*c,width:C.size.width*c,height:C.size.height*c,cursor:o&&!r?"move":d?"pointer":"default",pointerEvents:d?o&&!r?"none":"auto":"none"}}),n.jsx("span",{ref:h,onBlur:()=>{g.current&&(g.current=!1,f&&h.current&&f.updateAnnotation(l,x.id,{contents:h.current.innerText.replace(/\u00A0/g," ")}))},tabIndex:0,style:{position:"absolute",left:A.left,top:A.top,width:A.width,height:A.height,color:x.fontColor,fontSize:R,...a.standardFontCssProperties(x.fontFamily),textAlign:a.textAlignmentToCss(x.textAlign),flexDirection:"column",justifyContent:x.verticalAlign===a.PdfVerticalAlignment.Top?"flex-start":x.verticalAlign===a.PdfVerticalAlignment.Middle?"center":"flex-end",display:"flex",padding:w*c/2+2*c,opacity:x.opacity,lineHeight:"1.18",overflow:"hidden",cursor:r?"text":"default",outline:"none",pointerEvents:r?"auto":"none",...E},contentEditable:r,...p,children:x.contents})]})}function O({calloutLine:e,textBox:i,bounds:r,scale:s,strokeColor:a,strokeWidth:l,color:c,backgroundColor:d,opacity:u,lineEnding:p}){if(!e||e.length<2)return n.jsx(o.Fragment,{});const h=l??1,g=a??"#000000",v=u??1,f=r.size.width,x=r.size.height,y=r.origin.x,b=r.origin.y,m=e.map(e=>({x:e.x-y,y:e.y-b})),k=Math.atan2(m[1].y-m[0].y,m[1].x-m[0].x),j=t.patching.createEnding(p,h,k+Math.PI,m[0].x,m[0].y),w=h/2;return n.jsxs("svg",{style:{position:"absolute",width:f*s,height:x*s,pointerEvents:"none",overflow:"visible"},width:f*s,height:x*s,viewBox:`0 0 ${f} ${x}`,children:[n.jsx("polyline",{points:m.map(e=>`${e.x},${e.y}`).join(" "),fill:"none",stroke:g,strokeWidth:h,opacity:v}),j&&n.jsx("path",{d:j.d,transform:j.transform,stroke:g,fill:j.filled?c??"transparent":"none",strokeWidth:h,opacity:v}),i&&n.jsx("rect",{x:i.origin.x-y+w,y:i.origin.y-b+w,width:i.size.width-h,height:i.size.height-h,fill:c??d??"transparent",stroke:g,strokeWidth:h,opacity:v})]})}function W({documentId:e,pageIndex:t,annotation:r,scaleFactor:s=1,unrotated:l,style:c,...d}){const{provides:u}=y(),[p,h]=i.useState(null),g=i.useRef(null),{width:v,height:f}=r.rect.size;i.useEffect(()=>{if(u){const n=u.forDocument(e).renderAnnotation({pageIndex:t,annotation:r,options:{scaleFactor:s,dpr:window.devicePixelRatio,unrotated:l}});return n.wait(e=>{const t=URL.createObjectURL(e);h(t),g.current=t},a.ignore),()=>{g.current?(URL.revokeObjectURL(g.current),g.current=null):n.abort({code:a.PdfErrorCode.Cancelled,message:"canceled render task"})}}},[t,s,l,u,e,r.id,v,f]);return n.jsx(o.Fragment,{children:p&&n.jsx("img",{src:p,onLoad:()=>{g.current&&(URL.revokeObjectURL(g.current),g.current=null)},...d,style:{width:"100%",height:"100%",display:"block",...c||{}}})})}function B({isSelected:e,annotation:t,documentId:o,pageIndex:i,scale:r,onClick:s}){const a=!!t.object.rotation&&!!t.object.unrotatedRect;return n.jsx("div",{style:{position:"absolute",width:"100%",height:"100%",zIndex:2,pointerEvents:s?e?"none":"auto":"none",cursor:s?"pointer":"default"},onPointerDown:s,children:n.jsx(W,{documentId:o,pageIndex:i,annotation:{...t.object,id:t.object.id},scaleFactor:r,unrotated:a})})}function T({isSelected:e,strokeColor:t="#0000FF",strokeWidth:o=2,strokeStyle:r=a.PdfAnnotationBorderStyle.UNDERLINE,strokeDashArray:s,rect:l,scale:c,onClick:d,hasIRT:u=!1}){const{width:p,height:h}=i.useMemo(()=>({width:l.size.width,height:l.size.height}),[l]),g=p*c,v=h*c,f=i.useMemo(()=>{if(r===a.PdfAnnotationBorderStyle.DASHED)return(null==s?void 0:s.join(","))??`${3*o},${o}`},[r,s,o]),x=r===a.PdfAnnotationBorderStyle.UNDERLINE;return n.jsxs("svg",{style:{position:"absolute",width:g,height:v,pointerEvents:"none",zIndex:2},width:g,height:v,viewBox:`0 0 ${p} ${h}`,children:[n.jsx("rect",{x:0,y:0,width:p,height:h,fill:"transparent",onPointerDown:u?void 0:d,style:{cursor:u||!d?"default":e?"move":"pointer",pointerEvents:u||!d||e?"none":"visible"}}),x?n.jsx("line",{x1:1,y1:h-1,x2:p-1,y2:h-1,stroke:t,strokeWidth:o,strokeDasharray:f,style:{pointerEvents:"none"}}):n.jsx("rect",{x:o/2,y:o/2,width:Math.max(p-o,0),height:Math.max(h-o,0),fill:"transparent",stroke:t,strokeWidth:o,strokeDasharray:f,style:{pointerEvents:"none"}})]})}function U({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=e??"#FFFF00";return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:l?"transparent":c,opacity:l?void 0:t,pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:void 0,...a}},o))})}function H({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=e??"#FFFF00",d=2*r;return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:"transparent",pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:0,...a},children:!l&&n.jsx("div",{style:{position:"absolute",left:0,bottom:0,width:"100%",height:d,background:c,opacity:t,pointerEvents:"none"}})},o))})}function N({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=e??"#FFFF00",d=2*r;return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:"transparent",pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:0,...a},children:!l&&n.jsx("div",{style:{position:"absolute",left:0,top:"50%",width:"100%",height:d,background:c,opacity:t,transform:"translateY(-50%)",pointerEvents:"none"}})},o))})}function G({strokeColor:e,opacity:t=.5,segmentRects:o,rect:i,scale:r,onClick:s,style:a,appearanceActive:l=!1}){const c=2*r,d=6*r,u=`url("data:image/svg+xml;utf8,${encodeURIComponent(`<svg xmlns="http://www.w3.org/2000/svg" width="${d}" height="${2*c}" viewBox="0 0 ${d} ${2*c}">\n <path d="M0 ${c} Q ${d/4} 0 ${d/2} ${c} T ${d} ${c}"\n fill="none" stroke="${e??"#FFFF00"}" stroke-width="${c}" stroke-linecap="round"/>\n </svg>`)}")`;return n.jsx(n.Fragment,{children:o.map((e,o)=>n.jsx("div",{onPointerDown:s,style:{position:"absolute",left:(i?e.origin.x-i.origin.x:e.origin.x)*r,top:(i?e.origin.y-i.origin.y:e.origin.y)*r,width:e.size.width*r,height:e.size.height*r,background:"transparent",pointerEvents:s?"auto":"none",cursor:s?"pointer":"default",zIndex:s?1:0,...a},children:!l&&n.jsx("div",{style:{position:"absolute",left:0,bottom:0,width:"100%",height:2*c,backgroundImage:u,backgroundRepeat:"repeat-x",backgroundSize:`${d}px ${2*c}px`,opacity:t,pointerEvents:"none"}})},o))})}function q({isSelected:e,strokeColor:t="#000000",opacity:o=1,rect:r,scale:s,onClick:a,appearanceActive:l=!1}){const{width:c,height:d,path:u}=i.useMemo(()=>{const e=r.size.width,t=r.size.height,n=e/2;return{width:e,height:t,path:[`M 0 ${t}`,`C ${.27*e} ${t} ${n} ${t-.44*t} ${n} 0`,`C ${n} ${t-.44*t} ${e-.27*e} ${t} ${e} ${t}`,"Z"].join(" ")}},[r]),p=c*s,h=d*s;return n.jsxs("svg",{style:{position:"absolute",width:p,height:h,pointerEvents:"none",zIndex:2},width:p,height:h,viewBox:`0 0 ${c} ${d}`,overflow:"visible",children:[n.jsx("path",{d:u,fill:"transparent",stroke:"transparent",strokeWidth:4,onPointerDown:a,style:{cursor:e?"move":a?"pointer":"default",pointerEvents:a?e?"none":"visible":"none"}}),!l&&n.jsx("path",{d:u,fill:t,stroke:t,strokeWidth:.5,opacity:o,fillRule:"evenodd",style:{pointerEvents:"none"}})]})}function Y({annotation:e,documentId:t}){const{provides:o}=y(),r=i.useCallback(()=>{const n=e.object.target;n&&o&&o.forDocument(t).navigateTarget(n)},[e.object.target,o,t]);return n.jsx("div",{onClick:r,style:{width:"100%",height:"100%",cursor:"pointer",pointerEvents:"auto"}})}const V=[P({id:"ink",matches:e=>e.type===a.PdfAnnotationSubtype.INK,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.INK,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(I,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),renderPreview:({data:e,scale:t})=>n.jsx(I,{isSelected:!1,scale:t,...e}),previewContainerStyle:({data:e})=>({mixBlendMode:a.blendModeToCss(e.blendMode??a.PdfBlendMode.Normal)}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"square",matches:e=>e.type===a.PdfAnnotationSubtype.SQUARE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.SQUARE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(z,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),renderPreview:({data:e,scale:t})=>n.jsx(z,{isSelected:!1,scale:t,...e}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"circle",matches:e=>e.type===a.PdfAnnotationSubtype.CIRCLE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.CIRCLE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(R,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),renderPreview:({data:e,scale:t})=>n.jsx(R,{isSelected:!1,scale:t,...e}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"line",matches:e=>e.type===a.PdfAnnotationSubtype.LINE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.LINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(E,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),renderPreview:({data:e,scale:t})=>n.jsx(E,{isSelected:!1,scale:t,...e}),vertexConfig:{extractVertices:e=>[e.linePoints.start,e.linePoints.end],transformAnnotation:(e,t)=>({...e,linePoints:{start:t[0],end:t[1]}})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),P({id:"polyline",matches:e=>e.type===a.PdfAnnotationSubtype.POLYLINE,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.POLYLINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(D,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),renderPreview:({data:e,scale:t})=>n.jsx(D,{isSelected:!1,scale:t,...e}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),P({id:"polygon",matches:e=>e.type===a.PdfAnnotationSubtype.POLYGON,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.POLYGON,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(M,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),renderPreview:({data:e,scale:t})=>n.jsx(M,{isSelected:!1,scale:t,...e}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),P({id:"highlight",matches:e=>e.type===a.PdfAnnotationSubtype.HIGHLIGHT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(U,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1},defaultBlendMode:a.PdfBlendMode.Multiply}),P({id:"underline",matches:e=>e.type===a.PdfAnnotationSubtype.UNDERLINE,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(H,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"strikeout",matches:e=>e.type===a.PdfAnnotationSubtype.STRIKEOUT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(N,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"squiggly",matches:e=>e.type===a.PdfAnnotationSubtype.SQUIGGLY,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(G,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"text",matches:e=>e.type===a.PdfAnnotationSubtype.TEXT&&!e.inReplyToId,render:({currentObject:e,isSelected:t,onClick:o,appearanceActive:i})=>n.jsx(L,{isSelected:t,color:e.strokeColor??e.color,opacity:e.opacity,onClick:o,appearanceActive:i}),interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!1}}),P({id:"caret",matches:e=>e.type===a.PdfAnnotationSubtype.CARET,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(q,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),P({id:"freeTextCallout",matches:e=>e.type===a.PdfAnnotationSubtype.FREETEXT&&"FreeTextCallout"===e.intent,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.FREETEXT&&!!e.data.calloutLine,render:({annotation:e,currentObject:t,isSelected:o,isEditing:i,scale:r,pageIndex:s,documentId:a,onClick:l,appearanceActive:c})=>n.jsx(F,{documentId:a,isSelected:o,isEditing:i,annotation:{...e,object:t},pageIndex:s,scale:r,onClick:l,appearanceActive:c}),renderPreview:({data:e,bounds:t,scale:o})=>n.jsx(O,{calloutLine:e.calloutLine,textBox:e.textBox,bounds:t,scale:o,strokeColor:e.strokeColor,strokeWidth:e.strokeWidth,color:e.color,backgroundColor:e.backgroundColor,opacity:e.opacity,lineEnding:e.lineEnding}),vertexConfig:t.patching.calloutVertexConfig,interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!1},isDraggable:(e,{isEditing:t})=>e&&!t,onDoubleClick:(e,t)=>t(e)}),P({id:"freeText",matches:e=>e.type===a.PdfAnnotationSubtype.FREETEXT&&"FreeTextCallout"!==e.intent,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.FREETEXT&&!e.data.calloutLine,render:({annotation:e,currentObject:t,isSelected:o,isEditing:i,scale:r,pageIndex:s,documentId:a,onClick:l,appearanceActive:c})=>n.jsx($,{documentId:a,isSelected:o,isEditing:i,annotation:{...e,object:t},pageIndex:s,scale:r,onClick:l,appearanceActive:c}),renderPreview:({data:e})=>n.jsx("div",{style:{width:"100%",height:"100%",border:`1px dashed ${e.fontColor||"#000000"}`,backgroundColor:"transparent"}}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0},isDraggable:(e,{isEditing:t})=>e&&!t,onDoubleClick:(e,t)=>t(e)}),P({id:"stamp",matches:e=>e.type===a.PdfAnnotationSubtype.STAMP,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.STAMP,render:({annotation:e,isSelected:t,documentId:o,pageIndex:i,scale:r,onClick:s})=>n.jsx(B,{isSelected:t,annotation:e,documentId:o,pageIndex:i,scale:r,onClick:s}),renderPreview:({data:e})=>{const t=(4-e.pageRotation)%4*90;return n.jsx("img",{src:e.ghostUrl,style:{width:"100%",height:"100%",opacity:.6,objectFit:"contain",pointerEvents:"none",transform:t?`rotate(${t}deg)`:void 0},alt:""})},useAppearanceStream:!1,interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),P({id:"link",matches:e=>e.type===a.PdfAnnotationSubtype.LINK,matchesPreview:e=>e.type===a.PdfAnnotationSubtype.LINK,render:({currentObject:e,isSelected:t,scale:o,onClick:i})=>n.jsx(T,{...e,isSelected:t,scale:o,onClick:i,hasIRT:!!e.inReplyToId}),renderPreview:({data:e,bounds:t,scale:o})=>n.jsx("div",{style:{position:"absolute",left:0,top:0,width:t.size.width*o,height:t.size.height*o,borderBottom:`${e.strokeWidth*o}px solid ${e.strokeColor}`,backgroundColor:"rgba(0, 0, 255, 0.05)",boxSizing:"border-box"}}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!1},useAppearanceStream:!1,selectOverride:(e,t,n)=>{if(e.stopPropagation(),n.clearSelection(),t.object.inReplyToId){const e=n.allAnnotations.find(e=>e.object.id===t.object.inReplyToId);if(e)return void n.selectAnnotation(e.object.pageIndex,e.object.id)}n.selectAnnotation(n.pageIndex,t.object.id)},hideSelectionMenu:e=>!!e.inReplyToId,renderLocked:e=>n.jsx(Y,{...e})})];function X(e){const{documentId:o,pageIndex:r,scale:s,pageWidth:d,pageHeight:u,selectionMenu:p}=e,{provides:h}=y(),{provides:g}=c.useSelectionCapability(),[v,f]=i.useState([]),{register:x}=l.usePointerHandlers({documentId:o,pageIndex:r}),[b,m]=i.useState([]),[k,j]=i.useState(null),[S,C]=i.useState({}),[P,I]=i.useState({type:t.LockModeType.None}),z=i.useRef(s),R=i.useMemo(()=>h?h.forDocument(o):null,[h,o]),E=b.length>1;i.useEffect(()=>{if(R){const e=R.getState();return f(t.getAnnotationsByPageIndex(e,r)),m(t.getSelectedAnnotationIds(e)),I(e.locked),R.onStateChange(e=>{f(t.getAnnotationsByPageIndex(e,r)),m(t.getSelectedAnnotationIds(e)),I(e.locked)})}},[R,r]),i.useEffect(()=>{if(R)return R.onAnnotationEvent(e=>{"create"===e.type&&e.editAfterCreate&&j(e.annotation.id)})},[R]),i.useEffect(()=>{if(!R)return;z.current!==s&&(R.invalidatePageAppearances(r),z.current=s);R.getPageAppearances(r,{scaleFactor:s,dpr:"undefined"!=typeof window?window.devicePixelRatio:1}).wait(e=>C(e),()=>C({}))},[R,r,s]);const D=i.useMemo(()=>({onPointerDown:(e,t)=>{t.target===t.currentTarget&&R&&(k&&v.some(e=>e.object.id===k)&&t.stopImmediatePropagation(),R.deselectAnnotation(),j(null))}}),[R,k,v]),M=i.useCallback((e,t)=>{if(e.stopPropagation(),R&&g){g.clear();"metaKey"in e&&(e.metaKey||e.ctrlKey)?R.toggleSelection(r,t.object.id):R.selectAnnotation(r,t.object.id),t.object.id!==k&&j(null)}},[R,g,k,r]);i.useEffect(()=>x(D,{documentId:o}),[x,D]);const L=i.useMemo(()=>v.filter(e=>b.includes(e.object.id)),[v,b]),$=i.useMemo(()=>!(L.length<2)&&L.every(e=>{const n=null==R?void 0:R.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.isGroupDraggable,e.object,!0),i=t.resolveInteractionProp(null==n?void 0:n.interaction.isDraggable,e.object,!0);return void 0!==(null==n?void 0:n.interaction.isGroupDraggable)?o:i}),[L,R]),F=i.useMemo(()=>!(L.length<2)&&L.every(e=>{const n=null==R?void 0:R.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.isGroupResizable,e.object,!0),i=t.resolveInteractionProp(null==n?void 0:n.interaction.isResizable,e.object,!0);return void 0!==(null==n?void 0:n.interaction.isGroupResizable)?o:i}),[L,R]),O=i.useMemo(()=>!(L.length<2)&&L.every(e=>{const n=null==R?void 0:R.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.isGroupRotatable,e.object,!0),i=t.resolveInteractionProp(null==n?void 0:n.interaction.isRotatable,e.object,!0);return void 0!==(null==n?void 0:n.interaction.isGroupRotatable)?o:i}),[L,R]),W=i.useMemo(()=>!(L.length<2)&&L.some(e=>{const n=null==R?void 0:R.findToolForAnnotation(e.object),o=t.resolveInteractionProp(null==n?void 0:n.interaction.lockGroupAspectRatio,e.object,!1),i=t.resolveInteractionProp(null==n?void 0:n.interaction.lockAspectRatio,e.object,!1);return void 0!==(null==n?void 0:n.interaction.lockGroupAspectRatio)?o:i}),[L,R]),B=i.useMemo(()=>{if(!R)return!1;const e=R.getSelectedAnnotations();return e.length>1&&e.every(e=>e.object.pageIndex===r)},[R,r,b]),T=i.useCallback(e=>{if(e.dictMode)return null;if(e.object.rotation&&e.object.unrotatedRect)return null;const t=S[e.object.id];return(null==t?void 0:t.normal)?t:null},[S]),U=i.useMemo(()=>{const t=e.annotationRenderers??[],n=new Set(t.map(e=>e.id));return[...t,...V.filter(e=>!n.has(e.id))]},[e.annotationRenderers]),H=i.useCallback(e=>U.find(t=>t.matches(e.object))??null,[U]),N=i.useMemo(()=>({defaultSelect:M,selectAnnotation:(e,t)=>null==R?void 0:R.selectAnnotation(e,t),clearSelection:()=>null==g?void 0:g.clear(),allAnnotations:v,pageIndex:r}),[M,R,g,v,r]);return n.jsxs(n.Fragment,{children:[v.map(i=>{var l,c,d;const u=H(i);if(!u)return null;const h=(null==R?void 0:R.findToolForAnnotation(i.object))??null,g=t.getAnnotationCategories(h),v=t.hasLockedFlag(i.object)||t.isCategoryLocked(g,P);if(v&&u.hiddenWhenLocked)return null;const f=v&&!!u.renderLocked,x=!v&&b.includes(i.object.id),y=!v&&k===i.object.id,m=u.interactionDefaults,S=t.resolveInteractionProp(null==h?void 0:h.interaction.isDraggable,i.object,(null==m?void 0:m.isDraggable)??!0),C=!v&&(u.isDraggable?u.isDraggable(S,{isEditing:y}):S),A=(null==(l=null==h?void 0:h.behavior)?void 0:l.useAppearanceStream)??u.useAppearanceStream??!0,I=f?void 0:A?T(i):void 0,z=v?e=>{e.stopPropagation()}:u.selectOverride?e=>u.selectOverride(e,i,N):e=>M(e,i);return n.jsx(w,{trackedAnnotation:i,isSelected:x,isEditing:y,isMultiSelected:!v&&E,isDraggable:C,isResizable:!v&&t.resolveInteractionProp(null==h?void 0:h.interaction.isResizable,i.object,(null==m?void 0:m.isResizable)??!1),lockAspectRatio:t.resolveInteractionProp(null==h?void 0:h.interaction.lockAspectRatio,i.object,(null==m?void 0:m.lockAspectRatio)??!1),isRotatable:!v&&t.resolveInteractionProp(null==h?void 0:h.interaction.isRotatable,i.object,(null==m?void 0:m.isRotatable)??!1),vertexConfig:v?void 0:u.vertexConfig,selectionMenu:v||(null==(c=u.hideSelectionMenu)?void 0:c.call(u,i.object))?void 0:p,onSelect:z,onDoubleClick:v?void 0:u.onDoubleClick?e=>{e.stopPropagation(),u.onDoubleClick(i.object.id,j)}:void 0,zIndex:u.zIndex,blendMode:a.blendModeToCss(i.object.blendMode??u.defaultBlendMode??a.PdfBlendMode.Normal),style:null==(d=u.containerStyle)?void 0:d.call(u,i.object),appearance:I,...e,children:(e,{appearanceActive:t})=>f?u.renderLocked({annotation:i,currentObject:e,isSelected:!1,isEditing:!1,scale:s,pageIndex:r,documentId:o,onClick:void 0,appearanceActive:t}):u.render({annotation:i,currentObject:e,isSelected:x,isEditing:y,scale:s,pageIndex:r,documentId:o,onClick:v?void 0:z,appearanceActive:t})},i.object.id)}),B&&L.length>=2&&n.jsx(A,{documentId:o,pageIndex:r,scale:s,rotation:e.rotation,pageWidth:d,pageHeight:u,selectedAnnotations:L,isDraggable:$,isResizable:F,isRotatable:O,lockAspectRatio:W,resizeUI:e.resizeUI,rotationUI:e.rotationUI,selectionOutlineColor:e.selectionOutlineColor,selectionOutline:e.groupSelectionOutline??e.selectionOutline,groupSelectionMenu:e.groupSelectionMenu})]})}function K({documentId:e,pageIndex:t,scale:o}){var r,s,l,d,u,p,h,g,v,f,x,b;const{provides:m}=c.useSelectionCapability(),{provides:k}=y(),[j,w]=i.useState([]),[S,C]=i.useState(null),[A,P]=i.useState(null);if(i.useEffect(()=>{if(m)return m.forDocument(e).onSelectionChange(()=>{w(m.forDocument(e).getHighlightRectsForPage(t)),C(m.forDocument(e).getBoundingRectForPage(t))})},[m,e,t]),i.useEffect(()=>{if(k)return P(k.forDocument(e).getActiveTool()),k.forDocument(e).onActiveToolChange(e=>P(e))},[k,e]),!S)return null;if(!A||!A.defaults)return null;switch(A.defaults.type){case a.PdfAnnotationSubtype.UNDERLINE:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(r=A.defaults)?void 0:r.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(H,{strokeColor:null==(s=A.defaults)?void 0:s.strokeColor,opacity:null==(l=A.defaults)?void 0:l.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.HIGHLIGHT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(d=A.defaults)?void 0:d.blendMode)??a.PdfBlendMode.Multiply),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(U,{strokeColor:null==(u=A.defaults)?void 0:u.strokeColor,opacity:null==(p=A.defaults)?void 0:p.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.STRIKEOUT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(h=A.defaults)?void 0:h.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(N,{strokeColor:null==(g=A.defaults)?void 0:g.strokeColor,opacity:null==(v=A.defaults)?void 0:v.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.SQUIGGLY:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(f=A.defaults)?void 0:f.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(G,{strokeColor:null==(x=A.defaults)?void 0:x.strokeColor,opacity:null==(b=A.defaults)?void 0:b.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.CARET:default:return null}}function Z({toolId:e,preview:t,scale:o}){var r;const{bounds:s}=t,a=f(),l=i.useMemo(()=>{const e=new Set(a.map(e=>e.id));return[...a,...V.filter(t=>!e.has(t.id))]},[a]),c={position:"absolute",left:s.origin.x*o,top:s.origin.y*o,width:s.size.width*o,height:s.size.height*o,pointerEvents:"none",zIndex:10},d=l.find(e=>{var n;return(null==(n=e.matchesPreview)?void 0:n.call(e,t))&&e.renderPreview})??l.find(t=>t.id===e&&t.renderPreview);if(null==d?void 0:d.renderPreview){const e=null==(r=d.previewContainerStyle)?void 0:r.call(d,{data:t.data,bounds:t.bounds,scale:o});return n.jsx("div",{style:{...c,...e},children:d.renderPreview({data:t.data,bounds:t.bounds,scale:o})})}return null}function Q({documentId:e,pageIndex:t,scale:o}){const{plugin:r}=x(),[s,a]=i.useState(new Map),l=i.useRef(null),c=i.useMemo(()=>({requestFile:({accept:e,onFile:t})=>{if(!l.current)return;const n=l.current;n.accept=e,n.onchange=e=>{var o;const i=null==(o=e.target.files)?void 0:o[0];i&&(t(i),n.value="")},n.click()}}),[]);return i.useEffect(()=>{if(r)return r.registerPageHandlers(e,t,o,{services:c,onPreview:(e,t)=>{a(n=>{const o=new Map(n);return t?o.set(e,t):o.delete(e),o})}})},[e,t,o,r,c]),n.jsxs(n.Fragment,{children:[n.jsx("input",{ref:l,type:"file",style:{display:"none"}}),Array.from(s.entries()).map(([e,t])=>n.jsx(Z,{toolId:e,preview:t,scale:o},e))]})}const _=e.createPluginPackage(t.AnnotationPluginPackage).addWrapper(v).addUtility(function(){const{plugin:e}=x(),{provides:t}=y();return i.useEffect(()=>{if(t&&e)return t.onNavigate(t=>{"uri"===t.result.outcome&&!1!==e.config.autoOpenLinks&&window.open(t.result.uri,"_blank","noopener,noreferrer")})},[t,e]),null}).build();exports.AnnotationLayer=function({style:e,documentId:t,pageIndex:o,scale:r,rotation:a,selectionMenu:l,groupSelectionMenu:c,resizeUI:d,vertexUI:u,rotationUI:p,selectionOutlineColor:h,selectionOutline:g,groupSelectionOutline:v,customAnnotationRenderer:x,annotationRenderers:y,...b}){var m,k,j,w;const S=s.useDocumentState(t),C=null==(k=null==(m=null==S?void 0:S.document)?void 0:m.pages)?void 0:k[o],A=(null==(j=null==C?void 0:C.size)?void 0:j.width)??0,P=(null==(w=null==C?void 0:C.size)?void 0:w.height)??0,I=f(),z=i.useMemo(()=>{const e=[...I];for(const t of y??[]){const n=e.findIndex(e=>e.id===t.id);n>=0?e[n]=t:e.push(t)}return e},[I,y]),R=i.useMemo(()=>void 0!==r?r:(null==S?void 0:S.scale)??1,[r,null==S?void 0:S.scale]),E=i.useMemo(()=>{if(void 0!==a)return a;return(((null==C?void 0:C.rotation)??0)+((null==S?void 0:S.rotation)??0))%4},[a,null==C?void 0:C.rotation,null==S?void 0:S.rotation]);return n.jsxs("div",{style:{...e},...b,children:[n.jsx(X,{documentId:t,selectionMenu:l,groupSelectionMenu:c,pageIndex:o,scale:R,rotation:E,pageWidth:A,pageHeight:P,resizeUI:d,vertexUI:u,rotationUI:p,selectionOutlineColor:h,selectionOutline:g,groupSelectionOutline:v,customAnnotationRenderer:x,annotationRenderers:z}),n.jsx(K,{documentId:t,pageIndex:o,scale:R}),n.jsx(Q,{documentId:t,pageIndex:o,scale:R})]})},exports.AnnotationPluginPackage=_,exports.AnnotationRendererProvider=v,exports.GroupSelectionBox=A,exports.createRenderer=P,exports.useAnnotation=e=>{var n;const{provides:o}=y(),[r,s]=i.useState((null==(n=null==o?void 0:o.forDocument(e))?void 0:n.getState())??t.initialDocumentState());return i.useEffect(()=>{if(!o)return;const t=o.forDocument(e);return s(t.getState()),t.onStateChange(e=>{s(e)})},[o,e]),{state:r,provides:(null==o?void 0:o.forDocument(e))??null}},exports.useAnnotationCapability=y,exports.useAnnotationPlugin=x,exports.useIOSZoomPrevention=k,exports.useRegisterRenderers=function(e){const t=i.useContext(h),n=i.useRef(e);i.useEffect(()=>{if(t)return t(n.current)},[t])},exports.useRegisteredRenderers=f,exports.useRendererRegistry=function(){return i.useContext(h)},Object.keys(t).forEach(e=>{"default"===e||Object.prototype.hasOwnProperty.call(exports,e)||Object.defineProperty(exports,e,{enumerable:!0,get:()=>t[e]})});
2
2
  //# sourceMappingURL=index.cjs.map