@embedpdf/plugin-annotation 2.7.0 → 2.9.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 (134) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.js +1131 -203
  4. package/dist/index.js.map +1 -1
  5. package/dist/lib/annotation-plugin.d.ts +2 -0
  6. package/dist/lib/geometry/cloudy-border.d.ts +90 -0
  7. package/dist/lib/geometry/index.d.ts +1 -0
  8. package/dist/lib/handlers/index.d.ts +4 -0
  9. package/dist/lib/handlers/insert-text.handler.d.ts +8 -0
  10. package/dist/lib/handlers/replace-text.handler.d.ts +9 -0
  11. package/dist/lib/handlers/selection-utils.d.ts +7 -0
  12. package/dist/lib/handlers/text-markup.handler.d.ts +7 -0
  13. package/dist/lib/handlers/text.handler.d.ts +3 -0
  14. package/dist/lib/handlers/types.d.ts +14 -1
  15. package/dist/lib/helpers.d.ts +2 -1
  16. package/dist/lib/selectors.d.ts +6 -1
  17. package/dist/lib/tools/default-tools.d.ts +141 -45
  18. package/dist/lib/tools/tools-utils.d.ts +2 -0
  19. package/dist/lib/tools/types.d.ts +34 -1
  20. package/dist/lib/types.d.ts +1 -0
  21. package/dist/preact/index.cjs +1 -1
  22. package/dist/preact/index.cjs.map +1 -1
  23. package/dist/preact/index.js +621 -274
  24. package/dist/preact/index.js.map +1 -1
  25. package/dist/react/index.cjs +1 -1
  26. package/dist/react/index.cjs.map +1 -1
  27. package/dist/react/index.js +621 -274
  28. package/dist/react/index.js.map +1 -1
  29. package/dist/shared/annotation-bounds.d.ts +14 -0
  30. package/dist/shared/components/annotation-container.d.ts +4 -2
  31. package/dist/shared/components/annotations/caret.d.ts +24 -0
  32. package/dist/shared/components/annotations/circle.d.ts +8 -4
  33. package/dist/shared/components/annotations/free-text.d.ts +2 -2
  34. package/dist/shared/components/annotations/ink.d.ts +2 -2
  35. package/dist/shared/components/annotations/line.d.ts +2 -2
  36. package/dist/shared/components/annotations/link.d.ts +2 -2
  37. package/dist/shared/components/annotations/polygon.d.ts +5 -3
  38. package/dist/shared/components/annotations/polyline.d.ts +8 -4
  39. package/dist/shared/components/annotations/square.d.ts +8 -4
  40. package/dist/shared/components/annotations/stamp.d.ts +2 -2
  41. package/dist/shared/components/annotations/text.d.ts +14 -0
  42. package/dist/shared/components/text-markup/highlight.d.ts +2 -2
  43. package/dist/shared/components/text-markup/squiggly.d.ts +2 -2
  44. package/dist/shared/components/text-markup/strikeout.d.ts +2 -2
  45. package/dist/shared/components/text-markup/underline.d.ts +2 -2
  46. package/dist/shared/components/types.d.ts +8 -4
  47. package/dist/shared-preact/annotation-bounds.d.ts +14 -0
  48. package/dist/shared-preact/components/annotation-container.d.ts +4 -2
  49. package/dist/shared-preact/components/annotations/caret.d.ts +24 -0
  50. package/dist/shared-preact/components/annotations/circle.d.ts +8 -4
  51. package/dist/shared-preact/components/annotations/free-text.d.ts +2 -2
  52. package/dist/shared-preact/components/annotations/ink.d.ts +2 -2
  53. package/dist/shared-preact/components/annotations/line.d.ts +2 -2
  54. package/dist/shared-preact/components/annotations/link.d.ts +2 -2
  55. package/dist/shared-preact/components/annotations/polygon.d.ts +5 -3
  56. package/dist/shared-preact/components/annotations/polyline.d.ts +8 -4
  57. package/dist/shared-preact/components/annotations/square.d.ts +8 -4
  58. package/dist/shared-preact/components/annotations/stamp.d.ts +2 -2
  59. package/dist/shared-preact/components/annotations/text.d.ts +14 -0
  60. package/dist/shared-preact/components/text-markup/highlight.d.ts +2 -2
  61. package/dist/shared-preact/components/text-markup/squiggly.d.ts +2 -2
  62. package/dist/shared-preact/components/text-markup/strikeout.d.ts +2 -2
  63. package/dist/shared-preact/components/text-markup/underline.d.ts +2 -2
  64. package/dist/shared-preact/components/types.d.ts +8 -4
  65. package/dist/shared-react/annotation-bounds.d.ts +14 -0
  66. package/dist/shared-react/components/annotation-container.d.ts +4 -2
  67. package/dist/shared-react/components/annotations/caret.d.ts +24 -0
  68. package/dist/shared-react/components/annotations/circle.d.ts +8 -4
  69. package/dist/shared-react/components/annotations/free-text.d.ts +2 -2
  70. package/dist/shared-react/components/annotations/ink.d.ts +2 -2
  71. package/dist/shared-react/components/annotations/line.d.ts +2 -2
  72. package/dist/shared-react/components/annotations/link.d.ts +2 -2
  73. package/dist/shared-react/components/annotations/polygon.d.ts +5 -3
  74. package/dist/shared-react/components/annotations/polyline.d.ts +8 -4
  75. package/dist/shared-react/components/annotations/square.d.ts +8 -4
  76. package/dist/shared-react/components/annotations/stamp.d.ts +2 -2
  77. package/dist/shared-react/components/annotations/text.d.ts +14 -0
  78. package/dist/shared-react/components/text-markup/highlight.d.ts +2 -2
  79. package/dist/shared-react/components/text-markup/squiggly.d.ts +2 -2
  80. package/dist/shared-react/components/text-markup/strikeout.d.ts +2 -2
  81. package/dist/shared-react/components/text-markup/underline.d.ts +2 -2
  82. package/dist/shared-react/components/types.d.ts +8 -4
  83. package/dist/shared-vue/annotation-bounds.d.ts +14 -0
  84. package/dist/svelte/components/annotations/Caret.svelte.d.ts +13 -0
  85. package/dist/svelte/components/annotations/Circle.svelte.d.ts +4 -2
  86. package/dist/svelte/components/annotations/FreeText.svelte.d.ts +1 -1
  87. package/dist/svelte/components/annotations/Ink.svelte.d.ts +1 -1
  88. package/dist/svelte/components/annotations/Line.svelte.d.ts +1 -1
  89. package/dist/svelte/components/annotations/Link.svelte.d.ts +1 -1
  90. package/dist/svelte/components/annotations/Polygon.svelte.d.ts +2 -1
  91. package/dist/svelte/components/annotations/Polyline.svelte.d.ts +4 -2
  92. package/dist/svelte/components/annotations/Square.svelte.d.ts +4 -2
  93. package/dist/svelte/components/annotations/Stamp.svelte.d.ts +1 -1
  94. package/dist/svelte/components/annotations/Text.svelte.d.ts +10 -0
  95. package/dist/svelte/components/annotations/index.d.ts +1 -0
  96. package/dist/svelte/components/renderers/CaretRenderer.svelte.d.ts +5 -0
  97. package/dist/svelte/components/renderers/TextRenderer.svelte.d.ts +5 -0
  98. package/dist/svelte/components/text-markup/Highlight.svelte.d.ts +1 -1
  99. package/dist/svelte/components/text-markup/Squiggly.svelte.d.ts +1 -1
  100. package/dist/svelte/components/text-markup/Strikeout.svelte.d.ts +1 -1
  101. package/dist/svelte/components/text-markup/Underline.svelte.d.ts +1 -1
  102. package/dist/svelte/components/types.d.ts +2 -1
  103. package/dist/svelte/context/types.d.ts +7 -3
  104. package/dist/svelte/index.cjs +1 -1
  105. package/dist/svelte/index.cjs.map +1 -1
  106. package/dist/svelte/index.js +831 -416
  107. package/dist/svelte/index.js.map +1 -1
  108. package/dist/vue/components/annotation-container.vue.d.ts +9 -8
  109. package/dist/vue/components/annotation-layer.vue.d.ts +1 -1
  110. package/dist/vue/components/annotations/caret.vue.d.ts +24 -0
  111. package/dist/vue/components/annotations/circle.vue.d.ts +7 -3
  112. package/dist/vue/components/annotations/free-text.vue.d.ts +2 -2
  113. package/dist/vue/components/annotations/index.d.ts +1 -0
  114. package/dist/vue/components/annotations/ink.vue.d.ts +2 -2
  115. package/dist/vue/components/annotations/line.vue.d.ts +2 -2
  116. package/dist/vue/components/annotations/link.vue.d.ts +2 -2
  117. package/dist/vue/components/annotations/polygon.vue.d.ts +4 -2
  118. package/dist/vue/components/annotations/polyline.vue.d.ts +8 -3
  119. package/dist/vue/components/annotations/square.vue.d.ts +7 -3
  120. package/dist/vue/components/annotations/stamp.vue.d.ts +2 -2
  121. package/dist/vue/components/annotations/text.vue.d.ts +14 -0
  122. package/dist/vue/components/annotations.vue.d.ts +9 -10
  123. package/dist/vue/components/renderers/caret-renderer.vue.d.ts +6 -0
  124. package/dist/vue/components/renderers/text-renderer.vue.d.ts +6 -0
  125. package/dist/vue/components/text-markup/highlight.vue.d.ts +2 -2
  126. package/dist/vue/components/text-markup/squiggly.vue.d.ts +2 -2
  127. package/dist/vue/components/text-markup/strikeout.vue.d.ts +2 -2
  128. package/dist/vue/components/text-markup/underline.vue.d.ts +2 -2
  129. package/dist/vue/context/types.d.ts +7 -3
  130. package/dist/vue/index.cjs +1 -1
  131. package/dist/vue/index.cjs.map +1 -1
  132. package/dist/vue/index.js +778 -354
  133. package/dist/vue/index.js.map +1 -1
  134. package/package.json +10 -10
@@ -22,4 +22,6 @@ export declare const isPolylineTool: (tool: AnnotationTool<any> | undefined) =>
22
22
  export declare const isPolygonTool: (tool: AnnotationTool<any> | undefined) => tool is ToolMap["polygon"];
23
23
  export declare const isFreeTextTool: (tool: AnnotationTool<any> | undefined) => tool is ToolMap["freeText"];
24
24
  export declare const isStampTool: (tool: AnnotationTool<any> | undefined) => tool is ToolMap["stamp"];
25
+ export declare const isInsertTextTool: (tool: AnnotationTool<any> | undefined) => tool is ToolMap["insertText"];
26
+ export declare const isReplaceTextTool: (tool: AnnotationTool<any> | undefined) => tool is ToolMap["replaceText"];
25
27
  export {};
@@ -83,6 +83,37 @@ type InsertUprightBehaviorFor<T extends PdfAnnotationObject> = Extract<T['type']
83
83
  /** Counter-rotate new annotations to appear visually upright on rotated pages. */
84
84
  insertUpright?: boolean;
85
85
  };
