zen-gitsync 2.16.1 → 2.16.3

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 (85) hide show
  1. package/README.md +28 -3
  2. package/package.json +1 -1
  3. package/src/cli/ai/agent.js +181 -21
  4. package/src/cli/ai/agent.test.js +77 -1
  5. package/src/cli/ai/modelSetup.js +594 -0
  6. package/src/cli/ai/modelSetup.test.js +496 -0
  7. package/src/cli/ai/platformGuard.js +200 -0
  8. package/src/cli/ai/platformGuard.test.js +253 -0
  9. package/src/cli/ai/termui.js +135 -37
  10. package/src/cli/ai/termui.test.js +48 -8
  11. package/src/cli/ai/tools.js +8 -0
  12. package/src/gitCommit.js +484 -484
  13. package/src/ui/public/assets/AppVersionBadge-nwlsGMPO.js +2 -0
  14. package/src/ui/public/assets/BranchSelector-bUBqRWF2.js +1 -0
  15. package/src/ui/public/assets/CommitForm-DyHOStnk.js +6 -0
  16. package/src/ui/public/assets/CommonDialog-BA4xg5l3.js +1 -0
  17. package/src/ui/public/assets/EditorView-D939kLwW.js +0 -0
  18. package/src/ui/public/assets/{FlowExecutionViewer-CPblwVA1.js → FlowExecutionViewer-CZdF1f1e.js} +1 -1
  19. package/src/ui/public/assets/FlowOrchestrationWorkspace-BOn17akW.js +21 -0
  20. package/src/ui/public/assets/LogList-xk8W-v1F.js +15 -0
  21. package/src/ui/public/assets/{MindmapView-C_9P5ijq.js → MindmapView-CU3tXgbR.js} +1 -1
  22. package/src/ui/public/assets/MonitorView-CSAqU7oV.js +1 -0
  23. package/src/ui/public/assets/ProjectStartupButton-2By0-fuq.js +1 -0
  24. package/src/ui/public/assets/{RemoteRepoCard-C_cBtHcN.js → RemoteRepoCard-Cx5q9Yxb.js} +2 -2
  25. package/src/ui/public/assets/SourceMapView-uEieIRHF.js +3 -0
  26. package/src/ui/public/assets/{SvgIcon-C9YQSvGU.js → SvgIcon-BqWp2WS8.js} +1 -1
  27. package/src/ui/public/assets/UserInputNode-Ccnh0e-0.js +1 -0
  28. package/src/ui/public/assets/WorkbenchView-DBoFN37v.js +28 -0
  29. package/src/ui/public/assets/{_plugin-vue_export-helper-CHQqCylN.js → _plugin-vue_export-helper-BQRl7WAH.js} +1 -1
  30. package/src/ui/public/assets/configStore-BkxDLXGa.js +1 -0
  31. package/src/ui/public/assets/{css.worker-CvXBzhp8.js → css.worker-BKx7BC4h.js} +7 -7
  32. package/src/ui/public/assets/dagre-CTEVx1fc.js +1 -0
  33. package/src/ui/public/assets/editor.worker-DQJwLooG.js +26 -0
  34. package/src/ui/public/assets/element-plus-CQrjg9us.css +1 -0
  35. package/src/ui/public/assets/element-plus-DNnePjco.js +32 -0
  36. package/src/ui/public/assets/{flow-mindmap-CUvJaYn2.js → flow-mindmap-DRmzYE4F.js} +6 -6
  37. package/src/ui/public/assets/{html.worker-BO6WuOEO.js → html.worker-ChRLLxCa.js} +4 -4
  38. package/src/ui/public/assets/index-Dh9-lDzZ.js +68 -0
  39. package/src/ui/public/assets/{json.worker-BkJRGcCJ.js → json.worker-DR52qCex.js} +5 -5
  40. package/src/ui/public/assets/{monaco-BFLoT2VD.js → monaco-BvgtFLbw.js} +30 -30
  41. package/src/ui/public/assets/rolldown-runtime-DAXXjFlN.js +1 -0
  42. package/src/ui/public/assets/{socket-io-BSgn8Jx2.js → socket-io-pmu5tRPo.js} +1 -1
  43. package/src/ui/public/assets/{ts.worker-B0J26iPs.js → ts.worker-Cqvg7802.js} +18 -18
  44. package/src/ui/public/assets/{vendor-CU5NYUKJ.js → vendor-CcK8n8T4.js} +10 -10
  45. package/src/ui/public/assets/vue-flow-pAz--378.js +39 -0
  46. package/src/ui/public/favicon.svg +75 -75
  47. package/src/ui/public/index.html +30 -30
  48. package/src/ui/public/logo.svg +74 -74
  49. package/src/ui/server/.claude/codediff.txt +8 -0
  50. package/src/ui/server/middleware/requestLogger.js +53 -53
  51. package/src/ui/server/routes/branchStatus.js +105 -105
  52. package/src/ui/server/routes/fs.js +791 -791
  53. package/src/ui/server/routes/git/diff.js +426 -426
  54. package/src/ui/server/routes/git/diffUtils.js +149 -149
  55. package/src/ui/server/routes/git/stash.js +550 -550
  56. package/src/ui/server/routes/git/tags.js +176 -176
  57. package/src/ui/server/routes/git.js +181 -181
  58. package/src/ui/server/routes/gitOps.js +1255 -1255
  59. package/src/ui/server/routes/process.js +86 -86
  60. package/src/ui/server/routes/status.js +67 -67
  61. package/src/ui/server/routes/workbench/pdfText.js +145 -145
  62. package/src/ui/server/utils/createSavePortToFile.js +48 -48
  63. package/src/ui/server/utils/instanceRegistry.js +282 -282
  64. package/src/ui/server/utils/startServerOnAvailablePort.js +116 -116
  65. package/src/utils/index.js +1173 -1173
  66. package/src/ui/public/assets/AppVersionBadge-DJyfXR_Q.js +0 -2
  67. package/src/ui/public/assets/BranchSelector-ClnVPC0Q.js +0 -1
  68. package/src/ui/public/assets/CommitForm-BihM26_4.js +0 -6
  69. package/src/ui/public/assets/CommonDialog-CYoIF2fg.js +0 -1
  70. package/src/ui/public/assets/EditorView-DYJQT-Xj.js +0 -0
  71. package/src/ui/public/assets/FlowOrchestrationWorkspace-Cc-Tnhng.js +0 -21
  72. package/src/ui/public/assets/LogList-va6ANtbL.js +0 -15
  73. package/src/ui/public/assets/MonitorView-DRPECOVW.js +0 -1
  74. package/src/ui/public/assets/ProjectStartupButton-DSovbKPE.js +0 -1
  75. package/src/ui/public/assets/SourceMapView-ZiCL8mS8.js +0 -3
  76. package/src/ui/public/assets/UserInputNode-CR6o8zJG.js +0 -1
  77. package/src/ui/public/assets/WorkbenchView-CJJrBqBH.js +0 -28
  78. package/src/ui/public/assets/configStore-Bw9U4AHx.js +0 -1
  79. package/src/ui/public/assets/dagre-CWIGcX9d.js +0 -1
  80. package/src/ui/public/assets/editor.worker-Cn2oRESe.js +0 -26
  81. package/src/ui/public/assets/element-plus-CyGhXd7X.js +0 -25
  82. package/src/ui/public/assets/element-plus-D3Dn7nX0.css +0 -1
  83. package/src/ui/public/assets/index-BzNpkvm5.js +0 -68
  84. package/src/ui/public/assets/rolldown-runtime-CMxvf4Kt.js +0 -1
  85. package/src/ui/public/assets/vue-flow-CWmfpfPN.js +0 -39
@@ -1,8 +1,8 @@
1
- import{Cn as e,Fn as t,Hn as n,Jn as r,Ln as i,Mn as a,Sn as o,Tn as s,Un as c,Vn as l,Xn as u,Zn as d,_n as f,_r as p,ar as m,cn as h,gn as g,gr as _,hn as v,ln as y,mn as b,mr as x,on as S,pr as C,sn as w,sr as T,tn as E,un as D,vn as O,xn as k,zn as A}from"./element-plus-CyGhXd7X.js";var j=Object.defineProperty,M=(e,t,n)=>t in e?j(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,N=(e,t,n)=>M(e,typeof t==`symbol`?t:t+``,n),P=[`width`,`height`,`stroke-width`],ee={key:4,points:`6 9 12 15 18 9`},F={key:5,points:`9 6 15 12 9 18`},I=s({__name:`Icon`,props:{name:{},size:{},stroke:{}},setup(e){return(t,n)=>(A(),O(`svg`,{width:e.size??16,height:e.size??16,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":e.stroke??1.8,"stroke-linecap":`round`,"stroke-linejoin":`round`,"aria-hidden":`true`},[e.name===`add`?(A(),O(D,{key:0},[n[0]||=v(`circle`,{cx:`12`,cy:`12`,r:`9`},null,-1),n[1]||=v(`line`,{x1:`12`,y1:`8`,x2:`12`,y2:`16`},null,-1),n[2]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1)],64)):e.name===`minus`?(A(),O(D,{key:1},[n[3]||=v(`circle`,{cx:`12`,cy:`12`,r:`9`},null,-1),n[4]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1)],64)):e.name===`delete`?(A(),O(D,{key:2},[n[5]||=k(`<polyline points="4 7 20 7"></polyline><path d="M9 7 V5 a1 1 0 0 1 1 -1 h4 a1 1 0 0 1 1 1 V7"></path><path d="M6 7 l1 12 a1 1 0 0 0 1 1 h8 a1 1 0 0 0 1 -1 l1 -12"></path><line x1="10" y1="11" x2="10" y2="18"></line><line x1="14" y1="11" x2="14" y2="18"></line>`,5)],64)):e.name===`edit`?(A(),O(D,{key:3},[n[6]||=v(`path`,{d:`M4 20 l4 -1 11 -11 -3 -3 -11 11 z`},null,-1),n[7]||=v(`line`,{x1:`14`,y1:`6`,x2:`18`,y2:`10`},null,-1)],64)):e.name===`collapse`?(A(),O(`polyline`,ee)):e.name===`expand`?(A(),O(`polyline`,F)):e.name===`collapse-all`?(A(),O(D,{key:6},[n[8]||=k(`<line x1="4" y1="4" x2="10" y2="10"></line><polyline points="6 10 10 10 10 6"></polyline><line x1="20" y1="4" x2="14" y2="10"></line><polyline points="14 6 14 10 18 10"></polyline><line x1="20" y1="20" x2="14" y2="14"></line><polyline points="14 18 14 14 18 14"></polyline><line x1="4" y1="20" x2="10" y2="14"></line><polyline points="6 14 10 14 10 18"></polyline>`,8)],64)):e.name===`expand-all`?(A(),O(D,{key:7},[n[9]||=k(`<line x1="10" y1="10" x2="4" y2="4"></line><polyline points="4 6 4 4 6 4"></polyline><line x1="14" y1="10" x2="20" y2="4"></line><polyline points="20 6 20 4 18 4"></polyline><line x1="14" y1="14" x2="20" y2="20"></line><polyline points="20 18 20 20 18 20"></polyline><line x1="10" y1="14" x2="4" y2="20"></line><polyline points="4 18 4 20 6 20"></polyline>`,8)],64)):e.name===`expand-level-1`?(A(),O(D,{key:8},[n[10]||=k(`<circle cx="12" cy="5" r="1.8" fill="currentColor" stroke="none"></circle><line x1="12" y1="7" x2="12" y2="11"></line><line x1="12" y1="11" x2="5" y2="17"></line><line x1="12" y1="11" x2="12" y2="17"></line><line x1="12" y1="11" x2="19" y2="17"></line><circle cx="5" cy="19" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="12" cy="19" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="19" cy="19" r="1.8" fill="currentColor" stroke="none"></circle>`,8)],64)):e.name===`expand-level-2`?(A(),O(D,{key:9},[n[11]||=k(`<circle cx="12" cy="3" r="1.4" fill="currentColor" stroke="none"></circle><line x1="12" y1="4.5" x2="12" y2="7"></line><line x1="12" y1="7" x2="5" y2="11"></line><line x1="12" y1="7" x2="12" y2="11"></line><line x1="12" y1="7" x2="19" y2="11"></line><line x1="5" y1="11" x2="3" y2="16"></line><line x1="5" y1="11" x2="7" y2="16"></line><line x1="12" y1="11" x2="10" y2="16"></line><line x1="12" y1="11" x2="14" y2="16"></line><line x1="19" y1="11" x2="17" y2="16"></line><line x1="19" y1="11" x2="21" y2="16"></line><circle cx="5" cy="11" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="12" cy="11" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="19" cy="11" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="3" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="7" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="10" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="14" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="17" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="21" cy="18" r="1.4" fill="currentColor" stroke="none"></circle>`,20)],64)):e.name===`zoom-in`?(A(),O(D,{key:10},[n[12]||=v(`circle`,{cx:`11`,cy:`11`,r:`7`},null,-1),n[13]||=v(`line`,{x1:`11`,y1:`8`,x2:`11`,y2:`14`},null,-1),n[14]||=v(`line`,{x1:`8`,y1:`11`,x2:`14`,y2:`11`},null,-1),n[15]||=v(`line`,{x1:`16`,y1:`16`,x2:`21`,y2:`21`},null,-1)],64)):e.name===`zoom-out`?(A(),O(D,{key:11},[n[16]||=v(`circle`,{cx:`11`,cy:`11`,r:`7`},null,-1),n[17]||=v(`line`,{x1:`8`,y1:`11`,x2:`14`,y2:`11`},null,-1),n[18]||=v(`line`,{x1:`16`,y1:`16`,x2:`21`,y2:`21`},null,-1)],64)):e.name===`reset`?(A(),O(D,{key:12},[n[19]||=v(`polyline`,{points:`4 9 4 4 9 4`},null,-1),n[20]||=v(`polyline`,{points:`15 4 20 4 20 9`},null,-1),n[21]||=v(`polyline`,{points:`20 15 20 20 15 20`},null,-1),n[22]||=v(`polyline`,{points:`9 20 4 20 4 15`},null,-1)],64)):e.name===`database`?(A(),O(D,{key:13},[n[23]||=v(`ellipse`,{cx:`12`,cy:`6`,rx:`7`,ry:`2.5`},null,-1),n[24]||=v(`path`,{d:`M5 6 V18 C5 19.4 8 20.5 12 20.5 C16 20.5 19 19.4 19 18 V6`},null,-1),n[25]||=v(`path`,{d:`M5 12 C5 13.4 8 14.5 12 14.5 C16 14.5 19 13.4 19 12`},null,-1)],64)):e.name===`settings`?(A(),O(D,{key:14},[n[26]||=v(`path`,{d:`M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z`},null,-1),n[27]||=v(`circle`,{cx:`12`,cy:`12`,r:`3`},null,-1)],64)):e.name===`markdown`?(A(),O(D,{key:15},[n[28]||=v(`rect`,{x:`2`,y:`5`,width:`20`,height:`14`,rx:`2`},null,-1),n[29]||=v(`path`,{d:`M6 15 V9 L9 12 L12 9 V15`},null,-1),n[30]||=v(`path`,{d:`M15 15 V9 L18 12 V9 M15 12 L18 15`},null,-1)],64)):e.name===`txt`?(A(),O(D,{key:16},[n[31]||=v(`rect`,{x:`5`,y:`3`,width:`14`,height:`18`,rx:`1.5`},null,-1),n[32]||=v(`line`,{x1:`8`,y1:`8`,x2:`16`,y2:`8`},null,-1),n[33]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1),n[34]||=v(`line`,{x1:`8`,y1:`16`,x2:`13`,y2:`16`},null,-1)],64)):e.name===`eye`?(A(),O(D,{key:17},[n[35]||=v(`path`,{d:`M2 12 C4 6 8 3 12 3 C16 3 20 6 22 12 C20 18 16 21 12 21 C8 21 4 18 2 12 Z`},null,-1),n[36]||=v(`circle`,{cx:`12`,cy:`12`,r:`3.2`},null,-1)],64)):e.name===`eye-off`?(A(),O(D,{key:18},[n[37]||=v(`path`,{d:`M3 3 L21 21`},null,-1),n[38]||=v(`path`,{d:`M10.5 6.2 C11 6.1 11.5 6 12 6 C16 6 19.5 8.5 21 12 C20.4 13.2 19.6 14.3 18.7 15.2`},null,-1),n[39]||=v(`path`,{d:`M6.6 6.6 C4 8.2 2.7 10.2 2 12 C3 14.5 5.2 16.8 8 18.3 C9.2 19 10.6 19.4 12 19.4 C13.5 19.4 14.9 19 16.2 18.3`},null,-1),n[40]||=v(`path`,{d:`M9.5 9.5 C9.1 10.2 9 11.1 9 12 C9 13.7 9.8 15.2 11 16.1`},null,-1)],64)):e.name===`outline`?(A(),O(D,{key:19},[n[41]||=v(`rect`,{x:`4`,y:`3`,width:`16`,height:`18`,rx:`2`},null,-1),n[42]||=v(`line`,{x1:`8`,y1:`8`,x2:`16`,y2:`8`},null,-1),n[43]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1),n[44]||=v(`line`,{x1:`8`,y1:`16`,x2:`13`,y2:`16`},null,-1)],64)):e.name===`logo`?(A(),O(D,{key:20},[n[45]||=k(`<circle cx="12" cy="12" r="2.2"></circle><circle cx="4" cy="5" r="1.6"></circle><circle cx="20" cy="5" r="1.6"></circle><circle cx="4" cy="19" r="1.6"></circle><circle cx="20" cy="19" r="1.6"></circle><line x1="10.5" y1="10.8" x2="5.2" y2="6.4"></line><line x1="13.5" y1="10.8" x2="18.8" y2="6.4"></line><line x1="10.5" y1="13.2" x2="5.2" y2="17.6"></line><line x1="13.5" y1="13.2" x2="18.8" y2="17.6"></line>`,9)],64)):e.name===`import`?(A(),O(D,{key:21},[n[46]||=v(`path`,{d:`M12 4 V15`},null,-1),n[47]||=v(`polyline`,{points:`7 10 12 15 17 10`},null,-1),n[48]||=v(`path`,{d:`M4 19 H20`},null,-1)],64)):e.name===`export`?(A(),O(D,{key:22},[n[49]||=v(`path`,{d:`M12 15 V4`},null,-1),n[50]||=v(`polyline`,{points:`7 9 12 4 17 9`},null,-1),n[51]||=v(`path`,{d:`M4 19 H20`},null,-1)],64)):e.name===`balance`?(A(),O(D,{key:23},[n[52]||=k(`<line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="18" x2="21" y2="18"></line><polyline points="9 4 5 6 9 8"></polyline><polyline points="15 4 19 6 15 8"></polyline><polyline points="9 10 5 12 9 14"></polyline><polyline points="15 10 19 12 15 14"></polyline><polyline points="9 16 5 18 9 20"></polyline><polyline points="15 16 19 18 15 20"></polyline>`,9)],64)):e.name===`mindmap`?(A(),O(D,{key:24},[n[53]||=k(`<circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"></circle><line x1="13.4" y1="10.6" x2="18.5" y2="5.5"></line><line x1="13.4" y1="13.4" x2="18.5" y2="18.5"></line><line x1="10.6" y1="10.6" x2="5.5" y2="5.5"></line><line x1="10.6" y1="13.4" x2="5.5" y2="18.5"></line><circle cx="19.5" cy="4.5" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="19.5" cy="19.5" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="4.5" cy="4.5" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="4.5" cy="19.5" r="1.8" fill="currentColor" stroke="none"></circle>`,9)],64)):e.name===`tree`?(A(),O(D,{key:25},[n[54]||=k(`<circle cx="5" cy="12" r="2" fill="currentColor" stroke="none"></circle><circle cx="19" cy="5" r="2" fill="currentColor" stroke="none"></circle><circle cx="19" cy="12" r="2" fill="currentColor" stroke="none"></circle><circle cx="19" cy="19" r="2" fill="currentColor" stroke="none"></circle><line x1="7" y1="12" x2="12" y2="12"></line><line x1="12" y1="12" x2="12" y2="5"></line><line x1="12" y1="12" x2="12" y2="19"></line><line x1="12" y1="5" x2="17" y2="5"></line><line x1="12" y1="19" x2="17" y2="19"></line>`,9)],64)):e.name===`org`?(A(),O(D,{key:26},[n[55]||=k(`<circle cx="12" cy="5" r="2" fill="currentColor" stroke="none"></circle><circle cx="6" cy="19" r="2" fill="currentColor" stroke="none"></circle><circle cx="12" cy="19" r="2" fill="currentColor" stroke="none"></circle><circle cx="18" cy="19" r="2" fill="currentColor" stroke="none"></circle><line x1="12" y1="7" x2="12" y2="13"></line><line x1="6" y1="13" x2="18" y2="13"></line><line x1="6" y1="13" x2="6" y2="17"></line><line x1="12" y1="13" x2="12" y2="17"></line><line x1="18" y1="13" x2="18" y2="17"></line>`,9)],64)):e.name===`image`?(A(),O(D,{key:27},[n[56]||=v(`rect`,{x:`3`,y:`5`,width:`18`,height:`14`,rx:`2`},null,-1),n[57]||=v(`circle`,{cx:`9`,cy:`11`,r:`1.6`},null,-1),n[58]||=v(`polyline`,{points:`3 17 9 12 13 15 16 13 21 17`},null,-1)],64)):e.name===`x`?(A(),O(D,{key:28},[n[59]||=v(`line`,{x1:`6`,y1:`6`,x2:`18`,y2:`18`},null,-1),n[60]||=v(`line`,{x1:`18`,y1:`6`,x2:`6`,y2:`18`},null,-1)],64)):e.name===`link`?(A(),O(D,{key:29},[n[61]||=v(`path`,{d:`M10 13 a4 4 0 0 0 5.66 0 l3 -3 a4 4 0 1 0 -5.66 -5.66 l-1 1`},null,-1),n[62]||=v(`path`,{d:`M14 11 a4 4 0 0 0 -5.66 0 l-3 3 a4 4 0 1 0 5.66 5.66 l1 -1`},null,-1)],64)):e.name===`note`?(A(),O(D,{key:30},[n[63]||=v(`path`,{d:`M6 4 h9 l3 3 v13 a1 1 0 0 1 -1 1 h-11 a1 1 0 0 1 -1 -1 v-15 a1 1 0 0 1 1 -1 z`},null,-1),n[64]||=v(`line`,{x1:`8`,y1:`10`,x2:`16`,y2:`10`},null,-1),n[65]||=v(`line`,{x1:`8`,y1:`13`,x2:`16`,y2:`13`},null,-1),n[66]||=v(`line`,{x1:`8`,y1:`16`,x2:`13`,y2:`16`},null,-1)],64)):e.name===`search`?(A(),O(D,{key:31},[n[67]||=v(`circle`,{cx:`11`,cy:`11`,r:`7`},null,-1),n[68]||=v(`line`,{x1:`16`,y1:`16`,x2:`21`,y2:`21`},null,-1)],64)):e.name===`json`?(A(),O(D,{key:32},[n[69]||=v(`path`,{d:`M8 4 C6 4 6 6 6 7 C6 8 5 8 5 9 C5 10 6 10 6 11 C6 12 6 14 8 14`},null,-1),n[70]||=v(`path`,{d:`M16 4 C18 4 18 6 18 7 C18 8 19 8 19 9 C19 10 18 10 18 11 C18 12 18 14 16 14`},null,-1)],64)):e.name===`svg-export`?(A(),O(D,{key:33},[n[71]||=v(`path`,{d:`M6 3 h8 l4 4 v14 a1 1 0 0 1 -1 1 h-11 a1 1 0 0 1 -1 -1 v-15 a1 1 0 0 1 1 -1 z`},null,-1),n[72]||=v(`polyline`,{points:`14 3 14 7 18 7`},null,-1),n[73]||=v(`polyline`,{points:`8 14 6 16 8 18`},null,-1),n[74]||=v(`polyline`,{points:`14 14 16 16 14 18`},null,-1)],64)):f(``,!0)],8,P))}}),te=`data:image/svg+xml,%3csvg%20t='1780822312364'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='7459'%20width='200'%20height='200'%3e%3cpath%20d='M329.16%20292.571h658.286V512H329.16zM329.16%200h658.286v219.429H329.16z'%20fill='%239AA1A2'%20p-id='7460'%3e%3c/path%3e%3cpath%20d='M44.927%20146.286a46.519%2046.519%200%200%201%2038.107-73.143h319.269v73.143H109.73V791.99l-48.713%205.705-24.43-651.41h8.339z'%20fill='%239AA1A2'%20p-id='7461'%3e%3c/path%3e%3cpath%20d='M363.83%20877.714H179.51c-78.775%200-142.921-66.12-142.921-147.31V112.787c0-21.943%2017.188-39.643%2038.473-39.643%2021.211%200%2033.5%2017.774%2033.5%2039.643v617.619c0%2037.522%2028.013%2076.58%2064.438%2076.58h190.903c21.211%200%2038.766%2013.97%2038.766%2035.84%200%2021.943-17.555%2034.89-38.766%2034.89z'%20fill='%239AA1A2'%20p-id='7462'%3e%3c/path%3e%3cpath%20d='M432.95%20438.857H179.51c-78.775%200-81.043-18.578-81.043-62.903l10.094-90.624c0%2020.48%2013.458%2080.677%2049.884%2080.677h210.139c21.211%200%20120.613%204.023%20120.613%2016.018%200%2011.922-35.036%2056.832-56.32%2056.832zM640.017%20749.714V640a54.857%2054.857%200%200%201%20109.714%200v109.714h109.715a54.857%2054.857%200%200%201%200%20109.715H749.73v109.714a54.857%2054.857%200%200%201-109.714%200V859.429H530.303a54.857%2054.857%200%200%201%200-109.715h109.714z'%20fill='%239AA1A2'%20p-id='7463'%3e%3c/path%3e%3c/svg%3e`,ne=`data:image/svg+xml,%3csvg%20t='1780822464335'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='8457'%20width='200'%20height='200'%3e%3cpath%20d='M512%20804.571h512V1024H512V804.571zM0%200h658.286v219.429H0V0z'%20fill='%239AA1A2'%20p-id='8458'%3e%3c/path%3e%3cpath%20d='M619.813%20950.857h-184.32c-78.775%200-142.922-66.121-142.922-147.31V185.93c0-21.943%2017.189-39.643%2038.474-39.643%2021.211%200%2033.353%2017.773%2033.353%2039.643v617.618c0%2037.523%2034.743%2073.728%2071.095%2073.728h184.32c21.211%200%2038.473%2012.069%2038.473%2033.939%200%2021.943-17.189%2039.643-38.473%2039.643z'%20fill='%239AA1A2'%20p-id='8459'%3e%3c/path%3e%3cpath%20d='M676.571%20457.143V347.429a54.857%2054.857%200%200%201%20109.715%200v109.714H896a54.857%2054.857%200%200%201%200%20109.714H786.286v109.714a54.857%2054.857%200%200%201-109.715%200V566.857H566.857a54.857%2054.857%200%200%201%200-109.714h109.714z'%20fill='%239AA1A2'%20p-id='8460'%3e%3c/path%3e%3c/svg%3e`,re=[22,15,13,12],L=[700,600,500,400],ie=[46,36,30,26],R=[120,80,60,44],ae=[.8,.8,.8,.8],z=1,oe=re.length-1;function B(e,t){return Math.round(ce(e,t)*ae[se(e)])}function se(e){return Math.min(oe,Math.max(0,e))}function ce(e,t=14){return Math.round(re[se(e)]*t/14*10)/10}function le(e,t=14){return Math.round(ie[se(e)]*t/14)}var ue=60,de=30,fe=.75,pe=14,V=24;function me(e){return Math.max(de,Math.round(ue*fe**+e))}var he=null;function ge(){if(he)return he;let e=typeof document<`u`?document.createElement(`canvas`).getContext(`2d`):null;return e?(he=e,e):{font:``,measureText:()=>({width:0})}}var _e=new Map;function ve(e,t,n){let r=`${n}|${t}|${e}`,i=_e.get(r);if(i!==void 0)return i;let a=ge();a.font=`${n} ${t}px "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif`;let o=e.split(`
1
+ import{Cn as e,Fn as t,Hn as n,Jn as r,Ln as i,Mn as a,Sn as o,Tn as s,Un as c,Vn as l,Xn as u,Zn as d,_n as f,_r as p,ar as m,cn as h,gn as g,gr as _,hn as v,ln as y,mn as b,mr as x,on as S,pr as C,sn as w,sr as T,tn as E,un as D,vn as O,xn as k,zn as A}from"./element-plus-DNnePjco.js";var j=Object.defineProperty,M=(e,t,n)=>t in e?j(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,N=(e,t,n)=>M(e,typeof t==`symbol`?t:t+``,n),P=[`width`,`height`,`stroke-width`],ee={key:4,points:`6 9 12 15 18 9`},F={key:5,points:`9 6 15 12 9 18`},I=s({__name:`Icon`,props:{name:{},size:{},stroke:{}},setup(e){return(t,n)=>(A(),O(`svg`,{width:e.size??16,height:e.size??16,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":e.stroke??1.8,"stroke-linecap":`round`,"stroke-linejoin":`round`,"aria-hidden":`true`},[e.name===`add`?(A(),O(D,{key:0},[n[0]||=v(`circle`,{cx:`12`,cy:`12`,r:`9`},null,-1),n[1]||=v(`line`,{x1:`12`,y1:`8`,x2:`12`,y2:`16`},null,-1),n[2]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1)],64)):e.name===`minus`?(A(),O(D,{key:1},[n[3]||=v(`circle`,{cx:`12`,cy:`12`,r:`9`},null,-1),n[4]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1)],64)):e.name===`delete`?(A(),O(D,{key:2},[n[5]||=k(`<polyline points="4 7 20 7"></polyline><path d="M9 7 V5 a1 1 0 0 1 1 -1 h4 a1 1 0 0 1 1 1 V7"></path><path d="M6 7 l1 12 a1 1 0 0 0 1 1 h8 a1 1 0 0 0 1 -1 l1 -12"></path><line x1="10" y1="11" x2="10" y2="18"></line><line x1="14" y1="11" x2="14" y2="18"></line>`,5)],64)):e.name===`edit`?(A(),O(D,{key:3},[n[6]||=v(`path`,{d:`M4 20 l4 -1 11 -11 -3 -3 -11 11 z`},null,-1),n[7]||=v(`line`,{x1:`14`,y1:`6`,x2:`18`,y2:`10`},null,-1)],64)):e.name===`collapse`?(A(),O(`polyline`,ee)):e.name===`expand`?(A(),O(`polyline`,F)):e.name===`collapse-all`?(A(),O(D,{key:6},[n[8]||=k(`<line x1="4" y1="4" x2="10" y2="10"></line><polyline points="6 10 10 10 10 6"></polyline><line x1="20" y1="4" x2="14" y2="10"></line><polyline points="14 6 14 10 18 10"></polyline><line x1="20" y1="20" x2="14" y2="14"></line><polyline points="14 18 14 14 18 14"></polyline><line x1="4" y1="20" x2="10" y2="14"></line><polyline points="6 14 10 14 10 18"></polyline>`,8)],64)):e.name===`expand-all`?(A(),O(D,{key:7},[n[9]||=k(`<line x1="10" y1="10" x2="4" y2="4"></line><polyline points="4 6 4 4 6 4"></polyline><line x1="14" y1="10" x2="20" y2="4"></line><polyline points="20 6 20 4 18 4"></polyline><line x1="14" y1="14" x2="20" y2="20"></line><polyline points="20 18 20 20 18 20"></polyline><line x1="10" y1="14" x2="4" y2="20"></line><polyline points="4 18 4 20 6 20"></polyline>`,8)],64)):e.name===`expand-level-1`?(A(),O(D,{key:8},[n[10]||=k(`<circle cx="12" cy="5" r="1.8" fill="currentColor" stroke="none"></circle><line x1="12" y1="7" x2="12" y2="11"></line><line x1="12" y1="11" x2="5" y2="17"></line><line x1="12" y1="11" x2="12" y2="17"></line><line x1="12" y1="11" x2="19" y2="17"></line><circle cx="5" cy="19" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="12" cy="19" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="19" cy="19" r="1.8" fill="currentColor" stroke="none"></circle>`,8)],64)):e.name===`expand-level-2`?(A(),O(D,{key:9},[n[11]||=k(`<circle cx="12" cy="3" r="1.4" fill="currentColor" stroke="none"></circle><line x1="12" y1="4.5" x2="12" y2="7"></line><line x1="12" y1="7" x2="5" y2="11"></line><line x1="12" y1="7" x2="12" y2="11"></line><line x1="12" y1="7" x2="19" y2="11"></line><line x1="5" y1="11" x2="3" y2="16"></line><line x1="5" y1="11" x2="7" y2="16"></line><line x1="12" y1="11" x2="10" y2="16"></line><line x1="12" y1="11" x2="14" y2="16"></line><line x1="19" y1="11" x2="17" y2="16"></line><line x1="19" y1="11" x2="21" y2="16"></line><circle cx="5" cy="11" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="12" cy="11" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="19" cy="11" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="3" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="7" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="10" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="14" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="17" cy="18" r="1.4" fill="currentColor" stroke="none"></circle><circle cx="21" cy="18" r="1.4" fill="currentColor" stroke="none"></circle>`,20)],64)):e.name===`zoom-in`?(A(),O(D,{key:10},[n[12]||=v(`circle`,{cx:`11`,cy:`11`,r:`7`},null,-1),n[13]||=v(`line`,{x1:`11`,y1:`8`,x2:`11`,y2:`14`},null,-1),n[14]||=v(`line`,{x1:`8`,y1:`11`,x2:`14`,y2:`11`},null,-1),n[15]||=v(`line`,{x1:`16`,y1:`16`,x2:`21`,y2:`21`},null,-1)],64)):e.name===`zoom-out`?(A(),O(D,{key:11},[n[16]||=v(`circle`,{cx:`11`,cy:`11`,r:`7`},null,-1),n[17]||=v(`line`,{x1:`8`,y1:`11`,x2:`14`,y2:`11`},null,-1),n[18]||=v(`line`,{x1:`16`,y1:`16`,x2:`21`,y2:`21`},null,-1)],64)):e.name===`reset`?(A(),O(D,{key:12},[n[19]||=v(`polyline`,{points:`4 9 4 4 9 4`},null,-1),n[20]||=v(`polyline`,{points:`15 4 20 4 20 9`},null,-1),n[21]||=v(`polyline`,{points:`20 15 20 20 15 20`},null,-1),n[22]||=v(`polyline`,{points:`9 20 4 20 4 15`},null,-1)],64)):e.name===`database`?(A(),O(D,{key:13},[n[23]||=v(`ellipse`,{cx:`12`,cy:`6`,rx:`7`,ry:`2.5`},null,-1),n[24]||=v(`path`,{d:`M5 6 V18 C5 19.4 8 20.5 12 20.5 C16 20.5 19 19.4 19 18 V6`},null,-1),n[25]||=v(`path`,{d:`M5 12 C5 13.4 8 14.5 12 14.5 C16 14.5 19 13.4 19 12`},null,-1)],64)):e.name===`settings`?(A(),O(D,{key:14},[n[26]||=v(`path`,{d:`M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z`},null,-1),n[27]||=v(`circle`,{cx:`12`,cy:`12`,r:`3`},null,-1)],64)):e.name===`markdown`?(A(),O(D,{key:15},[n[28]||=v(`rect`,{x:`2`,y:`5`,width:`20`,height:`14`,rx:`2`},null,-1),n[29]||=v(`path`,{d:`M6 15 V9 L9 12 L12 9 V15`},null,-1),n[30]||=v(`path`,{d:`M15 15 V9 L18 12 V9 M15 12 L18 15`},null,-1)],64)):e.name===`txt`?(A(),O(D,{key:16},[n[31]||=v(`rect`,{x:`5`,y:`3`,width:`14`,height:`18`,rx:`1.5`},null,-1),n[32]||=v(`line`,{x1:`8`,y1:`8`,x2:`16`,y2:`8`},null,-1),n[33]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1),n[34]||=v(`line`,{x1:`8`,y1:`16`,x2:`13`,y2:`16`},null,-1)],64)):e.name===`eye`?(A(),O(D,{key:17},[n[35]||=v(`path`,{d:`M2 12 C4 6 8 3 12 3 C16 3 20 6 22 12 C20 18 16 21 12 21 C8 21 4 18 2 12 Z`},null,-1),n[36]||=v(`circle`,{cx:`12`,cy:`12`,r:`3.2`},null,-1)],64)):e.name===`eye-off`?(A(),O(D,{key:18},[n[37]||=v(`path`,{d:`M3 3 L21 21`},null,-1),n[38]||=v(`path`,{d:`M10.5 6.2 C11 6.1 11.5 6 12 6 C16 6 19.5 8.5 21 12 C20.4 13.2 19.6 14.3 18.7 15.2`},null,-1),n[39]||=v(`path`,{d:`M6.6 6.6 C4 8.2 2.7 10.2 2 12 C3 14.5 5.2 16.8 8 18.3 C9.2 19 10.6 19.4 12 19.4 C13.5 19.4 14.9 19 16.2 18.3`},null,-1),n[40]||=v(`path`,{d:`M9.5 9.5 C9.1 10.2 9 11.1 9 12 C9 13.7 9.8 15.2 11 16.1`},null,-1)],64)):e.name===`outline`?(A(),O(D,{key:19},[n[41]||=v(`rect`,{x:`4`,y:`3`,width:`16`,height:`18`,rx:`2`},null,-1),n[42]||=v(`line`,{x1:`8`,y1:`8`,x2:`16`,y2:`8`},null,-1),n[43]||=v(`line`,{x1:`8`,y1:`12`,x2:`16`,y2:`12`},null,-1),n[44]||=v(`line`,{x1:`8`,y1:`16`,x2:`13`,y2:`16`},null,-1)],64)):e.name===`logo`?(A(),O(D,{key:20},[n[45]||=k(`<circle cx="12" cy="12" r="2.2"></circle><circle cx="4" cy="5" r="1.6"></circle><circle cx="20" cy="5" r="1.6"></circle><circle cx="4" cy="19" r="1.6"></circle><circle cx="20" cy="19" r="1.6"></circle><line x1="10.5" y1="10.8" x2="5.2" y2="6.4"></line><line x1="13.5" y1="10.8" x2="18.8" y2="6.4"></line><line x1="10.5" y1="13.2" x2="5.2" y2="17.6"></line><line x1="13.5" y1="13.2" x2="18.8" y2="17.6"></line>`,9)],64)):e.name===`import`?(A(),O(D,{key:21},[n[46]||=v(`path`,{d:`M12 4 V15`},null,-1),n[47]||=v(`polyline`,{points:`7 10 12 15 17 10`},null,-1),n[48]||=v(`path`,{d:`M4 19 H20`},null,-1)],64)):e.name===`export`?(A(),O(D,{key:22},[n[49]||=v(`path`,{d:`M12 15 V4`},null,-1),n[50]||=v(`polyline`,{points:`7 9 12 4 17 9`},null,-1),n[51]||=v(`path`,{d:`M4 19 H20`},null,-1)],64)):e.name===`balance`?(A(),O(D,{key:23},[n[52]||=k(`<line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="18" x2="21" y2="18"></line><polyline points="9 4 5 6 9 8"></polyline><polyline points="15 4 19 6 15 8"></polyline><polyline points="9 10 5 12 9 14"></polyline><polyline points="15 10 19 12 15 14"></polyline><polyline points="9 16 5 18 9 20"></polyline><polyline points="15 16 19 18 15 20"></polyline>`,9)],64)):e.name===`mindmap`?(A(),O(D,{key:24},[n[53]||=k(`<circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"></circle><line x1="13.4" y1="10.6" x2="18.5" y2="5.5"></line><line x1="13.4" y1="13.4" x2="18.5" y2="18.5"></line><line x1="10.6" y1="10.6" x2="5.5" y2="5.5"></line><line x1="10.6" y1="13.4" x2="5.5" y2="18.5"></line><circle cx="19.5" cy="4.5" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="19.5" cy="19.5" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="4.5" cy="4.5" r="1.8" fill="currentColor" stroke="none"></circle><circle cx="4.5" cy="19.5" r="1.8" fill="currentColor" stroke="none"></circle>`,9)],64)):e.name===`tree`?(A(),O(D,{key:25},[n[54]||=k(`<circle cx="5" cy="12" r="2" fill="currentColor" stroke="none"></circle><circle cx="19" cy="5" r="2" fill="currentColor" stroke="none"></circle><circle cx="19" cy="12" r="2" fill="currentColor" stroke="none"></circle><circle cx="19" cy="19" r="2" fill="currentColor" stroke="none"></circle><line x1="7" y1="12" x2="12" y2="12"></line><line x1="12" y1="12" x2="12" y2="5"></line><line x1="12" y1="12" x2="12" y2="19"></line><line x1="12" y1="5" x2="17" y2="5"></line><line x1="12" y1="19" x2="17" y2="19"></line>`,9)],64)):e.name===`org`?(A(),O(D,{key:26},[n[55]||=k(`<circle cx="12" cy="5" r="2" fill="currentColor" stroke="none"></circle><circle cx="6" cy="19" r="2" fill="currentColor" stroke="none"></circle><circle cx="12" cy="19" r="2" fill="currentColor" stroke="none"></circle><circle cx="18" cy="19" r="2" fill="currentColor" stroke="none"></circle><line x1="12" y1="7" x2="12" y2="13"></line><line x1="6" y1="13" x2="18" y2="13"></line><line x1="6" y1="13" x2="6" y2="17"></line><line x1="12" y1="13" x2="12" y2="17"></line><line x1="18" y1="13" x2="18" y2="17"></line>`,9)],64)):e.name===`image`?(A(),O(D,{key:27},[n[56]||=v(`rect`,{x:`3`,y:`5`,width:`18`,height:`14`,rx:`2`},null,-1),n[57]||=v(`circle`,{cx:`9`,cy:`11`,r:`1.6`},null,-1),n[58]||=v(`polyline`,{points:`3 17 9 12 13 15 16 13 21 17`},null,-1)],64)):e.name===`x`?(A(),O(D,{key:28},[n[59]||=v(`line`,{x1:`6`,y1:`6`,x2:`18`,y2:`18`},null,-1),n[60]||=v(`line`,{x1:`18`,y1:`6`,x2:`6`,y2:`18`},null,-1)],64)):e.name===`link`?(A(),O(D,{key:29},[n[61]||=v(`path`,{d:`M10 13 a4 4 0 0 0 5.66 0 l3 -3 a4 4 0 1 0 -5.66 -5.66 l-1 1`},null,-1),n[62]||=v(`path`,{d:`M14 11 a4 4 0 0 0 -5.66 0 l-3 3 a4 4 0 1 0 5.66 5.66 l1 -1`},null,-1)],64)):e.name===`note`?(A(),O(D,{key:30},[n[63]||=v(`path`,{d:`M6 4 h9 l3 3 v13 a1 1 0 0 1 -1 1 h-11 a1 1 0 0 1 -1 -1 v-15 a1 1 0 0 1 1 -1 z`},null,-1),n[64]||=v(`line`,{x1:`8`,y1:`10`,x2:`16`,y2:`10`},null,-1),n[65]||=v(`line`,{x1:`8`,y1:`13`,x2:`16`,y2:`13`},null,-1),n[66]||=v(`line`,{x1:`8`,y1:`16`,x2:`13`,y2:`16`},null,-1)],64)):e.name===`search`?(A(),O(D,{key:31},[n[67]||=v(`circle`,{cx:`11`,cy:`11`,r:`7`},null,-1),n[68]||=v(`line`,{x1:`16`,y1:`16`,x2:`21`,y2:`21`},null,-1)],64)):e.name===`json`?(A(),O(D,{key:32},[n[69]||=v(`path`,{d:`M8 4 C6 4 6 6 6 7 C6 8 5 8 5 9 C5 10 6 10 6 11 C6 12 6 14 8 14`},null,-1),n[70]||=v(`path`,{d:`M16 4 C18 4 18 6 18 7 C18 8 19 8 19 9 C19 10 18 10 18 11 C18 12 18 14 16 14`},null,-1)],64)):e.name===`svg-export`?(A(),O(D,{key:33},[n[71]||=v(`path`,{d:`M6 3 h8 l4 4 v14 a1 1 0 0 1 -1 1 h-11 a1 1 0 0 1 -1 -1 v-15 a1 1 0 0 1 1 -1 z`},null,-1),n[72]||=v(`polyline`,{points:`14 3 14 7 18 7`},null,-1),n[73]||=v(`polyline`,{points:`8 14 6 16 8 18`},null,-1),n[74]||=v(`polyline`,{points:`14 14 16 16 14 18`},null,-1)],64)):f(``,!0)],8,P))}}),te=`data:image/svg+xml,%3csvg%20t='1780822312364'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='7459'%20width='200'%20height='200'%3e%3cpath%20d='M329.16%20292.571h658.286V512H329.16zM329.16%200h658.286v219.429H329.16z'%20fill='%239AA1A2'%20p-id='7460'%3e%3c/path%3e%3cpath%20d='M44.927%20146.286a46.519%2046.519%200%200%201%2038.107-73.143h319.269v73.143H109.73V791.99l-48.713%205.705-24.43-651.41h8.339z'%20fill='%239AA1A2'%20p-id='7461'%3e%3c/path%3e%3cpath%20d='M363.83%20877.714H179.51c-78.775%200-142.921-66.12-142.921-147.31V112.787c0-21.943%2017.188-39.643%2038.473-39.643%2021.211%200%2033.5%2017.774%2033.5%2039.643v617.619c0%2037.522%2028.013%2076.58%2064.438%2076.58h190.903c21.211%200%2038.766%2013.97%2038.766%2035.84%200%2021.943-17.555%2034.89-38.766%2034.89z'%20fill='%239AA1A2'%20p-id='7462'%3e%3c/path%3e%3cpath%20d='M432.95%20438.857H179.51c-78.775%200-81.043-18.578-81.043-62.903l10.094-90.624c0%2020.48%2013.458%2080.677%2049.884%2080.677h210.139c21.211%200%20120.613%204.023%20120.613%2016.018%200%2011.922-35.036%2056.832-56.32%2056.832zM640.017%20749.714V640a54.857%2054.857%200%200%201%20109.714%200v109.714h109.715a54.857%2054.857%200%200%201%200%20109.715H749.73v109.714a54.857%2054.857%200%200%201-109.714%200V859.429H530.303a54.857%2054.857%200%200%201%200-109.715h109.714z'%20fill='%239AA1A2'%20p-id='7463'%3e%3c/path%3e%3c/svg%3e`,ne=`data:image/svg+xml,%3csvg%20t='1780822464335'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='8457'%20width='200'%20height='200'%3e%3cpath%20d='M512%20804.571h512V1024H512V804.571zM0%200h658.286v219.429H0V0z'%20fill='%239AA1A2'%20p-id='8458'%3e%3c/path%3e%3cpath%20d='M619.813%20950.857h-184.32c-78.775%200-142.922-66.121-142.922-147.31V185.93c0-21.943%2017.189-39.643%2038.474-39.643%2021.211%200%2033.353%2017.773%2033.353%2039.643v617.618c0%2037.523%2034.743%2073.728%2071.095%2073.728h184.32c21.211%200%2038.473%2012.069%2038.473%2033.939%200%2021.943-17.189%2039.643-38.473%2039.643z'%20fill='%239AA1A2'%20p-id='8459'%3e%3c/path%3e%3cpath%20d='M676.571%20457.143V347.429a54.857%2054.857%200%200%201%20109.715%200v109.714H896a54.857%2054.857%200%200%201%200%20109.714H786.286v109.714a54.857%2054.857%200%200%201-109.715%200V566.857H566.857a54.857%2054.857%200%200%201%200-109.714h109.714z'%20fill='%239AA1A2'%20p-id='8460'%3e%3c/path%3e%3c/svg%3e`,re=[22,15,13,12],L=[700,600,500,400],ie=[46,36,30,26],R=[120,80,60,44],ae=[.8,.8,.8,.8],z=1,oe=re.length-1;function B(e,t){return Math.round(ce(e,t)*ae[se(e)])}function se(e){return Math.min(oe,Math.max(0,e))}function ce(e,t=14){return Math.round(re[se(e)]*t/14*10)/10}function le(e,t=14){return Math.round(ie[se(e)]*t/14)}var ue=60,de=30,fe=.75,pe=14,V=24;function me(e){return Math.max(de,Math.round(ue*fe**+e))}var he=null;function ge(){if(he)return he;let e=typeof document<`u`?document.createElement(`canvas`).getContext(`2d`):null;return e?(he=e,e):{font:``,measureText:()=>({width:0})}}var _e=new Map;function ve(e,t,n){let r=`${n}|${t}|${e}`,i=_e.get(r);if(i!==void 0)return i;let a=ge();a.font=`${n} ${t}px "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif`;let o=e.split(`
2
2
  `),s=0;for(let e of o){let t=a.measureText(e).width;t>s&&(s=t)}return _e.set(r,s),s}var ye=24,be=400,xe=8,Se=16,Ce=4,we=200;function H(e,t,n){return Math.min(n,Math.max(t,e))}function U(e,t,n,r,i){let a=se(t),o=ce(t,n),s=Math.min(ve(e.text||``,o,L[a]),we),c=B(t,n),l=Math.ceil(s+c*2+z*2),u=(e.text||``).split(`
3
3
  `),d=0;for(let e of u){let t=ve(e,o,L[a]);d+=Math.max(1,Math.ceil(t/we))}d=Math.max(1,d);let f=e.richContent&&(e.richContent.kind===`code`||e.richContent.kind===`table`)?Math.ceil(o*1.2)+6+Math.ceil(o*1.2*(d-1)):le(t,n)+Math.ceil(o*1.2*(d-1)),p=0;if(e.link&&(p+=Se),e.note&&(p+=Se),p>0){let t=+!!e.link+ +!!e.note;p+=Ce*t}let m=0;e.markers&&e.markers.length>0&&(m=e.markers.length*14+(e.markers.length-1)*2+Ce);let h=e.tags&&e.tags.length>0?18:0,g=l+p+m,_=(()=>{let t=Math.round(R[a]*n/14);if(e.richContent&&(e.richContent.kind===`code`||e.richContent.kind===`table`)){let n=i?.[e.id];return Math.max(t,n??240)}return t})(),v=!!(e.richContent&&(e.richContent.kind===`code`||e.richContent.kind===`table`)),y=r?.[e.id],b=v?Math.max(24,y??Math.max(70,Math.ceil(o*5))):0,x=b>0?10:0;if(!e.image)return{w:Math.max(_,g),h:Math.ceil(f+x+b+(h>0?4+h:0))};let S=H(e.image.width,ye,be);return{w:Math.max(_,g,Math.ceil(S+c*2)),h:Math.ceil(e.image.height+xe+f+x+b+(h>0?4+h:0))}}function Te(e,t={}){let n=t.mode??`mindmap`,r=t.preservePositions===!0,i=t.baseFontSize??14,a=t.branchGap??0,o=ke(e,0,null,1,`right`,i,t.richHeights,t.richWidths);return Ae(o,a),Ee(o,n,r,a),o.x=0,o.y=0,je(o,r)}function Ee(e,t,n=!1,r=0){if(t===`mindmap`){let t=e.children;if(t.length!==0)if(t.length===1)t[0]._dir=`right`,t[0].side=1,t[0]._dirRight=1;else{let e=t.reduce((e,t)=>e+t._subtreeH,0),n=1,r=Math.abs(t[0]._subtreeH-(e-t[0]._subtreeH)),i=0;for(let a=0;a<t.length-1;a++){i+=t[a]._subtreeH;let o=Math.abs(i-(e-i));o<r&&(r=o,n=a+1)}for(let e=0;e<n;e++)t[e]._dir=`right`,t[e].side=1,t[e]._dirRight=1;for(let e=n;e<t.length;e++)t[e]._dir=`left`,t[e].side=-1,t[e]._dirRight=-1}let i=e.children.filter(e=>e.side===1),a=e.children.filter(e=>e.side===-1),o=(e,t)=>{let n=t===`right`?1:-1;e._dir=t,e.side=n,e._dirRight=n;for(let n of e.children)o(n,t)};for(let e of i)o(e,`right`);for(let e of a)o(e,`left`);i.length>0&&De({...e,children:i},`right`,ue,!0,n,r),a.length>0&&De({...e,children:a},`left`,ue,!0,n,r)}else if(t===`tree`){let t=e=>{e.side=1,e._dir=`right`;for(let n of e.children)t(n)};for(let t of e.children)t._dir=`right`;De(e,`right`,ue,!0,n,r),t(e)}else{for(let t of e.children)t._dir=`down`;Oe(e,ue,n,r)}}function De(e,t,n,r,i=!1,a=0){if(e.children.length===0)return;let o=r?pe+a:pe,s=e.children.reduce((e,t,n)=>e+t._subtreeH+(n>0?o:0),0),c=t===`right`?1:-1,l=r?c:1,u=e.y-l*s/2,d=me(e.depth);e.children.forEach(r=>{i||(r.x=e.x+c*(e.width/2+d+r.width/2),r.y=u+l*r._subtreeH/2),r._dir=t,u+=l*(r._subtreeH+o),De(r,t,n,!1,i,0)})}function Oe(e,t,n=!1,r=0){if(e.children.length===0)return;let i=e.depth===0?pe+r:pe,a=e.children.reduce((e,t,n)=>e+t._subtreeW+(n>0?i*2:0),0),o=e.x-a/2,s=me(e.depth);e.children.forEach(r=>{n||(r.x=o+r._subtreeW/2,r.y=e.y+e.height/2+s+r.height/2),r._dir=`down`,o+=r._subtreeW+i*2,Oe(r,t,n,0)})}function ke(e,t,n,r,i,a,o,s){let c=U(e,t,a,o,s),l={id:e.id,text:e.text,depth:t,x:e._x??0,y:e._y??0,width:c.w,height:c.h,fontSize:ce(t,a),isRoot:t===0,collapsed:e.collapsed,side:r,_dir:i,_dirRight:r,_subtreeH:c.h,_subtreeW:c.w,image:e.image?{...e.image}:void 0,link:e.link?{url:e.link.url}:void 0,note:e.note?{text:e.note.text}:void 0,richContent:e.richContent?{kind:e.richContent.kind,raw:e.richContent.raw,lang:e.richContent.lang}:void 0,markers:e.markers?[...e.markers]:void 0,tags:e.tags?[...e.tags]:void 0,children:[],parent:n};if(e.collapsed)return l;let u=e.children.length,d=Math.ceil(u/2);return l.children=e.children.map((e,n)=>{let c=t===0?n<d?1:-1:r;return ke(e,t+1,l,c,i,a,o,s)}),l}function Ae(e,t=0){let n=[e];for(let e=0;e<n.length;e++){let t=n[e];for(let e of t.children)n.push(e)}for(let e=n.length-1;e>=0;e--){let r=n[e];if(r.collapsed||r.children.length===0){r._subtreeH=r.height,r._subtreeW=r.width;continue}let i=r.depth===0?pe+t:pe,a=0,o=0;for(let e of r.children)a+=e._subtreeH,o+=e._subtreeW;r.children.length>1&&(a+=i*(r.children.length-1),o+=i*2*(r.children.length-1)),r._subtreeH=Math.max(r.height,a),r._subtreeW=Math.max(r.width,o)}}function je(e,t=!1){let n=[e],r=1/0,i=-1/0,a=1/0,o=-1/0;for(;n.length;){let e=n.pop(),t=e.width/2,s=e.height/2;e.x-t<r&&(r=e.x-t),e.x+t>i&&(i=e.x+t),e.y-s<a&&(a=e.y-s),e.y+s>o&&(o=e.y+s),n.push(...e.children)}if(t)return{root:e,width:i-r+V*2,height:o-a+V*2,vbX:r-V,vbY:a-V,vbW:i-r+V*2,vbH:o-a+V*2};let s=V-a,c=[e];for(;c.length;){let e=c.pop();e.y+=s,c.push(...e.children)}return a+=s,o+=s,{root:e,width:i-r+V*2,height:o+V,vbX:r-V,vbY:0,vbW:i-r+V*2,vbH:o+V}}var Me=[{id:`default`,name:`默认`,colors:[`#f87171`,`#fb923c`,`#fbbf24`,`#a3e635`,`#34d399`,`#22d3ee`,`#818cf8`,`#c084fc`]},{id:`classic`,name:`经典`,colors:[`#ef4444`,`#f59e0b`,`#10b981`,`#3b82f6`,`#6366f1`,`#8b5cf6`,`#ec4899`,`#14b8a6`]},{id:`vivid`,name:`活力`,colors:[`#dc2626`,`#ea580c`,`#ca8a04`,`#16a34a`,`#0891b2`,`#2563eb`,`#7c3aed`,`#db2777`]},{id:`dev`,name:`代码`,colors:[`#f472b6`,`#a78bfa`,`#60a5fa`,`#38bdf8`,`#22d3ee`,`#34d399`,`#facc15`,`#fb923c`]},{id:`mint`,name:`薄荷`,colors:[`#5eead4`,`#67e8f9`,`#93c5fd`,`#c4b5fd`,`#fbcfe8`,`#fde68a`,`#a7f3d0`,`#bae6fd`]}];function Ne(e,t=[]){return[...Me,...t].find(t=>t.id===e)??Me[0]}function Pe(e,t=8){let n=[],r=new Set,i=/#[0-9a-fA-F]{3,8}\b|rgba?\([^)]+\)|[A-Za-z][A-Za-z0-9_-]{2,30}/g,a;for(;(a=i.exec(e))!==null;){let e=a[0],i=null;if(i=e.startsWith(`#`)?Fe(e):e.startsWith(`rgb`)?Ie(e):Le[e.toLowerCase()]??null,!i)continue;let o=i.toLowerCase();if(!r.has(o)&&(r.add(o),n.push(o),n.length>=t))break}return n}function Fe(e){let t=e.startsWith(`#`)?e.slice(1):e;if(!/^[0-9a-fA-F]+$/.test(t))return null;let n;if(t.length===3)n=t.split(``).map(e=>e+e).join(``);else if(t.length===4)n=t.slice(0,3).split(``).map(e=>e+e).join(``);else if(t.length===6)n=t;else if(t.length===8)n=t.slice(0,6);else return null;return`#`+n.toLowerCase()}function Ie(e){let t=e.match(/^rgba?\(\s*([^)]+?)\s*\)$/i);if(!t)return null;let n=t[1].split(/\s*,\s*/);if(n.length<3)return null;let r=[];for(let e=0;e<3;e++){let t=n[e];if(t.endsWith(`%`)){let e=parseFloat(t);if(!isFinite(e))return null;r.push(Math.round(e/100*255))}else{let e=parseInt(t,10);if(!isFinite(e)||e<0||e>255)return null;r.push(e)}}return`#`+r.map(e=>e.toString(16).padStart(2,`0`)).join(``).toLowerCase()}var Le={black:`#000000`,white:`#ffffff`,red:`#ff0000`,green:`#008000`,blue:`#0000ff`,yellow:`#ffff00`,cyan:`#00ffff`,magenta:`#ff00ff`,gray:`#808080`,grey:`#808080`,silver:`#c0c0c0`,maroon:`#800000`,olive:`#808000`,lime:`#00ff00`,aqua:`#00ffff`,teal:`#008080`,navy:`#000080`,fuchsia:`#ff00ff`,purple:`#800080`,orange:`#ffa500`,pink:`#ffc0cb`,brown:`#a52a2a`,gold:`#ffd700`,coral:`#ff7f50`,tomato:`#ff6347`,salmon:`#fa8072`,khaki:`#f0e68c`,violet:`#ee82ee`,indigo:`#4b0082`,turquoise:`#40e0d0`,chocolate:`#d2691e`,crimson:`#dc143c`,darkred:`#8b0000`,darkblue:`#00008b`,darkgreen:`#006400`,darkgray:`#a9a9a9`,darkgrey:`#a9a9a9`,lightgray:`#d3d3d3`,lightgrey:`#d3d3d3`,lightblue:`#add8e6`,lightgreen:`#90ee90`,lightyellow:`#ffffe0`,lightpink:`#ffb6c1`,skyblue:`#87ceeb`,forestgreen:`#228b22`,royalblue:`#4169e1`,steelblue:`#4682b4`,hotpink:`#ff69b4`,deeppink:`#ff1493`,orangered:`#ff4500`,goldenrod:`#daa520`,mediumpurple:`#9370db`};function Re(){return`n_`+Math.random().toString(36).slice(2,10)+Date.now().toString(36).slice(-4)}function ze(e){return JSON.parse(JSON.stringify(e))}function W(e,t){if(e.id===t)return e;for(let n of e.children){let e=W(n,t);if(e)return e}return null}function G(e,t,n=null){if(e.id===t)return n;for(let n of e.children){let r=G(n,t,e);if(r!==null)return r}return null}function Be(e,t){let n=e.children.findIndex(e=>e.id===t);if(n>=0)return e.children.splice(n,1),!0;for(let n of e.children)if(Be(n,t))return!0;return!1}function Ve(e,t,n){let r=W(e,t);return!r||r.text===n?!1:(r.text=n,!0)}function He(e,t,n,r){if(!G(e,t)||t===n||W(W(e,t),n))return!1;let i=G(e,t),a=i.children.findIndex(e=>e.id===t);if(a<0)return!1;let[o]=i.children.splice(a,1);if(r===`child`){let t=W(e,n);return t?(t.children.push(o),!0):(i.children.splice(a,0,o),!1)}let s=G(e,n);if(!s)return i.children.splice(a,0,o),!1;let c=s.children.findIndex(e=>e.id===n);return c<0?(i.children.splice(a,0,o),!1):(r===`after`&&(c+=1),s.children.splice(c,0,o),!0)}function Ue(e){let t=/^新节点(?:\s+(\d+))?$/,n=0,r=!1;for(let i of e.children){let e=i.text.match(t);if(e)if(e[1]){let t=parseInt(e[1],10);t>n&&(n=t)}else r=!0}return n===0&&!r?Ze:n>0?`新节点 ${n+1}`:`新节点 2`}function We(e,t,n){let r=W(e,t);if(!r)return null;let i={id:Re(),text:n??Ue(r),children:[]};return r.children.push(i),i}function Ge(e,t,n){let r=G(e,t);if(!r)return null;let i=r.children.findIndex(e=>e.id===t);if(i<0)return null;let a={id:Re(),text:n??Ue(r),children:[]};return r.children.splice(i+1,0,a),a}function Ke(e,t,n){let r=G(e,t);if(!r)return null;let i=r.children.findIndex(e=>e.id===t);if(i<0)return null;let a={id:Re(),text:n,children:[]};return r.children.splice(i,0,a),a}function qe(e,t){let n=G(e,t);if(!n)return null;let r=n.children.findIndex(e=>e.id===t);if(r<0)return null;let i=n.children[r],a=ze(i);return Je(a),n.children.splice(r+1,0,a),a}function Je(e){e.id=Re();for(let t of e.children)Je(t)}function Ye(e,t){let n=W(e,t);if(!n||n.id===e.id)return null;let r=ze(n);return Je(r),r}function Xe(e){return e.children.reduce((e,t)=>e+1+Xe(t),0)}var Ze=`新节点`;function Qe(e,t=`导入的导图`){let n=e.split(/\r?\n/),r={id:Re(),text:t,children:[]},i=[r],a=[-1/0],o=[],s=/^(#{1,6})\s+(.+?)\s*#*\s*$/,c=/^!\[([^\]]*)\]\((\S+?)(?:\s+"[^"]*")?\)\s*$/,l=/^\[([^\]]+)\]\((\S+?)(?:\s+"[^"]*")?\)\s*$/,u=/^(`{3,}|~{3,})\s*(\S+)?\s*$/,d=!1,f=[],p=null;function m(e){f.push(e)}function h(){if(p&&f.length>0){for(;f.length>0&&f[0].trim()===``;)f.shift();for(;f.length>0&&f[f.length-1].trim()===``;)f.pop();let e=f.join(`
4
4
  `);e&&(p.note={text:e})}d=!1,f=[]}for(let e of n){if(d){let t=e.match(u);if(t&&t[1][0]==="`"){h();continue}m(e);continue}let t=e.match(s);if(t){let e=t[1].length,n=t[2].trim();o.push({level:e,text:n,body:``}),p=o[o.length-1];continue}let n=e.match(u);if(n&&n[2]===`note`){d=!0,f=[];continue}let r=e.match(c);if(r&&p){let e=r[2];p.image={src:e,naturalW:160,naturalH:120,width:160,height:120};continue}let i=e.match(l);if(i&&p){p.link={url:i[2]},p.text=i[1];continue}if(e.trim().length>0&&p){let t=e.trim();p.body=p.body?p.body+`
5
- `+t:t}}d&&h();function g(e){for(;i.length>1;){let t=a[i.length-1];if(t!==void 0&&t<e.level)break;i.pop(),a.pop()}let t=i[i.length-1],n=e.text,r={id:Re(),text:n,children:[]};e.image&&(r.image={...e.image}),e.link&&(r.link={url:e.link.url}),e.note&&(r.note={text:e.note.text}),e.body&&(r.note={text:e.body}),t.children.push(r),i.push(r),a.push(e.level)}for(let e of o)g(e);if(o.length>0&&o[0].level===1){let e=r.children[0];e&&(r.text=e.text,r.id=e.id,e.image&&(r.image={...e.image}),e.link&&(r.link={url:e.link.url}),e.note&&(r.note={text:e.note.text}),r.children=e.children)}return r}function $e(e,t=1){let n=`#`.repeat(t)+` `+(e.text||``)+`
5
+ `+t:t}}d&&h();function g(e){for(;i.length>1;){let t=i.length-1,n=a[t];if(n!==void 0&&n<e.level)break;i.pop(),a.pop()}let t=i[i.length-1],n=e.text,r={id:Re(),text:n,children:[]};e.image&&(r.image={...e.image}),e.link&&(r.link={url:e.link.url}),e.note&&(r.note={text:e.note.text}),e.body&&(r.note={text:e.body}),t.children.push(r),i.push(r),a.push(e.level)}for(let e of o)g(e);if(o.length>0&&o[0].level===1){let e=r.children[0];e&&(r.text=e.text,r.id=e.id,e.image&&(r.image={...e.image}),e.link&&(r.link={url:e.link.url}),e.note&&(r.note={text:e.note.text}),r.children=e.children)}return r}function $e(e,t=1){let n=`#`.repeat(t)+` `+(e.text||``)+`
6
6
  `;e.link&&(n+=`[${e.text||`link`}](${e.link.url})
7
7
  `),e.image&&(n+=`![image](${e.image.src})
8
8
  `),e.note&&(n+="```note\n"+e.note.text+"\n```\n"),e.richContent&&(n+=e.richContent.raw+`
@@ -12,7 +12,7 @@ import{Cn as e,Fn as t,Hn as n,Jn as r,Ln as i,Mn as a,Sn as o,Tn as s,Un as c,V
12
12
  `),lang:o});continue}let u=e.match(i);if(u){n.push({kind:`heading`,level:u[1].length,text:u[2].trim(),raw:e}),r++;continue}if(/^\s*\|/.test(e)){let e=[],i=r,a=!1;for(;i<t.length&&/^\s*\|/.test(t[i]);)e.push(t[i]),o.test(t[i])&&(a=!0),i++;if(a&&e.length>=2){n.push({kind:`table`,text:e[0].replace(/^\s*\|/,``).replace(/\|\s*$/,``).split(`|`)[0]?.trim()||`表格`,raw:e.join(`
13
13
  `)}),r=i;continue}}let d=e.match(s),f=e.match(c);if(d||f){let e=r;for(;e<t.length;){let r=t[e].match(s),i=t[e].match(c);if(!(r||i))break;let a=t[e].replace(/^\s*[-*+]\s+/,``).replace(/^\s*\d+\.\s+/,``).trim();a.length>0&&n.push({kind:`list`,text:a.slice(0,80)||`(列表项)`,raw:t[e]}),e++}r=e;continue}if(e.trim()===``){r++;continue}let p=[e],m=r+1;for(;m<t.length;){let e=t[m];if(e.trim()===``||i.test(e)||a.test(e)||s.test(e)||c.test(e)||/^\s*\|/.test(e))break;p.push(e),m++}let h=p.join(` `).trim();n.push({kind:`paragraph`,text:h.slice(0,80)||`(空段落)`,raw:p.join(`
14
14
  `)}),r=m}return n}function tt(e,t=`导入的导图`){let n=et(e||``),r={id:Re(),text:t,children:[]},i=[r],a=[0],o=!1;function s(e){if(e.kind===`heading`){let t=e.level;for(;i.length>1&&a[a.length-1]>=t;)i.pop(),a.pop();if(!o&&t===1){o=!0,r.text=e.text,a[0]=1;return}let n={id:Re(),text:e.text,children:[]};i[i.length-1].children.push(n),i.push(n),a.push(t);return}let t={id:Re(),text:e.text,children:[],richContent:{kind:e.kind,raw:e.raw,lang:e.lang}};i[i.length-1].children.push(t)}for(let e of n)s(e);return r}function nt(e){let t=e.minScale??.2,n=e.maxScale??1/0,r=e.step??1.2,i=T(1),a=T(0),o=T(0),s=T(!1),c=T(!1),l=m({x:0,y:0,ox:0,oy:0}),u=T(!1),d=m({x:0,y:0}),f=m({x:0,y:0,width:0,height:0}),p=T(0),h=null;function g(e){h=e}function _(r){r.preventDefault();let s=e.getContainer();if(!s)return;let c=-r.deltaY*.001,l=Math.min(n,Math.max(t,i.value*(1+c))),u=s.getBoundingClientRect(),d=r.clientX-u.left,f=r.clientY-u.top,p=(d-a.value)/i.value,m=(f-o.value)/i.value;i.value=l,a.value=d-p*l,o.value=f-m*l}function v(){i.value=Math.min(n,i.value*r)}function y(){i.value=Math.max(t,i.value/r)}function b(e){var t;e.target.closest(`.zm-node, .zm-toolbar, button, input, textarea`)||(s.value=!0,c.value=!1,l.x=e.clientX,l.y=e.clientY,l.ox=a.value,l.oy=o.value,window.addEventListener(`mousemove`,x),window.addEventListener(`mouseup`,S),(t=e.preventDefault)==null||t.call(e))}function x(e){if(!s.value)return;let t=e.clientX-l.x,n=e.clientY-l.y;(Math.abs(t)>3||Math.abs(n)>3)&&(c.value=!0),a.value=l.ox+t,o.value=l.oy+n}function S(){s.value=!1,window.removeEventListener(`mousemove`,x),window.removeEventListener(`mouseup`,S)}function C(e,t,n){u.value=!0,d.x=e,d.y=t,f.x=e,f.y=t,f.width=0,f.height=0,f.shiftKey=!!(n!=null&&n.shift),p.value++,window.addEventListener(`mousemove`,D),window.addEventListener(`mouseup`,E)}function w(e,t){if(!u.value)return;let n=Math.min(d.x,e),r=Math.min(d.y,t),i=Math.max(d.x,e),a=Math.max(d.y,t);f.x=n,f.y=r,f.width=i-n,f.height=a-r,p.value++}function E(){u.value=!1,window.removeEventListener(`mousemove`,D),window.removeEventListener(`mouseup`,E),h&&h()}function D(t){if(!u.value)return;let n=e.getContainer();if(!n)return;let r=n.getBoundingClientRect();w((t.clientX-r.left-a.value)/i.value,(t.clientY-r.top-o.value)/i.value)}function O(t,n,r,s=60){let c=e.getContainer();if(!c)return;let l=c.getBoundingClientRect(),u=(l.width-s*2)/t,d=(l.height-s*2)/n,f=Math.min(1,Math.max(.3,Math.min(u,d)));i.value=f,a.value=l.width/2,o.value=l.height/2-r*f}function k(){let t=e.getContainer();if(!t)return;let n=t.getBoundingClientRect(),r=n.width/2,s=n.height/2,c=(r-a.value)/i.value,l=(s-o.value)/i.value;i.value=1,a.value=r-c,o.value=s-l}function A(t,r,s,c,l=80){let u=e.getContainer();if(!u)return;let d=u.getBoundingClientRect(),f=i.value;(s*f<40||c*f<40)&&(f=Math.min(n,Math.max(1,60/Math.min(s,c)))),i.value=f,a.value=d.width/2-t*f,o.value=d.height/2-r*f}return{scale:i,offsetX:a,offsetY:o,isPanning:s,panMoved:c,onWheel:_,zoomIn:v,zoomOut:y,zoomTo100:k,startPan:b,startMarquee:C,updateMarquee:w,isMarquee:u,marquee:f,marqueeVersion:p,setOnMarqueeEnd:g,resetView:O,centerOn:A}}var rt=typeof navigator<`u`&&/Mac|iPhone|iPad/.test(navigator.platform);function it(e){return rt?e.metaKey:e.ctrlKey}function at(e){function n(){let t=e.getSelectedId();if(t)return t;if(e.defaultTargetId)return e.defaultTargetId();let n=e.getSelectedIds();return n.length>0?n[0]:null}function r(t){let r=t.target;if(r&&(r.tagName===`INPUT`||r.tagName===`TEXTAREA`||r.isContentEditable)||e.isReadonly()||e.isEditing())return;let i=e.getSelectedId(),a=n();if(a){if(it(t)&&!t.shiftKey){if(t.key===`d`||t.key===`D`){let n=e.defaultTargetId?.call(e);i&&i!==n&&(t.preventDefault(),e.onDuplicate(i));return}if(t.key===`c`||t.key===`C`){let n=e.getSelectedIds();n.length>0&&(t.preventDefault(),e.onCopy(n));return}if(t.key===`x`||t.key===`X`){let n=e.getSelectedIds();n.length>0&&(t.preventDefault(),e.onCut(n));return}if(t.key===`v`||t.key===`V`){if(!e.hasClipboard())return;t.preventDefault();let n=e.getSelectedIds();e.onPaste(n.length>0?n[0]:null);return}if(t.key===`z`||t.key===`Z`){t.preventDefault(),e.onUndo();return}if(t.key===`y`||t.key===`Y`){t.preventDefault(),e.onRedo();return}if(t.key===`Home`){t.preventDefault(),e.onSelectRoot();return}}if(it(t)&&t.shiftKey&&(t.key===`Z`||t.key===`z`)){t.preventDefault(),e.onRedo();return}if(t.key===`Tab`)t.preventDefault(),e.onAddChild(a);else if(t.key===`Enter`)if(t.preventDefault(),t.shiftKey){let t=e.defaultTargetId?.call(e);i&&i!==t&&e.onAddSiblingBefore(i)}else e.onAddSibling(a);else if((t.key===`Delete`||t.key===`Backspace`)&&i&&i!==e.defaultTargetId?.call(e))t.preventDefault(),e.onRemove(i);else if(t.key===`F2`&&i)t.preventDefault(),e.onStartEdit(i);else if(t.key===` `&&i)t.preventDefault(),e.onStartEdit(i);else if(t.key===`Escape`)t.preventDefault(),e.onClearSelection();else if(t.altKey&&!t.ctrlKey&&!t.metaKey&&!t.shiftKey){if(t.key===`ArrowUp`){t.preventDefault(),e.onMoveSibling(-1);return}else if(t.key===`ArrowDown`){t.preventDefault(),e.onMoveSibling(1);return}}else t.key===`ArrowDown`?(t.preventDefault(),e.onNavigate(0,1)):t.key===`ArrowUp`?(t.preventDefault(),e.onNavigate(0,-1)):t.key===`ArrowRight`?(t.preventDefault(),e.onNavigate(1,0)):t.key===`ArrowLeft`&&(t.preventDefault(),e.onNavigate(-1,0))}}i(()=>{window.addEventListener(`keydown`,r)}),t(()=>{window.removeEventListener(`keydown`,r)})}function ot(e=100){let t=T([]),n=-1;function r(){return n>0}function i(){return n<t.value.length-1}function a(r){let i=JSON.stringify(r);for(n<t.value.length-1&&(t.value=t.value.slice(0,n+1)),t.value.push(i),n=t.value.length-1;t.value.length>e;)t.value.shift(),n--}function o(){return r()?(n--,JSON.parse(t.value[n])):null}function s(){return i()?(n++,JSON.parse(t.value[n])):null}function c(){t.value=[],n=-1}return{canUndo:r,canRedo:i,record:a,undo:o,redo:s,reset:c}}var st={1:`#ef4444`,2:`#f97316`,3:`#f59e0b`,4:`#eab308`,5:`#84cc16`,6:`#22c55e`,7:`#14b8a6`,8:`#3b82f6`,9:`#6366f1`},ct={label:`优先级`,markers:Array.from({length:9},(e,t)=>{let n=t+1,r=st[n];return{id:`priority-${n}`,label:`优先级 ${n}`,svg:`<circle cx="12" cy="12" r="10" fill="${r}"/><text x="12" y="16" text-anchor="middle" font-size="12" font-weight="700" fill="#fff" font-family="sans-serif">${n}</text>`}})};function lt(e){if(e===0)return`<circle cx="12" cy="12" r="10" fill="none" stroke="#94a3b8" stroke-width="2"/>`;if(e===100)return`<circle cx="12" cy="12" r="10" fill="#22c55e"/>`;let t=e/100*2*Math.PI,n=12+10*Math.sin(t),r=12-10*Math.cos(t);return`<circle cx="12" cy="12" r="10" fill="none" stroke="#e2e8f0" stroke-width="2"/><path d="M 12 12 L 12 2 A 10 10 0 ${+(e>50)} 1 ${n.toFixed(2)} ${r.toFixed(2)} Z" fill="#3b82f6"/><circle cx="12" cy="12" r="10" fill="none" stroke="#cbd5e1" stroke-width="1"/>`}var ut=[ct,{label:`进度`,markers:[0,25,50,75,100].map(e=>({id:`progress-${e}`,label:`进度 ${e}%`,svg:lt(e)}))},{label:`旗帜`,markers:[{id:`flag-red`,label:`红旗`,color:`#ef4444`},{id:`flag-orange`,label:`橙旗`,color:`#f97316`},{id:`flag-yellow`,label:`黄旗`,color:`#eab308`},{id:`flag-green`,label:`绿旗`,color:`#22c55e`},{id:`flag-blue`,label:`蓝旗`,color:`#3b82f6`},{id:`flag-gray`,label:`灰旗`,color:`#94a3b8`}].map(e=>({id:e.id,label:e.label,svg:`<path d="M6 3 V21" stroke="#475569" stroke-width="2" stroke-linecap="round"/><path d="M6 4 H18 L15 7 L18 10 H6 Z" fill="${e.color}" stroke="${e.color}" stroke-width="1" stroke-linejoin="round"/>`}))},{label:`星标`,markers:[{id:`star`,label:`星标`,svg:`<path d="M12 2 L14.5 8.5 L21 9 L16 13.5 L17.5 20 L12 16.5 L6.5 20 L8 13.5 L3 9 L9.5 8.5 Z" fill="#f59e0b" stroke="#f59e0b" stroke-width="1" stroke-linejoin="round"/>`},{id:`star-half`,label:`半星`,svg:`<path d="M12 2 L14.5 8.5 L21 9 L16 13.5 L17.5 20 L12 16.5 L6.5 20 L8 13.5 L3 9 L9.5 8.5 Z" fill="#e2e8f0" stroke="#f59e0b" stroke-width="1.5" stroke-linejoin="round"/><path d="M12 2 L12 16.5 L6.5 20 L8 13.5 L3 9 L9.5 8.5 Z" fill="#f59e0b" stroke="none"/>`}]},{label:`其他`,markers:[{id:`smile`,label:`微笑`,svg:`<circle cx="12" cy="12" r="10" fill="#fef3c7" stroke="#f59e0b" stroke-width="1.5"/><circle cx="9" cy="10" r="1.2" fill="#92400e"/><circle cx="15" cy="10" r="1.2" fill="#92400e"/><path d="M8 14 Q12 17 16 14" stroke="#92400e" stroke-width="1.5" fill="none" stroke-linecap="round"/>`},{id:`people`,label:`人员`,svg:`<circle cx="9" cy="8" r="2.5" fill="#3b82f6"/><circle cx="16" cy="8" r="2.5" fill="#3b82f6"/><path d="M4 19 C4 15 6 13 9 13 C12 13 14 15 14 19" fill="#3b82f6"/><path d="M14 19 C14 15.5 15.5 13.5 17.5 13.5 C19.5 13.5 21 15.5 21 19" fill="#3b82f6"/>`},{id:`arrow-up`,label:`上箭头`,svg:`<circle cx="12" cy="12" r="10" fill="#dbeafe" stroke="#3b82f6" stroke-width="1.5"/><path d="M12 17 V7 M8 11 L12 7 L16 11" stroke="#3b82f6" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>`},{id:`arrow-down`,label:`下箭头`,svg:`<circle cx="12" cy="12" r="10" fill="#dbeafe" stroke="#3b82f6" stroke-width="1.5"/><path d="M12 7 V17 M8 13 L12 17 L16 13" stroke="#3b82f6" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>`},{id:`arrow-right`,label:`右箭头`,svg:`<circle cx="12" cy="12" r="10" fill="#dbeafe" stroke="#3b82f6" stroke-width="1.5"/><path d="M7 12 H17 M13 8 L17 12 L13 16" stroke="#3b82f6" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>`},{id:`arrow-left`,label:`左箭头`,svg:`<circle cx="12" cy="12" r="10" fill="#dbeafe" stroke="#3b82f6" stroke-width="1.5"/><path d="M17 12 H7 M11 8 L7 12 L11 16" stroke="#3b82f6" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>`}]}],dt={};for(let e of ut)for(let t of e.markers)dt[t.id]=t;function ft(e){return dt[e]?.svg??``}function pt(e){return dt[e]?.label??e}function mt(e){let t=0;for(let n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;let n=Math.abs(t)%360;return{background:`hsl(${n}, 85%, 92%)`,borderColor:`hsl(${n}, 60%, 70%)`,color:`hsl(${n}, 55%, 30%)`}}var ht={key:5,class:`zm-marker-picker`},gt={class:`zm-marker-group-label`},_t={class:`zm-marker-grid`},vt=[`title`,`onClick`,`innerHTML`],yt=s({__name:`NodeContextMenu`,props:{x:{},y:{},container:{},hasImage:{type:Boolean,default:!1},hasLink:{type:Boolean,default:!1},hasNote:{type:Boolean,default:!1},hasCode:{type:Boolean,default:!1},hasTable:{type:Boolean,default:!1},nodeMarkers:{default:()=>[]},nodeTags:{default:()=>[]}},emits:[`pickImage`,`setLink`,`removeLink`,`editNote`,`removeNote`,`removeImage`,`addCode`,`editCode`,`removeCode`,`addTable`,`editTable`,`removeTable`,`toggleMarker`,`clearMarkers`,`addTag`,`removeTags`,`close`],setup(n,{emit:r}){let i=n,a=r,o=b(()=>{let e=i.x+2,t=i.y+2;if(i.container){let n=i.container.getBoundingClientRect(),r=4+(3+ +!!i.hasImage+ +!!i.hasLink+ +!!i.hasNote+1+ +!!i.hasCode+1+ +!!i.hasTable)*28;e+180>n.right&&(e=Math.max(n.left+4,i.x-180-2)),t+r>n.bottom&&(t=Math.max(n.top+4,i.y-r-2)),e<n.left+2&&(e=n.left+2),t<n.top+2&&(t=n.top+2)}return{left:e,top:t}}),s=b(()=>i.hasImage),c=b(()=>i.hasLink),u=b(()=>i.hasNote),d=b(()=>i.nodeMarkers.length>0),m=b(()=>i.nodeTags.length>0),h=T(!1);function g(){h.value=!h.value}function S(e){return i.nodeMarkers.includes(e)}function w(e){a(`toggleMarker`,e)}function E(e){let t=e.target;t&&t.closest(`.zm-node-menu`)||a(`close`)}function k(e){e.key===`Escape`&&a(`close`)}function j(){a(`close`)}window.addEventListener(`mousedown`,E,!0),window.addEventListener(`keydown`,k,!0),window.addEventListener(`wheel`,j,!0),window.addEventListener(`scroll`,j,!0),t(()=>{window.removeEventListener(`mousedown`,E,!0),window.removeEventListener(`keydown`,k,!0),window.removeEventListener(`wheel`,j,!0),window.removeEventListener(`scroll`,j,!0)});function M(e){e(),a(`close`)}return(t,r)=>(A(),O(`div`,{class:`zm-node-menu`,style:_({left:o.value.left+`px`,top:o.value.top+`px`}),onContextmenu:r[13]||=y(()=>{},[`prevent`])},[v(`button`,{class:`zm-node-menu-item`,onClick:r[0]||=y(e=>M(()=>a(`pickImage`)),[`stop`])},[e(I,{name:`image`,size:13}),v(`span`,null,p(s.value?`替换图片`:`添加图片`),1)]),s.value?(A(),O(`button`,{key:0,class:`zm-node-menu-item`,onClick:r[1]||=y(e=>M(()=>a(`removeImage`)),[`stop`])},[e(I,{name:`x`,size:13}),r[14]||=v(`span`,null,`移除图片`,-1)])):f(``,!0),v(`button`,{class:`zm-node-menu-item`,onClick:r[2]||=y(e=>M(()=>a(`setLink`)),[`stop`])},[e(I,{name:`link`,size:13}),v(`span`,null,p(c.value?`编辑链接`:`添加链接`),1)]),c.value?(A(),O(`button`,{key:1,class:`zm-node-menu-item`,onClick:r[3]||=y(e=>M(()=>a(`removeLink`)),[`stop`])},[e(I,{name:`x`,size:13}),r[15]||=v(`span`,null,`移除链接`,-1)])):f(``,!0),v(`button`,{class:`zm-node-menu-item`,onClick:r[4]||=y(e=>M(()=>a(`addCode`)),[`stop`])},[r[16]||=v(`span`,{class:`zm-node-menu-icon zm-node-menu-icon-code`,"aria-hidden":`true`},`{ }`,-1),v(`span`,null,p(n.hasCode?`编辑代码块`:`添加代码块`),1)]),n.hasCode?(A(),O(`button`,{key:2,class:`zm-node-menu-item`,onClick:r[5]||=y(e=>M(()=>a(`removeCode`)),[`stop`])},[e(I,{name:`x`,size:13}),r[17]||=v(`span`,null,`移除代码块`,-1)])):f(``,!0),v(`button`,{class:`zm-node-menu-item`,onClick:r[6]||=y(e=>M(()=>a(`addTable`)),[`stop`])},[r[18]||=v(`span`,{class:`zm-node-menu-icon zm-node-menu-icon-table`,"aria-hidden":`true`},`▦`,-1),v(`span`,null,p(n.hasTable?`编辑表格`:`添加表格`),1)]),n.hasTable?(A(),O(`button`,{key:3,class:`zm-node-menu-item`,onClick:r[7]||=y(e=>M(()=>a(`removeTable`)),[`stop`])},[e(I,{name:`x`,size:13}),r[19]||=v(`span`,null,`移除表格`,-1)])):f(``,!0),v(`button`,{class:`zm-node-menu-item`,onClick:r[8]||=y(e=>M(()=>a(`editNote`)),[`stop`])},[e(I,{name:`note`,size:13}),v(`span`,null,p(u.value?`编辑笔记`:`添加笔记`),1)]),u.value?(A(),O(`button`,{key:4,class:`zm-node-menu-item`,onClick:r[9]||=y(e=>M(()=>a(`removeNote`)),[`stop`])},[e(I,{name:`x`,size:13}),r[20]||=v(`span`,null,`移除笔记`,-1)])):f(``,!0),r[25]||=v(`div`,{class:`zm-node-menu-divider`},null,-1),v(`button`,{class:`zm-node-menu-item`,onClick:y(g,[`stop`])},[r[21]||=v(`span`,{class:`zm-node-menu-icon`,"aria-hidden":`true`},`⚑`,-1),r[22]||=v(`span`,null,`标记图标`,-1),v(`span`,{class:x([`zm-node-menu-arrow`,{"is-open":h.value}])},`›`,2)]),h.value?(A(),O(`div`,ht,[(A(!0),O(D,null,l(C(ut),e=>(A(),O(`div`,{key:e.label,class:`zm-marker-group`},[v(`div`,gt,p(e.label),1),v(`div`,_t,[(A(!0),O(D,null,l(e.markers,e=>(A(),O(`button`,{key:e.id,class:x([`zm-marker-cell`,{"is-active":S(e.id)}]),title:e.label,onClick:y(t=>w(e.id),[`stop`]),innerHTML:`<svg viewBox="0 0 24 24" width="20" height="20">`+C(ft)(e.id)+`</svg>`},null,10,vt))),128))])]))),128)),d.value?(A(),O(`button`,{key:0,class:`zm-marker-clear`,onClick:r[10]||=y(e=>a(`clearMarkers`),[`stop`])},` 清除所有标记 `)):f(``,!0)])):f(``,!0),v(`button`,{class:`zm-node-menu-item`,onClick:r[11]||=y(e=>M(()=>a(`addTag`)),[`stop`])},[r[23]||=v(`span`,{class:`zm-node-menu-icon`,"aria-hidden":`true`},`#`,-1),v(`span`,null,p(m.value?`编辑标签`:`添加标签`),1)]),m.value?(A(),O(`button`,{key:6,class:`zm-node-menu-item`,onClick:r[12]||=y(e=>M(()=>a(`removeTags`)),[`stop`])},[e(I,{name:`x`,size:13}),r[24]||=v(`span`,null,`移除标签`,-1)])):f(``,!0)],36))}}),bt=s({__name:`CanvasContextMenu`,props:{x:{},y:{},container:{}},emits:[`openSettings`,`openData`,`openImport`,`exportPng`,`exportSvg`,`close`],setup(n,{emit:r}){let i=n,a=r,o=b(()=>{let e=i.x+2,t=i.y+2;if(i.container){let n=i.container.getBoundingClientRect();e+160>n.right&&(e=Math.max(n.left+4,i.x-160-2)),t+121>n.bottom&&(t=Math.max(n.top+4,i.y-121-2)),e<n.left+2&&(e=n.left+2),t<n.top+2&&(t=n.top+2)}return{left:e,top:t}}),s=T(null),c=T(null),l=T(null),u=b(()=>{let e=s.value===`import`?c.value:s.value===`export`?l.value:null;if(!e)return{left:`-9999px`,top:`-9999px`,display:`none`};let t=e.getBoundingClientRect(),n=window.innerWidth,r=window.innerHeight,i=t.right;i+176>n-4&&(i=Math.max(4,t.left-176));let a=t.top-4;return a+88>r-4&&(a=Math.max(4,r-88-4)),{left:i+`px`,top:a+`px`,display:`block`}}),d=null,p=null;function m(e){p&&=(clearTimeout(p),null),d=setTimeout(()=>{s.value=e},60)}function h(){d&&=(clearTimeout(d),null),p=setTimeout(()=>{s.value=null},120)}t(()=>{d&&clearTimeout(d),p&&clearTimeout(p)});function g(e){let t=e.target;t&&t.closest(`.zm-canvas-menu`)||a(`close`)}function S(e){e.key===`Escape`&&a(`close`)}function C(){a(`close`)}window.addEventListener(`mousedown`,g,!0),window.addEventListener(`keydown`,S,!0),window.addEventListener(`wheel`,C,!0),window.addEventListener(`scroll`,C,!0),t(()=>{window.removeEventListener(`mousedown`,g,!0),window.removeEventListener(`keydown`,S,!0),window.removeEventListener(`wheel`,C,!0),window.removeEventListener(`scroll`,C,!0)});function w(e){e(),a(`close`)}return(t,n)=>(A(),O(`div`,{class:`zm-canvas-menu`,style:_({left:o.value.left+`px`,top:o.value.top+`px`}),onContextmenu:n[11]||=y(()=>{},[`prevent`])},[v(`button`,{class:`zm-canvas-menu-item`,onClick:n[0]||=y(e=>w(()=>a(`openData`)),[`stop`])},[e(I,{name:`database`,size:13,stroke:1.6}),n[12]||=v(`span`,null,`查看数据`,-1)]),v(`div`,{ref_key:`importItemRef`,ref:c,class:x([`zm-canvas-menu-item zm-canvas-menu-item-has-submenu`,{"is-open":s.value===`import`}]),onMouseenter:n[5]||=e=>m(`import`),onMouseleave:h},[e(I,{name:`import`,size:13,stroke:1.6}),n[16]||=v(`span`,null,`导入`,-1),n[17]||=v(`svg`,{class:`zm-canvas-menu-caret`,width:`8`,height:`8`,viewBox:`0 0 8 8`,fill:`none`,stroke:`currentColor`,"stroke-width":`1.4`,"stroke-linecap":`round`,"stroke-linejoin":`round`,"aria-hidden":`true`},[v(`polyline`,{points:`2.5 1.8 5.2 4 2.5 6.2`})],-1),s.value===`import`?(A(),O(`div`,{key:0,class:`zm-canvas-submenu`,style:_(u.value),onMouseenter:n[4]||=e=>m(`import`),onMouseleave:h},[v(`button`,{class:`zm-canvas-menu-item`,onClick:n[1]||=y(e=>w(()=>a(`openImport`,`markdown`)),[`stop`])},[e(I,{name:`markdown`,size:13,stroke:1.6}),n[13]||=v(`span`,null,`Markdown 导入`,-1)]),v(`button`,{class:`zm-canvas-menu-item`,onClick:n[2]||=y(e=>w(()=>a(`openImport`,`json`)),[`stop`])},[e(I,{name:`json`,size:13,stroke:1.6}),n[14]||=v(`span`,null,`JSON 文件导入`,-1)]),v(`button`,{class:`zm-canvas-menu-item`,onClick:n[3]||=y(e=>w(()=>a(`openImport`,`txt`)),[`stop`])},[e(I,{name:`txt`,size:13,stroke:1.6}),n[15]||=v(`span`,null,`TXT 文件导入`,-1)])],36)):f(``,!0)],34),v(`button`,{class:`zm-canvas-menu-item`,onClick:n[6]||=y(e=>w(()=>a(`openSettings`)),[`stop`])},[e(I,{name:`settings`,size:13,stroke:1.6}),n[18]||=v(`span`,null,`设置`,-1)]),n[23]||=v(`div`,{class:`zm-canvas-menu-divider`},null,-1),v(`div`,{ref_key:`exportItemRef`,ref:l,class:x([`zm-canvas-menu-item zm-canvas-menu-item-has-submenu`,{"is-open":s.value===`export`}]),onMouseenter:n[10]||=e=>m(`export`),onMouseleave:h},[e(I,{name:`export`,size:13,stroke:1.6}),n[21]||=v(`span`,null,`导出`,-1),n[22]||=v(`svg`,{class:`zm-canvas-menu-caret`,width:`8`,height:`8`,viewBox:`0 0 8 8`,fill:`none`,stroke:`currentColor`,"stroke-width":`1.4`,"stroke-linecap":`round`,"stroke-linejoin":`round`,"aria-hidden":`true`},[v(`polyline`,{points:`2.5 1.8 5.2 4 2.5 6.2`})],-1),s.value===`export`?(A(),O(`div`,{key:0,class:`zm-canvas-submenu`,style:_(u.value),onMouseenter:n[9]||=e=>m(`export`),onMouseleave:h},[v(`button`,{class:`zm-canvas-menu-item`,onClick:n[7]||=y(e=>w(()=>a(`exportPng`)),[`stop`])},[e(I,{name:`image`,size:13,stroke:1.6}),n[19]||=v(`span`,null,`导出 PNG`,-1)]),v(`button`,{class:`zm-canvas-menu-item`,onClick:n[8]||=y(e=>w(()=>a(`exportSvg`)),[`stop`])},[e(I,{name:`svg-export`,size:13,stroke:1.6}),n[20]||=v(`span`,null,`导出 SVG`,-1)])],36)):f(``,!0)],34)],36))}}),xt=[`aria-hidden`],St=[`aria-hidden`],Ct={key:0,class:`zm-drawer-header`},wt={key:0,class:`zm-drawer-title`},Tt={class:`zm-drawer-body`},Et=[`aria-hidden`],Dt={key:0,class:`zm-drawer-header`},Ot={key:0,class:`zm-drawer-title`},kt={class:`zm-drawer-body`},At=s({__name:`Drawer`,props:{side:{default:`left`},width:{default:320},open:{type:Boolean,default:!0},title:{default:``},scope:{default:`page`},closable:{type:Boolean,default:!0},closeOnBackdrop:{type:Boolean,default:!0}},emits:[`update:open`],setup(t,{emit:r}){let i=r;function a(){i(`update:open`,!1)}function o(){i(`update:open`,!1)}return(r,i)=>t.scope===`canvas`?(A(),O(D,{key:0},[e(E,{name:`zm-fade`},{default:u(()=>[t.open?(A(),O(`div`,{key:0,class:`zm-drawer-canvas-backdrop`,"aria-hidden":!t.open,onClick:i[0]||=e=>t.closeOnBackdrop&&o()},null,8,xt)):f(``,!0)]),_:1}),e(E,{name:t.side===`left`?`zm-slide-left`:`zm-slide-right`},{default:u(()=>[t.open?(A(),O(`aside`,{key:0,class:x([`zm-drawer zm-drawer--canvas`,[`zm-drawer--`+t.side]]),style:_({width:t.width+`px`}),"aria-hidden":!t.open},[t.title||r.$slots.header?(A(),O(`div`,Ct,[t.title?(A(),O(`h3`,wt,p(t.title),1)):f(``,!0),n(r.$slots,`header`),t.closable?(A(),O(`button`,{key:1,class:`zm-drawer-close`,title:`关闭`,onClick:a},[...i[1]||=[v(`svg`,{width:`14`,height:`14`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`},[v(`path`,{d:`M6 6 L18 18 M18 6 L6 18`})],-1)]])):f(``,!0)])):f(``,!0),v(`div`,Tt,[n(r.$slots,`default`)])],14,St)):f(``,!0)]),_:3},8,[`name`])],64)):(A(),g(E,{key:1,name:`zm-drawer`},{default:u(()=>[t.open?(A(),O(`aside`,{key:0,class:x([`zm-drawer`,[`zm-drawer--`+t.side,{"is-open":t.open}]]),style:_({width:t.width+`px`}),"aria-hidden":!t.open},[t.title||r.$slots.header?(A(),O(`div`,Dt,[t.title?(A(),O(`h3`,Ot,p(t.title),1)):f(``,!0),n(r.$slots,`header`),t.closable?(A(),O(`button`,{key:1,class:`zm-drawer-close`,title:`关闭`,onClick:a},[...i[2]||=[v(`svg`,{width:`14`,height:`14`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`},[v(`path`,{d:`M6 6 L18 18 M18 6 L6 18`})],-1)]])):f(``,!0)])):f(``,!0),v(`div`,kt,[n(r.$slots,`default`)])],14,Et)):f(``,!0)]),_:3}))}}),jt={class:`zm-outline-root`},Mt={class:`zm-outline-search`},Nt={key:0,class:`zm-outline-search-count`},Pt={key:1,class:`zm-outline-search-count zm-outline-search-empty`},Ft={class:`zm-outline-actions`},It={width:`11`,height:`11`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},Lt={key:0,x:`9`,y:`9`,width:`13`,height:`13`,rx:`2`},Rt={key:1,d:`M5 12 L10 17 L19 7`},zt={class:`zm-outline`},Bt=[`data-outline-id`,`onClick`,`onDblclick`,`onDragstart`,`onDragover`,`onDragleave`,`onDrop`],Vt=[`title`,`onClick`],Ht={width:`10`,height:`10`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`3`,"stroke-linecap":`round`,"stroke-linejoin":`round`},Ut={key:0,points:`6 9 12 15 18 9`},Wt={key:1,points:`9 6 15 12 9 18`},Gt={key:1,class:`zm-outline-dot`},Kt={key:2,class:`zm-outline-index`},qt={key:4,class:`zm-outline-text`},Jt=[`onClick`],Yt=[`onClick`],Xt=[`src`],Zt=[`onClick`],Qt=[`src`],$t=[`title`,`onClick`],en={width:`11`,height:`11`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},tn={key:0,x:`9`,y:`9`,width:`13`,height:`13`,rx:`2`},nn={key:1,d:`M5 12 L10 17 L19 7`},rn=s({__name:`Outline`,props:{data:{},selectedId:{default:null},collapsedIds:{default:()=>new Set},readonly:{type:Boolean,default:!1},showIndex:{type:Boolean,default:!1}},emits:[`select`,`toggleCollapse`,`edit`,`addChild`,`addSibling`,`move`],setup(e,{emit:n}){let r=e,o=n,s=T(``),c=T(null),u=T(-1),m=b(()=>{let e=s.value.trim().toLowerCase();if(!e)return new Set;let t=new Set,n=r=>{var i;(r.text.toLowerCase().includes(e)||(i=r.note)!=null&&i.text&&r.note.text.toLowerCase().includes(e))&&t.add(r.id);for(let e of r.children)n(e)};return n(r.data),t}),h=b(()=>{if(m.value.size===0)return new Set;let e=new Set,t=n=>{let r=m.value.has(n.id);for(let e of n.children)t(e)&&(r=!0);return r&&e.add(n.id),r};return t(r.data),e}),g=b(()=>{let e=[],t=n=>{m.value.has(n.id)&&e.push(n.id);for(let e of n.children)t(e)};return t(r.data),e}),w=b(()=>s.value.trim().length>0),E=b(()=>{let e=[],t=h.value,n=(i,a,o)=>{if(w.value&&!t.has(i.id))return;let s=i.children.length>0,c=w.value?!1:r.collapsedIds.has(i.id);e.push({id:i.id,text:i.text||`(无标题)`,depth:a,siblingIndex:o,hasChildren:s,collapsed:c,node:i}),s&&!c&&i.children.forEach((e,t)=>n(e,a+1,t))};return n(r.data,0,0),e});function k(){u.value=g.value.length>0?0:-1}function j(){let e=g.value;e.length!==0&&(u.value=(u.value+1)%e.length,P(u.value))}function M(){let e=g.value;e.length!==0&&(u.value=(u.value-1+e.length)%e.length,P(u.value))}function N(e){e.key===`Enter`?(e.preventDefault(),e.shiftKey?M():j()):e.key===`Escape`&&(e.preventDefault(),s.value=``,u.value=-1)}function P(e){let t=g.value[e];if(!t)return;let n=E.value.find(e=>e.id===t);n&&o(`select`,n.node),a(()=>{document.querySelector(`[data-outline-id="${t}"]`)?.scrollIntoView({block:`nearest`,behavior:`smooth`})})}function ee(){s.value=``,u.value=-1}i(()=>{a(()=>c.value?.focus())});let F=T(null),I=T(``),re=null;function L(e){r.readonly||(F.value=e.id,I.value=e.text,a(()=>{re=document.querySelector(`.zm-outline-input`),re?.focus(),re?.select()}))}function ie(){F.value!=null&&(o(`edit`,{id:F.value,text:I.value.trim()||`(无标题)`}),R())}function R(){F.value=null,I.value=``,re=null}function ae(e){e.key===`Enter`?(e.preventDefault(),ie()):e.key===`Escape`&&(e.preventDefault(),R())}t(R);let z=T(null),oe=T(null),B=T(null);function se(e,t){if(r.readonly){e.preventDefault();return}z.value={id:t.id,text:t.text},e.dataTransfer&&(e.dataTransfer.effectAllowed=`move`,e.dataTransfer.setData(`text/plain`,t.id))}function ce(){z.value=null,oe.value=null,B.value=null}function le(e,t){if(!z.value)return;e.preventDefault(),e.dataTransfer&&(e.dataTransfer.dropEffect=`move`);let n=fe(e);oe.value=t.id,B.value=n}function ue(e){oe.value===e.id&&(oe.value=null,B.value=null)}function de(e,t){e.preventDefault();let n=z.value;if(!n)return;let r=fe(e);n.id!==t.id&&o(`move`,{srcId:n.id,targetId:t.id,position:r}),ce()}function fe(e,t){let n=e.currentTarget.getBoundingClientRect(),r=e.clientY-n.top,i=n.height;return r<i*.3?`before`:r>i*.7?`after`:`child`}let pe=T(null),V=null;async function me(e){try{return await navigator.clipboard.writeText(e),!0}catch{let t=document.createElement(`textarea`);t.value=e,document.body.appendChild(t),t.select();let n=!1;try{n=document.execCommand(`copy`)}finally{document.body.removeChild(t)}return n}}async function he(e,t,n){e.stopPropagation(),await me(t)&&(pe.value=n,V&&clearTimeout(V),V=setTimeout(()=>pe.value=null,1200))}let ge=b(()=>{let e=[],t=(n,r)=>{let i=` `.repeat(r),a=r===0?``:`- `;e.push(i+a+(n.text||``));for(let e of n.children)t(e,r+1)};return t(r.data,0),e.join(`
15
- `)}),_e=T(!1),ve=null;async function ye(){await me(ge.value)&&(_e.value=!0,ve&&clearTimeout(ve),ve=setTimeout(()=>_e.value=!1,1200))}return(t,n)=>(A(),O(`div`,jt,[v(`div`,Mt,[n[3]||=v(`svg`,{class:`zm-outline-search-icon`,width:`13`,height:`13`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`circle`,{cx:`11`,cy:`11`,r:`7`}),v(`line`,{x1:`20`,y1:`20`,x2:`16`,y2:`16`})],-1),d(v(`input`,{ref_key:`searchInputRef`,ref:c,"onUpdate:modelValue":n[0]||=e=>s.value=e,type:`text`,class:`zm-outline-search-input`,placeholder:`搜索节点… (Enter 下一个, Shift+Enter 上一个)`,onInput:k,onKeydown:N},null,544),[[S,s.value]]),g.value.length>0?(A(),O(`span`,Nt,p(u.value+1)+`/`+p(g.value.length),1)):w.value?(A(),O(`span`,Pt,`无结果`)):f(``,!0),s.value?(A(),O(`button`,{key:2,class:`zm-outline-search-clear`,title:`清除搜索`,onClick:ee},`×`)):f(``,!0)]),v(`div`,Ft,[v(`button`,{class:x([`zm-outline-action-btn`,{"is-success":_e.value}]),title:`复制完整大纲为纯文本`,onClick:ye},[(A(),O(`svg`,It,[_e.value?(A(),O(`path`,Rt)):(A(),O(`rect`,Lt)),n[4]||=v(`path`,{d:`M5 15 H4 a2 2 0 0 1 -2 -2 V4 a2 2 0 0 1 2 -2 h9 a2 2 0 0 1 2 2 v1`},null,-1)])),v(`span`,null,p(_e.value?`已复制`:`复制大纲`),1)],2)]),v(`ul`,zt,[(A(!0),O(D,null,l(E.value,t=>(A(),O(`li`,{key:t.id,"data-outline-id":t.id,class:x([`zm-outline-row`,{"is-selected":t.id===e.selectedId,"is-root":t.depth===0,"is-editing":F.value===t.id,"is-search-hit":m.value.has(t.id),"is-search-current":g.value[u.value]===t.id,"is-drag-over-before":oe.value===t.id&&B.value===`before`,"is-drag-over-after":oe.value===t.id&&B.value===`after`,"is-drag-over-child":oe.value===t.id&&B.value===`child`}]),style:_({paddingLeft:12+t.depth*16+`px`}),draggable:`true`,onClick:e=>o(`select`,t.node),onDblclick:e=>L(t),onDragstart:e=>se(e,t),onDragend:ce,onDragover:e=>le(e,t),onDragleave:()=>ue(t),onDrop:e=>de(e,t)},[t.hasChildren?(A(),O(`button`,{key:0,class:`zm-outline-toggle`,title:t.collapsed?`展开`:`折叠`,onClick:y(e=>o(`toggleCollapse`,t.id),[`stop`])},[(A(),O(`svg`,Ht,[t.collapsed?(A(),O(`polyline`,Wt)):(A(),O(`polyline`,Ut))]))],8,Vt)):(A(),O(`span`,Gt)),r.showIndex?(A(),O(`span`,Kt,p(t.siblingIndex+1)+`.`,1)):f(``,!0),F.value===t.id?d((A(),O(`input`,{key:3,"onUpdate:modelValue":n[1]||=e=>I.value=e,class:`zm-outline-input`,onBlur:ie,onKeydown:ae,onClick:n[2]||=y(()=>{},[`stop`])},null,544)),[[S,I.value]]):(A(),O(`span`,qt,p(t.text),1)),r.readonly?f(``,!0):(A(),O(`button`,{key:5,class:`zm-outline-row-action`,title:`编辑文字`,onClick:y(e=>L(t),[`stop`])},[...n[5]||=[v(`svg`,{width:`11`,height:`11`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`path`,{d:`M4 20 l4 -1 11 -11 -3 -3 -11 11 z`}),v(`line`,{x1:`14`,y1:`6`,x2:`18`,y2:`10`})],-1)]],8,Jt)),r.readonly?f(``,!0):(A(),O(`button`,{key:6,class:`zm-outline-row-action`,title:`添加同级`,onClick:y(e=>o(`addSibling`,t.id),[`stop`])},[v(`img`,{src:C(te),width:`14`,height:`14`,alt:`添加同级`,draggable:`false`},null,8,Xt)],8,Yt)),r.readonly?f(``,!0):(A(),O(`button`,{key:7,class:`zm-outline-row-action`,title:`添加子节点`,onClick:y(e=>o(`addChild`,t.id),[`stop`])},[v(`img`,{src:C(ne),width:`14`,height:`14`,alt:`添加子节点`,draggable:`false`},null,8,Qt)],8,Zt)),v(`button`,{class:x([`zm-outline-row-copy`,{"is-success":pe.value===t.id}]),title:pe.value===t.id?`已复制`:`复制节点文本`,onClick:e=>he(e,t.text,t.id)},[(A(),O(`svg`,en,[pe.value===t.id?(A(),O(`path`,nn)):(A(),O(`rect`,tn)),n[6]||=v(`path`,{d:`M5 15 H4 a2 2 0 0 1 -2 -2 V4 a2 2 0 0 1 2 -2 h9 a2 2 0 0 1 2 2 v1`},null,-1)]))],10,$t)],46,Bt))),128))])]))}}),an={key:0,class:`zm-jtv-root`},on={key:0,class:`zm-jtv-key`},sn={key:1,class:`zm-jtv-colon`},cn={key:2,class:`zm-jtv-key zm-jtv-bracket`},K={key:3,class:`zm-jtv-size`},q={key:4,class:`zm-jtv-bracket`},ln={key:5,class:`zm-jtv-brace`},un={key:0,class:`zm-jtv-children`},dn={class:`zm-jtv-key`},J={key:0,class:`zm-jtv-key`},fn=[`src`,`alt`],pn=[`href`],mn=s({__name:`JsonTreeViewer`,props:{value:{},keyName:{default:``},isRoot:{type:Boolean,default:!0},path:{default:``},depth:{default:0},query:{default:``},collapsedPaths:{default:()=>new Set}},setup(t){let n=t,r=b(()=>n.value===null?`null`:Array.isArray(n.value)?`array`:typeof n.value),i=b(()=>r.value===`object`),a=b(()=>r.value===`array`);b(()=>!i.value&&!a.value);let s=b(()=>{if(a.value)return`Array(${n.value.length})`;if(i.value){let e=n.value,t=Object.keys(e);return`Object(${t.length} ${t.length===1?`key`:`keys`})`}return``}),u=b(()=>a.value?n.value.map((e,t)=>({key:String(t),value:e})):i.value?Object.entries(n.value).map(([e,t])=>({key:e,value:t})):[]),m=b(()=>n.isRoot?`<root>`:n.path),h=b(()=>n.collapsedPaths.has(m.value));function g(e,t,r){e!==`<root>`&&(r<2||typeof t!=`object`||!t||n.collapsedPaths.has(e)||n.collapsedPaths.add(e))}n.isRoot||g(m.value,n.value,n.depth);function S(){h.value?n.collapsedPaths.delete(m.value):n.collapsedPaths.add(m.value)}function C(e){return m.value===``?e:`${m.value}.${e}`}function T(e){if(!n.query)return!0;let t=n.query.toLowerCase();return typeof e==`string`?e.toLowerCase().includes(t):e===null?`null`.includes(t):String(e).toLowerCase().includes(t)}function E(e){return n.query?e.toLowerCase().includes(n.query.toLowerCase()):!0}function k(e,t){return!n.query||E(e)?!0:typeof t!=`object`||!t?T(t):!0}function j(e){return e===null?`null`:typeof e==`string`?e.length>80?`"${e.slice(0,80)}..."`:`"${e}"`:typeof e==`boolean`?e?`true`:`false`:typeof e==`number`?String(e):typeof e>`u`?`undefined`:JSON.stringify(e)}function M(e){if(typeof e!=`string`)return!1;let t=e.trim();return!!(t.startsWith(`data:image/`)||/^https?:\/\/.+\.(png|jpe?g|gif|webp|svg|bmp|ico)(\?.*)?$/i.test(t)||/^https?:\/\/.+/i.test(t)&&/\/[^/]+\.(png|jpe?g|gif|webp|svg|bmp|ico)(\?.*)?$/i.test(t))}function N(e){if(!n.query)return null;let t=e.toLowerCase().indexOf(n.query.toLowerCase());return t<0?null:{before:e.slice(0,t),match:e.slice(t,t+n.query.length),after:e.slice(t+n.query.length)}}return(n,m)=>{let g=c(`JsonTreeViewer`,!0);return t.isRoot?(A(),O(`div`,an,[(A(!0),O(D,null,l(u.value,n=>d((A(),O(`div`,{key:n.key,class:`zm-jtv-row`},[e(g,{"key-name":n.key,value:n.value,path:C(n.key),depth:t.depth+1,query:t.query,"collapsed-paths":t.collapsedPaths,"is-root":!1},null,8,[`key-name`,`value`,`path`,`depth`,`query`,`collapsed-paths`])])),[[w,k(n.key,n.value)]])),128))])):i.value||a.value?(A(),O(`div`,{key:1,class:x([`zm-jtv-branch`,{"is-collapsed":h.value}])},[v(`div`,{class:`zm-jtv-header`,style:_({paddingLeft:6+t.depth*12+`px`}),onClick:S},[v(`span`,{class:x([`zm-jtv-toggle`,{"is-leaf":!1}])},p(h.value?`▶`:`▼`),1),a.value?f(``,!0):(A(),O(`span`,on,p(t.keyName),1)),a.value?f(``,!0):(A(),O(`span`,sn,`:`)),a.value?(A(),O(`span`,cn,`[`)):f(``,!0),h.value?(A(),O(`span`,K,p(s.value),1)):f(``,!0),h.value&&a.value?(A(),O(`span`,q,`]`)):f(``,!0),h.value&&i.value?(A(),O(`span`,ln,`}`)):f(``,!0)],4),h.value?f(``,!0):(A(),O(`div`,un,[(A(!0),O(D,null,l(u.value,n=>d((A(),O(`div`,{key:n.key,class:`zm-jtv-row`},[e(g,{"key-name":n.key,value:n.value,path:C(n.key),depth:t.depth+1,query:t.query,"collapsed-paths":t.collapsedPaths,"is-root":!1},null,8,[`key-name`,`value`,`path`,`depth`,`query`,`collapsed-paths`])])),[[w,k(n.key,n.value)]])),128))])),!h.value&&a.value?(A(),O(`div`,{key:1,class:`zm-jtv-footer`,style:_({paddingLeft:6+t.depth*12+`px`})},`]`,4)):f(``,!0),!h.value&&i.value&&!a.value?(A(),O(`div`,{key:2,class:`zm-jtv-footer`,style:_({paddingLeft:6+t.depth*12+`px`})},`}`,4)):f(``,!0)],2)):(A(),O(`div`,{key:2,class:`zm-jtv-leaf`,style:_({paddingLeft:6+t.depth*12+`px`})},[m[2]||=v(`span`,{class:`zm-jtv-toggle is-leaf`},`·`,-1),v(`span`,dn,p(t.keyName),1),m[3]||=v(`span`,{class:`zm-jtv-colon`},`:`,-1),E(t.keyName)&&N(t.keyName)?(A(),O(`span`,J,[v(`span`,null,p(N(t.keyName)?.before),1),v(`mark`,null,p(N(t.keyName)?.match),1),v(`span`,null,p(N(t.keyName)?.after),1)])):f(``,!0),v(`span`,{class:x([`zm-jtv-value`,`zm-jtv-${r.value}`])},[N(j(t.value))?(A(),O(D,{key:0},[v(`span`,null,p(N(j(t.value))?.before),1),v(`mark`,null,p(N(j(t.value))?.match),1),v(`span`,null,p(N(j(t.value))?.after),1)],64)):(A(),O(D,{key:1},[o(p(j(t.value)),1)],64))],2),M(t.value)?(A(),O(`span`,{key:1,class:`zm-jtv-thumb-wrap`,onClick:m[1]||=y(()=>{},[`stop`])},[v(`img`,{class:`zm-jtv-thumb`,src:String(t.value),alt:t.keyName,loading:`lazy`,referrerpolicy:`no-referrer`},null,8,fn),v(`a`,{class:`zm-jtv-thumb-link`,href:String(t.value),target:`_blank`,rel:`noopener noreferrer`,onClick:m[0]||=y(()=>{},[`stop`])},`open`,8,pn)])):f(``,!0)],4))}}}),hn={class:`zm-data-panel`},gn={class:`zm-data-header`},_n={class:`zm-data-title`},vn={class:`zm-data-title-meta`},yn={class:`zm-data-toolbar`},bn=[`title`],xn={key:0,width:`13`,height:`13`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},Sn={key:1,width:`13`,height:`13`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.4`,"stroke-linecap":`round`,"stroke-linejoin":`round`},Cn={key:0,class:`zm-data-paste`},wn={class:`zm-data-tabs`},Tn=[`placeholder`],En={key:0,class:`zm-data-error`},Dn={class:`zm-data-paste-actions`},On=[`disabled`],kn={class:`zm-data-tree`},An=s({__name:`DataPanel`,props:{data:{},pendingMode:{default:null}},emits:[`import`,`consumed-mode`],setup(t,{emit:n}){let i=t,a=n,s=b(()=>JSON.stringify(i.data,null,2)),c=T(``),l=T(null),u=T(!1),m=T(`json`),h=T(`idle`),g=T(new Set),_=T(``);r(()=>i.pendingMode,e=>{e&&(u.value=!0,m.value=e,a(`consumed-mode`))},{immediate:!0});async function y(){try{await navigator.clipboard.writeText(s.value),h.value=`copied`,setTimeout(()=>h.value=`idle`,1500)}catch{let e=document.createElement(`textarea`);e.value=s.value,document.body.appendChild(e),e.select();try{document.execCommand(`copy`),h.value=`copied`,setTimeout(()=>h.value=`idle`,1500)}finally{document.body.removeChild(e)}}}function C(){let e=new Blob([s.value],{type:`application/json`}),t=URL.createObjectURL(e),n=document.createElement(`a`);n.href=t,n.download=`${i.data.text||`mindmap`}.json`,n.click(),URL.revokeObjectURL(t)}function w(){l.value=null;let e=c.value.trim();if(e){if(m.value===`markdown`||m.value===`txt`){try{a(`import`,Qe(e)),c.value=``,u.value=!1}catch(e){l.value=(m.value===`txt`?`TXT 解析失败:`:`Markdown 解析失败:`)+e.message}return}try{let t=JSON.parse(e);if(!t.id||!Array.isArray(t.children)){l.value=`JSON 缺少 id 或 children 字段`;return}a(`import`,t),c.value=``,u.value=!1}catch(e){l.value=`JSON 解析失败:`+e.message}}}function E(e){return 1+e.children.reduce((e,t)=>e+E(t),0)}let D=b(()=>E(i.data)),j=b(()=>s.value.length);function M(){let e=document.createElement(`input`);e.type=`file`,e.accept=`application/json`,e.onchange=()=>{let t=e.files?.[0];if(!t)return;let n=new FileReader;n.onload=()=>{typeof n.result==`string`&&(c.value=n.result,w())},n.readAsText(t)},e.click()}return(n,r)=>(A(),O(`div`,hn,[v(`div`,gn,[v(`div`,_n,[r[8]||=v(`span`,{class:`zm-data-title-text`},`数据 JSON`,-1),v(`span`,vn,p(D.value)+` 节点 · `+p(j.value)+` chars`,1)])]),v(`div`,yn,[v(`button`,{class:x([`zm-data-btn is-icon`,{"is-success":h.value===`copied`}]),title:h.value===`copied`?`已复制`:`复制 JSON 到剪贴板`,onClick:y},[h.value===`idle`?(A(),O(`svg`,xn,[...r[9]||=[v(`rect`,{x:`9`,y:`9`,width:`13`,height:`13`,rx:`2`},null,-1),v(`path`,{d:`M5 15 H4 a2 2 0 0 1 -2 -2 V4 a2 2 0 0 1 2 -2 h9 a2 2 0 0 1 2 2 v1`},null,-1)]])):(A(),O(`svg`,Sn,[...r[10]||=[v(`polyline`,{points:`5 12 10 17 19 7`},null,-1)]])),r[11]||=v(`span`,{class:`zm-data-btn-label`},`复制`,-1)],10,bn),v(`button`,{class:`zm-data-btn is-icon`,title:`导出为 JSON 文件`,onClick:C},[...r[12]||=[k(`<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4 V15"></path><polyline points="7 9 12 4 17 9"></polyline><path d="M4 19 H20"></path></svg><span class="zm-data-btn-label">导出</span>`,2)]]),v(`button`,{class:`zm-data-btn is-icon`,title:`从 JSON 文件导入`,onClick:M},[...r[13]||=[k(`<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 15 V4"></path><polyline points="7 9 12 4 17 9"></polyline><path d="M4 19 H20"></path></svg><span class="zm-data-btn-label">导入</span>`,2)]]),v(`button`,{class:x([`zm-data-btn is-icon`,{"is-active":u.value}]),title:`粘贴 JSON 或 Markdown 替换当前数据`,onClick:r[0]||=e=>u.value=!u.value},[...r[14]||=[k(`<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 4 H15 V8 H9 Z"></path><path d="M9 8 H4 V20 H9"></path><path d="M15 8 H20 V20 H15"></path></svg><span class="zm-data-btn-label">粘贴</span>`,2)]],2),r[16]||=v(`div`,{class:`zm-data-toolbar-spacer`},null,-1),v(`div`,{class:x([`zm-data-search`,{"is-active":_.value.length>0}])},[r[15]||=v(`svg`,{width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`circle`,{cx:`11`,cy:`11`,r:`7`}),v(`line`,{x1:`20`,y1:`20`,x2:`16`,y2:`16`})],-1),d(v(`input`,{"onUpdate:modelValue":r[1]||=e=>_.value=e,type:`text`,placeholder:`过滤 (键 / 值)`,spellcheck:`false`},null,512),[[S,_.value]]),_.value?(A(),O(`button`,{key:0,class:`zm-data-search-clear`,title:`清空过滤`,onClick:r[2]||=e=>_.value=``},`×`)):f(``,!0)],2)]),u.value?(A(),O(`div`,Cn,[v(`div`,wn,[v(`button`,{class:x([`zm-data-tab`,{"is-active":m.value===`json`}]),onClick:r[3]||=e=>m.value=`json`},`JSON`,2),v(`button`,{class:x([`zm-data-tab`,{"is-active":m.value===`markdown`}]),onClick:r[4]||=e=>m.value=`markdown`},`Markdown`,2)]),d(v(`textarea`,{"onUpdate:modelValue":r[5]||=e=>c.value=e,placeholder:m.value===`json`?`paste a JSON tree to replace current data`:`paste markdown - # / ## / ### become nodes`,spellcheck:`false`},null,8,Tn),[[S,c.value]]),l.value?(A(),O(`div`,En,p(l.value),1)):f(``,!0),v(`div`,Dn,[v(`button`,{class:`zm-data-btn is-primary`,disabled:!c.value,onClick:w},`应用`,8,On),v(`button`,{class:`zm-data-btn`,onClick:r[6]||=e=>{c.value=``,l.value=null}},`清空`),v(`button`,{class:`zm-data-btn`,onClick:r[7]||=e=>u.value=!1},`关闭`)])])):f(``,!0),v(`div`,kn,[e(mn,{value:t.data,query:_.value,"collapsed-paths":g.value},null,8,[`value`,`query`,`collapsed-paths`])]),r[17]||=v(`div`,{class:`zm-data-footer`},[v(`span`,{class:`zm-data-footer-hint`},[o(` 图片支持 `),v(`code`,null,`data:image/...`),o(` / `),v(`code`,null,`https://...`),o(` / `),v(`code`,null,`/imgs/foo.png`),o(` (同源)。本地 `),v(`code`,null,`file://`),o(` 路径被浏览器拒绝。 `)])],-1)]))}}),jn={class:`zm-md-panel`},Mn={key:0,class:`zm-md-error`},Y={class:`zm-md-split`},Nn={class:`zm-md-edit`},Pn={class:`zm-md-preview`},Fn={class:`zm-md-preview-body`},In={class:`zm-md-footer`},Ln=[`disabled`],Rn=`# flow-mindmap 思维导图
15
+ `)}),_e=T(!1),ve=null;async function ye(){await me(ge.value)&&(_e.value=!0,ve&&clearTimeout(ve),ve=setTimeout(()=>_e.value=!1,1200))}return(t,n)=>(A(),O(`div`,jt,[v(`div`,Mt,[n[3]||=v(`svg`,{class:`zm-outline-search-icon`,width:`13`,height:`13`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`circle`,{cx:`11`,cy:`11`,r:`7`}),v(`line`,{x1:`20`,y1:`20`,x2:`16`,y2:`16`})],-1),d(v(`input`,{ref_key:`searchInputRef`,ref:c,"onUpdate:modelValue":n[0]||=e=>s.value=e,type:`text`,class:`zm-outline-search-input`,placeholder:`搜索节点… (Enter 下一个, Shift+Enter 上一个)`,onInput:k,onKeydown:N},null,544),[[S,s.value]]),g.value.length>0?(A(),O(`span`,Nt,p(u.value+1)+`/`+p(g.value.length),1)):w.value?(A(),O(`span`,Pt,`无结果`)):f(``,!0),s.value?(A(),O(`button`,{key:2,class:`zm-outline-search-clear`,title:`清除搜索`,onClick:ee},`×`)):f(``,!0)]),v(`div`,Ft,[v(`button`,{class:x([`zm-outline-action-btn`,{"is-success":_e.value}]),title:`复制完整大纲为纯文本`,onClick:ye},[(A(),O(`svg`,It,[_e.value?(A(),O(`path`,Rt)):(A(),O(`rect`,Lt)),n[4]||=v(`path`,{d:`M5 15 H4 a2 2 0 0 1 -2 -2 V4 a2 2 0 0 1 2 -2 h9 a2 2 0 0 1 2 2 v1`},null,-1)])),v(`span`,null,p(_e.value?`已复制`:`复制大纲`),1)],2)]),v(`ul`,zt,[(A(!0),O(D,null,l(E.value,t=>(A(),O(`li`,{key:t.id,"data-outline-id":t.id,class:x([`zm-outline-row`,{"is-selected":t.id===e.selectedId,"is-root":t.depth===0,"is-editing":F.value===t.id,"is-search-hit":m.value.has(t.id),"is-search-current":g.value[u.value]===t.id,"is-drag-over-before":oe.value===t.id&&B.value===`before`,"is-drag-over-after":oe.value===t.id&&B.value===`after`,"is-drag-over-child":oe.value===t.id&&B.value===`child`}]),style:_({paddingLeft:12+t.depth*16+`px`}),draggable:`true`,onClick:e=>o(`select`,t.node),onDblclick:e=>L(t),onDragstart:e=>se(e,t),onDragend:ce,onDragover:e=>le(e,t),onDragleave:()=>ue(t),onDrop:e=>de(e,t)},[t.hasChildren?(A(),O(`button`,{key:0,class:`zm-outline-toggle`,title:t.collapsed?`展开`:`折叠`,onClick:y(e=>o(`toggleCollapse`,t.id),[`stop`])},[(A(),O(`svg`,Ht,[t.collapsed?(A(),O(`polyline`,Wt)):(A(),O(`polyline`,Ut))]))],8,Vt)):(A(),O(`span`,Gt)),r.showIndex?(A(),O(`span`,Kt,p(t.siblingIndex+1)+`.`,1)):f(``,!0),F.value===t.id?d((A(),O(`input`,{key:3,"onUpdate:modelValue":n[1]||=e=>I.value=e,class:`zm-outline-input`,onBlur:ie,onKeydown:ae,onClick:n[2]||=y(()=>{},[`stop`])},null,544)),[[S,I.value]]):(A(),O(`span`,qt,p(t.text),1)),r.readonly?f(``,!0):(A(),O(`button`,{key:5,class:`zm-outline-row-action`,title:`编辑文字`,onClick:y(e=>L(t),[`stop`])},[...n[5]||=[v(`svg`,{width:`11`,height:`11`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`path`,{d:`M4 20 l4 -1 11 -11 -3 -3 -11 11 z`}),v(`line`,{x1:`14`,y1:`6`,x2:`18`,y2:`10`})],-1)]],8,Jt)),r.readonly?f(``,!0):(A(),O(`button`,{key:6,class:`zm-outline-row-action`,title:`添加同级`,onClick:y(e=>o(`addSibling`,t.id),[`stop`])},[v(`img`,{src:C(te),width:`14`,height:`14`,alt:`添加同级`,draggable:`false`},null,8,Xt)],8,Yt)),r.readonly?f(``,!0):(A(),O(`button`,{key:7,class:`zm-outline-row-action`,title:`添加子节点`,onClick:y(e=>o(`addChild`,t.id),[`stop`])},[v(`img`,{src:C(ne),width:`14`,height:`14`,alt:`添加子节点`,draggable:`false`},null,8,Qt)],8,Zt)),v(`button`,{class:x([`zm-outline-row-copy`,{"is-success":pe.value===t.id}]),title:pe.value===t.id?`已复制`:`复制节点文本`,onClick:e=>he(e,t.text,t.id)},[(A(),O(`svg`,en,[pe.value===t.id?(A(),O(`path`,nn)):(A(),O(`rect`,tn)),n[6]||=v(`path`,{d:`M5 15 H4 a2 2 0 0 1 -2 -2 V4 a2 2 0 0 1 2 -2 h9 a2 2 0 0 1 2 2 v1`},null,-1)]))],10,$t)],46,Bt))),128))])]))}}),an={key:0,class:`zm-jtv-root`},on={key:0,class:`zm-jtv-key`},sn={key:1,class:`zm-jtv-colon`},cn={key:2,class:`zm-jtv-key zm-jtv-bracket`},K={key:3,class:`zm-jtv-size`},q={key:4,class:`zm-jtv-bracket`},ln={key:5,class:`zm-jtv-brace`},un={key:0,class:`zm-jtv-children`},dn={class:`zm-jtv-key`},J={key:0,class:`zm-jtv-key`},fn=[`src`,`alt`],pn=[`href`],mn=s({__name:`JsonTreeViewer`,props:{value:{},keyName:{default:``},isRoot:{type:Boolean,default:!0},path:{default:``},depth:{default:0},query:{default:``},collapsedPaths:{default:()=>new Set}},setup(t){let n=t,r=b(()=>n.value===null?`null`:Array.isArray(n.value)?`array`:typeof n.value),i=b(()=>r.value===`object`),a=b(()=>r.value===`array`);b(()=>!i.value&&!a.value);let s=b(()=>{if(a.value)return`Array(${n.value.length})`;if(i.value){let e=n.value,t=Object.keys(e);return`Object(${t.length} ${t.length===1?`key`:`keys`})`}return``}),u=b(()=>a.value?n.value.map((e,t)=>({key:String(t),value:e})):i.value?Object.entries(n.value).map(([e,t])=>({key:e,value:t})):[]),m=b(()=>n.isRoot?`<root>`:n.path),h=b(()=>n.collapsedPaths.has(m.value));function g(e,t,r){e!==`<root>`&&(r<2||typeof t!=`object`||!t||n.collapsedPaths.has(e)||n.collapsedPaths.add(e))}n.isRoot||g(m.value,n.value,n.depth);function S(){h.value?n.collapsedPaths.delete(m.value):n.collapsedPaths.add(m.value)}function C(e){return m.value===``?e:`${m.value}.${e}`}function T(e){if(!n.query)return!0;let t=n.query.toLowerCase();return typeof e==`string`?e.toLowerCase().includes(t):e===null?`null`.includes(t):String(e).toLowerCase().includes(t)}function E(e){return n.query?e.toLowerCase().includes(n.query.toLowerCase()):!0}function k(e,t){return!n.query||E(e)?!0:typeof t!=`object`||!t?T(t):!0}function j(e){return e===null?`null`:typeof e==`string`?e.length>80?`"${e.slice(0,80)}..."`:`"${e}"`:typeof e==`boolean`?e?`true`:`false`:typeof e==`number`?String(e):typeof e>`u`?`undefined`:JSON.stringify(e)}function M(e){if(typeof e!=`string`)return!1;let t=e.trim();return!!(t.startsWith(`data:image/`)||/^https?:\/\/.+\.(png|jpe?g|gif|webp|svg|bmp|ico)(\?.*)?$/i.test(t)||/^https?:\/\/.+/i.test(t)&&/\/[^/]+\.(png|jpe?g|gif|webp|svg|bmp|ico)(\?.*)?$/i.test(t))}function N(e){if(!n.query)return null;let t=e.toLowerCase().indexOf(n.query.toLowerCase());return t<0?null:{before:e.slice(0,t),match:e.slice(t,t+n.query.length),after:e.slice(t+n.query.length)}}return(n,m)=>{let g=c(`JsonTreeViewer`,!0);return t.isRoot?(A(),O(`div`,an,[(A(!0),O(D,null,l(u.value,n=>d((A(),O(`div`,{key:n.key,class:`zm-jtv-row`},[e(g,{"key-name":n.key,value:n.value,path:C(n.key),depth:t.depth+1,query:t.query,"collapsed-paths":t.collapsedPaths,"is-root":!1},null,8,[`key-name`,`value`,`path`,`depth`,`query`,`collapsed-paths`])])),[[w,k(n.key,n.value)]])),128))])):i.value||a.value?(A(),O(`div`,{key:1,class:x([`zm-jtv-branch`,{"is-collapsed":h.value}])},[v(`div`,{class:`zm-jtv-header`,style:_({paddingLeft:6+t.depth*12+`px`}),onClick:S},[v(`span`,{class:x([`zm-jtv-toggle`,{"is-leaf":!1}])},p(h.value?`▶`:`▼`),1),a.value?f(``,!0):(A(),O(`span`,on,p(t.keyName),1)),a.value?f(``,!0):(A(),O(`span`,sn,`:`)),a.value?(A(),O(`span`,cn,`[`)):f(``,!0),h.value?(A(),O(`span`,K,p(s.value),1)):f(``,!0),h.value&&a.value?(A(),O(`span`,q,`]`)):f(``,!0),h.value&&i.value?(A(),O(`span`,ln,`}`)):f(``,!0)],4),h.value?f(``,!0):(A(),O(`div`,un,[(A(!0),O(D,null,l(u.value,n=>d((A(),O(`div`,{key:n.key,class:`zm-jtv-row`},[e(g,{"key-name":n.key,value:n.value,path:C(n.key),depth:t.depth+1,query:t.query,"collapsed-paths":t.collapsedPaths,"is-root":!1},null,8,[`key-name`,`value`,`path`,`depth`,`query`,`collapsed-paths`])])),[[w,k(n.key,n.value)]])),128))])),!h.value&&a.value?(A(),O(`div`,{key:1,class:`zm-jtv-footer`,style:_({paddingLeft:6+t.depth*12+`px`})},`]`,4)):f(``,!0),!h.value&&i.value&&!a.value?(A(),O(`div`,{key:2,class:`zm-jtv-footer`,style:_({paddingLeft:6+t.depth*12+`px`})},`}`,4)):f(``,!0)],2)):(A(),O(`div`,{key:2,class:`zm-jtv-leaf`,style:_({paddingLeft:6+t.depth*12+`px`})},[m[2]||=v(`span`,{class:`zm-jtv-toggle is-leaf`},`·`,-1),v(`span`,dn,p(t.keyName),1),m[3]||=v(`span`,{class:`zm-jtv-colon`},`:`,-1),E(t.keyName)&&N(t.keyName)?(A(),O(`span`,J,[v(`span`,null,p(N(t.keyName)?.before),1),v(`mark`,null,p(N(t.keyName)?.match),1),v(`span`,null,p(N(t.keyName)?.after),1)])):f(``,!0),v(`span`,{class:x([`zm-jtv-value`,`zm-jtv-${r.value}`])},[N(j(t.value))?(A(),O(D,{key:0},[v(`span`,null,p(N(j(t.value))?.before),1),v(`mark`,null,p(N(j(t.value))?.match),1),v(`span`,null,p(N(j(t.value))?.after),1)],64)):(A(),O(D,{key:1},[o(p(j(t.value)),1)],64))],2),M(t.value)?(A(),O(`span`,{key:1,class:`zm-jtv-thumb-wrap`,onClick:m[1]||=y(()=>{},[`stop`])},[v(`img`,{class:`zm-jtv-thumb`,src:String(t.value),alt:t.keyName,loading:`lazy`,referrerpolicy:`no-referrer`},null,8,fn),v(`a`,{class:`zm-jtv-thumb-link`,href:String(t.value),target:`_blank`,rel:`noopener noreferrer`,onClick:m[0]||=y(()=>{},[`stop`])},`open`,8,pn)])):f(``,!0)],4))}}}),hn={class:`zm-data-panel`},gn={class:`zm-data-header`},_n={class:`zm-data-title`},vn={class:`zm-data-title-meta`},yn={class:`zm-data-toolbar`},bn=[`title`],xn={key:0,width:`13`,height:`13`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},Sn={key:1,width:`13`,height:`13`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.4`,"stroke-linecap":`round`,"stroke-linejoin":`round`},Cn={key:0,class:`zm-data-paste`},wn={class:`zm-data-tabs`},Tn=[`placeholder`],En={key:0,class:`zm-data-error`},Dn={class:`zm-data-paste-actions`},On=[`disabled`],kn={class:`zm-data-tree`},An=s({__name:`DataPanel`,props:{data:{},pendingMode:{default:null}},emits:[`import`,`consumed-mode`],setup(t,{emit:n}){let i=t,a=n,s=b(()=>JSON.stringify(i.data,null,2)),c=T(``),l=T(null),u=T(!1),m=T(`json`),h=T(`idle`),g=T(new Set),_=T(``);r(()=>i.pendingMode,e=>{e&&(u.value=!0,m.value=e,a(`consumed-mode`))},{immediate:!0});async function y(){try{await navigator.clipboard.writeText(s.value),h.value=`copied`,setTimeout(()=>h.value=`idle`,1500)}catch{let e=document.createElement(`textarea`);e.value=s.value,document.body.appendChild(e),e.select();try{document.execCommand(`copy`),h.value=`copied`,setTimeout(()=>h.value=`idle`,1500)}finally{document.body.removeChild(e)}}}function C(){let e=new Blob([s.value],{type:`application/json`}),t=URL.createObjectURL(e),n=document.createElement(`a`);n.href=t,n.download=`${i.data.text||`mindmap`}.json`,n.click(),URL.revokeObjectURL(t)}function w(){l.value=null;let e=c.value.trim();if(e){if(m.value===`markdown`||m.value===`txt`){try{let t=Qe(e);a(`import`,t),c.value=``,u.value=!1}catch(e){l.value=(m.value===`txt`?`TXT 解析失败:`:`Markdown 解析失败:`)+e.message}return}try{let t=JSON.parse(e);if(!t.id||!Array.isArray(t.children)){l.value=`JSON 缺少 id 或 children 字段`;return}a(`import`,t),c.value=``,u.value=!1}catch(e){l.value=`JSON 解析失败:`+e.message}}}function E(e){return 1+e.children.reduce((e,t)=>e+E(t),0)}let D=b(()=>E(i.data)),j=b(()=>s.value.length);function M(){let e=document.createElement(`input`);e.type=`file`,e.accept=`application/json`,e.onchange=()=>{let t=e.files?.[0];if(!t)return;let n=new FileReader;n.onload=()=>{typeof n.result==`string`&&(c.value=n.result,w())},n.readAsText(t)},e.click()}return(n,r)=>(A(),O(`div`,hn,[v(`div`,gn,[v(`div`,_n,[r[8]||=v(`span`,{class:`zm-data-title-text`},`数据 JSON`,-1),v(`span`,vn,p(D.value)+` 节点 · `+p(j.value)+` chars`,1)])]),v(`div`,yn,[v(`button`,{class:x([`zm-data-btn is-icon`,{"is-success":h.value===`copied`}]),title:h.value===`copied`?`已复制`:`复制 JSON 到剪贴板`,onClick:y},[h.value===`idle`?(A(),O(`svg`,xn,[...r[9]||=[v(`rect`,{x:`9`,y:`9`,width:`13`,height:`13`,rx:`2`},null,-1),v(`path`,{d:`M5 15 H4 a2 2 0 0 1 -2 -2 V4 a2 2 0 0 1 2 -2 h9 a2 2 0 0 1 2 2 v1`},null,-1)]])):(A(),O(`svg`,Sn,[...r[10]||=[v(`polyline`,{points:`5 12 10 17 19 7`},null,-1)]])),r[11]||=v(`span`,{class:`zm-data-btn-label`},`复制`,-1)],10,bn),v(`button`,{class:`zm-data-btn is-icon`,title:`导出为 JSON 文件`,onClick:C},[...r[12]||=[k(`<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4 V15"></path><polyline points="7 9 12 4 17 9"></polyline><path d="M4 19 H20"></path></svg><span class="zm-data-btn-label">导出</span>`,2)]]),v(`button`,{class:`zm-data-btn is-icon`,title:`从 JSON 文件导入`,onClick:M},[...r[13]||=[k(`<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 15 V4"></path><polyline points="7 9 12 4 17 9"></polyline><path d="M4 19 H20"></path></svg><span class="zm-data-btn-label">导入</span>`,2)]]),v(`button`,{class:x([`zm-data-btn is-icon`,{"is-active":u.value}]),title:`粘贴 JSON 或 Markdown 替换当前数据`,onClick:r[0]||=e=>u.value=!u.value},[...r[14]||=[k(`<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 4 H15 V8 H9 Z"></path><path d="M9 8 H4 V20 H9"></path><path d="M15 8 H20 V20 H15"></path></svg><span class="zm-data-btn-label">粘贴</span>`,2)]],2),r[16]||=v(`div`,{class:`zm-data-toolbar-spacer`},null,-1),v(`div`,{class:x([`zm-data-search`,{"is-active":_.value.length>0}])},[r[15]||=v(`svg`,{width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`circle`,{cx:`11`,cy:`11`,r:`7`}),v(`line`,{x1:`20`,y1:`20`,x2:`16`,y2:`16`})],-1),d(v(`input`,{"onUpdate:modelValue":r[1]||=e=>_.value=e,type:`text`,placeholder:`过滤 (键 / 值)`,spellcheck:`false`},null,512),[[S,_.value]]),_.value?(A(),O(`button`,{key:0,class:`zm-data-search-clear`,title:`清空过滤`,onClick:r[2]||=e=>_.value=``},`×`)):f(``,!0)],2)]),u.value?(A(),O(`div`,Cn,[v(`div`,wn,[v(`button`,{class:x([`zm-data-tab`,{"is-active":m.value===`json`}]),onClick:r[3]||=e=>m.value=`json`},`JSON`,2),v(`button`,{class:x([`zm-data-tab`,{"is-active":m.value===`markdown`}]),onClick:r[4]||=e=>m.value=`markdown`},`Markdown`,2)]),d(v(`textarea`,{"onUpdate:modelValue":r[5]||=e=>c.value=e,placeholder:m.value===`json`?`paste a JSON tree to replace current data`:`paste markdown - # / ## / ### become nodes`,spellcheck:`false`},null,8,Tn),[[S,c.value]]),l.value?(A(),O(`div`,En,p(l.value),1)):f(``,!0),v(`div`,Dn,[v(`button`,{class:`zm-data-btn is-primary`,disabled:!c.value,onClick:w},`应用`,8,On),v(`button`,{class:`zm-data-btn`,onClick:r[6]||=e=>{c.value=``,l.value=null}},`清空`),v(`button`,{class:`zm-data-btn`,onClick:r[7]||=e=>u.value=!1},`关闭`)])])):f(``,!0),v(`div`,kn,[e(mn,{value:t.data,query:_.value,"collapsed-paths":g.value},null,8,[`value`,`query`,`collapsed-paths`])]),r[17]||=v(`div`,{class:`zm-data-footer`},[v(`span`,{class:`zm-data-footer-hint`},[o(` 图片支持 `),v(`code`,null,`data:image/...`),o(` / `),v(`code`,null,`https://...`),o(` / `),v(`code`,null,`/imgs/foo.png`),o(` (同源)。本地 `),v(`code`,null,`file://`),o(` 路径被浏览器拒绝。 `)])],-1)]))}}),jn={class:`zm-md-panel`},Mn={key:0,class:`zm-md-error`},Y={class:`zm-md-split`},Nn={class:`zm-md-edit`},Pn={class:`zm-md-preview`},Fn={class:`zm-md-preview-body`},In={class:`zm-md-footer`},Ln=[`disabled`],Rn=`# flow-mindmap 思维导图
16
16
 
17
17
  [GitHub 仓库](https://github.com/xz333221/flow-mindmap)
18
18
 
@@ -53,7 +53,7 @@ import{Cn as e,Fn as t,Hn as n,Jn as r,Ln as i,Mn as a,Sn as o,Tn as s,Un as c,V
53
53
  [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
54
54
  `,zn=s({__name:`MarkdownPanel`,props:{data:{}},emits:[`import`],setup(t,{emit:n}){let i=t,o=n,s=T($e(i.data)),c=T(null),l=T(null),u=b(()=>{try{let e=Qe(s.value||``);return c.value=null,e}catch(e){return c.value=e.message,{id:`preview_fallback`,text:s.value||`(空)`,children:[]}}}),m=b(()=>ze(u.value)),h=null;r(s,()=>{h&&clearTimeout(h),h=setTimeout(()=>l.value?.resetView(),250)});function g(){try{let e=Qe(s.value||``);c.value=null,o(`import`,e)}catch(e){c.value=e.message}}function _(){s.value=$e(i.data),c.value=null,a(()=>l.value?.resetView())}function y(){s.value=``,c.value=null,a(()=>l.value?.resetView())}function x(){let e=document.createElement(`input`);e.type=`file`,e.accept=`.md,text/markdown,text/plain`,e.onchange=()=>{let t=e.files?.[0];if(!t)return;let n=new FileReader;n.onload=()=>{typeof n.result==`string`&&(s.value=n.result,c.value=null,a(()=>l.value?.resetView()))},n.readAsText(t)},e.click()}function C(){let e=new Blob([s.value],{type:`text/markdown;charset=utf-8`}),t=URL.createObjectURL(e),n=document.createElement(`a`);n.href=t,n.download=`${(i.data.text||`mindmap`).trim()||`mindmap`}.md`,n.click(),URL.revokeObjectURL(t)}function w(){s.value=Rn,c.value=null,a(()=>l.value?.resetView())}return(t,n)=>(A(),O(`div`,jn,[v(`div`,{class:`zm-md-toolbar`},[v(`button`,{class:`zm-md-btn`,title:`从 .md 文件加载`,onClick:x},[...n[1]||=[v(`svg`,{width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`path`,{d:`M12 4 V15`}),v(`polyline`,{points:`7 9 12 4 17 9`}),v(`path`,{d:`M4 19 H20`})],-1),v(`span`,null,`加载 .md`,-1)]]),v(`button`,{class:`zm-md-btn`,title:`把当前导图导出为 .md`,onClick:C},[...n[2]||=[v(`svg`,{width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},[v(`path`,{d:`M12 15 V4`}),v(`polyline`,{points:`7 9 12 4 17 9`}),v(`path`,{d:`M4 19 H20`})],-1),v(`span`,null,`导出 .md`,-1)]]),n[3]||=v(`span`,{class:`zm-md-spacer`},null,-1),v(`button`,{class:`zm-md-btn`,title:`用示例内容填充`,onClick:w},`示例`),v(`button`,{class:`zm-md-btn`,title:`覆盖为当前导图`,onClick:_},`同步`),v(`button`,{class:`zm-md-btn`,title:`清空`,onClick:y},`清空`)]),c.value?(A(),O(`div`,Mn,p(c.value),1)):f(``,!0),v(`div`,Y,[v(`div`,Nn,[n[4]||=v(`div`,{class:`zm-md-pane-header`},[v(`span`,null,`Markdown`),v(`span`,{class:`zm-md-hint`},`# 根 · ## 一级 · ### 二级 …`)],-1),d(v(`textarea`,{"onUpdate:modelValue":n[0]||=e=>s.value=e,class:`zm-md-textarea`,spellcheck:`false`,placeholder:`# 标题…`},null,512),[[S,s.value]])]),v(`div`,Pn,[n[5]||=v(`div`,{class:`zm-md-pane-header`},[v(`span`,null,`导图预览`),v(`span`,{class:`zm-md-hint`},`只读`)],-1),v(`div`,Fn,[e(ad,{ref_key:`previewRef`,ref:l,data:m.value,readonly:``,"preview-mode":``},null,8,[`data`])])])]),v(`div`,In,[v(`button`,{class:`zm-md-btn is-primary`,disabled:!s.value.trim(),onClick:g},`应用到导图`,8,Ln)])]))}}),Bn={class:`zm-settings-panel`},Vn={class:`zm-settings-section`},Hn={class:`zm-settings-field`},Un={class:`zm-settings-control`},Wn={class:`zm-color-input-wrap`},Gn=[`value`],Kn={class:`zm-color-input-text`},qn={class:`zm-swatch-row zm-swatch-row--compact`},Jn=[`title`,`onClick`],Yn={class:`zm-settings-field`},Xn=[`value`],Zn={class:`zm-slider`},Qn=[`value`],$n={class:`zm-settings-field`},er=[`value`],tr={class:`zm-slider`},nr=[`value`],rr={class:`zm-settings-field zm-line-style-field`},ir={class:`zm-line-style-group`},ar=[`title`,`onClick`],or=[`viewBox`],sr={key:0,d:`M 0 12 Q 14 2, 28 12`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`},cr={key:1,d:`M 0 10 L 12 10 Q 16 10 16 6 L 16 4 L 28 4`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},lr={key:2,d:`M 0 10 L 16 10 L 16 4 L 28 4`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},ur={key:3,d:`M 0 12 C 8 0, 20 0, 28 12`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`},dr={key:4,x1:`0`,y1:`12`,x2:`28`,y2:`12`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`},fr={class:`zm-line-style-label`},pr={class:`zm-settings-field zm-line-style-field`},mr={class:`zm-line-style-group`},hr=[`title`,`onClick`],gr=[`viewBox`],_r={key:0,d:`M 0 12 Q 14 2, 28 12`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`},vr={key:1,d:`M 0 10 L 12 10 Q 16 10 16 6 L 16 4 L 28 4`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},yr={key:2,d:`M 0 10 L 16 10 L 16 4 L 28 4`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`,"stroke-linejoin":`round`},br={key:3,d:`M 0 12 C 8 0, 20 0, 28 12`,fill:`none`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`},xr={key:4,x1:`0`,y1:`12`,x2:`28`,y2:`12`,stroke:`currentColor`,"stroke-width":`2.2`,"stroke-linecap":`round`},Sr={class:`zm-line-style-label`},Cr={key:0,class:`zm-settings-field`},wr={class:`zm-settings-label`},Tr={class:`zm-settings-sub`},Er=[`value`],Dr={key:1,class:`zm-slider`},Or=[`value`],kr={class:`zm-settings-field zm-line-style-field`},Ar={class:`zm-line-style-group`},jr=[`title`,`onClick`],Mr={viewBox:`0 0 28 18`,width:`28`,height:`18`,preserveAspectRatio:`none`},Nr={key:0,d:`M 8 9 L 0 9 M 20 9 L 28 9`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`},Pr={key:1,d:`M 14 9 L 0 9 M 14 9 L 28 9`,fill:`none`,stroke:`currentColor`,"stroke-width":`2`,"stroke-linecap":`round`},Fr={key:2,d:`M 8 7 L 0 4 M 8 9 L 0 9 M 8 11 L 0 14 M 20 7 L 28 4 M 20 9 L 28 9 M 20 11 L 28 14`,fill:`none`,stroke:`currentColor`,"stroke-width":`1.5`,"stroke-linecap":`round`},Ir={class:`zm-line-style-label`},Lr={class:`zm-settings-field`},Rr={key:2,class:`zm-palette-picker`},zr={class:`zm-palette-list`},Br=[`onClick`],Vr={class:`zm-palette-option-name`},Hr={class:`zm-palette-option-swatches`},Ur={key:0,class:`zm-palette-custom-editor`},Wr=[`value`],Gr={class:`zm-palette-custom-actions`},Kr={class:`zm-settings-field`},qr={key:3,class:`zm-settings-field`},Jr={class:`zm-settings-label`},Yr={class:`zm-settings-sub`},Xr=[`value`],Zr={key:4,class:`zm-slider`},Qr=[`value`],$r={key:5,class:`zm-settings-field`},ei={class:`zm-settings-field`},ti={class:`zm-settings-label`},ni={class:`zm-settings-sub`},ri=[`value`],ii={class:`zm-slider`},ai=[`value`],oi={class:`zm-settings-field`},si={class:`zm-settings-preview`},ci={viewBox:`0 0 200 70`,width:`100%`,height:`70`,preserveAspectRatio:`none`},li=[`x1`,`y1`,`x2`,`y2`,`stroke`,`stroke-width`],ui={key:0,class:`zm-settings-section`},di={class:`zm-settings-section-title`},fi={key:0,class:`zm-settings-section-sub`},pi={class:`zm-settings-field`},mi={class:`zm-settings-value-tag`},hi={class:`zm-swatch-row`},gi=[`title`,`onClick`],_i={class:`zm-swatch zm-swatch--custom`,title:`自定义颜色`},vi=[`value`],yi={class:`zm-settings-field`},bi={class:`zm-settings-value-tag`},xi={class:`zm-swatch-row`},Si=[`title`,`onClick`],Ci={class:`zm-swatch zm-swatch--custom`,title:`自定义颜色`},wi=[`value`],Ti={class:`zm-settings-field`},Ei=[`value`],Di=[`value`],Oi={class:`zm-settings-field`},ki=[`value`],Ai={class:`zm-slider`},ji=[`value`],Mi={class:`zm-settings-section zm-settings-section--actions`},Ni=((e,t)=>{let n=e.__vccOpts||e;for(let[e,r]of t)n[e]=r;return n})(s({__name:`SettingsPanel`,props:{settings:{},hasSelection:{type:Boolean},selectedNodeText:{},nodeStyle:{}},emits:[`update:settings`,`update:nodeStyle`,`reset`],setup(e,{emit:t}){let n=e,r=t;function i(e,t){r(`update:settings`,{[e]:t})}let a=[{value:`arc`,label:`圆弧`,viewBox:`0 0 28 14`},{value:`rounded-elbow`,label:`圆角折线`,viewBox:`0 0 28 14`},{value:`elbow`,label:`折线`,viewBox:`0 0 28 14`},{value:`straight`,label:`直线`,viewBox:`0 0 28 14`},{value:`curve`,label:`S曲线`,viewBox:`0 0 28 14`}],s=a,c=[{value:`edge`,label:`左右中点`},{value:`center`,label:`节点正中心`},{value:`proportional`,label:`按比例计算`}],u=[{value:100,label:`100`},{value:200,label:`200`},{value:300,label:`300`},{value:400,label:`400 (常规)`},{value:500,label:`500`},{value:600,label:`600 (半粗)`},{value:700,label:`700 (粗体)`},{value:800,label:`800`},{value:900,label:`900`}];function d(e){r(`update:nodeStyle`,e)}let h=b(()=>[...Me,...n.settings.customPalettes]),g=m({});function y(e){return g[e.id]===void 0&&(g[e.id]=e.colors.join(`
55
55
  `)),g[e.id]}function S(e){let t=Pe(g[e.id]??``);if(t.length===0){g[e.id]=e.colors.join(`
56
- `);return}r(`update:settings`,{customPalettes:n.settings.customPalettes.map(n=>n.id===e.id?{...n,colors:t}:n)})}function w(){let e=h.value.find(e=>e.id===n.settings.branchPaletteId),t=e?[...e.colors]:[...Me[0].colors],i=`custom-`,a=i+(n.settings.customPalettes.length+1);for(;Me.some(e=>e.id===a)||n.settings.customPalettes.some(e=>e.id===a);)a=i+Math.random().toString(36).slice(2,7);let o={id:a,name:`我的配色 ${n.settings.customPalettes.length+1}`,colors:t};r(`update:settings`,{customPalettes:[...n.settings.customPalettes,o],branchPaletteId:a}),g[a]=t.join(`
56
+ `);return}let i=n.settings.customPalettes.map(n=>n.id===e.id?{...n,colors:t}:n);r(`update:settings`,{customPalettes:i})}function w(){let e=h.value.find(e=>e.id===n.settings.branchPaletteId),t=e?[...e.colors]:[...Me[0].colors],i=`custom-`,a=i+(n.settings.customPalettes.length+1);for(;Me.some(e=>e.id===a)||n.settings.customPalettes.some(e=>e.id===a);)a=i+Math.random().toString(36).slice(2,7);let o={id:a,name:`我的配色 ${n.settings.customPalettes.length+1}`,colors:t};r(`update:settings`,{customPalettes:[...n.settings.customPalettes,o],branchPaletteId:a}),g[a]=t.join(`
57
57
  `)}function T(e){let t=n.settings.customPalettes.filter(t=>t.id!==e.id),i=n.settings.branchPaletteId===e.id?`default`:n.settings.branchPaletteId;r(`update:settings`,{customPalettes:t,...i===n.settings.branchPaletteId?{}:{branchPaletteId:i}}),delete g[e.id]}let E=[`#f87171`,`#fb923c`,`#fbbf24`,`#a3e635`,`#34d399`,`#22d3ee`,`#818cf8`,`#c084fc`,`#1e2937`,`#f8fafc`,`#94a3b8`],k=[`#f8fafc`,`#ffffff`,`#e2e8f0`,`#1e2937`,`#0f172a`,`#fef3c7`,`#dbeafe`,`#dcfce7`,`#fce7f3`,`#f1f5f9`],j=[0,1,2,3],M=[`#f87171`,`#fb923c`,`#34d399`,`#818cf8`];function N(e,t,n,r){if(t<=1)return n;let i=e/(t-1);return n+(r-n)*i}function P(e,t,n,r){let i=t*r**+e;return Math.max(n,i)}let ee=b(()=>{let e=n.settings.lineWidthStart,t=n.settings.lineWidthEnd,r=n.settings.taperedEdge,i=j.length,a=h.value.find(e=>e.id===n.settings.branchPaletteId),o=a&&a.colors.length?a.colors:M;return j.map((a,s)=>{let c=10+s*60/(i-1);return{x1:8,y1:c,x2:192,y2:c,w:r?P(a,e,t,n.settings.lineWidthTaper):N(a,i,e,t),color:n.settings.rainbowBranch?o[s%o.length]:`#94a3b8`}})});return(t,n)=>(A(),O(`div`,Bn,[v(`section`,Vn,[n[52]||=v(`h4`,{class:`zm-settings-section-title`},`画布`,-1),v(`div`,Hn,[n[27]||=v(`span`,{class:`zm-settings-label`},`画布背景色`,-1),v(`div`,Un,[v(`label`,Wn,[v(`input`,{type:`color`,class:`zm-color-input`,value:e.settings.canvasBg||`#f8fafc`,onInput:n[0]||=e=>i(`canvasBg`,e.target.value)},null,40,Gn),v(`span`,Kn,p(e.settings.canvasBg||`默认`),1)])])]),v(`div`,qn,[(A(),O(D,null,l(k,t=>v(`button`,{key:`cbg-`+t,class:x([`zm-swatch`,{"is-active":(e.settings.canvasBg||`#f8fafc`)===t}]),style:_({background:t}),title:t,onClick:e=>i(`canvasBg`,t)},null,14,Jn)),64)),v(`button`,{class:`zm-swatch is-reset`,title:`恢复默认`,onClick:n[1]||=e=>i(`canvasBg`,void 0)},`∅`)]),n[53]||=v(`div`,{class:`zm-settings-divider`},null,-1),v(`div`,Yn,[n[28]||=v(`span`,{class:`zm-settings-label`},`线条粗端 (根部)`,-1),v(`input`,{class:`zm-settings-number`,type:`number`,step:`0.2`,value:e.settings.lineWidthStart,onChange:n[2]||=e=>i(`lineWidthStart`,parseFloat(e.target.value)||0)},null,40,Xn)]),v(`div`,Zn,[n[29]||=v(`div`,{class:`zm-slider-track`},null,-1),v(`input`,{type:`range`,min:`0.4`,max:`20`,step:`0.2`,value:e.settings.lineWidthStart,onInput:n[3]||=e=>i(`lineWidthStart`,parseFloat(e.target.value))},null,40,Qn)]),v(`div`,$n,[n[30]||=v(`span`,{class:`zm-settings-label`},`线条细端 (子端)`,-1),v(`input`,{class:`zm-settings-number`,type:`number`,step:`0.2`,value:e.settings.lineWidthEnd,onChange:n[4]||=e=>i(`lineWidthEnd`,parseFloat(e.target.value)||0)},null,40,er)]),v(`div`,tr,[n[31]||=v(`div`,{class:`zm-slider-track`},null,-1),v(`input`,{type:`range`,min:`0.1`,max:`6`,step:`0.1`,value:e.settings.lineWidthEnd,onInput:n[5]||=e=>i(`lineWidthEnd`,parseFloat(e.target.value))},null,40,nr)]),n[54]||=v(`div`,{class:`zm-settings-divider`},null,-1),v(`div`,rr,[n[32]||=v(`span`,{class:`zm-settings-label`},`根节点线条`,-1),v(`div`,ir,[(A(!0),O(D,null,l(C(s),t=>(A(),O(`button`,{key:t.value,class:x([`zm-line-style-btn`,{"is-on":e.settings.rootLineStyle===t.value}]),title:t.label,onClick:e=>i(`rootLineStyle`,t.value)},[(A(),O(`svg`,{viewBox:t.viewBox,width:`28`,height:`14`,preserveAspectRatio:`none`},[t.value===`arc`?(A(),O(`path`,sr)):t.value===`rounded-elbow`?(A(),O(`path`,cr)):t.value===`elbow`?(A(),O(`path`,lr)):t.value===`curve`?(A(),O(`path`,ur)):(A(),O(`line`,dr))],8,or)),v(`span`,fr,p(t.label),1)],10,ar))),128))])]),v(`div`,pr,[n[33]||=v(`span`,{class:`zm-settings-label`},`非根节点线条`,-1),v(`div`,mr,[(A(),O(D,null,l(a,t=>v(`button`,{key:t.value,class:x([`zm-line-style-btn`,{"is-on":e.settings.lineStyle===t.value}]),title:t.label,onClick:e=>i(`lineStyle`,t.value)},[(A(),O(`svg`,{viewBox:t.viewBox,width:`28`,height:`14`,preserveAspectRatio:`none`},[t.value===`arc`?(A(),O(`path`,_r)):t.value===`rounded-elbow`?(A(),O(`path`,vr)):t.value===`elbow`?(A(),O(`path`,yr)):t.value===`curve`?(A(),O(`path`,br)):(A(),O(`line`,xr))],8,gr)),v(`span`,Sr,p(t.label),1)],10,hr)),64))])]),e.settings.lineStyle===`rounded-elbow`||e.settings.rootLineStyle===`rounded-elbow`?(A(),O(`div`,Cr,[v(`span`,wr,[n[34]||=o(`圆角大小 `,-1),v(`span`,Tr,p(e.settings.elbowRadius)+`px`,1)]),v(`input`,{class:`zm-settings-number`,type:`number`,step:`1`,min:`2`,max:`40`,value:e.settings.elbowRadius,onChange:n[6]||=e=>i(`elbowRadius`,parseFloat(e.target.value)||20)},null,40,Er)])):f(``,!0),e.settings.lineStyle===`rounded-elbow`||e.settings.rootLineStyle===`rounded-elbow`?(A(),O(`div`,Dr,[n[35]||=v(`div`,{class:`zm-slider-track`},null,-1),v(`input`,{type:`range`,min:`2`,max:`40`,step:`1`,value:e.settings.elbowRadius,onInput:n[7]||=e=>i(`elbowRadius`,parseFloat(e.target.value))},null,40,Or)])):f(``,!0),v(`div`,kr,[n[37]||=v(`span`,{class:`zm-settings-label`},`线条起点`,-1),v(`div`,Ar,[(A(),O(D,null,l(c,t=>v(`button`,{key:t.value,class:x([`zm-line-style-btn`,{"is-on":e.settings.lineOrigin===t.value}]),title:t.label,onClick:e=>i(`lineOrigin`,t.value)},[(A(),O(`svg`,Mr,[n[36]||=v(`rect`,{x:`8`,y:`6`,width:`12`,height:`6`,rx:`2`,fill:`none`,stroke:`currentColor`,"stroke-width":`1.2`,opacity:`0.5`},null,-1),t.value===`edge`?(A(),O(`path`,Nr)):t.value===`center`?(A(),O(`path`,Pr)):(A(),O(`path`,Fr))])),v(`span`,Ir,p(t.label),1)],10,jr)),64))])]),v(`div`,Lr,[n[39]||=v(`span`,{class:`zm-settings-label`},`一级分支彩虹色`,-1),v(`button`,{class:x([`zm-toggle`,{"is-on":e.settings.rainbowBranch}]),onClick:n[8]||=t=>i(`rainbowBranch`,!e.settings.rainbowBranch)},[...n[38]||=[v(`span`,{class:`zm-toggle-knob`},null,-1)]],2)]),e.settings.rainbowBranch?(A(),O(`div`,Rr,[n[40]||=v(`div`,{class:`zm-settings-field`},[v(`span`,{class:`zm-settings-label`},`配色方案`)],-1),v(`div`,zr,[(A(!0),O(D,null,l(h.value,t=>(A(),O(`button`,{key:t.id,class:x([`zm-palette-option`,{"is-active":e.settings.branchPaletteId===t.id}]),onClick:e=>i(`branchPaletteId`,t.id)},[v(`span`,Vr,p(t.name),1),v(`span`,Hr,[(A(!0),O(D,null,l(t.colors,(e,t)=>(A(),O(`span`,{key:t,class:`zm-palette-option-swatch`,style:_({background:e})},null,4))),128))])],10,Br))),128))]),e.settings.customPalettes.find(t=>t.id===e.settings.branchPaletteId)?(A(),O(`div`,Ur,[v(`textarea`,{class:`zm-palette-textarea`,rows:`3`,spellcheck:`false`,placeholder:`一行一个 hex,例如 #f87171`,value:y(e.settings.customPalettes.find(t=>t.id===e.settings.branchPaletteId)),onInput:n[9]||=t=>g[e.settings.customPalettes.find(t=>t.id===e.settings.branchPaletteId).id]=t.target.value},null,40,Wr),v(`div`,Gr,[v(`button`,{type:`button`,class:`zm-data-btn is-primary`,onClick:n[10]||=t=>S(e.settings.customPalettes.find(t=>t.id===e.settings.branchPaletteId))},`保存`),v(`button`,{type:`button`,class:`zm-data-btn`,onClick:n[11]||=t=>T(e.settings.customPalettes.find(t=>t.id===e.settings.branchPaletteId))},`删除`)])])):f(``,!0),v(`button`,{type:`button`,class:`zm-palette-add`,onClick:w},`+ 新建配色`)])):f(``,!0),n[55]||=v(`div`,{class:`zm-settings-divider`},null,-1),v(`div`,Kr,[n[42]||=v(`span`,{class:`zm-settings-label`},`每条连线独立渐变`,-1),v(`button`,{class:x([`zm-toggle`,{"is-on":e.settings.taperedEdge}]),onClick:n[12]||=t=>i(`taperedEdge`,!e.settings.taperedEdge)},[...n[41]||=[v(`span`,{class:`zm-toggle-knob`},null,-1)]],2)]),e.settings.taperedEdge?(A(),O(`div`,qr,[v(`span`,Jr,[n[43]||=o(`层级衰减 `,-1),v(`span`,Yr,p(Math.round(e.settings.lineWidthTaper*100))+`%`,1)]),v(`input`,{class:`zm-settings-number`,type:`number`,step:`0.05`,min:`0.1`,max:`1`,value:e.settings.lineWidthTaper,onChange:n[13]||=e=>i(`lineWidthTaper`,parseFloat(e.target.value)||.67)},null,40,Xr)])):f(``,!0),e.settings.taperedEdge?(A(),O(`div`,Zr,[n[44]||=v(`div`,{class:`zm-slider-track`},null,-1),v(`input`,{type:`range`,min:`0.1`,max:`1`,step:`0.01`,value:e.settings.lineWidthTaper,onInput:n[14]||=e=>i(`lineWidthTaper`,parseFloat(e.target.value))},null,40,Qr)])):f(``,!0),e.settings.taperedEdge?(A(),O(`div`,$r,[n[46]||=v(`span`,{class:`zm-settings-label`},`非根节点相同粗细`,-1),v(`button`,{class:x([`zm-toggle`,{"is-on":e.settings.uniformLineWidth}]),onClick:n[15]||=t=>i(`uniformLineWidth`,!e.settings.uniformLineWidth)},[...n[45]||=[v(`span`,{class:`zm-toggle-knob`},null,-1)]],2)])):f(``,!0),v(`div`,ei,[v(`span`,ti,[n[47]||=o(`一级分支间距 `,-1),v(`span`,ni,p(e.settings.branchGap)+`px`,1)]),v(`input`,{class:`zm-settings-number`,type:`number`,step:`2`,min:`0`,max:`80`,value:e.settings.branchGap,onChange:n[16]||=e=>i(`branchGap`,parseFloat(e.target.value)||0)},null,40,ri)]),v(`div`,ii,[n[48]||=v(`div`,{class:`zm-slider-track`},null,-1),v(`input`,{type:`range`,min:`0`,max:`80`,step:`2`,value:e.settings.branchGap,onInput:n[17]||=e=>i(`branchGap`,parseFloat(e.target.value))},null,40,ai)]),v(`div`,oi,[n[50]||=v(`span`,{class:`zm-settings-label`},`显示节点序号`,-1),v(`button`,{class:x([`zm-toggle`,{"is-on":e.settings.showOrderBadge}]),onClick:n[18]||=t=>i(`showOrderBadge`,!e.settings.showOrderBadge)},[...n[49]||=[v(`span`,{class:`zm-toggle-knob`},null,-1)]],2)]),v(`div`,si,[(A(),O(`svg`,ci,[(A(!0),O(D,null,l(ee.value,(t,n)=>(A(),O(`line`,{key:n,x1:t.x1,y1:t.y1,x2:t.x2,y2:t.y2,stroke:e.settings.rainbowBranch?t.color:`#94a3b8`,"stroke-width":t.w,"stroke-linecap":`butt`},null,8,li))),128))])),n[51]||=v(`div`,{class:`zm-settings-preview-labels`},[v(`span`,null,`根`),v(`span`,null,`1级`),v(`span`,null,`2级`),v(`span`,null,`3级`)],-1)])]),e.hasSelection?(A(),O(`section`,ui,[v(`h4`,di,[n[56]||=o(` 节点 `,-1),e.selectedNodeText?(A(),O(`span`,fi,`"`+p(e.selectedNodeText)+`"`,1)):f(``,!0)]),v(`div`,pi,[n[57]||=v(`span`,{class:`zm-settings-label`},`背景颜色`,-1),v(`span`,mi,p(e.nodeStyle?.bg||`默认`),1)]),v(`div`,hi,[(A(),O(D,null,l(E,t=>v(`button`,{key:`bg-`+t,class:x([`zm-swatch`,{"is-active":e.nodeStyle?.bg===t}]),style:_({background:t}),title:t,onClick:e=>d({bg:t})},null,14,gi)),64)),v(`label`,_i,[v(`input`,{type:`color`,value:e.nodeStyle?.bg||`#ffffff`,onInput:n[19]||=e=>d({bg:e.target.value})},null,40,vi)]),v(`button`,{class:`zm-swatch is-reset`,title:`清除`,onClick:n[20]||=e=>d({bg:void 0})},`∅`)]),v(`div`,yi,[n[58]||=v(`span`,{class:`zm-settings-label`},`文字颜色`,-1),v(`span`,bi,p(e.nodeStyle?.textColor||`默认`),1)]),v(`div`,xi,[(A(),O(D,null,l(E,t=>v(`button`,{key:`fg-`+t,class:x([`zm-swatch`,{"is-active":e.nodeStyle?.textColor===t}]),style:_({background:t}),title:t,onClick:e=>d({textColor:t})},null,14,Si)),64)),v(`label`,Ci,[v(`input`,{type:`color`,value:e.nodeStyle?.textColor||`#1e2937`,onInput:n[21]||=e=>d({textColor:e.target.value})},null,40,wi)]),v(`button`,{class:`zm-swatch is-reset`,title:`清除`,onClick:n[22]||=e=>d({textColor:void 0})},`∅`)]),n[62]||=v(`div`,{class:`zm-settings-divider`},null,-1),v(`div`,Ti,[n[59]||=v(`span`,{class:`zm-settings-label`},`字重`,-1),v(`select`,{class:`zm-select`,value:e.nodeStyle?.fontWeight??400,onChange:n[23]||=e=>d({fontWeight:parseInt(e.target.value)})},[(A(),O(D,null,l(u,e=>v(`option`,{key:e.value,value:e.value},p(e.label),9,Di)),64))],40,Ei)]),v(`div`,Oi,[n[60]||=v(`span`,{class:`zm-settings-label`},`文字大小`,-1),v(`input`,{class:`zm-settings-number`,type:`number`,step:`1`,min:`8`,max:`48`,value:e.nodeStyle?.fontSize??14,onChange:n[24]||=e=>d({fontSize:parseInt(e.target.value)||14})},null,40,ki)]),v(`div`,Ai,[n[61]||=v(`div`,{class:`zm-slider-track`},null,-1),v(`input`,{type:`range`,min:`8`,max:`48`,step:`1`,value:e.nodeStyle?.fontSize??14,onInput:n[25]||=e=>d({fontSize:parseInt(e.target.value)})},null,40,ji)]),n[63]||=v(`p`,{class:`zm-settings-hint`},`仅作用于当前节点,不影响子节点。`,-1)])):f(``,!0),v(`section`,Mi,[v(`button`,{class:`zm-settings-reset`,onClick:n[26]||=e=>r(`reset`)},`恢复默认设置`)])]))}}),[[`__scopeId`,`data-v-ed1e759c`]]),Pi=20;function Fi(e,t){e.style.height=`auto`;let n=t.minRows*Pi,r=t.maxRows>0?t.maxRows*Pi:1/0,i=Math.max(n,Math.min(r,e.scrollHeight));e.style.height=i+`px`,e.style.overflowY=e.scrollHeight>r?`auto`:`hidden`}function Ii(e,n={}){let o={minRows:n.minRows??3,maxRows:n.maxRows??12};function s(){let t=e.value;t&&Fi(t,o)}function c(){s()}i(async()=>{await a();let t=e.value;t&&(t.addEventListener(`input`,c),s())}),r(()=>e.value?.value,()=>s()),t(()=>{let t=e.value;t&&t.removeEventListener(`input`,c)})}function Li(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,`default`)?e.default:e}function Ri(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw Error(`map is read-only`)}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw Error(`set is read-only`)}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(t=>{let n=e[t],r=typeof n;(r===`object`||r===`function`)&&!Object.isFrozen(n)&&Ri(n)}),e}var zi=class{constructor(e){e.data===void 0&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}};function Bi(e){return e.replace(/&/g,`&amp;`).replace(/</g,`&lt;`).replace(/>/g,`&gt;`).replace(/"/g,`&quot;`).replace(/'/g,`&#x27;`)}function Vi(e,...t){let n=Object.create(null);for(let t in e)n[t]=e[t];return t.forEach(function(e){for(let t in e)n[t]=e[t]}),n}var Hi=`</span>`,Ui=e=>!!e.scope,Wi=(e,{prefix:t})=>{if(e.startsWith(`language:`))return e.replace(`language:`,`language-`);if(e.includes(`.`)){let n=e.split(`.`);return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${`_`.repeat(t+1)}`)].join(` `)}return`${t}${e}`},Gi=class{constructor(e,t){this.buffer=``,this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=Bi(e)}openNode(e){if(!Ui(e))return;let t=Wi(e.scope,{prefix:this.classPrefix});this.span(t)}closeNode(e){Ui(e)&&(this.buffer+=Hi)}value(){return this.buffer}span(e){this.buffer+=`<span class="${e}">`}},Ki=(e={})=>{let t={children:[]};return Object.assign(t,e),t},qi=class e{constructor(){this.rootNode=Ki(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){let t=Ki({scope:e});this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return typeof t==`string`?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(t){typeof t!=`string`&&t.children&&(t.children.every(e=>typeof e==`string`)?t.children=[t.children.join(``)]:t.children.forEach(t=>{e._collapse(t)}))}},Ji=class extends qi{constructor(e){super(),this.options=e}addText(e){e!==``&&this.add(e)}startScope(e){this.openNode(e)}endScope(){this.closeNode()}__addSublanguage(e,t){let n=e.root;t&&(n.scope=`language:${t}`),this.add(n)}toHTML(){return new Gi(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}};function Yi(e){return e?typeof e==`string`?e:e.source:null}function Xi(e){return $i(`(?=`,e,`)`)}function Zi(e){return $i(`(?:`,e,`)*`)}function Qi(e){return $i(`(?:`,e,`)?`)}function $i(...e){return e.map(e=>Yi(e)).join(``)}function ea(e){let t=e[e.length-1];return typeof t==`object`&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function ta(...e){return`(`+(ea(e).capture?``:`?:`)+e.map(e=>Yi(e)).join(`|`)+`)`}function na(e){return RegExp(e.toString()+`|`).exec(``).length-1}function ra(e,t){let n=e&&e.exec(t);return n&&n.index===0}var ia=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function aa(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;let t=n,r=Yi(e),i=``;for(;r.length>0;){let e=ia.exec(r);if(!e){i+=r;break}i+=r.substring(0,e.index),r=r.substring(e.index+e[0].length),e[0][0]===`\\`&&e[1]?i+=`\\`+String(Number(e[1])+t):(i+=e[0],e[0]===`(`&&n++)}return i}).map(e=>`(${e})`).join(t)}var oa=/\b\B/,sa=`[a-zA-Z]\\w*`,ca=`[a-zA-Z_]\\w*`,la=`\\b\\d+(\\.\\d+)?`,ua=`(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)`,da=`\\b(0b[01]+)`,fa=`!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~`,pa=(e={})=>{let t=/^#![ ]*\//;return e.binary&&(e.begin=$i(t,/.*\b/,e.binary,/\b.*/)),Vi({scope:`meta`,begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{e.index!==0&&t.ignoreMatch()}},e)},ma={begin:`\\\\[\\s\\S]`,relevance:0},ha={scope:`string`,begin:`'`,end:`'`,illegal:`\\n`,contains:[ma]},ga={scope:`string`,begin:`"`,end:`"`,illegal:`\\n`,contains:[ma]},_a={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},va=function(e,t,n={}){let r=Vi({scope:`comment`,begin:e,end:t,contains:[]},n);r.contains.push({scope:`doctag`,begin:`[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)`,end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});let i=ta(`I`,`a`,`is`,`so`,`us`,`to`,`at`,`if`,`in`,`it`,`on`,/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return r.contains.push({begin:$i(/[ ]+/,`(`,i,/[.]?[:]?([.][ ]|[ ])/,`){3}`)}),r},ya=va(`//`,`$`),ba=va(`/\\*`,`\\*/`),xa=va(`#`,`$`),Sa=Object.freeze({__proto__:null,APOS_STRING_MODE:ha,BACKSLASH_ESCAPE:ma,BINARY_NUMBER_MODE:{scope:`number`,begin:da,relevance:0},BINARY_NUMBER_RE:da,COMMENT:va,C_BLOCK_COMMENT_MODE:ba,C_LINE_COMMENT_MODE:ya,C_NUMBER_MODE:{scope:`number`,begin:ua,relevance:0},C_NUMBER_RE:ua,END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})},HASH_COMMENT_MODE:xa,IDENT_RE:sa,MATCH_NOTHING_RE:oa,METHOD_GUARD:{begin:`\\.\\s*[a-zA-Z_]\\w*`,relevance:0},NUMBER_MODE:{scope:`number`,begin:la,relevance:0},NUMBER_RE:la,PHRASAL_WORDS_MODE:_a,QUOTE_STRING_MODE:ga,REGEXP_MODE:{scope:`regexp`,begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[ma,{begin:/\[/,end:/\]/,relevance:0,contains:[ma]}]},RE_STARTERS_RE:fa,SHEBANG:pa,TITLE_MODE:{scope:`title`,begin:sa,relevance:0},UNDERSCORE_IDENT_RE:ca,UNDERSCORE_TITLE_MODE:{scope:`title`,begin:ca,relevance:0}});function Ca(e,t){e.input[e.index-1]===`.`&&t.ignoreMatch()}function wa(e,t){e.className!==void 0&&(e.scope=e.className,delete e.className)}function Ta(e,t){t&&e.beginKeywords&&(e.begin=`\\b(`+e.beginKeywords.split(` `).join(`|`)+`)(?!\\.)(?=\\b|\\s)`,e.__beforeBegin=Ca,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,e.relevance===void 0&&(e.relevance=0))}function Ea(e,t){Array.isArray(e.illegal)&&(e.illegal=ta(...e.illegal))}function Da(e,t){if(e.match){if(e.begin||e.end)throw Error(`begin & end are not supported with match`);e.begin=e.match,delete e.match}}function Oa(e,t){e.relevance===void 0&&(e.relevance=1)}var ka=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw Error(`beforeMatch cannot be used with starts`);let n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=$i(n.beforeMatch,Xi(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},Aa=[`of`,`and`,`for`,`in`,`not`,`or`,`if`,`then`,`parent`,`list`,`value`],ja=`keyword`;function Ma(e,t,n=ja){let r=Object.create(null);return typeof e==`string`?i(n,e.split(` `)):Array.isArray(e)?i(n,e):Object.keys(e).forEach(function(n){Object.assign(r,Ma(e[n],t,n))}),r;function i(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach(function(t){let n=t.split(`|`);r[n[0]]=[e,Na(n[0],n[1])]})}}function Na(e,t){return t?Number(t):+!Pa(e)}function Pa(e){return Aa.includes(e.toLowerCase())}var Fa={},Ia=e=>{console.error(e)},La=(e,...t)=>{console.log(`WARN: ${e}`,...t)},Ra=(e,t)=>{Fa[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),Fa[`${e}/${t}`]=!0)},za=Error();function Ba(e,t,{key:n}){let r=0,i=e[n],a={},o={};for(let e=1;e<=t.length;e++)o[e+r]=i[e],a[e+r]=!0,r+=na(t[e-1]);e[n]=o,e[n]._emit=a,e[n]._multi=!0}function Va(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw Ia(`skip, excludeBegin, returnBegin not compatible with beginScope: {}`),za;if(typeof e.beginScope!=`object`||e.beginScope===null)throw Ia(`beginScope must be object`),za;Ba(e,e.begin,{key:`beginScope`}),e.begin=aa(e.begin,{joinWith:``})}}function Ha(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw Ia(`skip, excludeEnd, returnEnd not compatible with endScope: {}`),za;if(typeof e.endScope!=`object`||e.endScope===null)throw Ia(`endScope must be object`),za;Ba(e,e.end,{key:`endScope`}),e.end=aa(e.end,{joinWith:``})}}function Ua(e){e.scope&&typeof e.scope==`object`&&e.scope!==null&&(e.beginScope=e.scope,delete e.scope)}function Wa(e){Ua(e),typeof e.beginScope==`string`&&(e.beginScope={_wrap:e.beginScope}),typeof e.endScope==`string`&&(e.endScope={_wrap:e.endScope}),Va(e),Ha(e)}function Ga(e){function t(t,n){return new RegExp(Yi(t),`m`+(e.case_insensitive?`i`:``)+(e.unicodeRegex?`u`:``)+(n?`g`:``))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=na(e)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);let e=this.regexes.map(e=>e[1]);this.matcherRe=t(aa(e,{joinWith:`|`}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;let t=this.matcherRe.exec(e);if(!t)return null;let n=t.findIndex((e,t)=>t>0&&e!==void 0),r=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,r)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];let t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),t.type===`begin`&&this.count++}exec(e){let t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition()&&!(n&&n.index===this.lastIndex)){let t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function i(e){let t=new r;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:`begin`})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:`end`}),e.illegal&&t.addRule(e.illegal,{type:`illegal`}),t}function a(n,r){let o=n;if(n.isCompiled)return o;[wa,Da,Wa,ka].forEach(e=>e(n,r)),e.compilerExtensions.forEach(e=>e(n,r)),n.__beforeBegin=null,[Ta,Ea,Oa].forEach(e=>e(n,r)),n.isCompiled=!0;let s=null;return typeof n.keywords==`object`&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),s=n.keywords.$pattern,delete n.keywords.$pattern),s||=/\w+/,n.keywords&&=Ma(n.keywords,e.case_insensitive),o.keywordPatternRe=t(s,!0),r&&(n.begin||=/\B|\b/,o.beginRe=t(o.begin),!n.end&&!n.endsWithParent&&(n.end=/\B|\b/),n.end&&(o.endRe=t(o.end)),o.terminatorEnd=Yi(o.end)||``,n.endsWithParent&&r.terminatorEnd&&(o.terminatorEnd+=(n.end?`|`:``)+r.terminatorEnd)),n.illegal&&(o.illegalRe=t(n.illegal)),n.contains||=[],n.contains=[].concat(...n.contains.map(function(e){return qa(e===`self`?n:e)})),n.contains.forEach(function(e){a(e,o)}),n.starts&&a(n.starts,r),o.matcher=i(o),o}if(e.compilerExtensions||=[],e.contains&&e.contains.includes(`self`))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=Vi(e.classNameAliases||{}),a(e)}function Ka(e){return e?e.endsWithParent||Ka(e.starts):!1}function qa(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map(function(t){return Vi(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:Ka(e)?Vi(e,{starts:e.starts?Vi(e.starts):null}):Object.isFrozen(e)?Vi(e):e}var Ja=`11.11.1`,Ya=class extends Error{constructor(e,t){super(e),this.name=`HTMLInjectionError`,this.html=t}},Xa=Bi,Za=Vi,Qa=Symbol(`nomatch`),$a=7,eo=function(e){let t=Object.create(null),n=Object.create(null),r=[],i=!0,a=`Could not find the language '{}', did you forget to load/include a language module?`,o={disableAutodetect:!0,name:`Plain text`,contains:[]},s={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:`hljs-`,cssSelector:`pre code`,languages:null,__emitter:Ji};function c(e){return s.noHighlightRe.test(e)}function l(e){let t=e.className+` `;t+=e.parentNode?e.parentNode.className:``;let n=s.languageDetectRe.exec(t);if(n){let t=w(n[1]);return t||(La(a.replace(`{}`,n[1])),La(`Falling back to no-highlight mode for this block.`,e)),t?n[1]:`no-highlight`}return t.split(/\s+/).find(e=>c(e)||w(e))}function u(e,t,n){let r=``,i=``;typeof t==`object`?(r=e,n=t.ignoreIllegals,i=t.language):(Ra(`10.7.0`,`highlight(lang, code, ...args) has been deprecated.`),Ra(`10.7.0`,`Please use highlight(code, options) instead.
58
58
  https://github.com/highlightjs/highlight.js/issues/2277`),i=e,r=t),n===void 0&&(n=!0);let a={code:r,language:i};A(`before:highlight`,a);let o=a.result?a.result:d(a.language,a.code,n);return o.code=a.code,A(`after:highlight`,o),o}function d(e,n,r,o){let c=Object.create(null);function l(e,t){return e.keywords[t]}function u(){if(!k.keywords){j.addText(M);return}let e=0;k.keywordPatternRe.lastIndex=0;let t=k.keywordPatternRe.exec(M),n=``;for(;t;){n+=M.substring(e,t.index);let r=E.case_insensitive?t[0].toLowerCase():t[0],i=l(k,r);if(i){let[e,a]=i;if(j.addText(n),n=``,c[r]=(c[r]||0)+1,c[r]<=$a&&(N+=a),e.startsWith(`_`))n+=t[0];else{let n=E.classNameAliases[e]||e;h(t[0],n)}}else n+=t[0];e=k.keywordPatternRe.lastIndex,t=k.keywordPatternRe.exec(M)}n+=M.substring(e),j.addText(n)}function f(){if(M===``)return;let e=null;if(typeof k.subLanguage==`string`){if(!t[k.subLanguage]){j.addText(M);return}e=d(k.subLanguage,M,!0,A[k.subLanguage]),A[k.subLanguage]=e._top}else e=p(M,k.subLanguage.length?k.subLanguage:null);k.relevance>0&&(N+=e.relevance),j.__addSublanguage(e._emitter,e.language)}function m(){k.subLanguage==null?u():f(),M=``}function h(e,t){e!==``&&(j.startScope(t),j.addText(e),j.endScope())}function g(e,t){let n=1,r=t.length-1;for(;n<=r;){if(!e._emit[n]){n++;continue}let r=E.classNameAliases[e[n]]||e[n],i=t[n];r?h(i,r):(M=i,u(),M=``),n++}}function _(e,t){return e.scope&&typeof e.scope==`string`&&j.openNode(E.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(h(M,E.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),M=``):e.beginScope._multi&&(g(e.beginScope,t),M=``)),k=Object.create(e,{parent:{value:k}}),k}function v(e,t,n){let r=ra(e.endRe,n);if(r){if(e[`on:end`]){let n=new zi(e);e[`on:end`](t,n),n.isMatchIgnored&&(r=!1)}if(r){for(;e.endsParent&&e.parent;)e=e.parent;return e}}if(e.endsWithParent)return v(e.parent,t,n)}function y(e){return k.matcher.regexIndex===0?(M+=e[0],1):(F=!0,0)}function b(e){let t=e[0],n=e.rule,r=new zi(n),i=[n.__beforeBegin,n[`on:begin`]];for(let n of i)if(n&&(n(e,r),r.isMatchIgnored))return y(t);return n.skip?M+=t:(n.excludeBegin&&(M+=t),m(),!n.returnBegin&&!n.excludeBegin&&(M=t)),_(n,e),n.returnBegin?0:t.length}function x(e){let t=e[0],r=n.substring(e.index),i=v(k,e,r);if(!i)return Qa;let a=k;k.endScope&&k.endScope._wrap?(m(),h(t,k.endScope._wrap)):k.endScope&&k.endScope._multi?(m(),g(k.endScope,e)):a.skip?M+=t:(a.returnEnd||a.excludeEnd||(M+=t),m(),a.excludeEnd&&(M=t));do k.scope&&j.closeNode(),!k.skip&&!k.subLanguage&&(N+=k.relevance),k=k.parent;while(k!==i.parent);return i.starts&&_(i.starts,e),a.returnEnd?0:t.length}function S(){let e=[];for(let t=k;t!==E;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>j.openNode(e))}let C={};function T(t,a){let o=a&&a[0];if(M+=t,o==null)return m(),0;if(C.type===`begin`&&a.type===`end`&&C.index===a.index&&o===``){if(M+=n.slice(a.index,a.index+1),!i){let t=Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=C.rule,t}return 1}if(C=a,a.type===`begin`)return b(a);if(a.type===`illegal`&&!r){let e=Error(`Illegal lexeme "`+o+`" for mode "`+(k.scope||`<unnamed>`)+`"`);throw e.mode=k,e}else if(a.type===`end`){let e=x(a);if(e!==Qa)return e}if(a.type===`illegal`&&o===``)return M+=`
59
59
  `,1;if(ee>1e5&&ee>a.index*3)throw Error(`potential infinite loop, way more iterations than matches`);return M+=o,o.length}let E=w(e);if(!E)throw Ia(a.replace(`{}`,e)),Error(`Unknown language: "`+e+`"`);let D=Ga(E),O=``,k=o||D,A={},j=new s.__emitter(s);S();let M=``,N=0,P=0,ee=0,F=!1;try{if(E.__emitTokens)E.__emitTokens(n,j);else{for(k.matcher.considerAll();;){ee++,F?F=!1:k.matcher.considerAll(),k.matcher.lastIndex=P;let e=k.matcher.exec(n);if(!e)break;let t=T(n.substring(P,e.index),e);P=e.index+t}T(n.substring(P))}return j.finalize(),O=j.toHTML(),{language:e,value:O,relevance:N,illegal:!1,_emitter:j,_top:k}}catch(t){if(t.message&&t.message.includes(`Illegal`))return{language:e,value:Xa(n),illegal:!0,relevance:0,_illegalBy:{message:t.message,index:P,context:n.slice(P-100,P+100),mode:t.mode,resultSoFar:O},_emitter:j};if(i)return{language:e,value:Xa(n),illegal:!1,relevance:0,errorRaised:t,_emitter:j,_top:k};throw t}}function f(e){let t={value:Xa(e),illegal:!1,relevance:0,_top:o,_emitter:new s.__emitter(s)};return t._emitter.addText(e),t}function p(e,n){n=n||s.languages||Object.keys(t);let r=f(e),i=n.filter(w).filter(E).map(t=>d(t,e,!1));i.unshift(r);let[a,o]=i.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(w(e.language).supersetOf===t.language)return 1;if(w(t.language).supersetOf===e.language)return-1}return 0}),c=a;return c.secondBest=o,c}function m(e,t,r){let i=t&&n[t]||r;e.classList.add(`hljs`),e.classList.add(`language-${i}`)}function h(e){let t=null,n=l(e);if(c(n))return;if(A(`before:highlightElement`,{el:e,language:n}),e.dataset.highlighted){console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",e);return}if(e.children.length>0&&(s.ignoreUnescapedHTML||(console.warn(`One of your code blocks includes unescaped HTML. This is a potentially serious security risk.`),console.warn(`https://github.com/highlightjs/highlight.js/wiki/security`),console.warn(`The element with unescaped HTML:`),console.warn(e)),s.throwUnescapedHTML))throw new Ya(`One of your code blocks includes unescaped HTML.`,e.innerHTML);t=e;let r=t.textContent,i=n?u(r,{language:n,ignoreIllegals:!0}):p(r);e.innerHTML=i.value,e.dataset.highlighted=`yes`,m(e,n,i.language),e.result={language:i.language,re:i.relevance,relevance:i.relevance},i.secondBest&&(e.secondBest={language:i.secondBest.language,relevance:i.secondBest.relevance}),A(`after:highlightElement`,{el:e,result:i,text:r})}function g(e){s=Za(s,e)}let _=()=>{b(),Ra(`10.6.0`,`initHighlighting() deprecated. Use highlightAll() now.`)};function v(){b(),Ra(`10.6.0`,`initHighlightingOnLoad() deprecated. Use highlightAll() now.`)}let y=!1;function b(){function e(){b()}if(document.readyState===`loading`){y||window.addEventListener(`DOMContentLoaded`,e,!1),y=!0;return}document.querySelectorAll(s.cssSelector).forEach(h)}function x(n,r){let a=null;try{a=r(e)}catch(e){if(Ia(`Language definition for '{}' could not be registered.`.replace(`{}`,n)),i)Ia(e);else throw e;a=o}a.name||=n,t[n]=a,a.rawDefinition=r.bind(null,e),a.aliases&&T(a.aliases,{languageName:n})}function S(e){delete t[e];for(let t of Object.keys(n))n[t]===e&&delete n[t]}function C(){return Object.keys(t)}function w(e){return e=(e||``).toLowerCase(),t[e]||t[n[e]]}function T(e,{languageName:t}){typeof e==`string`&&(e=[e]),e.forEach(e=>{n[e.toLowerCase()]=t})}function E(e){let t=w(e);return t&&!t.disableAutodetect}function D(e){e[`before:highlightBlock`]&&!e[`before:highlightElement`]&&(e[`before:highlightElement`]=t=>{e[`before:highlightBlock`](Object.assign({block:t.el},t))}),e[`after:highlightBlock`]&&!e[`after:highlightElement`]&&(e[`after:highlightElement`]=t=>{e[`after:highlightBlock`](Object.assign({block:t.el},t))})}function O(e){D(e),r.push(e)}function k(e){let t=r.indexOf(e);t!==-1&&r.splice(t,1)}function A(e,t){let n=e;r.forEach(function(e){e[n]&&e[n](t)})}function j(e){return Ra(`10.7.0`,`highlightBlock will be removed entirely in v12.0`),Ra(`10.7.0`,`Please use highlightElement now.`),h(e)}Object.assign(e,{highlight:u,highlightAuto:p,highlightAll:b,highlightElement:h,highlightBlock:j,configure:g,initHighlighting:_,initHighlightingOnLoad:v,registerLanguage:x,unregisterLanguage:S,listLanguages:C,getLanguage:w,registerAliases:T,autoDetection:E,inherit:Za,addPlugin:O,removePlugin:k}),e.debugMode=function(){i=!1},e.safeMode=function(){i=!0},e.versionString=Ja,e.regex={concat:$i,lookahead:Xi,either:ta,optional:Qi,anyNumberOfTimes:Zi};for(let e in Sa)typeof Sa[e]==`object`&&Ri(Sa[e]);return Object.assign(e,Sa),e},to=eo({});to.newInstance=()=>eo({});var no=to;to.HighlightJS=to,to.default=to;var ro=Li(no);function io(e){let t=e.regex,n={},r={begin:/\$\{/,end:/\}/,contains:[`self`,{begin:/:-/,contains:[n]}]};Object.assign(n,{className:`variable`,variants:[{begin:t.concat(/\$[\w\d#@][\w\d_]*/,`(?![\\w\\d])(?![$])`)},r]});let i={className:`subst`,begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},a=e.inherit(e.COMMENT(),{match:[/(^|\s)/,/#.*$/],scope:{2:`comment`}}),o={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:`string`})]}},s={className:`string`,begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n,i]};i.contains.push(s);let c={match:/\\"/},l={className:`string`,begin:/'/,end:/'/},u={match:/\\'/},d={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:`number`},e.NUMBER_MODE,n]},f=e.SHEBANG({binary:`(${[`fish`,`bash`,`zsh`,`sh`,`csh`,`ksh`,`tcsh`,`dash`,`scsh`].join(`|`)})`,relevance:10}),p={className:`function`,begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0},m=[`if`,`then`,`else`,`elif`,`fi`,`time`,`for`,`while`,`until`,`in`,`do`,`done`,`case`,`esac`,`coproc`,`function`,`select`],h=[`true`,`false`],g={match:/(\/[a-z._-]+)+/},_=[`break`,`cd`,`continue`,`eval`,`exec`,`exit`,`export`,`getopts`,`hash`,`pwd`,`readonly`,`return`,`shift`,`test`,`times`,`trap`,`umask`,`unset`],v=[`alias`,`bind`,`builtin`,`caller`,`command`,`declare`,`echo`,`enable`,`help`,`let`,`local`,`logout`,`mapfile`,`printf`,`read`,`readarray`,`source`,`sudo`,`type`,`typeset`,`ulimit`,`unalias`],y=`autoload.bg.bindkey.bye.cap.chdir.clone.comparguments.compcall.compctl.compdescribe.compfiles.compgroups.compquote.comptags.comptry.compvalues.dirs.disable.disown.echotc.echoti.emulate.fc.fg.float.functions.getcap.getln.history.integer.jobs.kill.limit.log.noglob.popd.print.pushd.pushln.rehash.sched.setcap.setopt.stat.suspend.ttyctl.unfunction.unhash.unlimit.unsetopt.vared.wait.whence.where.which.zcompile.zformat.zftp.zle.zmodload.zparseopts.zprof.zpty.zregexparse.zsocket.zstyle.ztcp`.split(`.`),b=`chcon.chgrp.chown.chmod.cp.dd.df.dir.dircolors.ln.ls.mkdir.mkfifo.mknod.mktemp.mv.realpath.rm.rmdir.shred.sync.touch.truncate.vdir.b2sum.base32.base64.cat.cksum.comm.csplit.cut.expand.fmt.fold.head.join.md5sum.nl.numfmt.od.paste.ptx.pr.sha1sum.sha224sum.sha256sum.sha384sum.sha512sum.shuf.sort.split.sum.tac.tail.tr.tsort.unexpand.uniq.wc.arch.basename.chroot.date.dirname.du.echo.env.expr.factor.groups.hostid.id.link.logname.nice.nohup.nproc.pathchk.pinky.printenv.printf.pwd.readlink.runcon.seq.sleep.stat.stdbuf.stty.tee.test.timeout.tty.uname.unlink.uptime.users.who.whoami.yes`.split(`.`);return{name:`Bash`,aliases:[`sh`,`zsh`],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:m,literal:h,built_in:[..._,...v,`set`,`shopt`,...y,...b]},contains:[f,e.SHEBANG(),p,d,a,o,g,s,c,l,u,n]}}var ao=e=>({IMPORTANT:{scope:`meta`,begin:`!important`},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:`number`,begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:`built_in`,begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:`selector-attr`,begin:/\[/,end:/\]/,illegal:`$`,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:`number`,begin:e.NUMBER_RE+`(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?`,relevance:0},CSS_VARIABLE:{className:`attr`,begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),oo=`a.abbr.address.article.aside.audio.b.blockquote.body.button.canvas.caption.cite.code.dd.del.details.dfn.div.dl.dt.em.fieldset.figcaption.figure.footer.form.h1.h2.h3.h4.h5.h6.header.hgroup.html.i.iframe.img.input.ins.kbd.label.legend.li.main.mark.menu.nav.object.ol.optgroup.option.p.picture.q.quote.samp.section.select.source.span.strong.summary.sup.table.tbody.td.textarea.tfoot.th.thead.time.tr.ul.var.video`.split(`.`),so=`defs.g.marker.mask.pattern.svg.switch.symbol.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feFlood.feGaussianBlur.feImage.feMerge.feMorphology.feOffset.feSpecularLighting.feTile.feTurbulence.linearGradient.radialGradient.stop.circle.ellipse.image.line.path.polygon.polyline.rect.text.use.textPath.tspan.foreignObject.clipPath`.split(`.`),co=[...oo,...so],lo=`any-hover.any-pointer.aspect-ratio.color.color-gamut.color-index.device-aspect-ratio.device-height.device-width.display-mode.forced-colors.grid.height.hover.inverted-colors.monochrome.orientation.overflow-block.overflow-inline.pointer.prefers-color-scheme.prefers-contrast.prefers-reduced-motion.prefers-reduced-transparency.resolution.scan.scripting.update.width.min-width.max-width.min-height.max-height`.split(`.`).sort().reverse(),uo=`active.any-link.blank.checked.current.default.defined.dir.disabled.drop.empty.enabled.first.first-child.first-of-type.fullscreen.future.focus.focus-visible.focus-within.has.host.host-context.hover.indeterminate.in-range.invalid.is.lang.last-child.last-of-type.left.link.local-link.not.nth-child.nth-col.nth-last-child.nth-last-col.nth-last-of-type.nth-of-type.only-child.only-of-type.optional.out-of-range.past.placeholder-shown.read-only.read-write.required.right.root.scope.target.target-within.user-invalid.valid.visited.where`.split(`.`).sort().reverse(),fo=[`after`,`backdrop`,`before`,`cue`,`cue-region`,`first-letter`,`first-line`,`grammar-error`,`marker`,`part`,`placeholder`,`selection`,`slotted`,`spelling-error`].sort().reverse(),po=`accent-color.align-content.align-items.align-self.alignment-baseline.all.anchor-name.animation.animation-composition.animation-delay.animation-direction.animation-duration.animation-fill-mode.animation-iteration-count.animation-name.animation-play-state.animation-range.animation-range-end.animation-range-start.animation-timeline.animation-timing-function.appearance.aspect-ratio.backdrop-filter.backface-visibility.background.background-attachment.background-blend-mode.background-clip.background-color.background-image.background-origin.background-position.background-position-x.background-position-y.background-repeat.background-size.baseline-shift.block-size.border.border-block.border-block-color.border-block-end.border-block-end-color.border-block-end-style.border-block-end-width.border-block-start.border-block-start-color.border-block-start-style.border-block-start-width.border-block-style.border-block-width.border-bottom.border-bottom-color.border-bottom-left-radius.border-bottom-right-radius.border-bottom-style.border-bottom-width.border-collapse.border-color.border-end-end-radius.border-end-start-radius.border-image.border-image-outset.border-image-repeat.border-image-slice.border-image-source.border-image-width.border-inline.border-inline-color.border-inline-end.border-inline-end-color.border-inline-end-style.border-inline-end-width.border-inline-start.border-inline-start-color.border-inline-start-style.border-inline-start-width.border-inline-style.border-inline-width.border-left.border-left-color.border-left-style.border-left-width.border-radius.border-right.border-right-color.border-right-style.border-right-width.border-spacing.border-start-end-radius.border-start-start-radius.border-style.border-top.border-top-color.border-top-left-radius.border-top-right-radius.border-top-style.border-top-width.border-width.bottom.box-align.box-decoration-break.box-direction.box-flex.box-flex-group.box-lines.box-ordinal-group.box-orient.box-pack.box-shadow.box-sizing.break-after.break-before.break-inside.caption-side.caret-color.clear.clip.clip-path.clip-rule.color.color-interpolation.color-interpolation-filters.color-profile.color-rendering.color-scheme.column-count.column-fill.column-gap.column-rule.column-rule-color.column-rule-style.column-rule-width.column-span.column-width.columns.contain.contain-intrinsic-block-size.contain-intrinsic-height.contain-intrinsic-inline-size.contain-intrinsic-size.contain-intrinsic-width.container.container-name.container-type.content.content-visibility.counter-increment.counter-reset.counter-set.cue.cue-after.cue-before.cursor.cx.cy.direction.display.dominant-baseline.empty-cells.enable-background.field-sizing.fill.fill-opacity.fill-rule.filter.flex.flex-basis.flex-direction.flex-flow.flex-grow.flex-shrink.flex-wrap.float.flood-color.flood-opacity.flow.font.font-display.font-family.font-feature-settings.font-kerning.font-language-override.font-optical-sizing.font-palette.font-size.font-size-adjust.font-smooth.font-smoothing.font-stretch.font-style.font-synthesis.font-synthesis-position.font-synthesis-small-caps.font-synthesis-style.font-synthesis-weight.font-variant.font-variant-alternates.font-variant-caps.font-variant-east-asian.font-variant-emoji.font-variant-ligatures.font-variant-numeric.font-variant-position.font-variation-settings.font-weight.forced-color-adjust.gap.glyph-orientation-horizontal.glyph-orientation-vertical.grid.grid-area.grid-auto-columns.grid-auto-flow.grid-auto-rows.grid-column.grid-column-end.grid-column-start.grid-gap.grid-row.grid-row-end.grid-row-start.grid-template.grid-template-areas.grid-template-columns.grid-template-rows.hanging-punctuation.height.hyphenate-character.hyphenate-limit-chars.hyphens.icon.image-orientation.image-rendering.image-resolution.ime-mode.initial-letter.initial-letter-align.inline-size.inset.inset-area.inset-block.inset-block-end.inset-block-start.inset-inline.inset-inline-end.inset-inline-start.isolation.justify-content.justify-items.justify-self.kerning.left.letter-spacing.lighting-color.line-break.line-height.line-height-step.list-style.list-style-image.list-style-position.list-style-type.margin.margin-block.margin-block-end.margin-block-start.margin-bottom.margin-inline.margin-inline-end.margin-inline-start.margin-left.margin-right.margin-top.margin-trim.marker.marker-end.marker-mid.marker-start.marks.mask.mask-border.mask-border-mode.mask-border-outset.mask-border-repeat.mask-border-slice.mask-border-source.mask-border-width.mask-clip.mask-composite.mask-image.mask-mode.mask-origin.mask-position.mask-repeat.mask-size.mask-type.masonry-auto-flow.math-depth.math-shift.math-style.max-block-size.max-height.max-inline-size.max-width.min-block-size.min-height.min-inline-size.min-width.mix-blend-mode.nav-down.nav-index.nav-left.nav-right.nav-up.none.normal.object-fit.object-position.offset.offset-anchor.offset-distance.offset-path.offset-position.offset-rotate.opacity.order.orphans.outline.outline-color.outline-offset.outline-style.outline-width.overflow.overflow-anchor.overflow-block.overflow-clip-margin.overflow-inline.overflow-wrap.overflow-x.overflow-y.overlay.overscroll-behavior.overscroll-behavior-block.overscroll-behavior-inline.overscroll-behavior-x.overscroll-behavior-y.padding.padding-block.padding-block-end.padding-block-start.padding-bottom.padding-inline.padding-inline-end.padding-inline-start.padding-left.padding-right.padding-top.page.page-break-after.page-break-before.page-break-inside.paint-order.pause.pause-after.pause-before.perspective.perspective-origin.place-content.place-items.place-self.pointer-events.position.position-anchor.position-visibility.print-color-adjust.quotes.r.resize.rest.rest-after.rest-before.right.rotate.row-gap.ruby-align.ruby-position.scale.scroll-behavior.scroll-margin.scroll-margin-block.scroll-margin-block-end.scroll-margin-block-start.scroll-margin-bottom.scroll-margin-inline.scroll-margin-inline-end.scroll-margin-inline-start.scroll-margin-left.scroll-margin-right.scroll-margin-top.scroll-padding.scroll-padding-block.scroll-padding-block-end.scroll-padding-block-start.scroll-padding-bottom.scroll-padding-inline.scroll-padding-inline-end.scroll-padding-inline-start.scroll-padding-left.scroll-padding-right.scroll-padding-top.scroll-snap-align.scroll-snap-stop.scroll-snap-type.scroll-timeline.scroll-timeline-axis.scroll-timeline-name.scrollbar-color.scrollbar-gutter.scrollbar-width.shape-image-threshold.shape-margin.shape-outside.shape-rendering.speak.speak-as.src.stop-color.stop-opacity.stroke.stroke-dasharray.stroke-dashoffset.stroke-linecap.stroke-linejoin.stroke-miterlimit.stroke-opacity.stroke-width.tab-size.table-layout.text-align.text-align-all.text-align-last.text-anchor.text-combine-upright.text-decoration.text-decoration-color.text-decoration-line.text-decoration-skip.text-decoration-skip-ink.text-decoration-style.text-decoration-thickness.text-emphasis.text-emphasis-color.text-emphasis-position.text-emphasis-style.text-indent.text-justify.text-orientation.text-overflow.text-rendering.text-shadow.text-size-adjust.text-transform.text-underline-offset.text-underline-position.text-wrap.text-wrap-mode.text-wrap-style.timeline-scope.top.touch-action.transform.transform-box.transform-origin.transform-style.transition.transition-behavior.transition-delay.transition-duration.transition-property.transition-timing-function.translate.unicode-bidi.user-modify.user-select.vector-effect.vertical-align.view-timeline.view-timeline-axis.view-timeline-inset.view-timeline-name.view-transition-name.visibility.voice-balance.voice-duration.voice-family.voice-pitch.voice-range.voice-rate.voice-stress.voice-volume.white-space.white-space-collapse.widows.width.will-change.word-break.word-spacing.word-wrap.writing-mode.x.y.z-index.zoom`.split(`.`).sort().reverse();function mo(e){let t=e.regex,n=ao(e),r={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},i=/@-?\w[\w]*(-\w+)*/,a=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:`CSS`,case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:`from to`},classNameAliases:{keyframePosition:`selector-tag`},contains:[n.BLOCK_COMMENT,r,n.CSS_NUMBER_MODE,{className:`selector-id`,begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:`selector-class`,begin:`\\.[a-zA-Z-][a-zA-Z0-9_-]*`,relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:`selector-pseudo`,variants:[{begin:`:(`+uo.join(`|`)+`)`},{begin:`:(:)?(`+fo.join(`|`)+`)`}]},n.CSS_VARIABLE,{className:`attribute`,begin:`\\b(`+po.join(`|`)+`)\\b`},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...a,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:`url data-uri`},contains:[...a,{className:`string`,begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:`[{;]`,relevance:0,illegal:/:/,contains:[{className:`keyword`,begin:i},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:`and or not only`,attribute:lo.join(` `)},contains:[{begin:/[a-z-]+(?=:)/,className:`attribute`},...a,n.CSS_NUMBER_MODE]}]},{className:`selector-tag`,begin:`\\b(`+co.join(`|`)+`)\\b`}]}}function ho(e){let t={keyword:[`break`,`case`,`chan`,`const`,`continue`,`default`,`defer`,`else`,`fallthrough`,`for`,`func`,`go`,`goto`,`if`,`import`,`interface`,`map`,`package`,`range`,`return`,`select`,`struct`,`switch`,`type`,`var`],type:[`bool`,`byte`,`complex64`,`complex128`,`error`,`float32`,`float64`,`int8`,`int16`,`int32`,`int64`,`string`,`uint8`,`uint16`,`uint32`,`uint64`,`int`,`uint`,`uintptr`,`rune`],literal:[`true`,`false`,`iota`,`nil`],built_in:[`append`,`cap`,`close`,`complex`,`copy`,`imag`,`len`,`make`,`new`,`panic`,`print`,`println`,`real`,`recover`,`delete`]};return{name:`Go`,aliases:[`golang`],keywords:t,illegal:`</`,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:`string`,variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{className:`number`,variants:[{match:/-?\b0[xX]\.[a-fA-F0-9](_?[a-fA-F0-9])*[pP][+-]?\d(_?\d)*i?/,relevance:0},{match:/-?\b0[xX](_?[a-fA-F0-9])+((\.([a-fA-F0-9](_?[a-fA-F0-9])*)?)?[pP][+-]?\d(_?\d)*)?i?/,relevance:0},{match:/-?\b0[oO](_?[0-7])*i?/,relevance:0},{match:/-?\.\d(_?\d)*([eE][+-]?\d(_?\d)*)?i?/,relevance:0},{match:/-?\b\d(_?\d)*(\.(\d(_?\d)*)?)?([eE][+-]?\d(_?\d)*)?i?/,relevance:0}]},{begin:/:=/},{className:`function`,beginKeywords:`func`,end:`\\s*(\\{|$)`,excludeEnd:!0,contains:[e.TITLE_MODE,{className:`params`,begin:/\(/,end:/\)/,endsParent:!0,keywords:t,illegal:/["']/}]}]}}var go=`[0-9](_*[0-9])*`,_o=`\\.(${go})`,vo=`[0-9a-fA-F](_*[0-9a-fA-F])*`,yo={className:`number`,variants:[{begin:`(\\b(${go})((${_o})|\\.)?|(${_o}))[eE][+-]?(${go})[fFdD]?\\b`},{begin:`\\b(${go})((${_o})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${_o})[fFdD]?\\b`},{begin:`\\b(${go})[fFdD]\\b`},{begin:`\\b0[xX]((${vo})\\.?|(${vo})?\\.(${vo}))[pP][+-]?(${go})[fFdD]?\\b`},{begin:`\\b(0|[1-9](_*[0-9])*)[lL]?\\b`},{begin:`\\b0[xX](${vo})[lL]?\\b`},{begin:`\\b0(_*[0-7])*[lL]?\\b`},{begin:`\\b0[bB][01](_*[01])*[lL]?\\b`}],relevance:0};function bo(e,t,n){return n===-1?``:e.replace(t,r=>bo(e,t,n-1))}function xo(e){let t=e.regex,n=`[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*`,r=n+bo(`(?:<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*~~~(?:\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*~~~)*>)?`,/~~~/g,2),i={keyword:`synchronized.abstract.private.var.static.if.const .for.while.strictfp.finally.protected.import.native.final.void.enum.else.break.transient.catch.instanceof.volatile.case.assert.package.default.public.try.switch.continue.throws.protected.public.private.module.requires.exports.do.sealed.yield.permits.goto.when`.split(`.`),literal:[`false`,`true`,`null`],type:[`char`,`boolean`,`long`,`float`,`int`,`byte`,`short`,`double`],built_in:[`super`,`this`]},a={className:`meta`,begin:`@[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*`,contains:[{begin:/\(/,end:/\)/,contains:[`self`]}]},o={className:`params`,begin:/\(/,end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:`Java`,aliases:[`jsp`],keywords:i,illegal:/<\/|#/,contains:[e.COMMENT(`/\\*\\*`,`\\*/`,{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:`doctag`,begin:`@[A-Za-z]+`}]}),{begin:/import java\.[a-z]+\./,keywords:`import`,relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:`string`,contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{1:`keyword`,3:`title.class`}},{match:/non-sealed/,scope:`keyword`},{begin:[t.concat(/(?!else)/,n),/\s+/,n,/\s+/,/=(?!=)/],className:{1:`type`,3:`variable`,5:`operator`}},{begin:[/record/,/\s+/,n],className:{1:`keyword`,3:`title.class`},contains:[o,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:`new throw return else`,relevance:0},{begin:[`(?:`+r+`\\s+)`,e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:`title.function`},keywords:i,contains:[{className:`params`,begin:/\(/,end:/\)/,keywords:i,relevance:0,contains:[a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,yo,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},yo,a]}}var So=`[A-Za-z$_][0-9A-Za-z$_]*`,Co=`as.in.of.if.for.while.finally.var.new.function.do.return.void.else.break.catch.instanceof.with.throw.case.default.try.switch.continue.typeof.delete.let.yield.const.class.debugger.async.await.static.import.from.export.extends.using`.split(`.`),wo=[`true`,`false`,`null`,`undefined`,`NaN`,`Infinity`],To=`Object.Function.Boolean.Symbol.Math.Date.Number.BigInt.String.RegExp.Array.Float32Array.Float64Array.Int8Array.Uint8Array.Uint8ClampedArray.Int16Array.Int32Array.Uint16Array.Uint32Array.BigInt64Array.BigUint64Array.Set.Map.WeakSet.WeakMap.ArrayBuffer.SharedArrayBuffer.Atomics.DataView.JSON.Promise.Generator.GeneratorFunction.AsyncFunction.Reflect.Proxy.Intl.WebAssembly`.split(`.`),Eo=[`Error`,`EvalError`,`InternalError`,`RangeError`,`ReferenceError`,`SyntaxError`,`TypeError`,`URIError`],Do=[`setInterval`,`setTimeout`,`clearInterval`,`clearTimeout`,`require`,`exports`,`eval`,`isFinite`,`isNaN`,`parseFloat`,`parseInt`,`decodeURI`,`decodeURIComponent`,`encodeURI`,`encodeURIComponent`,`escape`,`unescape`],Oo=[`arguments`,`this`,`super`,`console`,`window`,`document`,`localStorage`,`sessionStorage`,`module`,`global`],ko=[].concat(Do,To,Eo);function Ao(e){let t=e.regex,n=(e,{after:t})=>{let n=`</`+e[0].slice(1);return e.input.indexOf(n,t)!==-1},r=So,i={begin:`<>`,end:`</>`},a=/<[A-Za-z0-9\\._:-]+\s*\/>/,o={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,t)=>{let r=e[0].length+e.index,i=e.input[r];if(i===`<`||i===`,`){t.ignoreMatch();return}i===`>`&&(n(e,{after:r})||t.ignoreMatch());let a,o=e.input.substring(r);if(a=o.match(/^\s*=/)){t.ignoreMatch();return}if((a=o.match(/^\s+extends\s+/))&&a.index===0){t.ignoreMatch();return}}},s={$pattern:So,keyword:Co,literal:wo,built_in:ko,"variable.language":Oo},c=`[0-9](_?[0-9])*`,l=`\\.(${c})`,u=`0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*`,d={className:`number`,variants:[{begin:`(\\b(${u})((${l})|\\.)?|(${l}))[eE][+-]?(${c})\\b`},{begin:`\\b(${u})\\b((${l})\\b|\\.)?|(${l})\\b`},{begin:`\\b(0|[1-9](_?[0-9])*)n\\b`},{begin:`\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b`},{begin:`\\b0[bB][0-1](_?[0-1])*n?\\b`},{begin:`\\b0[oO][0-7](_?[0-7])*n?\\b`},{begin:`\\b0[0-7]+n?\\b`}],relevance:0},f={className:`subst`,begin:`\\$\\{`,end:`\\}`,keywords:s,contains:[]},p={begin:".?html`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`xml`}},m={begin:".?css`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`css`}},h={begin:".?gql`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`graphql`}},g={className:`string`,begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,f]},_={className:`comment`,variants:[e.COMMENT(/\/\*\*(?!\/)/,`\\*/`,{relevance:0,contains:[{begin:`(?=@[A-Za-z]+)`,relevance:0,contains:[{className:`doctag`,begin:`@[A-Za-z]+`},{className:`type`,begin:`\\{`,end:`\\}`,excludeEnd:!0,excludeBegin:!0,relevance:0},{className:`variable`,begin:`[A-Za-z$_][0-9A-Za-z$_]*(?=\\s*(-)|$)`,endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},v=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,{match:/\$\d+/},d];f.contains=v.concat({begin:/\{/,end:/\}/,keywords:s,contains:[`self`].concat(v)});let y=[].concat(_,f.contains),b=y.concat([{begin:/(\s*)\(/,end:/\)/,keywords:s,contains:[`self`].concat(y)}]),x={className:`params`,begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,`(`,t.concat(/\./,r),`)*`)],scope:{1:`keyword`,3:`title.class`,5:`keyword`,7:`title.class.inherited`}},{match:[/class/,/\s+/,r],scope:{1:`keyword`,3:`title.class`}}]},C={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:`title.class`,keywords:{_:[...To,...Eo]}},w={label:`use_strict`,className:`meta`,relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},T={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:`keyword`,3:`title.function`},label:`func.def`,contains:[x],illegal:/%/},E={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:`variable.constant`};function D(e){return t.concat(`(?!`,e.join(`|`),`)`)}let O={match:t.concat(/\b/,D([...Do,`super`,`import`].map(e=>`${e}\\s*\\(`)),r,t.lookahead(/\s*\(/)),className:`title.function`,relevance:0},k={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:`prototype`,className:`property`,relevance:0},A={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:`keyword`,3:`title.function`},contains:[{begin:/\(\)/},x]},j=`(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|`+e.UNDERSCORE_IDENT_RE+`)\\s*=>`,M={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(j)],keywords:`async`,className:{1:`keyword`,3:`title.function`},contains:[x]};return{name:`JavaScript`,aliases:[`js`,`jsx`,`mjs`,`cjs`],keywords:s,exports:{PARAMS_CONTAINS:b,CLASS_REFERENCE:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:`shebang`,binary:`node`,relevance:5}),w,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,_,{match:/\$\d+/},d,C,{scope:`attr`,match:r+t.lookahead(`:`),relevance:0},M,{begin:`(`+e.RE_STARTERS_RE+`|\\b(case|return|throw)\\b)\\s*`,keywords:`return throw case`,relevance:0,contains:[_,e.REGEXP_MODE,{className:`function`,begin:j,returnBegin:!0,end:`\\s*=>`,contains:[{className:`params`,variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:i.begin,end:i.end},{match:a},{begin:o.begin,"on:begin":o.isTrulyOpeningTag,end:o.end}],subLanguage:`xml`,contains:[{begin:o.begin,end:o.end,skip:!0,contains:[`self`]}]}]},T,{beginKeywords:`while if switch catch for`},{begin:`\\b(?!function)`+e.UNDERSCORE_IDENT_RE+`\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{`,returnBegin:!0,label:`func.def`,contains:[x,e.inherit(e.TITLE_MODE,{begin:r,className:`title.function`})]},{match:/\.\.\./,relevance:0},k,{match:`\\$[A-Za-z$_][0-9A-Za-z$_]*`,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:`title.function`},contains:[x]},O,E,S,A,{match:/\$[(.]/}]}}function jo(e){let t={className:`attr`,begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},n={match:/[{}[\],:]/,className:`punctuation`,relevance:0},r=[`true`,`false`,`null`],i={scope:`literal`,beginKeywords:r.join(` `)};return{name:`JSON`,aliases:[`jsonc`],keywords:{literal:r},contains:[t,n,e.QUOTE_STRING_MODE,i,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:`\\S`}}function Mo(e){let t=e.regex,n={begin:/<\/?[A-Za-z_]/,end:`>`,subLanguage:`xml`,relevance:0},r={begin:`^[-\\*]{3,}`,end:`$`},i={className:`code`,variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:`(~{3,})[^~](.|\\n)*?\\1~*[ ]*`},{begin:"```",end:"```+[ ]*$"},{begin:`~~~`,end:`~~~+[ ]*$`},{begin:"`.+?`"},{begin:`(?=^( {4}|\\t))`,contains:[{begin:`^( {4}|\\t)`,end:`(\\n)$`}],relevance:0}]},a={className:`bullet`,begin:`^[ ]*([*+-]|(\\d+\\.))(?=\\s+)`,end:`\\s+`,excludeEnd:!0},o={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:`symbol`,begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:`link`,begin:/:\s*/,end:/$/,excludeBegin:!0}]},s={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:t.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:`string`,relevance:0,begin:`\\[`,end:`\\]`,excludeBegin:!0,returnEnd:!0},{className:`link`,relevance:0,begin:`\\]\\(`,end:`\\)`,excludeBegin:!0,excludeEnd:!0},{className:`symbol`,relevance:0,begin:`\\]\\[`,end:`\\]`,excludeBegin:!0,excludeEnd:!0}]},c={className:`strong`,contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},l={className:`emphasis`,contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},u=e.inherit(c,{contains:[]}),d=e.inherit(l,{contains:[]});c.contains.push(d),l.contains.push(u);let f=[n,s];return[c,l,u,d].forEach(e=>{e.contains=e.contains.concat(f)}),f=f.concat(c,l),{name:`Markdown`,aliases:[`md`,`mkdown`,`mkd`],contains:[{className:`section`,variants:[{begin:`^#{1,6}`,end:`$`,contains:f},{begin:`(?=^.+?\\n[=-]{2,}$)`,contains:[{begin:`^[=-]*$`},{begin:`^`,end:`\\n`,contains:f}]}]},n,a,c,l,{className:`quote`,begin:`^>\\s+`,contains:f,end:`$`},i,r,s,o,{scope:`literal`,match:/&([a-zA-Z0-9]+|#[0-9]{1,7}|#[Xx][0-9a-fA-F]{1,6});/}]}}function No(e){let t=e.regex,n=RegExp(`[\\p{XID_Start}_]\\p{XID_Continue}*`,`u`),r=`and.as.assert.async.await.break.case.class.continue.def.del.elif.else.except.finally.for.from.global.if.import.in.is.lambda.match.nonlocal|10.not.or.pass.raise.return.try.while.with.yield`.split(`.`),i={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:r,built_in:`__import__.abs.all.any.ascii.bin.bool.breakpoint.bytearray.bytes.callable.chr.classmethod.compile.complex.delattr.dict.dir.divmod.enumerate.eval.exec.filter.float.format.frozenset.getattr.globals.hasattr.hash.help.hex.id.input.int.isinstance.issubclass.iter.len.list.locals.map.max.memoryview.min.next.object.oct.open.ord.pow.print.property.range.repr.reversed.round.set.setattr.slice.sorted.staticmethod.str.sum.super.tuple.type.vars.zip`.split(`.`),literal:[`__debug__`,`Ellipsis`,`False`,`None`,`NotImplemented`,`True`],type:[`Any`,`Callable`,`Coroutine`,`Dict`,`List`,`Literal`,`Generic`,`Optional`,`Sequence`,`Set`,`Tuple`,`Type`,`Union`]},a={className:`meta`,begin:/^(>>>|\.\.\.) /},o={className:`subst`,begin:/\{/,end:/\}/,keywords:i,illegal:/#/},s={begin:/\{\{/,relevance:0},c={className:`string`,contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,s,o]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,o]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,s,o]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,o]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l=`[0-9](_?[0-9])*`,u=`(\\b(${l}))?\\.(${l})|\\b(${l})\\.`,d=`\\b|${r.join(`|`)}`,f={className:`number`,relevance:0,variants:[{begin:`(\\b(${l})|(${u}))[eE][+-]?(${l})[jJ]?(?=${d})`},{begin:`(${u})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${d})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${d})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${d})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${d})`},{begin:`\\b(${l})[jJ](?=${d})`}]},p={className:`comment`,begin:t.lookahead(/# type:/),end:/$/,keywords:i,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},m={className:`params`,variants:[{className:``,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:[`self`,a,f,c,e.HASH_COMMENT_MODE]}]};return o.contains=[c,f,a],{name:`Python`,aliases:[`py`,`gyp`,`ipython`],unicodeRegex:!0,keywords:i,illegal:/(<\/|\?)|=>/,contains:[a,f,{scope:`variable.language`,match:/\bself\b/},{beginKeywords:`if`,relevance:0},{match:/\bor\b/,scope:`keyword`},c,p,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,n],scope:{1:`keyword`,3:`title.function`},contains:[m]},{variants:[{match:[/\bclass/,/\s+/,n,/\s*/,/\(\s*/,n,/\s*\)/]},{match:[/\bclass/,/\s+/,n]}],scope:{1:`keyword`,3:`title.class`,6:`title.class.inherited`}},{className:`meta`,begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[f,m,c]}]}}function Po(e){let t=e.regex,n=/(r#)?/,r=t.concat(n,e.UNDERSCORE_IDENT_RE),i=t.concat(n,e.IDENT_RE),a={className:`title.function.invoke`,relevance:0,begin:t.concat(/\b/,/(?!let|for|while|if|else|match\b)/,i,t.lookahead(/\s*\(/))},o=`abstract.as.async.await.become.box.break.const.continue.crate.do.dyn.else.enum.extern.false.final.fn.for.if.impl.in.let.loop.macro.match.mod.move.mut.override.priv.pub.ref.return.self.Self.static.struct.super.trait.true.try.type.typeof.union.unsafe.unsized.use.virtual.where.while.yield`.split(`.`),s=[`true`,`false`,`Some`,`None`,`Ok`,`Err`],c=`drop .Copy.Send.Sized.Sync.Drop.Fn.FnMut.FnOnce.ToOwned.Clone.Debug.PartialEq.PartialOrd.Eq.Ord.AsRef.AsMut.Into.From.Default.Iterator.Extend.IntoIterator.DoubleEndedIterator.ExactSizeIterator.SliceConcatExt.ToString.assert!.assert_eq!.bitflags!.bytes!.cfg!.col!.concat!.concat_idents!.debug_assert!.debug_assert_eq!.env!.eprintln!.panic!.file!.format!.format_args!.include_bytes!.include_str!.line!.local_data_key!.module_path!.option_env!.print!.println!.select!.stringify!.try!.unimplemented!.unreachable!.vec!.write!.writeln!.macro_rules!.assert_ne!.debug_assert_ne!`.split(`.`),l=[`i8`,`i16`,`i32`,`i64`,`i128`,`isize`,`u8`,`u16`,`u32`,`u64`,`u128`,`usize`,`f32`,`f64`,`str`,`char`,`bool`,`Box`,`Option`,`Result`,`String`,`Vec`];return{name:`Rust`,aliases:[`rs`],keywords:{$pattern:e.IDENT_RE+`!?`,type:l,keyword:o,literal:s,built_in:c},illegal:`</`,contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(`/\\*`,`\\*/`,{contains:[`self`]}),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{className:`symbol`,begin:/'[a-zA-Z_][a-zA-Z0-9_]*(?!')/},{scope:`string`,variants:[{begin:/b?r(#*)"(.|\n)*?"\1(?!#)/},{begin:/b?'/,end:/'/,contains:[{scope:`char.escape`,match:/\\('|\w|x\w{2}|u\w{4}|U\w{8})/}]}]},{className:`number`,variants:[{begin:`\\b0b([01_]+)([ui](8|16|32|64|128|size)|f(32|64))?`},{begin:`\\b0o([0-7_]+)([ui](8|16|32|64|128|size)|f(32|64))?`},{begin:`\\b0x([A-Fa-f0-9_]+)([ui](8|16|32|64|128|size)|f(32|64))?`},{begin:`\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)([ui](8|16|32|64|128|size)|f(32|64))?`}],relevance:0},{begin:[/fn/,/\s+/,r],className:{1:`keyword`,3:`title.function`}},{className:`meta`,begin:`#!?\\[`,end:`\\]`,contains:[{className:`string`,begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE]}]},{begin:[/let/,/\s+/,/(?:mut\s+)?/,r],className:{1:`keyword`,3:`keyword`,4:`variable`}},{begin:[/for/,/\s+/,r,/\s+/,/in/],className:{1:`keyword`,3:`variable`,5:`keyword`}},{begin:[/type/,/\s+/,r],className:{1:`keyword`,3:`title.class`}},{begin:[/(?:trait|enum|struct|union|impl|for)/,/\s+/,r],className:{1:`keyword`,3:`title.class`}},{begin:e.IDENT_RE+`::`,keywords:{keyword:`Self`,built_in:c,type:l}},{className:`punctuation`,begin:`->`},a]}}function Fo(e){let t=e.regex,n=e.COMMENT(`--`,`$`),r={scope:`string`,variants:[{begin:/'/,end:/'/,contains:[{match:/''/}]}]},i={begin:/"/,end:/"/,contains:[{match:/""/}]},a=[`true`,`false`,`unknown`],o=[`double precision`,`large object`,`with timezone`,`without timezone`],s=`bigint.binary.blob.boolean.char.character.clob.date.dec.decfloat.decimal.float.int.integer.interval.nchar.nclob.national.numeric.real.row.smallint.time.timestamp.varchar.varying.varbinary`.split(`.`),c=[`add`,`asc`,`collation`,`desc`,`final`,`first`,`last`,`view`],l=`abs.acos.all.allocate.alter.and.any.are.array.array_agg.array_max_cardinality.as.asensitive.asin.asymmetric.at.atan.atomic.authorization.avg.begin.begin_frame.begin_partition.between.bigint.binary.blob.boolean.both.by.call.called.cardinality.cascaded.case.cast.ceil.ceiling.char.char_length.character.character_length.check.classifier.clob.close.coalesce.collate.collect.column.commit.condition.connect.constraint.contains.convert.copy.corr.corresponding.cos.cosh.count.covar_pop.covar_samp.create.cross.cube.cume_dist.current.current_catalog.current_date.current_default_transform_group.current_path.current_role.current_row.current_schema.current_time.current_timestamp.current_path.current_role.current_transform_group_for_type.current_user.cursor.cycle.date.day.deallocate.dec.decimal.decfloat.declare.default.define.delete.dense_rank.deref.describe.deterministic.disconnect.distinct.double.drop.dynamic.each.element.else.empty.end.end_frame.end_partition.end-exec.equals.escape.every.except.exec.execute.exists.exp.external.extract.false.fetch.filter.first_value.float.floor.for.foreign.frame_row.free.from.full.function.fusion.get.global.grant.group.grouping.groups.having.hold.hour.identity.in.indicator.initial.inner.inout.insensitive.insert.int.integer.intersect.intersection.interval.into.is.join.json_array.json_arrayagg.json_exists.json_object.json_objectagg.json_query.json_table.json_table_primitive.json_value.lag.language.large.last_value.lateral.lead.leading.left.like.like_regex.listagg.ln.local.localtime.localtimestamp.log.log10.lower.match.match_number.match_recognize.matches.max.member.merge.method.min.minute.mod.modifies.module.month.multiset.national.natural.nchar.nclob.new.no.none.normalize.not.nth_value.ntile.null.nullif.numeric.octet_length.occurrences_regex.of.offset.old.omit.on.one.only.open.or.order.out.outer.over.overlaps.overlay.parameter.partition.pattern.per.percent.percent_rank.percentile_cont.percentile_disc.period.portion.position.position_regex.power.precedes.precision.prepare.primary.procedure.ptf.range.rank.reads.real.recursive.ref.references.referencing.regr_avgx.regr_avgy.regr_count.regr_intercept.regr_r2.regr_slope.regr_sxx.regr_sxy.regr_syy.release.result.return.returns.revoke.right.rollback.rollup.row.row_number.rows.running.savepoint.scope.scroll.search.second.seek.select.sensitive.session_user.set.show.similar.sin.sinh.skip.smallint.some.specific.specifictype.sql.sqlexception.sqlstate.sqlwarning.sqrt.start.static.stddev_pop.stddev_samp.submultiset.subset.substring.substring_regex.succeeds.sum.symmetric.system.system_time.system_user.table.tablesample.tan.tanh.then.time.timestamp.timezone_hour.timezone_minute.to.trailing.translate.translate_regex.translation.treat.trigger.trim.trim_array.true.truncate.uescape.union.unique.unknown.unnest.update.upper.user.using.value.values.value_of.var_pop.var_samp.varbinary.varchar.varying.versioning.when.whenever.where.width_bucket.window.with.within.without.year`.split(`.`),u=`abs.acos.array_agg.asin.atan.avg.cast.ceil.ceiling.coalesce.corr.cos.cosh.count.covar_pop.covar_samp.cume_dist.dense_rank.deref.element.exp.extract.first_value.floor.json_array.json_arrayagg.json_exists.json_object.json_objectagg.json_query.json_table.json_table_primitive.json_value.lag.last_value.lead.listagg.ln.log.log10.lower.max.min.mod.nth_value.ntile.nullif.percent_rank.percentile_cont.percentile_disc.position.position_regex.power.rank.regr_avgx.regr_avgy.regr_count.regr_intercept.regr_r2.regr_slope.regr_sxx.regr_sxy.regr_syy.row_number.sin.sinh.sqrt.stddev_pop.stddev_samp.substring.substring_regex.sum.tan.tanh.translate.translate_regex.treat.trim.trim_array.unnest.upper.value_of.var_pop.var_samp.width_bucket`.split(`.`),d=[`current_catalog`,`current_date`,`current_default_transform_group`,`current_path`,`current_role`,`current_schema`,`current_transform_group_for_type`,`current_user`,`session_user`,`system_time`,`system_user`,`current_time`,`localtime`,`current_timestamp`,`localtimestamp`],f=[`create table`,`insert into`,`primary key`,`foreign key`,`not null`,`alter table`,`add constraint`,`grouping sets`,`on overflow`,`character set`,`respect nulls`,`ignore nulls`,`nulls first`,`nulls last`,`depth first`,`breadth first`],p=u,m=[...l,...c].filter(e=>!u.includes(e)),h={scope:`variable`,match:/@[a-z0-9][a-z0-9_]*/},g={scope:`operator`,match:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0},_={match:t.concat(/\b/,t.either(...p),/\s*\(/),relevance:0,keywords:{built_in:p}};function v(e){return t.concat(/\b/,t.either(...e.map(e=>e.replace(/\s+/,`\\s+`))),/\b/)}let y={scope:`keyword`,match:v(f),relevance:0};function b(e,{exceptions:t,when:n}={}){let r=n;return t||=[],e.map(e=>e.match(/\|\d+$/)||t.includes(e)?e:r(e)?`${e}|0`:e)}return{name:`SQL`,case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:b(m,{when:e=>e.length<3}),literal:a,type:s,built_in:d},contains:[{scope:`type`,match:v(o)},y,_,h,r,i,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,g]}}var Io=`[A-Za-z$_][0-9A-Za-z$_]*`,Lo=`as.in.of.if.for.while.finally.var.new.function.do.return.void.else.break.catch.instanceof.with.throw.case.default.try.switch.continue.typeof.delete.let.yield.const.class.debugger.async.await.static.import.from.export.extends.using`.split(`.`),Ro=[`true`,`false`,`null`,`undefined`,`NaN`,`Infinity`],zo=`Object.Function.Boolean.Symbol.Math.Date.Number.BigInt.String.RegExp.Array.Float32Array.Float64Array.Int8Array.Uint8Array.Uint8ClampedArray.Int16Array.Int32Array.Uint16Array.Uint32Array.BigInt64Array.BigUint64Array.Set.Map.WeakSet.WeakMap.ArrayBuffer.SharedArrayBuffer.Atomics.DataView.JSON.Promise.Generator.GeneratorFunction.AsyncFunction.Reflect.Proxy.Intl.WebAssembly`.split(`.`),Bo=[`Error`,`EvalError`,`InternalError`,`RangeError`,`ReferenceError`,`SyntaxError`,`TypeError`,`URIError`],Vo=[`setInterval`,`setTimeout`,`clearInterval`,`clearTimeout`,`require`,`exports`,`eval`,`isFinite`,`isNaN`,`parseFloat`,`parseInt`,`decodeURI`,`decodeURIComponent`,`encodeURI`,`encodeURIComponent`,`escape`,`unescape`],Ho=[`arguments`,`this`,`super`,`console`,`window`,`document`,`localStorage`,`sessionStorage`,`module`,`global`],Uo=[].concat(Vo,zo,Bo);function Wo(e){let t=e.regex,n=(e,{after:t})=>{let n=`</`+e[0].slice(1);return e.input.indexOf(n,t)!==-1},r=Io,i={begin:`<>`,end:`</>`},a=/<[A-Za-z0-9\\._:-]+\s*\/>/,o={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,t)=>{let r=e[0].length+e.index,i=e.input[r];if(i===`<`||i===`,`){t.ignoreMatch();return}i===`>`&&(n(e,{after:r})||t.ignoreMatch());let a,o=e.input.substring(r);if(a=o.match(/^\s*=/)){t.ignoreMatch();return}if((a=o.match(/^\s+extends\s+/))&&a.index===0){t.ignoreMatch();return}}},s={$pattern:Io,keyword:Lo,literal:Ro,built_in:Uo,"variable.language":Ho},c=`[0-9](_?[0-9])*`,l=`\\.(${c})`,u=`0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*`,d={className:`number`,variants:[{begin:`(\\b(${u})((${l})|\\.)?|(${l}))[eE][+-]?(${c})\\b`},{begin:`\\b(${u})\\b((${l})\\b|\\.)?|(${l})\\b`},{begin:`\\b(0|[1-9](_?[0-9])*)n\\b`},{begin:`\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b`},{begin:`\\b0[bB][0-1](_?[0-1])*n?\\b`},{begin:`\\b0[oO][0-7](_?[0-7])*n?\\b`},{begin:`\\b0[0-7]+n?\\b`}],relevance:0},f={className:`subst`,begin:`\\$\\{`,end:`\\}`,keywords:s,contains:[]},p={begin:".?html`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`xml`}},m={begin:".?css`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`css`}},h={begin:".?gql`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`graphql`}},g={className:`string`,begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,f]},_={className:`comment`,variants:[e.COMMENT(/\/\*\*(?!\/)/,`\\*/`,{relevance:0,contains:[{begin:`(?=@[A-Za-z]+)`,relevance:0,contains:[{className:`doctag`,begin:`@[A-Za-z]+`},{className:`type`,begin:`\\{`,end:`\\}`,excludeEnd:!0,excludeBegin:!0,relevance:0},{className:`variable`,begin:`[A-Za-z$_][0-9A-Za-z$_]*(?=\\s*(-)|$)`,endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},v=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,{match:/\$\d+/},d];f.contains=v.concat({begin:/\{/,end:/\}/,keywords:s,contains:[`self`].concat(v)});let y=[].concat(_,f.contains),b=y.concat([{begin:/(\s*)\(/,end:/\)/,keywords:s,contains:[`self`].concat(y)}]),x={className:`params`,begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,`(`,t.concat(/\./,r),`)*`)],scope:{1:`keyword`,3:`title.class`,5:`keyword`,7:`title.class.inherited`}},{match:[/class/,/\s+/,r],scope:{1:`keyword`,3:`title.class`}}]},C={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:`title.class`,keywords:{_:[...zo,...Bo]}},w={label:`use_strict`,className:`meta`,relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},T={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:`keyword`,3:`title.function`},label:`func.def`,contains:[x],illegal:/%/},E={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:`variable.constant`};function D(e){return t.concat(`(?!`,e.join(`|`),`)`)}let O={match:t.concat(/\b/,D([...Vo,`super`,`import`].map(e=>`${e}\\s*\\(`)),r,t.lookahead(/\s*\(/)),className:`title.function`,relevance:0},k={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:`prototype`,className:`property`,relevance:0},A={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:`keyword`,3:`title.function`},contains:[{begin:/\(\)/},x]},j=`(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|`+e.UNDERSCORE_IDENT_RE+`)\\s*=>`,M={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(j)],keywords:`async`,className:{1:`keyword`,3:`title.function`},contains:[x]};return{name:`JavaScript`,aliases:[`js`,`jsx`,`mjs`,`cjs`],keywords:s,exports:{PARAMS_CONTAINS:b,CLASS_REFERENCE:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:`shebang`,binary:`node`,relevance:5}),w,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,_,{match:/\$\d+/},d,C,{scope:`attr`,match:r+t.lookahead(`:`),relevance:0},M,{begin:`(`+e.RE_STARTERS_RE+`|\\b(case|return|throw)\\b)\\s*`,keywords:`return throw case`,relevance:0,contains:[_,e.REGEXP_MODE,{className:`function`,begin:j,returnBegin:!0,end:`\\s*=>`,contains:[{className:`params`,variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:i.begin,end:i.end},{match:a},{begin:o.begin,"on:begin":o.isTrulyOpeningTag,end:o.end}],subLanguage:`xml`,contains:[{begin:o.begin,end:o.end,skip:!0,contains:[`self`]}]}]},T,{beginKeywords:`while if switch catch for`},{begin:`\\b(?!function)`+e.UNDERSCORE_IDENT_RE+`\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{`,returnBegin:!0,label:`func.def`,contains:[x,e.inherit(e.TITLE_MODE,{begin:r,className:`title.function`})]},{match:/\.\.\./,relevance:0},k,{match:`\\$[A-Za-z$_][0-9A-Za-z$_]*`,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:`title.function`},contains:[x]},O,E,S,A,{match:/\$[(.]/}]}}function Go(e){let t=e.regex,n=Wo(e),r=Io,i=[`any`,`void`,`number`,`boolean`,`string`,`object`,`never`,`symbol`,`bigint`,`unknown`],a={begin:[/namespace/,/\s+/,e.IDENT_RE],beginScope:{1:`keyword`,3:`title.class`}},o={beginKeywords:`interface`,end:/\{/,excludeEnd:!0,keywords:{keyword:`interface extends`,built_in:i},contains:[n.exports.CLASS_REFERENCE]},s={className:`meta`,relevance:10,begin:/^\s*['"]use strict['"]/},c={$pattern:Io,keyword:Lo.concat([`type`,`interface`,`public`,`private`,`protected`,`implements`,`declare`,`abstract`,`readonly`,`enum`,`override`,`satisfies`]),literal:Ro,built_in:Uo.concat(i),"variable.language":Ho},l={className:`meta`,begin:`@[A-Za-z$_][0-9A-Za-z$_]*`},u=(e,t,n)=>{let r=e.contains.findIndex(e=>e.label===t);if(r===-1)throw Error(`can not find mode to replace`);e.contains.splice(r,1,n)};Object.assign(n.keywords,c),n.exports.PARAMS_CONTAINS.push(l);let d=n.contains.find(e=>e.scope===`attr`),f=Object.assign({},d,{match:t.concat(r,t.lookahead(/\s*\?:/))});n.exports.PARAMS_CONTAINS.push([n.exports.CLASS_REFERENCE,d,f]),n.contains=n.contains.concat([l,a,o,f]),u(n,`shebang`,e.SHEBANG()),u(n,`use_strict`,s);let p=n.contains.find(e=>e.label===`func.def`);return p.relevance=0,Object.assign(n,{name:`TypeScript`,aliases:[`ts`,`tsx`,`mts`,`cts`]}),n}function Ko(e){let t=e.regex,n=t.concat(/[\p{L}_]/u,t.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),r=/[\p{L}0-9._:-]+/u,i={className:`symbol`,begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},a={begin:/\s/,contains:[{className:`keyword`,begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},o=e.inherit(a,{begin:/\(/,end:/\)/}),s=e.inherit(e.APOS_STRING_MODE,{className:`string`}),c=e.inherit(e.QUOTE_STRING_MODE,{className:`string`}),l={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:`attr`,begin:r,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:`string`,endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[i]},{begin:/'/,end:/'/,contains:[i]},{begin:/[^\s"'=<>`]+/}]}]}]};return{name:`HTML, XML`,aliases:[`html`,`xhtml`,`rss`,`atom`,`xjb`,`xsd`,`xsl`,`plist`,`wsf`,`svg`],case_insensitive:!0,unicodeRegex:!0,contains:[{className:`meta`,begin:/<![a-z]/,end:/>/,relevance:10,contains:[a,c,s,o,{begin:/\[/,end:/\]/,contains:[{className:`meta`,begin:/<![a-z]/,end:/>/,contains:[a,o,c,s]}]}]},e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},i,{className:`meta`,end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[c]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:`tag`,begin:/<style(?=\s|>)/,end:/>/,keywords:{name:`style`},contains:[l],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:[`css`,`xml`]}},{className:`tag`,begin:/<script(?=\s|>)/,end:/>/,keywords:{name:`script`},contains:[l],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:[`javascript`,`handlebars`,`xml`]}},{className:`tag`,begin:/<>|<\/>/},{className:`tag`,begin:t.concat(/</,t.lookahead(t.concat(n,t.either(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:`name`,begin:n,relevance:0,starts:l}]},{className:`tag`,begin:t.concat(/<\//,t.lookahead(t.concat(n,/>/))),contains:[{className:`name`,begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}function qo(e){let t=`true false yes no null`,n={className:`attr`,variants:[{begin:/[\w*@][\w*@ :()\./-]*:(?=[ \t]|$)/},{begin:/"[\w*@][\w*@ :()\./-]*":(?=[ \t]|$)/},{begin:/'[\w*@][\w*@ :()\./-]*':(?=[ \t]|$)/}]},r={className:`template-variable`,variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},i={className:`string`,relevance:0,begin:/'/,end:/'/,contains:[{match:/''/,scope:`char.escape`,relevance:0}]},a={className:`string`,relevance:0,variants:[{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,r]},o=e.inherit(a,{variants:[{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),s={className:`number`,begin:`\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b`},c={end:`,`,endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},l={begin:/\{/,end:/\}/,contains:[c],illegal:`\\n`,relevance:0},u={begin:`\\[`,end:`\\]`,contains:[c],illegal:`\\n`,relevance:0},d=[n,{className:`meta`,begin:`^---\\s*$`,relevance:10},{className:`string`,begin:`[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*`},{begin:`<%[%=-]?`,end:`[%-]?%>`,subLanguage:`ruby`,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:`type`,begin:`!\\w+![\\w#;/?:@&=+$,.~*'()[\\]]+`},{className:`type`,begin:`!<[\\w#;/?:@&=+$,.~*'()[\\]]+>`},{className:`type`,begin:`![\\w#;/?:@&=+$,.~*'()[\\]]+`},{className:`type`,begin:`!![\\w#;/?:@&=+$,.~*'()[\\]]+`},{className:`meta`,begin:`&`+e.UNDERSCORE_IDENT_RE+`$`},{className:`meta`,begin:`\\*`+e.UNDERSCORE_IDENT_RE+`$`},{className:`bullet`,begin:`-(?=[ ]|$)`,relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},s,{className:`number`,begin:e.C_NUMBER_RE+`\\b`,relevance:0},l,u,i,a],f=[...d];return f.pop(),f.push(o),c.contains=f,{name:`YAML`,case_insensitive:!0,aliases:[`yml`],contains:d}}var Jo={bash:io,sh:io,shell:io,css:mo,go:ho,golang:ho,java:xo,javascript:Ao,js:Ao,json:jo,markdown:Mo,md:Mo,python:No,py:No,rust:Po,rs:Po,sql:Fo,typescript:Go,ts:Go,xml:Ko,html:Ko,yaml:qo,yml:qo};for(let[e,t]of Object.entries(Jo))ro.registerLanguage(e,t);function Yo(e){let t=e.split(`
@@ -125,9 +125,9 @@ ${e}</tr>
125
125
  `}strong({tokens:e}){return`<strong>${this.parser.parseInline(e)}</strong>`}em({tokens:e}){return`<em>${this.parser.parseInline(e)}</em>`}codespan({text:e}){return`<code>${mc(e,!0)}</code>`}br(e){return`<br>`}del({tokens:e}){return`<del>${this.parser.parseInline(e)}</del>`}link({href:e,title:t,tokens:n}){let r=this.parser.parseInline(n),i=hc(e);if(i===null)return r;e=i;let a=`<a href="`+e+`"`;return t&&(a+=` title="`+mc(t)+`"`),a+=`>`+r+`</a>`,a}image({href:e,title:t,text:n,tokens:r}){r&&(n=this.parser.parseInline(r,this.parser.textRenderer));let i=hc(e);if(i===null)return mc(n);e=i;let a=`<img src="${e}" alt="${mc(n)}"`;return t&&(a+=` title="${mc(t)}"`),a+=`>`,a}text(e){return`tokens`in e&&e.tokens?this.parser.parseInline(e.tokens):`escaped`in e&&e.escaped?e.text:mc(e.text)}},Ec=class{strong({text:e}){return e}em({text:e}){return e}codespan({text:e}){return e}del({text:e}){return e}html({text:e}){return e}text({text:e}){return e}link({text:e}){return``+e}image({text:e}){return``+e}br(){return``}checkbox({raw:e}){return e}},Dc=class e{constructor(e){N(this,`options`),N(this,`renderer`),N(this,`textRenderer`),this.options=e||ts,this.options.renderer=this.options.renderer||new Tc,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new Ec}static parse(t,n){return new e(n).parse(t)}static parseInline(t,n){return new e(n).parseInline(t)}parse(e){var t;this.renderer.parser=this;let n=``;for(let r=0;r<e.length;r++){let i=e[r];if((t=this.options.extensions?.renderers)!=null&&t[i.type]){let e=i,t=this.options.extensions.renderers[e.type].call({parser:this},e);if(t!==!1||![`space`,`hr`,`heading`,`code`,`table`,`blockquote`,`list`,`html`,`def`,`paragraph`,`text`].includes(e.type)){n+=t||``;continue}}let a=i;switch(a.type){case`space`:n+=this.renderer.space(a);break;case`hr`:n+=this.renderer.hr(a);break;case`heading`:n+=this.renderer.heading(a);break;case`code`:n+=this.renderer.code(a);break;case`table`:n+=this.renderer.table(a);break;case`blockquote`:n+=this.renderer.blockquote(a);break;case`list`:n+=this.renderer.list(a);break;case`checkbox`:n+=this.renderer.checkbox(a);break;case`html`:n+=this.renderer.html(a);break;case`def`:n+=this.renderer.def(a);break;case`paragraph`:n+=this.renderer.paragraph(a);break;case`text`:n+=this.renderer.text(a);break;default:{let e=`Token with "`+a.type+`" type was not found.`;if(this.options.silent)return console.error(e),``;throw Error(e)}}}return n}parseInline(e,t=this.renderer){var n;this.renderer.parser=this;let r=``;for(let i=0;i<e.length;i++){let a=e[i];if((n=this.options.extensions?.renderers)!=null&&n[a.type]){let e=this.options.extensions.renderers[a.type].call({parser:this},a);if(e!==!1||![`escape`,`html`,`link`,`image`,`strong`,`em`,`codespan`,`br`,`del`,`text`].includes(a.type)){r+=e||``;continue}}let o=a;switch(o.type){case`escape`:r+=t.text(o);break;case`html`:r+=t.html(o);break;case`link`:r+=t.link(o);break;case`image`:r+=t.image(o);break;case`checkbox`:r+=t.checkbox(o);break;case`strong`:r+=t.strong(o);break;case`em`:r+=t.em(o);break;case`codespan`:r+=t.codespan(o);break;case`br`:r+=t.br(o);break;case`del`:r+=t.del(o);break;case`text`:r+=t.text(o);break;default:{let e=`Token with "`+o.type+`" type was not found.`;if(this.options.silent)return console.error(e),``;throw Error(e)}}}return r}},Oc,kc=(Oc=class{constructor(e){N(this,`options`),N(this,`block`),this.options=e||ts}preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}emStrongMask(e){return e}provideLexer(e=this.block){return e?wc.lex:wc.lexInline}provideParser(e=this.block){return e?Dc.parse:Dc.parseInline}},N(Oc,`passThroughHooks`,new Set([`preprocess`,`postprocess`,`processAllTokens`,`emStrongMask`])),N(Oc,`passThroughHooksRespectAsync`,new Set([`preprocess`,`postprocess`,`processAllTokens`])),Oc),Ac=class{constructor(...e){N(this,`defaults`,es()),N(this,`options`,this.setOptions),N(this,`parse`,this.parseMarkdown(!0)),N(this,`parseInline`,this.parseMarkdown(!1)),N(this,`Parser`,Dc),N(this,`Renderer`,Tc),N(this,`TextRenderer`,Ec),N(this,`Lexer`,wc),N(this,`Tokenizer`,Cc),N(this,`Hooks`,kc),this.use(...e)}walkTokens(e,t){var n;let r=[];for(let i of e)switch(r=r.concat(t.call(this,i)),i.type){case`table`:{let e=i;for(let n of e.header)r=r.concat(this.walkTokens(n.tokens,t));for(let n of e.rows)for(let e of n)r=r.concat(this.walkTokens(e.tokens,t));break}case`list`:{let e=i;r=r.concat(this.walkTokens(e.items,t));break}default:{let e=i;(n=this.defaults.extensions?.childTokens)!=null&&n[e.type]?this.defaults.extensions.childTokens[e.type].forEach(n=>{let i=e[n].flat(1/0);r=r.concat(this.walkTokens(i,t))}):e.tokens&&(r=r.concat(this.walkTokens(e.tokens,t)))}}return r}use(...e){let t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(e=>{let n={...e};if(n.async=this.defaults.async||n.async||!1,e.extensions&&(e.extensions.forEach(e=>{if(!e.name)throw Error(`extension name required`);if(`renderer`in e){let n=t.renderers[e.name];n?t.renderers[e.name]=function(...t){let r=e.renderer.apply(this,t);return r===!1&&(r=n.apply(this,t)),r}:t.renderers[e.name]=e.renderer}if(`tokenizer`in e){if(!e.level||e.level!==`block`&&e.level!==`inline`)throw Error(`extension level must be 'block' or 'inline'`);let n=t[e.level];n?n.unshift(e.tokenizer):t[e.level]=[e.tokenizer],e.start&&(e.level===`block`?t.startBlock?t.startBlock.push(e.start):t.startBlock=[e.start]:e.level===`inline`&&(t.startInline?t.startInline.push(e.start):t.startInline=[e.start]))}`childTokens`in e&&e.childTokens&&(t.childTokens[e.name]=e.childTokens)}),n.extensions=t),e.renderer){let t=this.defaults.renderer||new Tc(this.defaults);for(let n in e.renderer){if(!(n in t))throw Error(`renderer '${n}' does not exist`);if([`options`,`parser`].includes(n))continue;let r=n,i=e.renderer[r],a=t[r];t[r]=(...e)=>{let n=i.apply(t,e);return n===!1&&(n=a.apply(t,e)),n||``}}n.renderer=t}if(e.tokenizer){let t=this.defaults.tokenizer||new Cc(this.defaults);for(let n in e.tokenizer){if(!(n in t))throw Error(`tokenizer '${n}' does not exist`);if([`options`,`rules`,`lexer`].includes(n))continue;let r=n,i=e.tokenizer[r],a=t[r];t[r]=(...e)=>{let n=i.apply(t,e);return n===!1&&(n=a.apply(t,e)),n}}n.tokenizer=t}if(e.hooks){let t=this.defaults.hooks||new kc;for(let n in e.hooks){if(!(n in t))throw Error(`hook '${n}' does not exist`);if([`options`,`block`].includes(n))continue;let r=n,i=e.hooks[r],a=t[r];kc.passThroughHooks.has(n)?t[r]=e=>{if(this.defaults.async&&kc.passThroughHooksRespectAsync.has(n))return(async()=>{let n=await i.call(t,e);return a.call(t,n)})();let r=i.call(t,e);return a.call(t,r)}:t[r]=(...e)=>{if(this.defaults.async)return(async()=>{let n=await i.apply(t,e);return n===!1&&(n=await a.apply(t,e)),n})();let n=i.apply(t,e);return n===!1&&(n=a.apply(t,e)),n}}n.hooks=t}if(e.walkTokens){let t=this.defaults.walkTokens,r=e.walkTokens;n.walkTokens=function(e){let n=[];return n.push(r.call(this,e)),t&&(n=n.concat(t.call(this,e))),n}}this.defaults={...this.defaults,...n}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return wc.lex(e,t??this.defaults)}parser(e,t){return Dc.parse(e,t??this.defaults)}parseMarkdown(e){return(t,n)=>{let r={...n},i={...this.defaults,...r},a=this.onError(!!i.silent,!!i.async);if(this.defaults.async===!0&&r.async===!1)return a(Error(`marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise.`));if(typeof t>`u`||t===null)return a(Error(`marked(): input parameter is undefined or null`));if(typeof t!=`string`)return a(Error(`marked(): input parameter is of type `+Object.prototype.toString.call(t)+`, string expected`));if(i.hooks&&(i.hooks.options=i,i.hooks.block=e),i.async)return(async()=>{let n=i.hooks?await i.hooks.preprocess(t):t,r=await(i.hooks?await i.hooks.provideLexer(e):e?wc.lex:wc.lexInline)(n,i),a=i.hooks?await i.hooks.processAllTokens(r):r;i.walkTokens&&await Promise.all(this.walkTokens(a,i.walkTokens));let o=await(i.hooks?await i.hooks.provideParser(e):e?Dc.parse:Dc.parseInline)(a,i);return i.hooks?await i.hooks.postprocess(o):o})().catch(a);try{i.hooks&&(t=i.hooks.preprocess(t));let n=(i.hooks?i.hooks.provideLexer(e):e?wc.lex:wc.lexInline)(t,i);i.hooks&&(n=i.hooks.processAllTokens(n)),i.walkTokens&&this.walkTokens(n,i.walkTokens);let r=(i.hooks?i.hooks.provideParser(e):e?Dc.parse:Dc.parseInline)(n,i);return i.hooks&&(r=i.hooks.postprocess(r)),r}catch(e){return a(e)}}}onError(e,t){return n=>{if(n.message+=`
126
126
  Please report this to https://github.com/markedjs/marked.`,e){let e=`<p>An error occurred:</p><pre>`+mc(n.message+``,!0)+`</pre>`;return t?Promise.resolve(e):e}if(t)return Promise.reject(n);throw n}}},jc=new Ac;function Z(e,t){return jc.parse(e,t)}Z.options=Z.setOptions=function(e){return jc.setOptions(e),Z.defaults=jc.defaults,ns(Z.defaults),Z},Z.getDefaults=es,Z.defaults=ts,Z.use=function(...e){return jc.use(...e),Z.defaults=jc.defaults,ns(Z.defaults),Z},Z.walkTokens=function(e,t){return jc.walkTokens(e,t)},Z.parseInline=jc.parseInline,Z.Parser=Dc,Z.parser=Dc.parse,Z.Renderer=Tc,Z.TextRenderer=Ec,Z.Lexer=wc,Z.lexer=wc.lex,Z.Tokenizer=Cc,Z.Hooks=kc,Z.parse=Z,Z.options,Z.setOptions,Z.use,Z.walkTokens,Z.parseInline,Dc.parse,wc.lex;function Mc(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function Nc(e){if(Array.isArray(e))return e}function Pc(e,t){var n=e==null?null:typeof Symbol<`u`&&e[Symbol.iterator]||e[`@@iterator`];if(n!=null){var r,i,a,o,s=[],c=!0,l=!1;try{if(a=(n=n.call(e)).next,t!==0)for(;!(c=(r=a.call(n)).done)&&(s.push(r.value),s.length!==t);c=!0);}catch(e){l=!0,i=e}finally{try{if(!c&&n.return!=null&&(o=n.return(),Object(o)!==o))return}finally{if(l)throw i}}return s}}function Fc(){throw TypeError(`Invalid attempt to destructure non-iterable instance.
127
127
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ic(e,t){return Nc(e)||Pc(e,t)||Lc(e,t)||Fc()}function Lc(e,t){if(e){if(typeof e==`string`)return Mc(e,t);var n={}.toString.call(e).slice(8,-1);return n===`Object`&&e.constructor&&(n=e.constructor.name),n===`Map`||n===`Set`?Array.from(e):n===`Arguments`||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Mc(e,t):void 0}}var Rc=Object.entries,zc=Object.setPrototypeOf,Bc=Object.isFrozen,Vc=Object.getPrototypeOf,Hc=Object.getOwnPropertyDescriptor,Uc=Object.freeze,Wc=Object.seal,Gc=Object.create,Kc=typeof Reflect<`u`&&Reflect,qc=Kc.apply,Jc=Kc.construct;Uc||=function(e){return e},Wc||=function(e){return e},qc||=function(e,t){var n=[...arguments].slice(2);return e.apply(t,n)},Jc||=function(e){return new e(...[...arguments].slice(1))};var Yc=ml(Array.prototype.forEach),Xc=ml(Array.prototype.lastIndexOf),Zc=ml(Array.prototype.pop),Qc=ml(Array.prototype.push),$c=ml(Array.prototype.splice),el=Array.isArray,tl=ml(String.prototype.toLowerCase),nl=ml(String.prototype.toString),rl=ml(String.prototype.match),il=ml(String.prototype.replace),al=ml(String.prototype.indexOf),ol=ml(String.prototype.trim),sl=ml(Number.prototype.toString),cl=ml(Boolean.prototype.toString),ll=typeof BigInt>`u`?null:ml(BigInt.prototype.toString),ul=typeof Symbol>`u`?null:ml(Symbol.prototype.toString),Q=ml(Object.prototype.hasOwnProperty),dl=ml(Object.prototype.toString),fl=ml(RegExp.prototype.test),pl=hl(TypeError);function ml(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);var n=[...arguments].slice(1);return qc(e,t,n)}}function hl(e){return function(){return Jc(e,[...arguments])}}function $(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:tl;if(zc&&zc(e,null),!el(t))return e;let r=t.length;for(;r--;){let i=t[r];if(typeof i==`string`){let e=n(i);e!==i&&(Bc(t)||(t[r]=e),i=e)}e[i]=!0}return e}function gl(e){for(let t=0;t<e.length;t++)Q(e,t)||(e[t]=null);return e}function _l(e){let t=Gc(null);for(let r of Rc(e)){var n=Ic(r,2);let i=n[0],a=n[1];Q(e,i)&&(el(a)?t[i]=gl(a):a&&typeof a==`object`&&a.constructor===Object?t[i]=_l(a):t[i]=a)}return t}function vl(e){switch(typeof e){case`string`:return e;case`number`:return sl(e);case`boolean`:return cl(e);case`bigint`:return ll?ll(e):`0`;case`symbol`:return ul?ul(e):`Symbol()`;case`undefined`:return dl(e);case`function`:case`object`:{if(e===null)return dl(e);let t=e,n=yl(t,`toString`);if(typeof n==`function`){let e=n(t);return typeof e==`string`?e:dl(e)}return dl(e)}default:return dl(e)}}function yl(e,t){for(;e!==null;){let n=Hc(e,t);if(n){if(n.get)return ml(n.get);if(typeof n.value==`function`)return ml(n.value)}e=Vc(e)}function n(){return null}return n}function bl(e){try{return fl(e,``),!0}catch{return!1}}var xl=Uc(`a.abbr.acronym.address.area.article.aside.audio.b.bdi.bdo.big.blink.blockquote.body.br.button.canvas.caption.center.cite.code.col.colgroup.content.data.datalist.dd.decorator.del.details.dfn.dialog.dir.div.dl.dt.element.em.fieldset.figcaption.figure.font.footer.form.h1.h2.h3.h4.h5.h6.head.header.hgroup.hr.html.i.img.input.ins.kbd.label.legend.li.main.map.mark.marquee.menu.menuitem.meter.nav.nobr.ol.optgroup.option.output.p.picture.pre.progress.q.rp.rt.ruby.s.samp.search.section.select.shadow.slot.small.source.spacer.span.strike.strong.style.sub.summary.sup.table.tbody.td.template.textarea.tfoot.th.thead.time.tr.track.tt.u.ul.var.video.wbr`.split(`.`)),Sl=Uc(`svg.a.altglyph.altglyphdef.altglyphitem.animatecolor.animatemotion.animatetransform.circle.clippath.defs.desc.ellipse.enterkeyhint.exportparts.filter.font.g.glyph.glyphref.hkern.image.inputmode.line.lineargradient.marker.mask.metadata.mpath.part.path.pattern.polygon.polyline.radialgradient.rect.stop.style.switch.symbol.text.textpath.title.tref.tspan.view.vkern`.split(`.`)),Cl=Uc([`feBlend`,`feColorMatrix`,`feComponentTransfer`,`feComposite`,`feConvolveMatrix`,`feDiffuseLighting`,`feDisplacementMap`,`feDistantLight`,`feDropShadow`,`feFlood`,`feFuncA`,`feFuncB`,`feFuncG`,`feFuncR`,`feGaussianBlur`,`feImage`,`feMerge`,`feMergeNode`,`feMorphology`,`feOffset`,`fePointLight`,`feSpecularLighting`,`feSpotLight`,`feTile`,`feTurbulence`]),wl=Uc([`animate`,`color-profile`,`cursor`,`discard`,`font-face`,`font-face-format`,`font-face-name`,`font-face-src`,`font-face-uri`,`foreignobject`,`hatch`,`hatchpath`,`mesh`,`meshgradient`,`meshpatch`,`meshrow`,`missing-glyph`,`script`,`set`,`solidcolor`,`unknown`,`use`]),Tl=Uc(`math.menclose.merror.mfenced.mfrac.mglyph.mi.mlabeledtr.mmultiscripts.mn.mo.mover.mpadded.mphantom.mroot.mrow.ms.mspace.msqrt.mstyle.msub.msup.msubsup.mtable.mtd.mtext.mtr.munder.munderover.mprescripts`.split(`.`)),El=Uc([`maction`,`maligngroup`,`malignmark`,`mlongdiv`,`mscarries`,`mscarry`,`msgroup`,`mstack`,`msline`,`msrow`,`semantics`,`annotation`,`annotation-xml`,`mprescripts`,`none`]),Dl=Uc([`#text`]),Ol=Uc(`accept.action.align.alt.autocapitalize.autocomplete.autopictureinpicture.autoplay.background.bgcolor.border.capture.cellpadding.cellspacing.checked.cite.class.clear.color.cols.colspan.command.commandfor.controls.controlslist.coords.crossorigin.datetime.decoding.default.dir.disabled.disablepictureinpicture.disableremoteplayback.download.draggable.enctype.enterkeyhint.exportparts.face.for.headers.height.hidden.high.href.hreflang.id.inert.inputmode.integrity.ismap.kind.label.lang.list.loading.loop.low.max.maxlength.media.method.min.minlength.multiple.muted.name.nonce.noshade.novalidate.nowrap.open.optimum.part.pattern.placeholder.playsinline.popover.popovertarget.popovertargetaction.poster.preload.pubdate.radiogroup.readonly.rel.required.rev.reversed.role.rows.rowspan.spellcheck.scope.selected.shape.size.sizes.slot.span.srclang.start.src.srcset.step.style.summary.tabindex.title.translate.type.usemap.valign.value.width.wrap.xmlns`.split(`.`)),kl=Uc(`accent-height.accumulate.additive.alignment-baseline.amplitude.ascent.attributename.attributetype.azimuth.basefrequency.baseline-shift.begin.bias.by.class.clip.clippathunits.clip-path.clip-rule.color.color-interpolation.color-interpolation-filters.color-profile.color-rendering.cx.cy.d.dx.dy.diffuseconstant.direction.display.divisor.dur.edgemode.elevation.end.exponent.fill.fill-opacity.fill-rule.filter.filterunits.flood-color.flood-opacity.font-family.font-size.font-size-adjust.font-stretch.font-style.font-variant.font-weight.fx.fy.g1.g2.glyph-name.glyphref.gradientunits.gradienttransform.height.href.id.image-rendering.in.in2.intercept.k.k1.k2.k3.k4.kerning.keypoints.keysplines.keytimes.lang.lengthadjust.letter-spacing.kernelmatrix.kernelunitlength.lighting-color.local.marker-end.marker-mid.marker-start.markerheight.markerunits.markerwidth.maskcontentunits.maskunits.max.mask.mask-type.media.method.mode.min.name.numoctaves.offset.operator.opacity.order.orient.orientation.origin.overflow.paint-order.path.pathlength.patterncontentunits.patterntransform.patternunits.points.preservealpha.preserveaspectratio.primitiveunits.r.rx.ry.radius.refx.refy.repeatcount.repeatdur.restart.result.rotate.scale.seed.shape-rendering.slope.specularconstant.specularexponent.spreadmethod.startoffset.stddeviation.stitchtiles.stop-color.stop-opacity.stroke-dasharray.stroke-dashoffset.stroke-linecap.stroke-linejoin.stroke-miterlimit.stroke-opacity.stroke.stroke-width.style.surfacescale.systemlanguage.tabindex.tablevalues.targetx.targety.transform.transform-origin.text-anchor.text-decoration.text-rendering.textlength.type.u1.u2.unicode.values.viewbox.visibility.version.vert-adv-y.vert-origin-x.vert-origin-y.width.word-spacing.wrap.writing-mode.xchannelselector.ychannelselector.x.x1.x2.xmlns.y.y1.y2.z.zoomandpan`.split(`.`)),Al=Uc(`accent.accentunder.align.bevelled.close.columnalign.columnlines.columnspacing.columnspan.denomalign.depth.dir.display.displaystyle.encoding.fence.frame.height.href.id.largeop.length.linethickness.lquote.lspace.mathbackground.mathcolor.mathsize.mathvariant.maxsize.minsize.movablelimits.notation.numalign.open.rowalign.rowlines.rowspacing.rowspan.rspace.rquote.scriptlevel.scriptminsize.scriptsizemultiplier.selection.separator.separators.stretchy.subscriptshift.supscriptshift.symmetric.voffset.width.xmlns`.split(`.`)),jl=Uc([`xlink:href`,`xml:id`,`xlink:title`,`xml:space`,`xmlns:xlink`]),Ml=Wc(/{{[\w\W]*|^[\w\W]*}}/g),Nl=Wc(/<%[\w\W]*|^[\w\W]*%>/g),Pl=Wc(/\${[\w\W]*/g),Fl=Wc(/^data-[\-\w.\u00B7-\uFFFF]+$/),Il=Wc(/^aria-[\-\w]+$/),Ll=Wc(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Rl=Wc(/^(?:\w+script|data):/i),zl=Wc(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Bl=Wc(/^html$/i),Vl=Wc(/^[a-z][.\w]*(-[.\w]+)+$/i),Hl={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,progressingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},Ul=function(){return typeof window>`u`?null:window},Wl=function(e,t){if(typeof e!=`object`||typeof e.createPolicy!=`function`)return null;let n=null,r=`data-tt-policy-suffix`;t&&t.hasAttribute(r)&&(n=t.getAttribute(r));let i=`dompurify`+(n?`#`+n:``);try{return e.createPolicy(i,{createHTML(e){return e},createScriptURL(e){return e}})}catch{return console.warn(`TrustedTypes policy `+i+` could not be created.`),null}},Gl=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}};function Kl(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Ul(),t=e=>Kl(e);if(t.version=`3.4.8`,t.removed=[],!e||!e.document||e.document.nodeType!==Hl.document||!e.Element)return t.isSupported=!1,t;let n=e.document,r=n,i=r.currentScript;e.DocumentFragment;let a=e.HTMLTemplateElement,o=e.Node,s=e.Element,c=e.NodeFilter;e.NamedNodeMap===void 0&&(e.NamedNodeMap||e.MozNamedAttrMap),e.HTMLFormElement;let l=e.DOMParser,u=e.trustedTypes,d=s.prototype,f=yl(d,`cloneNode`),p=yl(d,`remove`),m=yl(d,`nextSibling`),h=yl(d,`childNodes`),g=yl(d,`parentNode`),_=yl(d,`shadowRoot`),v=yl(d,`attributes`),y=o&&o.prototype?yl(o.prototype,`nodeType`):null,b=o&&o.prototype?yl(o.prototype,`nodeName`):null;if(typeof a==`function`){let e=n.createElement(`template`);e.content&&e.content.ownerDocument&&(n=e.content.ownerDocument)}let x,S=``,C=0,w=function(e){if(C>0)throw pl(`The configured TRUSTED_TYPES_POLICY.createHTML must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose createHTML wraps DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.`);C++;try{return x.createHTML(e)}finally{C--}},T=n,E=T.implementation,D=T.createNodeIterator,O=T.createDocumentFragment,k=T.getElementsByTagName,A=r.importNode,j=Gl();t.isSupported=typeof Rc==`function`&&typeof g==`function`&&E&&E.createHTMLDocument!==void 0;let M=Ml,N=Nl,P=Pl,ee=Fl,F=Il,I=Rl,te=zl,ne=Vl,re=Ll,L=null,ie=$({},[...xl,...Sl,...Cl,...Tl,...Dl]),R=null,ae=$({},[...Ol,...kl,...Al,...jl]),z=Object.seal(Gc(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),oe=null,B=null,se=Object.seal(Gc(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}})),ce=!0,le=!0,ue=!1,de=!0,fe=!1,pe=!0,V=!1,me=!1,he=!1,ge=!1,_e=!1,ve=!1,ye=!0,be=!1,xe=`user-content-`,Se=!0,Ce=!1,we={},H=null,U=$({},[`annotation-xml`,`audio`,`colgroup`,`desc`,`foreignobject`,`head`,`iframe`,`math`,`mi`,`mn`,`mo`,`ms`,`mtext`,`noembed`,`noframes`,`noscript`,`plaintext`,`script`,`style`,`svg`,`template`,`thead`,`title`,`video`,`xmp`]),Te=null,Ee=$({},[`audio`,`video`,`img`,`source`,`image`,`track`]),De=null,Oe=$({},[`alt`,`class`,`for`,`id`,`label`,`name`,`pattern`,`placeholder`,`role`,`summary`,`title`,`value`,`style`,`xmlns`]),ke=`http://www.w3.org/1998/Math/MathML`,Ae=`http://www.w3.org/2000/svg`,je=`http://www.w3.org/1999/xhtml`,Me=je,Ne=!1,Pe=null,Fe=$({},[ke,Ae,je],nl),Ie=$({},[`mi`,`mo`,`mn`,`ms`,`mtext`]),Le=$({},[`annotation-xml`]),Re=$({},[`title`,`style`,`font`,`a`,`script`]),ze=null,W=[`application/xhtml+xml`,`text/html`],G=null,Be=null,Ve=n.createElement(`form`),He=function(e){return e instanceof RegExp||e instanceof Function},Ue=function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(Be&&Be===e)return;(!e||typeof e!=`object`)&&(e={}),e=_l(e),ze=W.indexOf(e.PARSER_MEDIA_TYPE)===-1?`text/html`:e.PARSER_MEDIA_TYPE,G=ze===`application/xhtml+xml`?nl:tl,L=Q(e,`ALLOWED_TAGS`)&&el(e.ALLOWED_TAGS)?$({},e.ALLOWED_TAGS,G):ie,R=Q(e,`ALLOWED_ATTR`)&&el(e.ALLOWED_ATTR)?$({},e.ALLOWED_ATTR,G):ae,Pe=Q(e,`ALLOWED_NAMESPACES`)&&el(e.ALLOWED_NAMESPACES)?$({},e.ALLOWED_NAMESPACES,nl):Fe,De=Q(e,`ADD_URI_SAFE_ATTR`)&&el(e.ADD_URI_SAFE_ATTR)?$(_l(Oe),e.ADD_URI_SAFE_ATTR,G):Oe,Te=Q(e,`ADD_DATA_URI_TAGS`)&&el(e.ADD_DATA_URI_TAGS)?$(_l(Ee),e.ADD_DATA_URI_TAGS,G):Ee,H=Q(e,`FORBID_CONTENTS`)&&el(e.FORBID_CONTENTS)?$({},e.FORBID_CONTENTS,G):U,oe=Q(e,`FORBID_TAGS`)&&el(e.FORBID_TAGS)?$({},e.FORBID_TAGS,G):_l({}),B=Q(e,`FORBID_ATTR`)&&el(e.FORBID_ATTR)?$({},e.FORBID_ATTR,G):_l({}),we=Q(e,`USE_PROFILES`)?e.USE_PROFILES&&typeof e.USE_PROFILES==`object`?_l(e.USE_PROFILES):e.USE_PROFILES:!1,ce=e.ALLOW_ARIA_ATTR!==!1,le=e.ALLOW_DATA_ATTR!==!1,ue=e.ALLOW_UNKNOWN_PROTOCOLS||!1,de=e.ALLOW_SELF_CLOSE_IN_ATTR!==!1,fe=e.SAFE_FOR_TEMPLATES||!1,pe=e.SAFE_FOR_XML!==!1,V=e.WHOLE_DOCUMENT||!1,ge=e.RETURN_DOM||!1,_e=e.RETURN_DOM_FRAGMENT||!1,ve=e.RETURN_TRUSTED_TYPE||!1,he=e.FORCE_BODY||!1,ye=e.SANITIZE_DOM!==!1,be=e.SANITIZE_NAMED_PROPS||!1,Se=e.KEEP_CONTENT!==!1,Ce=e.IN_PLACE||!1,re=bl(e.ALLOWED_URI_REGEXP)?e.ALLOWED_URI_REGEXP:Ll,Me=typeof e.NAMESPACE==`string`?e.NAMESPACE:je,Ie=Q(e,`MATHML_TEXT_INTEGRATION_POINTS`)&&e.MATHML_TEXT_INTEGRATION_POINTS&&typeof e.MATHML_TEXT_INTEGRATION_POINTS==`object`?_l(e.MATHML_TEXT_INTEGRATION_POINTS):$({},[`mi`,`mo`,`mn`,`ms`,`mtext`]),Le=Q(e,`HTML_INTEGRATION_POINTS`)&&e.HTML_INTEGRATION_POINTS&&typeof e.HTML_INTEGRATION_POINTS==`object`?_l(e.HTML_INTEGRATION_POINTS):$({},[`annotation-xml`]);let t=Q(e,`CUSTOM_ELEMENT_HANDLING`)&&e.CUSTOM_ELEMENT_HANDLING&&typeof e.CUSTOM_ELEMENT_HANDLING==`object`?_l(e.CUSTOM_ELEMENT_HANDLING):Gc(null);if(z=Gc(null),Q(t,`tagNameCheck`)&&He(t.tagNameCheck)&&(z.tagNameCheck=t.tagNameCheck),Q(t,`attributeNameCheck`)&&He(t.attributeNameCheck)&&(z.attributeNameCheck=t.attributeNameCheck),Q(t,`allowCustomizedBuiltInElements`)&&typeof t.allowCustomizedBuiltInElements==`boolean`&&(z.allowCustomizedBuiltInElements=t.allowCustomizedBuiltInElements),fe&&(le=!1),_e&&(ge=!0),we&&(L=$({},Dl),R=Gc(null),we.html===!0&&($(L,xl),$(R,Ol)),we.svg===!0&&($(L,Sl),$(R,kl),$(R,jl)),we.svgFilters===!0&&($(L,Cl),$(R,kl),$(R,jl)),we.mathMl===!0&&($(L,Tl),$(R,Al),$(R,jl))),se.tagCheck=null,se.attributeCheck=null,Q(e,`ADD_TAGS`)&&(typeof e.ADD_TAGS==`function`?se.tagCheck=e.ADD_TAGS:el(e.ADD_TAGS)&&(L===ie&&(L=_l(L)),$(L,e.ADD_TAGS,G))),Q(e,`ADD_ATTR`)&&(typeof e.ADD_ATTR==`function`?se.attributeCheck=e.ADD_ATTR:el(e.ADD_ATTR)&&(R===ae&&(R=_l(R)),$(R,e.ADD_ATTR,G))),Q(e,`ADD_URI_SAFE_ATTR`)&&el(e.ADD_URI_SAFE_ATTR)&&$(De,e.ADD_URI_SAFE_ATTR,G),Q(e,`FORBID_CONTENTS`)&&el(e.FORBID_CONTENTS)&&(H===U&&(H=_l(H)),$(H,e.FORBID_CONTENTS,G)),Q(e,`ADD_FORBID_CONTENTS`)&&el(e.ADD_FORBID_CONTENTS)&&(H===U&&(H=_l(H)),$(H,e.ADD_FORBID_CONTENTS,G)),Se&&(L[`#text`]=!0),V&&$(L,[`html`,`head`,`body`]),L.table&&($(L,[`tbody`]),delete oe.tbody),e.TRUSTED_TYPES_POLICY){if(typeof e.TRUSTED_TYPES_POLICY.createHTML!=`function`)throw pl(`TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.`);if(typeof e.TRUSTED_TYPES_POLICY.createScriptURL!=`function`)throw pl(`TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.`);let t=x;x=e.TRUSTED_TYPES_POLICY;try{S=w(``)}catch(e){throw x=t,e}}else x===void 0&&e.TRUSTED_TYPES_POLICY!==null&&(x=Wl(u,i)),x&&typeof S==`string`&&(S=w(``));(j.uponSanitizeElement.length>0||j.uponSanitizeAttribute.length>0)&&L===ie&&(L=_l(L)),j.uponSanitizeAttribute.length>0&&R===ae&&(R=_l(R)),Uc&&Uc(e),Be=e},We=$({},[...Sl,...Cl,...wl]),Ge=$({},[...Tl,...El]),Ke=function(e){let t=g(e);(!t||!t.tagName)&&(t={namespaceURI:Me,tagName:`template`});let n=tl(e.tagName),r=tl(t.tagName);return Pe[e.namespaceURI]?e.namespaceURI===Ae?t.namespaceURI===je?n===`svg`:t.namespaceURI===ke?n===`svg`&&(r===`annotation-xml`||Ie[r]):!!We[n]:e.namespaceURI===ke?t.namespaceURI===je?n===`math`:t.namespaceURI===Ae?n===`math`&&Le[r]:!!Ge[n]:e.namespaceURI===je?t.namespaceURI===Ae&&!Le[r]||t.namespaceURI===ke&&!Ie[r]?!1:!Ge[n]&&(Re[n]||!We[n]):!!(ze===`application/xhtml+xml`&&Pe[e.namespaceURI]):!1},qe=function(e){Qc(t.removed,{element:e});try{g(e).removeChild(e)}catch{p(e)}},Je=function(e,n){try{Qc(t.removed,{attribute:n.getAttributeNode(e),from:n})}catch{Qc(t.removed,{attribute:null,from:n})}if(n.removeAttribute(e),e===`is`)if(ge||_e)try{qe(n)}catch{}else try{n.setAttribute(e,``)}catch{}},Ye=function(e){let t=null,r=null;if(he)e=`<remove></remove>`+e;else{let t=rl(e,/^[\r\n\t ]+/);r=t&&t[0]}ze===`application/xhtml+xml`&&Me===je&&(e=`<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>`+e+`</body></html>`);let i=x?w(e):e;if(Me===je)try{t=new l().parseFromString(i,ze)}catch{}if(!t||!t.documentElement){t=E.createDocument(Me,`template`,null);try{t.documentElement.innerHTML=Ne?S:i}catch{}}let a=t.body||t.documentElement;return e&&r&&a.insertBefore(n.createTextNode(r),a.childNodes[0]||null),Me===je?k.call(t,V?`html`:`body`)[0]:V?t.documentElement:a},Xe=function(e){return D.call(e.ownerDocument||e,e,c.SHOW_ELEMENT|c.SHOW_COMMENT|c.SHOW_TEXT|c.SHOW_PROCESSING_INSTRUCTION|c.SHOW_CDATA_SECTION,null)},Ze=function(e){e.normalize();let t=D.call(e.ownerDocument||e,e,c.SHOW_TEXT|c.SHOW_COMMENT|c.SHOW_CDATA_SECTION|c.SHOW_PROCESSING_INSTRUCTION,null),n=t.nextNode();for(;n;){let e=n.data;Yc([M,N,P],t=>{e=il(e,t,` `)}),n.data=e,n=t.nextNode()}let r=e.querySelectorAll?.call(e,`template`)??[];Yc(Array.from(r),e=>{$e(e.content)&&Ze(e.content)})},Qe=function(e){let t=b?b(e):null;return typeof t!=`string`||G(t)!==`form`?!1:typeof e.nodeName!=`string`||typeof e.textContent!=`string`||typeof e.removeChild!=`function`||e.attributes!==v(e)||typeof e.removeAttribute!=`function`||typeof e.setAttribute!=`function`||typeof e.namespaceURI!=`string`||typeof e.insertBefore!=`function`||typeof e.hasChildNodes!=`function`||e.nodeType!==y(e)||e.childNodes!==h(e)},$e=function(e){if(!y||typeof e!=`object`||!e)return!1;try{return y(e)===Hl.documentFragment}catch{return!1}},et=function(e){if(!y||typeof e!=`object`||!e)return!1;try{return typeof y(e)==`number`}catch{return!1}};function tt(e,n,r){Yc(e,e=>{e.call(t,n,r,Be)})}let nt=function(e){let n=null;if(tt(j.beforeSanitizeElements,e,null),Qe(e))return qe(e),!0;let r=G(b?b(e):e.nodeName);if(tt(j.uponSanitizeElement,e,{tagName:r,allowedTags:L}),pe&&e.hasChildNodes()&&!et(e.firstElementChild)&&fl(/<[/\w!]/g,e.innerHTML)&&fl(/<[/\w!]/g,e.textContent)||pe&&e.namespaceURI===je&&r===`style`&&et(e.firstElementChild)||e.nodeType===Hl.progressingInstruction||pe&&e.nodeType===Hl.comment&&fl(/<[/\w]/g,e.data))return qe(e),!0;if(oe[r]||!(se.tagCheck instanceof Function&&se.tagCheck(r))&&!L[r]){if(!oe[r]&&at(r)&&(z.tagNameCheck instanceof RegExp&&fl(z.tagNameCheck,r)||z.tagNameCheck instanceof Function&&z.tagNameCheck(r)))return!1;if(Se&&!H[r]){let t=g(e),n=h(e);if(n&&t){let r=n.length;for(let i=r-1;i>=0;--i){let r=f(n[i],!0);t.insertBefore(r,m(e))}}}return qe(e),!0}return(y?y(e):e.nodeType)===Hl.element&&!Ke(e)||(r===`noscript`||r===`noembed`||r===`noframes`)&&fl(/<\/no(script|embed|frames)/i,e.innerHTML)?(qe(e),!0):(fe&&e.nodeType===Hl.text&&(n=e.textContent,Yc([M,N,P],e=>{n=il(n,e,` `)}),e.textContent!==n&&(Qc(t.removed,{element:e.cloneNode()}),e.textContent=n)),tt(j.afterSanitizeElements,e,null),!1)},rt=function(e,t,r){if(B[t]||ye&&(t===`id`||t===`name`)&&(r in n||r in Ve))return!1;let i=R[t]||se.attributeCheck instanceof Function&&se.attributeCheck(t,e);if(!(le&&!B[t]&&fl(ee,t))&&!(ce&&fl(F,t))){if(!i||B[t]){if(!(at(e)&&(z.tagNameCheck instanceof RegExp&&fl(z.tagNameCheck,e)||z.tagNameCheck instanceof Function&&z.tagNameCheck(e))&&(z.attributeNameCheck instanceof RegExp&&fl(z.attributeNameCheck,t)||z.attributeNameCheck instanceof Function&&z.attributeNameCheck(t,e))||t===`is`&&z.allowCustomizedBuiltInElements&&(z.tagNameCheck instanceof RegExp&&fl(z.tagNameCheck,r)||z.tagNameCheck instanceof Function&&z.tagNameCheck(r))))return!1}else if(!De[t]&&!fl(re,il(r,te,``))&&!((t===`src`||t===`xlink:href`||t===`href`)&&e!==`script`&&al(r,`data:`)===0&&Te[e])&&!(ue&&!fl(I,il(r,te,``)))&&r)return!1}return!0},it=$({},[`annotation-xml`,`color-profile`,`font-face`,`font-face-format`,`font-face-name`,`font-face-src`,`font-face-uri`,`missing-glyph`]),at=function(e){return!it[tl(e)]&&fl(ne,e)},ot=function(e){tt(j.beforeSanitizeAttributes,e,null);let n=e.attributes;if(!n||Qe(e))return;let r={attrName:``,attrValue:``,keepAttr:!0,allowedAttributes:R,forceKeepAttr:void 0},i=n.length;for(;i--;){let a=n[i],o=a.name,s=a.namespaceURI,c=a.value,l=G(o),d=c,f=o===`value`?d:ol(d);if(r.attrName=l,r.attrValue=f,r.keepAttr=!0,r.forceKeepAttr=void 0,tt(j.uponSanitizeAttribute,e,r),f=r.attrValue,be&&(l===`id`||l===`name`)&&al(f,xe)!==0&&(Je(o,e),f=xe+f),pe&&fl(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,f)){Je(o,e);continue}if(l===`attributename`&&rl(f,`href`)){Je(o,e);continue}if(r.forceKeepAttr)continue;if(!r.keepAttr){Je(o,e);continue}if(!de&&fl(/\/>/i,f)){Je(o,e);continue}fe&&Yc([M,N,P],e=>{f=il(f,e,` `)});let p=G(e.nodeName);if(!rt(p,l,f)){Je(o,e);continue}if(x&&typeof u==`object`&&typeof u.getAttributeType==`function`&&!s)switch(u.getAttributeType(p,l)){case`TrustedHTML`:f=w(f);break;case`TrustedScriptURL`:f=x.createScriptURL(f);break}if(f!==d)try{s?e.setAttributeNS(s,o,f):e.setAttribute(o,f),Qe(e)?qe(e):Zc(t.removed)}catch{Je(o,e)}}tt(j.afterSanitizeAttributes,e,null)},st=function(e){let t=null,n=Xe(e);for(tt(j.beforeSanitizeShadowDOM,e,null);t=n.nextNode();)if(tt(j.uponSanitizeShadowNode,t,null),nt(t),ot(t),$e(t.content)&&st(t.content),(y?y(t):t.nodeType)===Hl.element){let e=_?_(t):t.shadowRoot;$e(e)&&(ct(e),st(e))}tt(j.afterSanitizeShadowDOM,e,null)},ct=function(e){let t=y?y(e):e.nodeType;if(t===Hl.element){let t=_?_(e):e.shadowRoot;$e(t)&&(ct(t),st(t))}let n=h?h(e):e.childNodes;if(!n)return;let r=[];Yc(n,e=>{Qc(r,e)});for(let e of r)ct(e);if(t===Hl.element){let t=b?b(e):null;if(typeof t==`string`&&G(t)===`template`){let t=e.content;$e(t)&&ct(t)}}};return t.sanitize=function(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=null,a=null,o=null,s=null;if(Ne=!e,Ne&&(e=`<!-->`),typeof e!=`string`&&!et(e)&&(e=vl(e),typeof e!=`string`))throw pl(`dirty is not a string, aborting`);if(!t.isSupported)return e;if(me||Ue(n),t.removed=[],typeof e==`string`&&(Ce=!1),Ce){let t=b?b(e):e.nodeName;if(typeof t==`string`){let e=G(t);if(!L[e]||oe[e])throw pl(`root node is forbidden and cannot be sanitized in-place`)}if(Qe(e))throw pl(`root node is clobbered and cannot be sanitized in-place`);ct(e)}else if(et(e))i=Ye(`<!---->`),a=i.ownerDocument.importNode(e,!0),a.nodeType===Hl.element&&a.nodeName===`BODY`||a.nodeName===`HTML`?i=a:i.appendChild(a),ct(a);else{if(!ge&&!fe&&!V&&e.indexOf(`<`)===-1)return x&&ve?w(e):e;if(i=Ye(e),!i)return ge?null:ve?S:``}i&&he&&qe(i.firstChild);let c=Xe(Ce?e:i);for(;o=c.nextNode();)nt(o),ot(o),$e(o.content)&&st(o.content);if(Ce)return fe&&Ze(e),e;if(ge){if(fe&&Ze(i),_e)for(s=O.call(i.ownerDocument);i.firstChild;)s.appendChild(i.firstChild);else s=i;return(R.shadowroot||R.shadowrootmode)&&(s=A.call(r,s,!0)),s}let l=V?i.outerHTML:i.innerHTML;return V&&L[`!doctype`]&&i.ownerDocument&&i.ownerDocument.doctype&&i.ownerDocument.doctype.name&&fl(Bl,i.ownerDocument.doctype.name)&&(l=`<!DOCTYPE `+i.ownerDocument.doctype.name+`>
128
- `+l),fe&&Yc([M,N,P],e=>{l=il(l,e,` `)}),x&&ve?w(l):l},t.setConfig=function(){Ue(arguments.length>0&&arguments[0]!==void 0?arguments[0]:{}),me=!0},t.clearConfig=function(){Be=null,me=!1},t.isValidAttribute=function(e,t,n){return Be||Ue({}),rt(G(e),G(t),n)},t.addHook=function(e,t){typeof t==`function`&&Qc(j[e],t)},t.removeHook=function(e,t){if(t!==void 0){let n=Xc(j[e],t);return n===-1?void 0:$c(j[e],n,1)[0]}return Zc(j[e])},t.removeHooks=function(e){j[e]=[]},t.removeAllHooks=function(){j=Gl()},t}var ql=Kl(),Jl=new Ac({gfm:!0,breaks:!0,pedantic:!1,renderer:(()=>{let e=new Tc;return e.code=({text:e,lang:t})=>{let n=(t??``).toLowerCase(),r=Zo(e,n);return`<pre><code${n?` class="language-${n}"`:``}>${r}</code></pre>`},e})()}),Yl=`p.br.strong.em.del.s.u.a.ul.ol.li.h1.h2.h3.h4.h5.h6.blockquote.code.pre.hr.table.thead.tbody.tr.th.td.img.span.input`.split(`.`),Xl=[`href`,`title`,`target`,`rel`,`src`,`alt`,`class`,`checked`,`type`,`disabled`],Zl=/^(?:(?:https?|mailto|tel|data):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;function Ql(e){if(!e)return``;let t=Jl.parse(e,{async:!1});return ql.sanitize(t,{ALLOWED_TAGS:Yl,ALLOWED_ATTR:Xl,ALLOWED_URI_REGEXP:Zl})}var $l={class:`zm-note-panel`},eu={key:0,class:`zm-note-empty`},tu={class:`zm-note-header`},nu={class:`zm-note-title-row`},ru={class:`zm-note-name`},iu={class:`zm-note-meta`},au={class:`zm-note-scroll`},ou={class:`zm-note-section`},su={class:`zm-note-section-head`},cu={class:`zm-note-split`},lu=[`disabled`],uu={key:0,class:`zm-note-preview`},du=[`innerHTML`],fu={key:1,class:`zm-note-preview-hint`},pu={key:0,class:`zm-note-section-actions`},mu={key:0,class:`zm-note-add-row`},hu={key:1,class:`zm-note-section`},gu=[`disabled`],_u=[`href`,`title`],vu={key:2,class:`zm-note-section`},yu=[`disabled`],bu=[`src`,`alt`],xu={key:3,class:`zm-note-section`},Su={class:`zm-note-section-head`},Cu={key:0,class:`zm-note-section-tag`},wu=[`disabled`],Tu={key:0,class:`zm-note-code`},Eu=[`innerHTML`],Du={key:4,class:`zm-note-section`},Ou=[`disabled`],ku={key:0,class:`zm-note-table`},Au=s({__name:`NotePanel`,props:{selectedNode:{},readonly:{type:Boolean},focusTick:{}},emits:[`apply`,`remove`,`set-link`,`set-image`,`set-rich`],setup(e,{emit:t}){let n=e,i=t,o=T(``),s=T(null);Ii(s,{minRows:4,maxRows:10});let c=b(()=>!o.value||o.value.trim()===``),u=b(()=>Ql(o.value)),m=T(!0);function g(){m.value=!m.value}r(()=>[n.selectedNode?.id,n.selectedNode?.note?.text],()=>{o.value=n.selectedNode?.note?.text??``},{immediate:!0}),r(()=>n.focusTick,async()=>{if(n.readonly)return;await a();let e=document.querySelector(`.zm-note-panel textarea.zm-note-textarea`);if(e){e.focus();let t=e.value.length;e.setSelectionRange(t,t)}});function _(){if(n.readonly)return;let e=o.value;e!==(n.selectedNode?.note?.text??``)&&i(`apply`,e)}function x(e){n.readonly||(e.key===`Escape`?(e.preventDefault(),o.value=n.selectedNode?.note?.text??``,e.target.blur()):e.key===`Enter`&&(e.ctrlKey||e.metaKey)&&(e.preventDefault(),_(),e.target.blur()))}function w(){n.readonly||confirm(`移除该节点的笔记?`)&&(o.value=``,i(`remove`))}let E=b(()=>{var e;return!!((e=n.selectedNode?.link)!=null&&e.url)}),k=b(()=>{var e;return!!((e=n.selectedNode?.image)!=null&&e.src)}),j=b(()=>n.selectedNode?.richContent?.kind),M=b(()=>j.value===`code`),N=b(()=>j.value===`table`),P=T(!1),ee=T(!1),F=T(!1),I=T(!1);r(()=>n.selectedNode?.id,()=>{P.value=!1,ee.value=!1,F.value=!1,I.value=!1});let te=T(``);r(()=>[n.selectedNode?.id,n.selectedNode?.link?.url],()=>{te.value=n.selectedNode?.link?.url??``},{immediate:!0});function ne(){if(n.readonly)return;let e=te.value.trim();e!==(n.selectedNode?.link?.url??``)&&i(`set-link`,e)}let re=T(``);r(()=>[n.selectedNode?.id,n.selectedNode?.image?.src],()=>{re.value=n.selectedNode?.image?.src??``},{immediate:!0});function L(){if(n.readonly)return;let e=re.value.trim();e!==(n.selectedNode?.image?.src??``)&&i(`set-image`,e)}function ie(e){let t=e.target;t.style.display=`none`}function R(e){let t=e.target;t.style.display=``}let ae=T(``),z=T(null);Ii(z,{minRows:4,maxRows:18}),r(()=>[n.selectedNode?.id,n.selectedNode?.richContent?.raw],()=>{ae.value=n.selectedNode?.richContent?.raw??``},{immediate:!0});let oe=b(()=>Zo(Yo(ae.value),Xo(ae.value)));function B(){if(n.readonly)return;let e=ae.value;if(e===(n.selectedNode?.richContent?.raw??``))return;let t=Xo(e)||void 0;i(`set-rich`,e?{kind:`code`,raw:e,lang:t}:null)}let se=T(``),ce=T(null);Ii(ce,{minRows:4,maxRows:14}),r(()=>[n.selectedNode?.id,n.selectedNode?.richContent?.raw],()=>{se.value=n.selectedNode?.richContent?.raw??``},{immediate:!0});function le(){if(n.readonly)return;let e=se.value;e!==(n.selectedNode?.richContent?.raw??``)&&i(`set-rich`,e?{kind:`table`,raw:e}:null)}let ue=b(()=>Qo(se.value)),de=b(()=>{let e=[];return c.value||e.push(`${o.value.length} 字`),E.value&&e.push(`1 链接`),k.value&&e.push(`1 图片`),M.value&&e.push(`代码块`),N.value&&e.push(`表格`),e.length===0?`节点没有额外内容`:e.join(` · `)});return(t,n)=>(A(),O(`div`,$l,[e.selectedNode?(A(),O(D,{key:1},[v(`div`,tu,[v(`div`,nu,[n[12]||=v(`span`,{class:`zm-note-label`},`节点`,-1),v(`span`,ru,p(e.selectedNode.text||`(无标题)`),1)]),v(`div`,iu,p(de.value),1)]),v(`div`,au,[v(`section`,ou,[v(`header`,su,[n[13]||=v(`span`,{class:`zm-note-section-title`},`笔记`,-1),n[14]||=v(`span`,{class:`zm-note-section-hint`},`Ctrl+Enter 提交, Esc 取消`,-1),e.readonly?f(``,!0):(A(),O(`button`,{key:0,type:`button`,class:`zm-note-preview-toggle`,onClick:g},p(m.value?`隐藏预览`:`显示预览`),1))]),v(`div`,cu,[d(v(`textarea`,{ref_key:`noteRef`,ref:s,"onUpdate:modelValue":n[0]||=e=>o.value=e,class:`zm-note-textarea`,placeholder:`写点什么吧… 支持 Markdown`,spellcheck:`false`,disabled:e.readonly,onBlur:_,onKeydown:x},null,40,lu),[[S,o.value]]),m.value?(A(),O(`div`,uu,[c.value?(A(),O(`div`,fu,` 渲染后的 Markdown 仅在此面板显示,不会撑大节点框。 `)):(A(),O(`div`,{key:0,class:`zm-note-preview-body`,innerHTML:u.value},null,8,du))])):f(``,!0)]),!e.readonly&&!c.value?(A(),O(`div`,pu,[v(`button`,{class:`zm-note-action-btn is-danger`,onClick:w},`移除笔记`)])):f(``,!0)]),e.readonly?f(``,!0):(A(),O(`div`,mu,[!E.value&&!P.value?(A(),O(`button`,{key:0,class:`zm-note-add-chip`,onClick:n[1]||=e=>P.value=!0},`+ 链接`)):f(``,!0),!k.value&&!ee.value?(A(),O(`button`,{key:1,class:`zm-note-add-chip`,onClick:n[2]||=e=>ee.value=!0},`+ 图片`)):f(``,!0),!M.value&&!F.value?(A(),O(`button`,{key:2,class:`zm-note-add-chip`,onClick:n[3]||=e=>F.value=!0},`+ 代码块`)):f(``,!0),!N.value&&!I.value?(A(),O(`button`,{key:3,class:`zm-note-add-chip`,onClick:n[4]||=e=>I.value=!0},`+ 表格`)):f(``,!0)])),E.value||P.value?(A(),O(`section`,hu,[n[15]||=v(`header`,{class:`zm-note-section-head`},[v(`span`,{class:`zm-note-section-title`},`链接`)],-1),d(v(`input`,{"onUpdate:modelValue":n[5]||=e=>te.value=e,class:`zm-note-input`,type:`url`,placeholder:`https://…`,disabled:e.readonly,onBlur:ne,onKeydown:n[6]||=h(y(e=>e.target.blur(),[`prevent`]),[`enter`])},null,40,gu),[[S,te.value]]),E.value?(A(),O(`a`,{key:0,class:`zm-note-link-chip`,href:e.selectedNode.link?.url,target:`_blank`,rel:`noopener noreferrer`,title:e.selectedNode.link?.url},p(e.selectedNode.link?.url),9,_u)):f(``,!0)])):f(``,!0),k.value||ee.value?(A(),O(`section`,vu,[n[16]||=v(`header`,{class:`zm-note-section-head`},[v(`span`,{class:`zm-note-section-title`},`图片`)],-1),d(v(`input`,{"onUpdate:modelValue":n[7]||=e=>re.value=e,class:`zm-note-input`,type:`url`,placeholder:`data:image/… 或 https://…`,disabled:e.readonly,onBlur:L,onKeydown:n[8]||=h(y(e=>e.target.blur(),[`prevent`]),[`enter`])},null,40,yu),[[S,re.value]]),k.value?(A(),O(`img`,{key:0,class:`zm-note-image`,src:e.selectedNode.image?.src,alt:e.selectedNode.text,onError:ie,onLoad:R},null,40,bu)):f(``,!0)])):f(``,!0),M.value||F.value?(A(),O(`section`,xu,[v(`header`,Su,[n[17]||=v(`span`,{class:`zm-note-section-title`},`代码块`,-1),C(Xo)(ae.value)?(A(),O(`span`,Cu,p(C(Xo)(ae.value)),1)):f(``,!0)]),d(v(`textarea`,{ref_key:`codeRef`,ref:z,"onUpdate:modelValue":n[9]||=e=>ae.value=e,class:`zm-note-input zm-note-input-code`,placeholder:"```ts\nconsole.log(123)\n```",spellcheck:`false`,disabled:e.readonly,onBlur:B},null,40,wu),[[S,ae.value]]),ae.value.trim()?(A(),O(`pre`,Tu,[v(`code`,{innerHTML:oe.value},null,8,Eu)])):f(``,!0)])):f(``,!0),N.value||I.value?(A(),O(`section`,Du,[n[18]||=v(`header`,{class:`zm-note-section-head`},[v(`span`,{class:`zm-note-section-title`},`表格`)],-1),d(v(`textarea`,{ref_key:`tableRef`,ref:ce,"onUpdate:modelValue":n[10]||=e=>se.value=e,class:`zm-note-input zm-note-input-code`,placeholder:`| 列1 | 列2 |
128
+ `+l),fe&&Yc([M,N,P],e=>{l=il(l,e,` `)}),x&&ve?w(l):l},t.setConfig=function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};Ue(e),me=!0},t.clearConfig=function(){Be=null,me=!1},t.isValidAttribute=function(e,t,n){Be||Ue({});let r=G(e),i=G(t);return rt(r,i,n)},t.addHook=function(e,t){typeof t==`function`&&Qc(j[e],t)},t.removeHook=function(e,t){if(t!==void 0){let n=Xc(j[e],t);return n===-1?void 0:$c(j[e],n,1)[0]}return Zc(j[e])},t.removeHooks=function(e){j[e]=[]},t.removeAllHooks=function(){j=Gl()},t}var ql=Kl(),Jl=new Ac({gfm:!0,breaks:!0,pedantic:!1,renderer:(()=>{let e=new Tc;return e.code=({text:e,lang:t})=>{let n=(t??``).toLowerCase(),r=Zo(e,n);return`<pre><code${n?` class="language-${n}"`:``}>${r}</code></pre>`},e})()}),Yl=`p.br.strong.em.del.s.u.a.ul.ol.li.h1.h2.h3.h4.h5.h6.blockquote.code.pre.hr.table.thead.tbody.tr.th.td.img.span.input`.split(`.`),Xl=[`href`,`title`,`target`,`rel`,`src`,`alt`,`class`,`checked`,`type`,`disabled`],Zl=/^(?:(?:https?|mailto|tel|data):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;function Ql(e){if(!e)return``;let t=Jl.parse(e,{async:!1});return ql.sanitize(t,{ALLOWED_TAGS:Yl,ALLOWED_ATTR:Xl,ALLOWED_URI_REGEXP:Zl})}var $l={class:`zm-note-panel`},eu={key:0,class:`zm-note-empty`},tu={class:`zm-note-header`},nu={class:`zm-note-title-row`},ru={class:`zm-note-name`},iu={class:`zm-note-meta`},au={class:`zm-note-scroll`},ou={class:`zm-note-section`},su={class:`zm-note-section-head`},cu={class:`zm-note-split`},lu=[`disabled`],uu={key:0,class:`zm-note-preview`},du=[`innerHTML`],fu={key:1,class:`zm-note-preview-hint`},pu={key:0,class:`zm-note-section-actions`},mu={key:0,class:`zm-note-add-row`},hu={key:1,class:`zm-note-section`},gu=[`disabled`],_u=[`href`,`title`],vu={key:2,class:`zm-note-section`},yu=[`disabled`],bu=[`src`,`alt`],xu={key:3,class:`zm-note-section`},Su={class:`zm-note-section-head`},Cu={key:0,class:`zm-note-section-tag`},wu=[`disabled`],Tu={key:0,class:`zm-note-code`},Eu=[`innerHTML`],Du={key:4,class:`zm-note-section`},Ou=[`disabled`],ku={key:0,class:`zm-note-table`},Au=s({__name:`NotePanel`,props:{selectedNode:{},readonly:{type:Boolean},focusTick:{}},emits:[`apply`,`remove`,`set-link`,`set-image`,`set-rich`],setup(e,{emit:t}){let n=e,i=t,o=T(``),s=T(null);Ii(s,{minRows:4,maxRows:10});let c=b(()=>!o.value||o.value.trim()===``),u=b(()=>Ql(o.value)),m=T(!0);function g(){m.value=!m.value}r(()=>[n.selectedNode?.id,n.selectedNode?.note?.text],()=>{o.value=n.selectedNode?.note?.text??``},{immediate:!0}),r(()=>n.focusTick,async()=>{if(n.readonly)return;await a();let e=document.querySelector(`.zm-note-panel textarea.zm-note-textarea`);if(e){e.focus();let t=e.value.length;e.setSelectionRange(t,t)}});function _(){if(n.readonly)return;let e=o.value;e!==(n.selectedNode?.note?.text??``)&&i(`apply`,e)}function x(e){n.readonly||(e.key===`Escape`?(e.preventDefault(),o.value=n.selectedNode?.note?.text??``,e.target.blur()):e.key===`Enter`&&(e.ctrlKey||e.metaKey)&&(e.preventDefault(),_(),e.target.blur()))}function w(){n.readonly||confirm(`移除该节点的笔记?`)&&(o.value=``,i(`remove`))}let E=b(()=>{var e;return!!((e=n.selectedNode?.link)!=null&&e.url)}),k=b(()=>{var e;return!!((e=n.selectedNode?.image)!=null&&e.src)}),j=b(()=>n.selectedNode?.richContent?.kind),M=b(()=>j.value===`code`),N=b(()=>j.value===`table`),P=T(!1),ee=T(!1),F=T(!1),I=T(!1);r(()=>n.selectedNode?.id,()=>{P.value=!1,ee.value=!1,F.value=!1,I.value=!1});let te=T(``);r(()=>[n.selectedNode?.id,n.selectedNode?.link?.url],()=>{te.value=n.selectedNode?.link?.url??``},{immediate:!0});function ne(){if(n.readonly)return;let e=te.value.trim();e!==(n.selectedNode?.link?.url??``)&&i(`set-link`,e)}let re=T(``);r(()=>[n.selectedNode?.id,n.selectedNode?.image?.src],()=>{re.value=n.selectedNode?.image?.src??``},{immediate:!0});function L(){if(n.readonly)return;let e=re.value.trim();e!==(n.selectedNode?.image?.src??``)&&i(`set-image`,e)}function ie(e){let t=e.target;t.style.display=`none`}function R(e){let t=e.target;t.style.display=``}let ae=T(``),z=T(null);Ii(z,{minRows:4,maxRows:18}),r(()=>[n.selectedNode?.id,n.selectedNode?.richContent?.raw],()=>{ae.value=n.selectedNode?.richContent?.raw??``},{immediate:!0});let oe=b(()=>Zo(Yo(ae.value),Xo(ae.value)));function B(){if(n.readonly)return;let e=ae.value;if(e===(n.selectedNode?.richContent?.raw??``))return;let t=Xo(e)||void 0;i(`set-rich`,e?{kind:`code`,raw:e,lang:t}:null)}let se=T(``),ce=T(null);Ii(ce,{minRows:4,maxRows:14}),r(()=>[n.selectedNode?.id,n.selectedNode?.richContent?.raw],()=>{se.value=n.selectedNode?.richContent?.raw??``},{immediate:!0});function le(){if(n.readonly)return;let e=se.value;e!==(n.selectedNode?.richContent?.raw??``)&&i(`set-rich`,e?{kind:`table`,raw:e}:null)}let ue=b(()=>Qo(se.value)),de=b(()=>{let e=[];return c.value||e.push(`${o.value.length} 字`),E.value&&e.push(`1 链接`),k.value&&e.push(`1 图片`),M.value&&e.push(`代码块`),N.value&&e.push(`表格`),e.length===0?`节点没有额外内容`:e.join(` · `)});return(t,n)=>(A(),O(`div`,$l,[e.selectedNode?(A(),O(D,{key:1},[v(`div`,tu,[v(`div`,nu,[n[12]||=v(`span`,{class:`zm-note-label`},`节点`,-1),v(`span`,ru,p(e.selectedNode.text||`(无标题)`),1)]),v(`div`,iu,p(de.value),1)]),v(`div`,au,[v(`section`,ou,[v(`header`,su,[n[13]||=v(`span`,{class:`zm-note-section-title`},`笔记`,-1),n[14]||=v(`span`,{class:`zm-note-section-hint`},`Ctrl+Enter 提交, Esc 取消`,-1),e.readonly?f(``,!0):(A(),O(`button`,{key:0,type:`button`,class:`zm-note-preview-toggle`,onClick:g},p(m.value?`隐藏预览`:`显示预览`),1))]),v(`div`,cu,[d(v(`textarea`,{ref_key:`noteRef`,ref:s,"onUpdate:modelValue":n[0]||=e=>o.value=e,class:`zm-note-textarea`,placeholder:`写点什么吧… 支持 Markdown`,spellcheck:`false`,disabled:e.readonly,onBlur:_,onKeydown:x},null,40,lu),[[S,o.value]]),m.value?(A(),O(`div`,uu,[c.value?(A(),O(`div`,fu,` 渲染后的 Markdown 仅在此面板显示,不会撑大节点框。 `)):(A(),O(`div`,{key:0,class:`zm-note-preview-body`,innerHTML:u.value},null,8,du))])):f(``,!0)]),!e.readonly&&!c.value?(A(),O(`div`,pu,[v(`button`,{class:`zm-note-action-btn is-danger`,onClick:w},`移除笔记`)])):f(``,!0)]),e.readonly?f(``,!0):(A(),O(`div`,mu,[!E.value&&!P.value?(A(),O(`button`,{key:0,class:`zm-note-add-chip`,onClick:n[1]||=e=>P.value=!0},`+ 链接`)):f(``,!0),!k.value&&!ee.value?(A(),O(`button`,{key:1,class:`zm-note-add-chip`,onClick:n[2]||=e=>ee.value=!0},`+ 图片`)):f(``,!0),!M.value&&!F.value?(A(),O(`button`,{key:2,class:`zm-note-add-chip`,onClick:n[3]||=e=>F.value=!0},`+ 代码块`)):f(``,!0),!N.value&&!I.value?(A(),O(`button`,{key:3,class:`zm-note-add-chip`,onClick:n[4]||=e=>I.value=!0},`+ 表格`)):f(``,!0)])),E.value||P.value?(A(),O(`section`,hu,[n[15]||=v(`header`,{class:`zm-note-section-head`},[v(`span`,{class:`zm-note-section-title`},`链接`)],-1),d(v(`input`,{"onUpdate:modelValue":n[5]||=e=>te.value=e,class:`zm-note-input`,type:`url`,placeholder:`https://…`,disabled:e.readonly,onBlur:ne,onKeydown:n[6]||=h(y(e=>e.target.blur(),[`prevent`]),[`enter`])},null,40,gu),[[S,te.value]]),E.value?(A(),O(`a`,{key:0,class:`zm-note-link-chip`,href:e.selectedNode.link?.url,target:`_blank`,rel:`noopener noreferrer`,title:e.selectedNode.link?.url},p(e.selectedNode.link?.url),9,_u)):f(``,!0)])):f(``,!0),k.value||ee.value?(A(),O(`section`,vu,[n[16]||=v(`header`,{class:`zm-note-section-head`},[v(`span`,{class:`zm-note-section-title`},`图片`)],-1),d(v(`input`,{"onUpdate:modelValue":n[7]||=e=>re.value=e,class:`zm-note-input`,type:`url`,placeholder:`data:image/… 或 https://…`,disabled:e.readonly,onBlur:L,onKeydown:n[8]||=h(y(e=>e.target.blur(),[`prevent`]),[`enter`])},null,40,yu),[[S,re.value]]),k.value?(A(),O(`img`,{key:0,class:`zm-note-image`,src:e.selectedNode.image?.src,alt:e.selectedNode.text,onError:ie,onLoad:R},null,40,bu)):f(``,!0)])):f(``,!0),M.value||F.value?(A(),O(`section`,xu,[v(`header`,Su,[n[17]||=v(`span`,{class:`zm-note-section-title`},`代码块`,-1),C(Xo)(ae.value)?(A(),O(`span`,Cu,p(C(Xo)(ae.value)),1)):f(``,!0)]),d(v(`textarea`,{ref_key:`codeRef`,ref:z,"onUpdate:modelValue":n[9]||=e=>ae.value=e,class:`zm-note-input zm-note-input-code`,placeholder:"```ts\nconsole.log(123)\n```",spellcheck:`false`,disabled:e.readonly,onBlur:B},null,40,wu),[[S,ae.value]]),ae.value.trim()?(A(),O(`pre`,Tu,[v(`code`,{innerHTML:oe.value},null,8,Eu)])):f(``,!0)])):f(``,!0),N.value||I.value?(A(),O(`section`,Du,[n[18]||=v(`header`,{class:`zm-note-section-head`},[v(`span`,{class:`zm-note-section-title`},`表格`)],-1),d(v(`textarea`,{ref_key:`tableRef`,ref:ce,"onUpdate:modelValue":n[10]||=e=>se.value=e,class:`zm-note-input zm-note-input-code`,placeholder:`| 列1 | 列2 |
129
129
  | --- | --- |
130
- | a | b |`,spellcheck:`false`,disabled:e.readonly,onBlur:le},null,40,Ou),[[S,se.value]]),ue.value.length?(A(),O(`table`,ku,[v(`tbody`,null,[(A(!0),O(D,null,l(ue.value,(e,t)=>(A(),O(`tr`,{key:t},[t===0?(A(!0),O(D,{key:0},l(e,(e,t)=>(A(),O(`th`,{key:`h${t}`},p(e),1))),128)):(A(!0),O(D,{key:1},l(e,(e,t)=>(A(),O(`td`,{key:`c${t}`},p(e),1))),128))]))),128))])])):f(``,!0)])):f(``,!0)])],64)):(A(),O(`div`,eu,[...n[11]||=[v(`p`,null,`请先在画布上选中一个节点。`,-1),v(`p`,{class:`zm-note-hint`},` 选中节点后,会在这里展示并可编辑节点的笔记、链接、图片、代码块、表格。 `,-1)]]))]))}}),ju=[`viewBox`,`width`,`height`],Mu={class:`zm-edges`},Nu=[`d`,`fill`],Pu=[`data-node-id`,`onClick`,`onPointerdown`,`onDblclick`,`onContextmenu`,`onMouseenter`,`onMouseleave`],Fu=[`src`,`width`,`height`,`alt`],Iu=[`onDblclick`],Lu={key:0,class:`zm-rich-code`},Ru=[`innerHTML`],zu={key:1,class:`zm-rich-table`},Bu={key:2,class:`zm-text`},Vu={key:0,class:`zm-node-markers`},Hu=[`title`,`innerHTML`],Uu={class:`zm-text-label`},Wu=[`href`,`title`],Gu=[`title`,`onClick`],Ku={key:4,class:`zm-node-tags`},qu=[`title`],Ju=[`title`,`onClick`],Yu=[`onClick`],Xu=[`onMousedown`],Zu=[`onClick`],Qu=[`title`],$u=[`src`],ed=[`src`],td=24,nd=400,rd=160,id=4,ad=s({__name:`MindMap`,props:{data:{},theme:{},previewMode:{type:Boolean,default:!1},markdown:{},lineColors:{},hideCanvasActions:{type:Boolean,default:!1},builtInDrawers:{type:Boolean,default:!0}},emits:[`change`,`select`,`edit-note`,`markdownChange`,`canvas-toggle-preview`,`canvas-outline`,`canvas-settings`,`canvas-data`,`canvas-import`],setup(n,{expose:o,emit:s}){let c=n,w=s,E=T(null),k=T(null),j=T(``),M=T(new Set),N=b(()=>M.value.values().next().value??null),P=T(new Set),ee=T(!1),F=T(null),re=T(0),L=T(0),ie=b(()=>{let e=F.value;if(!e||!e.currentTargetId||!e.dropPosition||e.dropPosition===`child`)return null;let t=Fn.value.find(t=>t.id===e.currentTargetId);if(!t)return null;let n=t.width/2,r=t.height/2;if(t._dir===`down`){let i=e.dropPosition===`before`?t.x-n:t.x+n;return{x1:i,y1:t.y-r,x2:i,y2:t.y+r,horizontal:!1}}let i=e.dropPosition===`before`?t.y-r:t.y+r;return{x1:t.x-n,y1:i,x2:t.x+n,y2:i,horizontal:!0}}),R=T(null),ae=T(null),z=T(null),oe=T(``),B=T(ze(c.data)),se=T({}),ce=T({}),le=T(c.markdown!==void 0),ue=!1;r(()=>c.markdown,e=>{if(e===void 0){le.value=!1;return}le.value=!0;let t=Qe(e||``);ue=!0,B.value=ze(t),M.value=new Set,P.value=new Set,q(),a(()=>{ue=!1,Ir()})}),r(B,()=>{le.value&&!ue&&w(`markdownChange`,$e(B.value))},{deep:!0});let de=b(()=>J.showOrderBadge===!0),fe=T(new Map),pe=fe.value;function V(e,t){let n={};t.bg&&(n.bg=t.bg),t.textColor&&(n.textColor=t.textColor),t.borderColor&&(n.borderColor=t.borderColor),t.fontWeight&&(n.fontWeight=t.fontWeight),t.fontSize&&(n.fontSize=t.fontSize),Object.keys(n).length===0?pe.delete(e):pe.set(e,n),fe.value=new Map(pe)}function me(e){return pe.get(e)??{}}function he(e,t){let n=W(B.value,e);n&&(n.image={src:t.src,naturalW:t.naturalW,naturalH:t.naturalH,width:ve(t.width,td,nd),height:ve(t.height,td,nd)},K(),q(),w(`change`,B.value))}function ge(e){let t=W(B.value,e);!t||!t.image||(delete t.image,K(),q(),w(`change`,B.value))}function _e(e,t){let n=t.trim();if(!W(B.value,e))return;if(!n){ge(e);return}let r=new Image;r.onload=()=>{let t=W(B.value,e);if(!t)return;let i=r.naturalWidth&&r.naturalHeight?r.naturalWidth/r.naturalHeight:1,a=ve(r.naturalWidth||rd,td,nd),o=Math.round(a/i);t.image={src:n,naturalW:r.naturalWidth||a,naturalH:r.naturalHeight||o,width:a,height:o},K(),q(),w(`change`,B.value)},r.onerror=()=>{},r.src=n}function ve(e,t,n){return Math.min(n,Math.max(t,e))}function ye(e,t){let n=new FileReader;n.onload=()=>{if(typeof n.result!=`string`)return;let e=n.result,r=new window.Image;r.onload=()=>{let n=r.naturalWidth||rd,i=r.naturalHeight||rd,a=ve(n,td,rd);t({src:e,naturalW:n,naturalH:i,width:a,height:ve(Math.round(i*a/n),td,nd)})},r.onerror=()=>{t({src:e,naturalW:rd,naturalH:rd,width:rd,height:rd})},r.src=e},n.readAsDataURL(e)}function be(e){let t=document.createElement(`input`);t.type=`file`,t.accept=`image/*`,t.style.display=`none`,t.onchange=()=>{let n=t.files?.[0];n&&(ye(n,t=>he(e,t)),document.body.removeChild(t))},document.body.appendChild(t),t.click()}function xe(e,t){let n=t.trim(),r=W(B.value,e);r&&(n?r.link={url:n}:delete r.link,K(),q(),w(`change`,B.value))}function Se(e){xe(e,``)}function Ce(e,t){let n=W(B.value,e);n&&(t?n.note={text:t}:delete n.note,K(),q(),w(`change`,B.value))}function we(e){Ce(e,``)}function H(e,t){let n=W(B.value,e);n&&(t?n.richContent=t:delete n.richContent,K(),q(),w(`change`,B.value))}let U=T(null),Ee=T(null),De=b(()=>[`zm-canvas-fab`,`zm-canvas-fab-preview`,!c.hideCanvasActions&&(!c.previewMode||ee.value)?`is-visible`:``].filter(Boolean).join(` `)),Oe=b(()=>[`zm-canvas-fab`,`zm-canvas-fab-outline`,!c.hideCanvasActions&&(!c.previewMode||ee.value)?`is-visible`:``].filter(Boolean).join(` `));function ke(e,t){c.previewMode||(e.preventDefault(),e.stopPropagation(),Ee.value=null,M.value=new Set([t.id]),cr(),U.value={nodeId:t.id,x:e.clientX,y:e.clientY})}function Ae(){U.value=null}function je(e){let t=e.target;if(!(t!=null&&t.closest(`.zm-toolbar, button, input, textarea, .zm-canvas-fab-preview, .zm-canvas-fab-outline`))){if(Dr&&Y.panMoved.value){Dr=!1,e.preventDefault();return}e.preventDefault(),U.value&&=null,Ee.value={x:e.clientX,y:e.clientY}}}function Pe(){Ee.value=null}function Fe(){Pe(),c.builtInDrawers&&(lt(),rt.value=!0),w(`canvas-settings`)}function Ie(){Pe(),c.builtInDrawers&&(lt(),Ue.value=!0),w(`canvas-data`)}function Le(e){Pe(),c.builtInDrawers&&(lt(),st.value=e,Ue.value=!0),w(`canvas-import`,e)}let Re=T(!1),Ue=T(!1),et=T(!1),tt=T(!1),rt=T(!1),it=T(0),st=T(null),ct=T(new Set);function lt(){Ue.value=!1,et.value=!1,tt.value=!1,rt.value=!1}let ut=b(()=>{let e=N.value;return e?W(B.value,e)??null:null}),dt=b(()=>ut.value?me(ut.value.id):{});function ht(e){e.autoBalanceOnChange!==void 0&&(J.autoBalanceOnChange=e.autoBalanceOnChange),e.lineWidthStart!==void 0&&(J.lineWidthStart=Math.max(.5,Math.min(20,e.lineWidthStart))),e.lineWidthEnd!==void 0&&(J.lineWidthEnd=Math.max(.1,Math.min(10,e.lineWidthEnd))),e.rainbowBranch!==void 0&&(J.rainbowBranch=e.rainbowBranch),e.branchPaletteId!==void 0&&(J.branchPaletteId=e.branchPaletteId),e.customPalettes!==void 0&&(J.customPalettes=e.customPalettes),e.lineStyle!==void 0&&(J.lineStyle=e.lineStyle),e.rootLineStyle!==void 0&&(J.rootLineStyle=e.rootLineStyle),e.lineOrigin!==void 0&&(J.lineOrigin=e.lineOrigin),e.taperedEdge!==void 0&&(J.taperedEdge=e.taperedEdge),e.lineWidthTaper!==void 0&&(J.lineWidthTaper=Math.max(.1,Math.min(1,e.lineWidthTaper))),e.uniformLineWidth!==void 0&&(J.uniformLineWidth=e.uniformLineWidth),e.elbowRadius!==void 0&&(J.elbowRadius=Math.max(2,Math.min(40,e.elbowRadius))),e.showOrderBadge!==void 0&&(J.showOrderBadge=e.showOrderBadge),e.canvasBg!==void 0&&(J.canvasBg=e.canvasBg),e.branchGap!==void 0&&(J.branchGap=Math.max(0,Math.min(80,e.branchGap)))}function gt(e){ut.value&&V(ut.value.id,e)}function _t(){let e={autoBalanceOnChange:!0,lineWidthStart:16,lineWidthEnd:.6,rainbowBranch:!0,branchPaletteId:`default`,customPalettes:[],lineStyle:`rounded-elbow`,rootLineStyle:`arc`,lineOrigin:`proportional`,layoutMode:`mindmap`,taperedEdge:!0,lineWidthTaper:.3,uniformLineWidth:!0,elbowRadius:20,showOrderBadge:!1,canvasBg:void 0,branchGap:20};J.autoBalanceOnChange=e.autoBalanceOnChange,J.lineWidthStart=e.lineWidthStart,J.lineWidthEnd=e.lineWidthEnd,J.rainbowBranch=e.rainbowBranch,J.branchPaletteId=e.branchPaletteId,J.customPalettes=e.customPalettes,J.lineStyle=e.lineStyle,J.rootLineStyle=e.rootLineStyle,J.lineOrigin=e.lineOrigin,J.layoutMode=e.layoutMode,J.taperedEdge=e.taperedEdge,J.lineWidthTaper=e.lineWidthTaper,J.uniformLineWidth=e.uniformLineWidth,J.elbowRadius=e.elbowRadius,J.showOrderBadge=e.showOrderBadge,J.canvasBg=e.canvasBg,J.branchGap=e.branchGap}function vt(){st.value=null}function xt(e){let t=N.value;t&&Ce(t,e)}function St(){let e=N.value;e&&we(e)}function Ct(e){let t=N.value;t&&xe(t,e)}function wt(e){let t=N.value;t&&_e(t,e)}function Tt(e){let t=N.value;t&&H(t,e)}function Et(e){let t=document.querySelector(`[data-node-id="${e.id}"]`);t&&t.click()}function Dt(e){gr(e.id,e.text)}function Ot(e){Xn(e)}function kt(e){Zn(e)}function jt(e){_r(e.srcId,e.targetId,e.position)}function Mt(e){let t=new Set(ct.value);t.has(e)?t.delete(e):t.add(e),ct.value=t}function Nt(){c.builtInDrawers&&(Re.value=!Re.value),w(`canvas-outline`)}function Pt(){let e=U.value?.nodeId;e&&be(e)}function Ft(){let e=U.value?.nodeId;if(!e)return;let t=W(B.value,e)?.link?.url??``,n=window.prompt(`输入链接 URL(留空取消)`,t);n!==null&&xe(e,n)}function It(){let e=U.value?.nodeId;e&&Se(e)}function Lt(){let e=U.value?.nodeId;e&&Wt(e)}function Rt(){let e=U.value?.nodeId;e&&we(e)}function zt(){let e=U.value?.nodeId;e&&ge(e)}function Bt(){let e=U.value?.nodeId;if(!e)return;let t=W(B.value,e)?.richContent,n=t?.kind===`code`?Yo(t.raw):``,r=t?.kind===`code`&&t.lang||``,i=r?"```"+r+`
130
+ | a | b |`,spellcheck:`false`,disabled:e.readonly,onBlur:le},null,40,Ou),[[S,se.value]]),ue.value.length?(A(),O(`table`,ku,[v(`tbody`,null,[(A(!0),O(D,null,l(ue.value,(e,t)=>(A(),O(`tr`,{key:t},[t===0?(A(!0),O(D,{key:0},l(e,(e,t)=>(A(),O(`th`,{key:`h${t}`},p(e),1))),128)):(A(!0),O(D,{key:1},l(e,(e,t)=>(A(),O(`td`,{key:`c${t}`},p(e),1))),128))]))),128))])])):f(``,!0)])):f(``,!0)])],64)):(A(),O(`div`,eu,[...n[11]||=[v(`p`,null,`请先在画布上选中一个节点。`,-1),v(`p`,{class:`zm-note-hint`},` 选中节点后,会在这里展示并可编辑节点的笔记、链接、图片、代码块、表格。 `,-1)]]))]))}}),ju=[`viewBox`,`width`,`height`],Mu={class:`zm-edges`},Nu=[`d`,`fill`],Pu=[`data-node-id`,`onClick`,`onPointerdown`,`onDblclick`,`onContextmenu`,`onMouseenter`,`onMouseleave`],Fu=[`src`,`width`,`height`,`alt`],Iu=[`onDblclick`],Lu={key:0,class:`zm-rich-code`},Ru=[`innerHTML`],zu={key:1,class:`zm-rich-table`},Bu={key:2,class:`zm-text`},Vu={key:0,class:`zm-node-markers`},Hu=[`title`,`innerHTML`],Uu={class:`zm-text-label`},Wu=[`href`,`title`],Gu=[`title`,`onClick`],Ku={key:4,class:`zm-node-tags`},qu=[`title`],Ju=[`title`,`onClick`],Yu=[`onClick`],Xu=[`onMousedown`],Zu=[`onClick`],Qu=[`title`],$u=[`src`],ed=[`src`],td=24,nd=400,rd=160,id=4,ad=s({__name:`MindMap`,props:{data:{},theme:{},previewMode:{type:Boolean,default:!1},markdown:{},lineColors:{},hideCanvasActions:{type:Boolean,default:!1},builtInDrawers:{type:Boolean,default:!0}},emits:[`change`,`select`,`edit-note`,`markdownChange`,`canvas-toggle-preview`,`canvas-outline`,`canvas-settings`,`canvas-data`,`canvas-import`],setup(n,{expose:o,emit:s}){let c=n,w=s,E=T(null),k=T(null),j=T(``),M=T(new Set),N=b(()=>M.value.values().next().value??null),P=T(new Set),ee=T(!1),F=T(null),re=T(0),L=T(0),ie=b(()=>{let e=F.value;if(!e||!e.currentTargetId||!e.dropPosition||e.dropPosition===`child`)return null;let t=Fn.value.find(t=>t.id===e.currentTargetId);if(!t)return null;let n=t.width/2,r=t.height/2;if(t._dir===`down`){let i=e.dropPosition===`before`?t.x-n:t.x+n;return{x1:i,y1:t.y-r,x2:i,y2:t.y+r,horizontal:!1}}let i=e.dropPosition===`before`?t.y-r:t.y+r;return{x1:t.x-n,y1:i,x2:t.x+n,y2:i,horizontal:!0}}),R=T(null),ae=T(null),z=T(null),oe=T(``),B=T(ze(c.data)),se=T({}),ce=T({}),le=T(c.markdown!==void 0),ue=!1;r(()=>c.markdown,e=>{if(e===void 0){le.value=!1;return}le.value=!0;let t=Qe(e||``);ue=!0,B.value=ze(t),M.value=new Set,P.value=new Set,q(),a(()=>{ue=!1,Ir()})}),r(B,()=>{le.value&&!ue&&w(`markdownChange`,$e(B.value))},{deep:!0});let de=b(()=>J.showOrderBadge===!0),fe=T(new Map),pe=fe.value;function V(e,t){let n={};t.bg&&(n.bg=t.bg),t.textColor&&(n.textColor=t.textColor),t.borderColor&&(n.borderColor=t.borderColor),t.fontWeight&&(n.fontWeight=t.fontWeight),t.fontSize&&(n.fontSize=t.fontSize),Object.keys(n).length===0?pe.delete(e):pe.set(e,n),fe.value=new Map(pe)}function me(e){return pe.get(e)??{}}function he(e,t){let n=W(B.value,e);n&&(n.image={src:t.src,naturalW:t.naturalW,naturalH:t.naturalH,width:ve(t.width,td,nd),height:ve(t.height,td,nd)},K(),q(),w(`change`,B.value))}function ge(e){let t=W(B.value,e);!t||!t.image||(delete t.image,K(),q(),w(`change`,B.value))}function _e(e,t){let n=t.trim();if(!W(B.value,e))return;if(!n){ge(e);return}let r=new Image;r.onload=()=>{let t=W(B.value,e);if(!t)return;let i=r.naturalWidth&&r.naturalHeight?r.naturalWidth/r.naturalHeight:1,a=ve(r.naturalWidth||rd,td,nd),o=Math.round(a/i);t.image={src:n,naturalW:r.naturalWidth||a,naturalH:r.naturalHeight||o,width:a,height:o},K(),q(),w(`change`,B.value)},r.onerror=()=>{},r.src=n}function ve(e,t,n){return Math.min(n,Math.max(t,e))}function ye(e,t){let n=new FileReader;n.onload=()=>{if(typeof n.result!=`string`)return;let e=n.result,r=new window.Image;r.onload=()=>{let n=r.naturalWidth||rd,i=r.naturalHeight||rd,a=ve(n,td,rd),o=ve(Math.round(i*a/n),td,nd);t({src:e,naturalW:n,naturalH:i,width:a,height:o})},r.onerror=()=>{t({src:e,naturalW:rd,naturalH:rd,width:rd,height:rd})},r.src=e},n.readAsDataURL(e)}function be(e){let t=document.createElement(`input`);t.type=`file`,t.accept=`image/*`,t.style.display=`none`,t.onchange=()=>{let n=t.files?.[0];n&&(ye(n,t=>he(e,t)),document.body.removeChild(t))},document.body.appendChild(t),t.click()}function xe(e,t){let n=t.trim(),r=W(B.value,e);r&&(n?r.link={url:n}:delete r.link,K(),q(),w(`change`,B.value))}function Se(e){xe(e,``)}function Ce(e,t){let n=W(B.value,e);n&&(t?n.note={text:t}:delete n.note,K(),q(),w(`change`,B.value))}function we(e){Ce(e,``)}function H(e,t){let n=W(B.value,e);n&&(t?n.richContent=t:delete n.richContent,K(),q(),w(`change`,B.value))}let U=T(null),Ee=T(null),De=b(()=>[`zm-canvas-fab`,`zm-canvas-fab-preview`,!c.hideCanvasActions&&(!c.previewMode||ee.value)?`is-visible`:``].filter(Boolean).join(` `)),Oe=b(()=>[`zm-canvas-fab`,`zm-canvas-fab-outline`,!c.hideCanvasActions&&(!c.previewMode||ee.value)?`is-visible`:``].filter(Boolean).join(` `));function ke(e,t){c.previewMode||(e.preventDefault(),e.stopPropagation(),Ee.value=null,M.value=new Set([t.id]),cr(),U.value={nodeId:t.id,x:e.clientX,y:e.clientY})}function Ae(){U.value=null}function je(e){let t=e.target;if(!(t!=null&&t.closest(`.zm-toolbar, button, input, textarea, .zm-canvas-fab-preview, .zm-canvas-fab-outline`))){if(Dr&&Y.panMoved.value){Dr=!1,e.preventDefault();return}e.preventDefault(),U.value&&=null,Ee.value={x:e.clientX,y:e.clientY}}}function Pe(){Ee.value=null}function Fe(){Pe(),c.builtInDrawers&&(lt(),rt.value=!0),w(`canvas-settings`)}function Ie(){Pe(),c.builtInDrawers&&(lt(),Ue.value=!0),w(`canvas-data`)}function Le(e){Pe(),c.builtInDrawers&&(lt(),st.value=e,Ue.value=!0),w(`canvas-import`,e)}let Re=T(!1),Ue=T(!1),et=T(!1),tt=T(!1),rt=T(!1),it=T(0),st=T(null),ct=T(new Set);function lt(){Ue.value=!1,et.value=!1,tt.value=!1,rt.value=!1}let ut=b(()=>{let e=N.value;return e?W(B.value,e)??null:null}),dt=b(()=>ut.value?me(ut.value.id):{});function ht(e){e.autoBalanceOnChange!==void 0&&(J.autoBalanceOnChange=e.autoBalanceOnChange),e.lineWidthStart!==void 0&&(J.lineWidthStart=Math.max(.5,Math.min(20,e.lineWidthStart))),e.lineWidthEnd!==void 0&&(J.lineWidthEnd=Math.max(.1,Math.min(10,e.lineWidthEnd))),e.rainbowBranch!==void 0&&(J.rainbowBranch=e.rainbowBranch),e.branchPaletteId!==void 0&&(J.branchPaletteId=e.branchPaletteId),e.customPalettes!==void 0&&(J.customPalettes=e.customPalettes),e.lineStyle!==void 0&&(J.lineStyle=e.lineStyle),e.rootLineStyle!==void 0&&(J.rootLineStyle=e.rootLineStyle),e.lineOrigin!==void 0&&(J.lineOrigin=e.lineOrigin),e.taperedEdge!==void 0&&(J.taperedEdge=e.taperedEdge),e.lineWidthTaper!==void 0&&(J.lineWidthTaper=Math.max(.1,Math.min(1,e.lineWidthTaper))),e.uniformLineWidth!==void 0&&(J.uniformLineWidth=e.uniformLineWidth),e.elbowRadius!==void 0&&(J.elbowRadius=Math.max(2,Math.min(40,e.elbowRadius))),e.showOrderBadge!==void 0&&(J.showOrderBadge=e.showOrderBadge),e.canvasBg!==void 0&&(J.canvasBg=e.canvasBg),e.branchGap!==void 0&&(J.branchGap=Math.max(0,Math.min(80,e.branchGap)))}function gt(e){ut.value&&V(ut.value.id,e)}function _t(){let e={autoBalanceOnChange:!0,lineWidthStart:16,lineWidthEnd:.6,rainbowBranch:!0,branchPaletteId:`default`,customPalettes:[],lineStyle:`rounded-elbow`,rootLineStyle:`arc`,lineOrigin:`proportional`,layoutMode:`mindmap`,taperedEdge:!0,lineWidthTaper:.3,uniformLineWidth:!0,elbowRadius:20,showOrderBadge:!1,canvasBg:void 0,branchGap:20};J.autoBalanceOnChange=e.autoBalanceOnChange,J.lineWidthStart=e.lineWidthStart,J.lineWidthEnd=e.lineWidthEnd,J.rainbowBranch=e.rainbowBranch,J.branchPaletteId=e.branchPaletteId,J.customPalettes=e.customPalettes,J.lineStyle=e.lineStyle,J.rootLineStyle=e.rootLineStyle,J.lineOrigin=e.lineOrigin,J.layoutMode=e.layoutMode,J.taperedEdge=e.taperedEdge,J.lineWidthTaper=e.lineWidthTaper,J.uniformLineWidth=e.uniformLineWidth,J.elbowRadius=e.elbowRadius,J.showOrderBadge=e.showOrderBadge,J.canvasBg=e.canvasBg,J.branchGap=e.branchGap}function vt(){st.value=null}function xt(e){let t=N.value;t&&Ce(t,e)}function St(){let e=N.value;e&&we(e)}function Ct(e){let t=N.value;t&&xe(t,e)}function wt(e){let t=N.value;t&&_e(t,e)}function Tt(e){let t=N.value;t&&H(t,e)}function Et(e){let t=document.querySelector(`[data-node-id="${e.id}"]`);t&&t.click()}function Dt(e){gr(e.id,e.text)}function Ot(e){Xn(e)}function kt(e){Zn(e)}function jt(e){_r(e.srcId,e.targetId,e.position)}function Mt(e){let t=new Set(ct.value);t.has(e)?t.delete(e):t.add(e),ct.value=t}function Nt(){c.builtInDrawers&&(Re.value=!Re.value),w(`canvas-outline`)}function Pt(){let e=U.value?.nodeId;e&&be(e)}function Ft(){let e=U.value?.nodeId;if(!e)return;let t=W(B.value,e)?.link?.url??``,n=window.prompt(`输入链接 URL(留空取消)`,t);n!==null&&xe(e,n)}function It(){let e=U.value?.nodeId;e&&Se(e)}function Lt(){let e=U.value?.nodeId;e&&Wt(e)}function Rt(){let e=U.value?.nodeId;e&&we(e)}function zt(){let e=U.value?.nodeId;e&&ge(e)}function Bt(){let e=U.value?.nodeId;if(!e)return;let t=W(B.value,e)?.richContent,n=t?.kind===`code`?Yo(t.raw):``,r=t?.kind===`code`&&t.lang||``,i=r?"```"+r+`
131
131
  `:"```\n",a=window.prompt("输入代码块内容(用 ```lang 包裹;留空取消)",n?i+n+(n.endsWith("```")?``:"\n```"):i+"// 你的代码\n```");if(a===null)return;let o=a.trim();if(!o){H(e,null);return}let s=/^```([^\s`]*)/.exec(o);H(e,{kind:`code`,raw:o,lang:s?s[1]:void 0})}function Vt(){let e=U.value?.nodeId;e&&H(e,null)}function Ht(){let e=U.value?.nodeId;if(!e)return;let t=W(B.value,e)?.richContent,n=t?.kind===`table`?t.raw:``,r=window.prompt(`输入 markdown 表格(每行以 | 分隔;留空取消)`,n||`| 列1 | 列2 | 列3 |
132
132
  | --- | --- | --- |
133
133
  | a | b | c |`);if(r===null)return;let i=r.trim();if(!i){H(e,null);return}H(e,{kind:`table`,raw:i})}function Ut(){let e=U.value?.nodeId;e&&H(e,null)}function Wt(e){c.previewMode||(M.value=new Set([e]),cr(),c.builtInDrawers&&(lt(),tt.value=!0,it.value++),w(`edit-note`,e))}function Gt(e,t=60){let n=e.replace(/\s+/g,` `).trim();return n.length<=t?n||`点击编辑笔记`:n.slice(0,t)+`…`}function Kt(e){if(c.previewMode||k.value)return;let t=e.target;if(t&&(t.tagName===`INPUT`||t.tagName===`TEXTAREA`||t.isContentEditable))return;let n=N.value;if(!n)return;let r=e.clipboardData?.items;if(!r)return;for(let t=0;t<r.length;t++){let i=r[t];if(i.kind===`file`&&i.type.startsWith(`image/`)){let t=i.getAsFile();if(!t)continue;e.preventDefault();let r=W(B.value,n);if(r!=null&&r.image&&!window.confirm(`该节点已有图片,要用剪贴板里的图片替换吗?`))return;ye(t,e=>he(n,e));return}}if(R.value&&R.value.nodes.length>0)return;let i=null;for(let t=0;t<r.length;t++){let n=r[t];if(n.kind===`string`&&n.type===`text/plain`){i=e.clipboardData?.getData(`text/plain`)??null;break}}if(!i)return;let a=i.split(/\r?\n/).map(e=>e.replace(/^\s*[-*+]\s+/,``).trim()).filter(e=>e.length>0);if(a.length!==0){e.preventDefault(),K();for(let e of a)We(B.value,n,e);q(),w(`change`,B.value)}}i(()=>{window.addEventListener(`paste`,Kt),window.addEventListener(`keydown`,qt),q()}),t(()=>{window.removeEventListener(`paste`,Kt),window.removeEventListener(`keydown`,qt)});function qt(e){if((e.metaKey||e.ctrlKey)&&(e.key===`f`||e.key===`F`)){let t=e.target;if(t&&(t.tagName===`INPUT`||t.tagName===`TEXTAREA`||t.isContentEditable))return;e.preventDefault(),w(`canvas-outline`)}}let Jt=T(null),Yt=b(()=>Jt.value?.nodeId??null);function Xt(e,t){if(!t.image)return;e.preventDefault(),e.stopPropagation();let n=t.image.naturalW||t.image.width,r=t.image.naturalH||t.image.height,i=r>0?r/n:1;Jt.value={nodeId:t.id,startX:e.clientX,startY:e.clientY,startW:t.image.width,startH:t.image.height,naturalW:n,naturalH:r,ratio:i,pendingW:t.image.width,pendingH:t.image.height},window.addEventListener(`mousemove`,Zt),window.addEventListener(`mouseup`,Qt)}function Zt(e){let t=Jt.value;if(!t)return;let n=Y.scale.value||1,r=e.clientX-t.startX,i=ve(t.startW+r/n,td,nd),a=ve(i*t.ratio,td,nd);t.pendingW=i,t.pendingH=a;let o=E.value?.querySelector(`[data-node-id="${t.nodeId}"] .zm-node-img`);o&&(o.style.width=`${i}px`,o.style.height=`${a}px`);let s=E.value?.querySelector(`[data-node-id="${t.nodeId}"]`);s&&(s.style.minWidth=`${Math.max(80,Math.ceil(i+28))}px`,s.style.height=`${Math.ceil(a+8+30)}px`)}function Qt(){let e=Jt.value;if(window.removeEventListener(`mousemove`,Zt),window.removeEventListener(`mouseup`,Qt),Jt.value=null,!e)return;let t=W(B.value,e.nodeId);!t||!t.image||(he(e.nodeId,{src:t.image.src,naturalW:t.image.naturalW,naturalH:t.image.naturalH,width:e.pendingW,height:e.pendingH}),M.value=new Set([e.nodeId]),cr(),en=!0)}let $t=T(null),en=!1;function tn(e){$t.value=e}function nn(e){$t.value===e&&($t.value=null),ae.value&&=null}function an(e,t){if(!t.text||t.text.length<14)return;let n=e.currentTarget.getBoundingClientRect(),r=E.value?.getBoundingClientRect();if(!r)return;let i=n.top-r.top>60,a=n.left-r.left+n.width/2,o=r.width-240/2-10,s=Math.max(130,Math.min(a,o)),c=i?n.top-r.top-8:n.bottom-r.top+8;ae.value={text:t.text,x:s,y:c,above:i}}let on=T(0),sn=T(!1),cn=ot(100);function K(){cn.record({data:B.value,selectedIds:[...M.value]})}function q(){P.value=new Set(P.value),on.value++,a().then(()=>a()).then(()=>ln()).then(()=>{on.value++})}function ln(){let e=document.querySelectorAll(`.zm-rich`),t={},n={};e.forEach(e=>{let r=e,i=null;for(;r&&!i;)i=r.getAttribute(`data-node-id`),r=r.parentElement;if(!i)return;let a=e.offsetHeight,o=e.scrollWidth,s=Math.round(a*2)/2,c=Math.round(o*2)/2;t[i]=s,n[i]=c,se.value[i],ce.value[i]}),se.value=t,ce.value=n}let un=b(()=>({rootBg:c.theme?.rootBg??`#1f2937`,rootText:c.theme?.rootText??`#ffffff`,branchBg:c.theme?.branchBg??`#ffffff`,branchText:c.theme?.branchText??`#1f2937`,lineColor:c.theme?.lineColor??`#94a3b8`,bgColor:c.theme?.bgColor??`#f8fafc`,fontSize:c.theme?.fontSize??14,lineWidthStart:c.theme?.lineWidthStart??2.2,lineWidthEnd:c.theme?.lineWidthEnd??.8,rainbowBranch:c.theme?.rainbowBranch??!1})),dn=b(()=>J.canvasBg||un.value.bgColor),J=m({autoBalanceOnChange:!0,lineWidthStart:16,lineWidthEnd:3.6,rainbowBranch:!0,branchPaletteId:`default`,customPalettes:[],lineStyle:`rounded-elbow`,rootLineStyle:`arc`,lineOrigin:`proportional`,layoutMode:`mindmap`,taperedEdge:!0,lineWidthTaper:.3,uniformLineWidth:!0,elbowRadius:20,showOrderBadge:!1,canvasBg:void 0,branchGap:20});function fn(e){return e?J.rootLineStyle:J.lineStyle}function pn(e){return J.taperedEdge?J.uniformLineWidth&&e>0?J.lineWidthEnd:hn(e):gn(e)}function mn(e){return J.taperedEdge?J.lineWidthEnd:gn(e)}function hn(e){let t=J.lineWidthTaper,n=J.lineWidthStart*t**+e;return Math.max(J.lineWidthEnd,n)}function gn(e){if(e<=0)return J.lineWidthStart;if(e>=3)return J.lineWidthEnd;let t=e/3;return J.lineWidthStart+(J.lineWidthEnd-J.lineWidthStart)*t}function _n(e,t,n,r){let i=1-e;return{x:i*i*i*t.x+3*i*i*e*n.x1+3*i*e*e*n.x2+e*e*e*r.x,y:i*i*i*t.y+3*i*i*e*n.y1+3*i*e*e*n.y2+e*e*e*r.y}}function vn(e,t,n,r){let i=1-e;return{x:i*i*t.x+2*i*e*n.x+e*e*r.x,y:i*i*t.y+2*i*e*n.y+e*e*r.y}}function yn(e,t,n,r,i=32,a=`curve`,o=`right`){if(a===`curve`){let a;if(o===`right`||o===`left`){let n=Math.abs(t.x-e.x)*.45,r=o===`right`?1:-1;a={x1:e.x+r*n,y1:e.y,x2:t.x-r*n,y2:t.y}}else{let n=Math.abs(t.y-e.y)*.45;a={x1:e.x,y1:e.y+n,x2:t.x,y2:t.y-n}}let s=n=>{let r=1-n;return{dx:-3*r*r*e.x+3*(r*r-2*r*n)*a.x1+3*(2*r*n-n*n)*a.x2+3*n*n*t.x,dy:-3*r*r*e.y+3*(r*r-2*r*n)*a.y1+3*(2*r*n-n*n)*a.y2+3*n*n*t.y}},c=[],l=[];for(let o=0;o<=i;o++){let u=o/i,d=o===0?e:o===i?t:_n(u,e,a,t),f=s(u),p=Math.hypot(f.dx,f.dy);p<1e-6&&(p=1);let m=-f.dy/p,h=f.dx/p,g=(n+(r-n)*u)/2;c.push({x:d.x+m*g,y:d.y+h*g}),l.push({x:d.x-m*g,y:d.y-h*g})}let u=`M ${c[0].x.toFixed(2)} ${c[0].y.toFixed(2)}`;for(let e=1;e<=i;e++)u+=` L ${c[e].x.toFixed(2)} ${c[e].y.toFixed(2)}`;for(let e=i;e>=0;e--)u+=` L ${l[e].x.toFixed(2)} ${l[e].y.toFixed(2)}`;return u+=` Z`,u}if(a===`arc`){let a;a=o===`right`||o===`left`?{x:(e.x+t.x)/2,y:t.y}:{x:t.x,y:(e.y+t.y)/2};let s=n=>{let r=1-n;return{dx:2*r*(a.x-e.x)+2*n*(t.x-a.x),dy:2*r*(a.y-e.y)+2*n*(t.y-a.y)}},c=[],l=[];for(let o=0;o<=i;o++){let u=o/i,d=o===0?e:o===i?t:vn(u,e,a,t),f=s(u),p=Math.hypot(f.dx,f.dy);p<1e-6&&(p=1);let m=-f.dy/p,h=f.dx/p,g=(n+(r-n)*u)/2;c.push({x:d.x+m*g,y:d.y+h*g}),l.push({x:d.x-m*g,y:d.y-h*g})}let u=n/2,d=r/2,f=`M ${c[0].x.toFixed(2)} ${c[0].y.toFixed(2)}`;for(let e=1;e<=i;e++)f+=` L ${c[e].x.toFixed(2)} ${c[e].y.toFixed(2)}`;f+=` A ${d.toFixed(2)} ${d.toFixed(2)} 0 0 0 ${l[i].x.toFixed(2)} ${l[i].y.toFixed(2)}`;for(let e=i-1;e>=0;e--)f+=` L ${l[e].x.toFixed(2)} ${l[e].y.toFixed(2)}`;return f+=` A ${u.toFixed(2)} ${u.toFixed(2)} 0 0 0 ${c[0].x.toFixed(2)} ${c[0].y.toFixed(2)}`,f+=` Z`,f}if(a===`elbow`){let i=[];if(o===`down`){let n=(e.y+t.y)/2;i.push(e,{x:e.x,y:n},{x:t.x,y:n},t)}else{let n=(e.x+t.x)/2;i.push(e,{x:n,y:e.y},{x:n,y:t.y},t)}let a=[],s=0;for(let e=0;e<i.length-1;e++){let t=Math.hypot(i[e+1].x-i[e].x,i[e+1].y-i[e].y);a.push(t),s+=t}let c=[n/2],l=0;for(let e=0;e<a.length-1;e++){l+=a[e];let t=s>0?l/s:0;c.push((n+(r-n)*t)/2)}c.push(r/2);let u=[];for(let e=0;e<i.length-1;e++){let t=i[e+1].x-i[e].x,n=i[e+1].y-i[e].y,r=Math.hypot(t,n);r<1e-6&&(r=1),u.push({x:-n/r,y:t/r})}let d=[],f=[];d.push({x:i[0].x+u[0].x*c[0],y:i[0].y+u[0].y*c[0]}),f.push({x:i[0].x-u[0].x*c[0],y:i[0].y-u[0].y*c[0]});for(let e=1;e<i.length-1;e++){let t=u[e-1],n=u[e],r=c[e],a=t.x+n.x,o=t.y+n.y,s=a*a+o*o;if(s<1e-6)d.push({x:i[e].x+t.x*r,y:i[e].y+t.y*r}),f.push({x:i[e].x-t.x*r,y:i[e].y-t.y*r});else{let t=2*r/s;d.push({x:i[e].x+a*t,y:i[e].y+o*t}),f.push({x:i[e].x-a*t,y:i[e].y-o*t})}}let p=u[u.length-1],m=c[c.length-1];d.push({x:i[i.length-1].x+p.x*m,y:i[i.length-1].y+p.y*m}),f.push({x:i[i.length-1].x-p.x*m,y:i[i.length-1].y-p.y*m});let h=`M ${d[0].x.toFixed(2)} ${d[0].y.toFixed(2)}`;for(let e=1;e<d.length;e++)h+=` L ${d[e].x.toFixed(2)} ${d[e].y.toFixed(2)}`;for(let e=f.length-1;e>=0;e--)h+=` L ${f[e].x.toFixed(2)} ${f[e].y.toFixed(2)}`;return h+=` Z`,h}if(a===`rounded-elbow`&&!(o===`down`?Math.abs(e.x-t.x)<.5:Math.abs(e.y-t.y)<.5)){let i=function(e,t,n){let r={x:e.pos.x-t*e.d1.x,y:e.pos.y-t*e.d1.y},i={x:e.pos.x+t*e.d2.x,y:e.pos.y+t*e.d2.y},a={x:e.pos.x+t*(e.d2.x-e.d1.x),y:e.pos.y+t*(e.d2.y-e.d1.y)},o=Math.atan2(r.y-a.y,r.x-a.x),s=Math.atan2(i.y-a.y,i.x-a.x)-o;for(;s>Math.PI;)s-=2*Math.PI;for(;s<-Math.PI;)s+=2*Math.PI;let c=[];for(let e=1;e<n;e++){let r=e/n,i=o+s*r;c.push({x:a.x+t*Math.cos(i),y:a.y+t*Math.sin(i)})}return c},a=[],s;if(o===`down`){let n=(e.y+t.y)/2,r=Math.sign(n-e.y)||1,i=Math.sign(t.x-e.x)||1,a=Math.sign(t.y-n)||1;s=[{pos:{x:e.x,y:n},d1:{x:0,y:r},d2:{x:i,y:0}},{pos:{x:t.x,y:n},d1:{x:i,y:0},d2:{x:0,y:a}}]}else{let n=(e.x+t.x)/2,r=Math.sign(n-e.x)||1,i=Math.sign(t.y-e.y)||1,a=Math.sign(t.x-n)||1;s=[{pos:{x:n,y:e.y},d1:{x:r,y:0},d2:{x:0,y:i}},{pos:{x:n,y:t.y},d1:{x:0,y:i},d2:{x:a,y:0}}]}let c=Math.hypot(s[1].pos.x-s[0].pos.x,s[1].pos.y-s[0].pos.y),l=Math.hypot(t.x-s[1].pos.x,t.y-s[1].pos.y),u=Math.min(c,l,J.elbowRadius)*.5,d=Math.max(2,u);a.push(e),a.push(s[0].pos),a.push({x:s[1].pos.x-d*s[1].d1.x,y:s[1].pos.y-d*s[1].d1.y});for(let e of i(s[1],d,12))a.push(e);a.push(t);let f=[],p=0;for(let e=0;e<a.length-1;e++){let t=Math.hypot(a[e+1].x-a[e].x,a[e+1].y-a[e].y);f.push(t),p+=t}let m=[];for(let e=0;e<a.length-1;e++){let t=a[e+1].x-a[e].x,n=a[e+1].y-a[e].y,r=Math.hypot(t,n);r<1e-6&&(r=1),m.push({x:-n/r,y:t/r})}let h=[],g=0;for(let e=0;e<a.length;e++){e>0&&(g+=f[e-1]);let t=p>0?g/p:0;h.push((n+(r-n)*t)/2)}let _=[],v=[];for(let e=0;e<a.length;e++){let t=h[e];if(e===0){let n=m[0];_.push({x:a[e].x+n.x*t,y:a[e].y+n.y*t}),v.push({x:a[e].x-n.x*t,y:a[e].y-n.y*t})}else if(e===a.length-1){let n=m[m.length-1];_.push({x:a[e].x+n.x*t,y:a[e].y+n.y*t}),v.push({x:a[e].x-n.x*t,y:a[e].y-n.y*t})}else{let n=m[e-1],r=m[e],i=n.x+r.x,o=n.y+r.y,s=i*i+o*o;if(s<1e-6)_.push({x:a[e].x+n.x*t,y:a[e].y+n.y*t}),v.push({x:a[e].x-n.x*t,y:a[e].y-n.y*t});else{let n=2*t/s;_.push({x:a[e].x+i*n,y:a[e].y+o*n}),v.push({x:a[e].x-i*n,y:a[e].y-o*n})}}}let y=`M ${_[0].x.toFixed(2)} ${_[0].y.toFixed(2)}`;for(let e=1;e<_.length;e++)y+=` L ${_[e].x.toFixed(2)} ${_[e].y.toFixed(2)}`;y+=` L ${v[_.length-1].x.toFixed(2)} ${v[_.length-1].y.toFixed(2)}`;for(let e=v.length-2;e>=0;e--)y+=` L ${v[e].x.toFixed(2)} ${v[e].y.toFixed(2)}`;return y+=` Z`,y}{let i=t.x-e.x,a=t.y-e.y,o=Math.hypot(i,a);o<1e-6&&(o=1);let s=-a/o,c=i/o,l=n/2,u=r/2,d={x:e.x+s*l,y:e.y+c*l},f={x:e.x-s*l,y:e.y-c*l},p={x:t.x-s*u,y:t.y-c*u},m={x:t.x+s*u,y:t.y+c*u};return`M ${d.x.toFixed(2)} ${d.y.toFixed(2)} L ${m.x.toFixed(2)} ${m.y.toFixed(2)} L ${p.x.toFixed(2)} ${p.y.toFixed(2)} L ${f.x.toFixed(2)} ${f.y.toFixed(2)} Z`}}let bn=b(()=>Nn.value.root.children),xn=Me[0].colors,Sn=b(()=>Ne(J.branchPaletteId,J.customPalettes)),Cn=b(()=>{let e=new Map;if(!J.rainbowBranch)return e;let t=c.lineColors,n=t&&t.length>0?t:Sn.value.colors.length>0?Sn.value.colors:xn;for(let t=0;t<bn.value.length;t++){let r=bn.value[t];e.set(r.id,n[t%n.length])}let r=(t,n)=>{e.set(t.id,n);for(let e of t.children)r(e,n)};for(let e=0;e<bn.value.length;e++){let t=bn.value[e];r(t,n[e%n.length])}return e});function wn(e,t){return J.rainbowBranch?Cn.value.get(t.id)??un.value.lineColor:un.value.lineColor}function Tn(e){let t=me(e.id);if(t.bg)return t.bg;if(e.isRoot)return un.value.rootBg;if(e.depth>=3)return`transparent`;let n=e.depth===1?.15:.08;if(J.rainbowBranch){let t=Cn.value.get(e.id);if(t)return jn(t,n)}return jn(un.value.rootBg,n)}function En(e){let t=me(e.id);if(t.textColor)return t.textColor;if(e.isRoot)return un.value.rootText;if(J.rainbowBranch){let t=Cn.value.get(e.id);if(t)return Mn(t,.55)}return un.value.branchText}function Dn(e){let t=me(e.id);return t.borderColor?t.borderColor:`transparent`}function On(e){let t=me(e.id);return t.fontWeight?t.fontWeight:e.isRoot?700:e.depth<=1?600:e.depth===2?500:400}function kn(e){return me(e.id).fontSize??e.fontSize??un.value.fontSize}function jn(e,t){let n=e.replace(`#`,``),r=n.length===6?n:n.split(``).map(e=>e+e).join(``);return`rgba(${parseInt(r.slice(0,2),16)}, ${parseInt(r.slice(2,4),16)}, ${parseInt(r.slice(4,6),16)}, ${t})`}function Mn(e,t){let n=e.replace(`#`,``),r=n.length===6?n:n.split(``).map(e=>e+e).join(``);return`rgb(${Math.round(parseInt(r.slice(0,2),16)*(1-t))}, ${Math.round(parseInt(r.slice(2,4),16)*(1-t))}, ${Math.round(parseInt(r.slice(4,6),16)*(1-t))})`}let Y=nt({getContainer:()=>E.value});Y.setOnMarqueeEnd(Ar),at({isEditing:()=>k.value!==null,isReadonly:()=>c.previewMode,getSelectedId:()=>N.value,getSelectedIds:()=>[...M.value],defaultTargetId:()=>B.value.id,onAddChild:Xn,onAddSibling:Zn,onAddSiblingBefore:Qn,onRemove:ur,onStartEdit:Bn,onClearSelection:()=>{M.value=new Set,cr()},onDuplicate:$n,onCopy:rr,onCut:ir,onPaste:ar,hasClipboard:()=>!!R.value&&R.value.nodes.length>0,onUndo:or,onRedo:sr,onNavigate:lr,onMoveSibling:vr,onSelectRoot:()=>{M.value=new Set([B.value.id]),cr()}});let Nn=b(()=>{let e=ze(B.value);return Rn(e),Te(e,{mode:J.layoutMode,baseFontSize:un.value.fontSize,richHeights:se.value,richWidths:ce.value,branchGap:J.branchGap})}),Pn=T([]),Fn=b(()=>(on.value,Pn.value));r(Nn,e=>{let t=[],n=e=>{t.push(e);for(let t of e.children)n(t)};n(e.root),Pn.value=t},{immediate:!0});let In=b(()=>{let e=[];for(let t of Fn.value)for(let n of t.children)e.push({from:t,to:n,key:`${t.id}->${n.id}`});return e}),Ln=b(()=>`${Nn.value.vbX} ${Nn.value.vbY} ${Nn.value.vbW} ${Nn.value.vbH}`);function Rn(e){if(P.value.has(e.id)){e.children=[],e.collapsed=!0;return}e.collapsed=!1;for(let t of e.children)Rn(t)}function Bn(e){let t=W(B.value,e);t&&(k.value=e,j.value=t.text,M.value=new Set([e]),cr(),a(()=>{let e=document.querySelector(`.zm-input`);e?.focus(),e?.select(),Un(e)}))}function Vn(){if(!k.value)return;let e=W(B.value,k.value);e&&e.text!==(j.value.trim()||` `)&&(e.text=j.value.trim()||` `,K(),w(`change`,B.value)),k.value=null}function Hn(){k.value=null}function Un(e){e&&(e.style.height=`auto`,e.style.height=e.scrollHeight+`px`)}function Wn(e){Un(e.target)}function Gn(e){if(c.previewMode)return;let t=W(B.value,e);t!=null&&t.richContent&&(z.value=e,oe.value=t.richContent.raw,a(()=>{document.querySelector(`.zm-node .zm-rich textarea`)?.focus()}))}function Kn(){if(!z.value)return;let e=z.value,t=W(B.value,e),n=oe.value;t&&t.richContent&&t.richContent.raw!==n&&(t.richContent.kind===`code`?H(e,{kind:`code`,raw:n,lang:Xo(n)||void 0}):H(e,{kind:`table`,raw:n})),z.value=null}function qn(){z.value=null}function Jn(e){e.key===`Escape`?(e.preventDefault(),qn()):e.key===`Enter`&&(e.ctrlKey||e.metaKey)&&(e.preventDefault(),Kn())}function Yn(e){let t=e.metaKey||e.ctrlKey;t&&(e.key===`z`||e.key===`Z`)&&!e.shiftKey?(e.preventDefault(),or()):(t&&e.shiftKey&&(e.key===`z`||e.key===`Z`)||t&&(e.key===`y`||e.key===`Y`)&&!e.shiftKey)&&(e.preventDefault(),sr())}function Xn(e){let t=We(B.value,e,Ze);t&&(K(),q(),w(`change`,B.value),a(()=>Bn(t.id)))}function Zn(e){if(e===B.value.id){Xn(e);return}let t=Ge(B.value,e,Ze);t&&(K(),q(),w(`change`,B.value),a(()=>Bn(t.id)))}function Qn(e){if(e===B.value.id){Xn(e);return}let t=Ke(B.value,e,Ze);t&&(K(),q(),w(`change`,B.value),a(()=>Bn(t.id)))}function $n(e){if(e===B.value.id)return;let t=qe(B.value,e);t&&(K(),M.value=new Set([t.id]),cr(),w(`change`,B.value),q())}function er(e){let t=[],n=new Set;for(let r of e)r!==B.value.id&&(n.has(r)||W(B.value,r)&&(n.add(r),t.push(r)));return t}function tr(e){let t=new Set(e),n=[],r=e=>{t.has(e.id)&&n.push(e.id);for(let t of e.children)r(t)};return r(B.value),n}function nr(e){var t;try{(t=navigator.clipboard)==null||t.writeText(e)}catch{}}function rr(e){let t=tr(er(e));if(t.length===0)return;let n=[];for(let e of t){let t=Ye(B.value,e);t&&n.push(t)}n.length!==0&&(R.value={nodes:n,originalIds:new Set(t)},nr(n.map(e=>e.text).join(`