@nextclaw/ui 0.20.3 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/dist/assets/{api-iMkU_o5P.js → api-m33O1Kb0.js} +6 -6
  3. package/dist/assets/{appearance-settings-page-CU5k4b-M.js → appearance-settings-page-x4Vjnfmz.js} +1 -1
  4. package/dist/assets/{book-open-nD8gdMhA.js → book-open-BHiasMCg.js} +1 -1
  5. package/dist/assets/{channels-list-page-Drlt62kY.js → channels-list-page-DOxJZeXq.js} +2 -2
  6. package/dist/assets/{config-split-page-BtJZp1E5.js → config-split-page-DBnMEP1o.js} +1 -1
  7. package/dist/assets/{confirm-dialog-k2-Jq_x3.js → confirm-dialog-f5NKLh5I.js} +2 -2
  8. package/dist/assets/{createLucideIcon-DxlwKLr-.js → createLucideIcon-CHALGA42.js} +1 -1
  9. package/dist/assets/desktop-capabilities-page-DixayAe6.js +1 -0
  10. package/dist/assets/desktop-update-config-ChhfeOHj.js +1 -0
  11. package/dist/assets/{dist-Cy_e4kNb.js → dist-_UMsWSY0.js} +1 -1
  12. package/dist/assets/{dist-m08DUswB.js → dist-sD6V4nHX.js} +1 -1
  13. package/dist/assets/doc-browser-Bq7LJsQY.js +1 -0
  14. package/dist/assets/doc-browser-BuDgpY2e.js +1 -0
  15. package/dist/assets/{doc-browser-context-jiy-O4F8.js → doc-browser-context-Capim3og.js} +1 -1
  16. package/dist/assets/{extensions-CIb17__o.js → extensions-Bdclr3Wr.js} +1 -1
  17. package/dist/assets/{form-actions-DGf5zUg_.js → form-actions-CH0kWhEt.js} +1 -1
  18. package/dist/assets/index-BjxnLYE3.js +109 -0
  19. package/dist/assets/index-CBmwJjwE.css +1 -0
  20. package/dist/assets/loader-circle-CH_0iPLy.js +1 -0
  21. package/dist/assets/mcp-marketplace-page-BUsxLVB5.js +10 -0
  22. package/dist/assets/mcp-marketplace-page-GPRV3fB0.js +1 -0
  23. package/dist/assets/model-config-page-CIevwqp4.js +1 -0
  24. package/dist/assets/{navigation-link-DAfwFCj4.js → navigation-link-CAUiM3zS.js} +1 -1
  25. package/dist/assets/plus-B3obD55V.js +1 -0
  26. package/dist/assets/privacy-settings-page-CNKfZsYH.js +1 -0
  27. package/dist/assets/providers-config-page-DAah2NIS.js +1 -0
  28. package/dist/assets/react-Co6JiC1n.js +8 -0
  29. package/dist/assets/{refresh-cw-D_Eibznw.js → refresh-cw-BG_LX3SS.js} +1 -1
  30. package/dist/assets/remote-DuscgfvR.js +1 -0
  31. package/dist/assets/{rotate-cw-QQjmoWuq.js → rotate-cw-Cz7I_m7O.js} +1 -1
  32. package/dist/assets/runtime-config-page-Cl1RpmSC.js +1 -0
  33. package/dist/assets/{save-W2xthJJ2.js → save-BiHnb8ps.js} +1 -1
  34. package/dist/assets/{search-Vih1R2BD.js → search-C47TyRg0.js} +1 -1
  35. package/dist/assets/{search-config-page-CtBcL2uc.js → search-config-page-BAIzd6gN.js} +1 -1
  36. package/dist/assets/{secrets-config-page-Q6XfIj0h.js → secrets-config-page-Ddi-n43R.js} +2 -2
  37. package/dist/assets/security-config-C8MHnE1r.js +1 -0
  38. package/dist/assets/{select-lNdozU4o.js → select-BzQKfW1e.js} +2 -2
  39. package/dist/assets/skeleton-BXFAE9SE.js +1 -0
  40. package/dist/assets/{tag-chip-gdaU9bE7.js → tag-chip-C3K814HZ.js} +1 -1
  41. package/dist/assets/x-C1r9IXet.js +1 -0
  42. package/dist/index.html +29 -21
  43. package/dist/themes/island/island-atmosphere.webp +0 -0
  44. package/index.html +8 -0
  45. package/package.json +8 -8
  46. package/public/themes/island/island-atmosphere.webp +0 -0
  47. package/src/app/components/layout/header.tsx +4 -1
  48. package/src/app/components/layout/page-layout.tsx +4 -1
  49. package/src/app/components/layout/sidebar.tsx +6 -1
  50. package/src/app/configs/app-navigation.config.ts +17 -2
  51. package/src/app/hooks/use-feature-controls.ts +11 -0
  52. package/src/app/index.tsx +10 -0
  53. package/src/app/styles/island-theme.css +542 -0
  54. package/src/features/chat/components/conversation/__tests__/chat-conversation-header.test.tsx +1 -0
  55. package/src/features/chat/components/conversation/chat-conversation-header.tsx +5 -1
  56. package/src/features/chat/components/conversation/chat-conversation-panel.tsx +4 -1
  57. package/src/features/chat/components/layout/__tests__/chat-sidebar-toolbar.test.tsx +10 -0
  58. package/src/features/chat/components/layout/chat-page-shell.tsx +4 -1
  59. package/src/features/chat/components/layout/chat-sidebar-toolbar.tsx +2 -0
  60. package/src/features/chat/components/layout/chat-sidebar.tsx +2 -0
  61. package/src/features/chat/features/session/components/__tests__/chat-sidebar-session-item.test.tsx +12 -0
  62. package/src/features/chat/features/session/components/chat-sidebar-session-entry.tsx +3 -0
  63. package/src/features/chat/features/session/components/chat-sidebar-session-item.tsx +14 -1
  64. package/src/features/chat/features/session/utils/chat-session-deletion.utils.ts +25 -0
  65. package/src/features/chat/features/workspace/components/__tests__/chat-session-workspace-panel.test.tsx +1 -0
  66. package/src/features/chat/features/workspace/components/chat-session-workspace-panel-content.tsx +1 -0
  67. package/src/features/chat/features/workspace/components/chat-session-workspace-panel.tsx +1 -0
  68. package/src/features/chat/managers/__tests__/chat-thread-deletion.manager.test.ts +125 -0
  69. package/src/features/chat/managers/__tests__/chat-thread.manager.test.ts +0 -37
  70. package/src/features/chat/managers/chat-thread.manager.ts +17 -28
  71. package/src/features/desktop-capabilities/components/desktop-authorization-dialog.test.tsx +58 -0
  72. package/src/features/desktop-capabilities/components/desktop-authorization-dialog.tsx +161 -0
  73. package/src/features/desktop-capabilities/hooks/use-desktop-capabilities.test.ts +10 -0
  74. package/src/features/desktop-capabilities/hooks/use-desktop-capabilities.ts +55 -0
  75. package/src/features/desktop-capabilities/index.ts +1 -0
  76. package/src/features/desktop-capabilities/managers/desktop-capability.manager.ts +25 -0
  77. package/src/features/desktop-capabilities/pages/desktop-capabilities-page.test.tsx +44 -0
  78. package/src/features/desktop-capabilities/pages/desktop-capabilities-page.tsx +171 -0
  79. package/src/features/desktop-capabilities/stores/desktop-authorization.store.ts +21 -0
  80. package/src/features/marketplace/components/mcp/__tests__/mcp-connection-dialog.test.tsx +23 -0
  81. package/src/features/marketplace/components/mcp/mcp-connection-dialog.tsx +35 -0
  82. package/src/features/marketplace/components/mcp/mcp-marketplace-page.tsx +20 -2
  83. package/src/features/pwa/managers/__tests__/pwa-shell-theme.manager.test.ts +9 -0
  84. package/src/features/pwa/managers/pwa-shell-theme.manager.ts +1 -0
  85. package/src/features/service-apps/components/__tests__/service-apps-panel.test.tsx +35 -1
  86. package/src/features/service-apps/components/service-action-row.tsx +130 -0
  87. package/src/features/service-apps/components/service-app-list-item.tsx +11 -66
  88. package/src/features/service-apps/components/service-apps-panel.tsx +12 -0
  89. package/src/features/service-apps/hooks/use-service-apps.ts +20 -1
  90. package/src/features/settings/pages/__tests__/appearance-settings-page.test.tsx +2 -2
  91. package/src/features/side-dock/components/side-dock.tsx +1 -0
  92. package/src/index.css +1 -0
  93. package/src/platforms/desktop/components/__tests__/desktop-app-shell.test.tsx +8 -0
  94. package/src/platforms/desktop/components/desktop-app-shell.tsx +56 -2
  95. package/src/platforms/desktop/components/desktop-window-chrome.tsx +1 -0
  96. package/src/platforms/mobile/components/mobile-settings-shell.tsx +5 -1
  97. package/src/shared/components/doc-browser/__tests__/doc-browser.test.tsx +3 -0
  98. package/src/shared/components/doc-browser/doc-browser.tsx +2 -0
  99. package/src/shared/components/ui/__tests__/confirm-dialog.test.tsx +31 -0
  100. package/src/shared/components/ui/confirm-dialog.tsx +11 -1
  101. package/src/shared/components/ui/context-menu/context-menu.tsx +1 -0
  102. package/src/shared/components/ui/dialog.tsx +2 -0
  103. package/src/shared/components/ui/overlays/sheet.tsx +2 -0
  104. package/src/shared/components/ui/popover.tsx +1 -0
  105. package/src/shared/components/ui/select.tsx +1 -0
  106. package/src/shared/components/ui/tooltip.tsx +1 -0
  107. package/src/shared/lib/api/index.ts +1 -0
  108. package/src/shared/lib/api/utils/mcp-connection.utils.ts +10 -0
  109. package/src/shared/lib/i18n/locales/en-US/chat.json +2 -0
  110. package/src/shared/lib/i18n/locales/en-US/core.json +44 -0
  111. package/src/shared/lib/i18n/locales/en-US/doc-browser.json +1 -0
  112. package/src/shared/lib/i18n/locales/en-US/marketplace.json +29 -1
  113. package/src/shared/lib/i18n/locales/zh-CN/chat.json +2 -0
  114. package/src/shared/lib/i18n/locales/zh-CN/core.json +44 -0
  115. package/src/shared/lib/i18n/locales/zh-CN/doc-browser.json +1 -0
  116. package/src/shared/lib/i18n/locales/zh-CN/marketplace.json +29 -1
  117. package/src/shared/lib/theme/index.test.ts +9 -0
  118. package/src/shared/lib/theme/index.ts +2 -0
  119. package/dist/assets/desktop-update-config-BiZmy7FC.js +0 -1
  120. package/dist/assets/doc-browser-CPsPHh12.js +0 -1
  121. package/dist/assets/doc-browser-npOvWtgf.js +0 -1
  122. package/dist/assets/index-C86hxgv5.css +0 -1
  123. package/dist/assets/index-CYBXR7zN.js +0 -109
  124. package/dist/assets/loader-circle-BlLuRFVW.js +0 -1
  125. package/dist/assets/mcp-marketplace-page-B12JNh7Q.js +0 -1
  126. package/dist/assets/mcp-marketplace-page-kLWW6kzt.js +0 -9
  127. package/dist/assets/model-config-page-DSeAjVT_.js +0 -1
  128. package/dist/assets/plus-D4LtWtTk.js +0 -1
  129. package/dist/assets/privacy-settings-page-tN0Mt15x.js +0 -1
  130. package/dist/assets/providers-config-page-CgPrXR1u.js +0 -1
  131. package/dist/assets/react-8iBFECZE.js +0 -8
  132. package/dist/assets/remote-Derr_AQp.js +0 -1
  133. package/dist/assets/runtime-config-page-Crq96Jjq.js +0 -1
  134. package/dist/assets/security-config-CE9rkQvq.js +0 -1
  135. package/dist/assets/skeleton-B__aTcly.js +0 -1
  136. package/dist/assets/x-CWdWBu_U.js +0 -1