86
+ /**
87
+ * Ink-specific behavior settings. Only available on tools whose annotation
88
+ * type is PdfAnnotationSubtype.INK (i.e. 'ink' and 'inkHighlighter').
89
+ */
90
+ export interface InkBehavior {
91
+ /** ms of pointer inactivity before the accumulated strokes are committed. Default: 800. */
92
+ commitDelay?: number;
93
+ /** When true, line-like strokes are snapped to a clean 2-point straight line on pointerUp. */
94
+ smartLineRecognition?: boolean;
95
+ /**
96
+ * Maximum allowed perpendicular-deviation ratio (maxDeviation / strokeLength) for a stroke
97
+ * to qualify as a straight line. Lower = stricter. Default: 0.15.
98
+ */
99
+ smartLineThreshold?: number;
100
+ /**
101
+ * How many degrees from horizontal or vertical a recognised straight line may deviate
102
+ * before axis-snapping is skipped. Default: 15.
103
+ */
104
+ snapAngleDeg?: number;
105
+ }
106
+ /**
107
+ * Non-distributive conditional: wrapping both sides in [...] prevents TypeScript from
108
+ * distributing over a union. [PdfAnnotationObject] extends [PdfInkAnnoObject] is false
109
+ * (the full union is not a subtype of the specific ink type), so InkBehavior is only added
110
+ * when T is specifically the INK annotation type.
111
+ */
112
+ type InkBehaviorFor<T extends PdfAnnotationObject> = [T] extends [
113
+ Extract<PdfAnnotationObject, {
114
+ type: PdfAnnotationSubtype.INK;
115
+ }>
116
+ ] ? InkBehavior : {};
86
117
  /**
87
118
  * The primary interface for defining an annotation tool.
88
119
  * Uses a type alias to properly combine the base interface with conditional properties.
@@ -109,6 +140,8 @@ export type AnnotationTool<T extends PdfAnnotationObject = PdfAnnotationObject>
109
140
  cursor?: string;
110
141
  /** If true, this interaction mode is activated by selecting text. */
111
142
  textSelection?: boolean;
143
+ /** Whether to show the native text selection rectangles. Only relevant when textSelection is true. Defaults to false. */
144
+ showSelectionRects?: boolean;
112
145
  /** Whether this annotation can be dragged when selected individually. Can be dynamic based on annotation. */
113
146
  isDraggable?: DynamicBooleanProp;
114
147
  /** Whether this annotation can be resized when selected individually. Can be dynamic based on annotation. */
@@ -134,6 +167,6 @@ export type AnnotationTool<T extends PdfAnnotationObject = PdfAnnotationObject>
134
167
  selectAfterCreate?: boolean;
135
168
  /** Override whether this annotation type uses AP rendering before editing (default: true) */
136
169
  useAppearanceStream?: boolean;
137
- } & InsertUprightBehaviorFor<T>;
170
+ } & InsertUprightBehaviorFor<T> & InkBehaviorFor<T>;
138
171
  } & ClickBehaviorFor<T>;
139
172
  export {};
@@ -337,6 +337,7 @@ export interface SidebarAnnotationEntry {
337
337
  page: number;
338
338
  annotation: TrackedAnnotation;
339
339
  replies: TrackedAnnotation<PdfTextAnnoObject>[];
340
+ groupMembers?: TrackedAnnotation[];
340
341
  }