@@ -1 +1 @@
1
- import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,L as r,a as i,o as a}from"./react-8iBFECZE.js";import{Bt as o,an as s,in as c,nn as l,rn as u}from"./api-iMkU_o5P.js";import{m as d}from"./mcp-marketplace-page-kLWW6kzt.js";import{a as f,i as p,n as m,r as h,t as g,w as _}from"./select-lNdozU4o.js";import{L as v,a as y,n as b,s as x}from"./index-CYBXR7zN.js";var S=e(n(),1);function C(){let{language:e,setLanguage:t}=d();return{currentLanguage:e,currentLanguageLabel:a.find(t=>t.value===e)?.label??e,languageOptions:a,selectLanguage:(0,S.useCallback)(n=>{e!==n&&(t(n),window.location.reload())},[e,t])}}var w=t(),T=[{value:`card`,labelKey:`chatMessageLayoutCard`,descriptionKey:`chatMessageLayoutCardDescription`},{value:`flat`,labelKey:`chatMessageLayoutFlat`,descriptionKey:`chatMessageLayoutFlatDescription`}];function E(){let{theme:e,setTheme:t}=y(),{currentLanguage:n,languageOptions:a,selectLanguage:d}=C(),S=v(e=>e.layout),E=v(e=>e.setLayout),D=b(e=>e.isVisible),O=b(e=>e.setVisible);return(0,w.jsx)(s,{title:i(`appearance`),children:(0,w.jsx)(c,{children:(0,w.jsxs)(u,{children:[(0,w.jsx)(l,{title:i(`theme`),control:(0,w.jsxs)(g,{value:e,onValueChange:e=>t(e),children:[(0,w.jsx)(p,{"aria-label":i(`theme`),className:`w-36 sm:w-44`,children:(0,w.jsx)(f,{})}),(0,w.jsx)(m,{children:x.map(e=>(0,w.jsx)(h,{value:e.value,children:i(e.labelKey)},e.value))})]})}),(0,w.jsx)(l,{title:i(`language`),control:(0,w.jsxs)(g,{value:n,onValueChange:e=>d(e),children:[(0,w.jsx)(p,{"aria-label":i(`language`),className:`w-36 sm:w-44`,children:(0,w.jsx)(f,{})}),(0,w.jsx)(m,{children:a.map(e=>(0,w.jsx)(h,{value:e.value,children:e.label},e.value))})]})}),(0,w.jsx)(l,{title:i(`chatMessageLayoutTitle`),description:i(`chatMessageLayoutDescription`),layout:`stacked`,children:(0,w.jsx)(`div`,{role:`radiogroup`,"aria-label":i(`chatMessageLayoutTitle`),className:`grid gap-1 rounded-xl bg-background/65 p-1 sm:grid-cols-2`,children:T.map(e=>{let t=e.value===S;return(0,w.jsxs)(`button`,{type:`button`,role:`radio`,"aria-checked":t,onClick:()=>E(e.value),className:r(`flex min-w-0 items-start gap-3 rounded-lg px-3 py-2.5 text-left transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40`,t?`bg-card text-foreground shadow-sm`:`text-muted-foreground hover:bg-card/60 hover:text-foreground`),children:[(0,w.jsx)(`span`,{className:r(`mt-0.5 flex h-4 w-4 shrink-0 items-center justify-center rounded-full ring-1`,t?`bg-primary text-primary-foreground ring-primary`:`bg-background ring-border`),children:t?(0,w.jsx)(_,{className:`h-2.5 w-2.5`,strokeWidth:3}):null}),(0,w.jsxs)(`span`,{className:`min-w-0`,children:[(0,w.jsx)(`span`,{className:`block text-sm font-medium`,children:i(e.labelKey)}),(0,w.jsx)(`span`,{className:`mt-1 block text-xs leading-5 text-muted-foreground`,children:i(e.descriptionKey)})]})]},e.value)})})}),(0,w.jsx)(l,{title:i(`sideDockVisibilityTitle`),description:i(`sideDockVisibilityDescription`),control:(0,w.jsx)(o,{id:`appearance-side-dock-visible`,"aria-label":i(`sideDockVisibilityTitle`),checked:D,onCheckedChange:O})})]})})})}export{E as AppearanceSettingsPage};
1
+ import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,L as r,a as i,o as a}from"./react-Co6JiC1n.js";import{Ht as o,an as s,in as c,on as l,sn as u}from"./api-m33O1Kb0.js";import{x as d}from"./mcp-marketplace-page-BUsxLVB5.js";import{a as f,i as p,n as m,r as h,t as g,w as _}from"./select-BzQKfW1e.js";import{H as v,f as y,n as b,u as x}from"./index-BjxnLYE3.js";var S=e(n(),1);function C(){let{language:e,setLanguage:t}=d();return{currentLanguage:e,currentLanguageLabel:a.find(t=>t.value===e)?.label??e,languageOptions:a,selectLanguage:(0,S.useCallback)(n=>{e!==n&&(t(n),window.location.reload())},[e,t])}}var w=t(),T=[{value:`card`,labelKey:`chatMessageLayoutCard`,descriptionKey:`chatMessageLayoutCardDescription`},{value:`flat`,labelKey:`chatMessageLayoutFlat`,descriptionKey:`chatMessageLayoutFlatDescription`}];function E(){let{theme:e,setTheme:t}=x(),{currentLanguage:n,languageOptions:a,selectLanguage:d}=C(),S=v(e=>e.layout),E=v(e=>e.setLayout),D=b(e=>e.isVisible),O=b(e=>e.setVisible);return(0,w.jsx)(u,{title:i(`appearance`),children:(0,w.jsx)(l,{children:(0,w.jsxs)(s,{children:[(0,w.jsx)(c,{title:i(`theme`),control:(0,w.jsxs)(g,{value:e,onValueChange:e=>t(e),children:[(0,w.jsx)(p,{"aria-label":i(`theme`),className:`w-36 sm:w-44`,children:(0,w.jsx)(f,{})}),(0,w.jsx)(m,{children:y.map(e=>(0,w.jsx)(h,{value:e.value,children:i(e.labelKey)},e.value))})]})}),(0,w.jsx)(c,{title:i(`language`),control:(0,w.jsxs)(g,{value:n,onValueChange:e=>d(e),children:[(0,w.jsx)(p,{"aria-label":i(`language`),className:`w-36 sm:w-44`,children:(0,w.jsx)(f,{})}),(0,w.jsx)(m,{children:a.map(e=>(0,w.jsx)(h,{value:e.value,children:e.label},e.value))})]})}),(0,w.jsx)(c,{title:i(`chatMessageLayoutTitle`),description:i(`chatMessageLayoutDescription`),layout:`stacked`,children:(0,w.jsx)(`div`,{role:`radiogroup`,"aria-label":i(`chatMessageLayoutTitle`),className:`grid gap-1 rounded-xl bg-background/65 p-1 sm:grid-cols-2`,children:T.map(e=>{let t=e.value===S;return(0,w.jsxs)(`button`,{type:`button`,role:`radio`,"aria-checked":t,onClick:()=>E(e.value),className:r(`flex min-w-0 items-start gap-3 rounded-lg px-3 py-2.5 text-left transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40`,t?`bg-card text-foreground shadow-sm`:`text-muted-foreground hover:bg-card/60 hover:text-foreground`),children:[(0,w.jsx)(`span`,{className:r(`mt-0.5 flex h-4 w-4 shrink-0 items-center justify-center rounded-full ring-1`,t?`bg-primary text-primary-foreground ring-primary`:`bg-background ring-border`),children:t?(0,w.jsx)(_,{className:`h-2.5 w-2.5`,strokeWidth:3}):null}),(0,w.jsxs)(`span`,{className:`min-w-0`,children:[(0,w.jsx)(`span`,{className:`block text-sm font-medium`,children:i(e.labelKey)}),(0,w.jsx)(`span`,{className:`mt-1 block text-xs leading-5 text-muted-foreground`,children:i(e.descriptionKey)})]})]},e.value)})})}),(0,w.jsx)(c,{title:i(`sideDockVisibilityTitle`),description:i(`sideDockVisibilityDescription`),control:(0,w.jsx)(o,{id:`appearance-side-dock-visible`,"aria-label":i(`sideDockVisibilityTitle`),checked:D,onCheckedChange:O})})]})})})}export{E as AppearanceSettingsPage};
@@ -1 +1 @@
1
- import{t as e}from"./createLucideIcon-DxlwKLr-.js";var t=e(`BookOpen`,[[`path`,{d:`M12 7v14`,key:`1akyts`}],[`path`,{d:`M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z`,key:`ruj8y`}]]);export{t};
1
+ import{t as e}from"./createLucideIcon-CHALGA42.js";var t=e(`BookOpen`,[[`path`,{d:`M12 7v14`,key:`1akyts`}],[`path`,{d:`M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z`,key:`ruj8y`}]]);export{t};
@@ -1,8 +1,8 @@
1
- import{i as e,t}from"./chunk-DseTPa7n.js";import{B as n,F as r,H as i,L as a,a as o,r as s,s as c}from"./react-8iBFECZE.js";import{n as l,t as u}from"./navigation-link-DAfwFCj4.js";import{At as d,Bt as f,On as p,Ot as m,Pt as h,_n as g,an as _,cn as v,gn as y,hn as b,kt as x,ln as S,un as C}from"./api-iMkU_o5P.js";import{C as w,a as T,i as E,n as D,r as O,t as k}from"./select-lNdozU4o.js";import{t as A}from"./createLucideIcon-DxlwKLr-.js";import{t as ee}from"./search-Vih1R2BD.js";import{t as te}from"./book-open-nD8gdMhA.js";import{t as ne}from"./loader-circle-BlLuRFVW.js";import{t as re}from"./x-CWdWBu_U.js";import{t as ie}from"./tag-chip-gdaU9bE7.js";import{B as ae,H as j,R as M,U as oe,V as N,_t as se,c as ce,d as P,ft as le,gt as ue,h as de,l as F,lt as I,u as fe,w as pe,yt as me,z as he}from"./index-CYBXR7zN.js";import{t as ge}from"./form-actions-DGf5zUg_.js";import{t as L}from"./config-hints-nV5HPOvq.js";import{a as _e,c as ve,i as ye,l as be,n as xe,o as Se,r as Ce,s as we,t as Te}from"./config-split-page-BtJZp1E5.js";var Ee=A(`Hash`,[[`line`,{x1:`4`,x2:`20`,y1:`9`,y2:`9`,key:`4lhtct`}],[`line`,{x1:`4`,x2:`20`,y1:`15`,y2:`15`,key:`vyu0kd`}],[`line`,{x1:`10`,x2:`8`,y1:`3`,y2:`21`,key:`1ggp8o`}],[`line`,{x1:`16`,x2:`14`,y1:`3`,y2:`21`,key:`weycgp`}]]),De=A(`Mail`,[[`rect`,{width:`20`,height:`16`,x:`2`,y:`4`,rx:`2`,key:`18n3k1`}],[`path`,{d:`m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7`,key:`1ocrg3`}]]),R=A(`MessageCircleMore`,[[`path`,{d:`M7.9 20A9 9 0 1 0 4 16.1L2 22Z`,key:`vv11sd`}],[`path`,{d:`M8 12h.01`,key:`czm47f`}],[`path`,{d:`M12 12h.01`,key:`1mp3jc`}],[`path`,{d:`M16 12h.01`,key:`1l6xoz`}]]),z=A(`QrCode`,[[`rect`,{width:`5`,height:`5`,x:`3`,y:`3`,rx:`1`,key:`1tu5fj`}],[`rect`,{width:`5`,height:`5`,x:`16`,y:`3`,rx:`1`,key:`1v8r4q`}],[`rect`,{width:`5`,height:`5`,x:`3`,y:`16`,rx:`1`,key:`1x03jg`}],[`path`,{d:`M21 16h-3a2 2 0 0 0-2 2v3`,key:`177gqh`}],[`path`,{d:`M21 21v.01`,key:`ents32`}],[`path`,{d:`M12 7v3a2 2 0 0 1-2 2H7`,key:`8crl2c`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M12 3h.01`,key:`n36tog`}],[`path`,{d:`M12 16v.01`,key:`133mhm`}],[`path`,{d:`M16 12h1`,key:`1slzba`}],[`path`,{d:`M21 12v.01`,key:`1lwtk9`}],[`path`,{d:`M12 21v-1`,key:`1880an`}]]),Oe=A(`ToggleLeft`,[[`rect`,{width:`20`,height:`12`,x:`2`,y:`6`,rx:`6`,ry:`6`,key:`f2vt7d`}],[`circle`,{cx:`8`,cy:`12`,r:`2`,key:`1nvbw3`}]]),B=e(i(),1),V=n();function ke({value:e,onChange:t,className:n,placeholder:r=``}){let[i,s]=(0,B.useState)(``),c=n=>{n.key===`Enter`&&i.trim()?(n.preventDefault(),t([...e,i.trim()]),s(``)):n.key===`Backspace`&&!i&&e.length>0&&t(e.slice(0,-1))},l=n=>{t(e.filter((e,t)=>t!==n))};return(0,V.jsxs)(`div`,{className:a(`flex min-h-[42px] flex-wrap gap-2 rounded-xl border border-gray-200/80 bg-white p-2`,n),children:[e.map((e,t)=>(0,V.jsxs)(ie,{tone:`info`,className:`gap-1 px-2 py-1 text-sm`,children:[e,(0,V.jsx)(`button`,{type:`button`,onClick:()=>l(t),className:`transition-colors hover:text-rose-200`,children:(0,V.jsx)(re,{className:`h-3 w-3`})})]},t)),(0,V.jsx)(`input`,{type:`text`,value:i,onChange:e=>s(e.target.value),onKeyDown:c,className:`flex-1 outline-none min-w-[100px] bg-transparent text-sm`,placeholder:r||o(`enterTag`)})]})}function Ae(e){return e.includes(`token`)||e.includes(`secret`)||e.includes(`password`)?(0,V.jsx)(se,{className:`h-3.5 w-3.5 text-gray-500`}):e.includes(`url`)||e.includes(`host`)?(0,V.jsx)(me,{className:`h-3.5 w-3.5 text-gray-500`}):e.includes(`email`)||e.includes(`mail`)?(0,V.jsx)(De,{className:`h-3.5 w-3.5 text-gray-500`}):e.includes(`id`)||e.includes(`from`)?(0,V.jsx)(Ee,{className:`h-3.5 w-3.5 text-gray-500`}):e===`enabled`||e===`consentGranted`?(0,V.jsx)(Oe,{className:`h-3.5 w-3.5 text-gray-500`}):(0,V.jsx)(le,{className:`h-3.5 w-3.5 text-gray-500`})}function je({channelName:e,fields:t,formData:n,jsonDrafts:r,setJsonDrafts:i,updateField:a,uiHints:s}){return(0,V.jsx)(V.Fragment,{children:t.map(t=>{let c=L(`channels.${e}.${t.name}`,s),l=c?.label??t.label,u=c?.placeholder;return(0,V.jsxs)(`div`,{className:`space-y-2.5`,children:[(0,V.jsxs)(v,{htmlFor:t.name,className:`flex items-center gap-2 text-sm font-medium text-gray-900`,children:[Ae(t.name),l]}),t.type===`boolean`&&(0,V.jsxs)(`div`,{className:`flex items-center justify-between rounded-xl bg-gray-50 p-3`,children:[(0,V.jsx)(`span`,{className:`text-sm text-gray-500`,children:n[t.name]?o(`enabled`):o(`disabled`)}),(0,V.jsx)(f,{id:t.name,checked:n[t.name]||!1,onCheckedChange:e=>a(t.name,e),className:`data-[state=checked]:bg-emerald-500`})]}),(t.type===`text`||t.type===`email`)&&(0,V.jsx)(S,{id:t.name,type:t.type,value:n[t.name]||``,onChange:e=>a(t.name,e.target.value),placeholder:u,className:`rounded-xl`}),t.type===`password`&&(0,V.jsx)(S,{id:t.name,type:`password`,value:n[t.name]||``,onChange:e=>a(t.name,e.target.value),placeholder:u??o(`leaveBlankToKeepUnchanged`),className:`rounded-xl`}),t.type===`number`&&(0,V.jsx)(S,{id:t.name,type:`number`,value:n[t.name]||0,onChange:e=>a(t.name,parseInt(e.target.value,10)||0),placeholder:u,className:`rounded-xl`}),t.type===`tags`&&(0,V.jsx)(ke,{value:n[t.name]||[],onChange:e=>a(t.name,e)}),t.type===`select`&&(0,V.jsxs)(k,{value:n[t.name]||``,onValueChange:e=>a(t.name,e),children:[(0,V.jsx)(E,{className:`rounded-xl`,children:(0,V.jsx)(T,{})}),(0,V.jsx)(D,{children:(t.options??[]).map(e=>(0,V.jsx)(O,{value:e.value,children:e.label},e.value))})]}),t.type===`json`&&(0,V.jsx)(`textarea`,{id:t.name,value:r[t.name]??`{}`,onChange:e=>i(n=>({...n,[t.name]:e.target.value})),className:`min-h-[120px] w-full resize-none rounded-lg border border-gray-200 bg-white px-3 py-2 text-xs font-mono`})]},t.name)})})}var Me=t(((e,t)=>{t.exports=function(){return typeof Promise==`function`&&Promise.prototype&&Promise.prototype.then}})),H=t((e=>{var t,n=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];e.getSymbolSize=function(e){if(!e)throw Error(`"version" cannot be null or undefined`);if(e<1||e>40)throw Error(`"version" should be in range from 1 to 40`);return e*4+17},e.getSymbolTotalCodewords=function(e){return n[e]},e.getBCHDigit=function(e){let t=0;for(;e!==0;)t++,e>>>=1;return t},e.setToSJISFunction=function(e){if(typeof e!=`function`)throw Error(`"toSJISFunc" is not a valid function.`);t=e},e.isKanjiModeEnabled=function(){return t!==void 0},e.toSJIS=function(e){return t(e)}})),U=t((e=>{e.L={bit:1},e.M={bit:0},e.Q={bit:3},e.H={bit:2};function t(t){if(typeof t!=`string`)throw Error(`Param is not a string`);switch(t.toLowerCase()){case`l`:case`low`:return e.L;case`m`:case`medium`:return e.M;case`q`:case`quartile`:return e.Q;case`h`:case`high`:return e.H;default:throw Error(`Unknown EC Level: `+t)}}e.isValid=function(e){return e&&e.bit!==void 0&&e.bit>=0&&e.bit<4},e.from=function(n,r){if(e.isValid(n))return n;try{return t(n)}catch{return r}}})),Ne=t(((e,t)=>{function n(){this.buffer=[],this.length=0}n.prototype={get:function(e){let t=Math.floor(e/8);return(this.buffer[t]>>>7-e%8&1)==1},put:function(e,t){for(let n=0;n<t;n++)this.putBit((e>>>t-n-1&1)==1)},getLengthInBits:function(){return this.length},putBit:function(e){let t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),e&&(this.buffer[t]|=128>>>this.length%8),this.length++}},t.exports=n})),Pe=t(((e,t)=>{function n(e){if(!e||e<1)throw Error(`BitMatrix size must be defined and greater than 0`);this.size=e,this.data=new Uint8Array(e*e),this.reservedBit=new Uint8Array(e*e)}n.prototype.set=function(e,t,n,r){let i=e*this.size+t;this.data[i]=n,r&&(this.reservedBit[i]=!0)},n.prototype.get=function(e,t){return this.data[e*this.size+t]},n.prototype.xor=function(e,t,n){this.data[e*this.size+t]^=n},n.prototype.isReserved=function(e,t){return this.reservedBit[e*this.size+t]},t.exports=n})),Fe=t((e=>{var t=H().getSymbolSize;e.getRowColCoords=function(e){if(e===1)return[];let n=Math.floor(e/7)+2,r=t(e),i=r===145?26:Math.ceil((r-13)/(2*n-2))*2,a=[r-7];for(let e=1;e<n-1;e++)a[e]=a[e-1]-i;return a.push(6),a.reverse()},e.getPositions=function(t){let n=[],r=e.getRowColCoords(t),i=r.length;for(let e=0;e<i;e++)for(let t=0;t<i;t++)e===0&&t===0||e===0&&t===i-1||e===i-1&&t===0||n.push([r[e],r[t]]);return n}})),Ie=t((e=>{var t=H().getSymbolSize,n=7;e.getPositions=function(e){let r=t(e);return[[0,0],[r-n,0],[0,r-n]]}})),Le=t((e=>{e.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};var t={N1:3,N2:3,N3:40,N4:10};e.isValid=function(e){return e!=null&&e!==``&&!isNaN(e)&&e>=0&&e<=7},e.from=function(t){return e.isValid(t)?parseInt(t,10):void 0},e.getPenaltyN1=function(e){let n=e.size,r=0,i=0,a=0,o=null,s=null;for(let c=0;c<n;c++){i=a=0,o=s=null;for(let l=0;l<n;l++){let n=e.get(c,l);n===o?i++:(i>=5&&(r+=t.N1+(i-5)),o=n,i=1),n=e.get(l,c),n===s?a++:(a>=5&&(r+=t.N1+(a-5)),s=n,a=1)}i>=5&&(r+=t.N1+(i-5)),a>=5&&(r+=t.N1+(a-5))}return r},e.getPenaltyN2=function(e){let n=e.size,r=0;for(let t=0;t<n-1;t++)for(let i=0;i<n-1;i++){let n=e.get(t,i)+e.get(t,i+1)+e.get(t+1,i)+e.get(t+1,i+1);(n===4||n===0)&&r++}return r*t.N2},e.getPenaltyN3=function(e){let n=e.size,r=0,i=0,a=0;for(let t=0;t<n;t++){i=a=0;for(let o=0;o<n;o++)i=i<<1&2047|e.get(t,o),o>=10&&(i===1488||i===93)&&r++,a=a<<1&2047|e.get(o,t),o>=10&&(a===1488||a===93)&&r++}return r*t.N3},e.getPenaltyN4=function(e){let n=0,r=e.data.length;for(let t=0;t<r;t++)n+=e.data[t];return Math.abs(Math.ceil(n*100/r/5)-10)*t.N4};function n(t,n,r){switch(t){case e.Patterns.PATTERN000:return(n+r)%2==0;case e.Patterns.PATTERN001:return n%2==0;case e.Patterns.PATTERN010:return r%3==0;case e.Patterns.PATTERN011:return(n+r)%3==0;case e.Patterns.PATTERN100:return(Math.floor(n/2)+Math.floor(r/3))%2==0;case e.Patterns.PATTERN101:return n*r%2+n*r%3==0;case e.Patterns.PATTERN110:return(n*r%2+n*r%3)%2==0;case e.Patterns.PATTERN111:return(n*r%3+(n+r)%2)%2==0;default:throw Error(`bad maskPattern:`+t)}}e.applyMask=function(e,t){let r=t.size;for(let i=0;i<r;i++)for(let a=0;a<r;a++)t.isReserved(a,i)||t.xor(a,i,n(e,a,i))},e.getBestMask=function(t,n){let r=Object.keys(e.Patterns).length,i=0,a=1/0;for(let o=0;o<r;o++){n(o),e.applyMask(o,t);let r=e.getPenaltyN1(t)+e.getPenaltyN2(t)+e.getPenaltyN3(t)+e.getPenaltyN4(t);e.applyMask(o,t),r<a&&(a=r,i=o)}return i}})),W=t((e=>{var t=U(),n=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],r=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];e.getBlocksCount=function(e,r){switch(r){case t.L:return n[(e-1)*4+0];case t.M:return n[(e-1)*4+1];case t.Q:return n[(e-1)*4+2];case t.H:return n[(e-1)*4+3];default:return}},e.getTotalCodewordsCount=function(e,n){switch(n){case t.L:return r[(e-1)*4+0];case t.M:return r[(e-1)*4+1];case t.Q:return r[(e-1)*4+2];case t.H:return r[(e-1)*4+3];default:return}}})),Re=t((e=>{var t=new Uint8Array(512),n=new Uint8Array(256);(function(){let e=1;for(let r=0;r<255;r++)t[r]=e,n[e]=r,e<<=1,e&256&&(e^=285);for(let e=255;e<512;e++)t[e]=t[e-255]})(),e.log=function(e){if(e<1)throw Error(`log(`+e+`)`);return n[e]},e.exp=function(e){return t[e]},e.mul=function(e,r){return e===0||r===0?0:t[n[e]+n[r]]}})),ze=t((e=>{var t=Re();e.mul=function(e,n){let r=new Uint8Array(e.length+n.length-1);for(let i=0;i<e.length;i++)for(let a=0;a<n.length;a++)r[i+a]^=t.mul(e[i],n[a]);return r},e.mod=function(e,n){let r=new Uint8Array(e);for(;r.length-n.length>=0;){let e=r[0];for(let i=0;i<n.length;i++)r[i]^=t.mul(n[i],e);let i=0;for(;i<r.length&&r[i]===0;)i++;r=r.slice(i)}return r},e.generateECPolynomial=function(n){let r=new Uint8Array([1]);for(let i=0;i<n;i++)r=e.mul(r,new Uint8Array([1,t.exp(i)]));return r}})),Be=t(((e,t)=>{var n=ze();function r(e){this.genPoly=void 0,this.degree=e,this.degree&&this.initialize(this.degree)}r.prototype.initialize=function(e){this.degree=e,this.genPoly=n.generateECPolynomial(this.degree)},r.prototype.encode=function(e){if(!this.genPoly)throw Error(`Encoder not initialized`);let t=new Uint8Array(e.length+this.degree);t.set(e);let r=n.mod(t,this.genPoly),i=this.degree-r.length;if(i>0){let e=new Uint8Array(this.degree);return e.set(r,i),e}return r},t.exports=r})),G=t((e=>{e.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}})),K=t((e=>{var t=`[0-9]+`,n=`[A-Z $%*+\\-./:]+`,r=`(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+`;r=r.replace(/u/g,`\\u`);var i=`(?:(?![A-Z0-9 $%*+\\-./:]|`+r+`)(?:.|[\r
1
+ import{i as e,t}from"./chunk-DseTPa7n.js";import{B as n,F as r,H as i,L as a,a as o,r as s,s as c}from"./react-Co6JiC1n.js";import{n as l,t as u}from"./navigation-link-CAUiM3zS.js";import{An as d,At as f,Ht as p,It as m,Mt as h,_n as g,dn as _,fn as v,jt as y,sn as b,un as x,vn as S,yn as C}from"./api-m33O1Kb0.js";import{C as w,a as T,i as E,n as D,r as O,t as k}from"./select-BzQKfW1e.js";import{t as A}from"./createLucideIcon-CHALGA42.js";import{t as ee}from"./search-C47TyRg0.js";import{t as te}from"./book-open-BHiasMCg.js";import{t as ne}from"./loader-circle-CH_0iPLy.js";import{t as re}from"./x-C1r9IXet.js";import{t as ie}from"./tag-chip-C3K814HZ.js";import{G as ae,J as j,K as M,St as oe,U as se,W as N,_t as ce,b as le,g as P,h as F,k as ue,m as I,mt as de,p as fe,q as pe,wt as me,xt as he}from"./index-BjxnLYE3.js";import{t as ge}from"./form-actions-CH0kWhEt.js";import{t as L}from"./config-hints-nV5HPOvq.js";import{a as _e,c as ve,i as ye,l as be,n as xe,o as Se,r as Ce,s as we,t as Te}from"./config-split-page-DBnMEP1o.js";var Ee=A(`Hash`,[[`line`,{x1:`4`,x2:`20`,y1:`9`,y2:`9`,key:`4lhtct`}],[`line`,{x1:`4`,x2:`20`,y1:`15`,y2:`15`,key:`vyu0kd`}],[`line`,{x1:`10`,x2:`8`,y1:`3`,y2:`21`,key:`1ggp8o`}],[`line`,{x1:`16`,x2:`14`,y1:`3`,y2:`21`,key:`weycgp`}]]),De=A(`Mail`,[[`rect`,{width:`20`,height:`16`,x:`2`,y:`4`,rx:`2`,key:`18n3k1`}],[`path`,{d:`m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7`,key:`1ocrg3`}]]),R=A(`MessageCircleMore`,[[`path`,{d:`M7.9 20A9 9 0 1 0 4 16.1L2 22Z`,key:`vv11sd`}],[`path`,{d:`M8 12h.01`,key:`czm47f`}],[`path`,{d:`M12 12h.01`,key:`1mp3jc`}],[`path`,{d:`M16 12h.01`,key:`1l6xoz`}]]),z=A(`QrCode`,[[`rect`,{width:`5`,height:`5`,x:`3`,y:`3`,rx:`1`,key:`1tu5fj`}],[`rect`,{width:`5`,height:`5`,x:`16`,y:`3`,rx:`1`,key:`1v8r4q`}],[`rect`,{width:`5`,height:`5`,x:`3`,y:`16`,rx:`1`,key:`1x03jg`}],[`path`,{d:`M21 16h-3a2 2 0 0 0-2 2v3`,key:`177gqh`}],[`path`,{d:`M21 21v.01`,key:`ents32`}],[`path`,{d:`M12 7v3a2 2 0 0 1-2 2H7`,key:`8crl2c`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M12 3h.01`,key:`n36tog`}],[`path`,{d:`M12 16v.01`,key:`133mhm`}],[`path`,{d:`M16 12h1`,key:`1slzba`}],[`path`,{d:`M21 12v.01`,key:`1lwtk9`}],[`path`,{d:`M12 21v-1`,key:`1880an`}]]),Oe=A(`ToggleLeft`,[[`rect`,{width:`20`,height:`12`,x:`2`,y:`6`,rx:`6`,ry:`6`,key:`f2vt7d`}],[`circle`,{cx:`8`,cy:`12`,r:`2`,key:`1nvbw3`}]]),B=e(i(),1),V=n();function ke({value:e,onChange:t,className:n,placeholder:r=``}){let[i,s]=(0,B.useState)(``),c=n=>{n.key===`Enter`&&i.trim()?(n.preventDefault(),t([...e,i.trim()]),s(``)):n.key===`Backspace`&&!i&&e.length>0&&t(e.slice(0,-1))},l=n=>{t(e.filter((e,t)=>t!==n))};return(0,V.jsxs)(`div`,{className:a(`flex min-h-[42px] flex-wrap gap-2 rounded-xl border border-gray-200/80 bg-white p-2`,n),children:[e.map((e,t)=>(0,V.jsxs)(ie,{tone:`info`,className:`gap-1 px-2 py-1 text-sm`,children:[e,(0,V.jsx)(`button`,{type:`button`,onClick:()=>l(t),className:`transition-colors hover:text-rose-200`,children:(0,V.jsx)(re,{className:`h-3 w-3`})})]},t)),(0,V.jsx)(`input`,{type:`text`,value:i,onChange:e=>s(e.target.value),onKeyDown:c,className:`flex-1 outline-none min-w-[100px] bg-transparent text-sm`,placeholder:r||o(`enterTag`)})]})}function Ae(e){return e.includes(`token`)||e.includes(`secret`)||e.includes(`password`)?(0,V.jsx)(oe,{className:`h-3.5 w-3.5 text-gray-500`}):e.includes(`url`)||e.includes(`host`)?(0,V.jsx)(me,{className:`h-3.5 w-3.5 text-gray-500`}):e.includes(`email`)||e.includes(`mail`)?(0,V.jsx)(De,{className:`h-3.5 w-3.5 text-gray-500`}):e.includes(`id`)||e.includes(`from`)?(0,V.jsx)(Ee,{className:`h-3.5 w-3.5 text-gray-500`}):e===`enabled`||e===`consentGranted`?(0,V.jsx)(Oe,{className:`h-3.5 w-3.5 text-gray-500`}):(0,V.jsx)(ce,{className:`h-3.5 w-3.5 text-gray-500`})}function je({channelName:e,fields:t,formData:n,jsonDrafts:r,setJsonDrafts:i,updateField:a,uiHints:s}){return(0,V.jsx)(V.Fragment,{children:t.map(t=>{let c=L(`channels.${e}.${t.name}`,s),l=c?.label??t.label,u=c?.placeholder;return(0,V.jsxs)(`div`,{className:`space-y-2.5`,children:[(0,V.jsxs)(x,{htmlFor:t.name,className:`flex items-center gap-2 text-sm font-medium text-gray-900`,children:[Ae(t.name),l]}),t.type===`boolean`&&(0,V.jsxs)(`div`,{className:`flex items-center justify-between rounded-xl bg-gray-50 p-3`,children:[(0,V.jsx)(`span`,{className:`text-sm text-gray-500`,children:n[t.name]?o(`enabled`):o(`disabled`)}),(0,V.jsx)(p,{id:t.name,checked:n[t.name]||!1,onCheckedChange:e=>a(t.name,e),className:`data-[state=checked]:bg-emerald-500`})]}),(t.type===`text`||t.type===`email`)&&(0,V.jsx)(_,{id:t.name,type:t.type,value:n[t.name]||``,onChange:e=>a(t.name,e.target.value),placeholder:u,className:`rounded-xl`}),t.type===`password`&&(0,V.jsx)(_,{id:t.name,type:`password`,value:n[t.name]||``,onChange:e=>a(t.name,e.target.value),placeholder:u??o(`leaveBlankToKeepUnchanged`),className:`rounded-xl`}),t.type===`number`&&(0,V.jsx)(_,{id:t.name,type:`number`,value:n[t.name]||0,onChange:e=>a(t.name,parseInt(e.target.value,10)||0),placeholder:u,className:`rounded-xl`}),t.type===`tags`&&(0,V.jsx)(ke,{value:n[t.name]||[],onChange:e=>a(t.name,e)}),t.type===`select`&&(0,V.jsxs)(k,{value:n[t.name]||``,onValueChange:e=>a(t.name,e),children:[(0,V.jsx)(E,{className:`rounded-xl`,children:(0,V.jsx)(T,{})}),(0,V.jsx)(D,{children:(t.options??[]).map(e=>(0,V.jsx)(O,{value:e.value,children:e.label},e.value))})]}),t.type===`json`&&(0,V.jsx)(`textarea`,{id:t.name,value:r[t.name]??`{}`,onChange:e=>i(n=>({...n,[t.name]:e.target.value})),className:`min-h-[120px] w-full resize-none rounded-lg border border-gray-200 bg-white px-3 py-2 text-xs font-mono`})]},t.name)})})}var Me=t(((e,t)=>{t.exports=function(){return typeof Promise==`function`&&Promise.prototype&&Promise.prototype.then}})),H=t((e=>{var t,n=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];e.getSymbolSize=function(e){if(!e)throw Error(`"version" cannot be null or undefined`);if(e<1||e>40)throw Error(`"version" should be in range from 1 to 40`);return e*4+17},e.getSymbolTotalCodewords=function(e){return n[e]},e.getBCHDigit=function(e){let t=0;for(;e!==0;)t++,e>>>=1;return t},e.setToSJISFunction=function(e){if(typeof e!=`function`)throw Error(`"toSJISFunc" is not a valid function.`);t=e},e.isKanjiModeEnabled=function(){return t!==void 0},e.toSJIS=function(e){return t(e)}})),U=t((e=>{e.L={bit:1},e.M={bit:0},e.Q={bit:3},e.H={bit:2};function t(t){if(typeof t!=`string`)throw Error(`Param is not a string`);switch(t.toLowerCase()){case`l`:case`low`:return e.L;case`m`:case`medium`:return e.M;case`q`:case`quartile`:return e.Q;case`h`:case`high`:return e.H;default:throw Error(`Unknown EC Level: `+t)}}e.isValid=function(e){return e&&e.bit!==void 0&&e.bit>=0&&e.bit<4},e.from=function(n,r){if(e.isValid(n))return n;try{return t(n)}catch{return r}}})),Ne=t(((e,t)=>{function n(){this.buffer=[],this.length=0}n.prototype={get:function(e){let t=Math.floor(e/8);return(this.buffer[t]>>>7-e%8&1)==1},put:function(e,t){for(let n=0;n<t;n++)this.putBit((e>>>t-n-1&1)==1)},getLengthInBits:function(){return this.length},putBit:function(e){let t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),e&&(this.buffer[t]|=128>>>this.length%8),this.length++}},t.exports=n})),Pe=t(((e,t)=>{function n(e){if(!e||e<1)throw Error(`BitMatrix size must be defined and greater than 0`);this.size=e,this.data=new Uint8Array(e*e),this.reservedBit=new Uint8Array(e*e)}n.prototype.set=function(e,t,n,r){let i=e*this.size+t;this.data[i]=n,r&&(this.reservedBit[i]=!0)},n.prototype.get=function(e,t){return this.data[e*this.size+t]},n.prototype.xor=function(e,t,n){this.data[e*this.size+t]^=n},n.prototype.isReserved=function(e,t){return this.reservedBit[e*this.size+t]},t.exports=n})),Fe=t((e=>{var t=H().getSymbolSize;e.getRowColCoords=function(e){if(e===1)return[];let n=Math.floor(e/7)+2,r=t(e),i=r===145?26:Math.ceil((r-13)/(2*n-2))*2,a=[r-7];for(let e=1;e<n-1;e++)a[e]=a[e-1]-i;return a.push(6),a.reverse()},e.getPositions=function(t){let n=[],r=e.getRowColCoords(t),i=r.length;for(let e=0;e<i;e++)for(let t=0;t<i;t++)e===0&&t===0||e===0&&t===i-1||e===i-1&&t===0||n.push([r[e],r[t]]);return n}})),Ie=t((e=>{var t=H().getSymbolSize,n=7;e.getPositions=function(e){let r=t(e);return[[0,0],[r-n,0],[0,r-n]]}})),Le=t((e=>{e.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};var t={N1:3,N2:3,N3:40,N4:10};e.isValid=function(e){return e!=null&&e!==``&&!isNaN(e)&&e>=0&&e<=7},e.from=function(t){return e.isValid(t)?parseInt(t,10):void 0},e.getPenaltyN1=function(e){let n=e.size,r=0,i=0,a=0,o=null,s=null;for(let c=0;c<n;c++){i=a=0,o=s=null;for(let l=0;l<n;l++){let n=e.get(c,l);n===o?i++:(i>=5&&(r+=t.N1+(i-5)),o=n,i=1),n=e.get(l,c),n===s?a++:(a>=5&&(r+=t.N1+(a-5)),s=n,a=1)}i>=5&&(r+=t.N1+(i-5)),a>=5&&(r+=t.N1+(a-5))}return r},e.getPenaltyN2=function(e){let n=e.size,r=0;for(let t=0;t<n-1;t++)for(let i=0;i<n-1;i++){let n=e.get(t,i)+e.get(t,i+1)+e.get(t+1,i)+e.get(t+1,i+1);(n===4||n===0)&&r++}return r*t.N2},e.getPenaltyN3=function(e){let n=e.size,r=0,i=0,a=0;for(let t=0;t<n;t++){i=a=0;for(let o=0;o<n;o++)i=i<<1&2047|e.get(t,o),o>=10&&(i===1488||i===93)&&r++,a=a<<1&2047|e.get(o,t),o>=10&&(a===1488||a===93)&&r++}return r*t.N3},e.getPenaltyN4=function(e){let n=0,r=e.data.length;for(let t=0;t<r;t++)n+=e.data[t];return Math.abs(Math.ceil(n*100/r/5)-10)*t.N4};function n(t,n,r){switch(t){case e.Patterns.PATTERN000:return(n+r)%2==0;case e.Patterns.PATTERN001:return n%2==0;case e.Patterns.PATTERN010:return r%3==0;case e.Patterns.PATTERN011:return(n+r)%3==0;case e.Patterns.PATTERN100:return(Math.floor(n/2)+Math.floor(r/3))%2==0;case e.Patterns.PATTERN101:return n*r%2+n*r%3==0;case e.Patterns.PATTERN110:return(n*r%2+n*r%3)%2==0;case e.Patterns.PATTERN111:return(n*r%3+(n+r)%2)%2==0;default:throw Error(`bad maskPattern:`+t)}}e.applyMask=function(e,t){let r=t.size;for(let i=0;i<r;i++)for(let a=0;a<r;a++)t.isReserved(a,i)||t.xor(a,i,n(e,a,i))},e.getBestMask=function(t,n){let r=Object.keys(e.Patterns).length,i=0,a=1/0;for(let o=0;o<r;o++){n(o),e.applyMask(o,t);let r=e.getPenaltyN1(t)+e.getPenaltyN2(t)+e.getPenaltyN3(t)+e.getPenaltyN4(t);e.applyMask(o,t),r<a&&(a=r,i=o)}return i}})),W=t((e=>{var t=U(),n=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],r=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];e.getBlocksCount=function(e,r){switch(r){case t.L:return n[(e-1)*4+0];case t.M:return n[(e-1)*4+1];case t.Q:return n[(e-1)*4+2];case t.H:return n[(e-1)*4+3];default:return}},e.getTotalCodewordsCount=function(e,n){switch(n){case t.L:return r[(e-1)*4+0];case t.M:return r[(e-1)*4+1];case t.Q:return r[(e-1)*4+2];case t.H:return r[(e-1)*4+3];default:return}}})),Re=t((e=>{var t=new Uint8Array(512),n=new Uint8Array(256);(function(){let e=1;for(let r=0;r<255;r++)t[r]=e,n[e]=r,e<<=1,e&256&&(e^=285);for(let e=255;e<512;e++)t[e]=t[e-255]})(),e.log=function(e){if(e<1)throw Error(`log(`+e+`)`);return n[e]},e.exp=function(e){return t[e]},e.mul=function(e,r){return e===0||r===0?0:t[n[e]+n[r]]}})),ze=t((e=>{var t=Re();e.mul=function(e,n){let r=new Uint8Array(e.length+n.length-1);for(let i=0;i<e.length;i++)for(let a=0;a<n.length;a++)r[i+a]^=t.mul(e[i],n[a]);return r},e.mod=function(e,n){let r=new Uint8Array(e);for(;r.length-n.length>=0;){let e=r[0];for(let i=0;i<n.length;i++)r[i]^=t.mul(n[i],e);let i=0;for(;i<r.length&&r[i]===0;)i++;r=r.slice(i)}return r},e.generateECPolynomial=function(n){let r=new Uint8Array([1]);for(let i=0;i<n;i++)r=e.mul(r,new Uint8Array([1,t.exp(i)]));return r}})),Be=t(((e,t)=>{var n=ze();function r(e){this.genPoly=void 0,this.degree=e,this.degree&&this.initialize(this.degree)}r.prototype.initialize=function(e){this.degree=e,this.genPoly=n.generateECPolynomial(this.degree)},r.prototype.encode=function(e){if(!this.genPoly)throw Error(`Encoder not initialized`);let t=new Uint8Array(e.length+this.degree);t.set(e);let r=n.mod(t,this.genPoly),i=this.degree-r.length;if(i>0){let e=new Uint8Array(this.degree);return e.set(r,i),e}return r},t.exports=r})),G=t((e=>{e.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}})),K=t((e=>{var t=`[0-9]+`,n=`[A-Z $%*+\\-./:]+`,r=`(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+`;r=r.replace(/u/g,`\\u`);var i=`(?:(?![A-Z0-9 $%*+\\-./:]|`+r+`)(?:.|[\r
2
2
  ]))+`;e.KANJI=new RegExp(r,`g`),e.BYTE_KANJI=RegExp(`[^A-Z0-9 $%*+\\-./:]+`,`g`),e.BYTE=new RegExp(i,`g`),e.NUMERIC=new RegExp(t,`g`),e.ALPHANUMERIC=new RegExp(n,`g`);var a=RegExp(`^`+r+`$`),o=RegExp(`^`+t+`$`),s=RegExp(`^[A-Z0-9 $%*+\\-./:]+$`);e.testKanji=function(e){return a.test(e)},e.testNumeric=function(e){return o.test(e)},e.testAlphanumeric=function(e){return s.test(e)}})),q=t((e=>{var t=G(),n=K();e.NUMERIC={id:`Numeric`,bit:1,ccBits:[10,12,14]},e.ALPHANUMERIC={id:`Alphanumeric`,bit:2,ccBits:[9,11,13]},e.BYTE={id:`Byte`,bit:4,ccBits:[8,16,16]},e.KANJI={id:`Kanji`,bit:8,ccBits:[8,10,12]},e.MIXED={bit:-1},e.getCharCountIndicator=function(e,n){if(!e.ccBits)throw Error(`Invalid mode: `+e);if(!t.isValid(n))throw Error(`Invalid version: `+n);return n>=1&&n<10?e.ccBits[0]:n<27?e.ccBits[1]:e.ccBits[2]},e.getBestModeForData=function(t){return n.testNumeric(t)?e.NUMERIC:n.testAlphanumeric(t)?e.ALPHANUMERIC:n.testKanji(t)?e.KANJI:e.BYTE},e.toString=function(e){if(e&&e.id)return e.id;throw Error(`Invalid mode`)},e.isValid=function(e){return e&&e.bit&&e.ccBits};function r(t){if(typeof t!=`string`)throw Error(`Param is not a string`);switch(t.toLowerCase()){case`numeric`:return e.NUMERIC;case`alphanumeric`:return e.ALPHANUMERIC;case`kanji`:return e.KANJI;case`byte`:return e.BYTE;default:throw Error(`Unknown mode: `+t)}}e.from=function(t,n){if(e.isValid(t))return t;try{return r(t)}catch{return n}}})),Ve=t((e=>{var t=H(),n=W(),r=U(),i=q(),a=G(),o=7973,s=t.getBCHDigit(o);function c(t,n,r){for(let i=1;i<=40;i++)if(n<=e.getCapacity(i,r,t))return i}function l(e,t){return i.getCharCountIndicator(e,t)+4}function u(e,t){let n=0;return e.forEach(function(e){let r=l(e.mode,t);n+=r+e.getBitsLength()}),n}function d(t,n){for(let r=1;r<=40;r++)if(u(t,r)<=e.getCapacity(r,n,i.MIXED))return r}e.from=function(e,t){return a.isValid(e)?parseInt(e,10):t},e.getCapacity=function(e,r,o){if(!a.isValid(e))throw Error(`Invalid QR Code version`);o===void 0&&(o=i.BYTE);let s=(t.getSymbolTotalCodewords(e)-n.getTotalCodewordsCount(e,r))*8;if(o===i.MIXED)return s;let c=s-l(o,e);switch(o){case i.NUMERIC:return Math.floor(c/10*3);case i.ALPHANUMERIC:return Math.floor(c/11*2);case i.KANJI:return Math.floor(c/13);case i.BYTE:default:return Math.floor(c/8)}},e.getBestVersionForData=function(e,t){let n,i=r.from(t,r.M);if(Array.isArray(e)){if(e.length>1)return d(e,i);if(e.length===0)return 1;n=e[0]}else n=e;return c(n.mode,n.getLength(),i)},e.getEncodedBits=function(e){if(!a.isValid(e)||e<7)throw Error(`Invalid QR Code version`);let n=e<<12;for(;t.getBCHDigit(n)-s>=0;)n^=o<<t.getBCHDigit(n)-s;return e<<12|n}})),He=t((e=>{var t=H(),n=1335,r=21522,i=t.getBCHDigit(n);e.getEncodedBits=function(e,a){let o=e.bit<<3|a,s=o<<10;for(;t.getBCHDigit(s)-i>=0;)s^=n<<t.getBCHDigit(s)-i;return(o<<10|s)^r}})),Ue=t(((e,t)=>{var n=q();function r(e){this.mode=n.NUMERIC,this.data=e.toString()}r.getBitsLength=function(e){return 10*Math.floor(e/3)+(e%3?e%3*3+1:0)},r.prototype.getLength=function(){return this.data.length},r.prototype.getBitsLength=function(){return r.getBitsLength(this.data.length)},r.prototype.write=function(e){let t,n,r;for(t=0;t+3<=this.data.length;t+=3)n=this.data.substr(t,3),r=parseInt(n,10),e.put(r,10);let i=this.data.length-t;i>0&&(n=this.data.substr(t),r=parseInt(n,10),e.put(r,i*3+1))},t.exports=r})),We=t(((e,t)=>{var n=q(),r=`0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:`.split(``);function i(e){this.mode=n.ALPHANUMERIC,this.data=e}i.getBitsLength=function(e){return 11*Math.floor(e/2)+e%2*6},i.prototype.getLength=function(){return this.data.length},i.prototype.getBitsLength=function(){return i.getBitsLength(this.data.length)},i.prototype.write=function(e){let t;for(t=0;t+2<=this.data.length;t+=2){let n=r.indexOf(this.data[t])*45;n+=r.indexOf(this.data[t+1]),e.put(n,11)}this.data.length%2&&e.put(r.indexOf(this.data[t]),6)},t.exports=i})),Ge=t(((e,t)=>{var n=q();function r(e){this.mode=n.BYTE,typeof e==`string`?this.data=new TextEncoder().encode(e):this.data=new Uint8Array(e)}r.getBitsLength=function(e){return e*8},r.prototype.getLength=function(){return this.data.length},r.prototype.getBitsLength=function(){return r.getBitsLength(this.data.length)},r.prototype.write=function(e){for(let t=0,n=this.data.length;t<n;t++)e.put(this.data[t],8)},t.exports=r})),Ke=t(((e,t)=>{var n=q(),r=H();function i(e){this.mode=n.KANJI,this.data=e}i.getBitsLength=function(e){return e*13},i.prototype.getLength=function(){return this.data.length},i.prototype.getBitsLength=function(){return i.getBitsLength(this.data.length)},i.prototype.write=function(e){let t;for(t=0;t<this.data.length;t++){let n=r.toSJIS(this.data[t]);if(n>=33088&&n<=40956)n-=33088;else if(n>=57408&&n<=60351)n-=49472;else throw Error(`Invalid SJIS character: `+this.data[t]+`
3
3
  Make sure your charset is UTF-8`);n=(n>>>8&255)*192+(n&255),e.put(n,13)}},t.exports=i})),qe=t(((e,t)=>{var n={single_source_shortest_paths:function(e,t,r){var i={},a={};a[t]=0;var o=n.PriorityQueue.make();o.push(t,0);for(var s,c,l,u,d,f,p,m,h;!o.empty();)for(l in s=o.pop(),c=s.value,u=s.cost,d=e[c]||{},d)d.hasOwnProperty(l)&&(f=d[l],p=u+f,m=a[l],h=a[l]===void 0,(h||m>p)&&(a[l]=p,o.push(l,p),i[l]=c));if(r!==void 0&&a[r]===void 0){var g=[`Could not find a path from `,t,` to `,r,`.`].join(``);throw Error(g)}return i},extract_shortest_path_from_predecessor_list:function(e,t){for(var n=[],r=t;r;)n.push(r),e[r],r=e[r];return n.reverse(),n},find_path:function(e,t,r){var i=n.single_source_shortest_paths(e,t,r);return n.extract_shortest_path_from_predecessor_list(i,r)},PriorityQueue:{make:function(e){var t=n.PriorityQueue,r={},i;for(i in e||={},t)t.hasOwnProperty(i)&&(r[i]=t[i]);return r.queue=[],r.sorter=e.sorter||t.default_sorter,r},default_sorter:function(e,t){return e.cost-t.cost},push:function(e,t){var n={value:e,cost:t};this.queue.push(n),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return this.queue.length===0}}};t!==void 0&&(t.exports=n)})),Je=t((e=>{var t=q(),n=Ue(),r=We(),i=Ge(),a=Ke(),o=K(),s=H(),c=qe();function l(e){return unescape(encodeURIComponent(e)).length}function u(e,t,n){let r=[],i;for(;(i=e.exec(n))!==null;)r.push({data:i[0],index:i.index,mode:t,length:i[0].length});return r}function d(e){let n=u(o.NUMERIC,t.NUMERIC,e),r=u(o.ALPHANUMERIC,t.ALPHANUMERIC,e),i,a;return s.isKanjiModeEnabled()?(i=u(o.BYTE,t.BYTE,e),a=u(o.KANJI,t.KANJI,e)):(i=u(o.BYTE_KANJI,t.BYTE,e),a=[]),n.concat(r,i,a).sort(function(e,t){return e.index-t.index}).map(function(e){return{data:e.data,mode:e.mode,length:e.length}})}function f(e,o){switch(o){case t.NUMERIC:return n.getBitsLength(e);case t.ALPHANUMERIC:return r.getBitsLength(e);case t.KANJI:return a.getBitsLength(e);case t.BYTE:return i.getBitsLength(e)}}function p(e){return e.reduce(function(e,t){let n=e.length-1>=0?e[e.length-1]:null;return n&&n.mode===t.mode?(e[e.length-1].data+=t.data,e):(e.push(t),e)},[])}function m(e){let n=[];for(let r=0;r<e.length;r++){let i=e[r];switch(i.mode){case t.NUMERIC:n.push([i,{data:i.data,mode:t.ALPHANUMERIC,length:i.length},{data:i.data,mode:t.BYTE,length:i.length}]);break;case t.ALPHANUMERIC:n.push([i,{data:i.data,mode:t.BYTE,length:i.length}]);break;case t.KANJI:n.push([i,{data:i.data,mode:t.BYTE,length:l(i.data)}]);break;case t.BYTE:n.push([{data:i.data,mode:t.BYTE,length:l(i.data)}])}}return n}function h(e,n){let r={},i={start:{}},a=[`start`];for(let o=0;o<e.length;o++){let s=e[o],c=[];for(let e=0;e<s.length;e++){let l=s[e],u=``+o+e;c.push(u),r[u]={node:l,lastCount:0},i[u]={};for(let e=0;e<a.length;e++){let o=a[e];r[o]&&r[o].node.mode===l.mode?(i[o][u]=f(r[o].lastCount+l.length,l.mode)-f(r[o].lastCount,l.mode),r[o].lastCount+=l.length):(r[o]&&(r[o].lastCount=l.length),i[o][u]=f(l.length,l.mode)+4+t.getCharCountIndicator(l.mode,n))}}a=c}for(let e=0;e<a.length;e++)i[a[e]].end=0;return{map:i,table:r}}function g(e,o){let c,l=t.getBestModeForData(e);if(c=t.from(o,l),c!==t.BYTE&&c.bit<l.bit)throw Error(`"`+e+`" cannot be encoded with mode `+t.toString(c)+`.
4
4
  Suggested mode is: `+t.toString(l));switch(c===t.KANJI&&!s.isKanjiModeEnabled()&&(c=t.BYTE),c){case t.NUMERIC:return new n(e);case t.ALPHANUMERIC:return new r(e);case t.KANJI:return new a(e);case t.BYTE:return new i(e)}}e.fromArray=function(e){return e.reduce(function(e,t){return typeof t==`string`?e.push(g(t,null)):t.data&&e.push(g(t.data,t.mode)),e},[])},e.fromString=function(t,n){let r=h(m(d(t,s.isKanjiModeEnabled())),n),i=c.find_path(r.map,`start`,`end`),a=[];for(let e=1;e<i.length-1;e++)a.push(r.table[i[e]].node);return e.fromArray(p(a))},e.rawSplit=function(t){return e.fromArray(d(t,s.isKanjiModeEnabled()))}})),Ye=t((e=>{var t=H(),n=U(),r=Ne(),i=Pe(),a=Fe(),o=Ie(),s=Le(),c=W(),l=Be(),u=Ve(),d=He(),f=q(),p=Je();function m(e,t){let n=e.size,r=o.getPositions(t);for(let t=0;t<r.length;t++){let i=r[t][0],a=r[t][1];for(let t=-1;t<=7;t++)if(!(i+t<=-1||n<=i+t))for(let r=-1;r<=7;r++)a+r<=-1||n<=a+r||(t>=0&&t<=6&&(r===0||r===6)||r>=0&&r<=6&&(t===0||t===6)||t>=2&&t<=4&&r>=2&&r<=4?e.set(i+t,a+r,!0,!0):e.set(i+t,a+r,!1,!0))}}function h(e){let t=e.size;for(let n=8;n<t-8;n++){let t=n%2==0;e.set(n,6,t,!0),e.set(6,n,t,!0)}}function g(e,t){let n=a.getPositions(t);for(let t=0;t<n.length;t++){let r=n[t][0],i=n[t][1];for(let t=-2;t<=2;t++)for(let n=-2;n<=2;n++)t===-2||t===2||n===-2||n===2||t===0&&n===0?e.set(r+t,i+n,!0,!0):e.set(r+t,i+n,!1,!0)}}function _(e,t){let n=e.size,r=u.getEncodedBits(t),i,a,o;for(let t=0;t<18;t++)i=Math.floor(t/3),a=t%3+n-8-3,o=(r>>t&1)==1,e.set(i,a,o,!0),e.set(a,i,o,!0)}function v(e,t,n){let r=e.size,i=d.getEncodedBits(t,n),a,o;for(a=0;a<15;a++)o=(i>>a&1)==1,a<6?e.set(a,8,o,!0):a<8?e.set(a+1,8,o,!0):e.set(r-15+a,8,o,!0),a<8?e.set(8,r-a-1,o,!0):a<9?e.set(8,15-a-1+1,o,!0):e.set(8,15-a-1,o,!0);e.set(r-8,8,1,!0)}function y(e,t){let n=e.size,r=-1,i=n-1,a=7,o=0;for(let s=n-1;s>0;s-=2)for(s===6&&s--;;){for(let n=0;n<2;n++)if(!e.isReserved(i,s-n)){let r=!1;o<t.length&&(r=(t[o]>>>a&1)==1),e.set(i,s-n,r),a--,a===-1&&(o++,a=7)}if(i+=r,i<0||n<=i){i-=r,r=-r;break}}}function b(e,n,i){let a=new r;i.forEach(function(t){a.put(t.mode.bit,4),a.put(t.getLength(),f.getCharCountIndicator(t.mode,e)),t.write(a)});let o=(t.getSymbolTotalCodewords(e)-c.getTotalCodewordsCount(e,n))*8;for(a.getLengthInBits()+4<=o&&a.put(0,4);a.getLengthInBits()%8!=0;)a.putBit(0);let s=(o-a.getLengthInBits())/8;for(let e=0;e<s;e++)a.put(e%2?17:236,8);return x(a,e,n)}function x(e,n,r){let i=t.getSymbolTotalCodewords(n),a=i-c.getTotalCodewordsCount(n,r),o=c.getBlocksCount(n,r),s=o-i%o,u=Math.floor(i/o),d=Math.floor(a/o),f=d+1,p=u-d,m=new l(p),h=0,g=Array(o),_=Array(o),v=0,y=new Uint8Array(e.buffer);for(let e=0;e<o;e++){let t=e<s?d:f;g[e]=y.slice(h,h+t),_[e]=m.encode(g[e]),h+=t,v=Math.max(v,t)}let b=new Uint8Array(i),x=0,S,C;for(S=0;S<v;S++)for(C=0;C<o;C++)S<g[C].length&&(b[x++]=g[C][S]);for(S=0;S<p;S++)for(C=0;C<o;C++)b[x++]=_[C][S];return b}function S(e,n,r,a){let o;if(Array.isArray(e))o=p.fromArray(e);else if(typeof e==`string`){let t=n;if(!t){let n=p.rawSplit(e);t=u.getBestVersionForData(n,r)}o=p.fromString(e,t||40)}else throw Error(`Invalid data`);let c=u.getBestVersionForData(o,r);if(!c)throw Error(`The amount of data is too big to be stored in a QR Code`);if(!n)n=c;else if(n<c)throw Error(`
5
5
  The chosen QR Code version cannot contain this amount of data.
6
6
  Minimum version required to store current data is: `+c+`.
7
7
  `);let l=b(n,r,o),d=new i(t.getSymbolSize(n));return m(d,n),h(d),g(d,n),v(d,r,0),n>=7&&_(d,n),y(d,l),isNaN(a)&&(a=s.getBestMask(d,v.bind(null,d,r))),s.applyMask(a,d),v(d,r,a),{modules:d,version:n,errorCorrectionLevel:r,maskPattern:a,segments:o}}e.create=function(e,r){if(e===void 0||e===``)throw Error(`No input text`);let i=n.M,a,o;return r!==void 0&&(i=n.from(r.errorCorrectionLevel,n.M),a=u.from(r.version),o=s.from(r.maskPattern),r.toSJISFunc&&t.setToSJISFunction(r.toSJISFunc)),S(e,a,i,o)}})),Xe=t((e=>{function t(e){if(typeof e==`number`&&(e=e.toString()),typeof e!=`string`)throw Error(`Color should be defined as hex string`);let t=e.slice().replace(`#`,``).split(``);if(t.length<3||t.length===5||t.length>8)throw Error(`Invalid hex color: `+e);(t.length===3||t.length===4)&&(t=Array.prototype.concat.apply([],t.map(function(e){return[e,e]}))),t.length===6&&t.push(`F`,`F`);let n=parseInt(t.join(``),16);return{r:n>>24&255,g:n>>16&255,b:n>>8&255,a:n&255,hex:`#`+t.slice(0,6).join(``)}}e.getOptions=function(e){e||={},e.color||={};let n=e.margin===void 0||e.margin===null||e.margin<0?4:e.margin,r=e.width&&e.width>=21?e.width:void 0,i=e.scale||4;return{width:r,scale:r?4:i,margin:n,color:{dark:t(e.color.dark||`#000000ff`),light:t(e.color.light||`#ffffffff`)},type:e.type,rendererOpts:e.rendererOpts||{}}},e.getScale=function(e,t){return t.width&&t.width>=e+t.margin*2?t.width/(e+t.margin*2):t.scale},e.getImageWidth=function(t,n){let r=e.getScale(t,n);return Math.floor((t+n.margin*2)*r)},e.qrToImageData=function(t,n,r){let i=n.modules.size,a=n.modules.data,o=e.getScale(i,r),s=Math.floor((i+r.margin*2)*o),c=r.margin*o,l=[r.color.light,r.color.dark];for(let e=0;e<s;e++)for(let n=0;n<s;n++){let u=(e*s+n)*4,d=r.color.light;if(e>=c&&n>=c&&e<s-c&&n<s-c){let t=Math.floor((e-c)/o),r=Math.floor((n-c)/o);d=l[a[t*i+r]?1:0]}t[u++]=d.r,t[u++]=d.g,t[u++]=d.b,t[u]=d.a}}})),Ze=t((e=>{var t=Xe();function n(e,t,n){e.clearRect(0,0,t.width,t.height),t.style||={},t.height=n,t.width=n,t.style.height=n+`px`,t.style.width=n+`px`}function r(){try{return document.createElement(`canvas`)}catch{throw Error(`You need to specify a canvas element`)}}e.render=function(e,i,a){let o=a,s=i;o===void 0&&(!i||!i.getContext)&&(o=i,i=void 0),i||(s=r()),o=t.getOptions(o);let c=t.getImageWidth(e.modules.size,o),l=s.getContext(`2d`),u=l.createImageData(c,c);return t.qrToImageData(u.data,e,o),n(l,s,c),l.putImageData(u,0,0),s},e.renderToDataURL=function(t,n,r){let i=r;i===void 0&&(!n||!n.getContext)&&(i=n,n=void 0),i||={};let a=e.render(t,n,i),o=i.type||`image/png`,s=i.rendererOpts||{};return a.toDataURL(o,s.quality)}})),Qe=t((e=>{var t=Xe();function n(e,t){let n=e.a/255,r=t+`="`+e.hex+`"`;return n<1?r+` `+t+`-opacity="`+n.toFixed(2).slice(1)+`"`:r}function r(e,t,n){let r=e+t;return n!==void 0&&(r+=` `+n),r}function i(e,t,n){let i=``,a=0,o=!1,s=0;for(let c=0;c<e.length;c++){let l=Math.floor(c%t),u=Math.floor(c/t);!l&&!o&&(o=!0),e[c]?(s++,c>0&&l>0&&e[c-1]||(i+=o?r(`M`,l+n,.5+u+n):r(`m`,a,0),a=0,o=!1),l+1<t&&e[c+1]||(i+=r(`h`,s),s=0)):a++}return i}e.render=function(e,r,a){let o=t.getOptions(r),s=e.modules.size,c=e.modules.data,l=s+o.margin*2,u=o.color.light.a?`<path `+n(o.color.light,`fill`)+` d="M0 0h`+l+`v`+l+`H0z"/>`:``,d=`<path `+n(o.color.dark,`stroke`)+` d="`+i(c,s,o.margin)+`"/>`,f=`viewBox="0 0 `+l+` `+l+`"`,p=`<svg xmlns="http://www.w3.org/2000/svg" `+(o.width?`width="`+o.width+`" height="`+o.width+`" `:``)+f+` shape-rendering="crispEdges">`+u+d+`</svg>
8
- `;return typeof a==`function`&&a(null,p),p}})),$e=t((e=>{var t=Me(),n=Ye(),r=Ze(),i=Qe();function a(e,r,i,a,o){let s=[].slice.call(arguments,1),c=s.length,l=typeof s[c-1]==`function`;if(!l&&!t())throw Error(`Callback required as last argument`);if(l){if(c<2)throw Error(`Too few arguments provided`);c===2?(o=i,i=r,r=a=void 0):c===3&&(r.getContext&&o===void 0?(o=a,a=void 0):(o=a,a=i,i=r,r=void 0))}else{if(c<1)throw Error(`Too few arguments provided`);return c===1?(i=r,r=a=void 0):c===2&&!r.getContext&&(a=i,i=r,r=void 0),new Promise(function(t,o){try{t(e(n.create(i,a),r,a))}catch(e){o(e)}})}try{let t=n.create(i,a);o(null,e(t,r,a))}catch(e){o(e)}}e.create=n.create,e.toCanvas=a.bind(null,r.render),e.toDataURL=a.bind(null,r.renderToDataURL),e.toString=a.bind(null,function(e,t,n){return i.render(e,n)})}))();function et(){return y({mutationFn:({channel:e,data:t})=>d(e,t)})}function tt(){return y({mutationFn:({channel:e,data:t})=>x(e,t)})}function nt(){return y({mutationFn:({channel:e,data:t})=>m(e,t)})}var rt={weixin:{title:`weixinAuthTitle`,description:`weixinAuthDescription`,hint:`weixinAuthHint`,capabilityHint:`weixinAuthCapabilityHint`,disabledHint:`weixinAuthDisabledHint`,connect:`weixinAuthConnect`,qrAlt:`weixinAuthQrAlt`,scanPrompt:`weixinAuthScanPrompt`,readyTitle:`weixinAuthReadyTitle`,readyDescription:`weixinAuthReadyDescription`,advancedTitle:`weixinAuthAdvancedTitle`,advancedDescription:`weixinAuthAdvancedDescription`},feishu:{title:`feishuAuthTitle`,description:`feishuAuthDescription`,hint:`feishuAuthHint`,capabilityHint:`feishuAuthCapabilityHint`,disabledHint:`feishuAuthDisabledHint`,connect:`feishuAuthConnect`,qrAlt:`feishuAuthQrAlt`,scanPrompt:`feishuAuthScanPrompt`,readyTitle:`feishuAuthReadyTitle`,readyDescription:`feishuAuthReadyDescription`,advancedTitle:`feishuAuthAdvancedTitle`,advancedDescription:`feishuAuthAdvancedDescription`,domainLabel:`feishuAuthDomain`}};function it(e){let{accounts:t}=e,n=new Set;if(typeof e.defaultAccountId==`string`&&e.defaultAccountId.trim()&&n.add(e.defaultAccountId.trim()),t&&typeof t==`object`&&!Array.isArray(t))for(let e of Object.keys(t)){let t=e.trim();t&&n.add(t)}return[...n]}function at(e,t){if(typeof e.baseUrl==`string`&&e.baseUrl.trim())return e.baseUrl.trim();if(typeof t.baseUrl==`string`&&t.baseUrl.trim())return t.baseUrl.trim()}function ot(e,t){return(typeof e.domain==`string`?e.domain.trim():``)||(typeof t.domain==`string`?t.domain.trim():``)||void 0}function st(e,t){return ot(e,t)===`lark`?`lark`:`feishu`}function ct(e){return e===`lark`?`https://open.larksuite.com/app`:`https://open.feishu.cn/app`}function lt(e,t){return g({queryKey:[`channel-qr`,e,t],enabled:!!t,queryFn:()=>(0,$e.toDataURL)(t,{errorCorrectionLevel:`M`,margin:1,width:480})}).data??null}function ut({activeSession:e,baseUrl:t,channelEnabled:n,copy:r,connectButtonLabel:i,connectedAccountIds:s,disabled:c,domain:l,handleStartAuth:u,hasConnectedAccount:d,primaryAccountId:f,statusLabel:p}){return(0,V.jsxs)(`div`,{className:`space-y-3`,children:[(0,V.jsxs)(`div`,{className:`inline-flex items-center gap-2 rounded-full bg-white/90 px-3 py-1 text-xs font-medium text-primary shadow-sm`,children:[(0,V.jsx)(z,{className:`h-3.5 w-3.5`}),o(r.title)]}),(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`h4`,{className:`text-base font-semibold text-gray-900`,children:o(r.description)}),(0,V.jsx)(`p`,{className:`mt-1 text-sm text-gray-600`,children:o(r.hint)})]}),(0,V.jsxs)(`div`,{className:a(`inline-flex w-fit items-center gap-2 rounded-full px-3 py-1 text-xs font-medium`,e?`bg-amber-50 text-amber-700`:d?`bg-emerald-50 text-emerald-700`:`bg-gray-100 text-gray-600`),children:[e?(0,V.jsx)(ne,{className:`h-3.5 w-3.5 animate-spin`}):(0,V.jsx)(R,{className:`h-3.5 w-3.5`}),p]}),(0,V.jsxs)(`div`,{className:`space-y-1 text-sm text-gray-600`,children:[(0,V.jsx)(`p`,{children:o(n||!d?r.capabilityHint:r.disabledHint)}),f?(0,V.jsxs)(`p`,{children:[o(`weixinAuthPrimaryAccount`),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:f})]}):null,s.length>1?(0,V.jsxs)(`p`,{children:[o(`weixinAuthConnectedAccounts`),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:s.join(`, `)})]}):null,t?(0,V.jsxs)(`p`,{children:[o(`weixinAuthBaseUrl`),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:t})]}):null,l&&r.domainLabel?(0,V.jsxs)(`p`,{children:[o(r.domainLabel),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:l})]}):null]}),(0,V.jsx)(C,{type:`button`,onClick:()=>void u(),disabled:c,className:`rounded-xl`,children:i})]})}function dt({activeSession:e,authMessage:t,copy:n,qrDataUrl:r}){return(0,V.jsx)(`div`,{className:`w-full max-w-sm rounded-2xl border border-dashed border-primary/25 bg-white/85 p-4 shadow-sm`,children:e?(0,V.jsxs)(`div`,{className:`space-y-3`,children:[(0,V.jsx)(`div`,{className:`overflow-hidden rounded-2xl border border-gray-100 bg-white p-3`,children:r?(0,V.jsx)(`img`,{src:r,alt:o(n.qrAlt),className:`mx-auto aspect-square w-full max-w-[240px] object-contain`}):(0,V.jsx)(`div`,{className:`flex aspect-square w-full items-center justify-center rounded-xl bg-gray-50 text-gray-500`,children:(0,V.jsxs)(`div`,{className:`flex flex-col items-center gap-2 text-center`,children:[(0,V.jsx)(ne,{className:`h-5 w-5 animate-spin`}),(0,V.jsx)(`p`,{className:`text-xs`,children:o(`weixinAuthStarting`)})]})})}),(0,V.jsxs)(`div`,{className:`space-y-1 text-xs text-gray-500`,children:[(0,V.jsx)(`p`,{children:t||e.note||o(n.scanPrompt)}),(0,V.jsxs)(`p`,{children:[o(`weixinAuthExpiresAt`),`: `,s(e.expiresAt)]})]}),(0,V.jsx)(u,{href:e.qrCodeUrl,external:!0,size:`xs`,children:o(`weixinAuthOpenQr`)})]}):(0,V.jsxs)(`div`,{className:`flex min-h-[280px] flex-col items-center justify-center rounded-2xl bg-gray-50/80 px-6 text-center`,children:[(0,V.jsx)(z,{className:`h-9 w-9 text-gray-300`}),(0,V.jsx)(`p`,{className:`mt-3 text-sm font-medium text-gray-700`,children:o(n.readyTitle)}),(0,V.jsx)(`p`,{className:`mt-1 text-xs leading-5 text-gray-500`,children:o(n.readyDescription)})]})})}function ft({channelConfig:e,channelEnabled:t,channelName:n,disabled:r,formData:i}){let a=p(),s=et(),c=tt(),[l,u]=(0,B.useState)(null),[d,f]=(0,B.useState)(null),[m,h]=(0,B.useState)(!1),g=(0,B.useMemo)(()=>it(e),[e]),_=g[0],v=at(i,e),y=n===`feishu`?ot(i,e):void 0,x=g.length>0,S=x&&!m?null:l,C=lt(n,S?.qrCodeUrl),w=rt[n];(0,B.useEffect)(()=>{if(!S)return;let e=!1,t=null,r=async()=>{try{let i=await c.mutateAsync({channel:n,data:{sessionId:S.sessionId}});if(e)return;if(f(i),i.status===`authorized`){await a.invalidateQueries({queryKey:[`config`]}),await a.invalidateQueries({queryKey:[`config-meta`]}),b.success(i.message||o(`weixinAuthAuthorized`)),u(null);return}if(i.status===`expired`||i.status===`error`){b.error(i.message||o(`weixinAuthRetryRequired`)),u(null);return}t=setTimeout(r,i.nextPollMs??S.intervalMs)}catch(t){e||(b.error(`${o(`error`)}: ${t instanceof Error?t.message:String(t)}`),u(null))}};return t=setTimeout(r,S.intervalMs),()=>{e=!0,t&&clearTimeout(t)}},[n,S,c,a]);let T=async()=>{try{let e=await s.mutateAsync({channel:n,data:{baseUrl:v,domain:y,accountId:typeof i.defaultAccountId==`string`&&i.defaultAccountId.trim()?i.defaultAccountId.trim():void 0}});h(x),u(e),f({channel:n,status:`pending`,message:e.note,nextPollMs:e.intervalMs})}catch(e){b.error(`${o(`error`)}: ${e instanceof Error?e.message:String(e)}`)}},E=S?d?.status===`scanned`?o(`weixinAuthScanned`):o(`weixinAuthWaiting`):o(x?t?`weixinAuthAuthorized`:`weixinAuthConnectedDisabled`:`weixinAuthNotConnected`),D=s.isPending?o(`weixinAuthStarting`):o(S?`weixinAuthWaiting`:x?`weixinAuthReconnect`:w.connect),O=x?o(`weixinAuthAuthorized`):d?.message;return(0,V.jsx)(`section`,{className:`rounded-2xl border border-primary/20 bg-gradient-to-br from-primary-50/70 via-white to-emerald-50/60 p-5`,children:(0,V.jsxs)(`div`,{className:`flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between`,children:[(0,V.jsx)(ut,{activeSession:S,baseUrl:v,channelEnabled:t,copy:w,connectButtonLabel:D,connectedAccountIds:g,disabled:r||s.isPending||!!S,domain:y,handleStartAuth:T,hasConnectedAccount:x,primaryAccountId:_,statusLabel:E}),(0,V.jsx)(dt,{activeSession:S,authMessage:O,copy:w,qrDataUrl:C})]})})}function pt({channelConfig:e,disabled:t,formData:n}){let r=p(),i=nt(),[a,s]=(0,B.useState)(()=>st(n,e)),[c,l]=(0,B.useState)(``),[d,f]=(0,B.useState)(``),m=ct(a),h=!!(c.trim()&&d.trim())&&!t&&!i.isPending,g=async()=>{try{let e=await i.mutateAsync({channel:`feishu`,data:{domain:a,fields:{appId:c.trim(),appSecret:d.trim()}}});await r.invalidateQueries({queryKey:[`config`]}),await r.invalidateQueries({queryKey:[`config-meta`]}),b.success(e.message||o(`feishuExistingAgentConnectSuccess`)),f(``)}catch(e){b.error(`${o(`error`)}: ${e instanceof Error?e.message:String(e)}`)}};return(0,V.jsx)(`section`,{className:`rounded-2xl border border-primary/20 bg-white p-5`,children:(0,V.jsxs)(`div`,{className:`flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between`,children:[(0,V.jsxs)(`div`,{className:`max-w-xl space-y-3`,children:[(0,V.jsxs)(`div`,{className:`inline-flex items-center gap-2 rounded-full bg-gray-100 px-3 py-1 text-xs font-medium text-gray-700`,children:[(0,V.jsx)(R,{className:`h-3.5 w-3.5`}),o(`feishuExistingAgentTitle`)]}),(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`h4`,{className:`text-base font-semibold text-gray-900`,children:o(`feishuExistingAgentDescription`)}),(0,V.jsx)(`p`,{className:`mt-1 text-sm text-gray-600`,children:o(`feishuExistingAgentHint`)})]}),(0,V.jsx)(u,{href:m,external:!0,children:o(a===`lark`?`feishuExistingAgentOpenLarkList`:`feishuExistingAgentOpenFeishuList`)})]}),(0,V.jsxs)(`div`,{className:`w-full max-w-sm space-y-4`,children:[(0,V.jsxs)(`div`,{className:`space-y-2`,children:[(0,V.jsx)(v,{htmlFor:`feishu-existing-platform`,children:o(`feishuPlatform`)}),(0,V.jsxs)(k,{value:a,onValueChange:e=>s(e===`lark`?`lark`:`feishu`),children:[(0,V.jsx)(E,{id:`feishu-existing-platform`,className:`rounded-xl`,children:(0,V.jsx)(T,{})}),(0,V.jsxs)(D,{children:[(0,V.jsx)(O,{value:`feishu`,children:`Feishu`}),(0,V.jsx)(O,{value:`lark`,children:`Lark`})]})]})]}),(0,V.jsxs)(`div`,{className:`space-y-2`,children:[(0,V.jsx)(v,{htmlFor:`feishu-existing-app-id`,children:`App ID`}),(0,V.jsx)(S,{id:`feishu-existing-app-id`,value:c,onChange:e=>l(e.target.value),className:`rounded-xl`})]}),(0,V.jsxs)(`div`,{className:`space-y-2`,children:[(0,V.jsx)(v,{htmlFor:`feishu-existing-app-secret`,children:`App Secret`}),(0,V.jsx)(S,{id:`feishu-existing-app-secret`,type:`password`,value:d,onChange:e=>f(e.target.value),className:`rounded-xl`})]}),(0,V.jsx)(C,{type:`button`,onClick:()=>void g(),disabled:!h,className:`w-full rounded-xl`,children:i.isPending?o(`feishuExistingAgentConnecting`):o(`feishuExistingAgentConnect`)})]})]})})}function mt(e){let[t,n]=(0,B.useState)(`create`);return(0,V.jsxs)(M,{value:t,onValueChange:e=>n(e===`existing`?`existing`:`create`),children:[(0,V.jsxs)(ae,{children:[(0,V.jsx)(N,{value:`create`,children:o(`feishuAuthCreateNew`)}),(0,V.jsx)(N,{value:`existing`,children:o(`feishuAuthConnectExisting`)})]}),(0,V.jsx)(he,{value:`create`,className:`mt-4`,children:(0,V.jsx)(ft,{...e,channelName:`feishu`})}),(0,V.jsx)(he,{value:`existing`,className:`mt-4`,children:(0,V.jsx)(pt,{...e})})]})}var ht=[{value:`pairing`,label:`pairing`},{value:`allowlist`,label:`allowlist`},{value:`open`,label:`open`},{value:`disabled`,label:`disabled`}],J=[{value:`open`,label:`open`},{value:`allowlist`,label:`allowlist`},{value:`disabled`,label:`disabled`}],gt=[{value:`feishu`,label:`feishu`},{value:`lark`,label:`lark`}],_t=[{value:`off`,label:`off`},{value:`partial`,label:`partial`},{value:`block`,label:`block`},{value:`progress`,label:`progress`}];function vt(){return{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`),section:`primary`},{name:`defaultAccountId`,type:`text`,label:o(`defaultAccountId`)},{name:`domain`,type:`select`,label:o(`feishuAuthDomain`),options:gt},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`groupPolicy`,type:`select`,label:o(`groupPolicy`),options:J},{name:`requireMention`,type:`boolean`,label:o(`requireMention`)},{name:`accounts`,type:`json`,label:o(`accountsJson`)}],layout:[{type:`fields`,section:`primary`},{type:`custom`,sectionId:`feishu-auth`},{type:`fields`,section:`advanced`,collapsible:{title:o(`feishuAuthAdvancedTitle`),description:o(`feishuAuthAdvancedDescription`)}}]}}function yt(){return{telegram:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`token`,type:`password`,label:o(`botToken`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`proxy`,type:`text`,label:o(`proxy`)},{name:`accountId`,type:`text`,label:o(`accountId`)},{name:`dmPolicy`,type:`select`,label:o(`dmPolicy`),options:ht},{name:`groupPolicy`,type:`select`,label:o(`groupPolicy`),options:J},{name:`groupAllowFrom`,type:`tags`,label:o(`groupAllowFrom`)},{name:`requireMention`,type:`boolean`,label:o(`requireMention`)},{name:`mentionPatterns`,type:`tags`,label:o(`mentionPatterns`)},{name:`groups`,type:`json`,label:o(`groupRulesJson`)}]},discord:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`token`,type:`password`,label:o(`botToken`)},{name:`allowBots`,type:`boolean`,label:o(`allowBotMessages`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`gatewayUrl`,type:`text`,label:o(`gatewayUrl`)},{name:`intents`,type:`number`,label:o(`intents`)},{name:`proxy`,type:`text`,label:o(`proxy`)},{name:`mediaMaxMb`,type:`number`,label:o(`attachmentMaxSizeMb`)},{name:`streaming`,type:`select`,label:o(`streamingMode`),options:_t},{name:`draftChunk`,type:`json`,label:o(`draftChunkingJson`)},{name:`textChunkLimit`,type:`number`,label:o(`textChunkLimit`)},{name:`accountId`,type:`text`,label:o(`accountId`)},{name:`dmPolicy`,type:`select`,label:o(`dmPolicy`),options:ht},{name:`groupPolicy`,type:`select`,label:o(`groupPolicy`),options:J},{name:`groupAllowFrom`,type:`tags`,label:o(`groupAllowFrom`)},{name:`requireMention`,type:`boolean`,label:o(`requireMention`)},{name:`mentionPatterns`,type:`tags`,label:o(`mentionPatterns`)},{name:`groups`,type:`json`,label:o(`groupRulesJson`)}]},whatsapp:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`bridgeUrl`,type:`text`,label:o(`bridgeUrl`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]},feishu:vt(),dingtalk:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`clientId`,type:`text`,label:o(`clientId`)},{name:`clientSecret`,type:`password`,label:o(`clientSecret`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]},wecom:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`corpId`,type:`text`,label:o(`corpId`)},{name:`agentId`,type:`text`,label:o(`agentId`)},{name:`secret`,type:`password`,label:o(`secret`)},{name:`token`,type:`password`,label:o(`token`)},{name:`callbackPort`,type:`number`,label:o(`callbackPort`)},{name:`callbackPath`,type:`text`,label:o(`callbackPath`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]},weixin:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`),section:`primary`},{name:`defaultAccountId`,type:`text`,label:o(`defaultAccountId`)},{name:`baseUrl`,type:`text`,label:o(`baseUrl`)},{name:`pollTimeoutMs`,type:`number`,label:o(`pollTimeoutMs`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`accounts`,type:`json`,label:o(`accountsJson`)}],layout:[{type:`fields`,section:`primary`},{type:`custom`,sectionId:`weixin-auth`},{type:`fields`,section:`advanced`,collapsible:{title:o(`weixinAuthAdvancedTitle`),description:o(`weixinAuthAdvancedDescription`)}}]},slack:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`mode`,type:`text`,label:o(`mode`)},{name:`webhookPath`,type:`text`,label:o(`webhookPath`)},{name:`allowBots`,type:`boolean`,label:o(`allowBotMessages`)},{name:`botToken`,type:`password`,label:o(`botToken`)},{name:`appToken`,type:`password`,label:o(`appToken`)}]},email:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`consentGranted`,type:`boolean`,label:o(`consentGranted`)},{name:`imapHost`,type:`text`,label:o(`imapHost`)},{name:`imapPort`,type:`number`,label:o(`imapPort`)},{name:`imapUsername`,type:`text`,label:o(`imapUsername`)},{name:`imapPassword`,type:`password`,label:o(`imapPassword`)},{name:`fromAddress`,type:`email`,label:o(`fromAddress`)}]},qq:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`appId`,type:`text`,label:o(`appId`)},{name:`secret`,type:`password`,label:o(`appSecret`)},{name:`markdownSupport`,type:`boolean`,label:o(`markdownSupport`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]}}}function Y(e){let t=c();return e.tutorialUrls?.[t]||e.tutorialUrls?.default||e.tutorialUrl}var bt=[],xt=[{type:`fields`,section:`all`}],X=new Set,Z=new Map,Q=null;function $(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function St(e,t){let n={...e};for(let[e,r]of Object.entries(t))n[e]=$(n[e])&&$(r)?St(n[e],r):r;return n}function Ct(e,t){let n={},r=n,i=e.split(`.`);for(let e=0;e<i.length-1;e+=1)r[i[e]]={},r=r[i[e]];return r[i[i.length-1]]=t,n}function wt(e,t){return t===`all`?e:e.filter(e=>t===`primary`?e.section===`primary`:e.section!==`primary`)}function Tt(e,t){let n={};return t.filter(e=>e.type===`json`).forEach(t=>{n[t.name]=JSON.stringify(e[t.name]??{},null,2)}),n}function Et(){Q||=h.eventBus.on(r.channelConfigApplyStatus,e=>{Z.set(e.channel,e.status===`started`?{status:`applying`}:e.status===`succeeded`?{status:`applied`}:{status:`failed`,message:e.message}),X.forEach(e=>e())})}function Dt(e){return X.add(e),Et(),()=>{X.delete(e),!X.size&&Q&&(Q(),Q=null,Z.clear())}}function Ot(e){return(0,B.useSyncExternalStore)(Dt,()=>e?Z.get(e)??null:null,()=>null)}function kt(e){return e?e.status===`applying`?{className:`text-amber-600`,label:o(`channelConfigApplying`)}:e.status===`applied`?{className:`text-emerald-600`,label:o(`channelConfigApplied`)}:{className:`text-red-600`,label:`${o(`channelConfigApplyFailed`)}${e.message?`: ${e.message}`:``}`}:null}function At({channelApplyStatus:e,channelLabel:t,channelName:n,enabled:r,tutorialUrl:i}){return(0,V.jsx)(ve,{className:`px-5 py-4`,children:(0,V.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-3`,children:[(0,V.jsxs)(`div`,{className:`min-w-0`,children:[(0,V.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,V.jsx)(j,{name:n,src:oe(n),className:a(`h-9 w-9 rounded-lg bg-background/80`,r&&`ring-1 ring-primary/20`),imgClassName:`h-5 w-5 object-contain`,fallback:(0,V.jsx)(`span`,{className:`text-sm font-semibold uppercase text-muted-foreground`,children:n[0]})}),(0,V.jsx)(`h3`,{className:`truncate text-lg font-semibold text-foreground capitalize`,children:t})]}),(0,V.jsx)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:o(`channelsFormDescription`)}),e?(0,V.jsx)(`p`,{className:a(`mt-2 text-xs font-medium`,e.className),children:e.label}):null,i?(0,V.jsx)(u,{href:i,external:!0,icon:te,size:`xs`,className:`mt-2`,children:o(`channelsGuideTitle`)}):null]}),(0,V.jsx)(I,{status:r?`active`:`inactive`,label:o(r?`statusActive`:`statusInactive`)})]})})}function jt({channelConfig:e,channelName:t,disabled:n,enabled:r,fields:i,formData:a,jsonDrafts:o,layoutBlocks:s,setJsonDrafts:c,uiHints:l,updateField:u}){return(0,V.jsx)(V.Fragment,{children:s.map((s,d)=>{if(s.type===`fields`){let e=wt(i,s.section);if(e.length===0)return null;let n=(0,V.jsx)(je,{channelName:t,fields:e,formData:a,jsonDrafts:o,setJsonDrafts:c,updateField:u,uiHints:l});return s.collapsible?(0,V.jsxs)(`details`,{className:`group rounded-xl bg-muted/35`,children:[(0,V.jsxs)(`summary`,{className:`flex cursor-pointer list-none items-center justify-between gap-3 px-4 py-3 text-sm font-medium text-foreground`,children:[(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`p`,{children:s.collapsible.title}),s.collapsible.description?(0,V.jsx)(`p`,{className:`mt-1 text-xs font-normal text-muted-foreground`,children:s.collapsible.description}):null]}),(0,V.jsx)(w,{className:`h-4 w-4 text-muted-foreground transition-transform group-open:rotate-180`})]}),(0,V.jsx)(`div`,{className:`space-y-5 border-t border-border/45 px-4 py-4`,children:n})]},`${s.type}-${s.section}-${d}`):(0,V.jsx)(`div`,{children:n},`${s.type}-${s.section}-${d}`)}return s.sectionId===`feishu-auth`?(0,V.jsx)(mt,{channelConfig:e,formData:a,channelEnabled:r,disabled:n},`${s.type}-${s.sectionId}-${d}`):s.sectionId===`weixin-auth`?(0,V.jsx)(ft,{channelConfig:e,formData:a,channelName:`weixin`,channelEnabled:r,disabled:n},`${s.type}-${s.sectionId}-${d}`):null})})}function Mt({actions:e,channelConfig:t,channelLabel:n,channelName:r,fields:i,layoutBlocks:a,tutorialUrl:s,uiHints:c}){let l=pe(),u=de(),[d,f]=(0,B.useState)(()=>({...t})),[p,m]=(0,B.useState)(()=>Tt(t,i)),[h,g]=(0,B.useState)(null),_=kt(Ot(r)),v=typeof d.enabled==`boolean`?d.enabled:!!t.enabled,y=l.isPending||!!h,x=(e,t)=>f(n=>({...n,[e]:t})),S=e=>{e.preventDefault();let t={...d};for(let e of i){if(e.type===`password`){let n=t[e.name];(typeof n!=`string`||n.length===0)&&delete t[e.name]}if(e.type===`json`)try{t[e.name]=(p[e.name]??``).trim()?JSON.parse(p[e.name]):{}}catch{b.error(`${o(`invalidJson`)}: ${e.name}`);return}}l.mutate({channel:r,data:t})},w=e=>{if(!$(e?.channels)||!$(e.channels[r]))return;let t=e.channels[r];f(e=>St(e,t)),m(e=>{let n={...e},r=!1;for(let e of i)e.type!==`json`||!Object.prototype.hasOwnProperty.call(t,e.name)||(n[e.name]=JSON.stringify(t[e.name]??{},null,2),r=!0);return r?n:e})},T=async e=>{g(e.id);try{let t=`channels.${r}`,n={...d};e.saveBeforeRun&&(n={...n,...e.savePatch??{}},f(n),await l.mutateAsync({channel:r,data:n}));let i=await u.mutateAsync({actionId:e.id,data:{scope:t,draftConfig:Ct(t,n)}});w(i.patch),i.ok?b.success(i.message||o(`success`)):b.error(i.message||o(`error`))}catch(e){b.error(`${o(`error`)}: ${e instanceof Error?e.message:String(e)}`)}finally{g(null)}};return(0,V.jsxs)(xe,{children:[(0,V.jsx)(At,{channelName:r,channelLabel:n,enabled:v,tutorialUrl:s,channelApplyStatus:_}),(0,V.jsxs)(`form`,{onSubmit:S,className:`flex min-h-0 flex-1 flex-col`,children:[(0,V.jsx)(Se,{className:`space-y-5 px-5 py-4`,children:(0,V.jsx)(jt,{channelConfig:t,channelName:r,enabled:v,fields:i,formData:d,jsonDrafts:p,layoutBlocks:a,setJsonDrafts:m,uiHints:c,updateField:x,disabled:y})}),(0,V.jsx)(we,{children:(0,V.jsxs)(ge,{align:`between`,children:[(0,V.jsx)(`div`,{className:`flex flex-wrap items-center gap-2`,children:e.filter(e=>e.trigger===`manual`).map(e=>(0,V.jsx)(C,{type:`button`,size:`sm`,onClick:()=>void T(e),disabled:y,variant:`secondary`,children:h===e.id?o(`connecting`):e.title},e.id))}),(0,V.jsx)(C,{type:`submit`,size:`sm`,disabled:y,children:l.isPending?o(`saving`):o(`save`)})]})})]})]})}function Nt({channelName:e}){let{data:t}=F(),{data:n}=fe(),{data:r}=P(),i=e?t?.channels[e]??null:null,a=n?.channels.find(t=>t.name===e),s=(0,B.useMemo)(()=>yt()[e||``],[e]);if(!e||!a||!i)return(0,V.jsx)(Ce,{children:(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`h3`,{className:`text-base font-semibold text-foreground`,children:o(`channelsSelectTitle`)}),(0,V.jsx)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:o(`channelsSelectDescription`)})]})});let c=s?.fields??bt,l=s?.layout??xt,u=r?.uiHints,d=L(`channels.${e}`,u)?.label??e,f=Y(a),p=JSON.stringify({channelName:e,channelConfig:i,jsonFields:c.filter(e=>e.type===`json`).map(e=>e.name)});return(0,V.jsx)(Mt,{actions:r?.actions?.filter(t=>t.scope===`channels.${e}`)??[],channelConfig:i,channelLabel:d,channelName:e,fields:c,layoutBlocks:l,tutorialUrl:f,uiHints:u},p)}var Pt={telegram:`channelDescTelegram`,slack:`channelDescSlack`,email:`channelDescEmail`,webhook:`channelDescWebhook`,discord:`channelDescDiscord`,feishu:`channelDescFeishu`,weixin:`channelDescWeixin`},Ft=[`weixin`,`feishu`,`discord`,`qq`];function It(e){let t=new Map(Ft.map((e,t)=>[e,t]));return e.map((e,t)=>({channel:e,index:t})).sort((e,n)=>{let r=t.get(e.channel.name)??1/0,i=t.get(n.channel.name)??1/0;return r===i?e.index-n.index:r-i}).map(({channel:e})=>e)}function Lt(){let{isMobile:e}=ce(),{data:t}=F(),{data:n}=fe(),{data:r}=P(),[i,s]=(0,B.useState)(`enabled`),[c,u]=(0,B.useState)(null),[d,f]=(0,B.useState)(``),p=(0,B.useMemo)(()=>It(n?.channels??[]),[n?.channels]),m=t?.channels,h=(0,B.useMemo)(()=>{let e=d.trim().toLowerCase();return p.filter(e=>i!==`enabled`||!!m?.[e.name]?.enabled).filter(t=>e?(t.displayName||t.name).toLowerCase().includes(e)||t.name.toLowerCase().includes(e):!0)},[i,m,p,d]),g=c&&h.some(e=>e.name===c)?c:e?null:h[0]?.name??null;return!t||!n?(0,V.jsx)(_,{title:o(`channelsPageTitle`),description:o(`channelsPageDescription`),layout:`split`,children:(0,V.jsx)(`div`,{className:`text-sm text-muted-foreground`,children:o(`channelsLoading`)})}):(0,V.jsx)(_,{title:o(`channelsPageTitle`),description:o(`channelsPageDescription`),layout:`split`,children:(0,V.jsxs)(_e,{className:`md:min-h-0`,compactView:c?`detail`:`list`,onMobileBack:()=>u(null),mobileListLabel:o(`channelsPageTitle`),children:[(0,V.jsxs)(be,{children:[(0,V.jsx)(ve,{className:`px-4 pt-4`,children:(0,V.jsx)(M,{value:i,onValueChange:s,children:(0,V.jsxs)(ae,{className:`mb-0 h-auto gap-3 border-b-0 bg-transparent p-0`,children:[(0,V.jsxs)(N,{value:`enabled`,className:`gap-1.5 px-0 pb-3`,children:[o(`channelsTabEnabled`),(0,V.jsx)(`span`,{className:`text-[11px] font-medium text-gray-500`,children:p.filter(e=>m?.[e.name]?.enabled).length})]}),(0,V.jsxs)(N,{value:`all`,className:`gap-1.5 px-0 pb-3`,children:[o(`channelsTabAll`),(0,V.jsx)(`span`,{className:`text-[11px] font-medium text-gray-500`,children:p.length})]})]})})}),(0,V.jsx)(`div`,{className:`border-b border-border/55 px-4 py-3`,children:(0,V.jsxs)(`div`,{className:`relative`,children:[(0,V.jsx)(ee,{className:`pointer-events-none absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground/70`}),(0,V.jsx)(S,{value:d,onChange:e=>f(e.target.value),placeholder:o(`channelsFilterPlaceholder`),className:`h-10 rounded-xl pl-9`})]})}),(0,V.jsxs)(Se,{className:`space-y-2 p-3`,children:[h.map(e=>{let n=!!t.channels[e.name]?.enabled,i=Y(e),s=L(`channels.${e.name}`,r?.uiHints)?.help||o(Pt[e.name]||`channelDescriptionDefault`);return(0,V.jsx)(Te,{onClick:()=>u(e.name),active:g===e.name,children:(0,V.jsxs)(`div`,{className:`flex items-start justify-between gap-3`,children:[(0,V.jsxs)(`div`,{className:`flex min-w-0 items-center gap-3`,children:[(0,V.jsx)(j,{name:e.name,src:oe(e.name),className:a(`h-10 w-10 rounded-lg bg-background/80`,n&&`ring-1 ring-primary/20`),imgClassName:`h-5 w-5 object-contain`,fallback:(0,V.jsx)(`span`,{className:`text-sm font-semibold uppercase text-muted-foreground`,children:e.name[0]})}),(0,V.jsxs)(`div`,{className:`min-w-0`,children:[(0,V.jsx)(`p`,{className:`truncate text-sm font-semibold text-foreground`,children:e.displayName||e.name}),(0,V.jsx)(`p`,{className:`line-clamp-1 text-[11px] text-muted-foreground`,children:s})]})]}),(0,V.jsxs)(`div`,{className:`flex items-center gap-2`,children:[i?(0,V.jsx)(`a`,{href:i,onClick:e=>e.stopPropagation(),className:`inline-flex h-7 w-7 items-center justify-center rounded-md text-muted-foreground/45 transition-colors hover:bg-muted hover:text-foreground`,title:o(`channelsGuideTitle`),children:(0,V.jsx)(l,{className:`h-3.5 w-3.5`})}):null,(0,V.jsx)(I,{status:n?`active`:`inactive`,label:o(n?`statusActive`:`statusInactive`),className:`min-w-[56px] justify-center`})]})]})},e.name)}),h.length===0?(0,V.jsx)(ye,{icon:ue,title:o(`channelsNoMatch`)}):null]})]}),(0,V.jsx)(Nt,{channelName:g??void 0})]})})}export{Lt as ChannelsList};
8
+ `;return typeof a==`function`&&a(null,p),p}})),$e=t((e=>{var t=Me(),n=Ye(),r=Ze(),i=Qe();function a(e,r,i,a,o){let s=[].slice.call(arguments,1),c=s.length,l=typeof s[c-1]==`function`;if(!l&&!t())throw Error(`Callback required as last argument`);if(l){if(c<2)throw Error(`Too few arguments provided`);c===2?(o=i,i=r,r=a=void 0):c===3&&(r.getContext&&o===void 0?(o=a,a=void 0):(o=a,a=i,i=r,r=void 0))}else{if(c<1)throw Error(`Too few arguments provided`);return c===1?(i=r,r=a=void 0):c===2&&!r.getContext&&(a=i,i=r,r=void 0),new Promise(function(t,o){try{t(e(n.create(i,a),r,a))}catch(e){o(e)}})}try{let t=n.create(i,a);o(null,e(t,r,a))}catch(e){o(e)}}e.create=n.create,e.toCanvas=a.bind(null,r.render),e.toDataURL=a.bind(null,r.renderToDataURL),e.toString=a.bind(null,function(e,t,n){return i.render(e,n)})}))();function et(){return S({mutationFn:({channel:e,data:t})=>h(e,t)})}function tt(){return S({mutationFn:({channel:e,data:t})=>y(e,t)})}function nt(){return S({mutationFn:({channel:e,data:t})=>f(e,t)})}var rt={weixin:{title:`weixinAuthTitle`,description:`weixinAuthDescription`,hint:`weixinAuthHint`,capabilityHint:`weixinAuthCapabilityHint`,disabledHint:`weixinAuthDisabledHint`,connect:`weixinAuthConnect`,qrAlt:`weixinAuthQrAlt`,scanPrompt:`weixinAuthScanPrompt`,readyTitle:`weixinAuthReadyTitle`,readyDescription:`weixinAuthReadyDescription`,advancedTitle:`weixinAuthAdvancedTitle`,advancedDescription:`weixinAuthAdvancedDescription`},feishu:{title:`feishuAuthTitle`,description:`feishuAuthDescription`,hint:`feishuAuthHint`,capabilityHint:`feishuAuthCapabilityHint`,disabledHint:`feishuAuthDisabledHint`,connect:`feishuAuthConnect`,qrAlt:`feishuAuthQrAlt`,scanPrompt:`feishuAuthScanPrompt`,readyTitle:`feishuAuthReadyTitle`,readyDescription:`feishuAuthReadyDescription`,advancedTitle:`feishuAuthAdvancedTitle`,advancedDescription:`feishuAuthAdvancedDescription`,domainLabel:`feishuAuthDomain`}};function it(e){let{accounts:t}=e,n=new Set;if(typeof e.defaultAccountId==`string`&&e.defaultAccountId.trim()&&n.add(e.defaultAccountId.trim()),t&&typeof t==`object`&&!Array.isArray(t))for(let e of Object.keys(t)){let t=e.trim();t&&n.add(t)}return[...n]}function at(e,t){if(typeof e.baseUrl==`string`&&e.baseUrl.trim())return e.baseUrl.trim();if(typeof t.baseUrl==`string`&&t.baseUrl.trim())return t.baseUrl.trim()}function ot(e,t){return(typeof e.domain==`string`?e.domain.trim():``)||(typeof t.domain==`string`?t.domain.trim():``)||void 0}function st(e,t){return ot(e,t)===`lark`?`lark`:`feishu`}function ct(e){return e===`lark`?`https://open.larksuite.com/app`:`https://open.feishu.cn/app`}function lt(e,t){return C({queryKey:[`channel-qr`,e,t],enabled:!!t,queryFn:()=>(0,$e.toDataURL)(t,{errorCorrectionLevel:`M`,margin:1,width:480})}).data??null}function ut({activeSession:e,baseUrl:t,channelEnabled:n,copy:r,connectButtonLabel:i,connectedAccountIds:s,disabled:c,domain:l,handleStartAuth:u,hasConnectedAccount:d,primaryAccountId:f,statusLabel:p}){return(0,V.jsxs)(`div`,{className:`space-y-3`,children:[(0,V.jsxs)(`div`,{className:`inline-flex items-center gap-2 rounded-full bg-white/90 px-3 py-1 text-xs font-medium text-primary shadow-sm`,children:[(0,V.jsx)(z,{className:`h-3.5 w-3.5`}),o(r.title)]}),(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`h4`,{className:`text-base font-semibold text-gray-900`,children:o(r.description)}),(0,V.jsx)(`p`,{className:`mt-1 text-sm text-gray-600`,children:o(r.hint)})]}),(0,V.jsxs)(`div`,{className:a(`inline-flex w-fit items-center gap-2 rounded-full px-3 py-1 text-xs font-medium`,e?`bg-amber-50 text-amber-700`:d?`bg-emerald-50 text-emerald-700`:`bg-gray-100 text-gray-600`),children:[e?(0,V.jsx)(ne,{className:`h-3.5 w-3.5 animate-spin`}):(0,V.jsx)(R,{className:`h-3.5 w-3.5`}),p]}),(0,V.jsxs)(`div`,{className:`space-y-1 text-sm text-gray-600`,children:[(0,V.jsx)(`p`,{children:o(n||!d?r.capabilityHint:r.disabledHint)}),f?(0,V.jsxs)(`p`,{children:[o(`weixinAuthPrimaryAccount`),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:f})]}):null,s.length>1?(0,V.jsxs)(`p`,{children:[o(`weixinAuthConnectedAccounts`),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:s.join(`, `)})]}):null,t?(0,V.jsxs)(`p`,{children:[o(`weixinAuthBaseUrl`),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:t})]}):null,l&&r.domainLabel?(0,V.jsxs)(`p`,{children:[o(r.domainLabel),`: `,(0,V.jsx)(`span`,{className:`font-mono text-xs text-gray-900`,children:l})]}):null]}),(0,V.jsx)(v,{type:`button`,onClick:()=>void u(),disabled:c,className:`rounded-xl`,children:i})]})}function dt({activeSession:e,authMessage:t,copy:n,qrDataUrl:r}){return(0,V.jsx)(`div`,{className:`w-full max-w-sm rounded-2xl border border-dashed border-primary/25 bg-white/85 p-4 shadow-sm`,children:e?(0,V.jsxs)(`div`,{className:`space-y-3`,children:[(0,V.jsx)(`div`,{className:`overflow-hidden rounded-2xl border border-gray-100 bg-white p-3`,children:r?(0,V.jsx)(`img`,{src:r,alt:o(n.qrAlt),className:`mx-auto aspect-square w-full max-w-[240px] object-contain`}):(0,V.jsx)(`div`,{className:`flex aspect-square w-full items-center justify-center rounded-xl bg-gray-50 text-gray-500`,children:(0,V.jsxs)(`div`,{className:`flex flex-col items-center gap-2 text-center`,children:[(0,V.jsx)(ne,{className:`h-5 w-5 animate-spin`}),(0,V.jsx)(`p`,{className:`text-xs`,children:o(`weixinAuthStarting`)})]})})}),(0,V.jsxs)(`div`,{className:`space-y-1 text-xs text-gray-500`,children:[(0,V.jsx)(`p`,{children:t||e.note||o(n.scanPrompt)}),(0,V.jsxs)(`p`,{children:[o(`weixinAuthExpiresAt`),`: `,s(e.expiresAt)]})]}),(0,V.jsx)(u,{href:e.qrCodeUrl,external:!0,size:`xs`,children:o(`weixinAuthOpenQr`)})]}):(0,V.jsxs)(`div`,{className:`flex min-h-[280px] flex-col items-center justify-center rounded-2xl bg-gray-50/80 px-6 text-center`,children:[(0,V.jsx)(z,{className:`h-9 w-9 text-gray-300`}),(0,V.jsx)(`p`,{className:`mt-3 text-sm font-medium text-gray-700`,children:o(n.readyTitle)}),(0,V.jsx)(`p`,{className:`mt-1 text-xs leading-5 text-gray-500`,children:o(n.readyDescription)})]})})}function ft({channelConfig:e,channelEnabled:t,channelName:n,disabled:r,formData:i}){let a=d(),s=et(),c=tt(),[l,u]=(0,B.useState)(null),[f,p]=(0,B.useState)(null),[m,h]=(0,B.useState)(!1),_=(0,B.useMemo)(()=>it(e),[e]),v=_[0],y=at(i,e),b=n===`feishu`?ot(i,e):void 0,x=_.length>0,S=x&&!m?null:l,C=lt(n,S?.qrCodeUrl),w=rt[n];(0,B.useEffect)(()=>{if(!S)return;let e=!1,t=null,r=async()=>{try{let i=await c.mutateAsync({channel:n,data:{sessionId:S.sessionId}});if(e)return;if(p(i),i.status===`authorized`){await a.invalidateQueries({queryKey:[`config`]}),await a.invalidateQueries({queryKey:[`config-meta`]}),g.success(i.message||o(`weixinAuthAuthorized`)),u(null);return}if(i.status===`expired`||i.status===`error`){g.error(i.message||o(`weixinAuthRetryRequired`)),u(null);return}t=setTimeout(r,i.nextPollMs??S.intervalMs)}catch(t){e||(g.error(`${o(`error`)}: ${t instanceof Error?t.message:String(t)}`),u(null))}};return t=setTimeout(r,S.intervalMs),()=>{e=!0,t&&clearTimeout(t)}},[n,S,c,a]);let T=async()=>{try{let e=await s.mutateAsync({channel:n,data:{baseUrl:y,domain:b,accountId:typeof i.defaultAccountId==`string`&&i.defaultAccountId.trim()?i.defaultAccountId.trim():void 0}});h(x),u(e),p({channel:n,status:`pending`,message:e.note,nextPollMs:e.intervalMs})}catch(e){g.error(`${o(`error`)}: ${e instanceof Error?e.message:String(e)}`)}},E=S?f?.status===`scanned`?o(`weixinAuthScanned`):o(`weixinAuthWaiting`):o(x?t?`weixinAuthAuthorized`:`weixinAuthConnectedDisabled`:`weixinAuthNotConnected`),D=s.isPending?o(`weixinAuthStarting`):o(S?`weixinAuthWaiting`:x?`weixinAuthReconnect`:w.connect),O=x?o(`weixinAuthAuthorized`):f?.message;return(0,V.jsx)(`section`,{className:`rounded-2xl border border-primary/20 bg-gradient-to-br from-primary-50/70 via-white to-emerald-50/60 p-5`,children:(0,V.jsxs)(`div`,{className:`flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between`,children:[(0,V.jsx)(ut,{activeSession:S,baseUrl:y,channelEnabled:t,copy:w,connectButtonLabel:D,connectedAccountIds:_,disabled:r||s.isPending||!!S,domain:b,handleStartAuth:T,hasConnectedAccount:x,primaryAccountId:v,statusLabel:E}),(0,V.jsx)(dt,{activeSession:S,authMessage:O,copy:w,qrDataUrl:C})]})})}function pt({channelConfig:e,disabled:t,formData:n}){let r=d(),i=nt(),[a,s]=(0,B.useState)(()=>st(n,e)),[c,l]=(0,B.useState)(``),[f,p]=(0,B.useState)(``),m=ct(a),h=!!(c.trim()&&f.trim())&&!t&&!i.isPending,y=async()=>{try{let e=await i.mutateAsync({channel:`feishu`,data:{domain:a,fields:{appId:c.trim(),appSecret:f.trim()}}});await r.invalidateQueries({queryKey:[`config`]}),await r.invalidateQueries({queryKey:[`config-meta`]}),g.success(e.message||o(`feishuExistingAgentConnectSuccess`)),p(``)}catch(e){g.error(`${o(`error`)}: ${e instanceof Error?e.message:String(e)}`)}};return(0,V.jsx)(`section`,{className:`rounded-2xl border border-primary/20 bg-white p-5`,children:(0,V.jsxs)(`div`,{className:`flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between`,children:[(0,V.jsxs)(`div`,{className:`max-w-xl space-y-3`,children:[(0,V.jsxs)(`div`,{className:`inline-flex items-center gap-2 rounded-full bg-gray-100 px-3 py-1 text-xs font-medium text-gray-700`,children:[(0,V.jsx)(R,{className:`h-3.5 w-3.5`}),o(`feishuExistingAgentTitle`)]}),(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`h4`,{className:`text-base font-semibold text-gray-900`,children:o(`feishuExistingAgentDescription`)}),(0,V.jsx)(`p`,{className:`mt-1 text-sm text-gray-600`,children:o(`feishuExistingAgentHint`)})]}),(0,V.jsx)(u,{href:m,external:!0,children:o(a===`lark`?`feishuExistingAgentOpenLarkList`:`feishuExistingAgentOpenFeishuList`)})]}),(0,V.jsxs)(`div`,{className:`w-full max-w-sm space-y-4`,children:[(0,V.jsxs)(`div`,{className:`space-y-2`,children:[(0,V.jsx)(x,{htmlFor:`feishu-existing-platform`,children:o(`feishuPlatform`)}),(0,V.jsxs)(k,{value:a,onValueChange:e=>s(e===`lark`?`lark`:`feishu`),children:[(0,V.jsx)(E,{id:`feishu-existing-platform`,className:`rounded-xl`,children:(0,V.jsx)(T,{})}),(0,V.jsxs)(D,{children:[(0,V.jsx)(O,{value:`feishu`,children:`Feishu`}),(0,V.jsx)(O,{value:`lark`,children:`Lark`})]})]})]}),(0,V.jsxs)(`div`,{className:`space-y-2`,children:[(0,V.jsx)(x,{htmlFor:`feishu-existing-app-id`,children:`App ID`}),(0,V.jsx)(_,{id:`feishu-existing-app-id`,value:c,onChange:e=>l(e.target.value),className:`rounded-xl`})]}),(0,V.jsxs)(`div`,{className:`space-y-2`,children:[(0,V.jsx)(x,{htmlFor:`feishu-existing-app-secret`,children:`App Secret`}),(0,V.jsx)(_,{id:`feishu-existing-app-secret`,type:`password`,value:f,onChange:e=>p(e.target.value),className:`rounded-xl`})]}),(0,V.jsx)(v,{type:`button`,onClick:()=>void y(),disabled:!h,className:`w-full rounded-xl`,children:i.isPending?o(`feishuExistingAgentConnecting`):o(`feishuExistingAgentConnect`)})]})]})})}function mt(e){let[t,n]=(0,B.useState)(`create`);return(0,V.jsxs)(se,{value:t,onValueChange:e=>n(e===`existing`?`existing`:`create`),children:[(0,V.jsxs)(ae,{children:[(0,V.jsx)(M,{value:`create`,children:o(`feishuAuthCreateNew`)}),(0,V.jsx)(M,{value:`existing`,children:o(`feishuAuthConnectExisting`)})]}),(0,V.jsx)(N,{value:`create`,className:`mt-4`,children:(0,V.jsx)(ft,{...e,channelName:`feishu`})}),(0,V.jsx)(N,{value:`existing`,className:`mt-4`,children:(0,V.jsx)(pt,{...e})})]})}var ht=[{value:`pairing`,label:`pairing`},{value:`allowlist`,label:`allowlist`},{value:`open`,label:`open`},{value:`disabled`,label:`disabled`}],J=[{value:`open`,label:`open`},{value:`allowlist`,label:`allowlist`},{value:`disabled`,label:`disabled`}],gt=[{value:`feishu`,label:`feishu`},{value:`lark`,label:`lark`}],_t=[{value:`off`,label:`off`},{value:`partial`,label:`partial`},{value:`block`,label:`block`},{value:`progress`,label:`progress`}];function vt(){return{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`),section:`primary`},{name:`defaultAccountId`,type:`text`,label:o(`defaultAccountId`)},{name:`domain`,type:`select`,label:o(`feishuAuthDomain`),options:gt},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`groupPolicy`,type:`select`,label:o(`groupPolicy`),options:J},{name:`requireMention`,type:`boolean`,label:o(`requireMention`)},{name:`accounts`,type:`json`,label:o(`accountsJson`)}],layout:[{type:`fields`,section:`primary`},{type:`custom`,sectionId:`feishu-auth`},{type:`fields`,section:`advanced`,collapsible:{title:o(`feishuAuthAdvancedTitle`),description:o(`feishuAuthAdvancedDescription`)}}]}}function yt(){return{telegram:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`token`,type:`password`,label:o(`botToken`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`proxy`,type:`text`,label:o(`proxy`)},{name:`accountId`,type:`text`,label:o(`accountId`)},{name:`dmPolicy`,type:`select`,label:o(`dmPolicy`),options:ht},{name:`groupPolicy`,type:`select`,label:o(`groupPolicy`),options:J},{name:`groupAllowFrom`,type:`tags`,label:o(`groupAllowFrom`)},{name:`requireMention`,type:`boolean`,label:o(`requireMention`)},{name:`mentionPatterns`,type:`tags`,label:o(`mentionPatterns`)},{name:`groups`,type:`json`,label:o(`groupRulesJson`)}]},discord:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`token`,type:`password`,label:o(`botToken`)},{name:`allowBots`,type:`boolean`,label:o(`allowBotMessages`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`gatewayUrl`,type:`text`,label:o(`gatewayUrl`)},{name:`intents`,type:`number`,label:o(`intents`)},{name:`proxy`,type:`text`,label:o(`proxy`)},{name:`mediaMaxMb`,type:`number`,label:o(`attachmentMaxSizeMb`)},{name:`streaming`,type:`select`,label:o(`streamingMode`),options:_t},{name:`draftChunk`,type:`json`,label:o(`draftChunkingJson`)},{name:`textChunkLimit`,type:`number`,label:o(`textChunkLimit`)},{name:`accountId`,type:`text`,label:o(`accountId`)},{name:`dmPolicy`,type:`select`,label:o(`dmPolicy`),options:ht},{name:`groupPolicy`,type:`select`,label:o(`groupPolicy`),options:J},{name:`groupAllowFrom`,type:`tags`,label:o(`groupAllowFrom`)},{name:`requireMention`,type:`boolean`,label:o(`requireMention`)},{name:`mentionPatterns`,type:`tags`,label:o(`mentionPatterns`)},{name:`groups`,type:`json`,label:o(`groupRulesJson`)}]},whatsapp:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`bridgeUrl`,type:`text`,label:o(`bridgeUrl`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]},feishu:vt(),dingtalk:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`clientId`,type:`text`,label:o(`clientId`)},{name:`clientSecret`,type:`password`,label:o(`clientSecret`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]},wecom:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`corpId`,type:`text`,label:o(`corpId`)},{name:`agentId`,type:`text`,label:o(`agentId`)},{name:`secret`,type:`password`,label:o(`secret`)},{name:`token`,type:`password`,label:o(`token`)},{name:`callbackPort`,type:`number`,label:o(`callbackPort`)},{name:`callbackPath`,type:`text`,label:o(`callbackPath`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]},weixin:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`),section:`primary`},{name:`defaultAccountId`,type:`text`,label:o(`defaultAccountId`)},{name:`baseUrl`,type:`text`,label:o(`baseUrl`)},{name:`pollTimeoutMs`,type:`number`,label:o(`pollTimeoutMs`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)},{name:`accounts`,type:`json`,label:o(`accountsJson`)}],layout:[{type:`fields`,section:`primary`},{type:`custom`,sectionId:`weixin-auth`},{type:`fields`,section:`advanced`,collapsible:{title:o(`weixinAuthAdvancedTitle`),description:o(`weixinAuthAdvancedDescription`)}}]},slack:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`mode`,type:`text`,label:o(`mode`)},{name:`webhookPath`,type:`text`,label:o(`webhookPath`)},{name:`allowBots`,type:`boolean`,label:o(`allowBotMessages`)},{name:`botToken`,type:`password`,label:o(`botToken`)},{name:`appToken`,type:`password`,label:o(`appToken`)}]},email:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`consentGranted`,type:`boolean`,label:o(`consentGranted`)},{name:`imapHost`,type:`text`,label:o(`imapHost`)},{name:`imapPort`,type:`number`,label:o(`imapPort`)},{name:`imapUsername`,type:`text`,label:o(`imapUsername`)},{name:`imapPassword`,type:`password`,label:o(`imapPassword`)},{name:`fromAddress`,type:`email`,label:o(`fromAddress`)}]},qq:{fields:[{name:`enabled`,type:`boolean`,label:o(`enabled`)},{name:`appId`,type:`text`,label:o(`appId`)},{name:`secret`,type:`password`,label:o(`appSecret`)},{name:`markdownSupport`,type:`boolean`,label:o(`markdownSupport`)},{name:`allowFrom`,type:`tags`,label:o(`allowFrom`)}]}}}function Y(e){let t=c();return e.tutorialUrls?.[t]||e.tutorialUrls?.default||e.tutorialUrl}var bt=[],xt=[{type:`fields`,section:`all`}],X=new Set,Z=new Map,Q=null;function $(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function St(e,t){let n={...e};for(let[e,r]of Object.entries(t))n[e]=$(n[e])&&$(r)?St(n[e],r):r;return n}function Ct(e,t){let n={},r=n,i=e.split(`.`);for(let e=0;e<i.length-1;e+=1)r[i[e]]={},r=r[i[e]];return r[i[i.length-1]]=t,n}function wt(e,t){return t===`all`?e:e.filter(e=>t===`primary`?e.section===`primary`:e.section!==`primary`)}function Tt(e,t){let n={};return t.filter(e=>e.type===`json`).forEach(t=>{n[t.name]=JSON.stringify(e[t.name]??{},null,2)}),n}function Et(){Q||=m.eventBus.on(r.channelConfigApplyStatus,e=>{Z.set(e.channel,e.status===`started`?{status:`applying`}:e.status===`succeeded`?{status:`applied`}:{status:`failed`,message:e.message}),X.forEach(e=>e())})}function Dt(e){return X.add(e),Et(),()=>{X.delete(e),!X.size&&Q&&(Q(),Q=null,Z.clear())}}function Ot(e){return(0,B.useSyncExternalStore)(Dt,()=>e?Z.get(e)??null:null,()=>null)}function kt(e){return e?e.status===`applying`?{className:`text-amber-600`,label:o(`channelConfigApplying`)}:e.status===`applied`?{className:`text-emerald-600`,label:o(`channelConfigApplied`)}:{className:`text-red-600`,label:`${o(`channelConfigApplyFailed`)}${e.message?`: ${e.message}`:``}`}:null}function At({channelApplyStatus:e,channelLabel:t,channelName:n,enabled:r,tutorialUrl:i}){return(0,V.jsx)(ve,{className:`px-5 py-4`,children:(0,V.jsxs)(`div`,{className:`flex flex-wrap items-center justify-between gap-3`,children:[(0,V.jsxs)(`div`,{className:`min-w-0`,children:[(0,V.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,V.jsx)(pe,{name:n,src:j(n),className:a(`h-9 w-9 rounded-lg bg-background/80`,r&&`ring-1 ring-primary/20`),imgClassName:`h-5 w-5 object-contain`,fallback:(0,V.jsx)(`span`,{className:`text-sm font-semibold uppercase text-muted-foreground`,children:n[0]})}),(0,V.jsx)(`h3`,{className:`truncate text-lg font-semibold text-foreground capitalize`,children:t})]}),(0,V.jsx)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:o(`channelsFormDescription`)}),e?(0,V.jsx)(`p`,{className:a(`mt-2 text-xs font-medium`,e.className),children:e.label}):null,i?(0,V.jsx)(u,{href:i,external:!0,icon:te,size:`xs`,className:`mt-2`,children:o(`channelsGuideTitle`)}):null]}),(0,V.jsx)(de,{status:r?`active`:`inactive`,label:o(r?`statusActive`:`statusInactive`)})]})})}function jt({channelConfig:e,channelName:t,disabled:n,enabled:r,fields:i,formData:a,jsonDrafts:o,layoutBlocks:s,setJsonDrafts:c,uiHints:l,updateField:u}){return(0,V.jsx)(V.Fragment,{children:s.map((s,d)=>{if(s.type===`fields`){let e=wt(i,s.section);if(e.length===0)return null;let n=(0,V.jsx)(je,{channelName:t,fields:e,formData:a,jsonDrafts:o,setJsonDrafts:c,updateField:u,uiHints:l});return s.collapsible?(0,V.jsxs)(`details`,{className:`group rounded-xl bg-muted/35`,children:[(0,V.jsxs)(`summary`,{className:`flex cursor-pointer list-none items-center justify-between gap-3 px-4 py-3 text-sm font-medium text-foreground`,children:[(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`p`,{children:s.collapsible.title}),s.collapsible.description?(0,V.jsx)(`p`,{className:`mt-1 text-xs font-normal text-muted-foreground`,children:s.collapsible.description}):null]}),(0,V.jsx)(w,{className:`h-4 w-4 text-muted-foreground transition-transform group-open:rotate-180`})]}),(0,V.jsx)(`div`,{className:`space-y-5 border-t border-border/45 px-4 py-4`,children:n})]},`${s.type}-${s.section}-${d}`):(0,V.jsx)(`div`,{children:n},`${s.type}-${s.section}-${d}`)}return s.sectionId===`feishu-auth`?(0,V.jsx)(mt,{channelConfig:e,formData:a,channelEnabled:r,disabled:n},`${s.type}-${s.sectionId}-${d}`):s.sectionId===`weixin-auth`?(0,V.jsx)(ft,{channelConfig:e,formData:a,channelName:`weixin`,channelEnabled:r,disabled:n},`${s.type}-${s.sectionId}-${d}`):null})})}function Mt({actions:e,channelConfig:t,channelLabel:n,channelName:r,fields:i,layoutBlocks:a,tutorialUrl:s,uiHints:c}){let l=ue(),u=le(),[d,f]=(0,B.useState)(()=>({...t})),[p,m]=(0,B.useState)(()=>Tt(t,i)),[h,_]=(0,B.useState)(null),y=kt(Ot(r)),b=typeof d.enabled==`boolean`?d.enabled:!!t.enabled,x=l.isPending||!!h,S=(e,t)=>f(n=>({...n,[e]:t})),C=e=>{e.preventDefault();let t={...d};for(let e of i){if(e.type===`password`){let n=t[e.name];(typeof n!=`string`||n.length===0)&&delete t[e.name]}if(e.type===`json`)try{t[e.name]=(p[e.name]??``).trim()?JSON.parse(p[e.name]):{}}catch{g.error(`${o(`invalidJson`)}: ${e.name}`);return}}l.mutate({channel:r,data:t})},w=e=>{if(!$(e?.channels)||!$(e.channels[r]))return;let t=e.channels[r];f(e=>St(e,t)),m(e=>{let n={...e},r=!1;for(let e of i)e.type!==`json`||!Object.prototype.hasOwnProperty.call(t,e.name)||(n[e.name]=JSON.stringify(t[e.name]??{},null,2),r=!0);return r?n:e})},T=async e=>{_(e.id);try{let t=`channels.${r}`,n={...d};e.saveBeforeRun&&(n={...n,...e.savePatch??{}},f(n),await l.mutateAsync({channel:r,data:n}));let i=await u.mutateAsync({actionId:e.id,data:{scope:t,draftConfig:Ct(t,n)}});w(i.patch),i.ok?g.success(i.message||o(`success`)):g.error(i.message||o(`error`))}catch(e){g.error(`${o(`error`)}: ${e instanceof Error?e.message:String(e)}`)}finally{_(null)}};return(0,V.jsxs)(xe,{children:[(0,V.jsx)(At,{channelName:r,channelLabel:n,enabled:b,tutorialUrl:s,channelApplyStatus:y}),(0,V.jsxs)(`form`,{onSubmit:C,className:`flex min-h-0 flex-1 flex-col`,children:[(0,V.jsx)(Se,{className:`space-y-5 px-5 py-4`,children:(0,V.jsx)(jt,{channelConfig:t,channelName:r,enabled:b,fields:i,formData:d,jsonDrafts:p,layoutBlocks:a,setJsonDrafts:m,uiHints:c,updateField:S,disabled:x})}),(0,V.jsx)(we,{children:(0,V.jsxs)(ge,{align:`between`,children:[(0,V.jsx)(`div`,{className:`flex flex-wrap items-center gap-2`,children:e.filter(e=>e.trigger===`manual`).map(e=>(0,V.jsx)(v,{type:`button`,size:`sm`,onClick:()=>void T(e),disabled:x,variant:`secondary`,children:h===e.id?o(`connecting`):e.title},e.id))}),(0,V.jsx)(v,{type:`submit`,size:`sm`,disabled:x,children:l.isPending?o(`saving`):o(`save`)})]})})]})]})}function Nt({channelName:e}){let{data:t}=I(),{data:n}=F(),{data:r}=P(),i=e?t?.channels[e]??null:null,a=n?.channels.find(t=>t.name===e),s=(0,B.useMemo)(()=>yt()[e||``],[e]);if(!e||!a||!i)return(0,V.jsx)(Ce,{children:(0,V.jsxs)(`div`,{children:[(0,V.jsx)(`h3`,{className:`text-base font-semibold text-foreground`,children:o(`channelsSelectTitle`)}),(0,V.jsx)(`p`,{className:`mt-2 text-sm text-muted-foreground`,children:o(`channelsSelectDescription`)})]})});let c=s?.fields??bt,l=s?.layout??xt,u=r?.uiHints,d=L(`channels.${e}`,u)?.label??e,f=Y(a),p=JSON.stringify({channelName:e,channelConfig:i,jsonFields:c.filter(e=>e.type===`json`).map(e=>e.name)});return(0,V.jsx)(Mt,{actions:r?.actions?.filter(t=>t.scope===`channels.${e}`)??[],channelConfig:i,channelLabel:d,channelName:e,fields:c,layoutBlocks:l,tutorialUrl:f,uiHints:u},p)}var Pt={telegram:`channelDescTelegram`,slack:`channelDescSlack`,email:`channelDescEmail`,webhook:`channelDescWebhook`,discord:`channelDescDiscord`,feishu:`channelDescFeishu`,weixin:`channelDescWeixin`},Ft=[`weixin`,`feishu`,`discord`,`qq`];function It(e){let t=new Map(Ft.map((e,t)=>[e,t]));return e.map((e,t)=>({channel:e,index:t})).sort((e,n)=>{let r=t.get(e.channel.name)??1/0,i=t.get(n.channel.name)??1/0;return r===i?e.index-n.index:r-i}).map(({channel:e})=>e)}function Lt(){let{isMobile:e}=fe(),{data:t}=I(),{data:n}=F(),{data:r}=P(),[i,s]=(0,B.useState)(`enabled`),[c,u]=(0,B.useState)(null),[d,f]=(0,B.useState)(``),p=(0,B.useMemo)(()=>It(n?.channels??[]),[n?.channels]),m=t?.channels,h=(0,B.useMemo)(()=>{let e=d.trim().toLowerCase();return p.filter(e=>i!==`enabled`||!!m?.[e.name]?.enabled).filter(t=>e?(t.displayName||t.name).toLowerCase().includes(e)||t.name.toLowerCase().includes(e):!0)},[i,m,p,d]),g=c&&h.some(e=>e.name===c)?c:e?null:h[0]?.name??null;return!t||!n?(0,V.jsx)(b,{title:o(`channelsPageTitle`),description:o(`channelsPageDescription`),layout:`split`,children:(0,V.jsx)(`div`,{className:`text-sm text-muted-foreground`,children:o(`channelsLoading`)})}):(0,V.jsx)(b,{title:o(`channelsPageTitle`),description:o(`channelsPageDescription`),layout:`split`,children:(0,V.jsxs)(_e,{className:`md:min-h-0`,compactView:c?`detail`:`list`,onMobileBack:()=>u(null),mobileListLabel:o(`channelsPageTitle`),children:[(0,V.jsxs)(be,{children:[(0,V.jsx)(ve,{className:`px-4 pt-4`,children:(0,V.jsx)(se,{value:i,onValueChange:s,children:(0,V.jsxs)(ae,{className:`mb-0 h-auto gap-3 border-b-0 bg-transparent p-0`,children:[(0,V.jsxs)(M,{value:`enabled`,className:`gap-1.5 px-0 pb-3`,children:[o(`channelsTabEnabled`),(0,V.jsx)(`span`,{className:`text-[11px] font-medium text-gray-500`,children:p.filter(e=>m?.[e.name]?.enabled).length})]}),(0,V.jsxs)(M,{value:`all`,className:`gap-1.5 px-0 pb-3`,children:[o(`channelsTabAll`),(0,V.jsx)(`span`,{className:`text-[11px] font-medium text-gray-500`,children:p.length})]})]})})}),(0,V.jsx)(`div`,{className:`border-b border-border/55 px-4 py-3`,children:(0,V.jsxs)(`div`,{className:`relative`,children:[(0,V.jsx)(ee,{className:`pointer-events-none absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground/70`}),(0,V.jsx)(_,{value:d,onChange:e=>f(e.target.value),placeholder:o(`channelsFilterPlaceholder`),className:`h-10 rounded-xl pl-9`})]})}),(0,V.jsxs)(Se,{className:`space-y-2 p-3`,children:[h.map(e=>{let n=!!t.channels[e.name]?.enabled,i=Y(e),s=L(`channels.${e.name}`,r?.uiHints)?.help||o(Pt[e.name]||`channelDescriptionDefault`);return(0,V.jsx)(Te,{onClick:()=>u(e.name),active:g===e.name,children:(0,V.jsxs)(`div`,{className:`flex items-start justify-between gap-3`,children:[(0,V.jsxs)(`div`,{className:`flex min-w-0 items-center gap-3`,children:[(0,V.jsx)(pe,{name:e.name,src:j(e.name),className:a(`h-10 w-10 rounded-lg bg-background/80`,n&&`ring-1 ring-primary/20`),imgClassName:`h-5 w-5 object-contain`,fallback:(0,V.jsx)(`span`,{className:`text-sm font-semibold uppercase text-muted-foreground`,children:e.name[0]})}),(0,V.jsxs)(`div`,{className:`min-w-0`,children:[(0,V.jsx)(`p`,{className:`truncate text-sm font-semibold text-foreground`,children:e.displayName||e.name}),(0,V.jsx)(`p`,{className:`line-clamp-1 text-[11px] text-muted-foreground`,children:s})]})]}),(0,V.jsxs)(`div`,{className:`flex items-center gap-2`,children:[i?(0,V.jsx)(`a`,{href:i,onClick:e=>e.stopPropagation(),className:`inline-flex h-7 w-7 items-center justify-center rounded-md text-muted-foreground/45 transition-colors hover:bg-muted hover:text-foreground`,title:o(`channelsGuideTitle`),children:(0,V.jsx)(l,{className:`h-3.5 w-3.5`})}):null,(0,V.jsx)(de,{status:n?`active`:`inactive`,label:o(n?`statusActive`:`statusInactive`),className:`min-w-[56px] justify-center`})]})]})},e.name)}),h.length===0?(0,V.jsx)(ye,{icon:he,title:o(`channelsNoMatch`)}):null]})]}),(0,V.jsx)(Nt,{channelName:g??void 0})]})})}export{Lt as ChannelsList};
@@ -1 +1 @@
1
- import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,L as r,a as i}from"./react-8iBFECZE.js";import{n as a}from"./search-Vih1R2BD.js";var o=e(n(),1),s=t(),c=`min-w-0 overflow-hidden bg-card/70 text-card-foreground md:h-[calc(100vh-180px)] md:max-h-[860px]`,l=`min-h-0 overflow-hidden rounded-2xl bg-muted/30 ring-1 ring-border/45`,u=640;function d({className:e,children:t,compactView:n,onMobileBack:c,mobileListLabel:d,...f}){let p=(0,o.useRef)(null),[m,h]=(0,o.useState)(!1),[g,_,...v]=o.Children.toArray(t);(0,o.useEffect)(()=>{let e=p.current;if(!e||!n||typeof ResizeObserver>`u`)return;let t=()=>h(e.clientWidth>0&&e.clientWidth<u),r=new ResizeObserver(t);return r.observe(e),t(),()=>r.disconnect()},[n]);let y=!!(m&&n&&g&&_);return(0,s.jsx)(`div`,{ref:p,className:r(`min-h-0 md:flex-1`,e),...f,children:y?(0,s.jsxs)(`div`,{className:`space-y-3`,children:[n===`detail`?(0,s.jsxs)(s.Fragment,{children:[(0,s.jsxs)(`button`,{type:`button`,onClick:c,className:`inline-flex items-center gap-2 rounded-lg px-2 py-1.5 text-sm font-medium text-muted-foreground transition-colors hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40`,children:[(0,s.jsx)(a,{className:`h-4 w-4`}),(0,s.jsx)(`span`,{children:d??i(`backToMain`)})]}),(0,s.jsx)(`div`,{className:l,children:_})]}):(0,s.jsx)(`div`,{className:l,children:g}),v]}):(0,s.jsx)(`div`,{className:r(l,`grid grid-cols-1 md:grid-cols-[minmax(240px,30%)_minmax(0,1fr)]`),children:t})})}function f({className:e,...t}){return(0,s.jsx)(`section`,{className:r(c,`flex flex-col md:border-r md:border-border/55`,e),...t})}function p({className:e,...t}){return(0,s.jsx)(`section`,{className:r(c,`flex flex-col`,e),...t})}function m({className:e,...t}){return(0,s.jsx)(`section`,{className:r(c,`flex items-center justify-center px-6 py-12 text-center`,e),...t})}function h({className:e,...t}){return(0,s.jsx)(`div`,{className:r(`shrink-0 border-b border-border/70`,e),...t})}function g({className:e,scrollOnDesktop:t=!0,...n}){return(0,s.jsx)(`div`,{className:r(`min-h-0 flex-1`,t&&`overflow-visible md:overflow-y-auto md:overscroll-contain`,e),...n})}function _({className:e,...t}){return(0,s.jsx)(`div`,{className:r(`shrink-0 border-t border-border/70 px-4 py-2.5`,e),...t})}function v({active:e=!1,className:t,type:n=`button`,...i}){return(0,s.jsx)(`button`,{type:n,className:r(`w-full rounded-xl p-2.5 text-left transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40`,e?`bg-background/95 text-foreground shadow-sm`:`bg-transparent text-muted-foreground hover:bg-background/65 hover:text-foreground`,t),...i})}function y({icon:e,title:t,description:n,className:i,...a}){return(0,s.jsxs)(`div`,{className:r(`flex min-h-[220px] flex-col items-center justify-center rounded-xl bg-background/55 px-4 py-10 text-center`,i),...a,children:[(0,s.jsx)(`div`,{className:`mb-3 flex h-10 w-10 items-center justify-center rounded-lg bg-card`,children:(0,s.jsx)(e,{className:`h-5 w-5 text-muted-foreground/45`})}),(0,s.jsx)(`p`,{className:`text-sm font-medium text-foreground`,children:t}),n?(0,s.jsx)(`p`,{className:`mt-2 text-xs text-muted-foreground`,children:n}):null]})}export{d as a,h as c,y as i,f as l,p as n,g as o,m as r,_ as s,v as t};
1
+ import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,L as r,a as i}from"./react-Co6JiC1n.js";import{n as a}from"./search-C47TyRg0.js";var o=e(n(),1),s=t(),c=`min-w-0 overflow-hidden bg-card/70 text-card-foreground md:h-[calc(100vh-180px)] md:max-h-[860px]`,l=`min-h-0 overflow-hidden rounded-2xl bg-muted/30 ring-1 ring-border/45`,u=640;function d({className:e,children:t,compactView:n,onMobileBack:c,mobileListLabel:d,...f}){let p=(0,o.useRef)(null),[m,h]=(0,o.useState)(!1),[g,_,...v]=o.Children.toArray(t);(0,o.useEffect)(()=>{let e=p.current;if(!e||!n||typeof ResizeObserver>`u`)return;let t=()=>h(e.clientWidth>0&&e.clientWidth<u),r=new ResizeObserver(t);return r.observe(e),t(),()=>r.disconnect()},[n]);let y=!!(m&&n&&g&&_);return(0,s.jsx)(`div`,{ref:p,className:r(`min-h-0 md:flex-1`,e),...f,children:y?(0,s.jsxs)(`div`,{className:`space-y-3`,children:[n===`detail`?(0,s.jsxs)(s.Fragment,{children:[(0,s.jsxs)(`button`,{type:`button`,onClick:c,className:`inline-flex items-center gap-2 rounded-lg px-2 py-1.5 text-sm font-medium text-muted-foreground transition-colors hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40`,children:[(0,s.jsx)(a,{className:`h-4 w-4`}),(0,s.jsx)(`span`,{children:d??i(`backToMain`)})]}),(0,s.jsx)(`div`,{className:l,children:_})]}):(0,s.jsx)(`div`,{className:l,children:g}),v]}):(0,s.jsx)(`div`,{className:r(l,`grid grid-cols-1 md:grid-cols-[minmax(240px,30%)_minmax(0,1fr)]`),children:t})})}function f({className:e,...t}){return(0,s.jsx)(`section`,{className:r(c,`flex flex-col md:border-r md:border-border/55`,e),...t})}function p({className:e,...t}){return(0,s.jsx)(`section`,{className:r(c,`flex flex-col`,e),...t})}function m({className:e,...t}){return(0,s.jsx)(`section`,{className:r(c,`flex items-center justify-center px-6 py-12 text-center`,e),...t})}function h({className:e,...t}){return(0,s.jsx)(`div`,{className:r(`shrink-0 border-b border-border/70`,e),...t})}function g({className:e,scrollOnDesktop:t=!0,...n}){return(0,s.jsx)(`div`,{className:r(`min-h-0 flex-1`,t&&`overflow-visible md:overflow-y-auto md:overscroll-contain`,e),...n})}function _({className:e,...t}){return(0,s.jsx)(`div`,{className:r(`shrink-0 border-t border-border/70 px-4 py-2.5`,e),...t})}function v({active:e=!1,className:t,type:n=`button`,...i}){return(0,s.jsx)(`button`,{type:n,className:r(`w-full rounded-xl p-2.5 text-left transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40`,e?`bg-background/95 text-foreground shadow-sm`:`bg-transparent text-muted-foreground hover:bg-background/65 hover:text-foreground`,t),...i})}function y({icon:e,title:t,description:n,className:i,...a}){return(0,s.jsxs)(`div`,{className:r(`flex min-h-[220px] flex-col items-center justify-center rounded-xl bg-background/55 px-4 py-10 text-center`,i),...a,children:[(0,s.jsx)(`div`,{className:`mb-3 flex h-10 w-10 items-center justify-center rounded-lg bg-card`,children:(0,s.jsx)(e,{className:`h-5 w-5 text-muted-foreground/45`})}),(0,s.jsx)(`p`,{className:`text-sm font-medium text-foreground`,children:t}),n?(0,s.jsx)(`p`,{className:`mt-2 text-xs text-muted-foreground`,children:n}):null]})}export{d as a,h as c,y as i,f as l,p as n,g as o,m as r,_ as s,v as t};
@@ -1,5 +1,5 @@
1
- import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,L as r,a as i}from"./react-8iBFECZE.js";import{un as a}from"./api-iMkU_o5P.js";import{_ as o,b as s,c,d as l,f as u,h as d,l as ee,m as te,v as ne,y as f}from"./dist-Cy_e4kNb.js";import{D as re,E as ie,O as ae,T as oe}from"./select-lNdozU4o.js";import{t as p}from"./dist-m08DUswB.js";import{t as m}from"./createLucideIcon-DxlwKLr-.js";import{t as se}from"./x-CWdWBu_U.js";var h=e(n(),1),g=t(),_=`Dialog`,[v,ce]=ne(_),[le,y]=v(_),b=e=>{let{__scopeDialog:t,children:n,open:r,defaultOpen:i,onOpenChange:a,modal:o=!0}=e,s=h.useRef(null),c=h.useRef(null),[l,u]=te({prop:r,defaultProp:i??!1,onChange:a,caller:_});return(0,g.jsx)(le,{scope:t,triggerRef:s,contentRef:c,contentId:d(),titleId:d(),descriptionId:d(),open:l,onOpenChange:u,onOpenToggle:h.useCallback(()=>u(e=>!e),[u]),modal:o,children:n})};b.displayName=_;var x=`DialogTrigger`,S=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(x,n),a=f(t,i.triggerRef);return(0,g.jsx)(l.button,{type:`button`,"aria-haspopup":`dialog`,"aria-expanded":i.open,"aria-controls":i.contentId,"data-state":L(i.open),...r,ref:a,onClick:s(e.onClick,i.onOpenToggle)})});S.displayName=x;var C=`DialogPortal`,[ue,w]=v(C,{forceMount:void 0}),T=e=>{let{__scopeDialog:t,forceMount:n,children:r,container:i}=e,a=y(C,t);return(0,g.jsx)(ue,{scope:t,forceMount:n,children:h.Children.map(r,e=>(0,g.jsx)(p,{present:n||a.open,children:(0,g.jsx)(c,{asChild:!0,container:i,children:e})}))})};T.displayName=C;var E=`DialogOverlay`,D=h.forwardRef((e,t)=>{let n=w(E,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=y(E,e.__scopeDialog);return a.modal?(0,g.jsx)(p,{present:r||a.open,children:(0,g.jsx)(fe,{...i,ref:t})}):null});D.displayName=E;var de=u(`DialogOverlay.RemoveScroll`),fe=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(E,n);return(0,g.jsx)(ie,{as:de,allowPinchZoom:!0,shards:[i.contentRef],children:(0,g.jsx)(l.div,{"data-state":L(i.open),...r,ref:t,style:{pointerEvents:`auto`,...r.style}})})}),O=`DialogContent`,k=h.forwardRef((e,t)=>{let n=w(O,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=y(O,e.__scopeDialog);return(0,g.jsx)(p,{present:r||a.open,children:a.modal?(0,g.jsx)(pe,{...i,ref:t}):(0,g.jsx)(me,{...i,ref:t})})});k.displayName=O;var pe=h.forwardRef((e,t)=>{let n=y(O,e.__scopeDialog),r=h.useRef(null),i=f(t,n.contentRef,r);return h.useEffect(()=>{let e=r.current;if(e)return oe(e)},[]),(0,g.jsx)(A,{...e,ref:i,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:s(e.onCloseAutoFocus,e=>{e.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:s(e.onPointerDownOutside,e=>{let t=e.detail.originalEvent,n=t.button===0&&t.ctrlKey===!0;(t.button===2||n)&&e.preventDefault()}),onFocusOutside:s(e.onFocusOutside,e=>e.preventDefault())})}),me=h.forwardRef((e,t)=>{let n=y(O,e.__scopeDialog),r=h.useRef(!1),i=h.useRef(!1);return(0,g.jsx)(A,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:t=>{e.onCloseAutoFocus?.(t),t.defaultPrevented||(r.current||n.triggerRef.current?.focus(),t.preventDefault()),r.current=!1,i.current=!1},onInteractOutside:t=>{e.onInteractOutside?.(t),t.defaultPrevented||(r.current=!0,t.detail.originalEvent.type===`pointerdown`&&(i.current=!0));let a=t.target;n.triggerRef.current?.contains(a)&&t.preventDefault(),t.detail.originalEvent.type===`focusin`&&i.current&&t.preventDefault()}})}),A=h.forwardRef((e,t)=>{let{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:i,onCloseAutoFocus:a,...o}=e,s=y(O,n),c=h.useRef(null),l=f(t,c);return re(),(0,g.jsxs)(g.Fragment,{children:[(0,g.jsx)(ae,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:i,onUnmountAutoFocus:a,children:(0,g.jsx)(ee,{role:`dialog`,id:s.contentId,"aria-describedby":s.descriptionId,"aria-labelledby":s.titleId,"data-state":L(s.open),...o,ref:l,onDismiss:()=>s.onOpenChange(!1)})}),(0,g.jsxs)(g.Fragment,{children:[(0,g.jsx)(ge,{titleId:s.titleId}),(0,g.jsx)(ve,{contentRef:c,descriptionId:s.descriptionId})]})]})}),j=`DialogTitle`,M=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(j,n);return(0,g.jsx)(l.h2,{id:i.titleId,...r,ref:t})});M.displayName=j;var N=`DialogDescription`,P=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(N,n);return(0,g.jsx)(l.p,{id:i.descriptionId,...r,ref:t})});P.displayName=N;var F=`DialogClose`,I=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(F,n);return(0,g.jsx)(l.button,{type:`button`,...r,ref:t,onClick:s(e.onClick,()=>i.onOpenChange(!1))})});I.displayName=F;function L(e){return e?`open`:`closed`}var R=`DialogTitleWarning`,[he,z]=o(R,{contentName:O,titleName:j,docsSlug:`dialog`}),ge=({titleId:e})=>{let t=z(R),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
1
+ import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,L as r,a as i}from"./react-Co6JiC1n.js";import{fn as a}from"./api-m33O1Kb0.js";import{_ as o,b as s,c,d as l,f as u,h as d,l as ee,m as te,v as ne,y as f}from"./dist-_UMsWSY0.js";import{D as re,E as ie,O as ae,T as oe}from"./select-BzQKfW1e.js";import{t as p}from"./dist-sD6V4nHX.js";import{t as m}from"./createLucideIcon-CHALGA42.js";import{t as se}from"./x-C1r9IXet.js";var h=e(n(),1),g=t(),_=`Dialog`,[v,ce]=ne(_),[le,y]=v(_),b=e=>{let{__scopeDialog:t,children:n,open:r,defaultOpen:i,onOpenChange:a,modal:o=!0}=e,s=h.useRef(null),c=h.useRef(null),[l,u]=te({prop:r,defaultProp:i??!1,onChange:a,caller:_});return(0,g.jsx)(le,{scope:t,triggerRef:s,contentRef:c,contentId:d(),titleId:d(),descriptionId:d(),open:l,onOpenChange:u,onOpenToggle:h.useCallback(()=>u(e=>!e),[u]),modal:o,children:n})};b.displayName=_;var x=`DialogTrigger`,S=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(x,n),a=f(t,i.triggerRef);return(0,g.jsx)(l.button,{type:`button`,"aria-haspopup":`dialog`,"aria-expanded":i.open,"aria-controls":i.contentId,"data-state":L(i.open),...r,ref:a,onClick:s(e.onClick,i.onOpenToggle)})});S.displayName=x;var C=`DialogPortal`,[ue,w]=v(C,{forceMount:void 0}),T=e=>{let{__scopeDialog:t,forceMount:n,children:r,container:i}=e,a=y(C,t);return(0,g.jsx)(ue,{scope:t,forceMount:n,children:h.Children.map(r,e=>(0,g.jsx)(p,{present:n||a.open,children:(0,g.jsx)(c,{asChild:!0,container:i,children:e})}))})};T.displayName=C;var E=`DialogOverlay`,D=h.forwardRef((e,t)=>{let n=w(E,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=y(E,e.__scopeDialog);return a.modal?(0,g.jsx)(p,{present:r||a.open,children:(0,g.jsx)(fe,{...i,ref:t})}):null});D.displayName=E;var de=u(`DialogOverlay.RemoveScroll`),fe=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(E,n);return(0,g.jsx)(ie,{as:de,allowPinchZoom:!0,shards:[i.contentRef],children:(0,g.jsx)(l.div,{"data-state":L(i.open),...r,ref:t,style:{pointerEvents:`auto`,...r.style}})})}),O=`DialogContent`,k=h.forwardRef((e,t)=>{let n=w(O,e.__scopeDialog),{forceMount:r=n.forceMount,...i}=e,a=y(O,e.__scopeDialog);return(0,g.jsx)(p,{present:r||a.open,children:a.modal?(0,g.jsx)(pe,{...i,ref:t}):(0,g.jsx)(me,{...i,ref:t})})});k.displayName=O;var pe=h.forwardRef((e,t)=>{let n=y(O,e.__scopeDialog),r=h.useRef(null),i=f(t,n.contentRef,r);return h.useEffect(()=>{let e=r.current;if(e)return oe(e)},[]),(0,g.jsx)(A,{...e,ref:i,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:s(e.onCloseAutoFocus,e=>{e.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:s(e.onPointerDownOutside,e=>{let t=e.detail.originalEvent,n=t.button===0&&t.ctrlKey===!0;(t.button===2||n)&&e.preventDefault()}),onFocusOutside:s(e.onFocusOutside,e=>e.preventDefault())})}),me=h.forwardRef((e,t)=>{let n=y(O,e.__scopeDialog),r=h.useRef(!1),i=h.useRef(!1);return(0,g.jsx)(A,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:t=>{e.onCloseAutoFocus?.(t),t.defaultPrevented||(r.current||n.triggerRef.current?.focus(),t.preventDefault()),r.current=!1,i.current=!1},onInteractOutside:t=>{e.onInteractOutside?.(t),t.defaultPrevented||(r.current=!0,t.detail.originalEvent.type===`pointerdown`&&(i.current=!0));let a=t.target;n.triggerRef.current?.contains(a)&&t.preventDefault(),t.detail.originalEvent.type===`focusin`&&i.current&&t.preventDefault()}})}),A=h.forwardRef((e,t)=>{let{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:i,onCloseAutoFocus:a,...o}=e,s=y(O,n),c=h.useRef(null),l=f(t,c);return re(),(0,g.jsxs)(g.Fragment,{children:[(0,g.jsx)(ae,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:i,onUnmountAutoFocus:a,children:(0,g.jsx)(ee,{role:`dialog`,id:s.contentId,"aria-describedby":s.descriptionId,"aria-labelledby":s.titleId,"data-state":L(s.open),...o,ref:l,onDismiss:()=>s.onOpenChange(!1)})}),(0,g.jsxs)(g.Fragment,{children:[(0,g.jsx)(ge,{titleId:s.titleId}),(0,g.jsx)(ve,{contentRef:c,descriptionId:s.descriptionId})]})]})}),j=`DialogTitle`,M=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(j,n);return(0,g.jsx)(l.h2,{id:i.titleId,...r,ref:t})});M.displayName=j;var N=`DialogDescription`,P=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(N,n);return(0,g.jsx)(l.p,{id:i.descriptionId,...r,ref:t})});P.displayName=N;var F=`DialogClose`,I=h.forwardRef((e,t)=>{let{__scopeDialog:n,...r}=e,i=y(F,n);return(0,g.jsx)(l.button,{type:`button`,...r,ref:t,onClick:s(e.onClick,()=>i.onOpenChange(!1))})});I.displayName=F;function L(e){return e?`open`:`closed`}var R=`DialogTitleWarning`,[he,z]=o(R,{contentName:O,titleName:j,docsSlug:`dialog`}),ge=({titleId:e})=>{let t=z(R),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
2
2
 
3
3
  If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
4
4
 
5
- For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return h.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},_e=`DialogDescriptionWarning`,ve=({contentRef:e,descriptionId:t})=>{let n=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${z(_e).contentName}}.`;return h.useEffect(()=>{let r=e.current?.getAttribute(`aria-describedby`);t&&r&&(document.getElementById(t)||console.warn(n))},[n,e,t]),null},B=b,ye=S,V=T,H=D,U=k,W=M,G=P,K=I,be=m(`CircleAlert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),xe=m(`Sparkles`,[[`path`,{d:`M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z`,key:`4pj2yx`}],[`path`,{d:`M20 3v4`,key:`1olli1`}],[`path`,{d:`M22 5h-4`,key:`1gvqau`}],[`path`,{d:`M4 17v2`,key:`vumght`}],[`path`,{d:`M5 18H3`,key:`zchphs`}]]),q=B,Se=V,J=h.forwardRef(({className:e,...t},n)=>(0,g.jsx)(H,{ref:n,className:r(`fixed inset-0 z-[var(--z-modal-backdrop,10000)] bg-black/40 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0`,e),...t}));J.displayName=H.displayName;var Y=h.forwardRef(({className:e,children:t,...n},i)=>(0,g.jsxs)(Se,{children:[(0,g.jsx)(J,{}),(0,g.jsxs)(U,{ref:i,className:r(`fixed left-[50%] top-[50%] z-[var(--z-modal,10050)] grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 rounded-2xl border border-border bg-popover p-6 text-popover-foreground shadow-xl duration-base data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%]`,e),...n,children:[t,(0,g.jsxs)(K,{className:`absolute right-4 top-4 rounded-lg p-1 opacity-70 transition-all duration-fast hover:bg-[var(--interaction-hover)] hover:text-accent-foreground hover:opacity-100 focus:outline-none focus-visible:ring-1 focus-visible:ring-border disabled:pointer-events-none`,children:[(0,g.jsx)(se,{className:`h-4 w-4 text-muted-foreground`}),(0,g.jsx)(`span`,{className:`sr-only`,children:`Close`})]})]})]}));Y.displayName=U.displayName;var X=({className:e,...t})=>(0,g.jsx)(`div`,{className:r(`flex flex-col space-y-2 text-center sm:text-left`,e),...t});X.displayName=`DialogHeader`;var Z=({className:e,...t})=>(0,g.jsx)(`div`,{className:r(`flex flex-col-reverse sm:flex-row sm:justify-end sm:gap-3`,e),...t});Z.displayName=`DialogFooter`;var Q=h.forwardRef(({className:e,...t},n)=>(0,g.jsx)(W,{ref:n,className:r(`text-lg font-semibold leading-tight tracking-tight text-foreground`,e),...t}));Q.displayName=W.displayName;var $=h.forwardRef(({className:e,...t},n)=>(0,g.jsx)(G,{ref:n,className:r(`text-sm text-muted-foreground leading-relaxed`,e),...t}));$.displayName=G.displayName;var Ce=({open:e,onOpenChange:t,title:n,description:r,confirmLabel:o=i(`confirm`),cancelLabel:s=i(`cancel`),variant:c=`default`,onConfirm:l,onCancel:u})=>(0,g.jsx)(q,{open:e,onOpenChange:t,children:(0,g.jsxs)(Y,{className:`[&>:last-child]:hidden`,onCloseAutoFocus:e=>e.preventDefault(),children:[(0,g.jsxs)(X,{children:[(0,g.jsx)(Q,{children:n}),r?(0,g.jsx)($,{children:r}):null]}),(0,g.jsxs)(Z,{className:`gap-2 sm:gap-0`,children:[(0,g.jsx)(a,{type:`button`,variant:`outline`,onClick:()=>{u(),t(!1)},children:s}),(0,g.jsx)(a,{type:`button`,variant:c===`destructive`?`destructive`:`default`,onClick:()=>{l(),t(!1)},children:o})]})]})});export{ye as _,Z as a,xe as c,U as d,G as f,W as g,B as h,$ as i,be as l,V as m,q as n,X as o,H as p,Y as r,Q as s,Ce as t,K as u};
5
+ For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return h.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},_e=`DialogDescriptionWarning`,ve=({contentRef:e,descriptionId:t})=>{let n=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${z(_e).contentName}}.`;return h.useEffect(()=>{let r=e.current?.getAttribute(`aria-describedby`);t&&r&&(document.getElementById(t)||console.warn(n))},[n,e,t]),null},B=b,ye=S,V=T,H=D,U=k,W=M,G=P,K=I,be=m(`CircleAlert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),xe=m(`Sparkles`,[[`path`,{d:`M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z`,key:`4pj2yx`}],[`path`,{d:`M20 3v4`,key:`1olli1`}],[`path`,{d:`M22 5h-4`,key:`1gvqau`}],[`path`,{d:`M4 17v2`,key:`vumght`}],[`path`,{d:`M5 18H3`,key:`zchphs`}]]),q=B,Se=V,J=h.forwardRef(({className:e,...t},n)=>(0,g.jsx)(H,{ref:n,"data-theme-overlay":`modal-backdrop`,className:r(`fixed inset-0 z-[var(--z-modal-backdrop,10000)] bg-black/40 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0`,e),...t}));J.displayName=H.displayName;var Y=h.forwardRef(({className:e,children:t,...n},i)=>(0,g.jsxs)(Se,{children:[(0,g.jsx)(J,{}),(0,g.jsxs)(U,{ref:i,"data-theme-overlay":`dialog`,className:r(`fixed left-[50%] top-[50%] z-[var(--z-modal,10050)] grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 rounded-2xl border border-border bg-popover p-6 text-popover-foreground shadow-xl duration-base data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%]`,e),...n,children:[t,(0,g.jsxs)(K,{className:`absolute right-4 top-4 rounded-lg p-1 opacity-70 transition-all duration-fast hover:bg-[var(--interaction-hover)] hover:text-accent-foreground hover:opacity-100 focus:outline-none focus-visible:ring-1 focus-visible:ring-border disabled:pointer-events-none`,children:[(0,g.jsx)(se,{className:`h-4 w-4 text-muted-foreground`}),(0,g.jsx)(`span`,{className:`sr-only`,children:`Close`})]})]})]}));Y.displayName=U.displayName;var X=({className:e,...t})=>(0,g.jsx)(`div`,{className:r(`flex flex-col space-y-2 text-center sm:text-left`,e),...t});X.displayName=`DialogHeader`;var Z=({className:e,...t})=>(0,g.jsx)(`div`,{className:r(`flex flex-col-reverse sm:flex-row sm:justify-end sm:gap-3`,e),...t});Z.displayName=`DialogFooter`;var Q=h.forwardRef(({className:e,...t},n)=>(0,g.jsx)(W,{ref:n,className:r(`text-lg font-semibold leading-tight tracking-tight text-foreground`,e),...t}));Q.displayName=W.displayName;var $=h.forwardRef(({className:e,...t},n)=>(0,g.jsx)(G,{ref:n,className:r(`text-sm text-muted-foreground leading-relaxed`,e),...t}));$.displayName=G.displayName;var Ce=({open:e,onOpenChange:t,title:n,description:r,confirmLabel:o=i(`confirm`),cancelLabel:s=i(`cancel`),variant:c=`default`,onConfirm:l,onCancel:u})=>{let d=h.useRef(null);return(0,g.jsx)(q,{open:e,onOpenChange:t,children:(0,g.jsxs)(Y,{className:`[&>:last-child]:hidden`,onOpenAutoFocus:e=>{e.preventDefault(),d.current?.focus()},onCloseAutoFocus:e=>e.preventDefault(),children:[(0,g.jsxs)(X,{children:[(0,g.jsx)(Q,{children:n}),r?(0,g.jsx)($,{children:r}):null]}),(0,g.jsxs)(Z,{className:`gap-2 sm:gap-0`,children:[(0,g.jsx)(a,{type:`button`,variant:`outline`,onClick:()=>{u(),t(!1)},children:s}),(0,g.jsx)(a,{ref:d,type:`button`,variant:c===`destructive`?`destructive`:`default`,onClick:()=>{l(),t(!1)},children:o})]})]})})};export{ye as _,Z as a,xe as c,U as d,G as f,W as g,B as h,$ as i,be as l,V as m,q as n,X as o,H as p,Y as r,Q as s,Ce as t,K as u};
@@ -1 +1 @@
1
- import{i as e}from"./chunk-DseTPa7n.js";import{H as t}from"./react-8iBFECZE.js";var n=e=>e.replace(/([a-z0-9])([A-Z])/g,`$1-$2`).toLowerCase(),r=(...e)=>e.filter((e,t,n)=>!!e&&e.trim()!==``&&n.indexOf(e)===t).join(` `).trim(),i={xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`},a=e(t()),o=(0,a.forwardRef)(({color:e=`currentColor`,size:t=24,strokeWidth:n=2,absoluteStrokeWidth:o,className:s=``,children:c,iconNode:l,...u},d)=>(0,a.createElement)(`svg`,{ref:d,...i,width:t,height:t,stroke:e,strokeWidth:o?Number(n)*24/Number(t):n,className:r(`lucide`,s),...u},[...l.map(([e,t])=>(0,a.createElement)(e,t)),...Array.isArray(c)?c:[c]])),s=(e,t)=>{let i=(0,a.forwardRef)(({className:i,...s},c)=>(0,a.createElement)(o,{ref:c,iconNode:t,className:r(`lucide-${n(e)}`,i),...s}));return i.displayName=`${e}`,i};export{s as t};
1
+ import{i as e}from"./chunk-DseTPa7n.js";import{H as t}from"./react-Co6JiC1n.js";var n=e=>e.replace(/([a-z0-9])([A-Z])/g,`$1-$2`).toLowerCase(),r=(...e)=>e.filter((e,t,n)=>!!e&&e.trim()!==``&&n.indexOf(e)===t).join(` `).trim(),i={xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`},a=e(t()),o=(0,a.forwardRef)(({color:e=`currentColor`,size:t=24,strokeWidth:n=2,absoluteStrokeWidth:o,className:s=``,children:c,iconNode:l,...u},d)=>(0,a.createElement)(`svg`,{ref:d,...i,width:t,height:t,stroke:e,strokeWidth:o?Number(n)*24/Number(t):n,className:r(`lucide`,s),...u},[...l.map(([e,t])=>(0,a.createElement)(e,t)),...Array.isArray(c)?c:[c]])),s=(e,t)=>{let i=(0,a.forwardRef)(({className:i,...s},c)=>(0,a.createElement)(o,{ref:c,iconNode:t,className:r(`lucide-${n(e)}`,i),...s}));return i.displayName=`${e}`,i};export{s as t};
@@ -0,0 +1 @@
1
+ import{B as e,a as t}from"./react-Co6JiC1n.js";import{an as n,fn as r,in as i,on as a,sn as o}from"./api-m33O1Kb0.js";import{a as s,i as c,o as l,r as u,s as d}from"./index-BjxnLYE3.js";var f=e();function p(){let e=c(),p=u(),h=l(),v=s(),y=d(),b=e.data,x=h.isPending||v.isPending;return(0,f.jsxs)(o,{title:t(`desktopCapabilitiesPageTitle`),description:t(`desktopCapabilitiesPageDescription`),children:[(0,f.jsx)(a,{title:t(`desktopCapabilitiesSystemTitle`),description:t(`desktopCapabilitiesSystemDescription`),children:(0,f.jsxs)(n,{children:[(0,f.jsx)(i,{title:t(`desktopCapabilitiesHostStatus`),description:e.isLoading?t(`loading`):b?.online?t(`desktopCapabilitiesHostOnline`):t(`desktopCapabilitiesHostOffline`),control:(0,f.jsx)(r,{type:`button`,variant:`outline`,size:`sm`,disabled:e.isFetching,onClick:()=>void e.refetch(),children:t(`desktopCapabilitiesRecheck`)})}),(0,f.jsx)(i,{title:t(`desktopCapabilitiesAccessibility`),description:g(b?.permissions.accessibility),control:(0,f.jsxs)(`div`,{className:`flex flex-wrap justify-end gap-2`,children:[(0,f.jsx)(r,{type:`button`,variant:`outline`,size:`sm`,disabled:x,onClick:()=>v.mutate(),children:t(`desktopCapabilitiesOpenSettings`)}),(0,f.jsx)(r,{type:`button`,size:`sm`,disabled:x,onClick:()=>h.mutate(),children:t(`desktopCapabilitiesRequestPermission`)})]})})]})}),(0,f.jsx)(a,{title:t(`desktopCapabilitiesGrantsTitle`),description:t(`desktopCapabilitiesGrantsDescription`),children:(0,f.jsx)(n,{children:p.isLoading?(0,f.jsx)(i,{title:t(`loading`)}):p.data?.length?p.data.map(e=>(0,f.jsx)(m,{grant:e,disabled:y.isPending,onRevoke:()=>y.mutate(e)},_(e))):(0,f.jsx)(i,{title:t(`desktopCapabilitiesNoGrants`),description:t(`desktopCapabilitiesNoGrantsDescription`)})})})]})}function m({disabled:e,grant:n,onRevoke:a}){let o=h(n.resource.target);return(0,f.jsx)(i,{title:n.subject.type===`agent`?`${t(`desktopCapabilitiesAgent`)} · ${n.subject.id}`:`${t(`desktopCapabilitiesExtension`)} · ${n.subject.id}`,description:`${o} · ${n.access.join(`, `)}`,control:(0,f.jsx)(r,{type:`button`,variant:`destructive`,size:`sm`,disabled:e,onClick:a,children:t(`desktopCapabilitiesRevoke`)})})}function h(e){if(!e||typeof e!=`object`||Array.isArray(e))return t(`desktopCapabilitiesUnknownApplication`);let{applicationId:n}=e;return typeof n==`string`&&n.trim()?n.trim():t(`desktopCapabilitiesUnknownApplication`)}function g(e){switch(e){case`granted`:return t(`desktopCapabilitiesPermissionGranted`);case`not_granted`:return t(`desktopCapabilitiesPermissionNotGranted`);case`not_supported`:return t(`desktopCapabilitiesPermissionNotSupported`);default:return t(`desktopCapabilitiesPermissionUnknown`)}}function _(e){return`${e.subject.type}:${e.subject.id}:${JSON.stringify(e.resource.target)}:${e.access.join(`,`)}`}export{p as DesktopCapabilitiesPage};
@@ -0,0 +1 @@
1
+ import{B as e,L as t,a as n,r,s as i}from"./react-Co6JiC1n.js";import{t as a}from"./navigation-link-CAUiM3zS.js";import{Gt as o,Jt as s,Kt as c,Wt as l,Yt as u,an as d,fn as f,in as p,on as m,sn as h,yn as g}from"./api-m33O1Kb0.js";import{a as _,i as v,n as y,r as b,t as x}from"./select-BzQKfW1e.js";import{t as S}from"./refresh-cw-BG_LX3SS.js";import{t as C}from"./rotate-cw-Cz7I_m7O.js";import{$ as w,Q as T,et as E,nt as D,tt as O}from"./index-BjxnLYE3.js";var k=e(),A={checking:`desktopUpdatesStatusChecking`,"update-available":`desktopUpdatesStatusAvailable`,downloading:`desktopUpdatesStatusDownloading`,downloaded:`desktopUpdatesStatusDownloaded`,applying:`desktopUpdatesStatusApplying`,"restart-required":`desktopUpdatesStatusRestartRequired`,"up-to-date":`desktopUpdatesStatusUpToDate`,blocked:`desktopUpdatesStatusBlocked`,failed:`desktopUpdatesStatusFailed`},j={feature:`desktopUpdatesReleaseNotesFeature`,enhancement:`desktopUpdatesReleaseNotesEnhancement`,fix:`desktopUpdatesReleaseNotesFix`,compatibility:`desktopUpdatesReleaseNotesCompatibility`};function M({snapshot:e}){return(0,k.jsx)(`span`,{className:t(`inline-flex rounded-full px-3 py-1 text-xs font-medium ring-1`,V(e.status)),children:B(e)})}function N({label:e,value:t}){return(0,k.jsxs)(`div`,{className:`rounded-lg bg-background/70 p-3`,children:[(0,k.jsx)(`p`,{className:`text-[11px] font-medium uppercase tracking-[0.08em] text-muted-foreground`,children:e}),(0,k.jsx)(`p`,{className:`mt-1 text-sm font-semibold text-foreground`,children:t})]})}function P({snapshot:e}){if(e.status!==`downloading`)return null;let t=e.progress?.percent,r=t==null?n(`desktopUpdatesDownloadProgressUnknown`):n(`desktopUpdatesDownloadProgressPercent`).replace(`{percent}`,String(t)),i=L(e.progress?.downloadedBytes??0,e.progress?.totalBytes??null);return(0,k.jsxs)(`div`,{className:`rounded-2xl border border-amber-200 bg-amber-50/70 p-4`,children:[(0,k.jsxs)(`div`,{className:`flex items-center justify-between gap-4`,children:[(0,k.jsx)(`p`,{className:`text-sm font-semibold text-amber-800`,children:r}),(0,k.jsx)(`p`,{className:`text-xs font-medium text-amber-700`,children:i})]}),(0,k.jsx)(`div`,{className:`mt-3 h-2 overflow-hidden rounded-full bg-amber-100`,children:(0,k.jsx)(`div`,{className:`h-full rounded-full bg-amber-500 transition-[width]`,style:{width:`${t??0}%`}})})]})}function F(e){return e?.trim()||`-`}function I(e){return e?r(e):`-`}function L(e,t){let n=R(e);return t&&t>0?`${n} / ${R(t)}`:n}function R(e){if(!Number.isFinite(e)||e<=0)return`0 B`;let t=[`B`,`KB`,`MB`,`GB`],n=e,r=0;for(;n>=1024&&r<t.length-1;)n/=1024,r+=1;return`${n>=10||r===0?n.toFixed(0):n.toFixed(1)} ${t[r]}`}function z(e){return n(e===`beta`?`desktopUpdatesChannelBeta`:`desktopUpdatesChannelStable`)}function B(e){return e.status===`failed`&&e.failureStage?n(`desktopUpdatesFailureStage.${e.failureStage}`):n(A[e.status]??`desktopUpdatesStatusIdle`)}function V(e){return e===`downloaded`||e===`restart-required`?`bg-emerald-50 text-emerald-700 ring-emerald-100`:e===`update-available`||e===`downloading`||e===`checking`?`bg-amber-50 text-amber-700 ring-amber-100`:e===`failed`||e===`blocked`?`bg-red-50 text-red-700 ring-red-100`:`bg-gray-100 text-gray-700 ring-gray-200`}function H(){return i()===`zh`?`zh-CN`:`en-US`}function U(e,t){return o(e.title,t)??n(j[e.kind]??`desktopUpdatesReleaseNotesEnhancement`)}function W({snapshot:e}){let t=c(e),r=H(),i=g({queryKey:[`runtime-release-notes`,t],queryFn:async()=>await l(t??``),enabled:!!t,retry:!1,staleTime:300*1e3}),s=i.data,u=o(s?.title,r)??n(`desktopUpdatesReleaseNotesPreviewTitle`),d=o(s?.summary,r)??n(`desktopUpdatesReleaseNotesPreviewDescription`);return e.releaseNotesUrl?(0,k.jsxs)(T,{children:[(0,k.jsx)(O,{children:(0,k.jsxs)(`div`,{className:`flex flex-wrap items-start justify-between gap-3`,children:[(0,k.jsxs)(`div`,{className:`space-y-1`,children:[(0,k.jsx)(D,{children:u}),(0,k.jsx)(E,{children:d})]}),(0,k.jsx)(a,{href:e.releaseNotesUrl,external:!0,children:n(`desktopUpdatesReleaseNotes`)})]})}),(0,k.jsxs)(w,{className:`space-y-4`,children:[i.isLoading?(0,k.jsx)(`p`,{className:`text-sm text-gray-500`,children:n(`desktopUpdatesReleaseNotesPreviewLoading`)}):null,!t||i.isError?(0,k.jsx)(`p`,{className:`text-sm text-gray-500`,children:n(`desktopUpdatesReleaseNotesPreviewUnavailable`)}):null,s?(0,k.jsx)(`div`,{className:`grid gap-4 md:grid-cols-2`,children:s.sections.map(e=>(0,k.jsxs)(`div`,{className:`rounded-xl border border-gray-200 bg-gray-50/60 p-4`,children:[(0,k.jsx)(`p`,{className:`text-sm font-semibold text-gray-900`,children:U(e,r)}),(0,k.jsx)(`ul`,{className:`mt-3 space-y-3`,children:e.items.map((t,n)=>{let i=o(t.title,r),a=o(t.body,r);return(0,k.jsxs)(`li`,{className:`space-y-1`,children:[i?(0,k.jsx)(`p`,{className:`text-sm font-medium text-gray-800`,children:i}):null,a?(0,k.jsx)(`p`,{className:`text-sm leading-5 text-gray-600`,children:a}):null]},`${i??e.kind}-${n}`)})})]},e.kind))}):null]})]}):null}function G(){return(0,k.jsx)(h,{title:n(`runtimeUpdatesPageTitle`),description:n(`runtimeUpdatesPageDescription`),children:(0,k.jsx)(m,{title:n(`runtimeUpdatesUnavailableTitle`),description:n(`runtimeUpdatesUnavailableDescription`),children:(0,k.jsx)(d,{children:(0,k.jsx)(`p`,{className:`p-4 text-sm text-muted-foreground`,children:n(`runtimeUpdatesUnavailableHint`)})})})})}function K(){let{supported:e,initialized:r,busyAction:i,snapshot:a}=u();if(!r)return(0,k.jsx)(h,{title:n(`runtimeUpdatesPageTitle`),description:n(`runtimeUpdatesPageDescription`),children:(0,k.jsx)(`div`,{className:`text-sm text-muted-foreground`,children:n(`loading`)})});if(!e||!a)return(0,k.jsx)(G,{});let o=i===`checking`,c=i===`downloading`,l=i===`applying`,g=i===`updating`,w=i===`switching-channel`,T=(a.status===`update-available`||a.status===`downloaded`)&&!c&&!l&&!g,E=[[n(`runtimeUpdatesHostVersion`),F(a.hostVersion)],[n(`desktopUpdatesCurrentBundleVersion`),F(a.currentVersion)],[n(`desktopUpdatesAvailableVersion`),F(a.availableVersion)],[n(`desktopUpdatesLastCheckedAt`),I(a.lastCheckedAt)],[n(`desktopUpdatesCurrentChannel`),z(a.channel)]];return(0,k.jsxs)(h,{title:n(`runtimeUpdatesPageTitle`),description:n(`runtimeUpdatesPageDescription`),actions:(0,k.jsxs)(f,{variant:`outline`,onClick:()=>void s.checkForUpdates(),disabled:o||c||l||g,children:[(0,k.jsx)(S,{className:t(`mr-2 h-4 w-4`,o&&`animate-spin`)}),n(`desktopUpdatesCheckNow`)]}),children:[(0,k.jsx)(m,{title:n(`desktopUpdatesOverviewTitle`),description:n(`desktopUpdatesOverviewDescription`),children:(0,k.jsx)(d,{children:(0,k.jsxs)(`div`,{className:`space-y-4 p-4`,children:[(0,k.jsxs)(`div`,{className:`flex flex-wrap items-center gap-3`,children:[(0,k.jsx)(`span`,{className:`text-sm font-medium text-foreground`,children:n(`desktopUpdatesStatusLabel`)}),(0,k.jsx)(M,{snapshot:a})]}),(0,k.jsx)(`div`,{className:`grid gap-4 md:grid-cols-2 xl:grid-cols-5`,children:E.map(([e,t])=>(0,k.jsx)(N,{label:e,value:t},e))}),a.channel===`beta`?(0,k.jsxs)(`div`,{className:`rounded-2xl border border-amber-200 bg-amber-50/70 p-4`,children:[(0,k.jsx)(`p`,{className:`text-sm font-semibold text-amber-800`,children:n(`desktopUpdatesBetaBadgeTitle`)}),(0,k.jsx)(`p`,{className:`mt-1 text-sm text-amber-700`,children:n(`desktopUpdatesBetaBadgeDescription`)})]}):null,a.downloadedVersion?(0,k.jsxs)(`div`,{className:`rounded-2xl border border-emerald-200 bg-emerald-50/70 p-4`,children:[(0,k.jsx)(`p`,{className:`text-sm font-semibold text-emerald-800`,children:n(`desktopUpdatesDownloadedBannerTitle`)}),(0,k.jsx)(`p`,{className:`mt-1 text-sm text-emerald-700`,children:n(`runtimeUpdatesDownloadedBannerDescription`).replace(`{version}`,a.downloadedVersion)})]}):null,(0,k.jsx)(P,{snapshot:a}),a.status===`blocked`?(0,k.jsxs)(`div`,{className:`rounded-2xl border border-red-200 bg-red-50/70 p-4`,children:[(0,k.jsx)(`p`,{className:`text-sm font-semibold text-red-800`,children:n(`desktopUpdatesBlockedTitle`)}),(0,k.jsx)(`p`,{className:`mt-1 text-sm text-red-700`,children:a.errorMessage??n(`desktopUpdatesBlockedDescription`)}),a.recoveryCommand?(0,k.jsx)(`code`,{className:`mt-3 block rounded-lg bg-white/70 px-3 py-2 text-xs text-red-800`,children:a.recoveryCommand}):null]}):null,a.errorMessage&&a.status!==`blocked`?(0,k.jsx)(`div`,{className:`rounded-2xl border border-red-200 bg-red-50/70 p-4 text-sm text-red-700`,children:a.errorMessage}):null]})})}),(0,k.jsx)(W,{snapshot:a}),(0,k.jsx)(m,{title:n(`desktopUpdatesChannelSettingsTitle`),description:n(`desktopUpdatesChannelSettingsDescription`),children:(0,k.jsx)(d,{children:(0,k.jsx)(p,{title:n(`desktopUpdatesReleaseChannel`),description:n(`desktopUpdatesReleaseChannelHelp`),layout:`stacked`,children:(0,k.jsxs)(`div`,{className:`space-y-2`,children:[(0,k.jsxs)(x,{value:a.channel,disabled:w||o||c||l||g,onValueChange:e=>void s.updateChannel(e),children:[(0,k.jsx)(v,{className:`w-full max-w-sm`,children:(0,k.jsx)(_,{placeholder:n(`desktopUpdatesReleaseChannel`)})}),(0,k.jsxs)(y,{children:[(0,k.jsx)(b,{value:`stable`,children:n(`desktopUpdatesChannelStable`)}),(0,k.jsx)(b,{value:`beta`,children:n(`desktopUpdatesChannelBeta`)})]})]}),(0,k.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:n(`desktopUpdatesReleaseChannelDowngradeHint`)})]})})})}),(0,k.jsx)(m,{title:n(`desktopUpdatesActionsTitle`),description:n(`runtimeUpdatesActionsDescription`),children:(0,k.jsx)(d,{children:(0,k.jsxs)(`div`,{className:`flex flex-wrap items-center gap-3 p-4`,children:[(0,k.jsxs)(f,{variant:`outline`,onClick:()=>void s.checkForUpdates(),disabled:o||c||l||g,children:[(0,k.jsx)(S,{className:t(`mr-2 h-4 w-4`,o&&`animate-spin`)}),n(`desktopUpdatesCheckNow`)]}),(0,k.jsxs)(f,{onClick:()=>void s.updateNow(),disabled:!T,children:[(0,k.jsx)(C,{className:t(`mr-2 h-4 w-4`,g&&`animate-spin`)}),n(`runtimeUpdatesApplyNow`)]})]})})})]})}export{K as DesktopUpdateConfig};
@@ -1 +1 @@
1
- import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,V as r}from"./react-8iBFECZE.js";typeof window<`u`&&window.document&&window.document.createElement;function i(e,t,{checkForDefaultPrevented:n=!0}={}){return function(r){if(e?.(r),n===!1||!r.defaultPrevented)return t?.(r)}}var a=e(n(),1);function o(e,t){if(typeof e==`function`)return e(t);e!=null&&(e.current=t)}function s(...e){return t=>{let n=!1,r=e.map(e=>{let r=o(e,t);return!n&&typeof r==`function`&&(n=!0),r});if(n)return()=>{for(let t=0;t<r.length;t++){let n=r[t];typeof n==`function`?n():o(e[t],null)}}}}function c(...e){return a.useCallback(s(...e),e)}var l=t();function u(e,t){let n=a.createContext(t),r=e=>{let{children:t,...r}=e,i=a.useMemo(()=>r,Object.values(r));return(0,l.jsx)(n.Provider,{value:i,children:t})};r.displayName=e+`Provider`;function i(r){let i=a.useContext(n);if(i)return i;if(t!==void 0)return t;throw Error(`\`${r}\` must be used within \`${e}\``)}return[r,i]}function d(e,t=[]){let n=[];function r(t,r){let i=a.createContext(r),o=n.length;n=[...n,r];let s=t=>{let{scope:n,children:r,...s}=t,c=n?.[e]?.[o]||i,u=a.useMemo(()=>s,Object.values(s));return(0,l.jsx)(c.Provider,{value:u,children:r})};s.displayName=t+`Provider`;function c(n,s){let c=s?.[e]?.[o]||i,l=a.useContext(c);if(l)return l;if(r!==void 0)return r;throw Error(`\`${n}\` must be used within \`${t}\``)}return[s,c]}let i=()=>{let t=n.map(e=>a.createContext(e));return function(n){let r=n?.[e]||t;return a.useMemo(()=>({[`__scope${e}`]:{...n,[e]:r}}),[n,r])}};return i.scopeName=e,[r,f(i,...t)]}function f(...e){let t=e[0];if(e.length===1)return t;let n=()=>{let n=e.map(e=>({useScope:e(),scopeName:e.scopeName}));return function(e){let r=n.reduce((t,{useScope:n,scopeName:r})=>{let i=n(e)[`__scope${r}`];return{...t,...i}},{});return a.useMemo(()=>({[`__scope${t.scopeName}`]:r}),[r])}};return n.scopeName=t.scopeName,n}var p=globalThis?.document?a.useLayoutEffect:()=>{},m=a.useId||(()=>void 0),h=0;function g(e){let[t,n]=a.useState(m());return p(()=>{e||n(e=>e??String(h++))},[e]),e||(t?`radix-${t}`:``)}var _=a.useInsertionEffect||p;function v({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){let[i,o,s]=y({defaultProp:t,onChange:n}),c=e!==void 0,l=c?e:i;{let t=a.useRef(e!==void 0);a.useEffect(()=>{let e=t.current;e!==c&&console.warn(`${r} is changing from ${e?`controlled`:`uncontrolled`} to ${c?`controlled`:`uncontrolled`}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),t.current=c},[c,r])}return[l,a.useCallback(t=>{if(c){let n=b(t)?t(e):t;n!==e&&s.current?.(n)}else o(t)},[c,e,o,s])]}function y({defaultProp:e,onChange:t}){let[n,r]=a.useState(e),i=a.useRef(n),o=a.useRef(t);return _(()=>{o.current=t},[t]),a.useEffect(()=>{i.current!==n&&(o.current?.(n),i.current=n)},[n,i]),[n,r,o]}function b(e){return typeof e==`function`}function x(e){let t=S(e),n=a.forwardRef((e,n)=>{let{children:r,...i}=e,o=a.Children.toArray(r),s=o.find(T);if(s){let e=s.props.children,r=o.map(t=>t===s?a.Children.count(e)>1?a.Children.only(null):a.isValidElement(e)?e.props.children:null:t);return(0,l.jsx)(t,{...i,ref:n,children:a.isValidElement(e)?a.cloneElement(e,void 0,r):null})}return(0,l.jsx)(t,{...i,ref:n,children:r})});return n.displayName=`${e}.Slot`,n}function S(e){let t=a.forwardRef((e,t)=>{let{children:n,...r}=e;if(a.isValidElement(n)){let e=D(n),i=E(r,n.props);return n.type!==a.Fragment&&(i.ref=t?s(t,e):e),a.cloneElement(n,i)}return a.Children.count(n)>1?a.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var C=Symbol(`radix.slottable`);function w(e){let t=({children:e})=>(0,l.jsx)(l.Fragment,{children:e});return t.displayName=`${e}.Slottable`,t.__radixId=C,t}function T(e){return a.isValidElement(e)&&typeof e.type==`function`&&`__radixId`in e.type&&e.type.__radixId===C}function E(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{let t=a(...e);return i(...e),t}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}function D(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var O=e(r(),1),k=[`a`,`button`,`div`,`form`,`h2`,`h3`,`img`,`input`,`label`,`li`,`nav`,`ol`,`p`,`select`,`span`,`svg`,`ul`].reduce((e,t)=>{let n=x(`Primitive.${t}`),r=a.forwardRef((e,r)=>{let{asChild:i,...a}=e,o=i?n:t;return typeof window<`u`&&(window[Symbol.for(`radix-ui`)]=!0),(0,l.jsx)(o,{...a,ref:r})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function A(e,t){e&&O.flushSync(()=>e.dispatchEvent(t))}function j(e){let t=a.useRef(e);return a.useEffect(()=>{t.current=e}),a.useMemo(()=>(...e)=>t.current?.(...e),[])}function M(e,t=globalThis?.document){let n=j(e);a.useEffect(()=>{let e=e=>{e.key===`Escape`&&n(e)};return t.addEventListener(`keydown`,e,{capture:!0}),()=>t.removeEventListener(`keydown`,e,{capture:!0})},[n,t])}var N=`DismissableLayer`,P=`dismissableLayer.update`,F=`dismissableLayer.pointerDownOutside`,ee=`dismissableLayer.focusOutside`,te,ne=a.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),I=a.forwardRef((e,t)=>{let{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:s,onInteractOutside:u,onDismiss:d,...f}=e,p=a.useContext(ne),[m,h]=a.useState(null),g=m?.ownerDocument??globalThis?.document,[,_]=a.useState({}),v=c(t,e=>h(e)),y=Array.from(p.layers),[b]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),x=y.indexOf(b),S=m?y.indexOf(m):-1,C=p.layersWithOutsidePointerEventsDisabled.size>0,w=S>=x,T=ie(e=>{let t=e.target,n=[...p.branches].some(e=>e.contains(t));!w||n||(o?.(e),u?.(e),e.defaultPrevented||d?.())},g),E=ae(e=>{let t=e.target;[...p.branches].some(e=>e.contains(t))||(s?.(e),u?.(e),e.defaultPrevented||d?.())},g);return M(e=>{S===p.layers.size-1&&(r?.(e),!e.defaultPrevented&&d&&(e.preventDefault(),d()))},g),a.useEffect(()=>{if(m)return n&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(te=g.body.style.pointerEvents,g.body.style.pointerEvents=`none`),p.layersWithOutsidePointerEventsDisabled.add(m)),p.layers.add(m),oe(),()=>{n&&p.layersWithOutsidePointerEventsDisabled.size===1&&(g.body.style.pointerEvents=te)}},[m,g,n,p]),a.useEffect(()=>()=>{m&&(p.layers.delete(m),p.layersWithOutsidePointerEventsDisabled.delete(m),oe())},[m,p]),a.useEffect(()=>{let e=()=>_({});return document.addEventListener(P,e),()=>document.removeEventListener(P,e)},[]),(0,l.jsx)(k.div,{...f,ref:v,style:{pointerEvents:C?w?`auto`:`none`:void 0,...e.style},onFocusCapture:i(e.onFocusCapture,E.onFocusCapture),onBlurCapture:i(e.onBlurCapture,E.onBlurCapture),onPointerDownCapture:i(e.onPointerDownCapture,T.onPointerDownCapture)})});I.displayName=N;var L=`DismissableLayerBranch`,re=a.forwardRef((e,t)=>{let n=a.useContext(ne),r=a.useRef(null),i=c(t,r);return a.useEffect(()=>{let e=r.current;if(e)return n.branches.add(e),()=>{n.branches.delete(e)}},[n.branches]),(0,l.jsx)(k.div,{...e,ref:i})});re.displayName=L;function ie(e,t=globalThis?.document){let n=j(e),r=a.useRef(!1),i=a.useRef(()=>{});return a.useEffect(()=>{let e=e=>{if(e.target&&!r.current){let r=function(){se(F,n,a,{discrete:!0})},a={originalEvent:e};e.pointerType===`touch`?(t.removeEventListener(`click`,i.current),i.current=r,t.addEventListener(`click`,i.current,{once:!0})):r()}else t.removeEventListener(`click`,i.current);r.current=!1},a=window.setTimeout(()=>{t.addEventListener(`pointerdown`,e)},0);return()=>{window.clearTimeout(a),t.removeEventListener(`pointerdown`,e),t.removeEventListener(`click`,i.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function ae(e,t=globalThis?.document){let n=j(e),r=a.useRef(!1);return a.useEffect(()=>{let e=e=>{e.target&&!r.current&&se(ee,n,{originalEvent:e},{discrete:!1})};return t.addEventListener(`focusin`,e),()=>t.removeEventListener(`focusin`,e)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function oe(){let e=new CustomEvent(P);document.dispatchEvent(e)}function se(e,t,n,{discrete:r}){let i=n.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?A(i,a):i.dispatchEvent(a)}var ce=`Portal`,le=a.forwardRef((e,t)=>{let{container:n,...r}=e,[i,o]=a.useState(!1);p(()=>o(!0),[]);let s=n||i&&globalThis?.document?.body;return s?O.createPortal((0,l.jsx)(k.div,{...r,ref:t}),s):null});le.displayName=ce;var ue=[`top`,`right`,`bottom`,`left`],R=Math.min,z=Math.max,de=Math.round,fe=Math.floor,B=e=>({x:e,y:e}),pe={left:`right`,right:`left`,bottom:`top`,top:`bottom`},me={start:`end`,end:`start`};function he(e,t,n){return z(e,R(t,n))}function V(e,t){return typeof e==`function`?e(t):e}function H(e){return e.split(`-`)[0]}function U(e){return e.split(`-`)[1]}function ge(e){return e===`x`?`y`:`x`}function _e(e){return e===`y`?`height`:`width`}var ve=new Set([`top`,`bottom`]);function W(e){return ve.has(H(e))?`y`:`x`}function ye(e){return ge(W(e))}function be(e,t,n){n===void 0&&(n=!1);let r=U(e),i=ye(e),a=_e(i),o=i===`x`?r===(n?`end`:`start`)?`right`:`left`:r===`start`?`bottom`:`top`;return t.reference[a]>t.floating[a]&&(o=ke(o)),[o,ke(o)]}function xe(e){let t=ke(e);return[Se(e),t,Se(t)]}function Se(e){return e.replace(/start|end/g,e=>me[e])}var Ce=[`left`,`right`],we=[`right`,`left`],Te=[`top`,`bottom`],Ee=[`bottom`,`top`];function De(e,t,n){switch(e){case`top`:case`bottom`:return n?t?we:Ce:t?Ce:we;case`left`:case`right`:return t?Te:Ee;default:return[]}}function Oe(e,t,n,r){let i=U(e),a=De(H(e),n===`start`,r);return i&&(a=a.map(e=>e+`-`+i),t&&(a=a.concat(a.map(Se)))),a}function ke(e){return e.replace(/left|right|bottom|top/g,e=>pe[e])}function Ae(e){return{top:0,right:0,bottom:0,left:0,...e}}function je(e){return typeof e==`number`?{top:e,right:e,bottom:e,left:e}:Ae(e)}function Me(e){let{x:t,y:n,width:r,height:i}=e;return{width:r,height:i,top:n,left:t,right:t+r,bottom:n+i,x:t,y:n}}function Ne(e,t,n){let{reference:r,floating:i}=e,a=W(t),o=ye(t),s=_e(o),c=H(t),l=a===`y`,u=r.x+r.width/2-i.width/2,d=r.y+r.height/2-i.height/2,f=r[s]/2-i[s]/2,p;switch(c){case`top`:p={x:u,y:r.y-i.height};break;case`bottom`:p={x:u,y:r.y+r.height};break;case`right`:p={x:r.x+r.width,y:d};break;case`left`:p={x:r.x-i.width,y:d};break;default:p={x:r.x,y:r.y}}switch(U(t)){case`start`:p[o]-=f*(n&&l?-1:1);break;case`end`:p[o]+=f*(n&&l?-1:1);break}return p}async function Pe(e,t){t===void 0&&(t={});let{x:n,y:r,platform:i,rects:a,elements:o,strategy:s}=e,{boundary:c=`clippingAncestors`,rootBoundary:l=`viewport`,elementContext:u=`floating`,altBoundary:d=!1,padding:f=0}=V(t,e),p=je(f),m=o[d?u===`floating`?`reference`:`floating`:u],h=Me(await i.getClippingRect({element:await(i.isElement==null?void 0:i.isElement(m))??!0?m:m.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(o.floating)),boundary:c,rootBoundary:l,strategy:s})),g=u===`floating`?{x:n,y:r,width:a.floating.width,height:a.floating.height}:a.reference,_=await(i.getOffsetParent==null?void 0:i.getOffsetParent(o.floating)),v=await(i.isElement==null?void 0:i.isElement(_))&&await(i.getScale==null?void 0:i.getScale(_))||{x:1,y:1},y=Me(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:o,rect:g,offsetParent:_,strategy:s}):g);return{top:(h.top-y.top+p.top)/v.y,bottom:(y.bottom-h.bottom+p.bottom)/v.y,left:(h.left-y.left+p.left)/v.x,right:(y.right-h.right+p.right)/v.x}}var Fe=async(e,t,n)=>{let{placement:r=`bottom`,strategy:i=`absolute`,middleware:a=[],platform:o}=n,s=a.filter(Boolean),c=await(o.isRTL==null?void 0:o.isRTL(t)),l=await o.getElementRects({reference:e,floating:t,strategy:i}),{x:u,y:d}=Ne(l,r,c),f=r,p={},m=0;for(let n=0;n<s.length;n++){let{name:a,fn:h}=s[n],{x:g,y:_,data:v,reset:y}=await h({x:u,y:d,initialPlacement:r,placement:f,strategy:i,middlewareData:p,rects:l,platform:{...o,detectOverflow:o.detectOverflow??Pe},elements:{reference:e,floating:t}});u=g??u,d=_??d,p={...p,[a]:{...p[a],...v}},y&&m<=50&&(m++,typeof y==`object`&&(y.placement&&(f=y.placement),y.rects&&(l=y.rects===!0?await o.getElementRects({reference:e,floating:t,strategy:i}):y.rects),{x:u,y:d}=Ne(l,f,c)),n=-1)}return{x:u,y:d,placement:f,strategy:i,middlewareData:p}},Ie=e=>({name:`arrow`,options:e,async fn(t){let{x:n,y:r,placement:i,rects:a,platform:o,elements:s,middlewareData:c}=t,{element:l,padding:u=0}=V(e,t)||{};if(l==null)return{};let d=je(u),f={x:n,y:r},p=ye(i),m=_e(p),h=await o.getDimensions(l),g=p===`y`,_=g?`top`:`left`,v=g?`bottom`:`right`,y=g?`clientHeight`:`clientWidth`,b=a.reference[m]+a.reference[p]-f[p]-a.floating[m],x=f[p]-a.reference[p],S=await(o.getOffsetParent==null?void 0:o.getOffsetParent(l)),C=S?S[y]:0;(!C||!await(o.isElement==null?void 0:o.isElement(S)))&&(C=s.floating[y]||a.floating[m]);let w=b/2-x/2,T=C/2-h[m]/2-1,E=R(d[_],T),D=R(d[v],T),O=E,k=C-h[m]-D,A=C/2-h[m]/2+w,j=he(O,A,k),M=!c.arrow&&U(i)!=null&&A!==j&&a.reference[m]/2-(A<O?E:D)-h[m]/2<0,N=M?A<O?A-O:A-k:0;return{[p]:f[p]+N,data:{[p]:j,centerOffset:A-j-N,...M&&{alignmentOffset:N}},reset:M}}}),Le=function(e){return e===void 0&&(e={}),{name:`flip`,options:e,async fn(t){var n;let{placement:r,middlewareData:i,rects:a,initialPlacement:o,platform:s,elements:c}=t,{mainAxis:l=!0,crossAxis:u=!0,fallbackPlacements:d,fallbackStrategy:f=`bestFit`,fallbackAxisSideDirection:p=`none`,flipAlignment:m=!0,...h}=V(e,t);if((n=i.arrow)!=null&&n.alignmentOffset)return{};let g=H(r),_=W(o),v=H(o)===o,y=await(s.isRTL==null?void 0:s.isRTL(c.floating)),b=d||(v||!m?[ke(o)]:xe(o)),x=p!==`none`;!d&&x&&b.push(...Oe(o,m,p,y));let S=[o,...b],C=await s.detectOverflow(t,h),w=[],T=i.flip?.overflows||[];if(l&&w.push(C[g]),u){let e=be(r,a,y);w.push(C[e[0]],C[e[1]])}if(T=[...T,{placement:r,overflows:w}],!w.every(e=>e<=0)){let e=(i.flip?.index||0)+1,t=S[e];if(t&&(!(u===`alignment`&&_!==W(t))||T.every(e=>W(e.placement)===_?e.overflows[0]>0:!0)))return{data:{index:e,overflows:T},reset:{placement:t}};let n=T.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0]?.placement;if(!n)switch(f){case`bestFit`:{let e=T.filter(e=>{if(x){let t=W(e.placement);return t===_||t===`y`}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0]?.[0];e&&(n=e);break}case`initialPlacement`:n=o;break}if(r!==n)return{reset:{placement:n}}}return{}}}};function Re(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function ze(e){return ue.some(t=>e[t]>=0)}var Be=function(e){return e===void 0&&(e={}),{name:`hide`,options:e,async fn(t){let{rects:n,platform:r}=t,{strategy:i=`referenceHidden`,...a}=V(e,t);switch(i){case`referenceHidden`:{let e=Re(await r.detectOverflow(t,{...a,elementContext:`reference`}),n.reference);return{data:{referenceHiddenOffsets:e,referenceHidden:ze(e)}}}case`escaped`:{let e=Re(await r.detectOverflow(t,{...a,altBoundary:!0}),n.floating);return{data:{escapedOffsets:e,escaped:ze(e)}}}default:return{}}}}},Ve=new Set([`left`,`top`]);async function He(e,t){let{placement:n,platform:r,elements:i}=e,a=await(r.isRTL==null?void 0:r.isRTL(i.floating)),o=H(n),s=U(n),c=W(n)===`y`,l=Ve.has(o)?-1:1,u=a&&c?-1:1,d=V(t,e),{mainAxis:f,crossAxis:p,alignmentAxis:m}=typeof d==`number`?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return s&&typeof m==`number`&&(p=s===`end`?m*-1:m),c?{x:p*u,y:f*l}:{x:f*l,y:p*u}}var Ue=function(e){return e===void 0&&(e=0),{name:`offset`,options:e,async fn(t){var n;let{x:r,y:i,placement:a,middlewareData:o}=t,s=await He(t,e);return a===o.offset?.placement&&(n=o.arrow)!=null&&n.alignmentOffset?{}:{x:r+s.x,y:i+s.y,data:{...s,placement:a}}}}},We=function(e){return e===void 0&&(e={}),{name:`shift`,options:e,async fn(t){let{x:n,y:r,placement:i,platform:a}=t,{mainAxis:o=!0,crossAxis:s=!1,limiter:c={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=V(e,t),u={x:n,y:r},d=await a.detectOverflow(t,l),f=W(H(i)),p=ge(f),m=u[p],h=u[f];if(o){let e=p===`y`?`top`:`left`,t=p===`y`?`bottom`:`right`,n=m+d[e],r=m-d[t];m=he(n,m,r)}if(s){let e=f===`y`?`top`:`left`,t=f===`y`?`bottom`:`right`,n=h+d[e],r=h-d[t];h=he(n,h,r)}let g=c.fn({...t,[p]:m,[f]:h});return{...g,data:{x:g.x-n,y:g.y-r,enabled:{[p]:o,[f]:s}}}}}},Ge=function(e){return e===void 0&&(e={}),{options:e,fn(t){let{x:n,y:r,placement:i,rects:a,middlewareData:o}=t,{offset:s=0,mainAxis:c=!0,crossAxis:l=!0}=V(e,t),u={x:n,y:r},d=W(i),f=ge(d),p=u[f],m=u[d],h=V(s,t),g=typeof h==`number`?{mainAxis:h,crossAxis:0}:{mainAxis:0,crossAxis:0,...h};if(c){let e=f===`y`?`height`:`width`,t=a.reference[f]-a.floating[e]+g.mainAxis,n=a.reference[f]+a.reference[e]-g.mainAxis;p<t?p=t:p>n&&(p=n)}if(l){let e=f===`y`?`width`:`height`,t=Ve.has(H(i)),n=a.reference[d]-a.floating[e]+(t&&o.offset?.[d]||0)+(t?0:g.crossAxis),r=a.reference[d]+a.reference[e]+(t?0:o.offset?.[d]||0)-(t?g.crossAxis:0);m<n?m=n:m>r&&(m=r)}return{[f]:p,[d]:m}}}},Ke=function(e){return e===void 0&&(e={}),{name:`size`,options:e,async fn(t){var n,r;let{placement:i,rects:a,platform:o,elements:s}=t,{apply:c=()=>{},...l}=V(e,t),u=await o.detectOverflow(t,l),d=H(i),f=U(i),p=W(i)===`y`,{width:m,height:h}=a.floating,g,_;d===`top`||d===`bottom`?(g=d,_=f===(await(o.isRTL==null?void 0:o.isRTL(s.floating))?`start`:`end`)?`left`:`right`):(_=d,g=f===`end`?`top`:`bottom`);let v=h-u.top-u.bottom,y=m-u.left-u.right,b=R(h-u[g],v),x=R(m-u[_],y),S=!t.middlewareData.shift,C=b,w=x;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(w=y),(r=t.middlewareData.shift)!=null&&r.enabled.y&&(C=v),S&&!f){let e=z(u.left,0),t=z(u.right,0),n=z(u.top,0),r=z(u.bottom,0);p?w=m-2*(e!==0||t!==0?e+t:z(u.left,u.right)):C=h-2*(n!==0||r!==0?n+r:z(u.top,u.bottom))}await c({...t,availableWidth:w,availableHeight:C});let T=await o.getDimensions(s.floating);return m!==T.width||h!==T.height?{reset:{rects:!0}}:{}}}};function qe(){return typeof window<`u`}function G(e){return Je(e)?(e.nodeName||``).toLowerCase():`#document`}function K(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function q(e){return((Je(e)?e.ownerDocument:e.document)||window.document)?.documentElement}function Je(e){return qe()?e instanceof Node||e instanceof K(e).Node:!1}function J(e){return qe()?e instanceof Element||e instanceof K(e).Element:!1}function Y(e){return qe()?e instanceof HTMLElement||e instanceof K(e).HTMLElement:!1}function Ye(e){return!qe()||typeof ShadowRoot>`u`?!1:e instanceof ShadowRoot||e instanceof K(e).ShadowRoot}var Xe=new Set([`inline`,`contents`]);function Ze(e){let{overflow:t,overflowX:n,overflowY:r,display:i}=Z(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!Xe.has(i)}var Qe=new Set([`table`,`td`,`th`]);function $e(e){return Qe.has(G(e))}var et=[`:popover-open`,`:modal`];function tt(e){return et.some(t=>{try{return e.matches(t)}catch{return!1}})}var nt=[`transform`,`translate`,`scale`,`rotate`,`perspective`],rt=[`transform`,`translate`,`scale`,`rotate`,`perspective`,`filter`],it=[`paint`,`layout`,`strict`,`content`];function at(e){let t=st(),n=J(e)?Z(e):e;return nt.some(e=>n[e]?n[e]!==`none`:!1)||(n.containerType?n.containerType!==`normal`:!1)||!t&&(n.backdropFilter?n.backdropFilter!==`none`:!1)||!t&&(n.filter?n.filter!==`none`:!1)||rt.some(e=>(n.willChange||``).includes(e))||it.some(e=>(n.contain||``).includes(e))}function ot(e){let t=Q(e);for(;Y(t)&&!X(t);){if(at(t))return t;if(tt(t))return null;t=Q(t)}return null}function st(){return typeof CSS>`u`||!CSS.supports?!1:CSS.supports(`-webkit-backdrop-filter`,`none`)}var ct=new Set([`html`,`body`,`#document`]);function X(e){return ct.has(G(e))}function Z(e){return K(e).getComputedStyle(e)}function lt(e){return J(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Q(e){if(G(e)===`html`)return e;let t=e.assignedSlot||e.parentNode||Ye(e)&&e.host||q(e);return Ye(t)?t.host:t}function ut(e){let t=Q(e);return X(t)?e.ownerDocument?e.ownerDocument.body:e.body:Y(t)&&Ze(t)?t:ut(t)}function dt(e,t,n){t===void 0&&(t=[]),n===void 0&&(n=!0);let r=ut(e),i=r===e.ownerDocument?.body,a=K(r);if(i){let e=ft(a);return t.concat(a,a.visualViewport||[],Ze(r)?r:[],e&&n?dt(e):[])}return t.concat(r,dt(r,[],n))}function ft(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function pt(e){let t=Z(e),n=parseFloat(t.width)||0,r=parseFloat(t.height)||0,i=Y(e),a=i?e.offsetWidth:n,o=i?e.offsetHeight:r,s=de(n)!==a||de(r)!==o;return s&&(n=a,r=o),{width:n,height:r,$:s}}function mt(e){return J(e)?e:e.contextElement}function ht(e){let t=mt(e);if(!Y(t))return B(1);let n=t.getBoundingClientRect(),{width:r,height:i,$:a}=pt(t),o=(a?de(n.width):n.width)/r,s=(a?de(n.height):n.height)/i;return(!o||!Number.isFinite(o))&&(o=1),(!s||!Number.isFinite(s))&&(s=1),{x:o,y:s}}var gt=B(0);function _t(e){let t=K(e);return!st()||!t.visualViewport?gt:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function vt(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==K(e)?!1:t}function $(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);let i=e.getBoundingClientRect(),a=mt(e),o=B(1);t&&(r?J(r)&&(o=ht(r)):o=ht(e));let s=vt(a,n,r)?_t(a):B(0),c=(i.left+s.x)/o.x,l=(i.top+s.y)/o.y,u=i.width/o.x,d=i.height/o.y;if(a){let e=K(a),t=r&&J(r)?K(r):r,n=e,i=ft(n);for(;i&&r&&t!==n;){let e=ht(i),t=i.getBoundingClientRect(),r=Z(i),a=t.left+(i.clientLeft+parseFloat(r.paddingLeft))*e.x,o=t.top+(i.clientTop+parseFloat(r.paddingTop))*e.y;c*=e.x,l*=e.y,u*=e.x,d*=e.y,c+=a,l+=o,n=K(i),i=ft(n)}}return Me({width:u,height:d,x:c,y:l})}function yt(e,t){let n=lt(e).scrollLeft;return t?t.left+n:$(q(e)).left+n}function bt(e,t){let n=e.getBoundingClientRect();return{x:n.left+t.scrollLeft-yt(e,n),y:n.top+t.scrollTop}}function xt(e){let{elements:t,rect:n,offsetParent:r,strategy:i}=e,a=i===`fixed`,o=q(r),s=t?tt(t.floating):!1;if(r===o||s&&a)return n;let c={scrollLeft:0,scrollTop:0},l=B(1),u=B(0),d=Y(r);if((d||!d&&!a)&&((G(r)!==`body`||Ze(o))&&(c=lt(r)),Y(r))){let e=$(r);l=ht(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}let f=o&&!d&&!a?bt(o,c):B(0);return{width:n.width*l.x,height:n.height*l.y,x:n.x*l.x-c.scrollLeft*l.x+u.x+f.x,y:n.y*l.y-c.scrollTop*l.y+u.y+f.y}}function St(e){return Array.from(e.getClientRects())}function Ct(e){let t=q(e),n=lt(e),r=e.ownerDocument.body,i=z(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),a=z(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight),o=-n.scrollLeft+yt(e),s=-n.scrollTop;return Z(r).direction===`rtl`&&(o+=z(t.clientWidth,r.clientWidth)-i),{width:i,height:a,x:o,y:s}}var wt=25;function Tt(e,t){let n=K(e),r=q(e),i=n.visualViewport,a=r.clientWidth,o=r.clientHeight,s=0,c=0;if(i){a=i.width,o=i.height;let e=st();(!e||e&&t===`fixed`)&&(s=i.offsetLeft,c=i.offsetTop)}let l=yt(r);if(l<=0){let e=r.ownerDocument,t=e.body,n=getComputedStyle(t),i=e.compatMode===`CSS1Compat`&&parseFloat(n.marginLeft)+parseFloat(n.marginRight)||0,o=Math.abs(r.clientWidth-t.clientWidth-i);o<=wt&&(a-=o)}else l<=wt&&(a+=l);return{width:a,height:o,x:s,y:c}}var Et=new Set([`absolute`,`fixed`]);function Dt(e,t){let n=$(e,!0,t===`fixed`),r=n.top+e.clientTop,i=n.left+e.clientLeft,a=Y(e)?ht(e):B(1);return{width:e.clientWidth*a.x,height:e.clientHeight*a.y,x:i*a.x,y:r*a.y}}function Ot(e,t,n){let r;if(t===`viewport`)r=Tt(e,n);else if(t===`document`)r=Ct(q(e));else if(J(t))r=Dt(t,n);else{let n=_t(e);r={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return Me(r)}function kt(e,t){let n=Q(e);return n===t||!J(n)||X(n)?!1:Z(n).position===`fixed`||kt(n,t)}function At(e,t){let n=t.get(e);if(n)return n;let r=dt(e,[],!1).filter(e=>J(e)&&G(e)!==`body`),i=null,a=Z(e).position===`fixed`,o=a?Q(e):e;for(;J(o)&&!X(o);){let t=Z(o),n=at(o);!n&&t.position===`fixed`&&(i=null),(a?!n&&!i:!n&&t.position===`static`&&i&&Et.has(i.position)||Ze(o)&&!n&&kt(e,o))?r=r.filter(e=>e!==o):i=t,o=Q(o)}return t.set(e,r),r}function jt(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e,a=[...n===`clippingAncestors`?tt(t)?[]:At(t,this._c):[].concat(n),r],o=a[0],s=a.reduce((e,n)=>{let r=Ot(t,n,i);return e.top=z(r.top,e.top),e.right=R(r.right,e.right),e.bottom=R(r.bottom,e.bottom),e.left=z(r.left,e.left),e},Ot(t,o,i));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}}function Mt(e){let{width:t,height:n}=pt(e);return{width:t,height:n}}function Nt(e,t,n){let r=Y(t),i=q(t),a=n===`fixed`,o=$(e,!0,a,t),s={scrollLeft:0,scrollTop:0},c=B(0);function l(){c.x=yt(i)}if(r||!r&&!a)if((G(t)!==`body`||Ze(i))&&(s=lt(t)),r){let e=$(t,!0,a,t);c.x=e.x+t.clientLeft,c.y=e.y+t.clientTop}else i&&l();a&&!r&&i&&l();let u=i&&!r&&!a?bt(i,s):B(0);return{x:o.left+s.scrollLeft-c.x-u.x,y:o.top+s.scrollTop-c.y-u.y,width:o.width,height:o.height}}function Pt(e){return Z(e).position===`static`}function Ft(e,t){if(!Y(e)||Z(e).position===`fixed`)return null;if(t)return t(e);let n=e.offsetParent;return q(e)===n&&(n=n.ownerDocument.body),n}function It(e,t){let n=K(e);if(tt(e))return n;if(!Y(e)){let t=Q(e);for(;t&&!X(t);){if(J(t)&&!Pt(t))return t;t=Q(t)}return n}let r=Ft(e,t);for(;r&&$e(r)&&Pt(r);)r=Ft(r,t);return r&&X(r)&&Pt(r)&&!at(r)?n:r||ot(e)||n}var Lt=async function(e){let t=this.getOffsetParent||It,n=this.getDimensions,r=await n(e.floating);return{reference:Nt(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}};function Rt(e){return Z(e).direction===`rtl`}var zt={convertOffsetParentRelativeRectToViewportRelativeRect:xt,getDocumentElement:q,getClippingRect:jt,getOffsetParent:It,getElementRects:Lt,getClientRects:St,getDimensions:Mt,getScale:ht,isElement:J,isRTL:Rt};function Bt(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function Vt(e,t){let n=null,r,i=q(e);function a(){var e;clearTimeout(r),(e=n)==null||e.disconnect(),n=null}function o(s,c){s===void 0&&(s=!1),c===void 0&&(c=1),a();let l=e.getBoundingClientRect(),{left:u,top:d,width:f,height:p}=l;if(s||t(),!f||!p)return;let m=fe(d),h=fe(i.clientWidth-(u+f)),g=fe(i.clientHeight-(d+p)),_=fe(u),v={rootMargin:-m+`px `+-h+`px `+-g+`px `+-_+`px`,threshold:z(0,R(1,c))||1},y=!0;function b(t){let n=t[0].intersectionRatio;if(n!==c){if(!y)return o();n?o(!1,n):r=setTimeout(()=>{o(!1,1e-7)},1e3)}n===1&&!Bt(l,e.getBoundingClientRect())&&o(),y=!1}try{n=new IntersectionObserver(b,{...v,root:i.ownerDocument})}catch{n=new IntersectionObserver(b,v)}n.observe(e)}return o(!0),a}function Ht(e,t,n,r){r===void 0&&(r={});let{ancestorScroll:i=!0,ancestorResize:a=!0,elementResize:o=typeof ResizeObserver==`function`,layoutShift:s=typeof IntersectionObserver==`function`,animationFrame:c=!1}=r,l=mt(e),u=i||a?[...l?dt(l):[],...dt(t)]:[];u.forEach(e=>{i&&e.addEventListener(`scroll`,n,{passive:!0}),a&&e.addEventListener(`resize`,n)});let d=l&&s?Vt(l,n):null,f=-1,p=null;o&&(p=new ResizeObserver(e=>{let[r]=e;r&&r.target===l&&p&&(p.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var e;(e=p)==null||e.observe(t)})),n()}),l&&!c&&p.observe(l),p.observe(t));let m,h=c?$(e):null;c&&g();function g(){let t=$(e);h&&!Bt(h,t)&&n(),h=t,m=requestAnimationFrame(g)}return n(),()=>{var e;u.forEach(e=>{i&&e.removeEventListener(`scroll`,n),a&&e.removeEventListener(`resize`,n)}),d?.(),(e=p)==null||e.disconnect(),p=null,c&&cancelAnimationFrame(m)}}var Ut=Ue,Wt=We,Gt=Le,Kt=Ke,qt=Be,Jt=Ie,Yt=Ge,Xt=(e,t,n)=>{let r=new Map,i={platform:zt,...n},a={...i.platform,_c:r};return Fe(e,t,{...i,platform:a})},Zt=typeof document<`u`?a.useLayoutEffect:function(){};function Qt(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e==`function`&&e.toString()===t.toString())return!0;let n,r,i;if(e&&t&&typeof e==`object`){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;r--!==0;)if(!Qt(e[r],t[r]))return!1;return!0}if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!{}.hasOwnProperty.call(t,i[r]))return!1;for(r=n;r--!==0;){let n=i[r];if(!(n===`_owner`&&e.$$typeof)&&!Qt(e[n],t[n]))return!1}return!0}return e!==e&&t!==t}function $t(e){return typeof window>`u`?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function en(e,t){let n=$t(e);return Math.round(t*n)/n}function tn(e){let t=a.useRef(e);return Zt(()=>{t.current=e}),t}function nn(e){e===void 0&&(e={});let{placement:t=`bottom`,strategy:n=`absolute`,middleware:r=[],platform:i,elements:{reference:o,floating:s}={},transform:c=!0,whileElementsMounted:l,open:u}=e,[d,f]=a.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,m]=a.useState(r);Qt(p,r)||m(r);let[h,g]=a.useState(null),[_,v]=a.useState(null),y=a.useCallback(e=>{e!==C.current&&(C.current=e,g(e))},[]),b=a.useCallback(e=>{e!==w.current&&(w.current=e,v(e))},[]),x=o||h,S=s||_,C=a.useRef(null),w=a.useRef(null),T=a.useRef(d),E=l!=null,D=tn(l),k=tn(i),A=tn(u),j=a.useCallback(()=>{if(!C.current||!w.current)return;let e={placement:t,strategy:n,middleware:p};k.current&&(e.platform=k.current),Xt(C.current,w.current,e).then(e=>{let t={...e,isPositioned:A.current!==!1};M.current&&!Qt(T.current,t)&&(T.current=t,O.flushSync(()=>{f(t)}))})},[p,t,n,k,A]);Zt(()=>{u===!1&&T.current.isPositioned&&(T.current.isPositioned=!1,f(e=>({...e,isPositioned:!1})))},[u]);let M=a.useRef(!1);Zt(()=>(M.current=!0,()=>{M.current=!1}),[]),Zt(()=>{if(x&&(C.current=x),S&&(w.current=S),x&&S){if(D.current)return D.current(x,S,j);j()}},[x,S,j,D,E]);let N=a.useMemo(()=>({reference:C,floating:w,setReference:y,setFloating:b}),[y,b]),P=a.useMemo(()=>({reference:x,floating:S}),[x,S]),F=a.useMemo(()=>{let e={position:n,left:0,top:0};if(!P.floating)return e;let t=en(P.floating,d.x),r=en(P.floating,d.y);return c?{...e,transform:`translate(`+t+`px, `+r+`px)`,...$t(P.floating)>=1.5&&{willChange:`transform`}}:{position:n,left:t,top:r}},[n,c,P.floating,d.x,d.y]);return a.useMemo(()=>({...d,update:j,refs:N,elements:P,floatingStyles:F}),[d,j,N,P,F])}var rn=e=>{function t(e){return{}.hasOwnProperty.call(e,`current`)}return{name:`arrow`,options:e,fn(n){let{element:r,padding:i}=typeof e==`function`?e(n):e;return r&&t(r)?r.current==null?{}:Jt({element:r.current,padding:i}).fn(n):r?Jt({element:r,padding:i}).fn(n):{}}}},an=(e,t)=>({...Ut(e),options:[e,t]}),on=(e,t)=>({...Wt(e),options:[e,t]}),sn=(e,t)=>({...Yt(e),options:[e,t]}),cn=(e,t)=>({...Gt(e),options:[e,t]}),ln=(e,t)=>({...Kt(e),options:[e,t]}),un=(e,t)=>({...qt(e),options:[e,t]}),dn=(e,t)=>({...rn(e),options:[e,t]}),fn=`Arrow`,pn=a.forwardRef((e,t)=>{let{children:n,width:r=10,height:i=5,...a}=e;return(0,l.jsx)(k.svg,{...a,ref:t,width:r,height:i,viewBox:`0 0 30 10`,preserveAspectRatio:`none`,children:e.asChild?n:(0,l.jsx)(`polygon`,{points:`0,0 30,0 15,10`})})});pn.displayName=fn;var mn=pn;function hn(e){let[t,n]=a.useState(void 0);return p(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});let t=new ResizeObserver(t=>{if(!Array.isArray(t)||!t.length)return;let r=t[0],i,a;if(`borderBoxSize`in r){let e=r.borderBoxSize,t=Array.isArray(e)?e[0]:e;i=t.inlineSize,a=t.blockSize}else i=e.offsetWidth,a=e.offsetHeight;n({width:i,height:a})});return t.observe(e,{box:`border-box`}),()=>t.unobserve(e)}else n(void 0)},[e]),t}var gn=`Popper`,[_n,vn]=d(gn),[yn,bn]=_n(gn),xn=e=>{let{__scopePopper:t,children:n}=e,[r,i]=a.useState(null);return(0,l.jsx)(yn,{scope:t,anchor:r,onAnchorChange:i,children:n})};xn.displayName=gn;var Sn=`PopperAnchor`,Cn=a.forwardRef((e,t)=>{let{__scopePopper:n,virtualRef:r,...i}=e,o=bn(Sn,n),s=a.useRef(null),u=c(t,s),d=a.useRef(null);return a.useEffect(()=>{let e=d.current;d.current=r?.current||s.current,e!==d.current&&o.onAnchorChange(d.current)}),r?null:(0,l.jsx)(k.div,{...i,ref:u})});Cn.displayName=Sn;var wn=`PopperContent`,[Tn,En]=_n(wn),Dn=a.forwardRef((e,t)=>{let{__scopePopper:n,side:r=`bottom`,sideOffset:i=0,align:o=`center`,alignOffset:s=0,arrowPadding:u=0,avoidCollisions:d=!0,collisionBoundary:f=[],collisionPadding:m=0,sticky:h=`partial`,hideWhenDetached:g=!1,updatePositionStrategy:_=`optimized`,onPlaced:v,...y}=e,b=bn(wn,n),[x,S]=a.useState(null),C=c(t,e=>S(e)),[w,T]=a.useState(null),E=hn(w),D=E?.width??0,O=E?.height??0,A=r+(o===`center`?``:`-`+o),M=typeof m==`number`?m:{top:0,right:0,bottom:0,left:0,...m},N=Array.isArray(f)?f:[f],P=N.length>0,F={padding:M,boundary:N.filter(jn),altBoundary:P},{refs:ee,floatingStyles:te,placement:ne,isPositioned:I,middlewareData:L}=nn({strategy:`fixed`,placement:A,whileElementsMounted:(...e)=>Ht(...e,{animationFrame:_===`always`}),elements:{reference:b.anchor},middleware:[an({mainAxis:i+O,alignmentAxis:s}),d&&on({mainAxis:!0,crossAxis:!1,limiter:h===`partial`?sn():void 0,...F}),d&&cn({...F}),ln({...F,apply:({elements:e,rects:t,availableWidth:n,availableHeight:r})=>{let{width:i,height:a}=t.reference,o=e.floating.style;o.setProperty(`--radix-popper-available-width`,`${n}px`),o.setProperty(`--radix-popper-available-height`,`${r}px`),o.setProperty(`--radix-popper-anchor-width`,`${i}px`),o.setProperty(`--radix-popper-anchor-height`,`${a}px`)}}),w&&dn({element:w,padding:u}),Mn({arrowWidth:D,arrowHeight:O}),g&&un({strategy:`referenceHidden`,...F})]}),[re,ie]=Nn(ne),ae=j(v);p(()=>{I&&ae?.()},[I,ae]);let oe=L.arrow?.x,se=L.arrow?.y,ce=L.arrow?.centerOffset!==0,[le,ue]=a.useState();return p(()=>{x&&ue(window.getComputedStyle(x).zIndex)},[x]),(0,l.jsx)(`div`,{ref:ee.setFloating,"data-radix-popper-content-wrapper":``,style:{...te,transform:I?te.transform:`translate(0, -200%)`,minWidth:`max-content`,zIndex:le,"--radix-popper-transform-origin":[L.transformOrigin?.x,L.transformOrigin?.y].join(` `),...L.hide?.referenceHidden&&{visibility:`hidden`,pointerEvents:`none`}},dir:e.dir,children:(0,l.jsx)(Tn,{scope:n,placedSide:re,onArrowChange:T,arrowX:oe,arrowY:se,shouldHideArrow:ce,children:(0,l.jsx)(k.div,{"data-side":re,"data-align":ie,...y,ref:C,style:{...y.style,animation:I?void 0:`none`}})})})});Dn.displayName=wn;var On=`PopperArrow`,kn={top:`bottom`,right:`left`,bottom:`top`,left:`right`},An=a.forwardRef(function(e,t){let{__scopePopper:n,...r}=e,i=En(On,n),a=kn[i.placedSide];return(0,l.jsx)(`span`,{ref:i.onArrowChange,style:{position:`absolute`,left:i.arrowX,top:i.arrowY,[a]:0,transformOrigin:{top:``,right:`0 0`,bottom:`center 0`,left:`100% 0`}[i.placedSide],transform:{top:`translateY(100%)`,right:`translateY(50%) rotate(90deg) translateX(-50%)`,bottom:`rotate(180deg)`,left:`translateY(50%) rotate(-90deg) translateX(50%)`}[i.placedSide],visibility:i.shouldHideArrow?`hidden`:void 0},children:(0,l.jsx)(mn,{...r,ref:t,style:{...r.style,display:`block`}})})});An.displayName=On;function jn(e){return e!==null}var Mn=e=>({name:`transformOrigin`,options:e,fn(t){let{placement:n,rects:r,middlewareData:i}=t,a=i.arrow?.centerOffset!==0,o=a?0:e.arrowWidth,s=a?0:e.arrowHeight,[c,l]=Nn(n),u={start:`0%`,center:`50%`,end:`100%`}[l],d=(i.arrow?.x??0)+o/2,f=(i.arrow?.y??0)+s/2,p=``,m=``;return c===`bottom`?(p=a?u:`${d}px`,m=`${-s}px`):c===`top`?(p=a?u:`${d}px`,m=`${r.floating.height+s}px`):c===`right`?(p=`${-s}px`,m=a?u:`${f}px`):c===`left`&&(p=`${r.floating.width+s}px`,m=a?u:`${f}px`),{data:{x:p,y:m}}}});function Nn(e){let[t,n=`center`]=e.split(`-`);return[t,n]}var Pn=xn,Fn=Cn,In=Dn,Ln=An,Rn=Object.freeze({position:`absolute`,border:0,width:1,height:1,padding:0,margin:-1,overflow:`hidden`,clip:`rect(0, 0, 0, 0)`,whiteSpace:`nowrap`,wordWrap:`normal`}),zn=`VisuallyHidden`,Bn=a.forwardRef((e,t)=>(0,l.jsx)(k.span,{...e,ref:t,style:{...Rn,...e.style}}));Bn.displayName=zn;var Vn=Bn;export{u as _,In as a,i as b,le as c,k as d,x as f,p as g,g as h,Ln as i,I as l,v as m,Rn as n,Pn as o,w as p,Fn as r,vn as s,Vn as t,j as u,d as v,c as y};
1
+ import{i as e}from"./chunk-DseTPa7n.js";import{B as t,H as n,V as r}from"./react-Co6JiC1n.js";typeof window<`u`&&window.document&&window.document.createElement;function i(e,t,{checkForDefaultPrevented:n=!0}={}){return function(r){if(e?.(r),n===!1||!r.defaultPrevented)return t?.(r)}}var a=e(n(),1);function o(e,t){if(typeof e==`function`)return e(t);e!=null&&(e.current=t)}function s(...e){return t=>{let n=!1,r=e.map(e=>{let r=o(e,t);return!n&&typeof r==`function`&&(n=!0),r});if(n)return()=>{for(let t=0;t<r.length;t++){let n=r[t];typeof n==`function`?n():o(e[t],null)}}}}function c(...e){return a.useCallback(s(...e),e)}var l=t();function u(e,t){let n=a.createContext(t),r=e=>{let{children:t,...r}=e,i=a.useMemo(()=>r,Object.values(r));return(0,l.jsx)(n.Provider,{value:i,children:t})};r.displayName=e+`Provider`;function i(r){let i=a.useContext(n);if(i)return i;if(t!==void 0)return t;throw Error(`\`${r}\` must be used within \`${e}\``)}return[r,i]}function d(e,t=[]){let n=[];function r(t,r){let i=a.createContext(r),o=n.length;n=[...n,r];let s=t=>{let{scope:n,children:r,...s}=t,c=n?.[e]?.[o]||i,u=a.useMemo(()=>s,Object.values(s));return(0,l.jsx)(c.Provider,{value:u,children:r})};s.displayName=t+`Provider`;function c(n,s){let c=s?.[e]?.[o]||i,l=a.useContext(c);if(l)return l;if(r!==void 0)return r;throw Error(`\`${n}\` must be used within \`${t}\``)}return[s,c]}let i=()=>{let t=n.map(e=>a.createContext(e));return function(n){let r=n?.[e]||t;return a.useMemo(()=>({[`__scope${e}`]:{...n,[e]:r}}),[n,r])}};return i.scopeName=e,[r,f(i,...t)]}function f(...e){let t=e[0];if(e.length===1)return t;let n=()=>{let n=e.map(e=>({useScope:e(),scopeName:e.scopeName}));return function(e){let r=n.reduce((t,{useScope:n,scopeName:r})=>{let i=n(e)[`__scope${r}`];return{...t,...i}},{});return a.useMemo(()=>({[`__scope${t.scopeName}`]:r}),[r])}};return n.scopeName=t.scopeName,n}var p=globalThis?.document?a.useLayoutEffect:()=>{},m=a.useId||(()=>void 0),h=0;function g(e){let[t,n]=a.useState(m());return p(()=>{e||n(e=>e??String(h++))},[e]),e||(t?`radix-${t}`:``)}var _=a.useInsertionEffect||p;function v({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){let[i,o,s]=y({defaultProp:t,onChange:n}),c=e!==void 0,l=c?e:i;{let t=a.useRef(e!==void 0);a.useEffect(()=>{let e=t.current;e!==c&&console.warn(`${r} is changing from ${e?`controlled`:`uncontrolled`} to ${c?`controlled`:`uncontrolled`}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),t.current=c},[c,r])}return[l,a.useCallback(t=>{if(c){let n=b(t)?t(e):t;n!==e&&s.current?.(n)}else o(t)},[c,e,o,s])]}function y({defaultProp:e,onChange:t}){let[n,r]=a.useState(e),i=a.useRef(n),o=a.useRef(t);return _(()=>{o.current=t},[t]),a.useEffect(()=>{i.current!==n&&(o.current?.(n),i.current=n)},[n,i]),[n,r,o]}function b(e){return typeof e==`function`}function x(e){let t=S(e),n=a.forwardRef((e,n)=>{let{children:r,...i}=e,o=a.Children.toArray(r),s=o.find(T);if(s){let e=s.props.children,r=o.map(t=>t===s?a.Children.count(e)>1?a.Children.only(null):a.isValidElement(e)?e.props.children:null:t);return(0,l.jsx)(t,{...i,ref:n,children:a.isValidElement(e)?a.cloneElement(e,void 0,r):null})}return(0,l.jsx)(t,{...i,ref:n,children:r})});return n.displayName=`${e}.Slot`,n}function S(e){let t=a.forwardRef((e,t)=>{let{children:n,...r}=e;if(a.isValidElement(n)){let e=D(n),i=E(r,n.props);return n.type!==a.Fragment&&(i.ref=t?s(t,e):e),a.cloneElement(n,i)}return a.Children.count(n)>1?a.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var C=Symbol(`radix.slottable`);function w(e){let t=({children:e})=>(0,l.jsx)(l.Fragment,{children:e});return t.displayName=`${e}.Slottable`,t.__radixId=C,t}function T(e){return a.isValidElement(e)&&typeof e.type==`function`&&`__radixId`in e.type&&e.type.__radixId===C}function E(e,t){let n={...t};for(let r in t){let i=e[r],a=t[r];/^on[A-Z]/.test(r)?i&&a?n[r]=(...e)=>{let t=a(...e);return i(...e),t}:i&&(n[r]=i):r===`style`?n[r]={...i,...a}:r===`className`&&(n[r]=[i,a].filter(Boolean).join(` `))}return{...e,...n}}function D(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var O=e(r(),1),k=[`a`,`button`,`div`,`form`,`h2`,`h3`,`img`,`input`,`label`,`li`,`nav`,`ol`,`p`,`select`,`span`,`svg`,`ul`].reduce((e,t)=>{let n=x(`Primitive.${t}`),r=a.forwardRef((e,r)=>{let{asChild:i,...a}=e,o=i?n:t;return typeof window<`u`&&(window[Symbol.for(`radix-ui`)]=!0),(0,l.jsx)(o,{...a,ref:r})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function A(e,t){e&&O.flushSync(()=>e.dispatchEvent(t))}function j(e){let t=a.useRef(e);return a.useEffect(()=>{t.current=e}),a.useMemo(()=>(...e)=>t.current?.(...e),[])}function M(e,t=globalThis?.document){let n=j(e);a.useEffect(()=>{let e=e=>{e.key===`Escape`&&n(e)};return t.addEventListener(`keydown`,e,{capture:!0}),()=>t.removeEventListener(`keydown`,e,{capture:!0})},[n,t])}var N=`DismissableLayer`,P=`dismissableLayer.update`,F=`dismissableLayer.pointerDownOutside`,ee=`dismissableLayer.focusOutside`,te,ne=a.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),I=a.forwardRef((e,t)=>{let{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:s,onInteractOutside:u,onDismiss:d,...f}=e,p=a.useContext(ne),[m,h]=a.useState(null),g=m?.ownerDocument??globalThis?.document,[,_]=a.useState({}),v=c(t,e=>h(e)),y=Array.from(p.layers),[b]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),x=y.indexOf(b),S=m?y.indexOf(m):-1,C=p.layersWithOutsidePointerEventsDisabled.size>0,w=S>=x,T=ie(e=>{let t=e.target,n=[...p.branches].some(e=>e.contains(t));!w||n||(o?.(e),u?.(e),e.defaultPrevented||d?.())},g),E=ae(e=>{let t=e.target;[...p.branches].some(e=>e.contains(t))||(s?.(e),u?.(e),e.defaultPrevented||d?.())},g);return M(e=>{S===p.layers.size-1&&(r?.(e),!e.defaultPrevented&&d&&(e.preventDefault(),d()))},g),a.useEffect(()=>{if(m)return n&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(te=g.body.style.pointerEvents,g.body.style.pointerEvents=`none`),p.layersWithOutsidePointerEventsDisabled.add(m)),p.layers.add(m),oe(),()=>{n&&p.layersWithOutsidePointerEventsDisabled.size===1&&(g.body.style.pointerEvents=te)}},[m,g,n,p]),a.useEffect(()=>()=>{m&&(p.layers.delete(m),p.layersWithOutsidePointerEventsDisabled.delete(m),oe())},[m,p]),a.useEffect(()=>{let e=()=>_({});return document.addEventListener(P,e),()=>document.removeEventListener(P,e)},[]),(0,l.jsx)(k.div,{...f,ref:v,style:{pointerEvents:C?w?`auto`:`none`:void 0,...e.style},onFocusCapture:i(e.onFocusCapture,E.onFocusCapture),onBlurCapture:i(e.onBlurCapture,E.onBlurCapture),onPointerDownCapture:i(e.onPointerDownCapture,T.onPointerDownCapture)})});I.displayName=N;var L=`DismissableLayerBranch`,re=a.forwardRef((e,t)=>{let n=a.useContext(ne),r=a.useRef(null),i=c(t,r);return a.useEffect(()=>{let e=r.current;if(e)return n.branches.add(e),()=>{n.branches.delete(e)}},[n.branches]),(0,l.jsx)(k.div,{...e,ref:i})});re.displayName=L;function ie(e,t=globalThis?.document){let n=j(e),r=a.useRef(!1),i=a.useRef(()=>{});return a.useEffect(()=>{let e=e=>{if(e.target&&!r.current){let r=function(){se(F,n,a,{discrete:!0})},a={originalEvent:e};e.pointerType===`touch`?(t.removeEventListener(`click`,i.current),i.current=r,t.addEventListener(`click`,i.current,{once:!0})):r()}else t.removeEventListener(`click`,i.current);r.current=!1},a=window.setTimeout(()=>{t.addEventListener(`pointerdown`,e)},0);return()=>{window.clearTimeout(a),t.removeEventListener(`pointerdown`,e),t.removeEventListener(`click`,i.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function ae(e,t=globalThis?.document){let n=j(e),r=a.useRef(!1);return a.useEffect(()=>{let e=e=>{e.target&&!r.current&&se(ee,n,{originalEvent:e},{discrete:!1})};return t.addEventListener(`focusin`,e),()=>t.removeEventListener(`focusin`,e)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function oe(){let e=new CustomEvent(P);document.dispatchEvent(e)}function se(e,t,n,{discrete:r}){let i=n.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?A(i,a):i.dispatchEvent(a)}var ce=`Portal`,le=a.forwardRef((e,t)=>{let{container:n,...r}=e,[i,o]=a.useState(!1);p(()=>o(!0),[]);let s=n||i&&globalThis?.document?.body;return s?O.createPortal((0,l.jsx)(k.div,{...r,ref:t}),s):null});le.displayName=ce;var ue=[`top`,`right`,`bottom`,`left`],R=Math.min,z=Math.max,de=Math.round,fe=Math.floor,B=e=>({x:e,y:e}),pe={left:`right`,right:`left`,bottom:`top`,top:`bottom`},me={start:`end`,end:`start`};function he(e,t,n){return z(e,R(t,n))}function V(e,t){return typeof e==`function`?e(t):e}function H(e){return e.split(`-`)[0]}function U(e){return e.split(`-`)[1]}function ge(e){return e===`x`?`y`:`x`}function _e(e){return e===`y`?`height`:`width`}var ve=new Set([`top`,`bottom`]);function W(e){return ve.has(H(e))?`y`:`x`}function ye(e){return ge(W(e))}function be(e,t,n){n===void 0&&(n=!1);let r=U(e),i=ye(e),a=_e(i),o=i===`x`?r===(n?`end`:`start`)?`right`:`left`:r===`start`?`bottom`:`top`;return t.reference[a]>t.floating[a]&&(o=ke(o)),[o,ke(o)]}function xe(e){let t=ke(e);return[Se(e),t,Se(t)]}function Se(e){return e.replace(/start|end/g,e=>me[e])}var Ce=[`left`,`right`],we=[`right`,`left`],Te=[`top`,`bottom`],Ee=[`bottom`,`top`];function De(e,t,n){switch(e){case`top`:case`bottom`:return n?t?we:Ce:t?Ce:we;case`left`:case`right`:return t?Te:Ee;default:return[]}}function Oe(e,t,n,r){let i=U(e),a=De(H(e),n===`start`,r);return i&&(a=a.map(e=>e+`-`+i),t&&(a=a.concat(a.map(Se)))),a}function ke(e){return e.replace(/left|right|bottom|top/g,e=>pe[e])}function Ae(e){return{top:0,right:0,bottom:0,left:0,...e}}function je(e){return typeof e==`number`?{top:e,right:e,bottom:e,left:e}:Ae(e)}function Me(e){let{x:t,y:n,width:r,height:i}=e;return{width:r,height:i,top:n,left:t,right:t+r,bottom:n+i,x:t,y:n}}function Ne(e,t,n){let{reference:r,floating:i}=e,a=W(t),o=ye(t),s=_e(o),c=H(t),l=a===`y`,u=r.x+r.width/2-i.width/2,d=r.y+r.height/2-i.height/2,f=r[s]/2-i[s]/2,p;switch(c){case`top`:p={x:u,y:r.y-i.height};break;case`bottom`:p={x:u,y:r.y+r.height};break;case`right`:p={x:r.x+r.width,y:d};break;case`left`:p={x:r.x-i.width,y:d};break;default:p={x:r.x,y:r.y}}switch(U(t)){case`start`:p[o]-=f*(n&&l?-1:1);break;case`end`:p[o]+=f*(n&&l?-1:1);break}return p}async function Pe(e,t){t===void 0&&(t={});let{x:n,y:r,platform:i,rects:a,elements:o,strategy:s}=e,{boundary:c=`clippingAncestors`,rootBoundary:l=`viewport`,elementContext:u=`floating`,altBoundary:d=!1,padding:f=0}=V(t,e),p=je(f),m=o[d?u===`floating`?`reference`:`floating`:u],h=Me(await i.getClippingRect({element:await(i.isElement==null?void 0:i.isElement(m))??!0?m:m.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(o.floating)),boundary:c,rootBoundary:l,strategy:s})),g=u===`floating`?{x:n,y:r,width:a.floating.width,height:a.floating.height}:a.reference,_=await(i.getOffsetParent==null?void 0:i.getOffsetParent(o.floating)),v=await(i.isElement==null?void 0:i.isElement(_))&&await(i.getScale==null?void 0:i.getScale(_))||{x:1,y:1},y=Me(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:o,rect:g,offsetParent:_,strategy:s}):g);return{top:(h.top-y.top+p.top)/v.y,bottom:(y.bottom-h.bottom+p.bottom)/v.y,left:(h.left-y.left+p.left)/v.x,right:(y.right-h.right+p.right)/v.x}}var Fe=async(e,t,n)=>{let{placement:r=`bottom`,strategy:i=`absolute`,middleware:a=[],platform:o}=n,s=a.filter(Boolean),c=await(o.isRTL==null?void 0:o.isRTL(t)),l=await o.getElementRects({reference:e,floating:t,strategy:i}),{x:u,y:d}=Ne(l,r,c),f=r,p={},m=0;for(let n=0;n<s.length;n++){let{name:a,fn:h}=s[n],{x:g,y:_,data:v,reset:y}=await h({x:u,y:d,initialPlacement:r,placement:f,strategy:i,middlewareData:p,rects:l,platform:{...o,detectOverflow:o.detectOverflow??Pe},elements:{reference:e,floating:t}});u=g??u,d=_??d,p={...p,[a]:{...p[a],...v}},y&&m<=50&&(m++,typeof y==`object`&&(y.placement&&(f=y.placement),y.rects&&(l=y.rects===!0?await o.getElementRects({reference:e,floating:t,strategy:i}):y.rects),{x:u,y:d}=Ne(l,f,c)),n=-1)}return{x:u,y:d,placement:f,strategy:i,middlewareData:p}},Ie=e=>({name:`arrow`,options:e,async fn(t){let{x:n,y:r,placement:i,rects:a,platform:o,elements:s,middlewareData:c}=t,{element:l,padding:u=0}=V(e,t)||{};if(l==null)return{};let d=je(u),f={x:n,y:r},p=ye(i),m=_e(p),h=await o.getDimensions(l),g=p===`y`,_=g?`top`:`left`,v=g?`bottom`:`right`,y=g?`clientHeight`:`clientWidth`,b=a.reference[m]+a.reference[p]-f[p]-a.floating[m],x=f[p]-a.reference[p],S=await(o.getOffsetParent==null?void 0:o.getOffsetParent(l)),C=S?S[y]:0;(!C||!await(o.isElement==null?void 0:o.isElement(S)))&&(C=s.floating[y]||a.floating[m]);let w=b/2-x/2,T=C/2-h[m]/2-1,E=R(d[_],T),D=R(d[v],T),O=E,k=C-h[m]-D,A=C/2-h[m]/2+w,j=he(O,A,k),M=!c.arrow&&U(i)!=null&&A!==j&&a.reference[m]/2-(A<O?E:D)-h[m]/2<0,N=M?A<O?A-O:A-k:0;return{[p]:f[p]+N,data:{[p]:j,centerOffset:A-j-N,...M&&{alignmentOffset:N}},reset:M}}}),Le=function(e){return e===void 0&&(e={}),{name:`flip`,options:e,async fn(t){var n;let{placement:r,middlewareData:i,rects:a,initialPlacement:o,platform:s,elements:c}=t,{mainAxis:l=!0,crossAxis:u=!0,fallbackPlacements:d,fallbackStrategy:f=`bestFit`,fallbackAxisSideDirection:p=`none`,flipAlignment:m=!0,...h}=V(e,t);if((n=i.arrow)!=null&&n.alignmentOffset)return{};let g=H(r),_=W(o),v=H(o)===o,y=await(s.isRTL==null?void 0:s.isRTL(c.floating)),b=d||(v||!m?[ke(o)]:xe(o)),x=p!==`none`;!d&&x&&b.push(...Oe(o,m,p,y));let S=[o,...b],C=await s.detectOverflow(t,h),w=[],T=i.flip?.overflows||[];if(l&&w.push(C[g]),u){let e=be(r,a,y);w.push(C[e[0]],C[e[1]])}if(T=[...T,{placement:r,overflows:w}],!w.every(e=>e<=0)){let e=(i.flip?.index||0)+1,t=S[e];if(t&&(!(u===`alignment`&&_!==W(t))||T.every(e=>W(e.placement)===_?e.overflows[0]>0:!0)))return{data:{index:e,overflows:T},reset:{placement:t}};let n=T.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0]?.placement;if(!n)switch(f){case`bestFit`:{let e=T.filter(e=>{if(x){let t=W(e.placement);return t===_||t===`y`}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0]?.[0];e&&(n=e);break}case`initialPlacement`:n=o;break}if(r!==n)return{reset:{placement:n}}}return{}}}};function Re(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function ze(e){return ue.some(t=>e[t]>=0)}var Be=function(e){return e===void 0&&(e={}),{name:`hide`,options:e,async fn(t){let{rects:n,platform:r}=t,{strategy:i=`referenceHidden`,...a}=V(e,t);switch(i){case`referenceHidden`:{let e=Re(await r.detectOverflow(t,{...a,elementContext:`reference`}),n.reference);return{data:{referenceHiddenOffsets:e,referenceHidden:ze(e)}}}case`escaped`:{let e=Re(await r.detectOverflow(t,{...a,altBoundary:!0}),n.floating);return{data:{escapedOffsets:e,escaped:ze(e)}}}default:return{}}}}},Ve=new Set([`left`,`top`]);async function He(e,t){let{placement:n,platform:r,elements:i}=e,a=await(r.isRTL==null?void 0:r.isRTL(i.floating)),o=H(n),s=U(n),c=W(n)===`y`,l=Ve.has(o)?-1:1,u=a&&c?-1:1,d=V(t,e),{mainAxis:f,crossAxis:p,alignmentAxis:m}=typeof d==`number`?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return s&&typeof m==`number`&&(p=s===`end`?m*-1:m),c?{x:p*u,y:f*l}:{x:f*l,y:p*u}}var Ue=function(e){return e===void 0&&(e=0),{name:`offset`,options:e,async fn(t){var n;let{x:r,y:i,placement:a,middlewareData:o}=t,s=await He(t,e);return a===o.offset?.placement&&(n=o.arrow)!=null&&n.alignmentOffset?{}:{x:r+s.x,y:i+s.y,data:{...s,placement:a}}}}},We=function(e){return e===void 0&&(e={}),{name:`shift`,options:e,async fn(t){let{x:n,y:r,placement:i,platform:a}=t,{mainAxis:o=!0,crossAxis:s=!1,limiter:c={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=V(e,t),u={x:n,y:r},d=await a.detectOverflow(t,l),f=W(H(i)),p=ge(f),m=u[p],h=u[f];if(o){let e=p===`y`?`top`:`left`,t=p===`y`?`bottom`:`right`,n=m+d[e],r=m-d[t];m=he(n,m,r)}if(s){let e=f===`y`?`top`:`left`,t=f===`y`?`bottom`:`right`,n=h+d[e],r=h-d[t];h=he(n,h,r)}let g=c.fn({...t,[p]:m,[f]:h});return{...g,data:{x:g.x-n,y:g.y-r,enabled:{[p]:o,[f]:s}}}}}},Ge=function(e){return e===void 0&&(e={}),{options:e,fn(t){let{x:n,y:r,placement:i,rects:a,middlewareData:o}=t,{offset:s=0,mainAxis:c=!0,crossAxis:l=!0}=V(e,t),u={x:n,y:r},d=W(i),f=ge(d),p=u[f],m=u[d],h=V(s,t),g=typeof h==`number`?{mainAxis:h,crossAxis:0}:{mainAxis:0,crossAxis:0,...h};if(c){let e=f===`y`?`height`:`width`,t=a.reference[f]-a.floating[e]+g.mainAxis,n=a.reference[f]+a.reference[e]-g.mainAxis;p<t?p=t:p>n&&(p=n)}if(l){let e=f===`y`?`width`:`height`,t=Ve.has(H(i)),n=a.reference[d]-a.floating[e]+(t&&o.offset?.[d]||0)+(t?0:g.crossAxis),r=a.reference[d]+a.reference[e]+(t?0:o.offset?.[d]||0)-(t?g.crossAxis:0);m<n?m=n:m>r&&(m=r)}return{[f]:p,[d]:m}}}},Ke=function(e){return e===void 0&&(e={}),{name:`size`,options:e,async fn(t){var n,r;let{placement:i,rects:a,platform:o,elements:s}=t,{apply:c=()=>{},...l}=V(e,t),u=await o.detectOverflow(t,l),d=H(i),f=U(i),p=W(i)===`y`,{width:m,height:h}=a.floating,g,_;d===`top`||d===`bottom`?(g=d,_=f===(await(o.isRTL==null?void 0:o.isRTL(s.floating))?`start`:`end`)?`left`:`right`):(_=d,g=f===`end`?`top`:`bottom`);let v=h-u.top-u.bottom,y=m-u.left-u.right,b=R(h-u[g],v),x=R(m-u[_],y),S=!t.middlewareData.shift,C=b,w=x;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(w=y),(r=t.middlewareData.shift)!=null&&r.enabled.y&&(C=v),S&&!f){let e=z(u.left,0),t=z(u.right,0),n=z(u.top,0),r=z(u.bottom,0);p?w=m-2*(e!==0||t!==0?e+t:z(u.left,u.right)):C=h-2*(n!==0||r!==0?n+r:z(u.top,u.bottom))}await c({...t,availableWidth:w,availableHeight:C});let T=await o.getDimensions(s.floating);return m!==T.width||h!==T.height?{reset:{rects:!0}}:{}}}};function qe(){return typeof window<`u`}function G(e){return Je(e)?(e.nodeName||``).toLowerCase():`#document`}function K(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function q(e){return((Je(e)?e.ownerDocument:e.document)||window.document)?.documentElement}function Je(e){return qe()?e instanceof Node||e instanceof K(e).Node:!1}function J(e){return qe()?e instanceof Element||e instanceof K(e).Element:!1}function Y(e){return qe()?e instanceof HTMLElement||e instanceof K(e).HTMLElement:!1}function Ye(e){return!qe()||typeof ShadowRoot>`u`?!1:e instanceof ShadowRoot||e instanceof K(e).ShadowRoot}var Xe=new Set([`inline`,`contents`]);function Ze(e){let{overflow:t,overflowX:n,overflowY:r,display:i}=Z(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!Xe.has(i)}var Qe=new Set([`table`,`td`,`th`]);function $e(e){return Qe.has(G(e))}var et=[`:popover-open`,`:modal`];function tt(e){return et.some(t=>{try{return e.matches(t)}catch{return!1}})}var nt=[`transform`,`translate`,`scale`,`rotate`,`perspective`],rt=[`transform`,`translate`,`scale`,`rotate`,`perspective`,`filter`],it=[`paint`,`layout`,`strict`,`content`];function at(e){let t=st(),n=J(e)?Z(e):e;return nt.some(e=>n[e]?n[e]!==`none`:!1)||(n.containerType?n.containerType!==`normal`:!1)||!t&&(n.backdropFilter?n.backdropFilter!==`none`:!1)||!t&&(n.filter?n.filter!==`none`:!1)||rt.some(e=>(n.willChange||``).includes(e))||it.some(e=>(n.contain||``).includes(e))}function ot(e){let t=Q(e);for(;Y(t)&&!X(t);){if(at(t))return t;if(tt(t))return null;t=Q(t)}return null}function st(){return typeof CSS>`u`||!CSS.supports?!1:CSS.supports(`-webkit-backdrop-filter`,`none`)}var ct=new Set([`html`,`body`,`#document`]);function X(e){return ct.has(G(e))}function Z(e){return K(e).getComputedStyle(e)}function lt(e){return J(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Q(e){if(G(e)===`html`)return e;let t=e.assignedSlot||e.parentNode||Ye(e)&&e.host||q(e);return Ye(t)?t.host:t}function ut(e){let t=Q(e);return X(t)?e.ownerDocument?e.ownerDocument.body:e.body:Y(t)&&Ze(t)?t:ut(t)}function dt(e,t,n){t===void 0&&(t=[]),n===void 0&&(n=!0);let r=ut(e),i=r===e.ownerDocument?.body,a=K(r);if(i){let e=ft(a);return t.concat(a,a.visualViewport||[],Ze(r)?r:[],e&&n?dt(e):[])}return t.concat(r,dt(r,[],n))}function ft(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function pt(e){let t=Z(e),n=parseFloat(t.width)||0,r=parseFloat(t.height)||0,i=Y(e),a=i?e.offsetWidth:n,o=i?e.offsetHeight:r,s=de(n)!==a||de(r)!==o;return s&&(n=a,r=o),{width:n,height:r,$:s}}function mt(e){return J(e)?e:e.contextElement}function ht(e){let t=mt(e);if(!Y(t))return B(1);let n=t.getBoundingClientRect(),{width:r,height:i,$:a}=pt(t),o=(a?de(n.width):n.width)/r,s=(a?de(n.height):n.height)/i;return(!o||!Number.isFinite(o))&&(o=1),(!s||!Number.isFinite(s))&&(s=1),{x:o,y:s}}var gt=B(0);function _t(e){let t=K(e);return!st()||!t.visualViewport?gt:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function vt(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==K(e)?!1:t}function $(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);let i=e.getBoundingClientRect(),a=mt(e),o=B(1);t&&(r?J(r)&&(o=ht(r)):o=ht(e));let s=vt(a,n,r)?_t(a):B(0),c=(i.left+s.x)/o.x,l=(i.top+s.y)/o.y,u=i.width/o.x,d=i.height/o.y;if(a){let e=K(a),t=r&&J(r)?K(r):r,n=e,i=ft(n);for(;i&&r&&t!==n;){let e=ht(i),t=i.getBoundingClientRect(),r=Z(i),a=t.left+(i.clientLeft+parseFloat(r.paddingLeft))*e.x,o=t.top+(i.clientTop+parseFloat(r.paddingTop))*e.y;c*=e.x,l*=e.y,u*=e.x,d*=e.y,c+=a,l+=o,n=K(i),i=ft(n)}}return Me({width:u,height:d,x:c,y:l})}function yt(e,t){let n=lt(e).scrollLeft;return t?t.left+n:$(q(e)).left+n}function bt(e,t){let n=e.getBoundingClientRect();return{x:n.left+t.scrollLeft-yt(e,n),y:n.top+t.scrollTop}}function xt(e){let{elements:t,rect:n,offsetParent:r,strategy:i}=e,a=i===`fixed`,o=q(r),s=t?tt(t.floating):!1;if(r===o||s&&a)return n;let c={scrollLeft:0,scrollTop:0},l=B(1),u=B(0),d=Y(r);if((d||!d&&!a)&&((G(r)!==`body`||Ze(o))&&(c=lt(r)),Y(r))){let e=$(r);l=ht(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}let f=o&&!d&&!a?bt(o,c):B(0);return{width:n.width*l.x,height:n.height*l.y,x:n.x*l.x-c.scrollLeft*l.x+u.x+f.x,y:n.y*l.y-c.scrollTop*l.y+u.y+f.y}}function St(e){return Array.from(e.getClientRects())}function Ct(e){let t=q(e),n=lt(e),r=e.ownerDocument.body,i=z(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),a=z(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight),o=-n.scrollLeft+yt(e),s=-n.scrollTop;return Z(r).direction===`rtl`&&(o+=z(t.clientWidth,r.clientWidth)-i),{width:i,height:a,x:o,y:s}}var wt=25;function Tt(e,t){let n=K(e),r=q(e),i=n.visualViewport,a=r.clientWidth,o=r.clientHeight,s=0,c=0;if(i){a=i.width,o=i.height;let e=st();(!e||e&&t===`fixed`)&&(s=i.offsetLeft,c=i.offsetTop)}let l=yt(r);if(l<=0){let e=r.ownerDocument,t=e.body,n=getComputedStyle(t),i=e.compatMode===`CSS1Compat`&&parseFloat(n.marginLeft)+parseFloat(n.marginRight)||0,o=Math.abs(r.clientWidth-t.clientWidth-i);o<=wt&&(a-=o)}else l<=wt&&(a+=l);return{width:a,height:o,x:s,y:c}}var Et=new Set([`absolute`,`fixed`]);function Dt(e,t){let n=$(e,!0,t===`fixed`),r=n.top+e.clientTop,i=n.left+e.clientLeft,a=Y(e)?ht(e):B(1);return{width:e.clientWidth*a.x,height:e.clientHeight*a.y,x:i*a.x,y:r*a.y}}function Ot(e,t,n){let r;if(t===`viewport`)r=Tt(e,n);else if(t===`document`)r=Ct(q(e));else if(J(t))r=Dt(t,n);else{let n=_t(e);r={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return Me(r)}function kt(e,t){let n=Q(e);return n===t||!J(n)||X(n)?!1:Z(n).position===`fixed`||kt(n,t)}function At(e,t){let n=t.get(e);if(n)return n;let r=dt(e,[],!1).filter(e=>J(e)&&G(e)!==`body`),i=null,a=Z(e).position===`fixed`,o=a?Q(e):e;for(;J(o)&&!X(o);){let t=Z(o),n=at(o);!n&&t.position===`fixed`&&(i=null),(a?!n&&!i:!n&&t.position===`static`&&i&&Et.has(i.position)||Ze(o)&&!n&&kt(e,o))?r=r.filter(e=>e!==o):i=t,o=Q(o)}return t.set(e,r),r}function jt(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e,a=[...n===`clippingAncestors`?tt(t)?[]:At(t,this._c):[].concat(n),r],o=a[0],s=a.reduce((e,n)=>{let r=Ot(t,n,i);return e.top=z(r.top,e.top),e.right=R(r.right,e.right),e.bottom=R(r.bottom,e.bottom),e.left=z(r.left,e.left),e},Ot(t,o,i));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}}function Mt(e){let{width:t,height:n}=pt(e);return{width:t,height:n}}function Nt(e,t,n){let r=Y(t),i=q(t),a=n===`fixed`,o=$(e,!0,a,t),s={scrollLeft:0,scrollTop:0},c=B(0);function l(){c.x=yt(i)}if(r||!r&&!a)if((G(t)!==`body`||Ze(i))&&(s=lt(t)),r){let e=$(t,!0,a,t);c.x=e.x+t.clientLeft,c.y=e.y+t.clientTop}else i&&l();a&&!r&&i&&l();let u=i&&!r&&!a?bt(i,s):B(0);return{x:o.left+s.scrollLeft-c.x-u.x,y:o.top+s.scrollTop-c.y-u.y,width:o.width,height:o.height}}function Pt(e){return Z(e).position===`static`}function Ft(e,t){if(!Y(e)||Z(e).position===`fixed`)return null;if(t)return t(e);let n=e.offsetParent;return q(e)===n&&(n=n.ownerDocument.body),n}function It(e,t){let n=K(e);if(tt(e))return n;if(!Y(e)){let t=Q(e);for(;t&&!X(t);){if(J(t)&&!Pt(t))return t;t=Q(t)}return n}let r=Ft(e,t);for(;r&&$e(r)&&Pt(r);)r=Ft(r,t);return r&&X(r)&&Pt(r)&&!at(r)?n:r||ot(e)||n}var Lt=async function(e){let t=this.getOffsetParent||It,n=this.getDimensions,r=await n(e.floating);return{reference:Nt(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}};function Rt(e){return Z(e).direction===`rtl`}var zt={convertOffsetParentRelativeRectToViewportRelativeRect:xt,getDocumentElement:q,getClippingRect:jt,getOffsetParent:It,getElementRects:Lt,getClientRects:St,getDimensions:Mt,getScale:ht,isElement:J,isRTL:Rt};function Bt(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function Vt(e,t){let n=null,r,i=q(e);function a(){var e;clearTimeout(r),(e=n)==null||e.disconnect(),n=null}function o(s,c){s===void 0&&(s=!1),c===void 0&&(c=1),a();let l=e.getBoundingClientRect(),{left:u,top:d,width:f,height:p}=l;if(s||t(),!f||!p)return;let m=fe(d),h=fe(i.clientWidth-(u+f)),g=fe(i.clientHeight-(d+p)),_=fe(u),v={rootMargin:-m+`px `+-h+`px `+-g+`px `+-_+`px`,threshold:z(0,R(1,c))||1},y=!0;function b(t){let n=t[0].intersectionRatio;if(n!==c){if(!y)return o();n?o(!1,n):r=setTimeout(()=>{o(!1,1e-7)},1e3)}n===1&&!Bt(l,e.getBoundingClientRect())&&o(),y=!1}try{n=new IntersectionObserver(b,{...v,root:i.ownerDocument})}catch{n=new IntersectionObserver(b,v)}n.observe(e)}return o(!0),a}function Ht(e,t,n,r){r===void 0&&(r={});let{ancestorScroll:i=!0,ancestorResize:a=!0,elementResize:o=typeof ResizeObserver==`function`,layoutShift:s=typeof IntersectionObserver==`function`,animationFrame:c=!1}=r,l=mt(e),u=i||a?[...l?dt(l):[],...dt(t)]:[];u.forEach(e=>{i&&e.addEventListener(`scroll`,n,{passive:!0}),a&&e.addEventListener(`resize`,n)});let d=l&&s?Vt(l,n):null,f=-1,p=null;o&&(p=new ResizeObserver(e=>{let[r]=e;r&&r.target===l&&p&&(p.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var e;(e=p)==null||e.observe(t)})),n()}),l&&!c&&p.observe(l),p.observe(t));let m,h=c?$(e):null;c&&g();function g(){let t=$(e);h&&!Bt(h,t)&&n(),h=t,m=requestAnimationFrame(g)}return n(),()=>{var e;u.forEach(e=>{i&&e.removeEventListener(`scroll`,n),a&&e.removeEventListener(`resize`,n)}),d?.(),(e=p)==null||e.disconnect(),p=null,c&&cancelAnimationFrame(m)}}var Ut=Ue,Wt=We,Gt=Le,Kt=Ke,qt=Be,Jt=Ie,Yt=Ge,Xt=(e,t,n)=>{let r=new Map,i={platform:zt,...n},a={...i.platform,_c:r};return Fe(e,t,{...i,platform:a})},Zt=typeof document<`u`?a.useLayoutEffect:function(){};function Qt(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e==`function`&&e.toString()===t.toString())return!0;let n,r,i;if(e&&t&&typeof e==`object`){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;r--!==0;)if(!Qt(e[r],t[r]))return!1;return!0}if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!{}.hasOwnProperty.call(t,i[r]))return!1;for(r=n;r--!==0;){let n=i[r];if(!(n===`_owner`&&e.$$typeof)&&!Qt(e[n],t[n]))return!1}return!0}return e!==e&&t!==t}function $t(e){return typeof window>`u`?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function en(e,t){let n=$t(e);return Math.round(t*n)/n}function tn(e){let t=a.useRef(e);return Zt(()=>{t.current=e}),t}function nn(e){e===void 0&&(e={});let{placement:t=`bottom`,strategy:n=`absolute`,middleware:r=[],platform:i,elements:{reference:o,floating:s}={},transform:c=!0,whileElementsMounted:l,open:u}=e,[d,f]=a.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,m]=a.useState(r);Qt(p,r)||m(r);let[h,g]=a.useState(null),[_,v]=a.useState(null),y=a.useCallback(e=>{e!==C.current&&(C.current=e,g(e))},[]),b=a.useCallback(e=>{e!==w.current&&(w.current=e,v(e))},[]),x=o||h,S=s||_,C=a.useRef(null),w=a.useRef(null),T=a.useRef(d),E=l!=null,D=tn(l),k=tn(i),A=tn(u),j=a.useCallback(()=>{if(!C.current||!w.current)return;let e={placement:t,strategy:n,middleware:p};k.current&&(e.platform=k.current),Xt(C.current,w.current,e).then(e=>{let t={...e,isPositioned:A.current!==!1};M.current&&!Qt(T.current,t)&&(T.current=t,O.flushSync(()=>{f(t)}))})},[p,t,n,k,A]);Zt(()=>{u===!1&&T.current.isPositioned&&(T.current.isPositioned=!1,f(e=>({...e,isPositioned:!1})))},[u]);let M=a.useRef(!1);Zt(()=>(M.current=!0,()=>{M.current=!1}),[]),Zt(()=>{if(x&&(C.current=x),S&&(w.current=S),x&&S){if(D.current)return D.current(x,S,j);j()}},[x,S,j,D,E]);let N=a.useMemo(()=>({reference:C,floating:w,setReference:y,setFloating:b}),[y,b]),P=a.useMemo(()=>({reference:x,floating:S}),[x,S]),F=a.useMemo(()=>{let e={position:n,left:0,top:0};if(!P.floating)return e;let t=en(P.floating,d.x),r=en(P.floating,d.y);return c?{...e,transform:`translate(`+t+`px, `+r+`px)`,...$t(P.floating)>=1.5&&{willChange:`transform`}}:{position:n,left:t,top:r}},[n,c,P.floating,d.x,d.y]);return a.useMemo(()=>({...d,update:j,refs:N,elements:P,floatingStyles:F}),[d,j,N,P,F])}var rn=e=>{function t(e){return{}.hasOwnProperty.call(e,`current`)}return{name:`arrow`,options:e,fn(n){let{element:r,padding:i}=typeof e==`function`?e(n):e;return r&&t(r)?r.current==null?{}:Jt({element:r.current,padding:i}).fn(n):r?Jt({element:r,padding:i}).fn(n):{}}}},an=(e,t)=>({...Ut(e),options:[e,t]}),on=(e,t)=>({...Wt(e),options:[e,t]}),sn=(e,t)=>({...Yt(e),options:[e,t]}),cn=(e,t)=>({...Gt(e),options:[e,t]}),ln=(e,t)=>({...Kt(e),options:[e,t]}),un=(e,t)=>({...qt(e),options:[e,t]}),dn=(e,t)=>({...rn(e),options:[e,t]}),fn=`Arrow`,pn=a.forwardRef((e,t)=>{let{children:n,width:r=10,height:i=5,...a}=e;return(0,l.jsx)(k.svg,{...a,ref:t,width:r,height:i,viewBox:`0 0 30 10`,preserveAspectRatio:`none`,children:e.asChild?n:(0,l.jsx)(`polygon`,{points:`0,0 30,0 15,10`})})});pn.displayName=fn;var mn=pn;function hn(e){let[t,n]=a.useState(void 0);return p(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});let t=new ResizeObserver(t=>{if(!Array.isArray(t)||!t.length)return;let r=t[0],i,a;if(`borderBoxSize`in r){let e=r.borderBoxSize,t=Array.isArray(e)?e[0]:e;i=t.inlineSize,a=t.blockSize}else i=e.offsetWidth,a=e.offsetHeight;n({width:i,height:a})});return t.observe(e,{box:`border-box`}),()=>t.unobserve(e)}else n(void 0)},[e]),t}var gn=`Popper`,[_n,vn]=d(gn),[yn,bn]=_n(gn),xn=e=>{let{__scopePopper:t,children:n}=e,[r,i]=a.useState(null);return(0,l.jsx)(yn,{scope:t,anchor:r,onAnchorChange:i,children:n})};xn.displayName=gn;var Sn=`PopperAnchor`,Cn=a.forwardRef((e,t)=>{let{__scopePopper:n,virtualRef:r,...i}=e,o=bn(Sn,n),s=a.useRef(null),u=c(t,s),d=a.useRef(null);return a.useEffect(()=>{let e=d.current;d.current=r?.current||s.current,e!==d.current&&o.onAnchorChange(d.current)}),r?null:(0,l.jsx)(k.div,{...i,ref:u})});Cn.displayName=Sn;var wn=`PopperContent`,[Tn,En]=_n(wn),Dn=a.forwardRef((e,t)=>{let{__scopePopper:n,side:r=`bottom`,sideOffset:i=0,align:o=`center`,alignOffset:s=0,arrowPadding:u=0,avoidCollisions:d=!0,collisionBoundary:f=[],collisionPadding:m=0,sticky:h=`partial`,hideWhenDetached:g=!1,updatePositionStrategy:_=`optimized`,onPlaced:v,...y}=e,b=bn(wn,n),[x,S]=a.useState(null),C=c(t,e=>S(e)),[w,T]=a.useState(null),E=hn(w),D=E?.width??0,O=E?.height??0,A=r+(o===`center`?``:`-`+o),M=typeof m==`number`?m:{top:0,right:0,bottom:0,left:0,...m},N=Array.isArray(f)?f:[f],P=N.length>0,F={padding:M,boundary:N.filter(jn),altBoundary:P},{refs:ee,floatingStyles:te,placement:ne,isPositioned:I,middlewareData:L}=nn({strategy:`fixed`,placement:A,whileElementsMounted:(...e)=>Ht(...e,{animationFrame:_===`always`}),elements:{reference:b.anchor},middleware:[an({mainAxis:i+O,alignmentAxis:s}),d&&on({mainAxis:!0,crossAxis:!1,limiter:h===`partial`?sn():void 0,...F}),d&&cn({...F}),ln({...F,apply:({elements:e,rects:t,availableWidth:n,availableHeight:r})=>{let{width:i,height:a}=t.reference,o=e.floating.style;o.setProperty(`--radix-popper-available-width`,`${n}px`),o.setProperty(`--radix-popper-available-height`,`${r}px`),o.setProperty(`--radix-popper-anchor-width`,`${i}px`),o.setProperty(`--radix-popper-anchor-height`,`${a}px`)}}),w&&dn({element:w,padding:u}),Mn({arrowWidth:D,arrowHeight:O}),g&&un({strategy:`referenceHidden`,...F})]}),[re,ie]=Nn(ne),ae=j(v);p(()=>{I&&ae?.()},[I,ae]);let oe=L.arrow?.x,se=L.arrow?.y,ce=L.arrow?.centerOffset!==0,[le,ue]=a.useState();return p(()=>{x&&ue(window.getComputedStyle(x).zIndex)},[x]),(0,l.jsx)(`div`,{ref:ee.setFloating,"data-radix-popper-content-wrapper":``,style:{...te,transform:I?te.transform:`translate(0, -200%)`,minWidth:`max-content`,zIndex:le,"--radix-popper-transform-origin":[L.transformOrigin?.x,L.transformOrigin?.y].join(` `),...L.hide?.referenceHidden&&{visibility:`hidden`,pointerEvents:`none`}},dir:e.dir,children:(0,l.jsx)(Tn,{scope:n,placedSide:re,onArrowChange:T,arrowX:oe,arrowY:se,shouldHideArrow:ce,children:(0,l.jsx)(k.div,{"data-side":re,"data-align":ie,...y,ref:C,style:{...y.style,animation:I?void 0:`none`}})})})});Dn.displayName=wn;var On=`PopperArrow`,kn={top:`bottom`,right:`left`,bottom:`top`,left:`right`},An=a.forwardRef(function(e,t){let{__scopePopper:n,...r}=e,i=En(On,n),a=kn[i.placedSide];return(0,l.jsx)(`span`,{ref:i.onArrowChange,style:{position:`absolute`,left:i.arrowX,top:i.arrowY,[a]:0,transformOrigin:{top:``,right:`0 0`,bottom:`center 0`,left:`100% 0`}[i.placedSide],transform:{top:`translateY(100%)`,right:`translateY(50%) rotate(90deg) translateX(-50%)`,bottom:`rotate(180deg)`,left:`translateY(50%) rotate(-90deg) translateX(50%)`}[i.placedSide],visibility:i.shouldHideArrow?`hidden`:void 0},children:(0,l.jsx)(mn,{...r,ref:t,style:{...r.style,display:`block`}})})});An.displayName=On;function jn(e){return e!==null}var Mn=e=>({name:`transformOrigin`,options:e,fn(t){let{placement:n,rects:r,middlewareData:i}=t,a=i.arrow?.centerOffset!==0,o=a?0:e.arrowWidth,s=a?0:e.arrowHeight,[c,l]=Nn(n),u={start:`0%`,center:`50%`,end:`100%`}[l],d=(i.arrow?.x??0)+o/2,f=(i.arrow?.y??0)+s/2,p=``,m=``;return c===`bottom`?(p=a?u:`${d}px`,m=`${-s}px`):c===`top`?(p=a?u:`${d}px`,m=`${r.floating.height+s}px`):c===`right`?(p=`${-s}px`,m=a?u:`${f}px`):c===`left`&&(p=`${r.floating.width+s}px`,m=a?u:`${f}px`),{data:{x:p,y:m}}}});function Nn(e){let[t,n=`center`]=e.split(`-`);return[t,n]}var Pn=xn,Fn=Cn,In=Dn,Ln=An,Rn=Object.freeze({position:`absolute`,border:0,width:1,height:1,padding:0,margin:-1,overflow:`hidden`,clip:`rect(0, 0, 0, 0)`,whiteSpace:`nowrap`,wordWrap:`normal`}),zn=`VisuallyHidden`,Bn=a.forwardRef((e,t)=>(0,l.jsx)(k.span,{...e,ref:t,style:{...Rn,...e.style}}));Bn.displayName=zn;var Vn=Bn;export{u as _,In as a,i as b,le as c,k as d,x as f,p as g,g as h,Ln as i,I as l,v as m,Rn as n,Pn as o,w as p,Fn as r,vn as s,Vn as t,j as u,d as v,c as y};
@@ -1 +1 @@
1
- import{i as e}from"./chunk-DseTPa7n.js";import{H as t}from"./react-8iBFECZE.js";import{g as n,y as r}from"./dist-Cy_e4kNb.js";var i=e(t(),1);function a(e,t){return i.useReducer((e,n)=>t[e][n]??e,e)}var o=e=>{let{present:t,children:n}=e,a=s(t),o=typeof n==`function`?n({present:a.isPresent}):i.Children.only(n),c=r(a.ref,l(o));return typeof n==`function`||a.isPresent?i.cloneElement(o,{ref:c}):null};o.displayName=`Presence`;function s(e){let[t,r]=i.useState(),o=i.useRef(null),s=i.useRef(e),l=i.useRef(`none`),[u,d]=a(e?`mounted`:`unmounted`,{mounted:{UNMOUNT:`unmounted`,ANIMATION_OUT:`unmountSuspended`},unmountSuspended:{MOUNT:`mounted`,ANIMATION_END:`unmounted`},unmounted:{MOUNT:`mounted`}});return i.useEffect(()=>{let e=c(o.current);l.current=u===`mounted`?e:`none`},[u]),n(()=>{let t=o.current,n=s.current;if(n!==e){let r=l.current,i=c(t);e?d(`MOUNT`):i===`none`||t?.display===`none`?d(`UNMOUNT`):d(n&&r!==i?`ANIMATION_OUT`:`UNMOUNT`),s.current=e}},[e,d]),n(()=>{if(t){let e,n=t.ownerDocument.defaultView??window,r=r=>{let i=c(o.current).includes(CSS.escape(r.animationName));if(r.target===t&&i&&(d(`ANIMATION_END`),!s.current)){let r=t.style.animationFillMode;t.style.animationFillMode=`forwards`,e=n.setTimeout(()=>{t.style.animationFillMode===`forwards`&&(t.style.animationFillMode=r)})}},i=e=>{e.target===t&&(l.current=c(o.current))};return t.addEventListener(`animationstart`,i),t.addEventListener(`animationcancel`,r),t.addEventListener(`animationend`,r),()=>{n.clearTimeout(e),t.removeEventListener(`animationstart`,i),t.removeEventListener(`animationcancel`,r),t.removeEventListener(`animationend`,r)}}else d(`ANIMATION_END`)},[t,d]),{isPresent:[`mounted`,`unmountSuspended`].includes(u),ref:i.useCallback(e=>{o.current=e?getComputedStyle(e):null,r(e)},[])}}function c(e){return e?.animationName||`none`}function l(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}export{o as t};
1
+ import{i as e}from"./chunk-DseTPa7n.js";import{H as t}from"./react-Co6JiC1n.js";import{g as n,y as r}from"./dist-_UMsWSY0.js";var i=e(t(),1);function a(e,t){return i.useReducer((e,n)=>t[e][n]??e,e)}var o=e=>{let{present:t,children:n}=e,a=s(t),o=typeof n==`function`?n({present:a.isPresent}):i.Children.only(n),c=r(a.ref,l(o));return typeof n==`function`||a.isPresent?i.cloneElement(o,{ref:c}):null};o.displayName=`Presence`;function s(e){let[t,r]=i.useState(),o=i.useRef(null),s=i.useRef(e),l=i.useRef(`none`),[u,d]=a(e?`mounted`:`unmounted`,{mounted:{UNMOUNT:`unmounted`,ANIMATION_OUT:`unmountSuspended`},unmountSuspended:{MOUNT:`mounted`,ANIMATION_END:`unmounted`},unmounted:{MOUNT:`mounted`}});return i.useEffect(()=>{let e=c(o.current);l.current=u===`mounted`?e:`none`},[u]),n(()=>{let t=o.current,n=s.current;if(n!==e){let r=l.current,i=c(t);e?d(`MOUNT`):i===`none`||t?.display===`none`?d(`UNMOUNT`):d(n&&r!==i?`ANIMATION_OUT`:`UNMOUNT`),s.current=e}},[e,d]),n(()=>{if(t){let e,n=t.ownerDocument.defaultView??window,r=r=>{let i=c(o.current).includes(CSS.escape(r.animationName));if(r.target===t&&i&&(d(`ANIMATION_END`),!s.current)){let r=t.style.animationFillMode;t.style.animationFillMode=`forwards`,e=n.setTimeout(()=>{t.style.animationFillMode===`forwards`&&(t.style.animationFillMode=r)})}},i=e=>{e.target===t&&(l.current=c(o.current))};return t.addEventListener(`animationstart`,i),t.addEventListener(`animationcancel`,r),t.addEventListener(`animationend`,r),()=>{n.clearTimeout(e),t.removeEventListener(`animationstart`,i),t.removeEventListener(`animationcancel`,r),t.removeEventListener(`animationend`,r)}}else d(`ANIMATION_END`)},[t,d]),{isPresent:[`mounted`,`unmountSuspended`].includes(u),ref:i.useCallback(e=>{o.current=e?getComputedStyle(e):null,r(e)},[])}}function c(e){return e?.animationName||`none`}function l(e){let t=Object.getOwnPropertyDescriptor(e.props,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,`ref`)?.get,n=t&&`isReactWarning`in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}export{o as t};