341
342
  /**
342
343
  * Information about an annotation needed for constraint calculation.
@@ -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={},p=o.createContext(null),h=o.createContext([]);function g({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(p.Provider,{value:r,children:n.jsx(h.Provider,{value:t,children:e})})}function v(){return i.useContext(h)}const x=()=>s.usePlugin(t.AnnotationPlugin.id),f=()=>s.useCapability(t.AnnotationPlugin.id);function y({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 b({scale:e,documentId:t,pageIndex:o,rotation:l,pageWidth:c,pageHeight:u,trackedAnnotation:p,children:h,isSelected:g,isEditing:v=!1,isMultiSelected:b=!1,isDraggable:m,isResizable:j,isRotatable:k=!0,lockAspectRatio:S=!1,style:C={},vertexConfig:A,selectionMenu:I,outlineOffset:R=1,onDoubleClick:w,onSelect:z,appearance:D,zIndex:P=1,resizeUI:E,vertexUI:M,rotationUI:L,selectionOutlineColor:O,selectionOutline:$,customAnnotationRenderer:F,groupSelectionMenu:T,groupSelectionOutline:U,annotationRenderers:W,...B}){var H,N,G;const[q,Y]=i.useState(p.object),[V,K]=i.useState(null),[X,Q]=i.useState(null),[Z,J]=i.useState(!1),[_,ee]=i.useState(!1),{provides:te}=f(),{plugin:ne}=x(),{canModifyAnnotations:oe}=s.useDocumentPermissions(t),ie=i.useRef(null),re=oe&&m&&!b,se=oe&&j&&!b,ae=oe&&k&&!b,le=i.useMemo(()=>te?te.forDocument(t):null,[te,t]),ce=q?{...p.object,...q}:p.object,de=(null==E?void 0:E.color)??"#007ACC",ue=(null==M?void 0:M.color)??"#007ACC",pe=(null==L?void 0:L.color)??"white",he=(null==L?void 0:L.connectorColor)??"#007ACC",ge=(null==E?void 0:E.size)??12,ve=(null==M?void 0:M.size)??12,xe=(null==L?void 0:L.size)??32,fe=null==L?void 0:L.margin,ye=(null==L?void 0:L.iconColor)??"#007ACC",be=(null==L?void 0:L.showConnector)??!1,me=(null==(H=null==L?void 0:L.border)?void 0:H.color)??"#007ACC",je=(null==(N=null==L?void 0:L.border)?void 0:N.width)??1,ke=(null==(G=null==L?void 0:L.border)?void 0:G.style)??"solid",Se=(null==$?void 0:$.color)??O??"#007ACC",Ce=(null==$?void 0:$.style)??"solid",Ae=(null==$?void 0:$.width)??1,Ie=(null==$?void 0:$.offset)??R??1,Re=V??ce.rotation??0,we=V??ce.rotation??0,ze=Number.isFinite(we)?Math.round(10*we)/10:0,De=null!==V,Pe=i.useRef(null),Ee=i.useCallback(e=>{var n;if(!(null==(n=e.transformData)?void 0:n.type)||b||!ne)return;const{type:i,changes:r,metadata:s}=e.transformData,a=p.object.id,l={width:c,height:u};if("start"===e.state&&(Pe.current=p.object.unrotatedRect??p.object.rect,ie.current=p.object,"resize"!==i&&"vertex-edit"!==i||ee(!0),"move"===i?ne.startDrag(t,{annotationIds:[a],pageSize:l}):"resize"===i&&ne.startResize(t,{annotationIds:[a],pageSize:l,resizeHandle:(null==s?void 0:s.handle)??"se"})),r.rect&&Pe.current)if("move"===i){const e={x:r.rect.origin.x-Pe.current.origin.x,y:r.rect.origin.y-Pe.current.origin.y};ne.updateDrag(t,e)}else"resize"===i&&ne.updateResize(t,r.rect);if("vertex-edit"===i&&r.vertices&&A){const t=ie.current??p.object,n=A.transformAnnotation(t,r.vertices),l=null==te?void 0:te.transformAnnotation(t,{type:i,changes:n,metadata:s});l&&(Y(e=>({...e,...l})),"end"===e.state&&(null==le||le.updateAnnotation(o,a,l)))}if("rotate"===i){const n=(null==s?void 0:s.rotationAngle)??Re,o=null==s?void 0:s.cursorPosition;return o&&Q({x:o.clientX,y:o.clientY}),void("start"===e.state?(K(n),ne.startRotation(t,{annotationIds:[a],cursorAngle:n,rotationCenter:null==s?void 0:s.rotationCenter})):"move"===e.state?(K(n),ne.updateRotation(t,n,null==s?void 0:s.rotationDelta)):"end"===e.state&&(K(null),Q(null),ne.commitRotation(t)))}"end"===e.state&&(Pe.current=null,ie.current=null,ee(!1),"move"===i?ne.commitDrag(t):"resize"===i&&ne.commitResize(t))},[ne,t,p.object,c,u,o,b,A,te,le,Re]),Me=ce.unrotatedRect,Le=Me??ce.rect,Oe=Me&&0!==Re?a.inferRotationCenterFromRects(Le,ce.rect,Re):void 0,$e=Le,{dragProps:Fe,vertices:Te,resize:Ue,rotation:We}=d.useInteractionHandles({controller:{element:$e,vertices:null==A?void 0:A.extractVertices(ce),constraints:{minWidth:10,minHeight:10,boundingBox:{width:c,height:u}},maintainAspectRatio:S,pageRotation:l,annotationRotation:Re,rotationCenter:Oe,rotationElement:ce.rect,scale:e,enabled:g&&!b,onUpdate:Ee},resizeUI:{handleSize:ge,spacing:Ie,offsetMode:"outside",includeSides:!S,zIndex:P+1},vertexUI:{vertexSize:ve,zIndex:P+2},rotationUI:{handleSize:xe,margin:fe,zIndex:P+3,showConnector:be},includeVertices:!!A,includeRotation:ae,currentRotation:Re}),Be=i.useMemo(()=>{if(oe&&w)return w},[oe,w]),He=d.useDoublePressProps(Be);i.useEffect(()=>{Y(p.object)},[p.object]),i.useEffect(()=>{if(!ne)return;const e=p.object.id,n=n=>{var o;if(n.documentId!==t)return;"end"!==n.type&&"cancel"!==n.type||K(null);const i=null==(o=n.previewPatches)?void 0:o[e];"update"===n.type&&i?Y(e=>({...e,...i})):"cancel"===n.type&&Y(p.object)},o=[ne.onDragChange(n),ne.onResizeChange(n),ne.onRotateChange(n)];return()=>o.forEach(e=>e())},[ne,t,p.object]);const Ne=g&&!b,Ge=ce.rect.size.width*e,qe=ce.rect.size.height*e,Ye=Le.size.width*e,Ve=Le.size.height*e,Ke=Boolean(Me)&&0!==Re,Xe=Ke?(Le.origin.x-ce.rect.origin.x)*e:(Ge-Ye)/2,Qe=Ke?(Le.origin.y-ce.rect.origin.y)*e:(qe-Ve)/2,Ze=Ke&&Oe?`${(Oe.x-Le.origin.x)*e}px ${(Oe.y-Le.origin.y)*e}px`:"center center",Je=Oe?(Oe.x-ce.rect.origin.x)*e:Ge/2,_e=Oe?(Oe.y-ce.rect.origin.y)*e:qe/2,et=Math.max(300,Math.max(Ge,qe)+80),tt=i.useMemo(()=>Me?{...ce,rect:Me}:ce,[ce,Me]),nt=!(!(null==D?void 0:D.normal)||_||v||p.dictMode);return n.jsxs("div",{"data-no-interaction":!0,children:[n.jsxs("div",{style:{position:"absolute",left:ce.rect.origin.x*e,top:ce.rect.origin.y*e,width:Ge,height:qe,pointerEvents:"none",zIndex:P,...C},...B,children:[De&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:Je-et/2,top:_e,width:et,height:1,backgroundColor:he,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:Je,top:_e-et/2,width:1,height:et,backgroundColor:he,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:Je-et/2,top:_e,width:et,height:1,transformOrigin:"center center",transform:`rotate(${Re}deg)`,backgroundColor:he,opacity:.8,pointerEvents:"none"}})]}),g&&ae&&We&&((null==L?void 0:L.component)?n.jsx("div",{onPointerEnter:()=>J(!0),onPointerLeave:()=>{J(!1),Q(null)},onPointerMove:e=>{De||Q({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:L.component({...We.handle,backgroundColor:pe,iconColor:ye,connectorStyle:{...We.connector.style,backgroundColor:he,opacity:De?0:1},showConnector:be,opacity:De?0:1,border:{color:me,width:je,style:ke}})}):n.jsxs("div",{onPointerEnter:()=>J(!0),onPointerLeave:()=>{J(!1),Q(null)},onPointerMove:e=>{De||Q({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[be&&n.jsx("div",{style:{...We.connector.style,backgroundColor:he,opacity:De?0:1}}),n.jsx("div",{...We.handle,style:{...We.handle.style,backgroundColor:pe,border:`${je}px ${ke} ${me}`,boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",opacity:De?0:1},children:n.jsxs("svg",{width:Math.round(.6*xe),height:Math.round(.6*xe),viewBox:"0 0 24 24",fill:"none",stroke:ye,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",{...re&&g?Fe:{},...He,style:{position:"absolute",left:Xe,top:Qe,width:Ye,height:Ve,transform:0!==Re?`rotate(${Re}deg)`:void 0,transformOrigin:Ze,outline:Ne?`${Ae}px ${Ce} ${Se}`:"none",outlineOffset:Ne?`${Ie}px`:"0px",pointerEvents:g&&!b?"auto":"none",touchAction:"none",cursor:g&&re?"move":"default"},children:[(()=>{const t="function"==typeof h?h(tt,{appearanceActive:nt}):h;return(null==F?void 0:F({annotation:tt,children:t,isSelected:g,scale:e,rotation:l,pageWidth:c,pageHeight:u,pageIndex:o,onSelect:z}))??t})(),(null==D?void 0:D.normal)&&n.jsx(y,{appearance:D.normal,style:{display:nt?"block":"none"}}),g&&se&&!De&&Ue.map(({key:e,...t})=>(null==E?void 0:E.component)?E.component({key:e,...t,backgroundColor:de}):n.jsx("div",{...t,style:{...t.style,backgroundColor:de}},e)),g&&oe&&!b&&!De&&Te.map(({key:e,...t})=>(null==M?void 0:M.component)?M.component({key:e,...t,backgroundColor:ue}):n.jsx("div",{...t,style:{...t.style,backgroundColor:ue}},e))]})]}),I&&!b&&!De&&n.jsx(d.CounterRotate,{rect:{origin:{x:ce.rect.origin.x*e,y:ce.rect.origin.y*e},size:{width:ce.rect.size.width*e,height:ce.rect.size.height*e}},rotation:l,children:e=>{const t=((Re+90*l)%360+360)%360;return I({...e,context:{type:"annotation",annotation:p,pageIndex:o},selected:g,placement:{suggestTop:ae&&t>90&&t<270}})}}),(De||Z)&&X&&r.createPortal(n.jsxs("div",{style:{position:"fixed",left:X.x+16,top:X.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:[ze.toFixed(0),"°"]}),document.body)]})}function m({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:j,selectionOutline:k,zIndex:S=2,groupSelectionMenu:C}){var A,I,R;const{plugin:w}=x(),{canModifyAnnotations:z}=s.useDocumentPermissions(e),D=i.useRef(null),P=i.useRef(!1),E=i.useRef(!1),[M,L]=i.useState(null),[O,$]=i.useState(null),[F,T]=i.useState(!1),U=z&&h,W=z&&g,B=z&&v,H=i.useMemo(()=>{const e=p.map(e=>e.object.rect);return a.boundingRectOrEmpty(e)},[p]),[N,G]=i.useState(H);i.useEffect(()=>{P.current||E.current||G(H)},[H]),i.useEffect(()=>{if(!w)return;return w.onRotateChange(t=>{t.documentId===e&&("end"!==t.type&&"cancel"!==t.type||L(null))})},[w,e]);const q=i.useCallback(t=>{var n,o,i,r,s,a;if(!(null==(n=t.transformData)?void 0:n.type))return;if(!w)return;const l=t.transformData.type,d="move"===l,h="resize"===l;if(d&&!U)return;if("start"===t.state&&(D.current=H,d?(P.current=!0,w.startDrag(e,{annotationIds:p.map(e=>e.object.id),pageSize:{width:c,height:u}})):h&&(E.current=!0,w.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&&$({x:l.clientX,y:l.clientY}),void("start"===t.state?(L(o),w.startRotation(e,{annotationIds:n,cursorAngle:o,rotationCenter:null==(s=t.transformData.metadata)?void 0:s.rotationCenter})):"move"===t.state?(L(o),w.updateRotation(e,o,null==(a=t.transformData.metadata)?void 0:a.rotationDelta)):"end"===t.state&&(L(null),$(null),w.commitRotation(e)))}const g=D.current??H;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=w.updateDrag(e,o);G({...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;w.updateResize(e,n),G(n)}"end"===t.state&&(D.current=null,d&&P.current?(P.current=!1,w.commitDrag(e)):h&&E.current&&(E.current=!1,w.commitResize(e)))},[w,e,c,u,H,U,p,v]),Y=M??0,V=null!==M,K=Number.isFinite(Y)?Math.round(10*Y)/10:0,X=(null==y?void 0:y.color)??"#007ACC",Q=(null==y?void 0:y.size)??12,Z=(null==b?void 0:b.color)??"white",J=(null==b?void 0:b.connectorColor)??"#007ACC",_=(null==b?void 0:b.size)??32,ee=null==b?void 0:b.margin,te=(null==b?void 0:b.iconColor)??"#007ACC",ne=(null==b?void 0:b.showConnector)??!1,oe=(null==(A=null==b?void 0:b.border)?void 0:A.color)??"#007ACC",ie=(null==(I=null==b?void 0:b.border)?void 0:I.width)??1,re=(null==(R=null==b?void 0:b.border)?void 0:R.style)??"solid",se=(null==k?void 0:k.color)??m??"#007ACC",ae=(null==k?void 0:k.style)??"dashed",le=(null==k?void 0:k.width)??2,ce=(null==k?void 0:k.offset)??j??2,{dragProps:de,resize:ue,rotation:pe}=d.useInteractionHandles({controller:{element:N,constraints:{minWidth:20,minHeight:20,boundingBox:{width:c,height:u}},maintainAspectRatio:f,pageRotation:l,scale:o,enabled:!0,onUpdate:q},resizeUI:{handleSize:Q,spacing:ce,offsetMode:"outside",includeSides:!f,zIndex:S+1},vertexUI:{vertexSize:0,zIndex:S},rotationUI:{handleSize:_,margin:ee,zIndex:S+2,showConnector:ne},includeVertices:!1,includeRotation:B,currentRotation:M??0});if(p.length<2)return null;const he=N.size.width*o,ge=N.size.height*o,ve=he/2,xe=ge/2,fe=Math.max(300,Math.max(he,ge)+80);return n.jsxs("div",{"data-group-selection-box":!0,"data-no-interaction":!0,children:[n.jsxs("div",{style:{position:"absolute",left:N.origin.x*o,top:N.origin.y*o,width:he,height:ge,pointerEvents:"none",zIndex:S},children:[V&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:ve-fe/2,top:xe,width:fe,height:1,backgroundColor:X,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:ve,top:xe-fe/2,width:1,height:fe,backgroundColor:X,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:ve-fe/2,top:xe,width:fe,height:1,transformOrigin:"center center",transform:`rotate(${Y}deg)`,backgroundColor:X,opacity:.8,pointerEvents:"none"}})]}),B&&pe&&((null==b?void 0:b.component)?n.jsx("div",{onPointerEnter:()=>T(!0),onPointerLeave:()=>{T(!1),$(null)},onPointerMove:e=>{V||$({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:b.component({...pe.handle,backgroundColor:Z,iconColor:te,connectorStyle:{...pe.connector.style,backgroundColor:J,opacity:V?0:1},showConnector:ne,opacity:V?0:1,border:{color:oe,width:ie,style:re}})}):n.jsxs("div",{onPointerEnter:()=>T(!0),onPointerLeave:()=>{T(!1),$(null)},onPointerMove:e=>{V||$({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[ne&&n.jsx("div",{style:{...pe.connector.style,backgroundColor:J,opacity:V?0:1}}),n.jsx("div",{...pe.handle,style:{...pe.handle.style,backgroundColor:Z,border:`${ie}px ${re} ${oe}`,boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",opacity:V?0:1},children:n.jsxs("svg",{width:Math.round(.6*_),height:Math.round(.6*_),viewBox:"0 0 24 24",fill:"none",stroke:te,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",{...U?de:{onPointerDown:e=>e.stopPropagation()},style:{position:"absolute",left:0,top:0,width:he,height:ge,outline:V?"none":`${le}px ${ae} ${se}`,outlineOffset:ce-1,cursor:U?"move":"default",touchAction:"none",pointerEvents:"auto"},children:W&&!V&&ue.map(({key:e,...t})=>(null==y?void 0:y.component)?y.component({key:e,...t,backgroundColor:X}):n.jsx("div",{...t,style:{...t.style,backgroundColor:X}},e))})]}),(V||F)&&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:[K.toFixed(0),"°"]}),document.body),C&&n.jsx(d.CounterRotate,{rect:{origin:{x:N.origin.x*o,y:N.origin.y*o},size:{width:N.size.width*o,height:N.size.height*o}},rotation:l,children:e=>{const n=((Y+90*l)%360+360)%360;return C({...e,context:{type:"group",annotations:p,pageIndex:t},selected:!0,placement:{suggestTop:B&&n>90&&n<270}})}})]})}function j(e){return{id:e.id,matches:t=>e.matches(t),render:t=>e.render(t),vertexConfig:e.vertexConfig,zIndex:e.zIndex,containerStyle:e.containerStyle,interactionDefaults:e.interactionDefaults,useAppearanceStream:e.useAppearanceStream,isDraggable:e.isDraggable,onDoubleClick:e.onDoubleClick,selectOverride:e.selectOverride,hideSelectionMenu:e.hideSelectionMenu}}function k({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,onTouchStart:c,style:{cursor:e?"move":"pointer",pointerEvents:e?"none":"visibleStroke",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 S({isSelected:e,color:t="#000000",strokeColor:o,opacity:r=1,strokeWidth:s,strokeStyle:l=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:c,rect:d,scale:u,onClick:p,appearanceActive:h=!1}){const{width:g,height:v,x:x,y:f}=i.useMemo(()=>{const e=d.size.width,t=d.size.height;return{width:Math.max(e-s,0),height:Math.max(t-s,0),x:s/2,y:s/2}},[d,s]),y=(g+s)*u,b=(v+s)*u,m=Math.max(s,20/u);return n.jsxs("svg",{style:{position:"absolute",width:y,height:b,pointerEvents:"none",zIndex:2},width:y,height:b,viewBox:`0 0 ${g+s} ${v+s}`,overflow:"visible",children:[n.jsx("rect",{x:x,y:f,width:g,height:v,fill:"transparent",stroke:"transparent",strokeWidth:m,onPointerDown:p,onTouchStart:p,style:{cursor:e?"move":"pointer",pointerEvents:e?"none":"transparent"===t?"visibleStroke":"visible"}}),!h&&n.jsx("rect",{x:x,y:f,width:g,height:v,fill:t,opacity:r,style:{pointerEvents:"none",stroke:o??t,strokeWidth:s,...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}})]})}function C({color:e="#000000",strokeColor:t,opacity:o=1,strokeWidth:r,strokeStyle:s=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:l,rect:c,scale:d,onClick:u,isSelected:p,appearanceActive:h=!1}){const{width:g,height:v,cx:x,cy:f,rx:y,ry:b}=i.useMemo(()=>{const e=c.size.width,t=c.size.height,n=Math.max(e-r,0),o=Math.max(t-r,0);return{width:e,height:t,cx:r/2+n/2,cy:r/2+o/2,rx:n/2,ry:o/2}},[c,r]),m=g*d,j=v*d,k=Math.max(r,20/d);return n.jsxs("svg",{style:{position:"absolute",width:m,height:j,pointerEvents:"none",zIndex:2},width:m,height:j,viewBox:`0 0 ${g} ${v}`,overflow:"visible",children:[n.jsx("ellipse",{cx:x,cy:f,rx:y,ry:b,fill:"transparent",stroke:"transparent",strokeWidth:k,onPointerDown:u,onTouchStart:u,style:{cursor:p?"move":"pointer",pointerEvents:p?"none":"transparent"===e?"visibleStroke":"visible"}}),!h&&n.jsx("ellipse",{cx:x,cy:f,rx:y,ry:b,fill:e,opacity:o,style:{pointerEvents:"none",stroke:t??e,strokeWidth:r,...s===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==l?void 0:l.join(",")}}})]})}function A({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:x=!1}){const{x1:f,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]),j=i.useMemo(()=>{const e=Math.atan2(m-y,b-f);return{start:t.patching.createEnding(null==p?void 0:p.start,r,e+Math.PI,f,y),end:t.patching.createEnding(null==p?void 0:p.end,r,e,b,m)}},[p,r,f,y,b,m]),k=d.size.width*h,S=d.size.height*h,C=Math.max(r,20/h);return n.jsxs("svg",{style:{position:"absolute",width:k,height:S,pointerEvents:"none",zIndex:2,overflow:"visible"},width:k,height:S,viewBox:`0 0 ${d.size.width} ${d.size.height}`,children:[n.jsx("line",{x1:f,y1:y,x2:b,y2:m,stroke:"transparent",strokeWidth:C,onPointerDown:g,onTouchStart:g,style:{cursor:v?"move":"pointer",pointerEvents:v?"none":"visibleStroke",strokeLinecap:"butt"}}),j.start&&n.jsx("path",{d:j.start.d,transform:j.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:g,onTouchStart:g,style:{cursor:v?"move":"pointer",pointerEvents:v?"none":j.start.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),j.end&&n.jsx("path",{d:j.end.d,transform:j.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:g,onTouchStart:g,style:{cursor:v?"move":"pointer",pointerEvents:v?"none":j.end.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),!x&&n.jsxs(n.Fragment,{children:[n.jsx("line",{x1:f,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(",")}}}),j.start&&n.jsx("path",{d:j.start.d,transform:j.start.transform,stroke:s,fill:j.start.filled?e:"none",style:{pointerEvents:"none",strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}}),j.end&&n.jsx("path",{d:j.end.d,transform:j.end.transform,stroke:s,fill:j.end.filled?e:"none",style:{pointerEvents:"none",strokeWidth:r,strokeLinecap:"butt",...l===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==c?void 0:c.join(",")}}})]})]})}function I({rect:e,vertices:o,color:r="transparent",strokeColor:s="#000000",opacity:a=1,strokeWidth:l,scale:c,isSelected:d,onClick:u,lineEndings:p,appearanceActive:h=!1}){const g=i.useMemo(()=>o.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[o,e]),v=i.useMemo(()=>{if(!g.length)return"";const[e,...t]=g;return`M ${e.x} ${e.y} `+t.map(e=>`L ${e.x} ${e.y} `).join("").trim()},[g]),x=i.useMemo(()=>{if(g.length<2)return{start:null,end:null};const e=(e,t)=>Math.atan2(t.y-e.y,t.x-e.x),n=e(g[0],g[1]),o=e(g[g.length-2],g[g.length-1]);return{start:t.patching.createEnding(null==p?void 0:p.start,l,n+Math.PI,g[0].x,g[0].y),end:t.patching.createEnding(null==p?void 0:p.end,l,o,g[g.length-1].x,g[g.length-1].y)}},[g,p,l]),f=e.size.width*c,y=e.size.height*c,b=Math.max(l,20/c);return n.jsxs("svg",{style:{position:"absolute",width:f,height:y,pointerEvents:"none",zIndex:2,overflow:"visible"},width:f,height:y,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:v,fill:"none",stroke:"transparent",strokeWidth:b,onPointerDown:u,onTouchStart:u,style:{cursor:d?"move":"pointer",pointerEvents:d?"none":"visibleStroke",strokeLinecap:"butt",strokeLinejoin:"miter"}}),x.start&&n.jsx("path",{d:x.start.d,transform:x.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:b,onPointerDown:u,onTouchStart:u,style:{cursor:d?"move":"pointer",pointerEvents:d?"none":x.start.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),x.end&&n.jsx("path",{d:x.end.d,transform:x.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:b,onPointerDown:u,onTouchStart:u,style:{cursor:d?"move":"pointer",pointerEvents:d?"none":x.end.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),!h&&n.jsxs(n.Fragment,{children:[n.jsx("path",{d:v,opacity:a,style:{fill:"none",stroke:s??r,strokeWidth:l,pointerEvents:"none",strokeLinecap:"butt",strokeLinejoin:"miter"}}),x.start&&n.jsx("path",{d:x.start.d,transform:x.start.transform,stroke:s,fill:x.start.filled?r:"none",style:{pointerEvents:"none",strokeWidth:l,strokeLinecap:"butt"}}),x.end&&n.jsx("path",{d:x.end.d,transform:x.end.transform,stroke:s,fill:x.end.filled?r:"none",style:{pointerEvents:"none",strokeWidth:l,strokeLinecap:"butt"}})]})]})}function R({rect:e,vertices:t,color:o="transparent",strokeColor:r="#000000",opacity:s=1,strokeWidth:l,strokeStyle:c=a.PdfAnnotationBorderStyle.SOLID,strokeDashArray:d,scale:u,isSelected:p,onClick:h,currentVertex:g,handleSize:v=14,appearanceActive:x=!1}){const f=g?[...t,g]:t,y=i.useMemo(()=>f.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[f,e]),b=i.useMemo(()=>{if(!y.length)return"";const[e,...t]=y,n=!!g;return(`M ${e.x} ${e.y} `+t.map(e=>`L ${e.x} ${e.y}`).join(" ")+(n?"":" Z")).trim()},[y,g]),m=g&&t.length>0,j=e.size.width*u,k=e.size.height*u,S=Math.max(l,20/u);return n.jsxs("svg",{style:{position:"absolute",width:j,height:k,pointerEvents:"none",zIndex:2,overflow:"visible"},width:j,height:k,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:b,fill:"transparent",stroke:"transparent",strokeWidth:S,onPointerDown:h,onTouchStart:h,style:{cursor:p?"move":"pointer",pointerEvents:p?"none":"transparent"===o?"visibleStroke":"visible",strokeLinecap:"butt",strokeLinejoin:"miter"}}),!x&&n.jsxs(n.Fragment,{children:[n.jsx("path",{d:b,opacity:s,style:{fill:g?"none":o,stroke:r??o,strokeWidth:l,pointerEvents:"none",strokeLinecap:"butt",strokeLinejoin:"miter",...c===a.PdfAnnotationBorderStyle.DASHED&&{strokeDasharray:null==d?void 0:d.join(",")}}}),m&&t.length>1&&n.jsx("path",{d:`M ${y[y.length-1].x} ${y[y.length-1].y} L ${y[0].x} ${y[0].y}`,fill:"none",style:{stroke:r,strokeWidth:l,strokeDasharray:"4,4",opacity:.7,pointerEvents:"none"}}),m&&t.length>=2&&n.jsx("rect",{x:y[0].x-v/u/2,y:y[0].y-v/u/2,width:v/u,height:v/u,fill:r,opacity:.4,stroke:r,strokeWidth:l/2,style:{pointerEvents:"none"}})]})]})}function w({documentId:e,isSelected:t,isEditing:o,annotation:r,pageIndex:s,scale:l,onClick:c,appearanceActive:d=!1}){const p=i.useRef(null),h=i.useRef(!1),{provides:g}=f(),v=(null==g?void 0:g.forDocument(e))??null,[x,y]=i.useState(!1);i.useEffect(()=>{if(o&&p.current){h.current=!0;const e=p.current;e.focus();const t=window.getSelection();if(t){const n=document.createRange();n.selectNodeContents(e),n.collapse(!1),t.removeAllRanges(),t.addRange(n)}}},[o]),i.useLayoutEffect(()=>{try{const e=navigator,t=/iPad|iPhone|iPod/.test(navigator.userAgent)||"MacIntel"===navigator.platform&&(null==e?void 0:e.maxTouchPoints)>1;y(t)}catch{y(!1)}},[]);const b=r.object.fontSize*l,m=x&&o&&b>0&&b<16,j=m?16:b,k=m?b/16:1,S=m?100/k:100;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:t&&!o?"none":"auto",zIndex:2,opacity:d?0:1},onPointerDown:c,onTouchStart:c,children:n.jsx("span",{ref:p,onBlur:()=>{h.current&&(h.current=!1,v&&p.current&&v.updateAnnotation(s,r.object.id,{contents:p.current.innerText}))},tabIndex:0,style:{color:r.object.fontColor,fontSize:j,...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:m?`${S}%`:"100%",height:m?`${S}%`:"100%",lineHeight:"1.18",overflow:"hidden",cursor:o?"text":"pointer",outline:"none",transform:m?`scale(${k})`:void 0,transformOrigin:"top left"},contentEditable:o,...u,children:r.object.contents})})}function z({documentId:e,pageIndex:t,annotation:r,scaleFactor:s=1,unrotated:l,style:c,...d}){const{provides:u}=f(),[p,h]=i.useState(null),g=i.useRef(null),{width:v,height:x}=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,x]);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 D({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:e?"none":"auto",cursor:"pointer"},onPointerDown:s,onTouchStart:s,children:n.jsx(z,{documentId:o,pageIndex:i,annotation:{...t.object,id:t.object.id},scaleFactor:r,unrotated:a})})}function P({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,x=i.useMemo(()=>{if(r===a.PdfAnnotationBorderStyle.DASHED)return(null==s?void 0:s.join(","))??`${3*o},${o}`},[r,s,o]),f=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,onTouchStart:u?void 0:d,style:{cursor:u?"default":e?"move":"pointer",pointerEvents:u||e?"none":"visible"}}),f?n.jsx("line",{x1:1,y1:h-1,x2:p-1,y2:h-1,stroke:t,strokeWidth:o,strokeDasharray:x,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:x,style:{pointerEvents:"none"}})]})}function E({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,onTouchStart: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 M({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,onTouchStart: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 L({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,onTouchStart: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 O({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,onTouchStart: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))})}const $=[j({id:"ink",matches:e=>e.type===a.PdfAnnotationSubtype.INK,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(k,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),j({id:"square",matches:e=>e.type===a.PdfAnnotationSubtype.SQUARE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(S,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),j({id:"circle",matches:e=>e.type===a.PdfAnnotationSubtype.CIRCLE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(C,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),j({id:"line",matches:e=>e.type===a.PdfAnnotationSubtype.LINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(A,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),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}}),j({id:"polyline",matches:e=>e.type===a.PdfAnnotationSubtype.POLYLINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(I,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),j({id:"polygon",matches:e=>e.type===a.PdfAnnotationSubtype.POLYGON,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(R,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),j({id:"highlight",matches:e=>e.type===a.PdfAnnotationSubtype.HIGHLIGHT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(E,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1},containerStyle:e=>({mixBlendMode:a.blendModeToCss(e.blendMode??a.PdfBlendMode.Multiply)})}),j({id:"underline",matches:e=>e.type===a.PdfAnnotationSubtype.UNDERLINE,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(M,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),j({id:"strikeout",matches:e=>e.type===a.PdfAnnotationSubtype.STRIKEOUT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(L,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),j({id:"squiggly",matches:e=>e.type===a.PdfAnnotationSubtype.SQUIGGLY,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(O,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),j({id:"freeText",matches: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(w,{documentId:a,isSelected:o,isEditing:i,annotation:{...e,object:t},pageIndex:s,scale:r,onClick:l,appearanceActive:c}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0},isDraggable:(e,{isEditing:t})=>e&&!t,onDoubleClick:(e,t)=>t(e)}),j({id:"stamp",matches:e=>e.type===a.PdfAnnotationSubtype.STAMP,render:({annotation:e,isSelected:t,documentId:o,pageIndex:i,scale:r,onClick:s})=>n.jsx(D,{isSelected:t,annotation:e,documentId:o,pageIndex:i,scale:r,onClick:s}),useAppearanceStream:!1,interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),j({id:"link",matches:e=>e.type===a.PdfAnnotationSubtype.LINK,render:({currentObject:e,isSelected:t,scale:o,onClick:i})=>n.jsx(P,{...e,isSelected:t,scale:o,onClick:i,hasIRT:!!e.inReplyToId}),interactionDefaults:{isDraggable:!1,isResizable:!1,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})];function F(e){const{documentId:o,pageIndex:r,scale:s,pageWidth:d,pageHeight:u,selectionMenu:p}=e,{provides:h}=f(),{provides:g}=c.useSelectionCapability(),[v,x]=i.useState([]),{register:y}=l.usePointerHandlers({documentId:o,pageIndex:r}),[j,k]=i.useState([]),[S,C]=i.useState(null),[A,I]=i.useState({}),R=i.useRef(s),w=i.useMemo(()=>h?h.forDocument(o):null,[h,o]),z=j.length>1;i.useEffect(()=>{if(w){const e=w.getState();return x(t.getAnnotationsByPageIndex(e,r)),k(t.getSelectedAnnotationIds(e)),w.onStateChange(e=>{x(t.getAnnotationsByPageIndex(e,r)),k(t.getSelectedAnnotationIds(e))})}},[w,r]),i.useEffect(()=>{if(!w)return;R.current!==s&&(w.invalidatePageAppearances(r),R.current=s);w.getPageAppearances(r,{scaleFactor:s,dpr:"undefined"!=typeof window?window.devicePixelRatio:1}).wait(e=>I(e),()=>I({}))},[w,r,s]);const D=i.useMemo(()=>({onPointerDown:(e,t)=>{t.target===t.currentTarget&&w&&(w.deselectAnnotation(),C(null))}}),[w]),P=i.useCallback((e,t)=>{if(e.stopPropagation(),w&&g){g.clear();"metaKey"in e&&(e.metaKey||e.ctrlKey)?w.toggleSelection(r,t.object.id):w.selectAnnotation(r,t.object.id),t.object.id!==S&&C(null)}},[w,g,S,r]);i.useEffect(()=>y(D,{documentId:o}),[y,D]);const E=i.useMemo(()=>v.filter(e=>j.includes(e.object.id)),[v,j]),M=i.useMemo(()=>!(E.length<2)&&E.every(e=>{const n=null==w?void 0:w.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}),[E,w]),L=i.useMemo(()=>!(E.length<2)&&E.every(e=>{const n=null==w?void 0:w.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}),[E,w]),O=i.useMemo(()=>!(E.length<2)&&E.every(e=>{const n=null==w?void 0:w.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}),[E,w]),F=i.useMemo(()=>!(E.length<2)&&E.some(e=>{const n=null==w?void 0:w.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}),[E,w]),T=i.useMemo(()=>{if(!w)return!1;const e=w.getSelectedAnnotations();return e.length>1&&e.every(e=>e.object.pageIndex===r)},[w,r,j]),U=i.useCallback(e=>{if(e.dictMode)return null;if(e.object.rotation&&e.object.unrotatedRect)return null;const t=A[e.object.id];return(null==t?void 0:t.normal)?t:null},[A]),W=i.useMemo(()=>{const t=e.annotationRenderers??[],n=new Set(t.map(e=>e.id));return[...t,...$.filter(e=>!n.has(e.id))]},[e.annotationRenderers]),B=i.useCallback(e=>W.find(t=>t.matches(e.object))??null,[W]),H=i.useMemo(()=>({defaultSelect:P,selectAnnotation:(e,t)=>null==w?void 0:w.selectAnnotation(e,t),clearSelection:()=>null==g?void 0:g.clear(),allAnnotations:v,pageIndex:r}),[P,w,g,v,r]);return n.jsxs(n.Fragment,{children:[v.map(i=>{var l,c,d;const u=B(i);if(!u)return null;const h=null==w?void 0:w.findToolForAnnotation(i.object),g=j.includes(i.object.id),v=S===i.object.id,x=u.interactionDefaults,f=t.resolveInteractionProp(null==h?void 0:h.interaction.isDraggable,i.object,(null==x?void 0:x.isDraggable)??!0),y=u.isDraggable?u.isDraggable(f,{isEditing:v}):f,m=(null==(l=null==h?void 0:h.behavior)?void 0:l.useAppearanceStream)??u.useAppearanceStream??!0,k=u.selectOverride?e=>u.selectOverride(e,i,H):e=>P(e,i);return n.jsx(b,{trackedAnnotation:i,isSelected:g,isEditing:v,isMultiSelected:z,isDraggable:y,isResizable:t.resolveInteractionProp(null==h?void 0:h.interaction.isResizable,i.object,(null==x?void 0:x.isResizable)??!1),lockAspectRatio:t.resolveInteractionProp(null==h?void 0:h.interaction.lockAspectRatio,i.object,(null==x?void 0:x.lockAspectRatio)??!1),isRotatable:t.resolveInteractionProp(null==h?void 0:h.interaction.isRotatable,i.object,(null==x?void 0:x.isRotatable)??!1),vertexConfig:u.vertexConfig,selectionMenu:(null==(c=u.hideSelectionMenu)?void 0:c.call(u,i.object))?void 0:p,onSelect:k,onDoubleClick:u.onDoubleClick?e=>{e.stopPropagation(),u.onDoubleClick(i.object.id,C)}:void 0,zIndex:u.zIndex,style:(null==(d=u.containerStyle)?void 0:d.call(u,i.object))??{mixBlendMode:a.blendModeToCss(i.object.blendMode??a.PdfBlendMode.Normal)},appearance:m?U(i):void 0,...e,children:(e,{appearanceActive:t})=>u.render({annotation:i,currentObject:e,isSelected:g,isEditing:v,scale:s,pageIndex:r,documentId:o,onClick:k,appearanceActive:t})},i.object.id)}),T&&E.length>=2&&n.jsx(m,{documentId:o,pageIndex:r,scale:s,rotation:e.rotation,pageWidth:d,pageHeight:u,selectedAnnotations:E,isDraggable:M,isResizable:L,isRotatable:O,lockAspectRatio:F,resizeUI:e.resizeUI,rotationUI:e.rotationUI,selectionOutlineColor:e.selectionOutlineColor,selectionOutline:e.groupSelectionOutline??e.selectionOutline,groupSelectionMenu:e.groupSelectionMenu})]})}function T({documentId:e,pageIndex:t,scale:o}){var r,s,l,d,u,p,h,g,v,x,y,b;const{provides:m}=c.useSelectionCapability(),{provides:j}=f(),[k,S]=i.useState([]),[C,A]=i.useState(null),[I,R]=i.useState(null);if(i.useEffect(()=>{if(m)return m.forDocument(e).onSelectionChange(()=>{S(m.forDocument(e).getHighlightRectsForPage(t)),A(m.forDocument(e).getBoundingRectForPage(t))})},[m,e,t]),i.useEffect(()=>{if(j)return R(j.forDocument(e).getActiveTool()),j.forDocument(e).onActiveToolChange(e=>R(e))},[j,e]),!C)return null;if(!I||!I.defaults)return null;switch(I.defaults.type){case a.PdfAnnotationSubtype.UNDERLINE:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(r=I.defaults)?void 0:r.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(M,{strokeColor:null==(s=I.defaults)?void 0:s.strokeColor,opacity:null==(l=I.defaults)?void 0:l.opacity,segmentRects:k,scale:o})});case a.PdfAnnotationSubtype.HIGHLIGHT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(d=I.defaults)?void 0:d.blendMode)??a.PdfBlendMode.Multiply),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(E,{strokeColor:null==(u=I.defaults)?void 0:u.strokeColor,opacity:null==(p=I.defaults)?void 0:p.opacity,segmentRects:k,scale:o})});case a.PdfAnnotationSubtype.STRIKEOUT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(h=I.defaults)?void 0:h.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(L,{strokeColor:null==(g=I.defaults)?void 0:g.strokeColor,opacity:null==(v=I.defaults)?void 0:v.opacity,segmentRects:k,scale:o})});case a.PdfAnnotationSubtype.SQUIGGLY:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(x=I.defaults)?void 0:x.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(O,{strokeColor:null==(y=I.defaults)?void 0:y.strokeColor,opacity:null==(b=I.defaults)?void 0:b.opacity,segmentRects:k,scale:o})});default:return null}}function U({preview:e,scale:t}){const{bounds:o}=e,i={position:"absolute",left:o.origin.x*t,top:o.origin.y*t,width:o.size.width*t,height:o.size.height*t,pointerEvents:"none",zIndex:10};return e.type===a.PdfAnnotationSubtype.CIRCLE?n.jsx("div",{style:i,children:n.jsx(C,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.SQUARE?n.jsx("div",{style:i,children:n.jsx(S,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.POLYGON?n.jsx("div",{style:i,children:n.jsx(R,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.POLYLINE?n.jsx("div",{style:i,children:n.jsx(I,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.LINE?n.jsx("div",{style:i,children:n.jsx(A,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.INK?n.jsx("div",{style:i,children:n.jsx(k,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.FREETEXT?n.jsx("div",{style:i,children:n.jsx("div",{style:{width:"100%",height:"100%",border:`1px dashed ${e.data.fontColor||"#000000"}`,backgroundColor:"transparent"}})}):null}function W({documentId:e,pageIndex:t,scale:o}){const{plugin:r}=x(),[s,a]=i.useState(new Map),l=i.useRef(null),c=i.useRef(null),d=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()},processImage:({source:e,maxWidth:t,maxHeight:n,onComplete:o})=>{const i=c.current;if(!i||!i.getContext)return;const r=i.getContext("2d");if(!r)return;const s=new Image;s.crossOrigin="Anonymous",s.onload=()=>{let{naturalWidth:a,naturalHeight:l}=s;const c=t?t/a:1,d=n?n/l:1,u=Math.min(c,d,1),p=a*u,h=l*u;i.width=p,i.height=h,r.drawImage(s,0,0,p,h);const g=r.getImageData(0,0,p,h);"string"!=typeof e&&URL.revokeObjectURL(s.src),o({imageData:g,width:p,height:h})},s.src="string"==typeof e?e:URL.createObjectURL(e)}}),[]);return i.useEffect(()=>{if(r)return r.registerPageHandlers(e,t,o,{services:d,onPreview:(e,t)=>{a(n=>{const o=new Map(n);return t?o.set(e,t):o.delete(e),o})}})},[e,t,o,r,d]),n.jsxs(n.Fragment,{children:[n.jsx("input",{ref:l,type:"file",style:{display:"none"}}),n.jsx("canvas",{ref:c,style:{display:"none"}}),Array.from(s.entries()).map(([e,t])=>n.jsx(U,{preview:t,scale:o},e))]})}const B=e.createPluginPackage(t.AnnotationPluginPackage).addWrapper(g).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:x,customAnnotationRenderer:f,annotationRenderers:y,...b}){var m,j,k,S;const C=s.useDocumentState(t),A=null==(j=null==(m=null==C?void 0:C.document)?void 0:m.pages)?void 0:j[o],I=(null==(k=null==A?void 0:A.size)?void 0:k.width)??0,R=(null==(S=null==A?void 0:A.size)?void 0:S.height)??0,w=v(),z=i.useMemo(()=>{const e=[...w];for(const t of y??[]){const n=e.findIndex(e=>e.id===t.id);n>=0?e[n]=t:e.push(t)}return e},[w,y]),D=i.useMemo(()=>void 0!==r?r:(null==C?void 0:C.scale)??1,[r,null==C?void 0:C.scale]),P=i.useMemo(()=>{if(void 0!==a)return a;return(((null==A?void 0:A.rotation)??0)+((null==C?void 0:C.rotation)??0))%4},[a,null==A?void 0:A.rotation,null==C?void 0:C.rotation]);return n.jsxs("div",{style:{...e},...b,children:[n.jsx(F,{documentId:t,selectionMenu:l,groupSelectionMenu:c,pageIndex:o,scale:D,rotation:P,pageWidth:I,pageHeight:R,resizeUI:d,vertexUI:u,rotationUI:p,selectionOutlineColor:h,selectionOutline:g,groupSelectionOutline:x,customAnnotationRenderer:f,annotationRenderers:z}),n.jsx(T,{documentId:t,pageIndex:o,scale:D}),n.jsx(W,{documentId:t,pageIndex:o,scale:D})]})},exports.AnnotationPluginPackage=B,exports.AnnotationRendererProvider=g,exports.GroupSelectionBox=m,exports.createRenderer=j,exports.useAnnotation=e=>{var n;const{provides:o}=f(),[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=f,exports.useAnnotationPlugin=x,exports.useRegisterRenderers=function(e){const t=i.useContext(p),n=i.useRef(e);i.useEffect(()=>{if(t)return t(n.current)},[t])},exports.useRegisteredRenderers=v,exports.useRendererRegistry=function(){return i.useContext(p)},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 y(){return i.useContext(g)}const x=()=>s.usePlugin(t.AnnotationPlugin.id),f=()=>s.useCapability(t.AnnotationPlugin.id);function b({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 m({scale:e,documentId:t,pageIndex:o,rotation:l,pageWidth:c,pageHeight:p,trackedAnnotation:h,children:g,isSelected:v,isEditing:y=!1,isMultiSelected:m=!1,isDraggable:k,isResizable:j,isRotatable:S=!0,lockAspectRatio:C=!1,style:A={},blendMode:w,vertexConfig:I,selectionMenu:R,outlineOffset:z=1,onDoubleClick:D,onSelect:P,appearance:E,zIndex:M=1,resizeUI:L,vertexUI:$,rotationUI:O,selectionOutlineColor:F,selectionOutline:B,customAnnotationRenderer:W,groupSelectionMenu:U,groupSelectionOutline:T,annotationRenderers:H,...N}){var G,q,Y;const[V,X]=i.useState(h.object),[K,Q]=i.useState(null),[Z,J]=i.useState(null),[_,ee]=i.useState(!1),[te,ne]=i.useState(!1),{provides:oe}=f(),{plugin:ie}=x(),{canModifyAnnotations:re}=s.useDocumentPermissions(t),se=i.useRef(null),ae=re&&k&&!m,le=re&&j&&!m,ce=re&&S&&!m,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,ye=ge?0:l,xe=(null==L?void 0:L.color)??"#007ACC",fe=(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,Ce=null==O?void 0:O.margin,Ae=(null==O?void 0:O.iconColor)??"#007ACC",we=(null==O?void 0:O.showConnector)??!1,Ie=(null==(G=null==O?void 0:O.border)?void 0:G.color)??"#007ACC",Re=(null==(q=null==O?void 0:O.border)?void 0:q.width)??1,ze=(null==(Y=null==O?void 0:O.border)?void 0:Y.style)??"solid",De=(null==B?void 0:B.color)??F??"#007ACC",Pe=(null==B?void 0:B.style)??"solid",Ee=(null==B?void 0:B.width)??1,Me=(null==B?void 0:B.offset)??z??1,Le=K??ue.rotation??0,$e=K??ue.rotation??0,Oe=Number.isFinite($e)?Math.round(10*$e)/10:0,Fe=null!==K,Be=i.useRef(null),We=i.useCallback(e=>{var n;if(!(null==(n=e.transformData)?void 0:n.type)||m||!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&&I){const t=se.current??h.object,n=I.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&&J({x:o.clientX,y:o.clientY}),void("start"===e.state?(Q(n),ie.startRotation(t,{annotationIds:[a],cursorAngle:n,rotationCenter:null==s?void 0:s.rotationCenter})):"move"===e.state?(Q(n),ie.updateRotation(t,n,null==s?void 0:s.rotationDelta)):"end"===e.state&&(Q(null),J(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,m,I,oe,de,Le]),Ue=ue.unrotatedRect,Te=Ue??ue.rect,He=Ue&&0!==Le?a.inferRotationCenterFromRects(Te,ue.rect,Le):void 0,Ne=Te,{dragProps:Ge,vertices:qe,resize:Ye,rotation:Ve}=d.useInteractionHandles({controller:{element:Ne,vertices:null==I?void 0:I.extractVertices(ue),constraints:{minWidth:10,minHeight:10,boundingBox:{width:c,height:p}},maintainAspectRatio:C,pageRotation:l,annotationRotation:Le,rotationCenter:He,rotationElement:ue.rect,scale:e,enabled:v&&!m,onUpdate:We},resizeUI:{handleSize:ke,spacing:Me,offsetMode:"outside",includeSides:!C,zIndex:M+1},vertexUI:{vertexSize:je,zIndex:M+2},rotationUI:{handleSize:Se,margin:Ce,zIndex:M+3,showConnector:we},includeVertices:!!I,includeRotation:ce,currentRotation:Le}),Xe=i.useMemo(()=>{if(re&&D)return D},[re,D]),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||Q(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 Qe=v&&!m,Ze=ue.rect.size.width*ve,Je=ue.rect.size.height*ve,_e=Te.size.width*ve,et=Te.size.height*ve,tt=Boolean(Ue)&&0!==Le,nt=tt?(Te.origin.x-ue.rect.origin.x)*ve:(Ze-_e)/2,ot=tt?(Te.origin.y-ue.rect.origin.y)*ve:(Je-et)/2,it=tt&&He?`${(He.x-Te.origin.x)*ve}px ${(He.y-Te.origin.y)*ve}px`:"center center",rt=He?(He.x-ue.rect.origin.x)*ve:Ze/2,st=He?(He.y-ue.rect.origin.y)*ve:Je/2,at=Math.max(300,Math.max(Ze,Je)+80),lt=ge?u.getCounterRotation({origin:{x:0,y:0},size:{width:Ze,height:Je}},l):null,ct=i.useMemo(()=>Ue?{...ue,rect:Ue}:ue,[ue,Ue]),dt=!(!(null==E?void 0:E.normal)||te||y||h.dictMode),ut={position:"absolute",left:ue.rect.origin.x*e,top:ue.rect.origin.y*e,width:lt?lt.width:Ze,height:lt?lt.height:Je,pointerEvents:"none",zIndex:M,...lt&&{transform:lt.matrix,transformOrigin:"0 0"}},pt={position:"absolute",left:nt,top:ot,width:_e,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,...w&&{mixBlendMode:w},...A},children:n.jsxs("div",{style:{...pt,pointerEvents:"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:P}))??t})(),(null==E?void 0:E.normal)&&n.jsx(b,{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&&Ve&&((null==O?void 0:O.component)?n.jsx("div",{onPointerEnter:()=>ee(!0),onPointerLeave:()=>{ee(!1),J(null)},onPointerMove:e=>{Fe||J({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:O.component({...Ve.handle,backgroundColor:be,iconColor:Ae,connectorStyle:{...Ve.connector.style,backgroundColor:me,opacity:Fe?0:1},showConnector:we,opacity:Fe?0:1,border:{color:Ie,width:Re,style:ze}})}):n.jsxs("div",{onPointerEnter:()=>ee(!0),onPointerLeave:()=>{ee(!1),J(null)},onPointerMove:e=>{Fe||J({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[we&&n.jsx("div",{style:{...Ve.connector.style,backgroundColor:me,opacity:Fe?0:1}}),n.jsx("div",{...Ve.handle,style:{...Ve.handle.style,backgroundColor:be,border:`${Re}px ${ze} ${Ie}`,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:Ae,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:Qe?`${Ee}px ${Pe} ${De}`:"none",outlineOffset:Qe?`${Me}px`:"0px",pointerEvents:v&&!m?"auto":"none",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:xe}):n.jsx("div",{...t,style:{...t.style,backgroundColor:xe}},e)),v&&re&&!m&&!Fe&&qe.map(({key:e,...t})=>(null==$?void 0:$.component)?$.component({key:e,...t,backgroundColor:fe}):n.jsx("div",{...t,style:{...t.style,backgroundColor:fe}},e))]})]}),R&&!m&&!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*ye)%360+360)%360;return R({...e,context:{type:"annotation",annotation:h,pageIndex:o},selected:v,placement:{suggestTop:ce&&t>90&&t<270}})}}),(Fe||_)&&Z&&r.createPortal(n.jsxs("div",{style:{position:"fixed",left:Z.x+16,top:Z.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 k(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 j(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=[k(0,0,l,c,n),k(l,0,l,c,n),k(0,c,l,c,n),k(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 S({documentId:e,pageIndex:t,scale:o,rotation:l,pageWidth:c,pageHeight:u,selectedAnnotations:p,isDraggable:h,isResizable:g,isRotatable:v=!0,lockAspectRatio:y=!1,resizeUI:f,rotationUI:b,selectionOutlineColor:m,outlineOffset:k,selectionOutline:S,zIndex:C=2,groupSelectionMenu:A}){var w,I,R;const{plugin:z}=x(),{canModifyAnnotations:D}=s.useDocumentPermissions(e),P=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),U=D&&h,T=D&&g,H=D&&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(!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&&!U)return;if("start"===t.state&&(P.current=N,d?(E.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&&F({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),F(null),z.commitRotation(e)))}const g=P.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&&(P.current=null,d&&E.current?(E.current=!1,z.commitDrag(e)):h&&M.current&&(M.current=!1,z.commitResize(e)))},[z,e,c,u,N,U,p,v]),V=L??0,X=null!==L,K=Number.isFinite(V)?Math.round(10*V)/10:0,Q=(null==f?void 0:f.color)??"#007ACC",Z=(null==f?void 0:f.size)??12,J=(null==b?void 0:b.color)??"white",_=(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==(w=null==b?void 0:b.border)?void 0:w.color)??"#007ACC",re=(null==(I=null==b?void 0:b.border)?void 0:I.width)??1,se=(null==(R=null==b?void 0:b.border)?void 0:R.style)??"solid",ae=(null==S?void 0:S.color)??m??"#007ACC",le=(null==S?void 0:S.style)??"dashed",ce=(null==S?void 0:S.width)??2,de=(null==S?void 0:S.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:y,pageRotation:l,scale:o,enabled:!0,onUpdate:Y},resizeUI:{handleSize:Z,spacing:de,offsetMode:"outside",includeSides:!y,zIndex:C+1},vertexUI:{vertexSize:0,zIndex:C},rotationUI:{handleSize:ee,margin:te,zIndex:C+2,showConnector:oe},includeVertices:!1,includeRotation:H,currentRotation:L??0});if(p.length<2)return null;let ge=1/0,ve=1/0,ye=-1/0,xe=-1/0;for(const n of p){const e=j(n,o,l);ge=Math.min(ge,e.left),ve=Math.min(ve,e.top),ye=Math.max(ye,e.right),xe=Math.max(xe,e.bottom)}const fe=ge-N.origin.x*o,be=ve-N.origin.y*o,me=ye-(N.origin.x+N.size.width)*o,ke=xe-(N.origin.y+N.size.height)*o,je=G.origin.x*o+fe,Se=G.origin.y*o+be,Ce=G.size.width*o+(me-fe),Ae=G.size.height*o+(ke-be),we=Ce/2,Ie=Ae/2,Re=Math.max(300,Math.max(Ce,Ae)+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:Ce,height:Ae,pointerEvents:"none",zIndex:C},children:[X&&n.jsxs(n.Fragment,{children:[n.jsx("div",{style:{position:"absolute",left:we-Re/2,top:Ie,width:Re,height:1,backgroundColor:Q,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:we,top:Ie-Re/2,width:1,height:Re,backgroundColor:Q,opacity:.35,pointerEvents:"none"}}),n.jsx("div",{style:{position:"absolute",left:we-Re/2,top:Ie,width:Re,height:1,transformOrigin:"center center",transform:`rotate(${V}deg)`,backgroundColor:Q,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=>{X||F({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:b.component({...he.handle,backgroundColor:J,iconColor:ne,connectorStyle:{...he.connector.style,backgroundColor:_,opacity:X?0:1},showConnector:oe,opacity:X?0:1,border:{color:ie,width:re,style:se}})}):n.jsxs("div",{onPointerEnter:()=>W(!0),onPointerLeave:()=>{W(!1),F(null)},onPointerMove:e=>{X||F({x:e.clientX,y:e.clientY})},style:{display:"contents"},children:[oe&&n.jsx("div",{style:{...he.connector.style,backgroundColor:_,opacity:X?0:1}}),n.jsx("div",{...he.handle,style:{...he.handle.style,backgroundColor:J,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",{...U?ue:{onPointerDown:e=>e.stopPropagation()},style:{position:"absolute",left:0,top:0,width:Ce,height:Ae,outline:X?"none":`${ce}px ${le} ${ae}`,outlineOffset:de-1,cursor:U?"move":"default",touchAction:"none",pointerEvents:"auto"},children:T&&!X&&pe.map(({key:e,...t})=>(null==f?void 0:f.component)?f.component({key:e,...t,backgroundColor:Q}):n.jsx("div",{...t,style:{...t.style,backgroundColor:Q}},e))})]}),(X||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:[K.toFixed(0),"°"]}),document.body),A&&!X&&n.jsx(d.CounterRotate,{rect:{origin:{x:je,y:Se},size:{width:Ce,height:Ae}},rotation:l,children:e=>{const n=((V+90*l)%360+360)%360;return A({...e,context:{type:"group",annotations:p,pageIndex:t},selected:!0,placement:{suggestTop:H&&n>90&&n<270}})}})]})}function C(e){return{id:e.id,matches:t=>e.matches(t),render:t=>e.render(t),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}}function A({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":"pointer",pointerEvents:e?"none":"visibleStroke",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 w({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:y}){const x=(v??0)>0,{width:f,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},y,v,l):null,[x,u,y,v,l]),S=u.size.width*p,C=u.size.height*p,A=Math.max(l,20/p);return n.jsxs("svg",{style:{position:"absolute",width:S,height:C,pointerEvents:"none",zIndex:2},width:S,height:C,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:A,onPointerDown:h,style:{cursor:e?"move":"pointer",pointerEvents:e?"none":"transparent"===o?"visibleStroke":"visible"}}):n.jsx("rect",{x:m,y:k,width:f,height:b,fill:"transparent",stroke:"transparent",strokeWidth:A,onPointerDown:h,style:{cursor:e?"move":"pointer",pointerEvents:e?"none":"transparent"===o?"visibleStroke":"visible"}}),!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:f,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 I({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:y}){const x=(v??0)>0,{width:f,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]),C=i.useMemo(()=>x?t.generateCloudyEllipsePath({x:0,y:0,width:d.size.width,height:d.size.height},y,v,s):null,[x,d,y,v,s]),A=f*u,w=b*u,I=Math.max(s,20/u);return n.jsxs("svg",{style:{position:"absolute",width:A,height:w,pointerEvents:"none",zIndex:2},width:A,height:w,viewBox:`0 0 ${f} ${b}`,overflow:"visible",children:[x&&C?n.jsx("path",{d:C.path,fill:"transparent",stroke:"transparent",strokeWidth:I,onPointerDown:p,style:{cursor:h?"move":"pointer",pointerEvents:h?"none":"transparent"===e?"visibleStroke":"visible"}}):n.jsx("ellipse",{cx:m,cy:k,rx:j,ry:S,fill:"transparent",stroke:"transparent",strokeWidth:I,onPointerDown:p,style:{cursor:h?"move":"pointer",pointerEvents:h?"none":"transparent"===e?"visibleStroke":"visible"}}),!g&&(x&&C?n.jsx("path",{d:C.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 R({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:y=!1}){const{x1:x,y1:f,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-f,b-x);return{start:t.patching.createEnding(null==p?void 0:p.start,r,e+Math.PI,x,f),end:t.patching.createEnding(null==p?void 0:p.end,r,e,b,m)}},[p,r,x,f,b,m]),j=d.size.width*h,S=d.size.height*h,C=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:x,y1:f,x2:b,y2:m,stroke:"transparent",strokeWidth:C,onPointerDown:g,style:{cursor:v?"move":"pointer",pointerEvents:v?"none":"visibleStroke",strokeLinecap:"butt"}}),k.start&&n.jsx("path",{d:k.start.d,transform:k.start.transform,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:g,style:{cursor:v?"move":"pointer",pointerEvents:v?"none":k.start.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),k.end&&n.jsx("path",{d:k.end.d,transform:k.end.transform,fill:"transparent",stroke:"transparent",strokeWidth:C,onPointerDown:g,style:{cursor:v?"move":"pointer",pointerEvents:v?"none":k.end.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),!y&&n.jsxs(n.Fragment,{children:[n.jsx("line",{x1:x,y1:f,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 z({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:y=!1}){const x=i.useMemo(()=>o.map(({x:t,y:n})=>({x:t-e.origin.x,y:n-e.origin.y})),[o,e]),f=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:f,fill:"none",stroke:"transparent",strokeWidth:j,onPointerDown:g,style:{cursor:h?"move":"pointer",pointerEvents:h?"none":"visibleStroke",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":"pointer",pointerEvents:h?"none":b.start.filled?"visible":"visibleStroke",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":"pointer",pointerEvents:h?"none":b.end.filled?"visible":"visibleStroke",strokeLinecap:"butt"}}),!y&&n.jsxs(n.Fragment,{children:[n.jsx("path",{d:f,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 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,currentVertex:v,handleSize:y=14,appearanceActive:x=!1,cloudyBorderIntensity:f}){const b=(f??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,f,c),[b,m,e.origin,f,c]),C=v&&o.length>0,A=e.size.width*p,w=e.size.height*p,I=Math.max(c,20/p);return n.jsxs("svg",{style:{position:"absolute",width:A,height:w,pointerEvents:"none",zIndex:2,overflow:"visible"},width:A,height:w,viewBox:`0 0 ${e.size.width} ${e.size.height}`,children:[n.jsx("path",{d:b&&S?S.path:j,fill:"transparent",stroke:"transparent",strokeWidth:I,onPointerDown:g,style:{cursor:h?"move":"pointer",pointerEvents:h?"none":"transparent"===r?"visibleStroke":"visible",strokeLinecap:"butt",strokeLinejoin:"miter"}}),!x&&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(",")}}}),C&&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"}}),C&&o.length>=2&&n.jsx("rect",{x:k[0].x-y/p/2,y:k[0].y-y/p/2,width:y/p,height:y/p,fill:s,opacity:.4,stroke:s,strokeWidth:c/2,style:{pointerEvents:"none"}})]})})]})}function P({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:e?"none":"auto",cursor:e?"move":"pointer"},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 E({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}=f(),v=(null==g?void 0:g.forDocument(e))??null,[y,x]=i.useState(!1);i.useEffect(()=>{if(o&&u.current){h.current=!0;const e=u.current;e.focus();const t=window.getSelection();if(t){const n=document.createRange();n.selectNodeContents(e),n.collapse(!1),t.removeAllRanges(),t.addRange(n)}}},[o]),i.useLayoutEffect(()=>{try{const e=navigator,t=/iPad|iPhone|iPod/.test(navigator.userAgent)||"MacIntel"===navigator.platform&&(null==e?void 0:e.maxTouchPoints)>1;x(t)}catch{x(!1)}},[]);const b=r.object.fontSize*l,m=y&&o&&b>0&&b<16,k=m?16:b,j=m?b/16:1,S=m?100/j:100;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:t&&!o?"none":"auto",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}))},tabIndex:0,style:{color:r.object.fontColor,fontSize:k,...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:m?`${S}%`:"100%",height:m?`${S}%`:"100%",lineHeight:"1.18",overflow:"hidden",cursor:o?"text":"pointer",outline:"none",transform:m?`scale(${j})`:void 0,transformOrigin:"top left"},contentEditable:o,...p,children:r.object.contents})})}function M({documentId:e,pageIndex:t,annotation:r,scaleFactor:s=1,unrotated:l,style:c,...d}){const{provides:u}=f(),[p,h]=i.useState(null),g=i.useRef(null),{width:v,height:y}=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,y]);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 L({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:e?"none":"auto",cursor:"pointer"},onPointerDown:s,children:n.jsx(M,{documentId:o,pageIndex:i,annotation:{...t.object,id:t.object.id},scaleFactor:r,unrotated:a})})}function $({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,y=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?"default":e?"move":"pointer",pointerEvents:u||e?"none":"visible"}}),x?n.jsx("line",{x1:1,y1:h-1,x2:p-1,y2:h-1,stroke:t,strokeWidth:o,strokeDasharray:y,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:y,style:{pointerEvents:"none"}})]})}function O({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 F({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 B({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 W({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 U({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":"pointer",pointerEvents:e?"none":"visible"}}),!l&&n.jsx("path",{d:u,fill:t,stroke:t,strokeWidth:.5,opacity:o,fillRule:"evenodd",style:{pointerEvents:"none"}})]})}const T=[C({id:"ink",matches:e=>e.type===a.PdfAnnotationSubtype.INK,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(A,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),C({id:"square",matches:e=>e.type===a.PdfAnnotationSubtype.SQUARE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(w,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),C({id:"circle",matches:e=>e.type===a.PdfAnnotationSubtype.CIRCLE,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(I,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),C({id:"line",matches:e=>e.type===a.PdfAnnotationSubtype.LINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(R,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),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}}),C({id:"polyline",matches:e=>e.type===a.PdfAnnotationSubtype.POLYLINE,render:({currentObject:e,isSelected:t,scale:i,onClick:r,appearanceActive:s})=>n.jsx(o.Fragment,{children:n.jsx(z,{...e,isSelected:t,scale:i,onClick:r,appearanceActive:s})}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),C({id:"polygon",matches:e=>e.type===a.PdfAnnotationSubtype.POLYGON,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})}),vertexConfig:{extractVertices:e=>e.vertices,transformAnnotation:(e,t)=>({...e,vertices:t})},interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!0}}),C({id:"highlight",matches:e=>e.type===a.PdfAnnotationSubtype.HIGHLIGHT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(O,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1},defaultBlendMode:a.PdfBlendMode.Multiply}),C({id:"underline",matches:e=>e.type===a.PdfAnnotationSubtype.UNDERLINE,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(F,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),C({id:"strikeout",matches:e=>e.type===a.PdfAnnotationSubtype.STRIKEOUT,render:({currentObject:e,scale:t,onClick:o,appearanceActive:i})=>n.jsx(B,{...e,scale:t,onClick:o,appearanceActive:i}),zIndex:0,interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),C({id:"squiggly",matches:e=>e.type===a.PdfAnnotationSubtype.SQUIGGLY,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}}),C({id:"text",matches:e=>e.type===a.PdfAnnotationSubtype.TEXT&&!e.inReplyToId,render:({currentObject:e,isSelected:t,onClick:o,appearanceActive:i})=>n.jsx(P,{isSelected:t,color:e.strokeColor??e.color,opacity:e.opacity,onClick:o,appearanceActive:i}),interactionDefaults:{isDraggable:!0,isResizable:!1,isRotatable:!1}}),C({id:"caret",matches:e=>e.type===a.PdfAnnotationSubtype.CARET,render:({currentObject:e,isSelected:t,scale:o,onClick:i,appearanceActive:r})=>n.jsx(U,{...e,isSelected:t,scale:o,onClick:i,appearanceActive:r}),interactionDefaults:{isDraggable:!1,isResizable:!1,isRotatable:!1}}),C({id:"freeText",matches: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(E,{documentId:a,isSelected:o,isEditing:i,annotation:{...e,object:t},pageIndex:s,scale:r,onClick:l,appearanceActive:c}),interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0},isDraggable:(e,{isEditing:t})=>e&&!t,onDoubleClick:(e,t)=>t(e)}),C({id:"stamp",matches:e=>e.type===a.PdfAnnotationSubtype.STAMP,render:({annotation:e,isSelected:t,documentId:o,pageIndex:i,scale:r,onClick:s})=>n.jsx(L,{isSelected:t,annotation:e,documentId:o,pageIndex:i,scale:r,onClick:s}),useAppearanceStream:!1,interactionDefaults:{isDraggable:!0,isResizable:!0,isRotatable:!0}}),C({id:"link",matches:e=>e.type===a.PdfAnnotationSubtype.LINK,render:({currentObject:e,isSelected:t,scale:o,onClick:i})=>n.jsx($,{...e,isSelected:t,scale:o,onClick:i,hasIRT:!!e.inReplyToId}),interactionDefaults:{isDraggable:!1,isResizable:!1,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})];function H(e){const{documentId:o,pageIndex:r,scale:s,pageWidth:d,pageHeight:u,selectionMenu:p}=e,{provides:h}=f(),{provides:g}=c.useSelectionCapability(),[v,y]=i.useState([]),{register:x}=l.usePointerHandlers({documentId:o,pageIndex:r}),[b,k]=i.useState([]),[j,C]=i.useState(null),[A,w]=i.useState({}),I=i.useRef(s),R=i.useMemo(()=>h?h.forDocument(o):null,[h,o]),z=b.length>1;i.useEffect(()=>{if(R){const e=R.getState();return y(t.getAnnotationsByPageIndex(e,r)),k(t.getSelectedAnnotationIds(e)),R.onStateChange(e=>{y(t.getAnnotationsByPageIndex(e,r)),k(t.getSelectedAnnotationIds(e))})}},[R,r]),i.useEffect(()=>{if(!R)return;I.current!==s&&(R.invalidatePageAppearances(r),I.current=s);R.getPageAppearances(r,{scaleFactor:s,dpr:"undefined"!=typeof window?window.devicePixelRatio:1}).wait(e=>w(e),()=>w({}))},[R,r,s]);const D=i.useMemo(()=>({onPointerDown:(e,t)=>{t.target===t.currentTarget&&R&&(R.deselectAnnotation(),C(null))}}),[R]),P=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!==j&&C(null)}},[R,g,j,r]);i.useEffect(()=>x(D,{documentId:o}),[x,D]);const E=i.useMemo(()=>v.filter(e=>b.includes(e.object.id)),[v,b]),M=i.useMemo(()=>!(E.length<2)&&E.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}),[E,R]),L=i.useMemo(()=>!(E.length<2)&&E.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}),[E,R]),$=i.useMemo(()=>!(E.length<2)&&E.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}),[E,R]),O=i.useMemo(()=>!(E.length<2)&&E.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}),[E,R]),F=i.useMemo(()=>{if(!R)return!1;const e=R.getSelectedAnnotations();return e.length>1&&e.every(e=>e.object.pageIndex===r)},[R,r,b]),B=i.useCallback(e=>{if(e.dictMode)return null;if(e.object.rotation&&e.object.unrotatedRect)return null;const t=A[e.object.id];return(null==t?void 0:t.normal)?t:null},[A]),W=i.useMemo(()=>{const t=e.annotationRenderers??[],n=new Set(t.map(e=>e.id));return[...t,...T.filter(e=>!n.has(e.id))]},[e.annotationRenderers]),U=i.useCallback(e=>W.find(t=>t.matches(e.object))??null,[W]),H=i.useMemo(()=>({defaultSelect:P,selectAnnotation:(e,t)=>null==R?void 0:R.selectAnnotation(e,t),clearSelection:()=>null==g?void 0:g.clear(),allAnnotations:v,pageIndex:r}),[P,R,g,v,r]);return n.jsxs(n.Fragment,{children:[v.map(i=>{var l,c,d;const u=U(i);if(!u)return null;const h=null==R?void 0:R.findToolForAnnotation(i.object),g=b.includes(i.object.id),v=j===i.object.id,y=u.interactionDefaults,x=t.resolveInteractionProp(null==h?void 0:h.interaction.isDraggable,i.object,(null==y?void 0:y.isDraggable)??!0),f=u.isDraggable?u.isDraggable(x,{isEditing:v}):x,k=(null==(l=null==h?void 0:h.behavior)?void 0:l.useAppearanceStream)??u.useAppearanceStream??!0,S=u.selectOverride?e=>u.selectOverride(e,i,H):e=>P(e,i);return n.jsx(m,{trackedAnnotation:i,isSelected:g,isEditing:v,isMultiSelected:z,isDraggable:f,isResizable:t.resolveInteractionProp(null==h?void 0:h.interaction.isResizable,i.object,(null==y?void 0:y.isResizable)??!1),lockAspectRatio:t.resolveInteractionProp(null==h?void 0:h.interaction.lockAspectRatio,i.object,(null==y?void 0:y.lockAspectRatio)??!1),isRotatable:t.resolveInteractionProp(null==h?void 0:h.interaction.isRotatable,i.object,(null==y?void 0:y.isRotatable)??!1),vertexConfig:u.vertexConfig,selectionMenu:(null==(c=u.hideSelectionMenu)?void 0:c.call(u,i.object))?void 0:p,onSelect:S,onDoubleClick:u.onDoubleClick?e=>{e.stopPropagation(),u.onDoubleClick(i.object.id,C)}: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:k?B(i):void 0,...e,children:(e,{appearanceActive:t})=>u.render({annotation:i,currentObject:e,isSelected:g,isEditing:v,scale:s,pageIndex:r,documentId:o,onClick:S,appearanceActive:t})},i.object.id)}),F&&E.length>=2&&n.jsx(S,{documentId:o,pageIndex:r,scale:s,rotation:e.rotation,pageWidth:d,pageHeight:u,selectedAnnotations:E,isDraggable:M,isResizable:L,isRotatable:$,lockAspectRatio:O,resizeUI:e.resizeUI,rotationUI:e.rotationUI,selectionOutlineColor:e.selectionOutlineColor,selectionOutline:e.groupSelectionOutline??e.selectionOutline,groupSelectionMenu:e.groupSelectionMenu})]})}function N({documentId:e,pageIndex:t,scale:o}){var r,s,l,d,u,p,h,g,v,y,x,b;const{provides:m}=c.useSelectionCapability(),{provides:k}=f(),[j,S]=i.useState([]),[C,A]=i.useState(null),[w,I]=i.useState(null);if(i.useEffect(()=>{if(m)return m.forDocument(e).onSelectionChange(()=>{S(m.forDocument(e).getHighlightRectsForPage(t)),A(m.forDocument(e).getBoundingRectForPage(t))})},[m,e,t]),i.useEffect(()=>{if(k)return I(k.forDocument(e).getActiveTool()),k.forDocument(e).onActiveToolChange(e=>I(e))},[k,e]),!C)return null;if(!w||!w.defaults)return null;switch(w.defaults.type){case a.PdfAnnotationSubtype.UNDERLINE:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(r=w.defaults)?void 0:r.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(F,{strokeColor:null==(s=w.defaults)?void 0:s.strokeColor,opacity:null==(l=w.defaults)?void 0:l.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.HIGHLIGHT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(d=w.defaults)?void 0:d.blendMode)??a.PdfBlendMode.Multiply),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(O,{strokeColor:null==(u=w.defaults)?void 0:u.strokeColor,opacity:null==(p=w.defaults)?void 0:p.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.STRIKEOUT:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(h=w.defaults)?void 0:h.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(B,{strokeColor:null==(g=w.defaults)?void 0:g.strokeColor,opacity:null==(v=w.defaults)?void 0:v.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.SQUIGGLY:return n.jsx("div",{style:{mixBlendMode:a.blendModeToCss((null==(y=w.defaults)?void 0:y.blendMode)??a.PdfBlendMode.Normal),pointerEvents:"none",position:"absolute",inset:0},children:n.jsx(W,{strokeColor:null==(x=w.defaults)?void 0:x.strokeColor,opacity:null==(b=w.defaults)?void 0:b.opacity,segmentRects:j,scale:o})});case a.PdfAnnotationSubtype.CARET:default:return null}}function G({preview:e,scale:t}){const{bounds:o}=e,i={position:"absolute",left:o.origin.x*t,top:o.origin.y*t,width:o.size.width*t,height:o.size.height*t,pointerEvents:"none",zIndex:10};return e.type===a.PdfAnnotationSubtype.CIRCLE?n.jsx("div",{style:i,children:n.jsx(I,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.SQUARE?n.jsx("div",{style:i,children:n.jsx(w,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.POLYGON?n.jsx("div",{style:i,children:n.jsx(D,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.POLYLINE?n.jsx("div",{style:i,children:n.jsx(z,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.LINE?n.jsx("div",{style:i,children:n.jsx(R,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.INK?n.jsx("div",{style:{...i,mixBlendMode:a.blendModeToCss(e.data.blendMode??a.PdfBlendMode.Normal)},children:n.jsx(A,{isSelected:!1,scale:t,...e.data})}):e.type===a.PdfAnnotationSubtype.FREETEXT?n.jsx("div",{style:i,children:n.jsx("div",{style:{width:"100%",height:"100%",border:`1px dashed ${e.data.fontColor||"#000000"}`,backgroundColor:"transparent"}})}):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.useRef(null),d=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()},processImage:({source:e,maxWidth:t,maxHeight:n,onComplete:o})=>{const i=c.current;if(!i||!i.getContext)return;const r=i.getContext("2d");if(!r)return;const s=new Image;s.crossOrigin="Anonymous",s.onload=()=>{let{naturalWidth:a,naturalHeight:l}=s;const c=t?t/a:1,d=n?n/l:1,u=Math.min(c,d,1),p=a*u,h=l*u;i.width=p,i.height=h,r.drawImage(s,0,0,p,h);const g=r.getImageData(0,0,p,h);"string"!=typeof e&&URL.revokeObjectURL(s.src),o({imageData:g,width:p,height:h})},s.src="string"==typeof e?e:URL.createObjectURL(e)}}),[]);return i.useEffect(()=>{if(r)return r.registerPageHandlers(e,t,o,{services:d,onPreview:(e,t)=>{a(n=>{const o=new Map(n);return t?o.set(e,t):o.delete(e),o})}})},[e,t,o,r,d]),n.jsxs(n.Fragment,{children:[n.jsx("input",{ref:l,type:"file",style:{display:"none"}}),n.jsx("canvas",{ref:c,style:{display:"none"}}),Array.from(s.entries()).map(([e,t])=>n.jsx(G,{preview:t,scale:o},e))]})}const Y=e.createPluginPackage(t.AnnotationPluginPackage).addWrapper(v).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:f,...b}){var m,k,j,S;const C=s.useDocumentState(t),A=null==(k=null==(m=null==C?void 0:C.document)?void 0:m.pages)?void 0:k[o],w=(null==(j=null==A?void 0:A.size)?void 0:j.width)??0,I=(null==(S=null==A?void 0:A.size)?void 0:S.height)??0,R=y(),z=i.useMemo(()=>{const e=[...R];for(const t of f??[]){const n=e.findIndex(e=>e.id===t.id);n>=0?e[n]=t:e.push(t)}return e},[R,f]),D=i.useMemo(()=>void 0!==r?r:(null==C?void 0:C.scale)??1,[r,null==C?void 0:C.scale]),P=i.useMemo(()=>{if(void 0!==a)return a;return(((null==A?void 0:A.rotation)??0)+((null==C?void 0:C.rotation)??0))%4},[a,null==A?void 0:A.rotation,null==C?void 0:C.rotation]);return n.jsxs("div",{style:{...e},...b,children:[n.jsx(H,{documentId:t,selectionMenu:l,groupSelectionMenu:c,pageIndex:o,scale:D,rotation:P,pageWidth:w,pageHeight:I,resizeUI:d,vertexUI:u,rotationUI:p,selectionOutlineColor:h,selectionOutline:g,groupSelectionOutline:v,customAnnotationRenderer:x,annotationRenderers:z}),n.jsx(N,{documentId:t,pageIndex:o,scale:D}),n.jsx(q,{documentId:t,pageIndex:o,scale:D})]})},exports.AnnotationPluginPackage=Y,exports.AnnotationRendererProvider=v,exports.GroupSelectionBox=S,exports.createRenderer=C,exports.useAnnotation=e=>{var n;const{provides:o}=f(),[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=f,exports.useAnnotationPlugin=x,exports.useRegisterRenderers=function(e){const t=i.useContext(h),n=i.useRef(e);i.useEffect(()=>{if(t)return t(n.current)},[t])},exports.useRegisteredRenderers=y,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