@birdapi/velinstyle 1.2.1 → 1.3.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 (156) hide show
  1. package/README.de.md +148 -11
  2. package/README.md +174 -16
  3. package/cli/__fixtures__/atelier-library/showcases/01-login/app.css +1 -0
  4. package/cli/__fixtures__/atelier-library/showcases/01-login/app.js +2 -0
  5. package/cli/__fixtures__/atelier-library/showcases/01-login/index.html +5 -0
  6. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.css +1 -0
  7. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.js +2 -0
  8. package/cli/__fixtures__/atelier-library/showcases/04-pricing/index.html +5 -0
  9. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.css +1 -0
  10. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.js +2 -0
  11. package/cli/__fixtures__/atelier-library/showcases/36-calendar/index.html +5 -0
  12. package/cli/atelier-catalog.json +1267 -0
  13. package/cli/atelier-formats.js +159 -0
  14. package/cli/atelier.js +382 -0
  15. package/cli/blueprints/empty-state.html +3 -5
  16. package/cli/cli-manifest.json +441 -161
  17. package/cli/docgen/extract-cli.js +2 -1
  18. package/cli/docs-generate.js +9 -0
  19. package/cli/experience.js +173 -0
  20. package/cli/index.js +1384 -361
  21. package/cli/motion.js +738 -0
  22. package/cli/production/component-graph.json +166 -0
  23. package/cli/production/explain.js +52 -0
  24. package/cli/production/extract.js +278 -0
  25. package/cli/production/graph.js +102 -0
  26. package/cli/production/report.js +168 -0
  27. package/cli/production/run.js +355 -0
  28. package/cli/production/trim-css.js +177 -0
  29. package/cli/production/trim-fonts.js +23 -0
  30. package/cli/production/trim-icons.js +38 -0
  31. package/cli/production/trim-js.js +48 -0
  32. package/cli/production/trim-motion.js +22 -0
  33. package/cli/production/trim-themes.js +50 -0
  34. package/cli/production/watch.js +38 -0
  35. package/cli/review.js +48 -1
  36. package/cli/scripts/write-atelier-fixtures.mjs +33 -0
  37. package/cli/security.js +190 -0
  38. package/cli/skills.js +53 -10
  39. package/cli/transparency.js +140 -41
  40. package/cli/workflow.js +32 -17
  41. package/components/index.js +3 -0
  42. package/components/runtime/component-loaders.js +3 -0
  43. package/components/velin-drawer.js +43 -4
  44. package/components/velin-empty-state.js +83 -0
  45. package/components/velin-modal.js +76 -15
  46. package/components/velin-otp-input.js +220 -0
  47. package/components/velin-password-strength.js +147 -0
  48. package/components/velin-sheet.js +49 -4
  49. package/components/velin-theme-toggle.js +15 -1
  50. package/core/a11y/component-contracts.json +391 -255
  51. package/core/attributes/registry.js +1 -1
  52. package/core/meta/knowledge/components.json +75 -3
  53. package/core/motion/analyze.js +38 -0
  54. package/core/motion/blueprint.js +51 -0
  55. package/core/motion/composer.js +114 -0
  56. package/core/motion/data/registry.json +352 -0
  57. package/core/motion/effects.js +17 -1
  58. package/core/motion/index.js +112 -9
  59. package/core/motion/optimize.js +44 -0
  60. package/core/motion/policy.js +77 -0
  61. package/core/motion/registry.js +131 -0
  62. package/core/motion/review.js +59 -0
  63. package/core/motion/scan.js +150 -0
  64. package/core/motion/timeline.js +68 -0
  65. package/core/motion/transitions.js +49 -0
  66. package/core/motion/triggers.js +168 -0
  67. package/core/security/checks/fs.js +92 -0
  68. package/core/security/detect.js +35 -0
  69. package/core/security/engine.js +116 -0
  70. package/core/security/index.js +18 -0
  71. package/core/security/registry.js +85 -0
  72. package/core/security/report/report.js +113 -0
  73. package/core/security/rules/ci/index.js +146 -0
  74. package/core/security/rules/consumer/index.js +174 -0
  75. package/core/security/rules/deps/index.js +182 -0
  76. package/core/security/rules/index.js +24 -0
  77. package/core/security/rules/publish/index.js +230 -0
  78. package/core/security/rules/repo/index.js +143 -0
  79. package/core/security/rules/secrets/index.js +133 -0
  80. package/core/security/score/dependency-health.js +53 -0
  81. package/core/security/score/release-health.js +66 -0
  82. package/core/security/score/score.js +102 -0
  83. package/core/security/timeline/timeline.js +76 -0
  84. package/dist/chunks/attributes-2ORR27KA.js +404 -0
  85. package/dist/chunks/attributes-HK7VIOLA.js +1080 -0
  86. package/dist/chunks/attributes-VRHHVNDO.js +1080 -0
  87. package/dist/chunks/chunk-MYKUI364.js +116 -0
  88. package/dist/chunks/chunk-NEVBPD5T.js +116 -0
  89. package/dist/chunks/chunk-Y6HN7HWX.js +116 -0
  90. package/dist/chunks/runtime-entry.js +1 -1
  91. package/dist/chunks/velin-drawer-A7Q7EBOS.js +162 -0
  92. package/dist/chunks/velin-empty-state-3NTUH2RF.js +81 -0
  93. package/dist/chunks/velin-modal-3MV4FYBK.js +231 -0
  94. package/dist/chunks/velin-otp-input-PSK42MM6.js +207 -0
  95. package/dist/chunks/velin-password-strength-TAXMLSED.js +136 -0
  96. package/dist/chunks/velin-sheet-N2VVYXFP.js +157 -0
  97. package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
  98. package/dist/llms.txt +4 -4
  99. package/dist/search-index.json +232 -5
  100. package/dist/velin-agent.json +433 -46
  101. package/dist/velinstyle-components.iife.js +3695 -2272
  102. package/dist/velinstyle-components.js +3698 -2271
  103. package/dist/velinstyle-components.min.js +262 -120
  104. package/dist/velinstyle.css +96 -13
  105. package/dist/velinstyle.d.ts +3 -0
  106. package/dist/velinstyle.min.css +1 -1
  107. package/package.json +19 -4
  108. package/packages/velinstyle-cli-core/package.json +11 -0
  109. package/packages/velinstyle-cli-core/src/config.js +84 -0
  110. package/packages/velinstyle-cli-core/src/contract.js +56 -0
  111. package/packages/velinstyle-cli-core/src/event-bus.js +50 -0
  112. package/packages/velinstyle-cli-core/src/index.js +18 -0
  113. package/packages/velinstyle-cli-core/src/lifecycle.js +33 -0
  114. package/packages/velinstyle-cli-core/src/runner.js +129 -0
  115. package/packages/velinstyle-cli-registry/data/commands.json +1216 -0
  116. package/packages/velinstyle-cli-registry/data/layouts.json +33 -0
  117. package/packages/velinstyle-cli-registry/data/widgets.json +35 -0
  118. package/packages/velinstyle-cli-registry/package.json +13 -0
  119. package/packages/velinstyle-cli-registry/src/index.js +88 -0
  120. package/packages/velinstyle-cli-renderer/package.json +8 -0
  121. package/packages/velinstyle-cli-renderer/src/index.js +286 -0
  122. package/packages/velinstyle-cli-theme/package.json +8 -0
  123. package/packages/velinstyle-cli-theme/src/index.js +84 -0
  124. package/packages/velinstyle-cli-ui/package.json +8 -0
  125. package/packages/velinstyle-cli-ui/src/index.js +34 -0
  126. package/packages/velinstyle-motion/README.md +81 -0
  127. package/packages/velinstyle-motion/package.json +37 -0
  128. package/packages/velinstyle-motion/src/ai/mini-prompt.js +119 -0
  129. package/packages/velinstyle-motion/src/ai/provider.js +59 -0
  130. package/packages/velinstyle-motion/src/ai/providers/pixverse-setup.js +402 -0
  131. package/packages/velinstyle-motion/src/ai/providers/pixverse.js +245 -0
  132. package/packages/velinstyle-motion/src/config.js +257 -0
  133. package/packages/velinstyle-motion/src/export/html-clip.js +141 -0
  134. package/packages/velinstyle-motion/src/index.js +304 -0
  135. package/packages/velinstyle-motion/src/jobs/cache.js +30 -0
  136. package/packages/velinstyle-motion/src/jobs/queue.js +69 -0
  137. package/packages/velinstyle-motion/src/jobs/usage.js +53 -0
  138. package/packages/velinstyle-motion/src/local/effects.js +139 -0
  139. package/packages/velinstyle-motion/src/local/engine.js +96 -0
  140. package/packages/velinstyle-motion/src/providers-catalog.js +44 -0
  141. package/packages/velinstyle-motion/src/registry/presets.js +25 -0
  142. package/packages/velinstyle-motion/src/registry/presets.json +85 -0
  143. package/packages/velinstyle-motion/src/ux/cost-gate.js +37 -0
  144. package/packages/velinstyle-motion/src/ux/pixverse-gate.js +153 -0
  145. package/packages/velinstyle-motion/src/ux/wizard.js +171 -0
  146. package/packages/velinstyle-motion/src/validate-image.js +91 -0
  147. package/packages/velinstyle-skills/catalog.json +1 -1
  148. package/packages/velinstyle-skills/registry.json +1 -142
  149. package/packages/velinstyle-skills/skills/velin-motion-reduced-safe/SKILL.md +1 -1
  150. package/packages/velinstyle-skills/skills/velin-motion-reveal-feedback/SKILL.md +1 -1
  151. package/src/components/data-table.css +19 -0
  152. package/src/components/empty-auth.css +33 -0
  153. package/src/components/table.css +16 -6
  154. package/src/tokens/motion.css +7 -0
  155. package/src/utilities/scroll-animation.css +66 -0
  156. package/src/velinstyle.css +1 -0
@@ -1,9 +1,18 @@
1
- var jc=Object.defineProperty;var h=(i,e)=>()=>(i&&(e=i(i=0)),e);var y=(i,e)=>{for(var t in e)jc(i,t,{get:e[t],enumerable:!0})};function Wc(i){if(i.hasAttribute("disabled")||i.getAttribute("aria-hidden")==="true"||i.closest("[inert]"))return!1;let e=i.ownerDocument.defaultView?.getComputedStyle(i);return e&&(e.visibility==="hidden"||e.display==="none")?!1:i.getClientRects().length>0}function fe(i){return[...i.querySelectorAll(Kc)].filter(Wc)}function ee(i,e){if(e.key!=="Tab")return;let t=fe(i);if(t.length===0)return;let r=t[0],n=t[t.length-1],o=i.getRootNode().activeElement;e.shiftKey&&o===r?(e.preventDefault(),n.focus()):!e.shiftKey&&o===n&&(e.preventDefault(),r.focus())}function te(i,e,t){let r=e.indexOf(t.target);if(r===-1)return;let n;switch(t.key){case"ArrowDown":case"ArrowRight":t.preventDefault(),n=(r+1)%e.length;break;case"ArrowUp":case"ArrowLeft":t.preventDefault(),n=(r-1+e.length)%e.length;break;case"Home":t.preventDefault(),n=0;break;case"End":t.preventDefault(),n=e.length-1;break;default:return}e.forEach((o,a)=>{o.setAttribute("tabindex",a===n?"0":"-1")}),e[n].focus()}function ae(){return document.activeElement}function le(i){i&&typeof i.focus=="function"&&i.focus()}function Gc(){let i=new Set;for(let e of Ye)for(let t of e.siblings)i.add(t);return i}function ce(i){let e=i instanceof HTMLElement?i:null;if(!e)return;let t=new Set;for(let r of document.body.children)r===e||r.contains(e)||r.hasAttribute("inert")||(r.setAttribute("inert",""),t.add(r));Ye.push({host:e,siblings:t}),pt===0&&(yr=document.body.style.overflow,document.body.style.overflow="hidden"),pt+=1}function G(i){let e=-1;if(i instanceof HTMLElement?e=Ye.findLastIndex(n=>n.host===i):Ye.length&&(e=Ye.length-1),e===-1)return;let{siblings:t}=Ye.splice(e,1)[0],r=Gc();for(let n of t)r.has(n)||n.removeAttribute("inert");pt=Math.max(0,pt-1),pt===0&&(document.body.style.overflow=yr,yr="")}var Kc,Ye,pt,yr,Z=h(()=>{Kc=["a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])",'[tabindex]:not([tabindex="-1"])',"summary","details"].join(", ");Ye=[],pt=0,yr=""});function Fo(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,r=Array(e);t<e;t++)r[t]=i[t];return r}function Yc(i){if(Array.isArray(i))return i}function Vc(i,e){var t=i==null?null:typeof Symbol<"u"&&i[Symbol.iterator]||i["@@iterator"];if(t!=null){var r,n,o,a,c=[],d=!0,m=!1;try{if(o=(t=t.call(i)).next,e!==0)for(;!(d=(r=o.call(t)).done)&&(c.push(r.value),c.length!==e);d=!0);}catch(_){m=!0,n=_}finally{try{if(!d&&t.return!=null&&(a=t.return(),Object(a)!==a))return}finally{if(m)throw n}}return c}}function Xc(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
2
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Zc(i,e){return Yc(i)||Vc(i,e)||Jc(i,e)||Xc()}function Jc(i,e){if(i){if(typeof i=="string")return Fo(i,e);var t={}.toString.call(i).slice(8,-1);return t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set"?Array.from(i):t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?Fo(i,e):void 0}}function F(i){return function(e){e instanceof RegExp&&(e.lastIndex=0);for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return kr(i,e,r)}}function ad(i){return function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return Sr(i,t)}}function E(i,e){let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:vt;if(Ho&&Ho(i,null),!Te(e))return i;let r=e.length;for(;r--;){let n=e[r];if(typeof n=="string"){let o=t(n);o!==n&&(Qc(e)||(e[r]=o),n=o)}i[n]=!0}return i}function ld(i){for(let e=0;e<i.length;e++)q(i,e)||(i[e]=null);return i}function V(i){let e=Ze(null);for(let r of Qo(i)){var t=Zc(r,2);let n=t[0],o=t[1];q(i,n)&&(Te(o)?e[n]=ld(o):o&&typeof o=="object"&&o.constructor===Object?e[n]=V(o):e[n]=o)}return e}function cd(i){switch(typeof i){case"string":return i;case"number":return od(i);case"boolean":return sd(i);case"bigint":return Uo?Uo(i):"0";case"symbol":return jo?jo(i):"Symbol()";case"undefined":return ft(i);case"function":case"object":{if(i===null)return ft(i);let e=i,t=ve(e,"toString");if(typeof t=="function"){let r=t(e);return typeof r=="string"?r:ft(r)}return ft(i)}default:return ft(i)}}function ve(i,e){for(;i!==null;){let r=td(i,e);if(r){if(r.get)return F(r.get);if(typeof r.value=="function")return F(r.value)}i=ed(i)}function t(){return null}return t}function dd(i){try{return P(i,""),!0}catch{return!1}}function ts(){let i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Ed(),e=p=>ts(p);if(e.version="3.4.12",e.removed=[],!i||!i.document||i.document.nodeType!==ie.document||!i.Element)return e.isSupported=!1,e;let t=i.document,r=t,n=r.currentScript;i.DocumentFragment;let o=i.HTMLTemplateElement,a=i.Node,c=i.Element,d=i.NodeFilter,m=i.NamedNodeMap;m===void 0&&(i.NamedNodeMap||i.MozNamedAttrMap),i.HTMLFormElement;let _=i.DOMParser,f=i.trustedTypes,v=c.prototype,C=ve(v,"cloneNode"),k=ve(v,"remove"),A=ve(v,"nextSibling"),S=ve(v,"childNodes"),j=ve(v,"parentNode"),ue=ve(v,"shadowRoot"),Nt=ve(v,"attributes"),z=a&&a.prototype?ve(a.prototype,"nodeType"):null,re=a&&a.prototype?ve(a.prototype,"nodeName"):null;if(typeof o=="function"){let p=t.createElement("template");p.content&&p.content.ownerDocument&&(t=p.content.ownerDocument)}let K,ge="",xe,co=!1,ct=0,uo=function(){if(ct>0)throw ze('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},Be=function(s){uo(),ct++;try{return K.createHTML(s)}finally{ct--}},vc=function(s){uo(),ct++;try{return K.createScriptURL(s)}finally{ct--}},bc=function(){return co||(xe=kd(f,n),co=!0),xe},zt=t,tr=zt.implementation,ho=zt.createNodeIterator,gc=zt.createDocumentFragment,yc=zt.getElementsByTagName,_c=r.importNode,M=Jo();e.isSupported=typeof Qo=="function"&&typeof j=="function"&&tr&&tr.createHTMLDocument!==void 0;let xc=pd,wc=md,Ac=fd,Ec=vd,kc=bd,Sc=gd,po=yd,Tc=xd,mo=Vo,I=null,fo=E({},[...Ko,...xr,...wr,...Ar,...Wo]),D=null,vo=E({},[...Go,...Er,...Yo,...Kt]),O=Object.seal(Ze(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),dt=null,bo=null,we=Object.seal(Ze(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}})),go=!0,ir=!0,yo=!1,_o=!0,Ae=!1,Ee=!0,Oe=!1,rr=!1,nr=null,or=null,sr=!1,Ue=!1,$t=!1,Ft=!1,xo=!0,wo=!1,Ao="user-content-",ar=!0,lr=!1,je={},he=null,cr=E({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]),Eo=null,ko=E({},["audio","video","img","source","image","track"]),dr=null,So=E({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Ht="http://www.w3.org/1998/Math/MathML",Pt="http://www.w3.org/2000/svg",pe="http://www.w3.org/1999/xhtml",Ke=pe,ur=!1,hr=null,Lc=E({},[Ht,Pt,pe],_r),To=B(["mi","mo","mn","ms","mtext"]),pr=E({},To),Lo=B(["annotation-xml"]),mr=E({},Lo),Cc=E({},["title","style","font","a","script"]),ut=null,Rc=["application/xhtml+xml","text/html"],Mc="text/html",R=null,We=null,Ic=t.createElement("form"),Co=function(s){return s instanceof RegExp||s instanceof Function},fr=function(){let s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(We&&We===s)return;(!s||typeof s!="object")&&(s={}),s=V(s),ut=Rc.indexOf(s.PARSER_MEDIA_TYPE)===-1?Mc:s.PARSER_MEDIA_TYPE,R=ut==="application/xhtml+xml"?_r:vt,I=Se(s,"ALLOWED_TAGS",fo,{transform:R}),D=Se(s,"ALLOWED_ATTR",vo,{transform:R}),hr=Se(s,"ALLOWED_NAMESPACES",Lc,{transform:_r}),dr=Se(s,"ADD_URI_SAFE_ATTR",So,{transform:R,base:So}),Eo=Se(s,"ADD_DATA_URI_TAGS",ko,{transform:R,base:ko}),he=Se(s,"FORBID_CONTENTS",cr,{transform:R}),dt=Se(s,"FORBID_TAGS",V({}),{transform:R}),bo=Se(s,"FORBID_ATTR",V({}),{transform:R}),je=q(s,"USE_PROFILES")?s.USE_PROFILES&&typeof s.USE_PROFILES=="object"?V(s.USE_PROFILES):s.USE_PROFILES:!1,go=s.ALLOW_ARIA_ATTR!==!1,ir=s.ALLOW_DATA_ATTR!==!1,yo=s.ALLOW_UNKNOWN_PROTOCOLS||!1,_o=s.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Ae=s.SAFE_FOR_TEMPLATES||!1,Ee=s.SAFE_FOR_XML!==!1,Oe=s.WHOLE_DOCUMENT||!1,Ue=s.RETURN_DOM||!1,$t=s.RETURN_DOM_FRAGMENT||!1,Ft=s.RETURN_TRUSTED_TYPE||!1,sr=s.FORCE_BODY||!1,xo=s.SANITIZE_DOM!==!1,wo=s.SANITIZE_NAMED_PROPS||!1,ar=s.KEEP_CONTENT!==!1,lr=s.IN_PLACE||!1,mo=dd(s.ALLOWED_URI_REGEXP)?s.ALLOWED_URI_REGEXP:Vo,Ke=typeof s.NAMESPACE=="string"?s.NAMESPACE:pe,pr=q(s,"MATHML_TEXT_INTEGRATION_POINTS")&&s.MATHML_TEXT_INTEGRATION_POINTS&&typeof s.MATHML_TEXT_INTEGRATION_POINTS=="object"?V(s.MATHML_TEXT_INTEGRATION_POINTS):E({},To),mr=q(s,"HTML_INTEGRATION_POINTS")&&s.HTML_INTEGRATION_POINTS&&typeof s.HTML_INTEGRATION_POINTS=="object"?V(s.HTML_INTEGRATION_POINTS):E({},Lo);let l=q(s,"CUSTOM_ELEMENT_HANDLING")&&s.CUSTOM_ELEMENT_HANDLING&&typeof s.CUSTOM_ELEMENT_HANDLING=="object"?V(s.CUSTOM_ELEMENT_HANDLING):Ze(null);if(O=Ze(null),q(l,"tagNameCheck")&&Co(l.tagNameCheck)&&(O.tagNameCheck=l.tagNameCheck),q(l,"attributeNameCheck")&&Co(l.attributeNameCheck)&&(O.attributeNameCheck=l.attributeNameCheck),q(l,"allowCustomizedBuiltInElements")&&typeof l.allowCustomizedBuiltInElements=="boolean"&&(O.allowCustomizedBuiltInElements=l.allowCustomizedBuiltInElements),U(O),Ae&&(ir=!1),$t&&(Ue=!0),je&&(I=E({},Wo),D=Ze(null),je.html===!0&&(E(I,Ko),E(D,Go)),je.svg===!0&&(E(I,xr),E(D,Er),E(D,Kt)),je.svgFilters===!0&&(E(I,wr),E(D,Er),E(D,Kt)),je.mathMl===!0&&(E(I,Ar),E(D,Yo),E(D,Kt))),we.tagCheck=null,we.attributeCheck=null,q(s,"ADD_TAGS")&&(typeof s.ADD_TAGS=="function"?we.tagCheck=s.ADD_TAGS:Te(s.ADD_TAGS)&&(I===fo&&(I=V(I)),E(I,s.ADD_TAGS,R))),q(s,"ADD_ATTR")&&(typeof s.ADD_ATTR=="function"?we.attributeCheck=s.ADD_ATTR:Te(s.ADD_ATTR)&&(D===vo&&(D=V(D)),E(D,s.ADD_ATTR,R))),q(s,"ADD_URI_SAFE_ATTR")&&Te(s.ADD_URI_SAFE_ATTR)&&E(dr,s.ADD_URI_SAFE_ATTR,R),q(s,"FORBID_CONTENTS")&&Te(s.FORBID_CONTENTS)&&(he===cr&&(he=V(he)),E(he,s.FORBID_CONTENTS,R)),q(s,"ADD_FORBID_CONTENTS")&&Te(s.ADD_FORBID_CONTENTS)&&(he===cr&&(he=V(he)),E(he,s.ADD_FORBID_CONTENTS,R)),ar&&(I["#text"]=!0),Oe&&E(I,["html","head","body"]),I.table&&(E(I,["tbody"]),delete dt.tbody),s.TRUSTED_TYPES_POLICY){if(typeof s.TRUSTED_TYPES_POLICY.createHTML!="function")throw ze('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof s.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw ze('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');let u=K;K=s.TRUSTED_TYPES_POLICY;try{ge=Be("")}catch(g){throw K=u,g}}else s.TRUSTED_TYPES_POLICY===null?(K=void 0,ge=""):(K===void 0&&(K=bc()),K&&typeof ge=="string"&&(ge=Be("")));B&&B(s),We=s},Ro=E({},[...xr,...wr,...ud]),Mo=E({},[...Ar,...hd]),Dc=function(s,l,u){return l.namespaceURI===pe?s==="svg":l.namespaceURI===Ht?s==="svg"&&(u==="annotation-xml"||pr[u]):!!Ro[s]},Oc=function(s,l,u){return l.namespaceURI===pe?s==="math":l.namespaceURI===Pt?s==="math"&&mr[u]:!!Mo[s]},Nc=function(s,l,u){return l.namespaceURI===Pt&&!mr[u]||l.namespaceURI===Ht&&!pr[u]?!1:!Mo[s]&&(Cc[s]||!Ro[s])},zc=function(s){let l=j(s);(!l||!l.tagName)&&(l={namespaceURI:Ke,tagName:"template"});let u=vt(s.tagName),g=vt(l.tagName);return hr[s.namespaceURI]?s.namespaceURI===Pt?Dc(u,l,g):s.namespaceURI===Ht?Oc(u,l,g):s.namespaceURI===pe?Nc(u,l,g):!!(ut==="application/xhtml+xml"&&hr[s.namespaceURI]):!1},ke=function(s){Xe(e.removed,{element:s});try{j(s).removeChild(s)}catch{if(k(s),!j(s))throw ze("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},qt=function(s){vr(s);let l=S(s);if(l){let g=[];Ve(l,x=>{Xe(g,x)}),Ve(g,x=>{try{k(x)}catch{}})}let u=Nt(s);if(u)for(let g=u.length-1;g>=0;--g){let x=u[g],w=x&&x.name;if(typeof w=="string")try{s.removeAttribute(w)}catch{}}},Ne=function(s,l){try{Xe(e.removed,{attribute:l.getAttributeNode(s),from:l})}catch{Xe(e.removed,{attribute:null,from:l})}if(l.removeAttribute(s),s==="is")if(Ue||$t)try{ke(l)}catch{}else try{l.setAttribute(s,"")}catch{}},$c=function(s){let l=Nt(s);if(l)for(let u=l.length-1;u>=0;--u){let g=l[u],x=g&&g.name;if(!(typeof x!="string"||D[R(x)]))try{s.removeAttribute(x)}catch{}}},vr=function(s){let l=[s];for(;l.length>0;){let u=l.pop();(z?z(u):u.nodeType)===ie.element&&$c(u);let x=S(u);if(x)for(let w=x.length-1;w>=0;--w)l.push(x[w])}},Fc=function(s){if(!Ee)return;let l=[s];for(;l.length>0;){let u=l.pop(),g=z?z(u):u.nodeType;if(g===ie.processingInstruction||g===ie.comment&&P(Zo,u.data)){try{k(u)}catch{}continue}if(g===ie.element){let w=u,N=R(re?re(u):u.nodeName);try{w.hasAttribute&&w.hasAttribute("patchsrc")&&w.removeAttribute("patchsrc"),w.hasAttribute&&w.hasAttribute("for")&&N!=="label"&&N!=="output"&&w.removeAttribute("for")}catch{}}let x=S(u);if(x)for(let w=x.length-1;w>=0;--w)l.push(x[w])}},Io=function(s){let l=null,u=null;if(sr)s="<remove></remove>"+s;else{let w=qo(s,/^[\r\n\t ]+/);u=w&&w[0]}ut==="application/xhtml+xml"&&Ke===pe&&(s='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+s+"</body></html>");let g=K?Be(s):s;if(Ke===pe)try{l=new _().parseFromString(g,ut)}catch{}if(!l||!l.documentElement){l=tr.createDocument(Ke,"template",null);try{l.documentElement.innerHTML=ur?ge:g}catch{}}let x=l.body||l.documentElement;return s&&u&&x.insertBefore(t.createTextNode(u),x.childNodes[0]||null),Ke===pe?yc.call(l,Oe?"html":"body")[0]:Oe?l.documentElement:x},Do=function(s){return ho.call(s.ownerDocument||s,s,d.SHOW_ELEMENT|d.SHOW_COMMENT|d.SHOW_TEXT|d.SHOW_PROCESSING_INSTRUCTION|d.SHOW_CDATA_SECTION,null)},Bt=function(s){return s=mt(s,xc," "),s=mt(s,wc," "),s=mt(s,Ac," "),s},br=function(s){var l;s.normalize();let u=ho.call(s.ownerDocument||s,s,d.SHOW_TEXT|d.SHOW_COMMENT|d.SHOW_CDATA_SECTION|d.SHOW_PROCESSING_INSTRUCTION,null),g=u.nextNode();for(;g;)g.data=Bt(g.data),g=u.nextNode();let x=(l=s.querySelectorAll)===null||l===void 0?void 0:l.call(s,"template");x&&Ve(x,w=>{Ge(w.content)&&br(w.content)})},Ut=function(s){let l=re?re(s):null;return typeof l!="string"||R(l)!=="form"?!1:typeof s.nodeName!="string"||typeof s.textContent!="string"||typeof s.removeChild!="function"||s.attributes!==Nt(s)||typeof s.removeAttribute!="function"||typeof s.setAttribute!="function"||typeof s.namespaceURI!="string"||typeof s.insertBefore!="function"||typeof s.hasChildNodes!="function"||s.nodeType!==z(s)||s.childNodes!==S(s)},Ge=function(s){if(!z||typeof s!="object"||s===null)return!1;try{return z(s)===ie.documentFragment}catch{return!1}},ht=function(s){if(!z||typeof s!="object"||s===null)return!1;try{return typeof z(s)=="number"}catch{return!1}};function me(p,s,l){p.length!==0&&Ve(p,u=>{u.call(e,s,l,We)})}let Hc=function(s,l){return!!(Ee&&s.hasChildNodes()&&!ht(s.firstElementChild)&&P(Xo,s.textContent)&&P(Xo,s.innerHTML)||Ee&&s.namespaceURI===pe&&l==="style"&&ht(s.firstElementChild)||s.nodeType===ie.processingInstruction||Ee&&s.nodeType===ie.comment&&P(Zo,s.data))},Pc=function(s,l){if(!dt[l]&&zo(l)&&(O.tagNameCheck instanceof RegExp&&P(O.tagNameCheck,l)||O.tagNameCheck instanceof Function&&O.tagNameCheck(l)))return!1;if(ar&&!he[l]){let u=j(s),g=S(s);if(g&&u){let x=g.length;for(let w=x-1;w>=0;--w){let N=lr?g[w]:C(g[w],!0);u.insertBefore(N,A(s))}}}return ke(s),!0},Oo=function(s,l){if(me(M.beforeSanitizeElements,s,null),s!==l&&j(s)===null)return!0;if(Ut(s))return ke(s),!0;let u=R(re?re(s):s.nodeName);if(me(M.uponSanitizeElement,s,{tagName:u,allowedTags:I}),s!==l&&j(s)===null)return!0;if(Hc(s,u))return ke(s),!0;if(dt[u]||!(we.tagCheck instanceof Function&&we.tagCheck(u))&&!I[u]){let x=Pc(s,u);return x===!1&&me(M.afterSanitizeElements,s,null),x}if((z?z(s):s.nodeType)===ie.element&&!zc(s)||(u==="noscript"||u==="noembed"||u==="noframes")&&P(wd,s.innerHTML))return ke(s),!0;if(Ae&&s.nodeType===ie.text){let x=Bt(s.textContent);s.textContent!==x&&(Xe(e.removed,{element:s.cloneNode()}),s.textContent=x)}return me(M.afterSanitizeElements,s,null),!1},No=function(s,l,u){if(bo[l]||Ee&&l==="patchsrc"||Ee&&l==="for"&&s!=="label"&&s!=="output"||xo&&(l==="id"||l==="name")&&(u in t||u in Ic))return!1;let g=D[l]||we.attributeCheck instanceof Function&&we.attributeCheck(l,s);if(!(ir&&P(Ec,l))){if(!(go&&P(kc,l))){if(g){if(!dr[l]){if(!P(mo,mt(u,po,""))){if(!((l==="src"||l==="xlink:href"||l==="href")&&s!=="script"&&Bo(u,"data:")===0&&Eo[s])){if(!(yo&&!P(Sc,mt(u,po,"")))){if(u)return!1}}}}}else if(!(zo(s)&&(O.tagNameCheck instanceof RegExp&&P(O.tagNameCheck,s)||O.tagNameCheck instanceof Function&&O.tagNameCheck(s))&&(O.attributeNameCheck instanceof RegExp&&P(O.attributeNameCheck,l)||O.attributeNameCheck instanceof Function&&O.attributeNameCheck(l,s))||l==="is"&&O.allowCustomizedBuiltInElements&&(O.tagNameCheck instanceof RegExp&&P(O.tagNameCheck,u)||O.tagNameCheck instanceof Function&&O.tagNameCheck(u))))return!1}}return!0},qc=E({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),zo=function(s){return!qc[vt(s)]&&P(Tc,s)},Bc=function(s,l,u,g){if(K&&typeof f=="object"&&typeof f.getAttributeType=="function"&&!u)switch(f.getAttributeType(s,l)){case"TrustedHTML":return Be(g);case"TrustedScriptURL":return vc(g)}return g},Uc=function(s,l,u,g){try{u?s.setAttributeNS(u,l,g):s.setAttribute(l,g),Ut(s)?ke(s):Po(e.removed)}catch{Ne(l,s)}},$o=function(s){me(M.beforeSanitizeAttributes,s,null);let l=s.attributes;if(!l||Ut(s))return;let u={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:D,forceKeepAttr:void 0},g=l.length,x=R(s.nodeName);for(;g--;){let w=l[g],N=w.name,W=w.namespaceURI,oe=w.value,X=R(N),se=oe,Y=N==="value"?se:nd(se);if(u.attrName=X,u.attrValue=Y,u.keepAttr=!0,u.forceKeepAttr=void 0,me(M.uponSanitizeAttribute,s,u),Y=u.attrValue,wo&&(X==="id"||X==="name")&&Bo(Y,Ao)!==0&&(Ne(N,s),Y=Ao+Y),Ee&&P(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,Y)){Ne(N,s);continue}if(X==="attributename"&&qo(Y,"href")){Ne(N,s);continue}if(!u.forceKeepAttr){if(!u.keepAttr){Ne(N,s);continue}if(!_o&&P(Ad,Y)){Ne(N,s);continue}if(Ae&&(Y=Bt(Y)),!No(x,X,Y)){Ne(N,s);continue}Y=Bc(x,X,W,Y),Y!==se&&Uc(s,N,W,Y)}}me(M.afterSanitizeAttributes,s,null)},jt=function(s){let l=null,u=Do(s);for(me(M.beforeSanitizeShadowDOM,s,null);l=u.nextNode();)if(me(M.uponSanitizeShadowNode,l,null),Oo(l,s),$o(l),Ge(l.content)&&jt(l.content),(z?z(l):l.nodeType)===ie.element){let x=ue(l);Ge(x)&&(gr(x),jt(x))}me(M.afterSanitizeShadowDOM,s,null)},gr=function(s){let l=[{node:s,shadow:null}];for(;l.length>0;){let u=l.pop();if(u.shadow){jt(u.shadow);continue}let g=u.node,w=(z?z(g):g.nodeType)===ie.element,N=S(g);if(N)for(let W=N.length-1;W>=0;--W)l.push({node:N[W],shadow:null});if(w){let W=re?re(g):null;if(typeof W=="string"&&R(W)==="template"){let oe=g.content;Ge(oe)&&l.push({node:oe,shadow:null})}}if(w){let W=ue(g);Ge(W)&&l.push({node:null,shadow:W},{node:W,shadow:null})}}};return e.sanitize=function(p){let s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},l=null,u=null,g=null,x=null;if(ur=!p,ur&&(p="<!-->"),typeof p!="string"&&!ht(p)&&(p=cd(p),typeof p!="string"))throw ze("dirty is not a string, aborting");if(!e.isSupported)return p;rr?(I=nr,D=or):fr(s),(M.uponSanitizeElement.length>0||M.uponSanitizeAttribute.length>0)&&(I=V(I)),M.uponSanitizeAttribute.length>0&&(D=V(D)),e.removed=[];let w=lr&&typeof p!="string"&&ht(p);if(w){Fc(p);let X=re?re(p):p.nodeName;if(typeof X=="string"){let se=R(X);if(!I[se]||dt[se])throw qt(p),ze("root node is forbidden and cannot be sanitized in-place")}if(Ut(p))throw qt(p),ze("root node is clobbered and cannot be sanitized in-place");try{gr(p)}catch(se){throw qt(p),se}}else if(ht(p))l=Io("<!---->"),u=l.ownerDocument.importNode(p,!0),u.nodeType===ie.element&&u.nodeName==="BODY"||u.nodeName==="HTML"?l=u:l.appendChild(u),gr(u);else{if(!Ue&&!Ae&&!Oe&&p.indexOf("<")===-1)return K&&Ft?Be(p):p;if(l=Io(p),!l)return Ue?null:Ft?ge:""}l&&sr&&ke(l.firstChild);let N=w?p:l,W=Do(N);try{for(;g=W.nextNode();)Oo(g,N),$o(g),Ge(g.content)&&jt(g.content)}catch(X){throw w&&(qt(p),Ve(e.removed,se=>{se.element&&vr(se.element)})),X}if(w)return Ve(e.removed,X=>{X.element&&vr(X.element)}),Ae&&br(p),p;if(Ue){if(Ae&&br(l),$t)for(x=gc.call(l.ownerDocument);l.firstChild;)x.appendChild(l.firstChild);else x=l;return(D.shadowroot||D.shadowrootmode)&&(x=_c.call(r,x,!0)),x}let oe=Oe?l.outerHTML:l.innerHTML;return Oe&&I["!doctype"]&&l.ownerDocument&&l.ownerDocument.doctype&&l.ownerDocument.doctype.name&&P(_d,l.ownerDocument.doctype.name)&&(oe="<!DOCTYPE "+l.ownerDocument.doctype.name+`>
3
- `+oe),Ae&&(oe=Bt(oe)),K&&Ft?Be(oe):oe},e.setConfig=function(){let p=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};fr(p),rr=!0,nr=I,or=D},e.clearConfig=function(){We=null,rr=!1,nr=null,or=null,K=xe,ge=""},e.isValidAttribute=function(p,s,l){We||fr({});let u=R(p),g=R(s);return No(u,g,l)},e.addHook=function(p,s){typeof s=="function"&&q(M,p)&&Xe(M[p],s)},e.removeHook=function(p,s){if(q(M,p)){if(s!==void 0){let l=id(M[p],s);return l===-1?void 0:rd(M[p],l,1)[0]}return Po(M[p])}},e.removeHooks=function(p){q(M,p)&&(M[p]=[])},e.removeAllHooks=function(){M=Jo()},e}var Qo,Ho,Qc,ed,td,B,U,Ze,es,kr,Sr,Ve,id,Po,Xe,rd,Te,vt,_r,qo,mt,Bo,nd,od,sd,Uo,jo,q,ft,P,ze,Ko,xr,wr,ud,Ar,hd,Wo,Go,Er,Yo,Kt,pd,md,fd,vd,bd,Vo,gd,yd,_d,xd,Xo,Zo,wd,Ad,ie,Ed,kd,Jo,Se,$,is=h(()=>{Qo=Object.entries,Ho=Object.setPrototypeOf,Qc=Object.isFrozen,ed=Object.getPrototypeOf,td=Object.getOwnPropertyDescriptor,B=Object.freeze,U=Object.seal,Ze=Object.create,es=typeof Reflect<"u"&&Reflect,kr=es.apply,Sr=es.construct;B||(B=function(e){return e});U||(U=function(e){return e});kr||(kr=function(e,t){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];return e.apply(t,n)});Sr||(Sr=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return new e(...r)});Ve=F(Array.prototype.forEach),id=F(Array.prototype.lastIndexOf),Po=F(Array.prototype.pop),Xe=F(Array.prototype.push),rd=F(Array.prototype.splice),Te=Array.isArray,vt=F(String.prototype.toLowerCase),_r=F(String.prototype.toString),qo=F(String.prototype.match),mt=F(String.prototype.replace),Bo=F(String.prototype.indexOf),nd=F(String.prototype.trim),od=F(Number.prototype.toString),sd=F(Boolean.prototype.toString),Uo=typeof BigInt>"u"?null:F(BigInt.prototype.toString),jo=typeof Symbol>"u"?null:F(Symbol.prototype.toString),q=F(Object.prototype.hasOwnProperty),ft=F(Object.prototype.toString),P=F(RegExp.prototype.test),ze=ad(TypeError);Ko=B(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),xr=B(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),wr=B(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),ud=B(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Ar=B(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),hd=B(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Wo=B(["#text"]),Go=B(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","command","commandfor","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns"]),Er=B(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dominant-baseline","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-orientation","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Yo=B(["accent","accentunder","align","bevelled","close","columnalign","columnlines","columnspacing","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lquote","lspace","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),Kt=B(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),pd=U(/{{[\w\W]*|^[\w\W]*}}/g),md=U(/<%[\w\W]*|^[\w\W]*%>/g),fd=U(/\${[\w\W]*/g),vd=U(/^data-[\-\w.\u00B7-\uFFFF]+$/),bd=U(/^aria-[\-\w]+$/),Vo=U(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),gd=U(/^(?:\w+script|data):/i),yd=U(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),_d=U(/^html$/i),xd=U(/^[a-z][.\w]*(-[.\w]+)+$/i),Xo=U(/<[/\w!]/g),Zo=U(/<[/\w]/g),wd=U(/<\/no(script|embed|frames)/i),Ad=U(/\/>/i),ie={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,processingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},Ed=function(){return typeof window>"u"?null:window},kd=function(e,t){if(typeof e!="object"||typeof e.createPolicy!="function")return null;let r=null,n="data-tt-policy-suffix";t&&t.hasAttribute(n)&&(r=t.getAttribute(n));let o="dompurify"+(r?"#"+r:"");try{return e.createPolicy(o,{createHTML(a){return a},createScriptURL(a){return a}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}},Jo=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},Se=function(e,t,r,n){return q(e,t)&&Te(e[t])?E(n.base?V(n.base):{},e[t],n.transform):r};$=ts()});var rs={};y(rs,{addHook:()=>Cd,clearConfig:()=>Od,clearWindow:()=>Fd,default:()=>Sd,isSupported:()=>Ld,isValidAttribute:()=>Nd,removeAllHooks:()=>Id,removeHook:()=>Rd,removeHooks:()=>Md,removed:()=>$d,sanitize:()=>Td,setConfig:()=>Dd,version:()=>zd});function Fd(){}var Sd,Td,Ld,Cd,Rd,Md,Id,Dd,Od,Nd,zd,$d,ns=h(()=>{is();Sd=$,Td=$.sanitize.bind($),Ld=$.isSupported,Cd=$.addHook.bind($),Rd=$.removeHook.bind($),Md=$.removeHooks.bind($),Id=$.removeAllHooks.bind($),Dd=$.setConfig.bind($),Od=$.clearConfig.bind($),Nd=$.isValidAttribute.bind($),zd=$.version,$d=$.removed});function b(i){return typeof i!="string"?"":i.replace(Pd,e=>Hd[e])}function Tr(i){return typeof i!="string"?"":i.replace(qd,"")}function ye(i){return b(Tr(i))}function $e(i,e){if(typeof i!="string")return"";let t=i.trim();if(!t||/^\s*javascript:/i.test(t)||/^\s*vbscript:/i.test(t)||Ud.test(t)||/^data:/i.test(t)&&!os.test(t))return"";try{let r=new URL(t,e||(typeof location<"u"?location.href:"https://example.invalid/"));return!Bd.has(r.protocol)||r.protocol==="data:"&&!os.test(r.href)?"":r.href}catch{return t.startsWith("#")||t.startsWith("/")?t:""}}function ss(i,e){if(typeof i!="string")return"#";let t=i.trim();return t?t.startsWith("#")||t.startsWith("/")&&!t.startsWith("//")?t:/^https?:\/\//i.test(t)?$e(t,e)||"#":/^\s*javascript:/i.test(t)||/^\s*vbscript:/i.test(t)?"#":t:"#"}function as(i){let e=String(i||"text").toLowerCase();return jd.has(e)?e:"text"}async function Kd(){if(bt)return bt;try{let i=await Promise.resolve().then(()=>(ns(),rs));bt=i.default||i}catch{bt=null}return bt}async function ls(i){if(typeof i!="string")return"";let e=await Kd();return e?.sanitize?e.sanitize(i,{USE_PROFILES:{svg:!0,svgFilters:!0},ADD_TAGS:Wd,ADD_ATTR:Gd,FORBID_TAGS:["script","foreignObject","iframe","object","embed"],FORBID_ATTR:["onload","onerror","onclick","onmouseover"]}):i.replace(/<script[\s\S]*?<\/script>/gi,"").replace(/\s+on\w+\s*=\s*("[^"]*"|'[^']*'|[^\s>]+)/gi,"").replace(/<foreignObject[\s\S]*?<\/foreignObject>/gi,"")}function cs(){return Wt||(typeof window<"u"&&window.trustedTypes?.createPolicy&&(Wt=window.trustedTypes.createPolicy("velinstyle",{createHTML:i=>b(i)})),Wt)}function Yd(i){let e=cs(),t=b(Tr(i));return e?.createHTML?e.createHTML(t):t}var Hd,Pd,qd,Bd,Ud,os,jd,bt,Wd,Gd,Wt,T=h(()=>{Hd={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},Pd=/[&<>"']/g,qd=/[\u0000-\u0008\u000B\u000C\u000E-\u001F\u007F]/g,Bd=new Set(["http:","https:","data:","mailto:","tel:"]),Ud=/^data:(?:text\/html|image\/svg\+xml|application\/xml)/i,os=/^data:image\/(png|jpeg|jpg|gif|webp|avif);base64,/i,jd=new Set(["text","password","email","search","tel","url","number"]);bt=null;Wd=["svg","g","path","circle","rect","line","polyline","polygon","ellipse","defs","use","symbol","title","desc","clipPath","mask","linearGradient","radialGradient","stop","pattern","text","tspan"],Gd=["viewBox","xmlns","fill","stroke","stroke-width","stroke-linecap","stroke-linejoin","d","cx","cy","r","rx","ry","x","y","width","height","x1","y1","x2","y2","points","transform","opacity","class","id","href","xlink:href","aria-hidden","aria-label","aria-labelledby","role","focusable","clip-path","mask","offset","stop-color","stop-opacity","gradientUnits","gradientTransform","spreadMethod","fx","fy","patternUnits","patternContentUnits","preserveAspectRatio"];Wt=null});var us={};y(us,{default:()=>ds});var Vd,Gt,ds,Lr=h(()=>{Z();T();Vd=`
1
+ var $u=Object.defineProperty;var p=(i,e)=>()=>(i&&(e=i(i=0)),e);var g=(i,e)=>{for(var t in e)$u(i,t,{get:e[t],enumerable:!0})};function Fu(i){if(i.hasAttribute("disabled")||i.getAttribute("aria-hidden")==="true"||i.closest("[inert]"))return!1;let e=i.ownerDocument.defaultView?.getComputedStyle(i);return e&&(e.visibility==="hidden"||e.display==="none")?!1:i.getClientRects().length>0}function ge(i){return[...i.querySelectorAll(Pu)].filter(Fu)}function re(i,e){if(e.key!=="Tab")return;let t=ge(i);if(t.length===0)return;let r=t[0],n=t[t.length-1],o=i.getRootNode().activeElement;e.shiftKey&&o===r?(e.preventDefault(),n.focus()):!e.shiftKey&&o===n&&(e.preventDefault(),r.focus())}function ne(i,e,t){let r=e.indexOf(t.target);if(r===-1)return;let n;switch(t.key){case"ArrowDown":case"ArrowRight":t.preventDefault(),n=(r+1)%e.length;break;case"ArrowUp":case"ArrowLeft":t.preventDefault(),n=(r-1+e.length)%e.length;break;case"Home":t.preventDefault(),n=0;break;case"End":t.preventDefault(),n=e.length-1;break;default:return}e.forEach((o,a)=>{o.setAttribute("tabindex",a===n?"0":"-1")}),e[n].focus()}function ue(){return document.activeElement}function de(i){i&&typeof i.focus=="function"&&i.focus()}function qu(){let i=new Set;for(let e of et)for(let t of e.siblings)i.add(t);return i}function pe(i){let e=i instanceof HTMLElement?i:null;if(!e)return;let t=new Set;for(let r of document.body.children)r===e||r.contains(e)||r.hasAttribute("inert")||(r.setAttribute("inert",""),t.add(r));et.push({host:e,siblings:t}),yt===0&&(Mr=document.body.style.overflow,document.body.style.overflow="hidden"),yt+=1}function W(i){let e=-1;if(i instanceof HTMLElement?e=et.findLastIndex(n=>n.host===i):et.length&&(e=et.length-1),e===-1)return;let{siblings:t}=et.splice(e,1)[0],r=qu();for(let n of t)r.has(n)||n.removeAttribute("inert");yt=Math.max(0,yt-1),yt===0&&(document.body.style.overflow=Mr,Mr="")}var Pu,et,yt,Mr,J=p(()=>{Pu=["a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])",'[tabindex]:not([tabindex="-1"])',"summary","details"].join(", ");et=[],yt=0,Mr=""});var cs={};g(cs,{default:()=>ls});var Hu,Xt,ls,Ir=p(()=>{J();Hu=`
4
2
  :host {
5
3
  display: contents;
6
4
  }
5
+ .sr-only {
6
+ position: absolute;
7
+ inline-size: 1px;
8
+ block-size: 1px;
9
+ padding: 0;
10
+ margin: -1px;
11
+ overflow: hidden;
12
+ clip: rect(0, 0, 0, 0);
13
+ white-space: nowrap;
14
+ border: 0;
15
+ }
7
16
  .overlay {
8
17
  position: fixed;
9
18
  inset: 0;
@@ -82,19 +91,22 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
82
91
  @media (prefers-reduced-motion: reduce) {
83
92
  .overlay, .dialog { transition: none; }
84
93
  }
85
- `,Gt=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._previouslyFocused=null,this._onKeydown=this._onKeydown.bind(this)}connectedCallback(){let e=(this.getAttribute("title")||"").trim(),t=b(e),r=e?'aria-labelledby="velin-modal-title"':`aria-label="${b(this.getAttribute("aria-label")||"Dialog")}"`;this.shadowRoot.innerHTML=`
86
- <style>${Vd}</style>
94
+ `,Xt=class extends HTMLElement{static get observedAttributes(){return["open","title"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._previouslyFocused=null,this._onKeydown=this._onKeydown.bind(this),this._onTitleSlot=this._onTitleSlot.bind(this)}connectedCallback(){this.shadowRoot.querySelector(".dialog")||(this.shadowRoot.innerHTML=`
95
+ <style>${Hu}</style>
87
96
  <div class="overlay" part="overlay">
88
- <div class="dialog" role="dialog" aria-modal="true" ${r} part="dialog">
97
+ <div class="dialog" role="dialog" aria-modal="true" part="dialog">
89
98
  <div class="header" part="header">
90
- <h2 class="title" id="velin-modal-title"${e?"":' class="velin-sr-only"'}>${t||"Dialog"}</h2>
99
+ <h2 class="title" id="velin-modal-title" part="title">
100
+ <slot name="title"></slot>
101
+ <span class="title-fallback"></span>
102
+ </h2>
91
103
  <button class="close-btn" aria-label="Close" part="close">&#215;</button>
92
104
  </div>
93
105
  <div class="body" part="body"><slot></slot></div>
94
106
  <div class="footer" part="footer"><slot name="footer"></slot></div>
95
107
  </div>
96
108
  </div>
97
- `,this.shadowRoot.querySelector(".close-btn").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".overlay").addEventListener("click",n=>{n.target===n.currentTarget&&this.close()})}attributeChangedCallback(e,t,r){e==="open"&&(r!==null?this._open():this._close())}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_open(){this._previouslyFocused=ae(),ce(this),document.addEventListener("keydown",this._onKeydown),requestAnimationFrame(()=>{let e=fe(this.shadowRoot);e.length>0&&e[0].focus()})}_close(){document.removeEventListener("keydown",this._onKeydown),G(this),le(this._previouslyFocused)}_onKeydown(e){if(e.key==="Escape"){this.close();return}ee(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKeydown),G(this)}};customElements.define("velin-modal",Gt);ds=Gt});var ps={};y(ps,{default:()=>hs});var Xd,Yt,hs,Cr=h(()=>{Z();Xd=`
109
+ `,this.shadowRoot.querySelector(".close-btn").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".overlay").addEventListener("click",e=>{e.target===e.currentTarget&&this.close()}),this.shadowRoot.querySelector('slot[name="title"]').addEventListener("slotchange",this._onTitleSlot),this._syncTitle())}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close()),e==="title"&&this._syncTitle()}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_syncTitle(){let e=this.shadowRoot?.querySelector(".title-fallback"),t=this.shadowRoot?.querySelector(".title"),r=this.shadowRoot?.querySelector('[role="dialog"]');if(!e||!t||!r)return;if(this._hasTitleSlot()){e.hidden=!0,t.classList.remove("sr-only");return}e.hidden=!1;let n=(this.getAttribute("title")||"").trim();e.textContent=n||"Dialog",t.classList.toggle("sr-only",!n),n?(r.setAttribute("aria-labelledby","velin-modal-title"),r.removeAttribute("aria-label")):(r.removeAttribute("aria-labelledby"),r.setAttribute("aria-label",this.getAttribute("aria-label")||"Dialog"))}_hasTitleSlot(){let e=this.shadowRoot?.querySelector('slot[name="title"]');return e?e.assignedNodes({flatten:!0}).some(t=>t.nodeType===Node.TEXT_NODE?!!t.textContent.trim():t.nodeType===Node.ELEMENT_NODE):!1}_onTitleSlot(){let e=this.shadowRoot?.querySelector('slot[name="title"]'),t=this.shadowRoot?.querySelector('[role="dialog"]'),r=this.shadowRoot?.querySelector(".title"),n=this.shadowRoot?.querySelector(".title-fallback");if(!(!e||!t||!r||!n))if(this._hasTitleSlot()){n.hidden=!0,r.classList.remove("sr-only"),t.removeAttribute("aria-labelledby");let o=e.assignedNodes({flatten:!0}).map(a=>a.textContent||"").join(" ").trim();o&&t.setAttribute("aria-label",o)}else this._syncTitle()}_open(){this._previouslyFocused=ue(),pe(this),document.addEventListener("keydown",this._onKeydown),requestAnimationFrame(()=>{let e=ge(this.shadowRoot);e.length>0&&e[0].focus()})}_close(){document.removeEventListener("keydown",this._onKeydown),W(this),de(this._previouslyFocused)}_onKeydown(e){if(e.key==="Escape"){this.close();return}re(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKeydown),W(this)}};customElements.define("velin-modal",Xt);ls=Xt});var ds={};g(ds,{default:()=>us});var Bu,Zt,us,Dr=p(()=>{J();Bu=`
98
110
  :host {
99
111
  display: inline-block;
100
112
  position: relative;
@@ -144,13 +156,13 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
144
156
  @media (prefers-reduced-motion: reduce) {
145
157
  .menu { transition: none; }
146
158
  }
147
- `,Yt=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onDocClick=this._onDocClick.bind(this),this._onKeydown=this._onKeydown.bind(this),this._typeahead="",this._typeaheadTimer=null}connectedCallback(){let e=this.getAttribute("align")||"start";this.shadowRoot.innerHTML=`
148
- <style>${Xd}</style>
159
+ `,Zt=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onDocClick=this._onDocClick.bind(this),this._onKeydown=this._onKeydown.bind(this),this._typeahead="",this._typeaheadTimer=null}connectedCallback(){let e=this.getAttribute("align")||"start";this.shadowRoot.innerHTML=`
160
+ <style>${Bu}</style>
149
161
  <slot name="trigger"></slot>
150
162
  <div class="menu ${e==="end"?"menu-end":""}" role="menu" part="menu">
151
163
  <slot></slot>
152
164
  </div>
153
- `;let t=this.shadowRoot.querySelector('slot[name="trigger"]'),r=this.shadowRoot.querySelector("slot:not([name])");t.addEventListener("click",()=>this.toggle()),t.addEventListener("slotchange",()=>{let n=t.assignedElements()[0];if(n){n.setAttribute("aria-haspopup","menu"),n.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false");let o=this._menuId||(this._menuId=`velin-dropdown-menu-${Math.random().toString(36).slice(2,9)}`);n.setAttribute("aria-controls",o),this.shadowRoot.querySelector(".menu")?.setAttribute("id",o)}}),r?.addEventListener("slotchange",()=>this._normalizeMenuItems()),this._normalizeMenuItems(),this.addEventListener("keydown",this._onKeydown)}_normalizeMenuItems(){this._getMenuItems().forEach((t,r)=>{t.hasAttribute("role")||t.setAttribute("role","menuitem"),t.setAttribute("tabindex",r===0?"0":"-1")})}toggle(){this.hasAttribute("open")?this.close():this.open()}open(){this.setAttribute("open","");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","true"),document.addEventListener("click",this._onDocClick,!0),requestAnimationFrame(()=>{let t=this._getMenuItems();t.length>0&&t[0].focus()})}close(){this.removeAttribute("open");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","false"),document.removeEventListener("click",this._onDocClick,!0),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_getMenuItems(){let e=this.shadowRoot.querySelector("slot:not([name])");return e?e.assignedElements().filter(t=>!t.hasAttribute("disabled")):[]}_onDocClick(e){this.contains(e.target)||this.close()}_onKeydown(e){if(e.key==="Escape"){this.close();let r=this.querySelector('[slot="trigger"]');r&&r.focus();return}let t=this._getMenuItems();if(t.length!==0){if(e.key.length===1&&/[a-z0-9]/i.test(e.key)){clearTimeout(this._typeaheadTimer),this._typeahead+=e.key.toLowerCase(),this._typeaheadTimer=setTimeout(()=>{this._typeahead=""},500);let r=t.find(n=>(n.textContent?.trim().toLowerCase()||"").startsWith(this._typeahead));r&&(e.preventDefault(),t.forEach(n=>n.setAttribute("tabindex",n===r?"0":"-1")),r.focus());return}te(this,t,e)}}disconnectedCallback(){document.removeEventListener("click",this._onDocClick,!0)}};customElements.define("velin-dropdown",Yt);hs=Yt});var vs={};y(vs,{default:()=>fs});function Qd(){if(typeof document>"u"||document.getElementById(ms))return;let i=document.createElement("style");i.id=ms,i.textContent=Zd,document.head.appendChild(i)}var ms,Zd,Jd,Vt,fs,Rr=h(()=>{ms="velin-accordion-light-css",Zd=`
165
+ `;let t=this.shadowRoot.querySelector('slot[name="trigger"]'),r=this.shadowRoot.querySelector("slot:not([name])");t.addEventListener("click",()=>this.toggle()),t.addEventListener("slotchange",()=>{let n=t.assignedElements()[0];if(n){n.setAttribute("aria-haspopup","menu"),n.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false");let o=this._menuId||(this._menuId=`velin-dropdown-menu-${Math.random().toString(36).slice(2,9)}`);n.setAttribute("aria-controls",o),this.shadowRoot.querySelector(".menu")?.setAttribute("id",o)}}),r?.addEventListener("slotchange",()=>this._normalizeMenuItems()),this._normalizeMenuItems(),this.addEventListener("keydown",this._onKeydown)}_normalizeMenuItems(){this._getMenuItems().forEach((t,r)=>{t.hasAttribute("role")||t.setAttribute("role","menuitem"),t.setAttribute("tabindex",r===0?"0":"-1")})}toggle(){this.hasAttribute("open")?this.close():this.open()}open(){this.setAttribute("open","");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","true"),document.addEventListener("click",this._onDocClick,!0),requestAnimationFrame(()=>{let t=this._getMenuItems();t.length>0&&t[0].focus()})}close(){this.removeAttribute("open");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","false"),document.removeEventListener("click",this._onDocClick,!0),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_getMenuItems(){let e=this.shadowRoot.querySelector("slot:not([name])");return e?e.assignedElements().filter(t=>!t.hasAttribute("disabled")):[]}_onDocClick(e){this.contains(e.target)||this.close()}_onKeydown(e){if(e.key==="Escape"){this.close();let r=this.querySelector('[slot="trigger"]');r&&r.focus();return}let t=this._getMenuItems();if(t.length!==0){if(e.key.length===1&&/[a-z0-9]/i.test(e.key)){clearTimeout(this._typeaheadTimer),this._typeahead+=e.key.toLowerCase(),this._typeaheadTimer=setTimeout(()=>{this._typeahead=""},500);let r=t.find(n=>(n.textContent?.trim().toLowerCase()||"").startsWith(this._typeahead));r&&(e.preventDefault(),t.forEach(n=>n.setAttribute("tabindex",n===r?"0":"-1")),r.focus());return}ne(this,t,e)}}disconnectedCallback(){document.removeEventListener("click",this._onDocClick,!0)}};customElements.define("velin-dropdown",Zt);us=Zt});var ms={};g(ms,{default:()=>hs});function Ku(){if(typeof document>"u"||document.getElementById(ps))return;let i=document.createElement("style");i.id=ps,i.textContent=Uu,document.head.appendChild(i)}var ps,Uu,ju,Jt,hs,Or=p(()=>{ps="velin-accordion-light-css",Uu=`
154
166
  velin-accordion {
155
167
  display: block;
156
168
  border: 1px solid var(--velin-color-border, #ddd);
@@ -204,14 +216,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
204
216
  line-height: 1.6;
205
217
  border-block-start: 1px solid var(--velin-color-border, #e2e8f0);
206
218
  }
207
- `,Jd=`
219
+ `,ju=`
208
220
  :host {
209
221
  display: block;
210
222
  }
211
- `;Vt=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onToggle=this._onToggle.bind(this),this._onKeydown=this._onKeydown.bind(this)}connectedCallback(){Qd(),this.shadowRoot.innerHTML=`
212
- <style>${Jd}</style>
223
+ `;Jt=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onToggle=this._onToggle.bind(this),this._onKeydown=this._onKeydown.bind(this)}connectedCallback(){Ku(),this.shadowRoot.innerHTML=`
224
+ <style>${ju}</style>
213
225
  <slot></slot>
214
- `,this._exclusive=this.hasAttribute("exclusive"),this._wireDetails(),this.addEventListener("toggle",this._onToggle,!0),this.addEventListener("keydown",this._onKeydown)}_wireDetails(){let e=0;for(let t of this.querySelectorAll("details")){let r=t.querySelector("summary"),n=t.querySelector(":scope > :not(summary)"),o=n?.id||`velin-accordion-panel-${++e}`;n&&!n.id&&(n.id=o),r&&n&&(r.setAttribute("aria-controls",o),r.setAttribute("aria-expanded",t.open?"true":"false")),r&&!r.hasAttribute("tabindex")&&r.setAttribute("tabindex","0")}}_onToggle(e){let t=e.target;if(!(t instanceof HTMLDetailsElement))return;let r=t.querySelector("summary");if(r&&r.setAttribute("aria-expanded",t.open?"true":"false"),!this._exclusive||!t.open)return;[...this.querySelectorAll("details")].forEach(o=>{o!==t&&o.open&&(o.open=!1)})}_onKeydown(e){let t=[...this.querySelectorAll("summary")],r=t.indexOf(e.target);if(r===-1)return;let n;switch(e.key){case"ArrowDown":e.preventDefault(),n=(r+1)%t.length;break;case"ArrowUp":e.preventDefault(),n=(r-1+t.length)%t.length;break;case"Home":e.preventDefault(),n=0;break;case"End":e.preventDefault(),n=t.length-1;break;case"Enter":case" ":return;default:return}t[n].focus()}disconnectedCallback(){this.removeEventListener("toggle",this._onToggle,!0),this.removeEventListener("keydown",this._onKeydown)}};customElements.define("velin-accordion",Vt);fs=Vt});var gs={};y(gs,{default:()=>bs});var eu,Xt,bs,Mr=h(()=>{Z();eu=`
226
+ `,this._exclusive=this.hasAttribute("exclusive"),this._wireDetails(),this.addEventListener("toggle",this._onToggle,!0),this.addEventListener("keydown",this._onKeydown)}_wireDetails(){let e=0;for(let t of this.querySelectorAll("details")){let r=t.querySelector("summary"),n=t.querySelector(":scope > :not(summary)"),o=n?.id||`velin-accordion-panel-${++e}`;n&&!n.id&&(n.id=o),r&&n&&(r.setAttribute("aria-controls",o),r.setAttribute("aria-expanded",t.open?"true":"false")),r&&!r.hasAttribute("tabindex")&&r.setAttribute("tabindex","0")}}_onToggle(e){let t=e.target;if(!(t instanceof HTMLDetailsElement))return;let r=t.querySelector("summary");if(r&&r.setAttribute("aria-expanded",t.open?"true":"false"),!this._exclusive||!t.open)return;[...this.querySelectorAll("details")].forEach(o=>{o!==t&&o.open&&(o.open=!1)})}_onKeydown(e){let t=[...this.querySelectorAll("summary")],r=t.indexOf(e.target);if(r===-1)return;let n;switch(e.key){case"ArrowDown":e.preventDefault(),n=(r+1)%t.length;break;case"ArrowUp":e.preventDefault(),n=(r-1+t.length)%t.length;break;case"Home":e.preventDefault(),n=0;break;case"End":e.preventDefault(),n=t.length-1;break;case"Enter":case" ":return;default:return}t[n].focus()}disconnectedCallback(){this.removeEventListener("toggle",this._onToggle,!0),this.removeEventListener("keydown",this._onKeydown)}};customElements.define("velin-accordion",Jt);hs=Jt});var bs={};g(bs,{default:()=>fs});var Gu,Qt,fs,Nr=p(()=>{J();Gu=`
215
227
  :host {
216
228
  display: block;
217
229
  }
@@ -253,15 +265,17 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
253
265
  ::slotted([role="tabpanel"][hidden]) {
254
266
  display: none;
255
267
  }
256
- `,Xt=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onTabClick=this._onTabClick.bind(this),this._onKeydown=this._onKeydown.bind(this)}connectedCallback(){this.shadowRoot.innerHTML=`
257
- <style>${eu}</style>
268
+ `,Qt=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onTabClick=this._onTabClick.bind(this),this._onKeydown=this._onKeydown.bind(this)}connectedCallback(){this.shadowRoot.innerHTML=`
269
+ <style>${Gu}</style>
258
270
  <div class="tablist" role="tablist" part="tablist">
259
271
  <slot name="tab"></slot>
260
272
  </div>
261
273
  <div class="panels" part="panels">
262
274
  <slot name="panel"></slot>
263
275
  </div>
264
- `,this.addEventListener("click",this._onTabClick),this.addEventListener("keydown",this._onKeydown),requestAnimationFrame(()=>this._initTabs())}_initTabs(){let e=this._getTabs(),t=this._getPanels();e.forEach((n,o)=>{n.setAttribute("role","tab"),n.setAttribute("slot","tab"),n.id||(n.id=`velin-tab-${o}`);let a=t[o];a&&(a.setAttribute("role","tabpanel"),a.setAttribute("slot","panel"),a.id||(a.id=`velin-panel-${o}`),n.setAttribute("aria-controls",a.id),a.setAttribute("aria-labelledby",n.id))});let r=e.find(n=>n.getAttribute("aria-selected")==="true")||e[0];r&&this._selectTab(r)}_getTabs(){return[...this.querySelectorAll('[role="tab"], [slot="tab"]')]}_getPanels(){return[...this.querySelectorAll('[role="tabpanel"], [slot="panel"]')]}_onTabClick(e){let t=e.target.closest('[role="tab"]');t&&this.contains(t)&&this._selectTab(t)}_selectTab(e){let t=this._getTabs(),r=this._getPanels();t.forEach((n,o)=>{let a=n===e;n.setAttribute("aria-selected",String(a)),n.setAttribute("tabindex",a?"0":"-1"),r[o]&&(r[o].hidden=!a)}),this.dispatchEvent(new CustomEvent("velin-tab-change",{bubbles:!0,detail:{tab:e}}))}_onKeydown(e){let t=this._getTabs();if(t.includes(e.target)&&(te(this,t,e),e.key==="ArrowRight"||e.key==="ArrowLeft"||e.key==="Home"||e.key==="End")){let r=t.find(n=>n.getAttribute("tabindex")==="0");r&&this._selectTab(r)}}disconnectedCallback(){this.removeEventListener("click",this._onTabClick),this.removeEventListener("keydown",this._onKeydown)}};customElements.define("velin-tabs",Xt);bs=Xt});var _s={};y(_s,{default:()=>ys});var tu,Zt,ys,Ir=h(()=>{T();tu=`
276
+ `,this.addEventListener("click",this._onTabClick),this.addEventListener("keydown",this._onKeydown),requestAnimationFrame(()=>this._initTabs())}_initTabs(){let e=this._getTabs(),t=this._getPanels();e.forEach((n,o)=>{n.setAttribute("role","tab"),n.setAttribute("slot","tab"),n.id||(n.id=`velin-tab-${o}`);let a=t[o];a&&(a.setAttribute("role","tabpanel"),a.setAttribute("slot","panel"),a.id||(a.id=`velin-panel-${o}`),n.setAttribute("aria-controls",a.id),a.setAttribute("aria-labelledby",n.id))});let r=e.find(n=>n.getAttribute("aria-selected")==="true")||e[0];r&&this._selectTab(r)}_getTabs(){return[...this.querySelectorAll('[role="tab"], [slot="tab"]')]}_getPanels(){return[...this.querySelectorAll('[role="tabpanel"], [slot="panel"]')]}_onTabClick(e){let t=e.target.closest('[role="tab"]');t&&this.contains(t)&&this._selectTab(t)}_selectTab(e){let t=this._getTabs(),r=this._getPanels();t.forEach((n,o)=>{let a=n===e;n.setAttribute("aria-selected",String(a)),n.setAttribute("tabindex",a?"0":"-1"),r[o]&&(r[o].hidden=!a)}),this.dispatchEvent(new CustomEvent("velin-tab-change",{bubbles:!0,detail:{tab:e}}))}_onKeydown(e){let t=this._getTabs();if(t.includes(e.target)&&(ne(this,t,e),e.key==="ArrowRight"||e.key==="ArrowLeft"||e.key==="Home"||e.key==="End")){let r=t.find(n=>n.getAttribute("tabindex")==="0");r&&this._selectTab(r)}}disconnectedCallback(){this.removeEventListener("click",this._onTabClick),this.removeEventListener("keydown",this._onKeydown)}};customElements.define("velin-tabs",Qt);fs=Qt});function vs(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,r=Array(e);t<e;t++)r[t]=i[t];return r}function Vu(i){if(Array.isArray(i))return i}function Wu(i,e){var t=i==null?null:typeof Symbol<"u"&&i[Symbol.iterator]||i["@@iterator"];if(t!=null){var r,n,o,a,c=[],u=!0,h=!1;try{if(o=(t=t.call(i)).next,e!==0)for(;!(u=(r=o.call(t)).done)&&(c.push(r.value),c.length!==e);u=!0);}catch(b){h=!0,n=b}finally{try{if(!u&&t.return!=null&&(a=t.return(),Object(a)!==a))return}finally{if(h)throw n}}return c}}function Yu(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
277
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Xu(i,e){return Vu(i)||Wu(i,e)||Zu(i,e)||Yu()}function Zu(i,e){if(i){if(typeof i=="string")return vs(i,e);var t={}.toString.call(i).slice(8,-1);return t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set"?Array.from(i):t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?vs(i,e):void 0}}function P(i){return function(e){e instanceof RegExp&&(e.lastIndex=0);for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return Hr(i,e,r)}}function sd(i){return function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return Br(i,t)}}function E(i,e){let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:xt;if(gs&&gs(i,null),!Me(e))return i;let r=e.length;for(;r--;){let n=e[r];if(typeof n=="string"){let o=t(n);o!==n&&(Ju(e)||(e[r]=o),n=o)}i[n]=!0}return i}function ad(i){for(let e=0;e<i.length;e++)H(i,e)||(i[e]=null);return i}function X(i){let e=rt(null);for(let r of Is(i)){var t=Xu(r,2);let n=t[0],o=t[1];H(i,n)&&(Me(o)?e[n]=ad(o):o&&typeof o=="object"&&o.constructor===Object?e[n]=X(o):e[n]=o)}return e}function ld(i){switch(typeof i){case"string":return i;case"number":return nd(i);case"boolean":return od(i);case"bigint":return xs?xs(i):"0";case"symbol":return As?As(i):"Symbol()";case"undefined":return wt(i);case"function":case"object":{if(i===null)return wt(i);let e=i,t=ye(e,"toString");if(typeof t=="function"){let r=t(e);return typeof r=="string"?r:wt(r)}return wt(i)}default:return wt(i)}}function ye(i,e){for(;i!==null;){let r=ed(i,e);if(r){if(r.get)return P(r.get);if(typeof r.value=="function")return P(r.value)}i=Qu(i)}function t(){return null}return t}function cd(i){try{return q(i,""),!0}catch{return!1}}function Os(){let i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Ad(),e=f=>Os(f);if(e.version="3.4.12",e.removed=[],!i||!i.document||i.document.nodeType!==oe.document||!i.Element)return e.isSupported=!1,e;let t=i.document,r=t,n=r.currentScript;i.DocumentFragment;let o=i.HTMLTemplateElement,a=i.Node,c=i.Element,u=i.NodeFilter,h=i.NamedNodeMap;h===void 0&&(i.NamedNodeMap||i.MozNamedAttrMap),i.HTMLFormElement;let b=i.DOMParser,m=i.trustedTypes,v=c.prototype,T=ye(v,"cloneNode"),k=ye(v,"remove"),A=ye(v,"nextSibling"),S=ye(v,"childNodes"),K=ye(v,"parentNode"),me=ye(v,"shadowRoot"),qt=ye(v,"attributes"),z=a&&a.prototype?ye(a.prototype,"nodeType"):null,se=a&&a.prototype?ye(a.prototype,"nodeName"):null;if(typeof o=="function"){let f=t.createElement("template");f.content&&f.content.ownerDocument&&(t=f.content.ownerDocument)}let G,_e="",ke,Oo=!1,ft=0,No=function(){if(ft>0)throw Be('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},We=function(s){No(),ft++;try{return G.createHTML(s)}finally{ft--}},cu=function(s){No(),ft++;try{return G.createScriptURL(s)}finally{ft--}},uu=function(){return Oo||(ke=Ed(m,n),Oo=!0),ke},Ht=t,hr=Ht.implementation,zo=Ht.createNodeIterator,du=Ht.createDocumentFragment,pu=Ht.getElementsByTagName,hu=r.importNode,M=Ms();e.isSupported=typeof Is=="function"&&typeof K=="function"&&hr&&hr.createHTMLDocument!==void 0;let mu=pd,fu=hd,bu=md,vu=fd,gu=bd,yu=vd,$o=gd,_u=_d,Po=Cs,I=null,Fo=E({},[...Es,...$r,...Pr,...Fr,...ks]),D=null,qo=E({},[...Ss,...qr,...Ts,...ei]),O=Object.seal(rt(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),bt=null,Ho=null,Se=Object.seal(rt(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}})),Bo=!0,mr=!0,Uo=!1,jo=!0,Te=!1,Ce=!0,qe=!1,fr=!1,br=null,vr=null,gr=!1,Ye=!1,Bt=!1,Ut=!1,Ko=!0,Go=!1,Vo="user-content-",yr=!0,_r=!1,Xe={},fe=null,wr=E({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]),Wo=null,Yo=E({},["audio","video","img","source","image","track"]),xr=null,Xo=E({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),jt="http://www.w3.org/1998/Math/MathML",Kt="http://www.w3.org/2000/svg",be="http://www.w3.org/1999/xhtml",Ze=be,Ar=!1,Er=null,wu=E({},[jt,Kt,be],zr),Zo=B(["mi","mo","mn","ms","mtext"]),kr=E({},Zo),Jo=B(["annotation-xml"]),Sr=E({},Jo),xu=E({},["title","style","font","a","script"]),vt=null,Au=["application/xhtml+xml","text/html"],Eu="text/html",R=null,Je=null,ku=t.createElement("form"),Qo=function(s){return s instanceof RegExp||s instanceof Function},Tr=function(){let s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(Je&&Je===s)return;(!s||typeof s!="object")&&(s={}),s=X(s),vt=Au.indexOf(s.PARSER_MEDIA_TYPE)===-1?Eu:s.PARSER_MEDIA_TYPE,R=vt==="application/xhtml+xml"?zr:xt,I=Re(s,"ALLOWED_TAGS",Fo,{transform:R}),D=Re(s,"ALLOWED_ATTR",qo,{transform:R}),Er=Re(s,"ALLOWED_NAMESPACES",wu,{transform:zr}),xr=Re(s,"ADD_URI_SAFE_ATTR",Xo,{transform:R,base:Xo}),Wo=Re(s,"ADD_DATA_URI_TAGS",Yo,{transform:R,base:Yo}),fe=Re(s,"FORBID_CONTENTS",wr,{transform:R}),bt=Re(s,"FORBID_TAGS",X({}),{transform:R}),Ho=Re(s,"FORBID_ATTR",X({}),{transform:R}),Xe=H(s,"USE_PROFILES")?s.USE_PROFILES&&typeof s.USE_PROFILES=="object"?X(s.USE_PROFILES):s.USE_PROFILES:!1,Bo=s.ALLOW_ARIA_ATTR!==!1,mr=s.ALLOW_DATA_ATTR!==!1,Uo=s.ALLOW_UNKNOWN_PROTOCOLS||!1,jo=s.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Te=s.SAFE_FOR_TEMPLATES||!1,Ce=s.SAFE_FOR_XML!==!1,qe=s.WHOLE_DOCUMENT||!1,Ye=s.RETURN_DOM||!1,Bt=s.RETURN_DOM_FRAGMENT||!1,Ut=s.RETURN_TRUSTED_TYPE||!1,gr=s.FORCE_BODY||!1,Ko=s.SANITIZE_DOM!==!1,Go=s.SANITIZE_NAMED_PROPS||!1,yr=s.KEEP_CONTENT!==!1,_r=s.IN_PLACE||!1,Po=cd(s.ALLOWED_URI_REGEXP)?s.ALLOWED_URI_REGEXP:Cs,Ze=typeof s.NAMESPACE=="string"?s.NAMESPACE:be,kr=H(s,"MATHML_TEXT_INTEGRATION_POINTS")&&s.MATHML_TEXT_INTEGRATION_POINTS&&typeof s.MATHML_TEXT_INTEGRATION_POINTS=="object"?X(s.MATHML_TEXT_INTEGRATION_POINTS):E({},Zo),Sr=H(s,"HTML_INTEGRATION_POINTS")&&s.HTML_INTEGRATION_POINTS&&typeof s.HTML_INTEGRATION_POINTS=="object"?X(s.HTML_INTEGRATION_POINTS):E({},Jo);let l=H(s,"CUSTOM_ELEMENT_HANDLING")&&s.CUSTOM_ELEMENT_HANDLING&&typeof s.CUSTOM_ELEMENT_HANDLING=="object"?X(s.CUSTOM_ELEMENT_HANDLING):rt(null);if(O=rt(null),H(l,"tagNameCheck")&&Qo(l.tagNameCheck)&&(O.tagNameCheck=l.tagNameCheck),H(l,"attributeNameCheck")&&Qo(l.attributeNameCheck)&&(O.attributeNameCheck=l.attributeNameCheck),H(l,"allowCustomizedBuiltInElements")&&typeof l.allowCustomizedBuiltInElements=="boolean"&&(O.allowCustomizedBuiltInElements=l.allowCustomizedBuiltInElements),U(O),Te&&(mr=!1),Bt&&(Ye=!0),Xe&&(I=E({},ks),D=rt(null),Xe.html===!0&&(E(I,Es),E(D,Ss)),Xe.svg===!0&&(E(I,$r),E(D,qr),E(D,ei)),Xe.svgFilters===!0&&(E(I,Pr),E(D,qr),E(D,ei)),Xe.mathMl===!0&&(E(I,Fr),E(D,Ts),E(D,ei))),Se.tagCheck=null,Se.attributeCheck=null,H(s,"ADD_TAGS")&&(typeof s.ADD_TAGS=="function"?Se.tagCheck=s.ADD_TAGS:Me(s.ADD_TAGS)&&(I===Fo&&(I=X(I)),E(I,s.ADD_TAGS,R))),H(s,"ADD_ATTR")&&(typeof s.ADD_ATTR=="function"?Se.attributeCheck=s.ADD_ATTR:Me(s.ADD_ATTR)&&(D===qo&&(D=X(D)),E(D,s.ADD_ATTR,R))),H(s,"ADD_URI_SAFE_ATTR")&&Me(s.ADD_URI_SAFE_ATTR)&&E(xr,s.ADD_URI_SAFE_ATTR,R),H(s,"FORBID_CONTENTS")&&Me(s.FORBID_CONTENTS)&&(fe===wr&&(fe=X(fe)),E(fe,s.FORBID_CONTENTS,R)),H(s,"ADD_FORBID_CONTENTS")&&Me(s.ADD_FORBID_CONTENTS)&&(fe===wr&&(fe=X(fe)),E(fe,s.ADD_FORBID_CONTENTS,R)),yr&&(I["#text"]=!0),qe&&E(I,["html","head","body"]),I.table&&(E(I,["tbody"]),delete bt.tbody),s.TRUSTED_TYPES_POLICY){if(typeof s.TRUSTED_TYPES_POLICY.createHTML!="function")throw Be('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof s.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw Be('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');let d=G;G=s.TRUSTED_TYPES_POLICY;try{_e=We("")}catch(_){throw G=d,_}}else s.TRUSTED_TYPES_POLICY===null?(G=void 0,_e=""):(G===void 0&&(G=uu()),G&&typeof _e=="string"&&(_e=We("")));B&&B(s),Je=s},es=E({},[...$r,...Pr,...ud]),ts=E({},[...Fr,...dd]),Su=function(s,l,d){return l.namespaceURI===be?s==="svg":l.namespaceURI===jt?s==="svg"&&(d==="annotation-xml"||kr[d]):!!es[s]},Tu=function(s,l,d){return l.namespaceURI===be?s==="math":l.namespaceURI===Kt?s==="math"&&Sr[d]:!!ts[s]},Cu=function(s,l,d){return l.namespaceURI===Kt&&!Sr[d]||l.namespaceURI===jt&&!kr[d]?!1:!ts[s]&&(xu[s]||!es[s])},Lu=function(s){let l=K(s);(!l||!l.tagName)&&(l={namespaceURI:Ze,tagName:"template"});let d=xt(s.tagName),_=xt(l.tagName);return Er[s.namespaceURI]?s.namespaceURI===Kt?Su(d,l,_):s.namespaceURI===jt?Tu(d,l,_):s.namespaceURI===be?Cu(d,l,_):!!(vt==="application/xhtml+xml"&&Er[s.namespaceURI]):!1},Le=function(s){it(e.removed,{element:s});try{K(s).removeChild(s)}catch{if(k(s),!K(s))throw Be("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},Gt=function(s){Cr(s);let l=S(s);if(l){let _=[];tt(l,w=>{it(_,w)}),tt(_,w=>{try{k(w)}catch{}})}let d=qt(s);if(d)for(let _=d.length-1;_>=0;--_){let w=d[_],x=w&&w.name;if(typeof x=="string")try{s.removeAttribute(x)}catch{}}},He=function(s,l){try{it(e.removed,{attribute:l.getAttributeNode(s),from:l})}catch{it(e.removed,{attribute:null,from:l})}if(l.removeAttribute(s),s==="is")if(Ye||Bt)try{Le(l)}catch{}else try{l.setAttribute(s,"")}catch{}},Ru=function(s){let l=qt(s);if(l)for(let d=l.length-1;d>=0;--d){let _=l[d],w=_&&_.name;if(!(typeof w!="string"||D[R(w)]))try{s.removeAttribute(w)}catch{}}},Cr=function(s){let l=[s];for(;l.length>0;){let d=l.pop();(z?z(d):d.nodeType)===oe.element&&Ru(d);let w=S(d);if(w)for(let x=w.length-1;x>=0;--x)l.push(w[x])}},Mu=function(s){if(!Ce)return;let l=[s];for(;l.length>0;){let d=l.pop(),_=z?z(d):d.nodeType;if(_===oe.processingInstruction||_===oe.comment&&q(Rs,d.data)){try{k(d)}catch{}continue}if(_===oe.element){let x=d,N=R(se?se(d):d.nodeName);try{x.hasAttribute&&x.hasAttribute("patchsrc")&&x.removeAttribute("patchsrc"),x.hasAttribute&&x.hasAttribute("for")&&N!=="label"&&N!=="output"&&x.removeAttribute("for")}catch{}}let w=S(d);if(w)for(let x=w.length-1;x>=0;--x)l.push(w[x])}},is=function(s){let l=null,d=null;if(gr)s="<remove></remove>"+s;else{let x=_s(s,/^[\r\n\t ]+/);d=x&&x[0]}vt==="application/xhtml+xml"&&Ze===be&&(s='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+s+"</body></html>");let _=G?We(s):s;if(Ze===be)try{l=new b().parseFromString(_,vt)}catch{}if(!l||!l.documentElement){l=hr.createDocument(Ze,"template",null);try{l.documentElement.innerHTML=Ar?_e:_}catch{}}let w=l.body||l.documentElement;return s&&d&&w.insertBefore(t.createTextNode(d),w.childNodes[0]||null),Ze===be?pu.call(l,qe?"html":"body")[0]:qe?l.documentElement:w},rs=function(s){return zo.call(s.ownerDocument||s,s,u.SHOW_ELEMENT|u.SHOW_COMMENT|u.SHOW_TEXT|u.SHOW_PROCESSING_INSTRUCTION|u.SHOW_CDATA_SECTION,null)},Vt=function(s){return s=_t(s,mu," "),s=_t(s,fu," "),s=_t(s,bu," "),s},Lr=function(s){var l;s.normalize();let d=zo.call(s.ownerDocument||s,s,u.SHOW_TEXT|u.SHOW_COMMENT|u.SHOW_CDATA_SECTION|u.SHOW_PROCESSING_INSTRUCTION,null),_=d.nextNode();for(;_;)_.data=Vt(_.data),_=d.nextNode();let w=(l=s.querySelectorAll)===null||l===void 0?void 0:l.call(s,"template");w&&tt(w,x=>{Qe(x.content)&&Lr(x.content)})},Wt=function(s){let l=se?se(s):null;return typeof l!="string"||R(l)!=="form"?!1:typeof s.nodeName!="string"||typeof s.textContent!="string"||typeof s.removeChild!="function"||s.attributes!==qt(s)||typeof s.removeAttribute!="function"||typeof s.setAttribute!="function"||typeof s.namespaceURI!="string"||typeof s.insertBefore!="function"||typeof s.hasChildNodes!="function"||s.nodeType!==z(s)||s.childNodes!==S(s)},Qe=function(s){if(!z||typeof s!="object"||s===null)return!1;try{return z(s)===oe.documentFragment}catch{return!1}},gt=function(s){if(!z||typeof s!="object"||s===null)return!1;try{return typeof z(s)=="number"}catch{return!1}};function ve(f,s,l){f.length!==0&&tt(f,d=>{d.call(e,s,l,Je)})}let Iu=function(s,l){return!!(Ce&&s.hasChildNodes()&&!gt(s.firstElementChild)&&q(Ls,s.textContent)&&q(Ls,s.innerHTML)||Ce&&s.namespaceURI===be&&l==="style"&&gt(s.firstElementChild)||s.nodeType===oe.processingInstruction||Ce&&s.nodeType===oe.comment&&q(Rs,s.data))},Du=function(s,l){if(!bt[l]&&ss(l)&&(O.tagNameCheck instanceof RegExp&&q(O.tagNameCheck,l)||O.tagNameCheck instanceof Function&&O.tagNameCheck(l)))return!1;if(yr&&!fe[l]){let d=K(s),_=S(s);if(_&&d){let w=_.length;for(let x=w-1;x>=0;--x){let N=_r?_[x]:T(_[x],!0);d.insertBefore(N,A(s))}}}return Le(s),!0},ns=function(s,l){if(ve(M.beforeSanitizeElements,s,null),s!==l&&K(s)===null)return!0;if(Wt(s))return Le(s),!0;let d=R(se?se(s):s.nodeName);if(ve(M.uponSanitizeElement,s,{tagName:d,allowedTags:I}),s!==l&&K(s)===null)return!0;if(Iu(s,d))return Le(s),!0;if(bt[d]||!(Se.tagCheck instanceof Function&&Se.tagCheck(d))&&!I[d]){let w=Du(s,d);return w===!1&&ve(M.afterSanitizeElements,s,null),w}if((z?z(s):s.nodeType)===oe.element&&!Lu(s)||(d==="noscript"||d==="noembed"||d==="noframes")&&q(wd,s.innerHTML))return Le(s),!0;if(Te&&s.nodeType===oe.text){let w=Vt(s.textContent);s.textContent!==w&&(it(e.removed,{element:s.cloneNode()}),s.textContent=w)}return ve(M.afterSanitizeElements,s,null),!1},os=function(s,l,d){if(Ho[l]||Ce&&l==="patchsrc"||Ce&&l==="for"&&s!=="label"&&s!=="output"||Ko&&(l==="id"||l==="name")&&(d in t||d in ku))return!1;let _=D[l]||Se.attributeCheck instanceof Function&&Se.attributeCheck(l,s);if(!(mr&&q(vu,l))){if(!(Bo&&q(gu,l))){if(_){if(!xr[l]){if(!q(Po,_t(d,$o,""))){if(!((l==="src"||l==="xlink:href"||l==="href")&&s!=="script"&&ws(d,"data:")===0&&Wo[s])){if(!(Uo&&!q(yu,_t(d,$o,"")))){if(d)return!1}}}}}else if(!(ss(s)&&(O.tagNameCheck instanceof RegExp&&q(O.tagNameCheck,s)||O.tagNameCheck instanceof Function&&O.tagNameCheck(s))&&(O.attributeNameCheck instanceof RegExp&&q(O.attributeNameCheck,l)||O.attributeNameCheck instanceof Function&&O.attributeNameCheck(l,s))||l==="is"&&O.allowCustomizedBuiltInElements&&(O.tagNameCheck instanceof RegExp&&q(O.tagNameCheck,d)||O.tagNameCheck instanceof Function&&O.tagNameCheck(d))))return!1}}return!0},Ou=E({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),ss=function(s){return!Ou[xt(s)]&&q(_u,s)},Nu=function(s,l,d,_){if(G&&typeof m=="object"&&typeof m.getAttributeType=="function"&&!d)switch(m.getAttributeType(s,l)){case"TrustedHTML":return We(_);case"TrustedScriptURL":return cu(_)}return _},zu=function(s,l,d,_){try{d?s.setAttributeNS(d,l,_):s.setAttribute(l,_),Wt(s)?Le(s):ys(e.removed)}catch{He(l,s)}},as=function(s){ve(M.beforeSanitizeAttributes,s,null);let l=s.attributes;if(!l||Wt(s))return;let d={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:D,forceKeepAttr:void 0},_=l.length,w=R(s.nodeName);for(;_--;){let x=l[_],N=x.name,V=x.namespaceURI,le=x.value,Z=R(N),ce=le,Y=N==="value"?ce:rd(ce);if(d.attrName=Z,d.attrValue=Y,d.keepAttr=!0,d.forceKeepAttr=void 0,ve(M.uponSanitizeAttribute,s,d),Y=d.attrValue,Go&&(Z==="id"||Z==="name")&&ws(Y,Vo)!==0&&(He(N,s),Y=Vo+Y),Ce&&q(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,Y)){He(N,s);continue}if(Z==="attributename"&&_s(Y,"href")){He(N,s);continue}if(!d.forceKeepAttr){if(!d.keepAttr){He(N,s);continue}if(!jo&&q(xd,Y)){He(N,s);continue}if(Te&&(Y=Vt(Y)),!os(w,Z,Y)){He(N,s);continue}Y=Nu(w,Z,V,Y),Y!==ce&&zu(s,N,V,Y)}}ve(M.afterSanitizeAttributes,s,null)},Yt=function(s){let l=null,d=rs(s);for(ve(M.beforeSanitizeShadowDOM,s,null);l=d.nextNode();)if(ve(M.uponSanitizeShadowNode,l,null),ns(l,s),as(l),Qe(l.content)&&Yt(l.content),(z?z(l):l.nodeType)===oe.element){let w=me(l);Qe(w)&&(Rr(w),Yt(w))}ve(M.afterSanitizeShadowDOM,s,null)},Rr=function(s){let l=[{node:s,shadow:null}];for(;l.length>0;){let d=l.pop();if(d.shadow){Yt(d.shadow);continue}let _=d.node,x=(z?z(_):_.nodeType)===oe.element,N=S(_);if(N)for(let V=N.length-1;V>=0;--V)l.push({node:N[V],shadow:null});if(x){let V=se?se(_):null;if(typeof V=="string"&&R(V)==="template"){let le=_.content;Qe(le)&&l.push({node:le,shadow:null})}}if(x){let V=me(_);Qe(V)&&l.push({node:null,shadow:V},{node:V,shadow:null})}}};return e.sanitize=function(f){let s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},l=null,d=null,_=null,w=null;if(Ar=!f,Ar&&(f="<!-->"),typeof f!="string"&&!gt(f)&&(f=ld(f),typeof f!="string"))throw Be("dirty is not a string, aborting");if(!e.isSupported)return f;fr?(I=br,D=vr):Tr(s),(M.uponSanitizeElement.length>0||M.uponSanitizeAttribute.length>0)&&(I=X(I)),M.uponSanitizeAttribute.length>0&&(D=X(D)),e.removed=[];let x=_r&&typeof f!="string"&&gt(f);if(x){Mu(f);let Z=se?se(f):f.nodeName;if(typeof Z=="string"){let ce=R(Z);if(!I[ce]||bt[ce])throw Gt(f),Be("root node is forbidden and cannot be sanitized in-place")}if(Wt(f))throw Gt(f),Be("root node is clobbered and cannot be sanitized in-place");try{Rr(f)}catch(ce){throw Gt(f),ce}}else if(gt(f))l=is("<!---->"),d=l.ownerDocument.importNode(f,!0),d.nodeType===oe.element&&d.nodeName==="BODY"||d.nodeName==="HTML"?l=d:l.appendChild(d),Rr(d);else{if(!Ye&&!Te&&!qe&&f.indexOf("<")===-1)return G&&Ut?We(f):f;if(l=is(f),!l)return Ye?null:Ut?_e:""}l&&gr&&Le(l.firstChild);let N=x?f:l,V=rs(N);try{for(;_=V.nextNode();)ns(_,N),as(_),Qe(_.content)&&Yt(_.content)}catch(Z){throw x&&(Gt(f),tt(e.removed,ce=>{ce.element&&Cr(ce.element)})),Z}if(x)return tt(e.removed,Z=>{Z.element&&Cr(Z.element)}),Te&&Lr(f),f;if(Ye){if(Te&&Lr(l),Bt)for(w=du.call(l.ownerDocument);l.firstChild;)w.appendChild(l.firstChild);else w=l;return(D.shadowroot||D.shadowrootmode)&&(w=hu.call(r,w,!0)),w}let le=qe?l.outerHTML:l.innerHTML;return qe&&I["!doctype"]&&l.ownerDocument&&l.ownerDocument.doctype&&l.ownerDocument.doctype.name&&q(yd,l.ownerDocument.doctype.name)&&(le="<!DOCTYPE "+l.ownerDocument.doctype.name+`>
278
+ `+le),Te&&(le=Vt(le)),G&&Ut?We(le):le},e.setConfig=function(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};Tr(f),fr=!0,br=I,vr=D},e.clearConfig=function(){Je=null,fr=!1,br=null,vr=null,G=ke,_e=""},e.isValidAttribute=function(f,s,l){Je||Tr({});let d=R(f),_=R(s);return os(d,_,l)},e.addHook=function(f,s){typeof s=="function"&&H(M,f)&&it(M[f],s)},e.removeHook=function(f,s){if(H(M,f)){if(s!==void 0){let l=td(M[f],s);return l===-1?void 0:id(M[f],l,1)[0]}return ys(M[f])}},e.removeHooks=function(f){H(M,f)&&(M[f]=[])},e.removeAllHooks=function(){M=Ms()},e}var Is,gs,Ju,Qu,ed,B,U,rt,Ds,Hr,Br,tt,td,ys,it,id,Me,xt,zr,_s,_t,ws,rd,nd,od,xs,As,H,wt,q,Be,Es,$r,Pr,ud,Fr,dd,ks,Ss,qr,Ts,ei,pd,hd,md,fd,bd,Cs,vd,gd,yd,_d,Ls,Rs,wd,xd,oe,Ad,Ed,Ms,Re,$,Ns=p(()=>{Is=Object.entries,gs=Object.setPrototypeOf,Ju=Object.isFrozen,Qu=Object.getPrototypeOf,ed=Object.getOwnPropertyDescriptor,B=Object.freeze,U=Object.seal,rt=Object.create,Ds=typeof Reflect<"u"&&Reflect,Hr=Ds.apply,Br=Ds.construct;B||(B=function(e){return e});U||(U=function(e){return e});Hr||(Hr=function(e,t){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];return e.apply(t,n)});Br||(Br=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return new e(...r)});tt=P(Array.prototype.forEach),td=P(Array.prototype.lastIndexOf),ys=P(Array.prototype.pop),it=P(Array.prototype.push),id=P(Array.prototype.splice),Me=Array.isArray,xt=P(String.prototype.toLowerCase),zr=P(String.prototype.toString),_s=P(String.prototype.match),_t=P(String.prototype.replace),ws=P(String.prototype.indexOf),rd=P(String.prototype.trim),nd=P(Number.prototype.toString),od=P(Boolean.prototype.toString),xs=typeof BigInt>"u"?null:P(BigInt.prototype.toString),As=typeof Symbol>"u"?null:P(Symbol.prototype.toString),H=P(Object.prototype.hasOwnProperty),wt=P(Object.prototype.toString),q=P(RegExp.prototype.test),Be=sd(TypeError);Es=B(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),$r=B(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Pr=B(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),ud=B(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Fr=B(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),dd=B(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),ks=B(["#text"]),Ss=B(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","command","commandfor","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns"]),qr=B(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dominant-baseline","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-orientation","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Ts=B(["accent","accentunder","align","bevelled","close","columnalign","columnlines","columnspacing","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lquote","lspace","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),ei=B(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),pd=U(/{{[\w\W]*|^[\w\W]*}}/g),hd=U(/<%[\w\W]*|^[\w\W]*%>/g),md=U(/\${[\w\W]*/g),fd=U(/^data-[\-\w.\u00B7-\uFFFF]+$/),bd=U(/^aria-[\-\w]+$/),Cs=U(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),vd=U(/^(?:\w+script|data):/i),gd=U(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),yd=U(/^html$/i),_d=U(/^[a-z][.\w]*(-[.\w]+)+$/i),Ls=U(/<[/\w!]/g),Rs=U(/<[/\w]/g),wd=U(/<\/no(script|embed|frames)/i),xd=U(/\/>/i),oe={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,processingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},Ad=function(){return typeof window>"u"?null:window},Ed=function(e,t){if(typeof e!="object"||typeof e.createPolicy!="function")return null;let r=null,n="data-tt-policy-suffix";t&&t.hasAttribute(n)&&(r=t.getAttribute(n));let o="dompurify"+(r?"#"+r:"");try{return e.createPolicy(o,{createHTML(a){return a},createScriptURL(a){return a}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}},Ms=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},Re=function(e,t,r,n){return H(e,t)&&Me(e[t])?E(n.base?X(n.base):{},e[t],n.transform):r};$=Os()});var zs={};g(zs,{addHook:()=>Cd,clearConfig:()=>Dd,clearWindow:()=>$d,default:()=>kd,isSupported:()=>Td,isValidAttribute:()=>Od,removeAllHooks:()=>Md,removeHook:()=>Ld,removeHooks:()=>Rd,removed:()=>zd,sanitize:()=>Sd,setConfig:()=>Id,version:()=>Nd});function $d(){}var kd,Sd,Td,Cd,Ld,Rd,Md,Id,Dd,Od,Nd,zd,$s=p(()=>{Ns();kd=$,Sd=$.sanitize.bind($),Td=$.isSupported,Cd=$.addHook.bind($),Ld=$.removeHook.bind($),Rd=$.removeHooks.bind($),Md=$.removeAllHooks.bind($),Id=$.setConfig.bind($),Dd=$.clearConfig.bind($),Od=$.isValidAttribute.bind($),Nd=$.version,zd=$.removed});function y(i){return typeof i!="string"?"":i.replace(Fd,e=>Pd[e])}function Ur(i){return typeof i!="string"?"":i.replace(qd,"")}function we(i){return y(Ur(i))}function Ue(i,e){if(typeof i!="string")return"";let t=i.trim();if(!t||/^\s*javascript:/i.test(t)||/^\s*vbscript:/i.test(t)||Bd.test(t)||/^data:/i.test(t)&&!Ps.test(t))return"";try{let r=new URL(t,e||(typeof location<"u"?location.href:"https://example.invalid/"));return!Hd.has(r.protocol)||r.protocol==="data:"&&!Ps.test(r.href)?"":r.href}catch{return t.startsWith("#")||t.startsWith("/")?t:""}}function Fs(i,e){if(typeof i!="string")return"#";let t=i.trim();return t?t.startsWith("#")||t.startsWith("/")&&!t.startsWith("//")?t:/^https?:\/\//i.test(t)?Ue(t,e)||"#":/^\s*javascript:/i.test(t)||/^\s*vbscript:/i.test(t)?"#":t:"#"}function qs(i){let e=String(i||"text").toLowerCase();return Ud.has(e)?e:"text"}async function jd(){if(At)return At;try{let i=await Promise.resolve().then(()=>($s(),zs));At=i.default||i}catch{At=null}return At}async function Hs(i){if(typeof i!="string")return"";let e=await jd();return e?.sanitize?e.sanitize(i,{USE_PROFILES:{svg:!0,svgFilters:!0},ADD_TAGS:Kd,ADD_ATTR:Gd,FORBID_TAGS:["script","foreignObject","iframe","object","embed"],FORBID_ATTR:["onload","onerror","onclick","onmouseover"]}):i.replace(/<script[\s\S]*?<\/script>/gi,"").replace(/\s+on\w+\s*=\s*("[^"]*"|'[^']*'|[^\s>]+)/gi,"").replace(/<foreignObject[\s\S]*?<\/foreignObject>/gi,"")}function Bs(){return ti||(typeof window<"u"&&window.trustedTypes?.createPolicy&&(ti=window.trustedTypes.createPolicy("velinstyle",{createHTML:i=>y(i)})),ti)}function Vd(i){let e=Bs(),t=y(Ur(i));return e?.createHTML?e.createHTML(t):t}var Pd,Fd,qd,Hd,Bd,Ps,Ud,At,Kd,Gd,ti,L=p(()=>{Pd={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},Fd=/[&<>"']/g,qd=/[\u0000-\u0008\u000B\u000C\u000E-\u001F\u007F]/g,Hd=new Set(["http:","https:","data:","mailto:","tel:"]),Bd=/^data:(?:text\/html|image\/svg\+xml|application\/xml)/i,Ps=/^data:image\/(png|jpeg|jpg|gif|webp|avif);base64,/i,Ud=new Set(["text","password","email","search","tel","url","number"]);At=null;Kd=["svg","g","path","circle","rect","line","polyline","polygon","ellipse","defs","use","symbol","title","desc","clipPath","mask","linearGradient","radialGradient","stop","pattern","text","tspan"],Gd=["viewBox","xmlns","fill","stroke","stroke-width","stroke-linecap","stroke-linejoin","d","cx","cy","r","rx","ry","x","y","width","height","x1","y1","x2","y2","points","transform","opacity","class","id","href","xlink:href","aria-hidden","aria-label","aria-labelledby","role","focusable","clip-path","mask","offset","stop-color","stop-opacity","gradientUnits","gradientTransform","spreadMethod","fx","fy","patternUnits","patternContentUnits","preserveAspectRatio"];ti=null});var js={};g(js,{default:()=>Us});var Wd,ii,Us,jr=p(()=>{L();Wd=`
265
279
  :host {
266
280
  position: fixed;
267
281
  z-index: var(--velin-z-toast, 600);
@@ -323,10 +337,10 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
323
337
  @media (prefers-reduced-motion: reduce) {
324
338
  .toast, .toast--out { animation: none; }
325
339
  }
326
- `,Zt=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._container=null}connectedCallback(){this.shadowRoot.innerHTML=`<style>${tu}</style>`,this._container=this.shadowRoot,this.setAttribute("role","status"),this.setAttribute("aria-live","polite"),this.setAttribute("aria-atomic","true")}show({message:e,type:t="info",duration:r=5e3}={}){let n=t==="error"||t==="danger";this.setAttribute("role",n?"alert":"status"),this.setAttribute("aria-live",n?"assertive":"polite");let o=document.createElement("div");return o.className=`toast toast--${t}`,o.setAttribute("role",n?"alert":"status"),o.innerHTML=`
327
- <div class="toast-content">${b(e)}</div>
340
+ `,ii=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._container=null}connectedCallback(){this.shadowRoot.innerHTML=`<style>${Wd}</style>`,this._container=this.shadowRoot,this.setAttribute("role","status"),this.setAttribute("aria-live","polite"),this.setAttribute("aria-atomic","true")}show({message:e,type:t="info",duration:r=5e3}={}){let n=t==="error"||t==="danger";this.setAttribute("role",n?"alert":"status"),this.setAttribute("aria-live",n?"assertive":"polite");let o=document.createElement("div");return o.className=`toast toast--${t}`,o.setAttribute("role",n?"alert":"status"),o.innerHTML=`
341
+ <div class="toast-content">${y(e)}</div>
328
342
  <button class="toast-close" aria-label="Close">&#215;</button>
329
- `,o.querySelector(".toast-close").addEventListener("click",()=>{this._dismiss(o)}),this._container.appendChild(o),r>0&&setTimeout(()=>this._dismiss(o),r),o}_dismiss(e){!e||!e.parentNode||(e.classList.add("toast--out"),e.addEventListener("animationend",()=>e.remove(),{once:!0}),setTimeout(()=>e.remove(),300))}};customElements.define("velin-toast",Zt);ys=Zt});var ws={};y(ws,{default:()=>xs});function iu(i,e){let t=Qt[i];return e&&t?.[e]?t[e]:Jt[i]}function ru(){if(typeof document<"u"){let t=document.querySelector('meta[name="velin-icon-sprite"]')?.getAttribute("content")?.trim();if(t)return t;let r=document.documentElement?.getAttribute("data-velin-icon-sprite")?.trim();if(r)return r}return(typeof Je.defaultSprite=="string"?Je.defaultSprite.trim():"")||Or}var Jt,Qt,Dr,Or,Je,xs,Nr=h(()=>{T();Jt={lucide:"https://unpkg.com/lucide-static@latest/icons/{name}.svg",heroicons:"https://unpkg.com/heroicons@2/24/outline/{name}.svg",bootstrap:"https://unpkg.com/bootstrap-icons@latest/icons/{name}.svg",material:"https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/{name}/default/24px.svg",fontawesome:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/solid/{name}.svg"},Qt={fontawesome:{regular:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/regular/{name}.svg",solid:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/solid/{name}.svg",brands:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/brands/{name}.svg"},heroicons:{outline:"https://unpkg.com/heroicons@2/24/outline/{name}.svg",solid:"https://unpkg.com/heroicons@2/24/solid/{name}.svg",mini:"https://unpkg.com/heroicons@2/20/solid/{name}.svg"}};Dr=new Map,Or="velin-icons.svg";Je=class extends HTMLElement{static defaultSprite=Or;static get observedAttributes(){return["name","size","label","provider","variant","sprite"]}constructor(){super(),this._rendered=!1}connectedCallback(){this._render()}attributeChangedCallback(){this._rendered&&this._render()}_render(){let e=this.getAttribute("name"),t=this.getAttribute("size")||"24",r=this._resolveA11y(),n=this.getAttribute("provider"),o=this.getAttribute("variant");if(!e){this.innerHTML="";return}if(n&&(Jt[n]||Qt[n])){this._renderFromCDN(e,t,r,n,o);return}this._renderFromSprite(e,t,r)}_resolveA11y(){let e=(this.getAttribute("label")||this.getAttribute("aria-label")||"").trim();return e?{label:e,hidden:!1}:{label:"",hidden:this.getAttribute("aria-hidden")!=="false"}}_renderFromSprite(e,t,r){let n="http://www.w3.org/2000/svg",o=document.createElementNS(n,"svg");o.setAttribute("width",t),o.setAttribute("height",t),o.setAttribute("viewBox","0 0 24 24"),o.setAttribute("fill","none"),o.setAttribute("stroke","currentColor"),o.setAttribute("stroke-width","2"),o.setAttribute("stroke-linecap","round"),o.setAttribute("stroke-linejoin","round"),this._applyStyle(o);let a=document.createElementNS(n,"use"),c=this.getAttribute("sprite"),d=document.getElementById(e),m=d&&d.tagName&&d.tagName.toLowerCase()==="symbol",_;if(c===""||c==null&&m)_=`#${e}`;else{let f=ru();_=`${$e(c||f)||f||Or}#${e}`}a.setAttribute("href",_),o.appendChild(a),this._applyA11y(o,r),this.innerHTML="",this.appendChild(o),this._rendered=!0}async _renderFromCDN(e,t,r,n,o){let a=`${n}:${o||"default"}:${e}`;if(Dr.has(a)){this._injectSVG(Dr.get(a),t,r);return}let c=iu(n,o);if(!c){this._renderFromSprite(e,t,r);return}let d=$e(c.replace("{name}",e));if(!d){this._renderFromSprite(e,t,r);return}try{let m=await fetch(d);if(!m.ok)throw new Error(`${m.status}`);let _=await m.text();if(!_.includes("<svg"))throw new Error("Not SVG");let f=await ls(_);Dr.set(a,f),this._injectSVG(f,t,r)}catch{this._renderFromSprite(e,t,r)}}_stripForeignA11y(e){e.removeAttribute("role"),e.removeAttribute("aria-label"),e.removeAttribute("aria-labelledby"),e.removeAttribute("aria-hidden"),e.querySelector("title")?.remove(),e.querySelector("desc")?.remove()}_injectSVG(e,t,r){let a=new DOMParser().parseFromString(e,"image/svg+xml").querySelector("svg");if(!a){this.innerHTML="";return}this._stripForeignA11y(a),a.setAttribute("width",t),a.setAttribute("height",t),a.getAttribute("viewBox")||a.setAttribute("viewBox","0 0 24 24"),this._applyStyle(a),this._applyA11y(a,r),this.innerHTML="",this.appendChild(document.importNode(a,!0)),this._rendered=!0}_applyStyle(e){e.style.display="inline-block",e.style.verticalAlign="middle",e.style.flexShrink="0"}_applyA11y(e,t){let{label:r,hidden:n}=t,o=e.querySelector("use");r?(e.setAttribute("role","img"),e.setAttribute("aria-label",r),e.removeAttribute("aria-hidden"),e.removeAttribute("focusable"),o&&o.removeAttribute("aria-hidden")):n&&(e.setAttribute("role","presentation"),e.setAttribute("aria-hidden","true"),e.setAttribute("focusable","false"),e.removeAttribute("aria-label"),o&&(o.setAttribute("aria-hidden","true"),o.setAttribute("focusable","false")))}static get providers(){return Object.keys(Jt)}static registerProvider(e,t,r){Jt[e]=t,r&&Qt[e]&&Object.assign(Qt[e],r)}};customElements.define("velin-icon",Je);xs=Je});var Es={};y(Es,{default:()=>As});var nu,ei,As,zr=h(()=>{Z();T();nu=`
343
+ `,o.querySelector(".toast-close").addEventListener("click",()=>{this._dismiss(o)}),this._container.appendChild(o),r>0&&setTimeout(()=>this._dismiss(o),r),o}_dismiss(e){!e||!e.parentNode||(e.classList.add("toast--out"),e.addEventListener("animationend",()=>e.remove(),{once:!0}),setTimeout(()=>e.remove(),300))}};customElements.define("velin-toast",ii);Us=ii});var Gs={};g(Gs,{default:()=>Ks});function Yd(i,e){let t=ni[i];return e&&t?.[e]?t[e]:ri[i]}function Xd(){if(typeof document<"u"){let t=document.querySelector('meta[name="velin-icon-sprite"]')?.getAttribute("content")?.trim();if(t)return t;let r=document.documentElement?.getAttribute("data-velin-icon-sprite")?.trim();if(r)return r}return(typeof nt.defaultSprite=="string"?nt.defaultSprite.trim():"")||Gr}var ri,ni,Kr,Gr,nt,Ks,Vr=p(()=>{L();ri={lucide:"https://unpkg.com/lucide-static@latest/icons/{name}.svg",heroicons:"https://unpkg.com/heroicons@2/24/outline/{name}.svg",bootstrap:"https://unpkg.com/bootstrap-icons@latest/icons/{name}.svg",material:"https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/{name}/default/24px.svg",fontawesome:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/solid/{name}.svg"},ni={fontawesome:{regular:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/regular/{name}.svg",solid:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/solid/{name}.svg",brands:"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/svgs/brands/{name}.svg"},heroicons:{outline:"https://unpkg.com/heroicons@2/24/outline/{name}.svg",solid:"https://unpkg.com/heroicons@2/24/solid/{name}.svg",mini:"https://unpkg.com/heroicons@2/20/solid/{name}.svg"}};Kr=new Map,Gr="velin-icons.svg";nt=class extends HTMLElement{static defaultSprite=Gr;static get observedAttributes(){return["name","size","label","provider","variant","sprite"]}constructor(){super(),this._rendered=!1}connectedCallback(){this._render()}attributeChangedCallback(){this._rendered&&this._render()}_render(){let e=this.getAttribute("name"),t=this.getAttribute("size")||"24",r=this._resolveA11y(),n=this.getAttribute("provider"),o=this.getAttribute("variant");if(!e){this.innerHTML="";return}if(n&&(ri[n]||ni[n])){this._renderFromCDN(e,t,r,n,o);return}this._renderFromSprite(e,t,r)}_resolveA11y(){let e=(this.getAttribute("label")||this.getAttribute("aria-label")||"").trim();return e?{label:e,hidden:!1}:{label:"",hidden:this.getAttribute("aria-hidden")!=="false"}}_renderFromSprite(e,t,r){let n="http://www.w3.org/2000/svg",o=document.createElementNS(n,"svg");o.setAttribute("width",t),o.setAttribute("height",t),o.setAttribute("viewBox","0 0 24 24"),o.setAttribute("fill","none"),o.setAttribute("stroke","currentColor"),o.setAttribute("stroke-width","2"),o.setAttribute("stroke-linecap","round"),o.setAttribute("stroke-linejoin","round"),this._applyStyle(o);let a=document.createElementNS(n,"use"),c=this.getAttribute("sprite"),u=document.getElementById(e),h=u&&u.tagName&&u.tagName.toLowerCase()==="symbol",b;if(c===""||c==null&&h)b=`#${e}`;else{let m=Xd();b=`${Ue(c||m)||m||Gr}#${e}`}a.setAttribute("href",b),o.appendChild(a),this._applyA11y(o,r),this.innerHTML="",this.appendChild(o),this._rendered=!0}async _renderFromCDN(e,t,r,n,o){let a=`${n}:${o||"default"}:${e}`;if(Kr.has(a)){this._injectSVG(Kr.get(a),t,r);return}let c=Yd(n,o);if(!c){this._renderFromSprite(e,t,r);return}let u=Ue(c.replace("{name}",e));if(!u){this._renderFromSprite(e,t,r);return}try{let h=await fetch(u);if(!h.ok)throw new Error(`${h.status}`);let b=await h.text();if(!b.includes("<svg"))throw new Error("Not SVG");let m=await Hs(b);Kr.set(a,m),this._injectSVG(m,t,r)}catch{this._renderFromSprite(e,t,r)}}_stripForeignA11y(e){e.removeAttribute("role"),e.removeAttribute("aria-label"),e.removeAttribute("aria-labelledby"),e.removeAttribute("aria-hidden"),e.querySelector("title")?.remove(),e.querySelector("desc")?.remove()}_injectSVG(e,t,r){let a=new DOMParser().parseFromString(e,"image/svg+xml").querySelector("svg");if(!a){this.innerHTML="";return}this._stripForeignA11y(a),a.setAttribute("width",t),a.setAttribute("height",t),a.getAttribute("viewBox")||a.setAttribute("viewBox","0 0 24 24"),this._applyStyle(a),this._applyA11y(a,r),this.innerHTML="",this.appendChild(document.importNode(a,!0)),this._rendered=!0}_applyStyle(e){e.style.display="inline-block",e.style.verticalAlign="middle",e.style.flexShrink="0"}_applyA11y(e,t){let{label:r,hidden:n}=t,o=e.querySelector("use");r?(e.setAttribute("role","img"),e.setAttribute("aria-label",r),e.removeAttribute("aria-hidden"),e.removeAttribute("focusable"),o&&o.removeAttribute("aria-hidden")):n&&(e.setAttribute("role","presentation"),e.setAttribute("aria-hidden","true"),e.setAttribute("focusable","false"),e.removeAttribute("aria-label"),o&&(o.setAttribute("aria-hidden","true"),o.setAttribute("focusable","false")))}static get providers(){return Object.keys(ri)}static registerProvider(e,t,r){ri[e]=t,r&&ni[e]&&Object.assign(ni[e],r)}};customElements.define("velin-icon",nt);Ks=nt});var Ws={};g(Ws,{default:()=>Vs});var Zd,oi,Vs,Wr=p(()=>{J();Zd=`
330
344
  :host { display: contents; }
331
345
  .overlay {
332
346
  position: fixed;
@@ -371,17 +385,20 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
371
385
  .close-btn:hover { background: var(--velin-color-surface-dim, #eee); color: var(--velin-color-text, #111); }
372
386
  .body { flex: 1; padding: var(--velin-space-5, 1.25rem); overflow-y: auto; }
373
387
  @media (prefers-reduced-motion: reduce) { .overlay, .drawer { transition: none; } }
374
- `,ei=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._prev=null,this._onKey=this._onKey.bind(this)}connectedCallback(){let e=this.getAttribute("title")||"",t=b(e),r="velin-drawer-title";this.shadowRoot.innerHTML=`
375
- <style>${nu}</style>
388
+ `,oi=class extends HTMLElement{static get observedAttributes(){return["open","title"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._prev=null,this._onKey=this._onKey.bind(this),this._onTitleSlot=this._onTitleSlot.bind(this)}connectedCallback(){if(this.shadowRoot.querySelector(".drawer"))return;let e="velin-drawer-title";this.shadowRoot.innerHTML=`
389
+ <style>${Zd}</style>
376
390
  <div class="overlay" part="overlay"></div>
377
- <div class="drawer" role="dialog" aria-modal="true" aria-labelledby="${r}" part="drawer">
391
+ <div class="drawer" role="dialog" aria-modal="true" aria-labelledby="${e}" part="drawer">
378
392
  <div class="header" part="header">
379
- <h2 class="title" id="${r}">${t}</h2>
393
+ <h2 class="title" id="${e}" part="title">
394
+ <slot name="title"></slot>
395
+ <span class="title-fallback"></span>
396
+ </h2>
380
397
  <button class="close-btn" aria-label="Close" part="close">&#215;</button>
381
398
  </div>
382
399
  <div class="body" part="body"><slot></slot></div>
383
400
  </div>
384
- `,this.shadowRoot.querySelector(".close-btn").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".overlay").addEventListener("click",()=>this.close())}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close())}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_open(){this._prev=ae(),ce(this),document.addEventListener("keydown",this._onKey),requestAnimationFrame(()=>{let e=fe(this.shadowRoot);e.length&&e[0].focus()})}_close(){document.removeEventListener("keydown",this._onKey),G(this),le(this._prev)}_onKey(e){if(e.key==="Escape"){this.close();return}ee(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKey),G(this)}};customElements.define("velin-drawer",ei);As=ei});var Ss={};y(Ss,{default:()=>ks});function au(i,e){if(!i||su.has(i)||$r.has(i))return;if(document.querySelector(`link[data-velin-theme-css="${i}"]`)){$r.add(i);return}let r=document.createElement("link");r.rel="stylesheet",r.href=`${e.replace(/\/$/,"")}/${i}.min.css`,r.setAttribute("data-velin-theme-css",i),document.head.appendChild(r),$r.add(i)}var ou,su,$r,lu,ti,ks,Fr=h(()=>{ou=[{slug:"",label:"Default (Light)"},{slug:"dark",label:"Dark"},{slug:"brutalist",label:"Brutalist"},{slug:"corporate",label:"Corporate"},{slug:"earth",label:"Earth"},{slug:"forest",label:"Forest"},{slug:"midnight",label:"Midnight"},{slug:"neon",label:"Neon"},{slug:"nordic",label:"Nordic"},{slug:"ocean",label:"Ocean"},{slug:"pastel",label:"Pastel"},{slug:"retro",label:"Retro"},{slug:"sharp",label:"Sharp"},{slug:"soft",label:"Soft"},{slug:"sunset",label:"Sunset"}],su=new Set(["","dark"]),$r=new Set;lu=`
401
+ `,this.shadowRoot.querySelector(".close-btn").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".overlay").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector('slot[name="title"]').addEventListener("slotchange",this._onTitleSlot),this._syncTitle()}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close()),e==="title"&&this._syncTitle()}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_syncTitle(){let e=this.shadowRoot?.querySelector(".title-fallback");e&&(e.textContent=this.getAttribute("title")||"")}_hasTitleSlot(){let e=this.shadowRoot?.querySelector('slot[name="title"]');return e?e.assignedNodes({flatten:!0}).some(t=>t.nodeType===Node.TEXT_NODE?!!t.textContent.trim():t.nodeType===Node.ELEMENT_NODE):!1}_onTitleSlot(){let e=this.shadowRoot?.querySelector('[role="dialog"]'),t=this.shadowRoot?.querySelector(".title-fallback");if(!(!e||!t))if(this._hasTitleSlot()){t.hidden=!0,e.removeAttribute("aria-labelledby");let n=this.shadowRoot.querySelector('slot[name="title"]').assignedNodes({flatten:!0}).map(o=>o.textContent||"").join(" ").trim();n&&e.setAttribute("aria-label",n)}else t.hidden=!1,e.removeAttribute("aria-label"),e.setAttribute("aria-labelledby","velin-drawer-title"),this._syncTitle()}_open(){this._prev=ue(),pe(this),document.addEventListener("keydown",this._onKey),requestAnimationFrame(()=>{let e=ge(this.shadowRoot);e.length&&e[0].focus()})}_close(){document.removeEventListener("keydown",this._onKey),W(this),de(this._prev)}_onKey(e){if(e.key==="Escape"){this.close();return}re(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKey),W(this)}};customElements.define("velin-drawer",oi);Vs=oi});var Zs={};g(Zs,{default:()=>Xs});function ep(i,e){let t=Ys.has(e);(i===document.documentElement||i===document.body)&&(i.style.colorScheme=t?"dark":"light"),i.setAttribute("data-velin-color-scheme",t?"dark":"light")}function tp(i,e){if(!i||Qd.has(i)||Yr.has(i))return;if(document.querySelector(`link[data-velin-theme-css="${i}"]`)){Yr.add(i);return}let r=document.createElement("link");r.rel="stylesheet",r.href=`${e.replace(/\/$/,"")}/${i}.min.css`,r.setAttribute("data-velin-theme-css",i),document.head.appendChild(r),Yr.add(i)}var Jd,Qd,Ys,Yr,ip,si,Xs,Xr=p(()=>{Jd=[{slug:"",label:"Default (Light)"},{slug:"dark",label:"Dark"},{slug:"brutalist",label:"Brutalist"},{slug:"corporate",label:"Corporate"},{slug:"earth",label:"Earth"},{slug:"forest",label:"Forest"},{slug:"midnight",label:"Midnight"},{slug:"neon",label:"Neon"},{slug:"nordic",label:"Nordic"},{slug:"ocean",label:"Ocean"},{slug:"pastel",label:"Pastel"},{slug:"retro",label:"Retro"},{slug:"sharp",label:"Sharp"},{slug:"soft",label:"Soft"},{slug:"sunset",label:"Sunset"}],Qd=new Set(["","dark"]),Ys=new Set(["dark","midnight","neon"]),Yr=new Set;ip=`
385
402
  :host { display: inline-flex; position: relative; }
386
403
  .group {
387
404
  display: inline-flex; align-items: stretch;
@@ -460,8 +477,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
460
477
  background: currentColor;
461
478
  border: 1px solid var(--velin-color-border, #ddd);
462
479
  }
463
- `,ti=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onDocClick=this._onDocClick.bind(this),this._onKeyDown=this._onKeyDown.bind(this)}connectedCallback(){this.shadowRoot.innerHTML=`
464
- <style>${lu}</style>
480
+ `,si=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onDocClick=this._onDocClick.bind(this),this._onKeyDown=this._onKeyDown.bind(this)}connectedCallback(){this.shadowRoot.innerHTML=`
481
+ <style>${ip}</style>
465
482
  <div class="group" part="group">
466
483
  <button class="toggle" part="button" aria-label="Toggle dark mode" aria-pressed="false">
467
484
  <svg class="sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" aria-hidden="true" focusable="false">
@@ -481,14 +498,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
481
498
  </button>
482
499
  </div>
483
500
  <ul class="menu" role="menu" aria-label="Theme selection" hidden></ul>
484
- `,this._target=document.querySelector(this.getAttribute("target")||"html"),this._themesBase=this.getAttribute("themes-base")||"dist/themes",this._menu=this.shadowRoot.querySelector(".menu"),this._toggleBtn=this.shadowRoot.querySelector(".toggle"),this._pickerBtn=this.shadowRoot.querySelector(".picker"),this._renderMenu(),this._initPreference(),this._syncTogglePressed(),this._toggleBtn.addEventListener("click",()=>this._toggleDarkMode()),this._pickerBtn.addEventListener("click",t=>{t.stopPropagation(),this._toggleMenu()}),document.addEventListener("click",this._onDocClick),this.shadowRoot.addEventListener("keydown",this._onKeyDown),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",()=>this._applyFromPreference()),window.addEventListener("storage",t=>{t.key==="velin-theme"&&this._readStorage()})}disconnectedCallback(){document.removeEventListener("click",this._onDocClick)}_renderMenu(){this._menu.innerHTML=ou.map(e=>`
501
+ `,this._target=document.querySelector(this.getAttribute("target")||"html"),this._themesBase=this.getAttribute("themes-base")||"dist/themes",this._menu=this.shadowRoot.querySelector(".menu"),this._toggleBtn=this.shadowRoot.querySelector(".toggle"),this._pickerBtn=this.shadowRoot.querySelector(".picker"),this._renderMenu(),this._initPreference(),this._syncTogglePressed(),this._toggleBtn.addEventListener("click",()=>this._toggleDarkMode()),this._pickerBtn.addEventListener("click",t=>{t.stopPropagation(),this._toggleMenu()}),document.addEventListener("click",this._onDocClick),this.shadowRoot.addEventListener("keydown",this._onKeyDown),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",()=>this._applyFromPreference()),window.addEventListener("storage",t=>{t.key==="velin-theme"&&this._readStorage()})}disconnectedCallback(){document.removeEventListener("click",this._onDocClick)}_renderMenu(){this._menu.innerHTML=Jd.map(e=>`
485
502
  <li role="none">
486
503
  <button type="button" role="menuitem" data-theme="${e.slug}">
487
504
  <span class="swatch" aria-hidden="true" data-theme-swatch="${e.slug}"></span>
488
505
  ${e.label}
489
506
  </button>
490
507
  </li>
491
- `).join(""),this._menu.removeAttribute("hidden"),this._menu.querySelectorAll("button[data-theme]").forEach(e=>{e.addEventListener("click",()=>{let t=e.getAttribute("data-theme");this._applyTheme(t,{persist:!0}),this._closeMenu()})})}_toggleMenu(){this.hasAttribute("menu-open")?this._closeMenu():this._openMenu()}_openMenu(){this.setAttribute("menu-open",""),this._pickerBtn.setAttribute("aria-expanded","true"),this._highlightActive();let e=this._menu.querySelector("button[data-theme]");e&&e.focus()}_closeMenu(){this.removeAttribute("menu-open"),this._pickerBtn.setAttribute("aria-expanded","false")}_onDocClick(e){this.hasAttribute("menu-open")&&(e.composedPath().includes(this)||this._closeMenu())}_onKeyDown(e){if(this.hasAttribute("menu-open")){if(e.key==="Escape"){e.preventDefault(),this._closeMenu(),this._pickerBtn.focus();return}if(e.key==="ArrowDown"||e.key==="ArrowUp"){e.preventDefault();let t=Array.from(this._menu.querySelectorAll("button[data-theme]")),r=t.indexOf(this.shadowRoot.activeElement);(e.key==="ArrowDown"?t[(r+1)%t.length]:t[(r-1+t.length)%t.length])?.focus()}}}_highlightActive(){let e=this._currentSlug();this._menu.querySelectorAll("button[data-theme]").forEach(t=>{t.getAttribute("data-theme")===e?t.setAttribute("aria-current","true"):t.removeAttribute("aria-current")})}_currentSlug(){if(!this._target)return"";let e=this._target.getAttribute("data-velin-theme");return!e||e==="light"?"":e}_initPreference(){let e=localStorage.getItem("velin-theme");if(e){this._applyTheme(e,{persist:!1});return}this._applyFromPreference()}_readStorage(){let e=localStorage.getItem("velin-theme");this._applyTheme(e||"",{persist:!1})}_applyFromPreference(){if(localStorage.getItem("velin-theme"))return;let e=window.matchMedia("(prefers-color-scheme: dark)").matches;this._applyTheme(e?"dark":"",{persist:!1})}_applyTheme(e,{persist:t}){let r=!e||e==="light"?"":e;this._target&&(r?(this._target.setAttribute("data-velin-theme",r),this.setAttribute("theme",r==="dark"?"dark":r),au(r,this._themesBase)):(this._target.removeAttribute("data-velin-theme"),this.removeAttribute("theme")),t&&(r?localStorage.setItem("velin-theme",r):localStorage.removeItem("velin-theme")),this._highlightActive(),this.dispatchEvent(new CustomEvent("velin-theme-change",{bubbles:!0,detail:{theme:r||"light",dark:r==="dark",slug:r}})))}_syncTogglePressed(){let e=this._currentSlug()==="dark";this._toggleBtn?.setAttribute("aria-pressed",e?"true":"false")}_toggleDarkMode(){let t=this._currentSlug()==="dark"?"":"dark";this._applyTheme(t,{persist:!0}),this._syncTogglePressed()}};customElements.define("velin-theme-toggle",ti);ks=ti});var Ls={};y(Ls,{default:()=>Ts});var cu,du,ii,Ts,Hr=h(()=>{T();Z();cu=`
508
+ `).join(""),this._menu.removeAttribute("hidden"),this._menu.querySelectorAll("button[data-theme]").forEach(e=>{e.addEventListener("click",()=>{let t=e.getAttribute("data-theme");this._applyTheme(t,{persist:!0}),this._closeMenu()})})}_toggleMenu(){this.hasAttribute("menu-open")?this._closeMenu():this._openMenu()}_openMenu(){this.setAttribute("menu-open",""),this._pickerBtn.setAttribute("aria-expanded","true"),this._highlightActive();let e=this._menu.querySelector("button[data-theme]");e&&e.focus()}_closeMenu(){this.removeAttribute("menu-open"),this._pickerBtn.setAttribute("aria-expanded","false")}_onDocClick(e){this.hasAttribute("menu-open")&&(e.composedPath().includes(this)||this._closeMenu())}_onKeyDown(e){if(this.hasAttribute("menu-open")){if(e.key==="Escape"){e.preventDefault(),this._closeMenu(),this._pickerBtn.focus();return}if(e.key==="ArrowDown"||e.key==="ArrowUp"){e.preventDefault();let t=Array.from(this._menu.querySelectorAll("button[data-theme]")),r=t.indexOf(this.shadowRoot.activeElement);(e.key==="ArrowDown"?t[(r+1)%t.length]:t[(r-1+t.length)%t.length])?.focus()}}}_highlightActive(){let e=this._currentSlug();this._menu.querySelectorAll("button[data-theme]").forEach(t=>{t.getAttribute("data-theme")===e?t.setAttribute("aria-current","true"):t.removeAttribute("aria-current")})}_currentSlug(){if(!this._target)return"";let e=this._target.getAttribute("data-velin-theme");return!e||e==="light"?"":e}_initPreference(){let e=localStorage.getItem("velin-theme");if(e){this._applyTheme(e,{persist:!1});return}this._applyFromPreference()}_readStorage(){let e=localStorage.getItem("velin-theme");this._applyTheme(e||"",{persist:!1})}_applyFromPreference(){if(localStorage.getItem("velin-theme"))return;let e=window.matchMedia("(prefers-color-scheme: dark)").matches;this._applyTheme(e?"dark":"",{persist:!1})}_applyTheme(e,{persist:t}){let r=!e||e==="light"?"":e;this._target&&(r?(this._target.setAttribute("data-velin-theme",r),this.setAttribute("theme",r==="dark"?"dark":r),tp(r,this._themesBase)):(this._target.removeAttribute("data-velin-theme"),this.removeAttribute("theme")),ep(this._target,r),t&&(r?localStorage.setItem("velin-theme",r):localStorage.removeItem("velin-theme")),this._highlightActive(),this.dispatchEvent(new CustomEvent("velin-theme-change",{bubbles:!0,detail:{theme:r||"light",dark:Ys.has(r),slug:r}})))}_syncTogglePressed(){let e=this._currentSlug()==="dark";this._toggleBtn?.setAttribute("aria-pressed",e?"true":"false")}_toggleDarkMode(){let t=this._currentSlug()==="dark"?"":"dark";this._applyTheme(t,{persist:!0}),this._syncTogglePressed()}};customElements.define("velin-theme-toggle",si);Xs=si});var Qs={};g(Qs,{default:()=>Js});var rp,np,ai,Js,Zr=p(()=>{L();J();rp=`
492
509
  :host { position: relative; display: inline-block; }
493
510
  .popover {
494
511
  position: absolute; z-index: var(--velin-z-dropdown, 200);
@@ -513,14 +530,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
513
530
  border-bottom: 1px solid var(--velin-color-border, #ddd);
514
531
  }
515
532
  @media (prefers-reduced-motion: reduce) { .popover { transition: none; } }
516
- `,du=0,ii=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open"}),this._popoverId=`velin-popover-${++du}`,this._onOutside=this._onOutside.bind(this),this._onKey=this._onKey.bind(this),this._prevFocus=null,this._isDialog=!1}connectedCallback(){let e=this.getAttribute("placement")||"bottom",t=this.getAttribute("trigger")||"click",r=this.getAttribute("title")||"",n=t==="hover"?"tooltip":"dialog";this._isDialog=n==="dialog";let o=r?`${this._popoverId}-title`:"";this.shadowRoot.innerHTML=`
517
- <style>${cu}</style>
533
+ `,np=0,ai=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open"}),this._popoverId=`velin-popover-${++np}`,this._onOutside=this._onOutside.bind(this),this._onKey=this._onKey.bind(this),this._prevFocus=null,this._isDialog=!1}connectedCallback(){let e=this.getAttribute("placement")||"bottom",t=this.getAttribute("trigger")||"click",r=this.getAttribute("title")||"",n=t==="hover"?"tooltip":"dialog";this._isDialog=n==="dialog";let o=r?`${this._popoverId}-title`:"";this.shadowRoot.innerHTML=`
534
+ <style>${rp}</style>
518
535
  <slot name="trigger"></slot>
519
536
  <div class="popover popover--${e}" id="${this._popoverId}" role="${n}" part="popover"${o?` aria-labelledby="${o}"`:""}>
520
- ${r?`<div class="popover__title" id="${o}" part="title">${b(r)}</div>`:""}
537
+ ${r?`<div class="popover__title" id="${o}" part="title">${y(r)}</div>`:""}
521
538
  <slot></slot>
522
539
  </div>
523
- `;let a=this.shadowRoot.querySelector(".popover");if(!r&&a){let d=this.getAttribute("aria-label")||(n==="tooltip"?"Tooltip":"Popover");a.setAttribute("aria-label",d)}this.shadowRoot.querySelector('slot[name="trigger"]').addEventListener("slotchange",()=>this._wireTrigger(t)),this._wireTrigger(t)}_ensureTriggerInteractive(e){let t=e.tagName;t!=="BUTTON"&&t!=="A"&&e.getAttribute("role")!=="button"&&(e.setAttribute("role","button"),e.hasAttribute("tabindex")||e.setAttribute("tabindex","0"))}_onTriggerKey(e){if(e.key==="Escape"){this.close();return}(e.key==="Enter"||e.key===" ")&&(e.preventDefault(),this.toggle())}_wireTrigger(e){let t=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];if(!t)return;this._ensureTriggerInteractive(t);let r=e==="hover";t.setAttribute("aria-haspopup",r?"true":"dialog"),t.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false"),this._isDialog&&t.setAttribute("aria-controls",this._popoverId),t.removeEventListener("keydown",this._onTriggerKeyBound),this._onTriggerKeyBound=this._onTriggerKeyBound||this._onTriggerKey.bind(this),t.addEventListener("keydown",this._onTriggerKeyBound),e==="click"?t.onclick=()=>this.toggle():e==="hover"?(this.onmouseenter=()=>this.open(),this.onmouseleave=()=>this.close(),this.onfocusin=()=>this.open(),this.onfocusout=n=>{this.contains(n.relatedTarget)||this.close()}):e==="focus"&&(t.onfocusin=()=>this.open(),t.onfocusout=()=>this.close())}open(){this.setAttribute("open","");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","true"),document.addEventListener("click",this._onOutside,!0),document.addEventListener("keydown",this._onKey),this._isDialog&&(this._prevFocus=ae(),requestAnimationFrame(()=>{let t=fe(this.shadowRoot.querySelector(".popover"));t.length?t[0].focus():this.shadowRoot.querySelector(".popover")?.focus()}))}close(){this.removeAttribute("open");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","false"),document.removeEventListener("click",this._onOutside,!0),document.removeEventListener("keydown",this._onKey),this._isDialog&&this._prevFocus&&(le(this._prevFocus),this._prevFocus=null)}toggle(){this.hasAttribute("open")?this.close():this.open()}_onOutside(e){this.contains(e.target)||this.close()}_onKey(e){if(e.key==="Escape"){this.close();let t=this.querySelector('[slot="trigger"]');t&&t.focus();return}this._isDialog&&this.hasAttribute("open")&&ee(this.shadowRoot.querySelector(".popover"),e)}disconnectedCallback(){document.removeEventListener("click",this._onOutside,!0),document.removeEventListener("keydown",this._onKey)}};customElements.define("velin-popover",ii);Ts=ii});var Rs={};y(Rs,{default:()=>Cs});var uu,ri,Cs,Pr=h(()=>{T();uu=`
540
+ `;let a=this.shadowRoot.querySelector(".popover");if(!r&&a){let u=this.getAttribute("aria-label")||(n==="tooltip"?"Tooltip":"Popover");a.setAttribute("aria-label",u)}this.shadowRoot.querySelector('slot[name="trigger"]').addEventListener("slotchange",()=>this._wireTrigger(t)),this._wireTrigger(t)}_ensureTriggerInteractive(e){let t=e.tagName;t!=="BUTTON"&&t!=="A"&&e.getAttribute("role")!=="button"&&(e.setAttribute("role","button"),e.hasAttribute("tabindex")||e.setAttribute("tabindex","0"))}_onTriggerKey(e){if(e.key==="Escape"){this.close();return}(e.key==="Enter"||e.key===" ")&&(e.preventDefault(),this.toggle())}_wireTrigger(e){let t=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];if(!t)return;this._ensureTriggerInteractive(t);let r=e==="hover";t.setAttribute("aria-haspopup",r?"true":"dialog"),t.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false"),this._isDialog&&t.setAttribute("aria-controls",this._popoverId),t.removeEventListener("keydown",this._onTriggerKeyBound),this._onTriggerKeyBound=this._onTriggerKeyBound||this._onTriggerKey.bind(this),t.addEventListener("keydown",this._onTriggerKeyBound),e==="click"?t.onclick=()=>this.toggle():e==="hover"?(this.onmouseenter=()=>this.open(),this.onmouseleave=()=>this.close(),this.onfocusin=()=>this.open(),this.onfocusout=n=>{this.contains(n.relatedTarget)||this.close()}):e==="focus"&&(t.onfocusin=()=>this.open(),t.onfocusout=()=>this.close())}open(){this.setAttribute("open","");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","true"),document.addEventListener("click",this._onOutside,!0),document.addEventListener("keydown",this._onKey),this._isDialog&&(this._prevFocus=ue(),requestAnimationFrame(()=>{let t=ge(this.shadowRoot.querySelector(".popover"));t.length?t[0].focus():this.shadowRoot.querySelector(".popover")?.focus()}))}close(){this.removeAttribute("open");let e=this.querySelector('[slot="trigger"]');e&&e.setAttribute("aria-expanded","false"),document.removeEventListener("click",this._onOutside,!0),document.removeEventListener("keydown",this._onKey),this._isDialog&&this._prevFocus&&(de(this._prevFocus),this._prevFocus=null)}toggle(){this.hasAttribute("open")?this.close():this.open()}_onOutside(e){this.contains(e.target)||this.close()}_onKey(e){if(e.key==="Escape"){this.close();let t=this.querySelector('[slot="trigger"]');t&&t.focus();return}this._isDialog&&this.hasAttribute("open")&&re(this.shadowRoot.querySelector(".popover"),e)}disconnectedCallback(){document.removeEventListener("click",this._onOutside,!0),document.removeEventListener("keydown",this._onKey)}};customElements.define("velin-popover",ai);Js=ai});var ta={};g(ta,{default:()=>ea});var op,li,ea,Jr=p(()=>{L();op=`
524
541
  :host { display: inline-flex; }
525
542
  button {
526
543
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
@@ -540,8 +557,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
540
557
  button[data-copied] .copy-icon { display: none; }
541
558
  button[data-copied] .check { display: block; }
542
559
  @media (prefers-reduced-motion: reduce) { button { transition: none; } }
543
- `,ri=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){let e=b(this.getAttribute("label")||"");this.shadowRoot.innerHTML=`
544
- <style>${uu}</style>
560
+ `,li=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){let e=y(this.getAttribute("label")||"");this.shadowRoot.innerHTML=`
561
+ <style>${op}</style>
545
562
  <button part="button" aria-label="Copy">
546
563
  <svg class="copy-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
547
564
  <rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"/>
@@ -551,7 +568,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
551
568
  </svg>
552
569
  ${e?`<span>${e}</span>`:""}
553
570
  </button>
554
- `,this.shadowRoot.querySelector("button").addEventListener("click",()=>this._copy())}_getCopyText(){return this.getAttribute("value")||this.getAttribute("text")||this.dataset.source||""}async _copy(){let e=this._getCopyText();if(!e)return;try{await navigator.clipboard.writeText(e)}catch{let r=document.createElement("textarea");r.value=e,r.style.cssText="position:fixed;opacity:0",document.body.appendChild(r),r.select(),document.execCommand("copy"),r.remove()}let t=this.shadowRoot.querySelector("button");t.setAttribute("data-copied",""),t.setAttribute("aria-label","Copied"),this.dispatchEvent(new CustomEvent("velin-copied",{bubbles:!0,detail:{value:e}})),setTimeout(()=>{t.removeAttribute("data-copied"),t.setAttribute("aria-label","Copy")},2e3)}};customElements.get("velin-copy")||customElements.define("velin-copy",ri);Cs=ri});var Is={};y(Is,{default:()=>Ms});var hu,ni,Ms,qr=h(()=>{hu=`
571
+ `,this.shadowRoot.querySelector("button").addEventListener("click",()=>this._copy())}_getCopyText(){return this.getAttribute("value")||this.getAttribute("text")||this.dataset.source||""}async _copy(){let e=this._getCopyText();if(!e)return;try{await navigator.clipboard.writeText(e)}catch{let r=document.createElement("textarea");r.value=e,r.style.cssText="position:fixed;opacity:0",document.body.appendChild(r),r.select(),document.execCommand("copy"),r.remove()}let t=this.shadowRoot.querySelector("button");t.setAttribute("data-copied",""),t.setAttribute("aria-label","Copied"),this.dispatchEvent(new CustomEvent("velin-copied",{bubbles:!0,detail:{value:e}})),setTimeout(()=>{t.removeAttribute("data-copied"),t.setAttribute("aria-label","Copy")},2e3)}};customElements.get("velin-copy")||customElements.define("velin-copy",li);ea=li});var ra={};g(ra,{default:()=>ia});var sp,ci,ia,Qr=p(()=>{sp=`
555
572
  :host { position: fixed; inset-block-end: var(--velin-scroll-top-bottom, var(--velin-space-4, 1rem)); inset-inline-end: var(--velin-scroll-top-end, var(--velin-space-4, 1rem)); z-index: var(--velin-z-fixed, 300); }
556
573
  button {
557
574
  display: inline-flex; align-items: center; justify-content: center;
@@ -567,14 +584,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
567
584
  :host([visible]) button { opacity: 1; visibility: visible; transform: translateY(0); }
568
585
  svg { width: 1.25rem; height: 1.25rem; }
569
586
  @media (prefers-reduced-motion: reduce) { button { transition: none; } }
570
- `,ni=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onScroll=this._onScroll.bind(this)}connectedCallback(){let e=parseInt(this.getAttribute("threshold")||"300",10);this._threshold=e,this.shadowRoot.innerHTML=`
571
- <style>${hu}</style>
587
+ `,ci=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onScroll=this._onScroll.bind(this)}connectedCallback(){let e=parseInt(this.getAttribute("threshold")||"300",10);this._threshold=e,this.shadowRoot.innerHTML=`
588
+ <style>${sp}</style>
572
589
  <button part="button" aria-label="Scroll to top">
573
590
  <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false">
574
591
  <line x1="12" y1="19" x2="12" y2="5"/><polyline points="5 12 12 5 19 12"/>
575
592
  </svg>
576
593
  </button>
577
- `,this.shadowRoot.querySelector("button").addEventListener("click",()=>{let t=window.matchMedia("(prefers-reduced-motion: reduce)").matches;window.scrollTo({top:0,behavior:t?"auto":"smooth"})}),window.addEventListener("scroll",this._onScroll,{passive:!0}),this._onScroll()}_onScroll(){window.scrollY>this._threshold?this.setAttribute("visible",""):this.removeAttribute("visible")}disconnectedCallback(){window.removeEventListener("scroll",this._onScroll)}};customElements.define("velin-scroll-top",ni);Ms=ni});var Os={};y(Os,{default:()=>Ds});var pu,oi,Ds,Br=h(()=>{pu=`
594
+ `,this.shadowRoot.querySelector("button").addEventListener("click",()=>{let t=window.matchMedia("(prefers-reduced-motion: reduce)").matches;window.scrollTo({top:0,behavior:t?"auto":"smooth"})}),window.addEventListener("scroll",this._onScroll,{passive:!0}),this._onScroll()}_onScroll(){window.scrollY>this._threshold?this.setAttribute("visible",""):this.removeAttribute("visible")}disconnectedCallback(){window.removeEventListener("scroll",this._onScroll)}};customElements.define("velin-scroll-top",ci);ia=ci});var oa={};g(oa,{default:()=>na});var ap,ui,na,en=p(()=>{ap=`
578
595
  :host { display: block; position: relative; overflow: hidden; }
579
596
  .track {
580
597
  display: flex; transition: transform 400ms ease;
@@ -625,8 +642,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
625
642
  .dot[aria-current="true"]::before { background: var(--velin-color-primary, #2563eb); transform: scale(1.3); }
626
643
  .dot:focus-visible { outline: 2px solid var(--velin-color-focus, #2563eb); outline-offset: 2px; }
627
644
  @media (prefers-reduced-motion: reduce) { .track { transition: none; } }
628
- `,oi=class extends HTMLElement{static get observedAttributes(){return["autoplay","interval"]}constructor(){super(),this.attachShadow({mode:"open"}),this._index=0,this._timer=null,this._startX=0,this._autoplayPaused=!1}connectedCallback(){this.shadowRoot.innerHTML=`
629
- <style>${pu}</style>
645
+ `,ui=class extends HTMLElement{static get observedAttributes(){return["autoplay","interval"]}constructor(){super(),this.attachShadow({mode:"open"}),this._index=0,this._timer=null,this._startX=0,this._autoplayPaused=!1}connectedCallback(){this.shadowRoot.innerHTML=`
646
+ <style>${ap}</style>
630
647
  <div class="track" role="group" aria-roledescription="carousel" part="track"><slot></slot></div>
631
648
  <div class="controls" part="controls">
632
649
  <button class="prev" aria-label="Previous slide" part="prev">
@@ -637,7 +654,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
637
654
  </button>
638
655
  </div>
639
656
  <div class="indicators" role="group" aria-label="Slide indicators" part="indicators"></div>
640
- `,this.shadowRoot.querySelector(".prev").addEventListener("click",()=>this.prev()),this.shadowRoot.querySelector(".next").addEventListener("click",()=>this.next());let e=this.shadowRoot.querySelector(".track");e.addEventListener("touchstart",r=>{this._startX=r.touches[0].clientX},{passive:!0}),e.addEventListener("touchend",r=>{let n=this._startX-r.changedTouches[0].clientX;Math.abs(n)>50&&(n>0?this.next():this.prev())}),this.addEventListener("mouseenter",()=>this._pause()),this.addEventListener("mouseleave",()=>this._resume()),this.addEventListener("focusin",()=>this._pause()),this.addEventListener("focusout",()=>this._resume()),this.addEventListener("keydown",r=>{r.key==="ArrowLeft"?(this.prev(),r.preventDefault()):r.key==="ArrowRight"?(this.next(),r.preventDefault()):r.key==="Home"?(this.goTo(0),r.preventDefault()):r.key==="End"&&(this.goTo(this._count-1),r.preventDefault())}),this.hasAttribute("role")||this.setAttribute("role","region"),this.setAttribute("aria-roledescription","carousel"),this.shadowRoot.querySelector("slot").addEventListener("slotchange",()=>{this._buildDots(),this._update()}),this.hasAttribute("autoplay")&&this._startAutoplay()}get _slides(){return this.shadowRoot.querySelector("slot").assignedElements()}get _count(){return this._slides.length}prev(){this._index=(this._index-1+this._count)%this._count,this._update(),this._emit()}next(){this._index=(this._index+1)%this._count,this._update(),this._emit()}goTo(e){this._index=Math.max(0,Math.min(e,this._count-1)),this._update(),this._emit()}_update(){let e=this.shadowRoot.querySelector(".track");e.style.transform=`translateX(-${this._index*100}%)`,this._slides.forEach((t,r)=>{t.setAttribute("aria-hidden",r!==this._index?"true":"false"),t.inert=r!==this._index,t.setAttribute("aria-roledescription","slide"),t.setAttribute("aria-label",`Slide ${r+1} of ${this._count}`)}),this.shadowRoot.querySelectorAll(".dot").forEach((t,r)=>{t.setAttribute("aria-current",r===this._index?"true":"false")})}_buildDots(){let e=this.shadowRoot.querySelector(".indicators");if(e.innerHTML="",this._slides.forEach((t,r)=>{let n=document.createElement("button");n.type="button",n.className="dot",n.setAttribute("aria-label",`Go to slide ${r+1}`),n.addEventListener("click",()=>this.goTo(r)),e.appendChild(n)}),this.hasAttribute("autoplay")){let t=document.createElement("button");t.type="button",t.className="pause-btn",t.setAttribute("aria-pressed","false"),t.setAttribute("aria-label","Pause automatic slide show"),t.textContent="Pause",t.addEventListener("click",()=>this._toggleAutoplayPause(t)),e.appendChild(t)}this._update()}_toggleAutoplayPause(e){this._autoplayPaused=!this._autoplayPaused,this._autoplayPaused?(this._pause(),e.setAttribute("aria-pressed","true"),e.setAttribute("aria-label","Resume automatic slide show"),e.textContent="Play"):(this._resume(),e.setAttribute("aria-pressed","false"),e.setAttribute("aria-label","Pause automatic slide show"),e.textContent="Pause")}_emit(){this.dispatchEvent(new CustomEvent("velin-slide-change",{bubbles:!0,detail:{index:this._index}}))}_startAutoplay(){let e=parseInt(this.getAttribute("interval")||"5000",10);this._timer=setInterval(()=>this.next(),e)}_pause(){this._timer&&(clearInterval(this._timer),this._timer=null)}_resume(){this.hasAttribute("autoplay")&&!this._timer&&!this._autoplayPaused&&this._startAutoplay()}disconnectedCallback(){this._pause()}};customElements.define("velin-carousel",oi);Ds=oi});var zs={};y(zs,{default:()=>Ns});function vu(i){let e=i.tagName;return e==="BUTTON"||e==="A"&&i.hasAttribute("href")||i.getAttribute("role")==="button"}var mu,fu,si,Ns,Ur=h(()=>{mu=`
657
+ `,this.shadowRoot.querySelector(".prev").addEventListener("click",()=>this.prev()),this.shadowRoot.querySelector(".next").addEventListener("click",()=>this.next());let e=this.shadowRoot.querySelector(".track");e.addEventListener("touchstart",r=>{this._startX=r.touches[0].clientX},{passive:!0}),e.addEventListener("touchend",r=>{let n=this._startX-r.changedTouches[0].clientX;Math.abs(n)>50&&(n>0?this.next():this.prev())}),this.addEventListener("mouseenter",()=>this._pause()),this.addEventListener("mouseleave",()=>this._resume()),this.addEventListener("focusin",()=>this._pause()),this.addEventListener("focusout",()=>this._resume()),this.addEventListener("keydown",r=>{r.key==="ArrowLeft"?(this.prev(),r.preventDefault()):r.key==="ArrowRight"?(this.next(),r.preventDefault()):r.key==="Home"?(this.goTo(0),r.preventDefault()):r.key==="End"&&(this.goTo(this._count-1),r.preventDefault())}),this.hasAttribute("role")||this.setAttribute("role","region"),this.setAttribute("aria-roledescription","carousel"),this.shadowRoot.querySelector("slot").addEventListener("slotchange",()=>{this._buildDots(),this._update()}),this.hasAttribute("autoplay")&&this._startAutoplay()}get _slides(){return this.shadowRoot.querySelector("slot").assignedElements()}get _count(){return this._slides.length}prev(){this._index=(this._index-1+this._count)%this._count,this._update(),this._emit()}next(){this._index=(this._index+1)%this._count,this._update(),this._emit()}goTo(e){this._index=Math.max(0,Math.min(e,this._count-1)),this._update(),this._emit()}_update(){let e=this.shadowRoot.querySelector(".track");e.style.transform=`translateX(-${this._index*100}%)`,this._slides.forEach((t,r)=>{t.setAttribute("aria-hidden",r!==this._index?"true":"false"),t.inert=r!==this._index,t.setAttribute("aria-roledescription","slide"),t.setAttribute("aria-label",`Slide ${r+1} of ${this._count}`)}),this.shadowRoot.querySelectorAll(".dot").forEach((t,r)=>{t.setAttribute("aria-current",r===this._index?"true":"false")})}_buildDots(){let e=this.shadowRoot.querySelector(".indicators");if(e.innerHTML="",this._slides.forEach((t,r)=>{let n=document.createElement("button");n.type="button",n.className="dot",n.setAttribute("aria-label",`Go to slide ${r+1}`),n.addEventListener("click",()=>this.goTo(r)),e.appendChild(n)}),this.hasAttribute("autoplay")){let t=document.createElement("button");t.type="button",t.className="pause-btn",t.setAttribute("aria-pressed","false"),t.setAttribute("aria-label","Pause automatic slide show"),t.textContent="Pause",t.addEventListener("click",()=>this._toggleAutoplayPause(t)),e.appendChild(t)}this._update()}_toggleAutoplayPause(e){this._autoplayPaused=!this._autoplayPaused,this._autoplayPaused?(this._pause(),e.setAttribute("aria-pressed","true"),e.setAttribute("aria-label","Resume automatic slide show"),e.textContent="Play"):(this._resume(),e.setAttribute("aria-pressed","false"),e.setAttribute("aria-label","Pause automatic slide show"),e.textContent="Pause")}_emit(){this.dispatchEvent(new CustomEvent("velin-slide-change",{bubbles:!0,detail:{index:this._index}}))}_startAutoplay(){let e=parseInt(this.getAttribute("interval")||"5000",10);this._timer=setInterval(()=>this.next(),e)}_pause(){this._timer&&(clearInterval(this._timer),this._timer=null)}_resume(){this.hasAttribute("autoplay")&&!this._timer&&!this._autoplayPaused&&this._startAutoplay()}disconnectedCallback(){this._pause()}};customElements.define("velin-carousel",ui);na=ui});var aa={};g(aa,{default:()=>sa});function up(i){let e=i.tagName;return e==="BUTTON"||e==="A"&&i.hasAttribute("href")||i.getAttribute("role")==="button"}var lp,cp,di,sa,tn=p(()=>{lp=`
641
658
  :host { display: block; }
642
659
  .content {
643
660
  overflow: hidden;
@@ -648,7 +665,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
648
665
  :host([open]) .content { grid-template-rows: 1fr; }
649
666
  .inner { min-height: 0; }
650
667
  @media (prefers-reduced-motion: reduce) { .content { transition: none; } }
651
- `,fu=0;si=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open"}),this._contentId=`velin-collapse-panel-${++fu}`,this._onTriggerKey=this._onTriggerKey.bind(this)}connectedCallback(){let e=this._contentId;this.shadowRoot.innerHTML="<style>"+mu+'</style><slot name="trigger"></slot><div class="content" id="'+e+'" part="content"><div class="inner"><slot></slot></div></div>',this.shadowRoot.querySelector('slot[name="trigger"]').addEventListener("slotchange",()=>this._wireTrigger()),this._wireTrigger()}_wireTrigger(){let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];e&&(vu(e)||(e.setAttribute("role","button"),e.hasAttribute("tabindex")||e.setAttribute("tabindex","0")),e.setAttribute("aria-controls",this._contentId),e.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false"),e.removeEventListener("click",this._onClick),e.removeEventListener("keydown",this._onTriggerKey),this._onClick=()=>this.toggle(),e.addEventListener("click",this._onClick),e.addEventListener("keydown",this._onTriggerKey))}_onTriggerKey(e){(e.key==="Enter"||e.key===" ")&&(e.preventDefault(),this.toggle())}attributeChangedCallback(e){if(e==="open"){let t=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];t&&t.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false")}}toggle(){this.hasAttribute("open")?this.close():this.open()}open(){this.setAttribute("open",""),this.dispatchEvent(new CustomEvent("velin-open",{bubbles:!0}))}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}};customElements.define("velin-collapse",si);Ns=si});var Fs={};y(Fs,{default:()=>$s});var ai,$s,jr=h(()=>{ai=class extends HTMLElement{constructor(){super(),this._observer=null,this._activeId=null}connectedCallback(){let e=this.getAttribute("target")||"section[id]",t=this.getAttribute("nav")||"a",r=this.getAttribute("root-margin")||"-20% 0px -60% 0px",n=document.querySelectorAll(e);n.length&&(this._observer=new IntersectionObserver(o=>{for(let a of o)a.isIntersecting&&this._activate(a.target.id,t)},{rootMargin:r,threshold:0}),n.forEach(o=>this._observer.observe(o)))}_activate(e,t){if(this._activeId===e)return;this._activeId=e,this.querySelectorAll(t).forEach(n=>{n.getAttribute("href")===`#${e}`?(n.classList.add("velin-doc-sidebar__link--active"),n.setAttribute("aria-current","true")):(n.classList.remove("velin-doc-sidebar__link--active"),n.removeAttribute("aria-current"))}),this.dispatchEvent(new CustomEvent("velin-spy-change",{bubbles:!0,detail:{id:e}}))}disconnectedCallback(){this._observer&&this._observer.disconnect()}};customElements.define("velin-scrollspy",ai);$s=ai});var Kr={};y(Kr,{VelinTooltip:()=>Qe,VelinTooltipWC:()=>gt,default:()=>Hs});var bu,gu,Qe,gt,Hs,li=h(()=>{T();bu=`
668
+ `,cp=0;di=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open"}),this._contentId=`velin-collapse-panel-${++cp}`,this._onTriggerKey=this._onTriggerKey.bind(this)}connectedCallback(){let e=this._contentId;this.shadowRoot.innerHTML="<style>"+lp+'</style><slot name="trigger"></slot><div class="content" id="'+e+'" part="content"><div class="inner"><slot></slot></div></div>',this.shadowRoot.querySelector('slot[name="trigger"]').addEventListener("slotchange",()=>this._wireTrigger()),this._wireTrigger()}_wireTrigger(){let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];e&&(up(e)||(e.setAttribute("role","button"),e.hasAttribute("tabindex")||e.setAttribute("tabindex","0")),e.setAttribute("aria-controls",this._contentId),e.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false"),e.removeEventListener("click",this._onClick),e.removeEventListener("keydown",this._onTriggerKey),this._onClick=()=>this.toggle(),e.addEventListener("click",this._onClick),e.addEventListener("keydown",this._onTriggerKey))}_onTriggerKey(e){(e.key==="Enter"||e.key===" ")&&(e.preventDefault(),this.toggle())}attributeChangedCallback(e){if(e==="open"){let t=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];t&&t.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false")}}toggle(){this.hasAttribute("open")?this.close():this.open()}open(){this.setAttribute("open",""),this.dispatchEvent(new CustomEvent("velin-open",{bubbles:!0}))}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}};customElements.define("velin-collapse",di);sa=di});var ca={};g(ca,{default:()=>la});var pi,la,rn=p(()=>{pi=class extends HTMLElement{constructor(){super(),this._observer=null,this._activeId=null}connectedCallback(){let e=this.getAttribute("target")||"section[id]",t=this.getAttribute("nav")||"a",r=this.getAttribute("root-margin")||"-20% 0px -60% 0px",n=document.querySelectorAll(e);n.length&&(this._observer=new IntersectionObserver(o=>{for(let a of o)a.isIntersecting&&this._activate(a.target.id,t)},{rootMargin:r,threshold:0}),n.forEach(o=>this._observer.observe(o)))}_activate(e,t){if(this._activeId===e)return;this._activeId=e,this.querySelectorAll(t).forEach(n=>{n.getAttribute("href")===`#${e}`?(n.classList.add("velin-doc-sidebar__link--active"),n.setAttribute("aria-current","true")):(n.classList.remove("velin-doc-sidebar__link--active"),n.removeAttribute("aria-current"))}),this.dispatchEvent(new CustomEvent("velin-spy-change",{bubbles:!0,detail:{id:e}}))}disconnectedCallback(){this._observer&&this._observer.disconnect()}};customElements.define("velin-scrollspy",pi);la=pi});var nn={};g(nn,{VelinTooltip:()=>ot,VelinTooltipWC:()=>Et,default:()=>ua});var dp,pp,ot,Et,ua,hi=p(()=>{L();dp=`
652
669
  :host { position: relative; display: inline-block; }
653
670
  .tip {
654
671
  position: absolute; z-index: var(--velin-z-tooltip, 700);
@@ -667,11 +684,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
667
684
  .tip[data-placement="start"] { right: calc(100% + 6px); top: 50%; transform: translateY(-50%); }
668
685
  .tip[data-placement="end"] { left: calc(100% + 6px); top: 50%; transform: translateY(-50%); }
669
686
  @media (prefers-reduced-motion: reduce) { .tip { transition: none; } }
670
- `,gu=0,Qe=class extends HTMLElement{static get observedAttributes(){return["content","placement"]}constructor(){super(),this.attachShadow({mode:"open"}),this._tipId=`velin-tooltip-${++gu}`}connectedCallback(){let e=this.getAttribute("placement")||"top",t="div";this.shadowRoot.innerHTML=`
671
- <style>${bu}</style>
687
+ `,pp=0,ot=class extends HTMLElement{static get observedAttributes(){return["content","placement"]}constructor(){super(),this.attachShadow({mode:"open"}),this._tipId=`velin-tooltip-${++pp}`}connectedCallback(){let e=this.getAttribute("placement")||"top",t="div";this.shadowRoot.innerHTML=`
688
+ <style>${dp}</style>
672
689
  <slot></slot>
673
- <${t} class="tip" id="${this._tipId}" role="tooltip" data-placement="${b(e)}" part="tip">${b(this.getAttribute("content")||"")}</${t}>
674
- `,this.addEventListener("mouseenter",()=>this._show()),this.addEventListener("mouseleave",()=>this._hide()),this.addEventListener("focusin",()=>this._show()),this.addEventListener("focusout",()=>this._hide()),this.addEventListener("keydown",n=>{n.key==="Escape"&&this._hide()}),this.shadowRoot.querySelector("slot").addEventListener("slotchange",()=>this._linkTrigger()),this._linkTrigger()}_linkTrigger(){let e=this.shadowRoot.querySelector("slot")?.assignedElements()[0];e&&(this.hasAttribute("visible")?e.setAttribute("aria-describedby",this._tipId):e.removeAttribute("aria-describedby"))}_show(){this.setAttribute("visible","");let e=this.shadowRoot.querySelector("slot")?.assignedElements()[0];e&&e.setAttribute("aria-describedby",this._tipId),this._flip()}_hide(){this.removeAttribute("visible");let e=this.shadowRoot.querySelector("slot")?.assignedElements()[0];e&&e.removeAttribute("aria-describedby")}_flip(){let e=this.shadowRoot.querySelector(".tip");if(!e)return;let t=e.getBoundingClientRect(),r=this.getAttribute("placement")||"top";r==="top"&&t.top<0?e.setAttribute("data-placement","bottom"):r==="bottom"&&t.bottom>window.innerHeight?e.setAttribute("data-placement","top"):e.setAttribute("data-placement",r)}attributeChangedCallback(e,t,r){let n=this.shadowRoot?.querySelector(".tip");n&&(e==="content"&&(n.textContent=r),e==="placement"&&n.setAttribute("data-placement",r))}},gt=class i extends Qe{static _warned=!1;connectedCallback(){!i._warned&&typeof console<"u"&&console.warn&&(i._warned=!0,console.warn("[velinstyle] <velin-tooltip-wc> is deprecated; use <velin-tooltip> instead.")),super.connectedCallback()}};customElements.get("velin-tooltip")||customElements.define("velin-tooltip",Qe);customElements.get("velin-tooltip-wc")||customElements.define("velin-tooltip-wc",gt);Hs=Qe});var Ps={};y(Ps,{announce:()=>ne,ensureAriaLabel:()=>_u,getAnnouncer:()=>et,liveDotLabel:()=>Wr,respectReducedMotion:()=>xu,syncExpanded:()=>yu});function et(){return typeof document>"u"?null:(Fe?.isConnected||(Fe=document.querySelector("velin-announcer"),Fe||(Fe=document.createElement("velin-announcer"),document.body.appendChild(Fe))),Fe)}function ne(i,e="polite"){let t=et();!t||typeof t.announce!="function"||t.announce(i,{assertive:e==="assertive"})}function yu(i,e){if(!i||!e)return;let t=i.getAttribute("aria-expanded")==="true";e.hidden=!t,e.id&&i.setAttribute("aria-controls",e.id)}function _u(i,e){!i||!e||i.getAttribute("aria-label")?.trim()||i.setAttribute("aria-label",e)}function xu(i,e){typeof matchMedia=="function"&&matchMedia("(prefers-reduced-motion: reduce)").matches&&e?e():i()}function Wr(i){return{live:"Live",idle:"Idle",error:"Error",offline:"Offline",connecting:"Connecting"}[String(i||"live").toLowerCase()]||i||"Live"}var Fe,Le=h(()=>{});var Bs={};y(Bs,{default:()=>qs});var wu,ci,qs,Gr=h(()=>{Z();Le();T();wu=`
690
+ <${t} class="tip" id="${this._tipId}" role="tooltip" data-placement="${y(e)}" part="tip">${y(this.getAttribute("content")||"")}</${t}>
691
+ `,this.addEventListener("mouseenter",()=>this._show()),this.addEventListener("mouseleave",()=>this._hide()),this.addEventListener("focusin",()=>this._show()),this.addEventListener("focusout",()=>this._hide()),this.addEventListener("keydown",n=>{n.key==="Escape"&&this._hide()}),this.shadowRoot.querySelector("slot").addEventListener("slotchange",()=>this._linkTrigger()),this._linkTrigger()}_linkTrigger(){let e=this.shadowRoot.querySelector("slot")?.assignedElements()[0];e&&(this.hasAttribute("visible")?e.setAttribute("aria-describedby",this._tipId):e.removeAttribute("aria-describedby"))}_show(){this.setAttribute("visible","");let e=this.shadowRoot.querySelector("slot")?.assignedElements()[0];e&&e.setAttribute("aria-describedby",this._tipId),this._flip()}_hide(){this.removeAttribute("visible");let e=this.shadowRoot.querySelector("slot")?.assignedElements()[0];e&&e.removeAttribute("aria-describedby")}_flip(){let e=this.shadowRoot.querySelector(".tip");if(!e)return;let t=e.getBoundingClientRect(),r=this.getAttribute("placement")||"top";r==="top"&&t.top<0?e.setAttribute("data-placement","bottom"):r==="bottom"&&t.bottom>window.innerHeight?e.setAttribute("data-placement","top"):e.setAttribute("data-placement",r)}attributeChangedCallback(e,t,r){let n=this.shadowRoot?.querySelector(".tip");n&&(e==="content"&&(n.textContent=r),e==="placement"&&n.setAttribute("data-placement",r))}},Et=class i extends ot{static _warned=!1;connectedCallback(){!i._warned&&typeof console<"u"&&console.warn&&(i._warned=!0,console.warn("[velinstyle] <velin-tooltip-wc> is deprecated; use <velin-tooltip> instead.")),super.connectedCallback()}};customElements.get("velin-tooltip")||customElements.define("velin-tooltip",ot);customElements.get("velin-tooltip-wc")||customElements.define("velin-tooltip-wc",Et);ua=ot});var da={};g(da,{announce:()=>ae,ensureAriaLabel:()=>mp,getAnnouncer:()=>st,liveDotLabel:()=>on,respectReducedMotion:()=>fp,syncExpanded:()=>hp});function st(){return typeof document>"u"?null:(je?.isConnected||(je=document.querySelector("velin-announcer"),je||(je=document.createElement("velin-announcer"),document.body.appendChild(je))),je)}function ae(i,e="polite"){let t=st();!t||typeof t.announce!="function"||t.announce(i,{assertive:e==="assertive"})}function hp(i,e){if(!i||!e)return;let t=i.getAttribute("aria-expanded")==="true";e.hidden=!t,e.id&&i.setAttribute("aria-controls",e.id)}function mp(i,e){!i||!e||i.getAttribute("aria-label")?.trim()||i.setAttribute("aria-label",e)}function fp(i,e){typeof matchMedia=="function"&&matchMedia("(prefers-reduced-motion: reduce)").matches&&e?e():i()}function on(i){return{live:"Live",idle:"Idle",error:"Error",offline:"Offline",connecting:"Connecting"}[String(i||"live").toLowerCase()]||i||"Live"}var je,Ie=p(()=>{});var ha={};g(ha,{default:()=>pa});var bp,mi,pa,sn=p(()=>{J();Ie();L();bp=`
675
692
  :host { display: contents; }
676
693
  .overlay {
677
694
  position: fixed; inset: 0; z-index: var(--velin-z-modal, 500);
@@ -710,8 +727,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
710
727
  .nav--prev { left: 0.5rem; }
711
728
  .nav--next { right: 0.5rem; }
712
729
  }
713
- `,ci=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._index=0,this._items=[],this._previousFocus=null,this._onTrapKey=e=>{e.key==="Tab"&&ee(this.shadowRoot,e)}}connectedCallback(){this.shadowRoot.innerHTML=`
714
- <style>${wu}</style>
730
+ `,mi=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._index=0,this._items=[],this._previousFocus=null,this._onTrapKey=e=>{e.key==="Tab"&&re(this.shadowRoot,e)}}connectedCallback(){this.shadowRoot.innerHTML=`
731
+ <style>${bp}</style>
715
732
  <slot></slot>
716
733
  <div class="overlay" role="dialog" aria-modal="true" aria-label="Image lightbox" aria-roledescription="lightbox" part="overlay">
717
734
  <button class="nav nav--prev" aria-label="Previous">&#8249;</button>
@@ -720,7 +737,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
720
737
  <button class="close" aria-label="Close">&times;</button>
721
738
  <div class="counter" part="counter" aria-live="polite" aria-atomic="true"></div>
722
739
  </div>
723
- `;let e=this.shadowRoot.querySelector("slot");e.addEventListener("slotchange",()=>{this._items=e.assignedElements().filter(t=>t.tagName==="IMG"||t.tagName==="VIDEO"||t.dataset.velinLightbox),this._items.forEach((t,r)=>{t.style.cursor="pointer",t.addEventListener("click",()=>this.open(r))})}),this.shadowRoot.querySelector(".close").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".nav--prev").addEventListener("click",()=>this._prev()),this.shadowRoot.querySelector(".nav--next").addEventListener("click",()=>this._next()),this.shadowRoot.querySelector(".overlay").addEventListener("click",t=>{t.target.classList.contains("overlay")&&this.close()}),this.shadowRoot.querySelector(".overlay").addEventListener("keydown",t=>{t.key==="Escape"&&this.close(),t.key==="ArrowLeft"&&this._prev(),t.key==="ArrowRight"&&this._next()})}open(e=0){this._previousFocus=document.activeElement,this._index=e,this.setAttribute("open",""),ce(this),this._render();let t=this.shadowRoot.querySelector(".overlay");t.removeEventListener("keydown",this._onTrapKey),t.addEventListener("keydown",this._onTrapKey),this.shadowRoot.querySelector(".close").focus()}close(){this.removeAttribute("open"),G(this),this._previousFocus&&(this._previousFocus.focus(),this._previousFocus=null),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}disconnectedCallback(){G(this)}_prev(){this._index=(this._index-1+this._items.length)%this._items.length,this._render()}_next(){this._index=(this._index+1)%this._items.length,this._render()}_render(){let e=this.shadowRoot.querySelector(".content"),t=this._items[this._index];if(!t)return;let r=$e(t.dataset.velinLightbox||t.src),n=b(t.alt||"");t.tagName==="VIDEO"?e.innerHTML=`<video src="${b(r)}" controls autoplay></video>`:e.innerHTML=`<img src="${b(r)}" alt="${n}">`;let o=this.shadowRoot.querySelector(".counter"),a=`${this._index+1} / ${this._items.length}`;o.textContent=a,ne(`Slide ${a}`,"polite")}};customElements.define("velin-lightbox",ci);qs=ci});var Yr={};y(Yr,{VelinStepper:()=>tt,VelinStepperWC:()=>yt,default:()=>Us});var Au,tt,yt,Us,di=h(()=>{T();Au=`
740
+ `;let e=this.shadowRoot.querySelector("slot");e.addEventListener("slotchange",()=>{this._items=e.assignedElements().filter(t=>t.tagName==="IMG"||t.tagName==="VIDEO"||t.dataset.velinLightbox),this._items.forEach((t,r)=>{t.style.cursor="pointer",t.addEventListener("click",()=>this.open(r))})}),this.shadowRoot.querySelector(".close").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".nav--prev").addEventListener("click",()=>this._prev()),this.shadowRoot.querySelector(".nav--next").addEventListener("click",()=>this._next()),this.shadowRoot.querySelector(".overlay").addEventListener("click",t=>{t.target.classList.contains("overlay")&&this.close()}),this.shadowRoot.querySelector(".overlay").addEventListener("keydown",t=>{t.key==="Escape"&&this.close(),t.key==="ArrowLeft"&&this._prev(),t.key==="ArrowRight"&&this._next()})}open(e=0){this._previousFocus=document.activeElement,this._index=e,this.setAttribute("open",""),pe(this),this._render();let t=this.shadowRoot.querySelector(".overlay");t.removeEventListener("keydown",this._onTrapKey),t.addEventListener("keydown",this._onTrapKey),this.shadowRoot.querySelector(".close").focus()}close(){this.removeAttribute("open"),W(this),this._previousFocus&&(this._previousFocus.focus(),this._previousFocus=null),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}disconnectedCallback(){W(this)}_prev(){this._index=(this._index-1+this._items.length)%this._items.length,this._render()}_next(){this._index=(this._index+1)%this._items.length,this._render()}_render(){let e=this.shadowRoot.querySelector(".content"),t=this._items[this._index];if(!t)return;let r=Ue(t.dataset.velinLightbox||t.src),n=y(t.alt||"");t.tagName==="VIDEO"?e.innerHTML=`<video src="${y(r)}" controls autoplay></video>`:e.innerHTML=`<img src="${y(r)}" alt="${n}">`;let o=this.shadowRoot.querySelector(".counter"),a=`${this._index+1} / ${this._items.length}`;o.textContent=a,ae(`Slide ${a}`,"polite")}};customElements.define("velin-lightbox",mi);pa=mi});var an={};g(an,{VelinStepper:()=>at,VelinStepperWC:()=>kt,default:()=>ma});var vp,at,kt,ma,fi=p(()=>{L();vp=`
724
741
  :host { display: block; }
725
742
  .steps {
726
743
  display: flex; gap: var(--velin-space-2, 0.5rem);
@@ -773,11 +790,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
773
790
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
774
791
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
775
792
  }
776
- `,tt=class extends HTMLElement{static get observedAttributes(){return["active","aria-label","labels"]}constructor(){super(),this.attachShadow({mode:"open"}),this._current=0}connectedCallback(){this._current=parseInt(this.getAttribute("active")||"0",10),this._buildSteps()}_buildSteps(){let e=(this.getAttribute("labels")||"").split(",").map(n=>n.trim()),t=this.getAttribute("aria-label")||"Progress",r=e.map((n,o)=>{let a=o<this._current?"completed":o===this._current?"active":"",c=o<this._current?"completed":o===this._current?"current step":"upcoming",d=o<this._current?'<span class="velin-sr-only">Completed</span><span aria-hidden="true">&#10003;</span>':`<span aria-hidden="true">${o+1}</span>`,m=o===this._current?' aria-current="step"':"",_=n?`${n}, ${c}`:`Step ${o+1}, ${c}`;return`<div class="step ${a}" role="listitem" aria-label="${b(_)}"${m}><span class="step__marker">${d}</span><span class="step__label">${b(n)}</span></div>`}).join("");this.shadowRoot.innerHTML=`
777
- <style>${Au}</style>
778
- <div class="steps" role="list" aria-label="${b(t)}" part="steps">${r}</div>
793
+ `,at=class extends HTMLElement{static get observedAttributes(){return["active","aria-label","labels"]}constructor(){super(),this.attachShadow({mode:"open"}),this._current=0}connectedCallback(){this._current=parseInt(this.getAttribute("active")||"0",10),this._buildSteps()}_buildSteps(){let e=(this.getAttribute("labels")||"").split(",").map(n=>n.trim()),t=this.getAttribute("aria-label")||"Progress",r=e.map((n,o)=>{let a=o<this._current?"completed":o===this._current?"active":"",c=o<this._current?"completed":o===this._current?"current step":"upcoming",u=o<this._current?'<span class="velin-sr-only">Completed</span><span aria-hidden="true">&#10003;</span>':`<span aria-hidden="true">${o+1}</span>`,h=o===this._current?' aria-current="step"':"",b=n?`${n}, ${c}`:`Step ${o+1}, ${c}`;return`<div class="step ${a}" role="listitem" aria-label="${y(b)}"${h}><span class="step__marker">${u}</span><span class="step__label">${y(n)}</span></div>`}).join("");this.shadowRoot.innerHTML=`
794
+ <style>${vp}</style>
795
+ <div class="steps" role="list" aria-label="${y(t)}" part="steps">${r}</div>
779
796
  <div class="panels" part="panels"><slot></slot></div>
780
- `}_updatePanels(){(this.shadowRoot.querySelector("slot")?.assignedElements()||[]).forEach((t,r)=>{r===this._current?t.setAttribute("data-active",""):t.removeAttribute("data-active")})}next(){let e=(this.getAttribute("labels")||"").split(",");this._current<e.length-1&&(this._current++,this.setAttribute("active",this._current),this._buildSteps(),this.dispatchEvent(new CustomEvent("velin-step-change",{bubbles:!0,detail:{step:this._current}})))}prev(){this._current>0&&(this._current--,this.setAttribute("active",this._current),this._buildSteps(),this.dispatchEvent(new CustomEvent("velin-step-change",{bubbles:!0,detail:{step:this._current}})))}goTo(e){this._current=e,this.setAttribute("active",this._current),this._buildSteps(),this.dispatchEvent(new CustomEvent("velin-step-change",{bubbles:!0,detail:{step:this._current}}))}attributeChangedCallback(e,t,r){e==="active"&&t!==null&&t!==r&&(this._current=parseInt(r,10),this._buildSteps())}},yt=class i extends tt{static _warned=!1;connectedCallback(){!i._warned&&typeof console<"u"&&console.warn&&(i._warned=!0,console.warn("[velinstyle] <velin-stepper-wc> is deprecated; use <velin-stepper> instead.")),super.connectedCallback()}};customElements.get("velin-stepper")||customElements.define("velin-stepper",tt);customElements.get("velin-stepper-wc")||customElements.define("velin-stepper-wc",yt);Us=tt});var Ks={};y(Ks,{default:()=>js});var Eu,ui,js,Vr=h(()=>{T();Eu=`
797
+ `}_updatePanels(){(this.shadowRoot.querySelector("slot")?.assignedElements()||[]).forEach((t,r)=>{r===this._current?t.setAttribute("data-active",""):t.removeAttribute("data-active")})}next(){let e=(this.getAttribute("labels")||"").split(",");this._current<e.length-1&&(this._current++,this.setAttribute("active",this._current),this._buildSteps(),this.dispatchEvent(new CustomEvent("velin-step-change",{bubbles:!0,detail:{step:this._current}})))}prev(){this._current>0&&(this._current--,this.setAttribute("active",this._current),this._buildSteps(),this.dispatchEvent(new CustomEvent("velin-step-change",{bubbles:!0,detail:{step:this._current}})))}goTo(e){this._current=e,this.setAttribute("active",this._current),this._buildSteps(),this.dispatchEvent(new CustomEvent("velin-step-change",{bubbles:!0,detail:{step:this._current}}))}attributeChangedCallback(e,t,r){e==="active"&&t!==null&&t!==r&&(this._current=parseInt(r,10),this._buildSteps())}},kt=class i extends at{static _warned=!1;connectedCallback(){!i._warned&&typeof console<"u"&&console.warn&&(i._warned=!0,console.warn("[velinstyle] <velin-stepper-wc> is deprecated; use <velin-stepper> instead.")),super.connectedCallback()}};customElements.get("velin-stepper")||customElements.define("velin-stepper",at);customElements.get("velin-stepper-wc")||customElements.define("velin-stepper-wc",kt);ma=at});var ba={};g(ba,{default:()=>fa});var gp,bi,fa,ln=p(()=>{L();gp=`
781
798
  :host { display: contents; }
782
799
  dialog {
783
800
  border: none; border-radius: var(--velin-radius-lg, 0.75rem);
@@ -834,12 +851,12 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
834
851
  color: var(--velin-color-text, #1a1a2e);
835
852
  }
836
853
  .input:focus { outline: 3px solid var(--velin-color-focus, #2563eb); outline-offset: 0; border-color: var(--velin-color-primary, #2563eb); }
837
- `,ui=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._resolve=null,this._previousFocus=null}connectedCallback(){this.shadowRoot.innerHTML=`<style>${Eu}</style><dialog part="dialog"></dialog>`;let e=this.shadowRoot.querySelector("dialog");e&&e.setAttribute("aria-label",this.getAttribute("aria-label")||"Dialog")}alert(e,{title:t="Alert",confirmText:r="OK"}={}){return this._show("alert",e,{title:t,confirmText:r})}confirm(e,{title:t="Confirm",confirmText:r="Confirm",cancelText:n="Cancel",danger:o=!1}={}){return this._show("confirm",e,{title:t,confirmText:r,cancelText:n,danger:o})}prompt(e,{title:t="Input",confirmText:r="Submit",cancelText:n="Cancel",placeholder:o="",defaultValue:a=""}={}){return this._show("prompt",e,{title:t,confirmText:r,cancelText:n,placeholder:o,defaultValue:a})}_show(e,t,r){let n=this.shadowRoot.querySelector("dialog");this._previousFocus=document.activeElement;let o=b(r.title),a=b(t),c=b(r.confirmText),d=b(r.cancelText||""),m=b(r.placeholder||""),_=b(r.defaultValue||""),f=e==="alert"?`<button class="btn btn--primary" data-action="confirm">${c}</button>`:`<button class="btn" data-action="cancel">${d}</button>
838
- <button class="btn ${r.danger?"btn--danger":"btn--primary"}" data-action="confirm">${c}</button>`,v=e==="prompt"?`<input class="input" placeholder="${m}" value="${_}" part="input">`:"",C=`velin-dialog-title-${Math.random().toString(36).slice(2,9)}`;if(n.innerHTML=`
839
- <div class="header"><h3 class="title" id="${C}">${o}</h3><button class="close" aria-label="Close">&times;</button></div>
854
+ `,bi=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._resolve=null,this._previousFocus=null}connectedCallback(){this.shadowRoot.innerHTML=`<style>${gp}</style><dialog part="dialog"></dialog>`;let e=this.shadowRoot.querySelector("dialog");e&&e.setAttribute("aria-label",this.getAttribute("aria-label")||"Dialog")}alert(e,{title:t="Alert",confirmText:r="OK"}={}){return this._show("alert",e,{title:t,confirmText:r})}confirm(e,{title:t="Confirm",confirmText:r="Confirm",cancelText:n="Cancel",danger:o=!1}={}){return this._show("confirm",e,{title:t,confirmText:r,cancelText:n,danger:o})}prompt(e,{title:t="Input",confirmText:r="Submit",cancelText:n="Cancel",placeholder:o="",defaultValue:a=""}={}){return this._show("prompt",e,{title:t,confirmText:r,cancelText:n,placeholder:o,defaultValue:a})}_show(e,t,r){let n=this.shadowRoot.querySelector("dialog");this._previousFocus=document.activeElement;let o=y(r.title),a=y(t),c=y(r.confirmText),u=y(r.cancelText||""),h=y(r.placeholder||""),b=y(r.defaultValue||""),m=e==="alert"?`<button class="btn btn--primary" data-action="confirm">${c}</button>`:`<button class="btn" data-action="cancel">${u}</button>
855
+ <button class="btn ${r.danger?"btn--danger":"btn--primary"}" data-action="confirm">${c}</button>`,v=e==="prompt"?`<input class="input" placeholder="${h}" value="${b}" part="input">`:"",T=`velin-dialog-title-${Math.random().toString(36).slice(2,9)}`;if(n.innerHTML=`
856
+ <div class="header"><h3 class="title" id="${T}">${o}</h3><button class="close" aria-label="Close">&times;</button></div>
840
857
  <div class="body"><p>${a}</p>${v}</div>
841
- <div class="footer">${f}</div>
842
- `,n.setAttribute("aria-modal","true"),n.removeAttribute("aria-label"),n.setAttribute("aria-labelledby",C),n.showModal(),e!=="prompt"){let k=n.querySelector("[data-action]");k&&k.focus()}return new Promise(k=>{if(this._resolve=k,n.querySelector(".close").addEventListener("click",()=>this._dismiss(e,!1,n)),n.querySelectorAll("[data-action]").forEach(A=>{A.addEventListener("click",()=>this._dismiss(e,A.dataset.action==="confirm",n))}),n.addEventListener("cancel",A=>{A.preventDefault(),this._dismiss(e,!1,n)}),e==="prompt"){let A=n.querySelector(".input");A.focus(),A.addEventListener("keydown",S=>{S.key==="Enter"&&this._dismiss(e,!0,n)})}})}_dismiss(e,t,r){if(!this._resolve)return;let n;e==="alert"?n=!0:e==="confirm"?n=t:n=t?r.querySelector(".input")?.value??"":null,r.close(),this._previousFocus&&(this._previousFocus.focus(),this._previousFocus=null),this._resolve(n),this._resolve=null;let o={value:n};this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0,detail:o})),this.dispatchEvent(new CustomEvent("velin-dialog-close",{bubbles:!0,detail:o}))}};customElements.define("velin-dialog",ui);js=ui});var Gs={};y(Gs,{default:()=>Ws});var ku,hi,Ws,Xr=h(()=>{T();ku=`
858
+ <div class="footer">${m}</div>
859
+ `,n.setAttribute("aria-modal","true"),n.removeAttribute("aria-label"),n.setAttribute("aria-labelledby",T),n.showModal(),e!=="prompt"){let k=n.querySelector("[data-action]");k&&k.focus()}return new Promise(k=>{if(this._resolve=k,n.querySelector(".close").addEventListener("click",()=>this._dismiss(e,!1,n)),n.querySelectorAll("[data-action]").forEach(A=>{A.addEventListener("click",()=>this._dismiss(e,A.dataset.action==="confirm",n))}),n.addEventListener("cancel",A=>{A.preventDefault(),this._dismiss(e,!1,n)}),e==="prompt"){let A=n.querySelector(".input");A.focus(),A.addEventListener("keydown",S=>{S.key==="Enter"&&this._dismiss(e,!0,n)})}})}_dismiss(e,t,r){if(!this._resolve)return;let n;e==="alert"?n=!0:e==="confirm"?n=t:n=t?r.querySelector(".input")?.value??"":null,r.close(),this._previousFocus&&(this._previousFocus.focus(),this._previousFocus=null),this._resolve(n),this._resolve=null;let o={value:n};this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0,detail:o})),this.dispatchEvent(new CustomEvent("velin-dialog-close",{bubbles:!0,detail:o}))}};customElements.define("velin-dialog",bi);fa=bi});var ga={};g(ga,{default:()=>va});var yp,vi,va,cn=p(()=>{L();yp=`
843
860
  :host { display: inline-flex; font-variant-numeric: tabular-nums; }
844
861
  .wrap { display: inline-flex; gap: var(--velin-space-3, 0.75rem); align-items: flex-start; }
845
862
  .segment {
@@ -869,7 +886,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
869
886
  :host([size="sm"]) .value { font-size: var(--velin-text-xl, 1.25rem); }
870
887
  :host([size="sm"]) .segment { min-width: 2.5rem; }
871
888
  :host([size="lg"]) .value { font-size: var(--velin-text-5xl, 3.052rem); }
872
- `,hi=class extends HTMLElement{static get observedAttributes(){return["datetime"]}constructor(){super(),this.attachShadow({mode:"open"}),this._timer=null}connectedCallback(){this.shadowRoot.innerHTML=`<style>${ku}</style><div class="wrap"></div>`,this._wrap=this.shadowRoot.querySelector(".wrap"),this.setAttribute("role","timer"),this.setAttribute("aria-live","polite"),this.setAttribute("aria-atomic","true"),this._start()}_start(){this._update(),this._timer=setInterval(()=>this._update(),1e3)}_update(){let e=new Date(this.getAttribute("datetime")).getTime(),t=Date.now(),r=Math.max(0,e-t),n=Math.floor(r/864e5),o=Math.floor(r%864e5/36e5),a=Math.floor(r%36e5/6e4),c=Math.floor(r%6e4/1e3),d=S=>String(S).padStart(2,"0"),m=this.getAttribute("show-days")!=="false",_=b(this.getAttribute("label-days")||"Days"),f=b(this.getAttribute("label-hours")||"Hours"),v=b(this.getAttribute("label-minutes")||"Min"),C=b(this.getAttribute("label-seconds")||"Sec"),k="";m&&(k+=`<div class="segment" part="days"><span class="value">${d(n)}</span><span class="label">${_}</span></div><span class="separator">:</span>`),k+=`<div class="segment" part="hours"><span class="value">${d(o)}</span><span class="label">${f}</span></div><span class="separator">:</span>`,k+=`<div class="segment" part="minutes"><span class="value">${d(a)}</span><span class="label">${v}</span></div><span class="separator">:</span>`,k+=`<div class="segment" part="seconds"><span class="value">${d(c)}</span><span class="label">${C}</span></div>`,this._wrap&&(this._wrap.innerHTML=k);let A=`${n} days, ${o} hours, ${a} minutes, ${c} seconds remaining`;this.setAttribute("aria-label",A),r<=0&&(clearInterval(this._timer),this.dispatchEvent(new CustomEvent("velin-countdown-end",{bubbles:!0})))}disconnectedCallback(){this._timer&&clearInterval(this._timer)}attributeChangedCallback(){this._timer&&(clearInterval(this._timer),this._start())}};customElements.define("velin-countdown",hi);Ws=hi});var Vs={};y(Vs,{default:()=>Ys});var Su,pi,Ys,Zr=h(()=>{Su=`
889
+ `,vi=class extends HTMLElement{static get observedAttributes(){return["datetime"]}constructor(){super(),this.attachShadow({mode:"open"}),this._timer=null}connectedCallback(){this.shadowRoot.innerHTML=`<style>${yp}</style><div class="wrap"></div>`,this._wrap=this.shadowRoot.querySelector(".wrap"),this.setAttribute("role","timer"),this.setAttribute("aria-live","polite"),this.setAttribute("aria-atomic","true"),this._start()}_start(){this._update(),this._timer=setInterval(()=>this._update(),1e3)}_update(){let e=new Date(this.getAttribute("datetime")).getTime(),t=Date.now(),r=Math.max(0,e-t),n=Math.floor(r/864e5),o=Math.floor(r%864e5/36e5),a=Math.floor(r%36e5/6e4),c=Math.floor(r%6e4/1e3),u=S=>String(S).padStart(2,"0"),h=this.getAttribute("show-days")!=="false",b=y(this.getAttribute("label-days")||"Days"),m=y(this.getAttribute("label-hours")||"Hours"),v=y(this.getAttribute("label-minutes")||"Min"),T=y(this.getAttribute("label-seconds")||"Sec"),k="";h&&(k+=`<div class="segment" part="days"><span class="value">${u(n)}</span><span class="label">${b}</span></div><span class="separator">:</span>`),k+=`<div class="segment" part="hours"><span class="value">${u(o)}</span><span class="label">${m}</span></div><span class="separator">:</span>`,k+=`<div class="segment" part="minutes"><span class="value">${u(a)}</span><span class="label">${v}</span></div><span class="separator">:</span>`,k+=`<div class="segment" part="seconds"><span class="value">${u(c)}</span><span class="label">${T}</span></div>`,this._wrap&&(this._wrap.innerHTML=k);let A=`${n} days, ${o} hours, ${a} minutes, ${c} seconds remaining`;this.setAttribute("aria-label",A),r<=0&&(clearInterval(this._timer),this.dispatchEvent(new CustomEvent("velin-countdown-end",{bubbles:!0})))}disconnectedCallback(){this._timer&&clearInterval(this._timer)}attributeChangedCallback(){this._timer&&(clearInterval(this._timer),this._start())}};customElements.define("velin-countdown",vi);va=vi});var _a={};g(_a,{default:()=>ya});var _p,gi,ya,un=p(()=>{_p=`
873
890
  :host { display: inline-flex; align-items: center; justify-content: center; }
874
891
  svg { transform: rotate(-90deg); }
875
892
  .track { fill: none; stroke: var(--velin-color-border, #e5e5e5); }
@@ -887,16 +904,16 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
887
904
  }
888
905
  :host { position: relative; }
889
906
  @media (prefers-reduced-motion: reduce) { .fill { transition: none; } }
890
- `,pi=class extends HTMLElement{static get observedAttributes(){return["value","size","stroke","color"]}constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){this._render()}_render(){let e=Math.min(100,Math.max(0,parseInt(this.getAttribute("value")||"0",10))),t=parseInt(this.getAttribute("size")||"120",10),r=parseInt(this.getAttribute("stroke")||"8",10),n=(t-r)/2,o=2*Math.PI*n,a=o-e/100*o,c=this.getAttribute("color"),d=c?`stroke: var(--velin-color-${c}, ${c});`:"",m=this.getAttribute("label")!=="false";this.shadowRoot.innerHTML=`
891
- <style>${Su}</style>
907
+ `,gi=class extends HTMLElement{static get observedAttributes(){return["value","size","stroke","color"]}constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){this._render()}_render(){let e=Math.min(100,Math.max(0,parseInt(this.getAttribute("value")||"0",10))),t=parseInt(this.getAttribute("size")||"120",10),r=parseInt(this.getAttribute("stroke")||"8",10),n=(t-r)/2,o=2*Math.PI*n,a=o-e/100*o,c=this.getAttribute("color"),u=c?`stroke: var(--velin-color-${c}, ${c});`:"",h=this.getAttribute("label")!=="false";this.shadowRoot.innerHTML=`
908
+ <style>${_p}</style>
892
909
  <svg width="${t}" height="${t}" viewBox="0 0 ${t} ${t}" part="svg" role="progressbar" aria-valuenow="${e}" aria-valuemin="0" aria-valuemax="100">
893
910
  <circle class="track" cx="${t/2}" cy="${t/2}" r="${n}" stroke-width="${r}" />
894
911
  <circle class="fill" cx="${t/2}" cy="${t/2}" r="${n}" stroke-width="${r}"
895
912
  stroke-dasharray="${o}" stroke-dashoffset="${a}"
896
- style="${d}" part="fill" />
913
+ style="${u}" part="fill" />
897
914
  </svg>
898
- ${m?`<span class="label" part="label">${e}%</span>`:""}
899
- `,this.setAttribute("role","progressbar"),this.setAttribute("aria-valuenow",e),this.setAttribute("aria-valuemin","0"),this.setAttribute("aria-valuemax","100"),this.setAttribute("aria-label",this.getAttribute("aria-label")||`${e}%`)}attributeChangedCallback(){this._render()}};customElements.define("velin-progress-ring",pi);Ys=pi});var Zs={};y(Zs,{default:()=>Xs});var Tu,mi,Xs,Jr=h(()=>{Tu=/^[a-zA-Z0-9_-]{1,64}$/,mi=class extends HTMLElement{static get observedAttributes(){return["key","storage"]}constructor(){super(),this._debounceTimer=null,this._onInput=this._onInput.bind(this),this._onSubmit=this._onSubmit.bind(this),this._onReset=this._onReset.bind(this)}get storageKey(){let e=this.getAttribute("key")||"default";return`velin-persist-${Tu.test(e)?e:"default"}`}get _storage(){return this.getAttribute("storage")==="session"?sessionStorage:localStorage}connectedCallback(){this.style.display="contents",this.addEventListener("input",this._onInput),this.addEventListener("change",this._onInput),this.addEventListener("submit",this._onSubmit),this.addEventListener("reset",this._onReset),requestAnimationFrame(()=>this._restore())}disconnectedCallback(){this.removeEventListener("input",this._onInput),this.removeEventListener("change",this._onInput),this.removeEventListener("submit",this._onSubmit),this.removeEventListener("reset",this._onReset),this._debounceTimer&&clearTimeout(this._debounceTimer)}_onInput(){this._debounceTimer&&clearTimeout(this._debounceTimer),this._debounceTimer=setTimeout(()=>this._save(),300)}_onSubmit(e){this.clear()}_onReset(){requestAnimationFrame(()=>this.clear())}_getFields(){return this.querySelectorAll("input[name], textarea[name], select[name]")}_save(){let e={};this._getFields().forEach(t=>{let r=t.name;r&&(t.type==="password"||t.type==="file"||(t.type==="checkbox"?e[r]=t.checked:t.type==="radio"?t.checked&&(e[r]=t.value):e[r]=t.value))});try{let t=JSON.stringify(e);if(t.length>65536)return;this._storage.setItem(this.storageKey,t)}catch(t){(t.name==="QuotaExceededError"||t.code===22)&&this.dispatchEvent(new CustomEvent("velin-persist-error",{bubbles:!0,detail:{error:"quota"}}))}}_restore(){let e;try{let t=this._storage.getItem(this.storageKey);if(!t||t.length>65536||(e=JSON.parse(t),typeof e!="object"||e===null))return}catch{return}this._getFields().forEach(t=>{let r=t.name;r in e&&(t.type==="checkbox"?t.checked=!!e[r]:t.type==="radio"?t.checked=t.value===e[r]:t.value=e[r])}),this.dispatchEvent(new CustomEvent("velin-persist-restore",{bubbles:!0,detail:{data:e}}))}clear(){try{this._storage.removeItem(this.storageKey)}catch{}this.dispatchEvent(new CustomEvent("velin-persist-clear",{bubbles:!0}))}};customElements.define("velin-persist",mi);Xs=mi});var Qs={};y(Qs,{default:()=>Js});var Lu,fi,Js,Qr=h(()=>{Z();T();Lu=`
915
+ ${h?`<span class="label" part="label">${e}%</span>`:""}
916
+ `,this.setAttribute("role","progressbar"),this.setAttribute("aria-valuenow",e),this.setAttribute("aria-valuemin","0"),this.setAttribute("aria-valuemax","100"),this.setAttribute("aria-label",this.getAttribute("aria-label")||`${e}%`)}attributeChangedCallback(){this._render()}};customElements.define("velin-progress-ring",gi);ya=gi});var xa={};g(xa,{default:()=>wa});var wp,yi,wa,dn=p(()=>{wp=/^[a-zA-Z0-9_-]{1,64}$/,yi=class extends HTMLElement{static get observedAttributes(){return["key","storage"]}constructor(){super(),this._debounceTimer=null,this._onInput=this._onInput.bind(this),this._onSubmit=this._onSubmit.bind(this),this._onReset=this._onReset.bind(this)}get storageKey(){let e=this.getAttribute("key")||"default";return`velin-persist-${wp.test(e)?e:"default"}`}get _storage(){return this.getAttribute("storage")==="session"?sessionStorage:localStorage}connectedCallback(){this.style.display="contents",this.addEventListener("input",this._onInput),this.addEventListener("change",this._onInput),this.addEventListener("submit",this._onSubmit),this.addEventListener("reset",this._onReset),requestAnimationFrame(()=>this._restore())}disconnectedCallback(){this.removeEventListener("input",this._onInput),this.removeEventListener("change",this._onInput),this.removeEventListener("submit",this._onSubmit),this.removeEventListener("reset",this._onReset),this._debounceTimer&&clearTimeout(this._debounceTimer)}_onInput(){this._debounceTimer&&clearTimeout(this._debounceTimer),this._debounceTimer=setTimeout(()=>this._save(),300)}_onSubmit(e){this.clear()}_onReset(){requestAnimationFrame(()=>this.clear())}_getFields(){return this.querySelectorAll("input[name], textarea[name], select[name]")}_save(){let e={};this._getFields().forEach(t=>{let r=t.name;r&&(t.type==="password"||t.type==="file"||(t.type==="checkbox"?e[r]=t.checked:t.type==="radio"?t.checked&&(e[r]=t.value):e[r]=t.value))});try{let t=JSON.stringify(e);if(t.length>65536)return;this._storage.setItem(this.storageKey,t)}catch(t){(t.name==="QuotaExceededError"||t.code===22)&&this.dispatchEvent(new CustomEvent("velin-persist-error",{bubbles:!0,detail:{error:"quota"}}))}}_restore(){let e;try{let t=this._storage.getItem(this.storageKey);if(!t||t.length>65536||(e=JSON.parse(t),typeof e!="object"||e===null))return}catch{return}this._getFields().forEach(t=>{let r=t.name;r in e&&(t.type==="checkbox"?t.checked=!!e[r]:t.type==="radio"?t.checked=t.value===e[r]:t.value=e[r])}),this.dispatchEvent(new CustomEvent("velin-persist-restore",{bubbles:!0,detail:{data:e}}))}clear(){try{this._storage.removeItem(this.storageKey)}catch{}this.dispatchEvent(new CustomEvent("velin-persist-clear",{bubbles:!0}))}};customElements.define("velin-persist",yi);wa=yi});var Ea={};g(Ea,{default:()=>Aa});var xp,_i,Aa,pn=p(()=>{J();L();xp=`
900
917
  :host { display: inline-block; position: relative; }
901
918
  .listbox {
902
919
  position: absolute; z-index: var(--velin-z-dropdown, 100);
@@ -921,11 +938,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
921
938
  ::slotted([role="option"][aria-selected="true"]) {
922
939
  background: var(--velin-color-surface-dim, #eee);
923
940
  }
924
- `,fi=class extends HTMLElement{static get observedAttributes(){return["open","aria-label"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onDocClick=this._onDocClick.bind(this),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=`velin-combobox-list-${Math.random().toString(36).slice(2,9)}`;this._listId=e;let t=b(this.getAttribute("aria-label")||"Options");this.shadowRoot.innerHTML=`
925
- <style>${Lu}</style>
941
+ `,_i=class extends HTMLElement{static get observedAttributes(){return["open","aria-label"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onDocClick=this._onDocClick.bind(this),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=`velin-combobox-list-${Math.random().toString(36).slice(2,9)}`;this._listId=e;let t=y(this.getAttribute("aria-label")||"Options");this.shadowRoot.innerHTML=`
942
+ <style>${xp}</style>
926
943
  <slot name="trigger"></slot>
927
944
  <div class="listbox" id="${e}" role="listbox" aria-label="${t}" part="listbox"><slot></slot></div>
928
- `,this.shadowRoot.querySelector('slot[name="trigger"]').addEventListener("slotchange",()=>this._wireTrigger()),this.shadowRoot.querySelector("slot:not([name])")?.addEventListener("slotchange",()=>this._wireOptions()),this._wireTrigger(),this._wireOptions(),this.addEventListener("keydown",this._onKey)}_wireTrigger(){let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];if(!e)return;e.setAttribute("role","combobox"),e.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false"),e.setAttribute("aria-controls",this._listId),e.setAttribute("aria-autocomplete","list"),e.id||(e.id=`velin-combobox-trigger-${Math.random().toString(36).slice(2,9)}`);let t=this.shadowRoot.querySelector(".listbox");t&&t.setAttribute("aria-labelledby",e.id),e.dataset.velinComboWired||(e.dataset.velinComboWired="1",e.addEventListener("click",()=>this.toggle()),e.addEventListener("keydown",r=>{(r.key==="ArrowDown"||r.key==="Enter")&&(r.preventDefault(),this.open())}))}_wireOptions(){this._getOptions().forEach((t,r)=>{t.setAttribute("role","option"),t.setAttribute("aria-selected",t.hasAttribute("selected")?"true":"false"),t.setAttribute("tabindex",r===0?"0":"-1")})}_getOptions(){let e=this.shadowRoot.querySelector("slot:not([name])");return e?e.assignedElements().filter(t=>!t.hidden):[]}toggle(){this.hasAttribute("open")?this.close():this.open()}open(){this.setAttribute("open","");let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];e&&e.setAttribute("aria-expanded","true"),document.addEventListener("click",this._onDocClick,!0),requestAnimationFrame(()=>{let t=this._getOptions();t.length&&t[0].focus()})}close(){this.removeAttribute("open");let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];e&&(e.setAttribute("aria-expanded","false"),e.focus()),document.removeEventListener("click",this._onDocClick,!0),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_onDocClick(e){this.contains(e.target)||this.close()}_onKey(e){if(!this.hasAttribute("open"))return;if(e.key==="Escape"){this.close();return}let t=this._getOptions();t.length&&(te(this,t,e),e.key==="Enter"&&t.includes(e.target)&&(this._selectOption(e.target),this.close()))}_selectOption(e){this._getOptions().forEach(r=>r.setAttribute("aria-selected",r===e?"true":"false"));let t=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];t&&"value"in t&&(t.value=e.textContent?.trim()||""),this.dispatchEvent(new CustomEvent("velin-select",{bubbles:!0,detail:{option:e}}))}attributeChangedCallback(e){if(e==="open"&&this._wireTrigger(),e==="aria-label"){let t=this.shadowRoot?.querySelector(".listbox");t&&t.setAttribute("aria-label",b(this.getAttribute("aria-label")||"Options"))}}disconnectedCallback(){document.removeEventListener("click",this._onDocClick,!0)}};customElements.define("velin-combobox",fi);Js=fi});var ta={};y(ta,{default:()=>ea});var Cu,vi,ea,en=h(()=>{T();Cu=`
945
+ `,this.shadowRoot.querySelector('slot[name="trigger"]').addEventListener("slotchange",()=>this._wireTrigger()),this.shadowRoot.querySelector("slot:not([name])")?.addEventListener("slotchange",()=>this._wireOptions()),this._wireTrigger(),this._wireOptions(),this.addEventListener("keydown",this._onKey)}_wireTrigger(){let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];if(!e)return;e.setAttribute("role","combobox"),e.setAttribute("aria-expanded",this.hasAttribute("open")?"true":"false"),e.setAttribute("aria-controls",this._listId),e.setAttribute("aria-autocomplete","list"),e.id||(e.id=`velin-combobox-trigger-${Math.random().toString(36).slice(2,9)}`);let t=this.shadowRoot.querySelector(".listbox");t&&t.setAttribute("aria-labelledby",e.id),e.dataset.velinComboWired||(e.dataset.velinComboWired="1",e.addEventListener("click",()=>this.toggle()),e.addEventListener("keydown",r=>{(r.key==="ArrowDown"||r.key==="Enter")&&(r.preventDefault(),this.open())}))}_wireOptions(){this._getOptions().forEach((t,r)=>{t.setAttribute("role","option"),t.setAttribute("aria-selected",t.hasAttribute("selected")?"true":"false"),t.setAttribute("tabindex",r===0?"0":"-1")})}_getOptions(){let e=this.shadowRoot.querySelector("slot:not([name])");return e?e.assignedElements().filter(t=>!t.hidden):[]}toggle(){this.hasAttribute("open")?this.close():this.open()}open(){this.setAttribute("open","");let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];e&&e.setAttribute("aria-expanded","true"),document.addEventListener("click",this._onDocClick,!0),requestAnimationFrame(()=>{let t=this._getOptions();t.length&&t[0].focus()})}close(){this.removeAttribute("open");let e=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];e&&(e.setAttribute("aria-expanded","false"),e.focus()),document.removeEventListener("click",this._onDocClick,!0),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_onDocClick(e){this.contains(e.target)||this.close()}_onKey(e){if(!this.hasAttribute("open"))return;if(e.key==="Escape"){this.close();return}let t=this._getOptions();t.length&&(ne(this,t,e),e.key==="Enter"&&t.includes(e.target)&&(this._selectOption(e.target),this.close()))}_selectOption(e){this._getOptions().forEach(r=>r.setAttribute("aria-selected",r===e?"true":"false"));let t=this.shadowRoot.querySelector('slot[name="trigger"]')?.assignedElements()[0];t&&"value"in t&&(t.value=e.textContent?.trim()||""),this.dispatchEvent(new CustomEvent("velin-select",{bubbles:!0,detail:{option:e}}))}attributeChangedCallback(e){if(e==="open"&&this._wireTrigger(),e==="aria-label"){let t=this.shadowRoot?.querySelector(".listbox");t&&t.setAttribute("aria-label",y(this.getAttribute("aria-label")||"Options"))}}disconnectedCallback(){document.removeEventListener("click",this._onDocClick,!0)}};customElements.define("velin-combobox",_i);Aa=_i});var Sa={};g(Sa,{default:()=>ka});var Ap,wi,ka,hn=p(()=>{L();Ap=`
929
946
  :host { display: block; }
930
947
  nav {
931
948
  display: flex;
@@ -955,10 +972,10 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
955
972
  color: var(--velin-color-primary, #2563eb);
956
973
  font-weight: var(--velin-weight-semibold, 600);
957
974
  }
958
- `,vi=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onSlot=this._onSlot.bind(this)}connectedCallback(){let e=b(this.getAttribute("aria-label")||"Bottom navigation");this.shadowRoot.innerHTML=`
959
- <style>${Cu}</style>
975
+ `,wi=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"}),this._onSlot=this._onSlot.bind(this)}connectedCallback(){let e=y(this.getAttribute("aria-label")||"Bottom navigation");this.shadowRoot.innerHTML=`
976
+ <style>${Ap}</style>
960
977
  <nav role="navigation" aria-label="${e}"><slot></slot></nav>
961
- `,this.shadowRoot.querySelector("slot").addEventListener("slotchange",this._onSlot),this._onSlot()}_onSlot(){this._syncCurrent(),this._syncSlotLabels()}_syncSlotLabels(){let e=this.shadowRoot?.querySelector("slot");e&&e.assignedElements().forEach(t=>{if(!t.textContent?.replace(/\s+/g," ").trim()&&!t.getAttribute("aria-label")){let n=t.getAttribute("data-nav")||t.getAttribute("title")||t.getAttribute("aria-labelledby");n&&t.setAttribute("aria-label",n)}t.tagName==="A"&&!t.getAttribute("href")&&(t.setAttribute("role","button"),t.hasAttribute("tabindex")||t.setAttribute("tabindex","0"),t._velinBottomNavKey||(t._velinBottomNavKey=n=>{(n.key==="Enter"||n.key===" ")&&(n.preventDefault(),t.click())},t.addEventListener("keydown",t._velinBottomNavKey)))})}_syncCurrent(){let e=this.shadowRoot?.querySelector("slot");if(!e)return;let t=this.getAttribute("current");e.assignedElements().forEach(r=>{r.hasAttribute("current")||t&&(r.dataset.nav===t||r.getAttribute("data-nav")===t)?(r.setAttribute("current",""),r.setAttribute("aria-current","page")):(r.removeAttribute("current"),r.removeAttribute("aria-current"))})}static get observedAttributes(){return["aria-label","current"]}attributeChangedCallback(e){if(e==="aria-label"){let t=this.shadowRoot?.querySelector("nav");t&&t.setAttribute("aria-label",b(this.getAttribute("aria-label")||"Bottom navigation"))}e==="current"&&this._syncCurrent()}};customElements.define("velin-bottom-nav",vi);ea=vi});var be,it=h(()=>{be=`
978
+ `,this.shadowRoot.querySelector("slot").addEventListener("slotchange",this._onSlot),this._onSlot()}_onSlot(){this._syncCurrent(),this._syncSlotLabels()}_syncSlotLabels(){let e=this.shadowRoot?.querySelector("slot");e&&e.assignedElements().forEach(t=>{if(!t.textContent?.replace(/\s+/g," ").trim()&&!t.getAttribute("aria-label")){let n=t.getAttribute("data-nav")||t.getAttribute("title")||t.getAttribute("aria-labelledby");n&&t.setAttribute("aria-label",n)}t.tagName==="A"&&!t.getAttribute("href")&&(t.setAttribute("role","button"),t.hasAttribute("tabindex")||t.setAttribute("tabindex","0"),t._velinBottomNavKey||(t._velinBottomNavKey=n=>{(n.key==="Enter"||n.key===" ")&&(n.preventDefault(),t.click())},t.addEventListener("keydown",t._velinBottomNavKey)))})}_syncCurrent(){let e=this.shadowRoot?.querySelector("slot");if(!e)return;let t=this.getAttribute("current");e.assignedElements().forEach(r=>{r.hasAttribute("current")||t&&(r.dataset.nav===t||r.getAttribute("data-nav")===t)?(r.setAttribute("current",""),r.setAttribute("aria-current","page")):(r.removeAttribute("current"),r.removeAttribute("aria-current"))})}static get observedAttributes(){return["aria-label","current"]}attributeChangedCallback(e){if(e==="aria-label"){let t=this.shadowRoot?.querySelector("nav");t&&t.setAttribute("aria-label",y(this.getAttribute("aria-label")||"Bottom navigation"))}e==="current"&&this._syncCurrent()}};customElements.define("velin-bottom-nav",wi);ka=wi});var Q,De=p(()=>{Q=`
962
979
  :host { display: block; }
963
980
  button, [role="button"] {
964
981
  min-inline-size: 2.75rem;
@@ -974,8 +991,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
974
991
  border: 1px solid ButtonText;
975
992
  }
976
993
  }
977
- `});var ra={};y(ra,{default:()=>ia});var Ru,bi,ia,tn=h(()=>{Z();T();it();Ru=`
978
- ${be}
994
+ `});var Ca={};g(Ca,{default:()=>Ta});var Ep,xi,Ta,mn=p(()=>{J();De();Ep=`
995
+ ${Q}
979
996
  :host { display: contents; }
980
997
  .overlay {
981
998
  position: fixed; inset: 0; z-index: var(--velin-z-overlay, 400);
@@ -1003,20 +1020,29 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1003
1020
  border-bottom: 1px solid var(--velin-color-border, #ddd);
1004
1021
  }
1005
1022
  .title { font-size: var(--velin-text-lg, 1.25rem); font-weight: 600; margin: 0; }
1023
+ .close-btn {
1024
+ min-width: 2.75rem; min-height: 2.75rem; display: inline-flex; align-items: center; justify-content: center;
1025
+ background: none; border: none; border-radius: var(--velin-radius-md, 0.5rem); cursor: pointer;
1026
+ color: var(--velin-color-text-muted, #666); font-size: 1.5rem; line-height: 1;
1027
+ }
1028
+ .close-btn:hover { background: var(--velin-color-surface-dim, #eee); color: var(--velin-color-text, #111); }
1006
1029
  .body { flex: 1; overflow-y: auto; padding: var(--velin-space-5, 1.25rem); }
1007
1030
  @media (prefers-reduced-motion: reduce) { .overlay, .sheet { transition: none; } }
1008
- `,bi=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._prev=null,this._onKey=this._onKey.bind(this)}connectedCallback(){let e=b(this.getAttribute("title")||this.getAttribute("label")||""),t="velin-sheet-title";this.shadowRoot.innerHTML=`
1009
- <style>${Ru}</style>
1031
+ `,xi=class extends HTMLElement{static get observedAttributes(){return["open","title","label"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._prev=null,this._onKey=this._onKey.bind(this),this._onTitleSlot=this._onTitleSlot.bind(this)}connectedCallback(){if(this.shadowRoot.querySelector(".sheet"))return;let e="velin-sheet-title";this.shadowRoot.innerHTML=`
1032
+ <style>${Ep}</style>
1010
1033
  <div class="overlay" part="overlay"></div>
1011
- <div class="sheet" role="dialog" aria-modal="true" aria-labelledby="${t}" part="sheet">
1034
+ <div class="sheet" role="dialog" aria-modal="true" aria-labelledby="${e}" part="sheet">
1012
1035
  <div class="header" part="header">
1013
- <h2 class="title" id="${t}">${e}</h2>
1036
+ <h2 class="title" id="${e}" part="title">
1037
+ <slot name="title"></slot>
1038
+ <span class="title-fallback"></span>
1039
+ </h2>
1014
1040
  <button class="close-btn" aria-label="Close" part="close">&#215;</button>
1015
1041
  </div>
1016
1042
  <div class="body" part="body"><slot></slot></div>
1017
1043
  </div>
1018
- `,this.shadowRoot.querySelector(".close-btn").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".overlay").addEventListener("click",()=>this.close()),this.hasAttribute("open")&&this._open()}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close())}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_open(){this._prev=ae(),ce(this),document.addEventListener("keydown",this._onKey),requestAnimationFrame(()=>{let e=fe(this.shadowRoot);e.length&&e[0].focus()})}_close(){document.removeEventListener("keydown",this._onKey),G(this),le(this._prev)}_onKey(e){if(e.key==="Escape"){this.close();return}ee(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKey),G(this)}};customElements.define("velin-sheet",bi);ia=bi});var oa={};y(oa,{default:()=>na});var Mu,gi,na,rn=h(()=>{Z();T();it();Mu=`
1019
- ${be}
1044
+ `,this.shadowRoot.querySelector(".close-btn").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector(".overlay").addEventListener("click",()=>this.close()),this.shadowRoot.querySelector('slot[name="title"]').addEventListener("slotchange",this._onTitleSlot),this._syncTitle(),this.hasAttribute("open")&&this._open()}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close()),(e==="title"||e==="label")&&this._syncTitle()}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}_syncTitle(){let e=this.shadowRoot?.querySelector(".title-fallback");e&&(e.textContent=this.getAttribute("title")||this.getAttribute("label")||"")}_hasTitleSlot(){let e=this.shadowRoot?.querySelector('slot[name="title"]');return e?e.assignedNodes({flatten:!0}).some(t=>t.nodeType===Node.TEXT_NODE?!!t.textContent.trim():t.nodeType===Node.ELEMENT_NODE):!1}_onTitleSlot(){let e=this.shadowRoot?.querySelector('[role="dialog"]'),t=this.shadowRoot?.querySelector(".title-fallback");if(!(!e||!t))if(this._hasTitleSlot()){t.hidden=!0,e.removeAttribute("aria-labelledby");let n=this.shadowRoot.querySelector('slot[name="title"]').assignedNodes({flatten:!0}).map(o=>o.textContent||"").join(" ").trim();n&&e.setAttribute("aria-label",n)}else t.hidden=!1,e.removeAttribute("aria-label"),e.setAttribute("aria-labelledby","velin-sheet-title"),this._syncTitle()}_open(){this._prev=ue(),pe(this),document.addEventListener("keydown",this._onKey),requestAnimationFrame(()=>{let e=ge(this.shadowRoot);e.length&&e[0].focus()})}_close(){document.removeEventListener("keydown",this._onKey),W(this),de(this._prev)}_onKey(e){if(e.key==="Escape"){this.close();return}re(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKey),W(this)}};customElements.define("velin-sheet",xi);Ta=xi});var Ra={};g(Ra,{default:()=>La});var kp,Ai,La,fn=p(()=>{J();L();De();kp=`
1045
+ ${Q}
1020
1046
  :host { display: block; }
1021
1047
  .group {
1022
1048
  display: inline-flex;
@@ -1042,11 +1068,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1042
1068
  font-weight: var(--velin-weight-semibold, 600);
1043
1069
  box-shadow: var(--velin-shadow-sm, 0 1px 2px rgba(0,0,0,0.06));
1044
1070
  }
1045
- `,gi=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onClick=this._onClick.bind(this),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=b(this.getAttribute("aria-label")||"Segmented control");this.shadowRoot.innerHTML=`
1046
- <style>${Mu}</style>
1071
+ `,Ai=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onClick=this._onClick.bind(this),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=y(this.getAttribute("aria-label")||"Segmented control");this.shadowRoot.innerHTML=`
1072
+ <style>${kp}</style>
1047
1073
  <div class="group" role="group" aria-label="${e}"><slot></slot></div>
1048
- `,this.addEventListener("click",this._onClick),this.addEventListener("keydown",this._onKey),this.shadowRoot.querySelector("slot")?.addEventListener("slotchange",()=>this._init()),this._init()}_getButtons(){let e=this.shadowRoot.querySelector("slot");return e?e.assignedElements().filter(t=>t.tagName==="BUTTON"):[]}_init(){let e=this._getButtons(),t=e.find(r=>r.hasAttribute("selected"))||e[0];e.forEach((r,n)=>{r.setAttribute("aria-pressed",r===t?"true":"false"),r.setAttribute("tabindex",r===t?"0":"-1")})}_onClick(e){let t=e.target.closest("button");!t||!this.contains(t)||this._select(t)}_select(e){this._getButtons().forEach(t=>{t.setAttribute("aria-pressed",t===e?"true":"false"),t.setAttribute("tabindex",t===e?"0":"-1")}),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:e.value||e.textContent?.trim()}}))}_onKey(e){let t=this._getButtons();if(t.includes(e.target)&&(te(this,t,e),["ArrowLeft","ArrowRight","Home","End"].includes(e.key))){let r=t.find(n=>n.getAttribute("tabindex")==="0");r&&this._select(r)}}static get observedAttributes(){return["aria-label"]}attributeChangedCallback(e){if(e==="aria-label"){let t=this.shadowRoot?.querySelector(".group");t&&t.setAttribute("aria-label",b(this.getAttribute("aria-label")||"Segmented control"))}}disconnectedCallback(){this.removeEventListener("click",this._onClick),this.removeEventListener("keydown",this._onKey)}};customElements.define("velin-segmented-control",gi);na=gi});var la={};y(la,{default:()=>aa});var Iu,sa,yi,aa,nn=h(()=>{Z();T();it();Iu=`
1049
- ${be}
1074
+ `,this.addEventListener("click",this._onClick),this.addEventListener("keydown",this._onKey),this.shadowRoot.querySelector("slot")?.addEventListener("slotchange",()=>this._init()),this._init()}_getButtons(){let e=this.shadowRoot.querySelector("slot");return e?e.assignedElements().filter(t=>t.tagName==="BUTTON"):[]}_init(){let e=this._getButtons(),t=e.find(r=>r.hasAttribute("selected"))||e[0];e.forEach((r,n)=>{r.setAttribute("aria-pressed",r===t?"true":"false"),r.setAttribute("tabindex",r===t?"0":"-1")})}_onClick(e){let t=e.target.closest("button");!t||!this.contains(t)||this._select(t)}_select(e){this._getButtons().forEach(t=>{t.setAttribute("aria-pressed",t===e?"true":"false"),t.setAttribute("tabindex",t===e?"0":"-1")}),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:e.value||e.textContent?.trim()}}))}_onKey(e){let t=this._getButtons();if(t.includes(e.target)&&(ne(this,t,e),["ArrowLeft","ArrowRight","Home","End"].includes(e.key))){let r=t.find(n=>n.getAttribute("tabindex")==="0");r&&this._select(r)}}static get observedAttributes(){return["aria-label"]}attributeChangedCallback(e){if(e==="aria-label"){let t=this.shadowRoot?.querySelector(".group");t&&t.setAttribute("aria-label",y(this.getAttribute("aria-label")||"Segmented control"))}}disconnectedCallback(){this.removeEventListener("click",this._onClick),this.removeEventListener("keydown",this._onKey)}};customElements.define("velin-segmented-control",Ai);La=Ai});var Da={};g(Da,{default:()=>Ia});var Sp,Ma,Ei,Ia,bn=p(()=>{J();L();De();Sp=`
1075
+ ${Q}
1050
1076
  :host { display: inline-block; }
1051
1077
  .stars { display: inline-flex; gap: var(--velin-space-1, 0.25rem); }
1052
1078
  button {
@@ -1055,8 +1081,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1055
1081
  color: var(--velin-color-border, #ccc);
1056
1082
  }
1057
1083
  button[aria-checked="true"] { color: var(--velin-color-warning, #f59e0b); }
1058
- `,sa=5,yi=class extends HTMLElement{static get observedAttributes(){return["value"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onClick=this._onClick.bind(this),this._onKey=this._onKey.bind(this)}connectedCallback(){this.shadowRoot.innerHTML=`<style>${Iu}</style><div class="stars" role="radiogroup"></div>`,this._render(),this.shadowRoot.querySelector(".stars").addEventListener("click",this._onClick),this.shadowRoot.querySelector(".stars").addEventListener("keydown",this._onKey)}_value(){let e=parseInt(this.getAttribute("value")||"0",10);return Math.min(sa,Math.max(0,Number.isNaN(e)?0:e))}_render(){let e=this.shadowRoot.querySelector(".stars"),t=this._value(),r=b(this.getAttribute("aria-label")||"Rating");e.setAttribute("aria-label",r),e.innerHTML="";for(let n=1;n<=sa;n++){let o=document.createElement("button");o.type="button",o.setAttribute("role","radio"),o.setAttribute("aria-checked",n<=t?"true":"false"),o.setAttribute("aria-label",b(`${n} star${n>1?"s":""}`)),o.setAttribute("tabindex",n===(t||1)?"0":"-1"),o.dataset.value=String(n),o.textContent=n<=t?"\u2605":"\u2606",e.appendChild(o)}}_getButtons(){return[...this.shadowRoot.querySelectorAll('button[role="radio"]')]}_onClick(e){let t=e.target.closest("button");t&&this._setValue(parseInt(t.dataset.value,10))}_onKey(e){let t=this._getButtons();if(t.includes(e.target)&&(te(this,t,e),["ArrowLeft","ArrowRight","Home","End"].includes(e.key))){let r=t.find(n=>n.getAttribute("tabindex")==="0");r&&this._setValue(parseInt(r.dataset.value,10))}}_setValue(e){this.setAttribute("value",String(e)),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:e}}))}attributeChangedCallback(e){e==="value"&&this.shadowRoot?.querySelector(".stars")&&this._render()}};customElements.define("velin-rating",yi);aa=yi});var da={};y(da,{default:()=>ca});var Du,_i,ca,on=h(()=>{Z();T();it();Du=`
1059
- ${be}
1084
+ `,Ma=5,Ei=class extends HTMLElement{static get observedAttributes(){return["value"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onClick=this._onClick.bind(this),this._onKey=this._onKey.bind(this)}connectedCallback(){this.shadowRoot.innerHTML=`<style>${Sp}</style><div class="stars" role="radiogroup"></div>`,this._render(),this.shadowRoot.querySelector(".stars").addEventListener("click",this._onClick),this.shadowRoot.querySelector(".stars").addEventListener("keydown",this._onKey)}_value(){let e=parseInt(this.getAttribute("value")||"0",10);return Math.min(Ma,Math.max(0,Number.isNaN(e)?0:e))}_render(){let e=this.shadowRoot.querySelector(".stars"),t=this._value(),r=y(this.getAttribute("aria-label")||"Rating");e.setAttribute("aria-label",r),e.innerHTML="";for(let n=1;n<=Ma;n++){let o=document.createElement("button");o.type="button",o.setAttribute("role","radio"),o.setAttribute("aria-checked",n<=t?"true":"false"),o.setAttribute("aria-label",y(`${n} star${n>1?"s":""}`)),o.setAttribute("tabindex",n===(t||1)?"0":"-1"),o.dataset.value=String(n),o.textContent=n<=t?"\u2605":"\u2606",e.appendChild(o)}}_getButtons(){return[...this.shadowRoot.querySelectorAll('button[role="radio"]')]}_onClick(e){let t=e.target.closest("button");t&&this._setValue(parseInt(t.dataset.value,10))}_onKey(e){let t=this._getButtons();if(t.includes(e.target)&&(ne(this,t,e),["ArrowLeft","ArrowRight","Home","End"].includes(e.key))){let r=t.find(n=>n.getAttribute("tabindex")==="0");r&&this._setValue(parseInt(r.dataset.value,10))}}_setValue(e){this.setAttribute("value",String(e)),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:e}}))}attributeChangedCallback(e){e==="value"&&this.shadowRoot?.querySelector(".stars")&&this._render()}};customElements.define("velin-rating",Ei);Ia=Ei});var Na={};g(Na,{default:()=>Oa});var Tp,ki,Oa,vn=p(()=>{J();L();De();Tp=`
1085
+ ${Q}
1060
1086
  :host { display: block; }
1061
1087
  .menubar {
1062
1088
  display: flex;
@@ -1080,11 +1106,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1080
1106
  ::slotted([role="menuitem"]:hover) {
1081
1107
  background: var(--velin-color-surface-dim, #eee);
1082
1108
  }
1083
- `,_i=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=b(this.getAttribute("aria-label")||"Menu bar");this.shadowRoot.innerHTML=`
1084
- <style>${Du}</style>
1109
+ `,ki=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=y(this.getAttribute("aria-label")||"Menu bar");this.shadowRoot.innerHTML=`
1110
+ <style>${Tp}</style>
1085
1111
  <div class="menubar" role="menubar" aria-label="${e}"><slot></slot></div>
1086
- `,this.addEventListener("keydown",this._onKey),this.shadowRoot.querySelector("slot")?.addEventListener("slotchange",()=>this._init()),this._init()}_getItems(){let e=this.shadowRoot.querySelector("slot");return e?e.assignedElements().filter(t=>!t.hasAttribute("disabled")):[]}_init(){this._getItems().forEach((t,r)=>{t.hasAttribute("role")||t.setAttribute("role","menuitem"),t.setAttribute("tabindex",r===0?"0":"-1")})}_onKey(e){let t=this._getItems();t.includes(e.target)&&te(this,t,e)}static get observedAttributes(){return["aria-label"]}attributeChangedCallback(e){if(e==="aria-label"){let t=this.shadowRoot?.querySelector(".menubar");t&&t.setAttribute("aria-label",b(this.getAttribute("aria-label")||"Menu bar"))}}disconnectedCallback(){this.removeEventListener("keydown",this._onKey)}};customElements.define("velin-menubar",_i);ca=_i});var ha={};y(ha,{default:()=>ua});var Ou,xi,ua,sn=h(()=>{Z();T();it();Ou=`
1087
- ${be}
1112
+ `,this.addEventListener("keydown",this._onKey),this.shadowRoot.querySelector("slot")?.addEventListener("slotchange",()=>this._init()),this._init()}_getItems(){let e=this.shadowRoot.querySelector("slot");return e?e.assignedElements().filter(t=>!t.hasAttribute("disabled")):[]}_init(){this._getItems().forEach((t,r)=>{t.hasAttribute("role")||t.setAttribute("role","menuitem"),t.setAttribute("tabindex",r===0?"0":"-1")})}_onKey(e){let t=this._getItems();t.includes(e.target)&&ne(this,t,e)}static get observedAttributes(){return["aria-label"]}attributeChangedCallback(e){if(e==="aria-label"){let t=this.shadowRoot?.querySelector(".menubar");t&&t.setAttribute("aria-label",y(this.getAttribute("aria-label")||"Menu bar"))}}disconnectedCallback(){this.removeEventListener("keydown",this._onKey)}};customElements.define("velin-menubar",ki);Oa=ki});var $a={};g($a,{default:()=>za});var Cp,Si,za,gn=p(()=>{J();L();De();Cp=`
1113
+ ${Q}
1088
1114
  :host { display: contents; }
1089
1115
  .overlay {
1090
1116
  position: fixed; inset: 0; z-index: var(--velin-z-modal, 500);
@@ -1127,17 +1153,17 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1127
1153
  ::slotted(button:focus-visible) {
1128
1154
  background: var(--velin-color-surface-dim, #eee);
1129
1155
  }
1130
- `,xi=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._prev=null,this._onKey=this._onKey.bind(this),this._onInput=this._onInput.bind(this)}connectedCallback(){let e=b(this.getAttribute("placeholder")||"Search commands\u2026");this.shadowRoot.innerHTML=`
1131
- <style>${Ou}</style>
1156
+ `,Si=class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.attachShadow({mode:"open",delegatesFocus:!0}),this._prev=null,this._onKey=this._onKey.bind(this),this._onInput=this._onInput.bind(this)}connectedCallback(){let e=y(this.getAttribute("placeholder")||"Search commands\u2026");this.shadowRoot.innerHTML=`
1157
+ <style>${Cp}</style>
1132
1158
  <div class="overlay" part="overlay">
1133
1159
  <div class="panel" role="dialog" aria-modal="true" aria-label="Command palette" part="panel">
1134
1160
  <input class="search" type="search" autocomplete="off" placeholder="${e}" aria-label="Search" part="search" />
1135
1161
  <div class="results" part="results"><slot></slot></div>
1136
1162
  </div>
1137
1163
  </div>
1138
- `,this.shadowRoot.querySelector(".search").addEventListener("input",this._onInput),this.shadowRoot.querySelector(".overlay")?.addEventListener("click",this._onOverlayClick),this.shadowRoot.querySelector("slot")?.addEventListener("slotchange",()=>this._filter("")),this._filter("")}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close())}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}toggle(){this.hasAttribute("open")?this.close():this.open()}_onOverlayClick=e=>{e.target===e.currentTarget&&this.close()};_open(){this._prev=ae(),ce(this),document.addEventListener("keydown",this._onKey),requestAnimationFrame(()=>{this.shadowRoot.querySelector(".search")?.focus(),this._filter("")})}_close(){document.removeEventListener("keydown",this._onKey),G(this),le(this._prev);let e=this.shadowRoot.querySelector(".search");e&&(e.value=""),this._filter("")}_onInput(e){this._filter(e.target.value)}_filter(e){let t=e.trim().toLowerCase();this.shadowRoot.querySelector("slot")?.assignedElements().forEach(n=>{let o=n.textContent?.trim().toLowerCase()||"",a=!t||o.includes(t);n.hidden=!a})}_visibleItems(){return this.shadowRoot.querySelector("slot")?.assignedElements().filter(t=>t.tagName==="BUTTON"&&!t.hidden)||[]}_onKey(e){if(e.key==="Escape"){this.close();return}let t=this._visibleItems();if(t.length&&(e.key==="ArrowDown"||e.key==="ArrowUp")){e.preventDefault();let r=t.indexOf(document.activeElement);(e.key==="ArrowDown"?t[(r+1)%t.length]:t[(r<=0?t.length:r)-1])?.focus();return}ee(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKey),this.shadowRoot?.querySelector(".overlay")?.removeEventListener("click",this._onOverlayClick),this.hasAttribute("open")&&G(this)}};customElements.define("velin-command",xi);ua=xi});var ma={};y(ma,{default:()=>pa});var Nu,wi,pa,an=h(()=>{Nu=`
1164
+ `,this.shadowRoot.querySelector(".search").addEventListener("input",this._onInput),this.shadowRoot.querySelector(".overlay")?.addEventListener("click",this._onOverlayClick),this.shadowRoot.querySelector("slot")?.addEventListener("slotchange",()=>this._filter("")),this._filter("")}attributeChangedCallback(e){e==="open"&&(this.hasAttribute("open")?this._open():this._close())}open(){this.setAttribute("open","")}close(){this.removeAttribute("open"),this.dispatchEvent(new CustomEvent("velin-close",{bubbles:!0}))}toggle(){this.hasAttribute("open")?this.close():this.open()}_onOverlayClick=e=>{e.target===e.currentTarget&&this.close()};_open(){this._prev=ue(),pe(this),document.addEventListener("keydown",this._onKey),requestAnimationFrame(()=>{this.shadowRoot.querySelector(".search")?.focus(),this._filter("")})}_close(){document.removeEventListener("keydown",this._onKey),W(this),de(this._prev);let e=this.shadowRoot.querySelector(".search");e&&(e.value=""),this._filter("")}_onInput(e){this._filter(e.target.value)}_filter(e){let t=e.trim().toLowerCase();this.shadowRoot.querySelector("slot")?.assignedElements().forEach(n=>{let o=n.textContent?.trim().toLowerCase()||"",a=!t||o.includes(t);n.hidden=!a})}_visibleItems(){return this.shadowRoot.querySelector("slot")?.assignedElements().filter(t=>t.tagName==="BUTTON"&&!t.hidden)||[]}_onKey(e){if(e.key==="Escape"){this.close();return}let t=this._visibleItems();if(t.length&&(e.key==="ArrowDown"||e.key==="ArrowUp")){e.preventDefault();let r=t.indexOf(document.activeElement);(e.key==="ArrowDown"?t[(r+1)%t.length]:t[(r<=0?t.length:r)-1])?.focus();return}re(this.shadowRoot,e)}disconnectedCallback(){document.removeEventListener("keydown",this._onKey),this.shadowRoot?.querySelector(".overlay")?.removeEventListener("click",this._onOverlayClick),this.hasAttribute("open")&&W(this)}};customElements.define("velin-command",Si);za=Si});var Fa={};g(Fa,{default:()=>Pa});var Lp,Ti,Pa,yn=p(()=>{Lp=`
1139
1165
  :host { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
1140
- `,wi=class extends HTMLElement{connectedCallback(){this.shadowRoot||this.attachShadow({mode:"open"});let e=this.getAttribute("polite")==="false"?"assertive":"polite";this.shadowRoot.innerHTML="<style>"+Nu+'</style><div role="status" aria-live="'+e+'" aria-atomic="true" part="region"></div>',this._region=this.shadowRoot.querySelector('[role="status"]')}announce(e,{assertive:t=!1}={}){this._region||this.connectedCallback(),this._region.setAttribute("aria-live",t?"assertive":"polite"),this._region.textContent="",requestAnimationFrame(()=>{this._region.textContent=typeof e=="string"?e:""})}static announceGlobal(e,t){let r=document.querySelector("velin-announcer");r||(r=document.createElement("velin-announcer"),document.body.appendChild(r)),r.announce(e,t)}};customElements.define("velin-announcer",wi);pa=wi});var ba={};y(ba,{default:()=>va});function zu(i,e){if(!i)return"";if(e==="rot13")return i.replace(/[a-zA-Z]/g,t=>{let r=t<="Z"?65:97;return String.fromCharCode((t.charCodeAt(0)-r+13)%26+r)});try{return atob(i)}catch{return i}}var fa,Ai,va,Ei=h(()=>{T();fa=`
1166
+ `,Ti=class extends HTMLElement{connectedCallback(){this.shadowRoot||this.attachShadow({mode:"open"});let e=this.getAttribute("polite")==="false"?"assertive":"polite";this.shadowRoot.innerHTML="<style>"+Lp+'</style><div role="status" aria-live="'+e+'" aria-atomic="true" part="region"></div>',this._region=this.shadowRoot.querySelector('[role="status"]')}announce(e,{assertive:t=!1}={}){this._region||this.connectedCallback(),this._region.setAttribute("aria-live",t?"assertive":"polite"),this._region.textContent="",requestAnimationFrame(()=>{this._region.textContent=typeof e=="string"?e:""})}static announceGlobal(e,t){let r=document.querySelector("velin-announcer");r||(r=document.createElement("velin-announcer"),document.body.appendChild(r)),r.announce(e,t)}};customElements.define("velin-announcer",Ti);Pa=Ti});var Ba={};g(Ba,{default:()=>Ha});function Rp(i,e){if(!i)return"";if(e==="rot13")return i.replace(/[a-zA-Z]/g,t=>{let r=t<="Z"?65:97;return String.fromCharCode((t.charCodeAt(0)-r+13)%26+r)});try{return atob(i)}catch{return i}}var qa,Ci,Ha,Li=p(()=>{L();qa=`
1141
1167
  :host { display: inline; }
1142
1168
  button {
1143
1169
  font: inherit;
@@ -1157,13 +1183,13 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1157
1183
  border-radius: 2px;
1158
1184
  }
1159
1185
  .revealed { text-decoration: none; user-select: text; }
1160
- `;Ai=class extends HTMLElement{static get observedAttributes(){return["value","obfuscate","label"]}constructor(){super(),this.attachShadow({mode:"open"}),this._revealed=!1}connectedCallback(){this.render()}attributeChangedCallback(){this.isConnected&&this.render()}get email(){let e=this.getAttribute("obfuscate")||"",t=this.getAttribute("value")||"";return e?zu(t,e):t}render(){let e=this.getAttribute("label")||"Show email address",t=this.email,r=b(t);if(this._revealed){this.shadowRoot.innerHTML=`
1161
- <style>${fa}</style>
1162
- <span class="revealed" part="email"><a href="mailto:${ye(t)}">${r}</a></span>
1186
+ `;Ci=class extends HTMLElement{static get observedAttributes(){return["value","obfuscate","label"]}constructor(){super(),this.attachShadow({mode:"open"}),this._revealed=!1}connectedCallback(){this.render()}attributeChangedCallback(){this.isConnected&&this.render()}get email(){let e=this.getAttribute("obfuscate")||"",t=this.getAttribute("value")||"";return e?Rp(t,e):t}render(){let e=this.getAttribute("label")||"Show email address",t=this.email,r=y(t);if(this._revealed){this.shadowRoot.innerHTML=`
1187
+ <style>${qa}</style>
1188
+ <span class="revealed" part="email"><a href="mailto:${we(t)}">${r}</a></span>
1163
1189
  `;return}this.shadowRoot.innerHTML=`
1164
- <style>${fa}</style>
1165
- <button type="button" part="reveal" aria-label="${ye(e)}">${b(e)}</button>
1166
- `,this.shadowRoot.querySelector("button").addEventListener("click",()=>{this._revealed=!0,this.render(),this.dispatchEvent(new CustomEvent("velin-email-reveal",{bubbles:!0,detail:{email:t}}))})}};customElements.get("velin-email")||customElements.define("velin-email",Ai);va=Ai});var ya={};y(ya,{default:()=>ga});function Ce(i){let e=i.getFullYear(),t=String(i.getMonth()+1).padStart(2,"0"),r=String(i.getDate()).padStart(2,"0");return`${e}-${t}-${r}`}function He(i){if(!i)return null;let e=String(i).match(/^(\d{4})-(\d{2})-(\d{2})$/);if(!e)return null;let t=new Date(Number(e[1]),Number(e[2])-1,Number(e[3]));return Number.isNaN(t.getTime())?null:t}var $u,ki,ga,ln=h(()=>{T();$u=`
1190
+ <style>${qa}</style>
1191
+ <button type="button" part="reveal" aria-label="${we(e)}">${y(e)}</button>
1192
+ `,this.shadowRoot.querySelector("button").addEventListener("click",()=>{this._revealed=!0,this.render(),this.dispatchEvent(new CustomEvent("velin-email-reveal",{bubbles:!0,detail:{email:t}}))})}};customElements.get("velin-email")||customElements.define("velin-email",Ci);Ha=Ci});var ja={};g(ja,{default:()=>Ua});function Oe(i){let e=i.getFullYear(),t=String(i.getMonth()+1).padStart(2,"0"),r=String(i.getDate()).padStart(2,"0");return`${e}-${t}-${r}`}function Ke(i){if(!i)return null;let e=String(i).match(/^(\d{4})-(\d{2})-(\d{2})$/);if(!e)return null;let t=new Date(Number(e[1]),Number(e[2])-1,Number(e[3]));return Number.isNaN(t.getTime())?null:t}var Mp,Ri,Ua,_n=p(()=>{L();Mp=`
1167
1193
  :host { display: block; max-inline-size: 100%; }
1168
1194
  .cal {
1169
1195
  box-sizing: border-box;
@@ -1217,19 +1243,62 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1217
1243
  }
1218
1244
  .day:focus-visible { outline: 2px solid var(--velin-color-focus, #2563eb); outline-offset: 1px; }
1219
1245
  .out { color: var(--velin-color-text-muted, #94a3b8); }
1220
- `;ki=class extends HTMLElement{static get observedAttributes(){return["value","min","max","label"]}constructor(){super(),this.attachShadow({mode:"open"}),this._view=new Date,this._view.setDate(1),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=He(this.getAttribute("value"))||new Date;this._view=new Date(e.getFullYear(),e.getMonth(),1),this._render()}attributeChangedCallback(e,t,r){if(!(t===r||!this.shadowRoot?.querySelector(".cal"))){if(e==="value"&&r){let n=He(r);n&&(this._view=new Date(n.getFullYear(),n.getMonth(),1))}this._render()}}get value(){return this.getAttribute("value")||""}set value(e){e?this.setAttribute("value",e):this.removeAttribute("value")}_inRange(e){let t=He(this.getAttribute("min")),r=He(this.getAttribute("max"));return!(t&&e<t||r&&e>r)}_select(e){if(!this._inRange(e))return;let t=Ce(e);this.setAttribute("value",t),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:t,date:e}})),this._render()}_shiftMonth(e){this._view=new Date(this._view.getFullYear(),this._view.getMonth()+e,1),this._render()}_onKey(e){let t=He(this.getAttribute("value"))||new Date,r=new Date(t);switch(e.key){case"ArrowLeft":r.setDate(r.getDate()-1);break;case"ArrowRight":r.setDate(r.getDate()+1);break;case"ArrowUp":r.setDate(r.getDate()-7);break;case"ArrowDown":r.setDate(r.getDate()+7);break;case"Home":r=new Date(r.getFullYear(),r.getMonth(),1);break;case"End":r=new Date(r.getFullYear(),r.getMonth()+1,0);break;case"PageUp":r=new Date(r.getFullYear(),r.getMonth()-1,r.getDate());break;case"PageDown":r=new Date(r.getFullYear(),r.getMonth()+1,r.getDate());break;case"Enter":case" ":e.preventDefault(),this._select(t);return;default:return}e.preventDefault(),this._inRange(r)&&(this._view=new Date(r.getFullYear(),r.getMonth(),1),this.setAttribute("value",Ce(r)),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:Ce(r),date:r}})),this._render(),this.shadowRoot.querySelector(`[data-iso="${Ce(r)}"]`)?.focus())}_render(){let e=b(this.getAttribute("label")||"Choose date"),t=He(this.getAttribute("value")),r=this._view.getFullYear(),n=this._view.getMonth(),o=this._view.toLocaleString(void 0,{month:"long",year:"numeric"}),c=(new Date(r,n,1).getDay()+6)%7,d=new Date(r,n+1,0).getDate(),_=["Mo","Tu","We","Th","Fr","Sa","Su"].map(f=>`<div class="dow" aria-hidden="true">${f}</div>`).join("");for(let f=0;f<c;f+=1){let v=new Date(r,n,-c+f+1);_+=`<button type="button" class="day out" tabindex="-1" data-iso="${Ce(v)}" aria-label="${Ce(v)}">${v.getDate()}</button>`}for(let f=1;f<=d;f+=1){let v=new Date(r,n,f),C=Ce(v),k=t&&Ce(t)===C,A=!this._inRange(v);_+=`<button type="button" class="day" data-iso="${C}" aria-label="${C}" aria-selected="${k?"true":"false"}" aria-disabled="${A?"true":"false"}" tabindex="${k?"0":"-1"}">${f}</button>`}this.shadowRoot.innerHTML=`
1221
- <style>${$u}</style>
1246
+ `;Ri=class extends HTMLElement{static get observedAttributes(){return["value","min","max","label"]}constructor(){super(),this.attachShadow({mode:"open"}),this._view=new Date,this._view.setDate(1),this._onKey=this._onKey.bind(this)}connectedCallback(){let e=Ke(this.getAttribute("value"))||new Date;this._view=new Date(e.getFullYear(),e.getMonth(),1),this._render()}attributeChangedCallback(e,t,r){if(!(t===r||!this.shadowRoot?.querySelector(".cal"))){if(e==="value"&&r){let n=Ke(r);n&&(this._view=new Date(n.getFullYear(),n.getMonth(),1))}this._render()}}get value(){return this.getAttribute("value")||""}set value(e){e?this.setAttribute("value",e):this.removeAttribute("value")}_inRange(e){let t=Ke(this.getAttribute("min")),r=Ke(this.getAttribute("max"));return!(t&&e<t||r&&e>r)}_select(e){if(!this._inRange(e))return;let t=Oe(e);this.setAttribute("value",t),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:t,date:e}})),this._render()}_shiftMonth(e){this._view=new Date(this._view.getFullYear(),this._view.getMonth()+e,1),this._render()}_onKey(e){let t=Ke(this.getAttribute("value"))||new Date,r=new Date(t);switch(e.key){case"ArrowLeft":r.setDate(r.getDate()-1);break;case"ArrowRight":r.setDate(r.getDate()+1);break;case"ArrowUp":r.setDate(r.getDate()-7);break;case"ArrowDown":r.setDate(r.getDate()+7);break;case"Home":r=new Date(r.getFullYear(),r.getMonth(),1);break;case"End":r=new Date(r.getFullYear(),r.getMonth()+1,0);break;case"PageUp":r=new Date(r.getFullYear(),r.getMonth()-1,r.getDate());break;case"PageDown":r=new Date(r.getFullYear(),r.getMonth()+1,r.getDate());break;case"Enter":case" ":e.preventDefault(),this._select(t);return;default:return}e.preventDefault(),this._inRange(r)&&(this._view=new Date(r.getFullYear(),r.getMonth(),1),this.setAttribute("value",Oe(r)),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,detail:{value:Oe(r),date:r}})),this._render(),this.shadowRoot.querySelector(`[data-iso="${Oe(r)}"]`)?.focus())}_render(){let e=y(this.getAttribute("label")||"Choose date"),t=Ke(this.getAttribute("value")),r=this._view.getFullYear(),n=this._view.getMonth(),o=this._view.toLocaleString(void 0,{month:"long",year:"numeric"}),c=(new Date(r,n,1).getDay()+6)%7,u=new Date(r,n+1,0).getDate(),b=["Mo","Tu","We","Th","Fr","Sa","Su"].map(m=>`<div class="dow" aria-hidden="true">${m}</div>`).join("");for(let m=0;m<c;m+=1){let v=new Date(r,n,-c+m+1);b+=`<button type="button" class="day out" tabindex="-1" data-iso="${Oe(v)}" aria-label="${Oe(v)}">${v.getDate()}</button>`}for(let m=1;m<=u;m+=1){let v=new Date(r,n,m),T=Oe(v),k=t&&Oe(t)===T,A=!this._inRange(v);b+=`<button type="button" class="day" data-iso="${T}" aria-label="${T}" aria-selected="${k?"true":"false"}" aria-disabled="${A?"true":"false"}" tabindex="${k?"0":"-1"}">${m}</button>`}this.shadowRoot.innerHTML=`
1247
+ <style>${Mp}</style>
1222
1248
  <div class="cal" role="group" aria-label="${e}">
1223
1249
  <div class="head">
1224
1250
  <button type="button" class="nav" data-nav="-1" aria-label="Previous month">\u2039</button>
1225
- <p class="title" id="cal-title">${b(o)}</p>
1251
+ <p class="title" id="cal-title">${y(o)}</p>
1226
1252
  <button type="button" class="nav" data-nav="1" aria-label="Next month">\u203A</button>
1227
1253
  </div>
1228
- <div class="grid" role="grid" aria-labelledby="cal-title">${_}</div>
1254
+ <div class="grid" role="grid" aria-labelledby="cal-title">${b}</div>
1229
1255
  </div>
1230
- `,this.shadowRoot.querySelectorAll("[data-nav]").forEach(f=>{f.addEventListener("click",()=>this._shiftMonth(Number(f.getAttribute("data-nav"))))}),this.shadowRoot.querySelectorAll(".day").forEach(f=>{f.addEventListener("click",()=>{if(f.getAttribute("aria-disabled")==="true")return;let v=He(f.getAttribute("data-iso"));v&&this._select(v)}),f.addEventListener("keydown",this._onKey)})}};customElements.define("velin-calendar",ki);ga=ki});function H(i,e){let t=[],r=0;for(;r<i.length;){let n=!1;for(let{type:o,re:a}of e){a.lastIndex=r;let c=a.exec(i);if(c&&c.index===r){t.push({type:o,value:c[0]}),r+=c[0].length,n=!0;break}}if(!n){let o=t[t.length-1];o?.type==="plain"?o.value+=i[r]:t.push({type:"plain",value:i[r]}),r+=1}}return t}function Re(i,e,t){let r=[...t,{type:"keyword",re:new RegExp(`\\b(${Object.keys(e).join("|")})\\b`,"y")},{type:"identifier",re:/\b[A-Za-z_$][\w$]*\b/y}];return H(i,r)}var J=h(()=>{});var cn={};y(cn,{default:()=>rt});function rt(i){return Re(i,Fu,Hu)}var Fu,Hu,_t=h(()=>{J();Fu={const:1,let:1,var:1,function:1,return:1,if:1,else:1,for:1,while:1,do:1,switch:1,case:1,break:1,continue:1,new:1,class:1,extends:1,import:1,export:1,from:1,default:1,async:1,await:1,try:1,catch:1,finally:1,throw:1,typeof:1,instanceof:1,in:1,of:1,true:1,false:1,null:1,undefined:1,void:1,this:1},Hu=[{type:"comment",re:/\/\/[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"string",re:/`(?:\\.|[^`\\])*`/y},{type:"number",re:/\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/y},{type:"operator",re:/[+\-*/%=<>!&|^~?:]+/y},{type:"punctuation",re:/[{}[\]();,.]/y}]});var dn={};y(dn,{default:()=>_a});function _a(i){return rt(i).map(e=>e.type==="identifier"&&Pu.has(e.value)?{type:"keyword",value:e.value}:e)}var Pu,un=h(()=>{_t();Pu=new Set(["type","interface","enum","implements","declare","namespace","readonly","public","private","protected","abstract","as","satisfies","keyof"])});var Si={};y(Si,{default:()=>xa});function xa(i){return H(i,qu)}var qu,Ti=h(()=>{J();qu=[{type:"comment",re:/<!--[\s\S]*?-->/y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"tag",re:/<\/?[\w-]+/y},{type:"punctuation",re:/[<>/=]/y},{type:"attr-name",re:/\s[\w-]+(?==)/y},{type:"attr-value",re:/=(?:"[^"]*"|'[^']*'|[^\s>]+)/y}]});var Aa={};y(Aa,{default:()=>wa});function wa(i){return Re(i,Bu,Uu)}var Bu,Uu,Ea=h(()=>{J();Bu={important:1,inherit:1,initial:1,unset:1,revert:1},Uu=[{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"number",re:/#[\da-fA-F]{3,8}\b|\b\d+(?:\.\d+)?(?:%|[a-z]+)?\b/y},{type:"tag",re:/\.[\w-]+|#[\w-]+/y},{type:"attr-name",re:/[\w-]+(?=\s*:)/y},{type:"punctuation",re:/[{}:;,()]/y},{type:"operator",re:/[+\-*/>~]/y}]});var Sa={};y(Sa,{default:()=>ka});function ka(i){return H(i,ju)}var ju,Ta=h(()=>{J();ju=[{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"number",re:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/y},{type:"keyword",re:/\b(true|false|null)\b/y},{type:"punctuation",re:/[{}[\]:,]/y}]});var hn={};y(hn,{default:()=>La});function La(i){return H(i,Ku)}var Ku,pn=h(()=>{J();Ku=[{type:"comment",re:/<!--[\s\S]*?-->/y},{type:"string",re:/```[\s\S]*?```/y},{type:"string",re:/`[^`\n]+`/y},{type:"keyword",re:/#{1,6}\s[^\n]+/y},{type:"tag",re:/\[[^\]]+\]\([^)]+\)/y},{type:"operator",re:/[*_~]/y}]});var Li={};y(Li,{default:()=>Ca});function Ca(i){return Re(i,Wu,Gu)}var Wu,Gu,Ci=h(()=>{J();Wu={if:1,then:1,else:1,fi:1,for:1,do:1,done:1,while:1,case:1,esac:1,function:1,return:1,export:1,local:1},Gu=[{type:"comment",re:/#[^\n]*/y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'[^']*'/y},{type:"number",re:/\b\d+\b/y},{type:"operator",re:/[|&<>]/y},{type:"punctuation",re:/[();]/y}]});var Ma={};y(Ma,{default:()=>Ra});function Ra(i){return H(i,Yu)}var Yu,Ia=h(()=>{J();Yu=[{type:"comment",re:/--[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/'(?:''|[^'])*'/y},{type:"number",re:/\b\d+(?:\.\d+)?\b/y},{type:"keyword",re:/\b(?:SELECT|FROM|WHERE|INSERT|INTO|VALUES|UPDATE|SET|DELETE|JOIN|LEFT|RIGHT|INNER|OUTER|ON|AND|OR|NOT|NULL|AS|ORDER|BY|GROUP|HAVING|LIMIT|CREATE|TABLE|INDEX)\b/yi},{type:"operator",re:/[=<>!]+|,/y},{type:"punctuation",re:/[();]/y}]});var xt={};y(xt,{default:()=>Da});function Da(i){return i?[{type:"plain",value:i}]:[]}var wt=h(()=>{});var Na={};y(Na,{default:()=>Oa});function Oa(i){return Re(i,Vu,Xu)}var Vu,Xu,za=h(()=>{J();Vu={function:1,return:1,if:1,else:1,elseif:1,foreach:1,while:1,class:1,new:1,public:1,private:1,protected:1,static:1,namespace:1,use:1,true:1,false:1,null:1},Xu=[{type:"comment",re:/\/\/[^\n]*/y},{type:"comment",re:/#[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"number",re:/\b\d+(?:\.\d+)?\b/y},{type:"operator",re:/=>|\+\+|--|===|!==|==|!=|<=|>=|->|\?\?|[=+\-*/%.<>!&|^~?:]/y},{type:"punctuation",re:/[{}[\]();,.]/y}]});var Fa={};y(Fa,{default:()=>$a});function $a(i){return H(i,Zu)}var Zu,Ha=h(()=>{J();Zu=[{type:"comment",re:/{{--[\s\S]*?--}}/y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"keyword",re:/@(?:vite|csrf|auth|guest|section|endsection|yield|extends|include|push|endpush|stack|once|endonce|forelse|empty|endempty|can|endcan|cannot|endcannot)\b/y},{type:"operator",re:/{{|}}|{!!|!!}|@[{}]/y},{type:"punctuation",re:/[()[\],]/y}]});var mn={};y(mn,{default:()=>Pa});function Pa(i){return H(i,Ju)}var Ju,fn=h(()=>{J();Ju=[{type:"comment",re:/#[^\n]*/y},{type:"string",re:/[rbfu]{0,2}"""[\s\S]*?"""/y},{type:"string",re:/[rbfu]{0,2}'''[\s\S]*?'''/y},{type:"string",re:/[rbfu]{0,2}"(?:\\.|[^"\\\n])*"/y},{type:"string",re:/[rbfu]{0,2}'(?:\\.|[^'\\\n])*'/y},{type:"number",re:/\b0[xX][\da-fA-F_]+\b|\b\d[\d_]*(?:\.[\d_]+)?(?:[eE][+-]?\d+)?j?\b/y},{type:"keyword",re:/\b(?:and|as|assert|async|await|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|raise|return|try|while|with|yield)\b/y},{type:"builtin",re:/\b(?:None|True|False|self|cls|abs|all|any|bool|bytes|dict|dir|enumerate|filter|float|format|frozenset|getattr|hasattr|int|isinstance|issubclass|iter|len|list|map|max|min|next|object|open|print|range|repr|reversed|round|set|setattr|sorted|str|sum|super|tuple|type|zip)\b/y},{type:"operator",re:/->|:=|\*\*=?|\/\/=?|<<=?|>>=?|[-+*/%&|^~<>!=]=?/y},{type:"punctuation",re:/[[\]{}(),:;.@]/y},{type:"identifier",re:/\b[A-Za-z_]\w*\b/y}]});var vn={};y(vn,{default:()=>qa});function qa(i){return H(i,Qu)}var Qu,bn=h(()=>{J();Qu=[{type:"comment",re:/#[^\n]*/y},{type:"punctuation",re:/^(?:---|\.\.\.)$/my},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:''|[^'])*'/y},{type:"attr-name",re:/^[ \t]*-?[ \t]*[\w.$-]+(?=[ \t]*:(?:[ \t]|$))/my},{type:"punctuation",re:/^[ \t]*-(?=[ \t]|$)/my},{type:"keyword",re:/\b(?:true|false|null|yes|no|on|off|~)\b/yi},{type:"number",re:/\b-?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b/y},{type:"operator",re:/[&*]\w+|![\w/!-]*|[|>][+-]?\d*(?=\s*$)/my},{type:"punctuation",re:/[:,[\]{}]/y}]});var gn={};y(gn,{default:()=>Ba});function Ba(i){return H(i,eh)}var eh,yn=h(()=>{J();eh=[{type:"comment",re:/\/\/[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/`[^`]*`/y},{type:"string",re:/"(?:\\.|[^"\\\n])*"/y},{type:"string",re:/'(?:\\.|[^'\\\n])*'/y},{type:"number",re:/\b0[xX][\da-fA-F_]+\b|\b\d[\d_]*(?:\.[\d_]*)?(?:[eE][+-]?\d+)?i?\b/y},{type:"keyword",re:/\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go|goto|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/y},{type:"builtin",re:/\b(?:append|bool|byte|cap|clear|close|complex|complex64|complex128|copy|delete|error|float32|float64|imag|int|int8|int16|int32|int64|len|make|max|min|new|nil|panic|print|println|real|recover|rune|string|true|false|iota|uint|uint8|uint16|uint32|uint64|uintptr|any)\b/y},{type:"operator",re:/:=|\.\.\.|&&|\|\||<-|\+\+|--|<<=?|>>=?|&\^=?|[-+*/%&|^<>!=]=?|~/y},{type:"punctuation",re:/[[\]{}(),;:.]/y},{type:"identifier",re:/\b[A-Za-z_]\w*\b/y}]});var _n={};y(_n,{default:()=>Ua});function Ua(i){return H(i,th)}var th,xn=h(()=>{J();th=[{type:"comment",re:/\/\/\/?[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/b?r(#*)"[\s\S]*?"\1/y},{type:"string",re:/b?"(?:\\.|[^"\\])*"/y},{type:"string",re:/b?'(?:\\.|[^'\\])'/y},{type:"builtin",re:/#!?\[[^\]]*\]/y},{type:"number",re:/\b0[xXbo][\da-fA-F_]+\b|\b\d[\d_]*(?:\.[\d_]+)?(?:[eE][+-]?\d+)?(?:[iuf](?:8|16|32|64|128|size))?\b/y},{type:"keyword",re:/\b(?:as|async|await|break|const|continue|crate|dyn|else|enum|extern|fn|for|if|impl|in|let|loop|match|mod|move|mut|pub|ref|return|self|Self|static|struct|super|trait|type|unsafe|use|where|while)\b/y},{type:"builtin",re:/\b(?:bool|char|f32|f64|i8|i16|i32|i64|i128|isize|str|u8|u16|u32|u64|u128|usize|String|Vec|Option|Result|Some|None|Ok|Err|Box|Rc|Arc|true|false)\b/y},{type:"operator",re:/'[a-z_]\w*\b/y},{type:"operator",re:/=>|->|::|\.\.=?|&&|\|\||<<=?|>>=?|[-+*/%&|^<>!=]=?|[?@]/y},{type:"punctuation",re:/[[\]{}(),;:.#]/y},{type:"identifier",re:/\b[A-Za-z_]\w*!?\b/y}]});function _e(i){let e=(i||"").trim().toLowerCase();return e?e.startsWith("language-")?_e(e.slice(9)):{javascript:"js",jsx:"js",typescript:"ts",tsx:"ts",markup:"html",xml:"html",svg:"html",bash:"shell",sh:"shell",zsh:"shell",md:"markdown",plaintext:"text","plain-text":"text",yml:"yaml",toml:"text",ini:"text",php8:"php",py:"python",python3:"python",golang:"go",rs:"rust"}[e]||e:""}function ot(i,e){nt.set(_e(i),e)}function At(i){return nt.get(_e(i))}async function Me(i){let e=_e(i);if(!e)return;if(nt.has(e))return nt.get(e);if(Ri.has(e))return Ri.get(e);let t=ja[e];if(!t)return;let r=t().then(n=>{let o=n.default;return nt.set(e,o),Ri.delete(e),o});return Ri.set(e,r),r}function Mi(){return[...new Set([...nt.keys(),...Object.keys(ja)])]}var nt,Ri,ja,Ii=h(()=>{_t();nt=new Map,Ri=new Map,ja={js:()=>Promise.resolve().then(()=>(_t(),cn)),javascript:()=>Promise.resolve().then(()=>(_t(),cn)),ts:()=>Promise.resolve().then(()=>(un(),dn)),typescript:()=>Promise.resolve().then(()=>(un(),dn)),html:()=>Promise.resolve().then(()=>(Ti(),Si)),xml:()=>Promise.resolve().then(()=>(Ti(),Si)),css:()=>Promise.resolve().then(()=>(Ea(),Aa)),json:()=>Promise.resolve().then(()=>(Ta(),Sa)),md:()=>Promise.resolve().then(()=>(pn(),hn)),markdown:()=>Promise.resolve().then(()=>(pn(),hn)),shell:()=>Promise.resolve().then(()=>(Ci(),Li)),bash:()=>Promise.resolve().then(()=>(Ci(),Li)),sh:()=>Promise.resolve().then(()=>(Ci(),Li)),sql:()=>Promise.resolve().then(()=>(Ia(),Ma)),text:()=>Promise.resolve().then(()=>(wt(),xt)),plain:()=>Promise.resolve().then(()=>(wt(),xt)),txt:()=>Promise.resolve().then(()=>(wt(),xt)),markup:()=>Promise.resolve().then(()=>(Ti(),Si)),console:()=>Promise.resolve().then(()=>(wt(),xt)),php:()=>Promise.resolve().then(()=>(za(),Na)),blade:()=>Promise.resolve().then(()=>(Ha(),Fa)),python:()=>Promise.resolve().then(()=>(fn(),mn)),py:()=>Promise.resolve().then(()=>(fn(),mn)),yaml:()=>Promise.resolve().then(()=>(bn(),vn)),yml:()=>Promise.resolve().then(()=>(bn(),vn)),go:()=>Promise.resolve().then(()=>(yn(),gn)),golang:()=>Promise.resolve().then(()=>(yn(),gn)),rust:()=>Promise.resolve().then(()=>(xn(),_n)),rs:()=>Promise.resolve().then(()=>(xn(),_n))};ot("js",rt)});function wn(i){return i.replace(/[&<>"]/g,e=>ih[e]||e)}function Di(i){return i.map(e=>{let t=e.type==="plain"?"":e.type;return`<span class="${t?`velin-token velin-token--${t}`:"velin-token"}">${wn(e.value)}</span>`}).join("")}function Oi(i,e){i.innerHTML=Di(e),i.classList.add("velin-syntax-ready"),i.closest("pre")?.classList.add("velin-syntax-ready"),i.closest(".velin-code-block")?.classList.add("velin-syntax-ready")}var ih,An=h(()=>{ih={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"}});function En(i){let e=i.tagName==="PRE"?i:i.closest("pre"),t=i.tagName==="CODE"?i:e?.querySelector("code")||i,r=e||t,n=r.getAttribute("language")||r.getAttribute("data-language")||r.getAttribute("velin-code")||"";if(n&&n!=="true")return _e(n);let a=(t?.className||"").match(/\blanguage-([\w-]+)\b/i);return a?_e(a[1]):""}function Ni(i){let t=(i.tagName==="CODE"?i:i.querySelector("code"))||i;if(t.dataset.velinSource!=null)return t.dataset.velinSource;let r=t.innerHTML;if(r&&/&lt;|&gt;|&amp;/.test(r)){let n=document.createElement("textarea");if(n.innerHTML=r.replace(/<br\s*\/?>/gi,`
1231
- `),n.value)return n.value}return t.textContent||""}async function de(i,e={}){if(i.dataset.velinHighlighted==="1")return;let t=i.tagName==="PRE"?i:i.closest("pre")||i,r=i.tagName==="CODE"?i:t.querySelector("code")||document.createElement("code");if(!t.querySelector("code")&&r!==i){let c=Ni(t);r.textContent=c,t.textContent="",t.appendChild(r)}r.dataset.velinSource||(r.dataset.velinSource=r.textContent||"");let n=e.language||En(t);if(!n)return;t.classList.add("velin-syntax-pending"),r.classList.add("velin-syntax-pending");let o=e.lexer||At(n);o||(o=await Me(n)),o||(o=At("text")||await Me("text"));let a=r.dataset.velinSource||Ni(r)||"";if(!o){r.textContent=a,t.classList.remove("velin-syntax-pending"),r.classList.remove("velin-syntax-pending"),t.classList.add("velin-syntax-ready"),r.classList.add("velin-syntax-ready");return}try{let c=o(a);Oi(r,c),r.dataset.velinHighlighted="1",t.dataset.velinHighlighted="1"}catch(c){console.warn("[velin-highlight]",n,c),r.textContent=a}t.classList.remove("velin-syntax-pending"),r.classList.remove("velin-syntax-pending"),t.classList.add("velin-syntax-ready"),r.classList.add("velin-syntax-ready")}async function Et(i=document){let e=i.querySelectorAll('pre[velin-code], pre[data-language], pre code[class*="language-"], [velin-code-block] pre, .velin-doc-example__code pre');await Promise.all([...e].map(t=>de(t)))}var zi=h(()=>{Ii();An()});function Tn(i){kn.add(i),Sn||(Sn=requestAnimationFrame(()=>{Sn=0;let e=[...kn];kn.clear(),e.forEach(t=>t())}))}function rh(i={}){return typeof IntersectionObserver>"u"?null:(Pe||(Pe=new IntersectionObserver(e=>{for(let t of e){if(!t.isIntersecting)continue;let r=Ln.get(t.target);r&&Tn(()=>r(t.target)),t.target.dataset.velinOnce!=="false"&&Pe.unobserve(t.target)}},{threshold:i.threshold??.1,rootMargin:i.rootMargin??"0px 0px -40px 0px"})),Pe)}function kt(i,e,t={}){let r=typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches,n=i.closest('[data-velin-motion="off"]')||i.dataset.velinMotion==="off";if(r||n)return Tn(()=>e(i,!0)),()=>{};let o=rh(t);return o?(Ln.set(i,e),o.observe(i),()=>{Ln.delete(i),o.unobserve(i)}):(Tn(()=>e(i,!0)),()=>{})}function Ka(){Pe&&(Pe.disconnect(),Pe=null)}var kn,Sn,Pe,Ln,Cn=h(()=>{kn=new Set,Sn=0;Pe=null,Ln=new WeakMap});function Ie(i=document,e={}){if(typeof document>"u")return()=>{};let t=e.selector||["pre[velin-code]","pre[language]","pre[data-language]",'pre code[class*="language-"]',"velin-code-block pre",".velin-doc-example__code pre"].join(","),r=i.querySelectorAll(t),n=[],o=typeof matchMedia<"u"&&matchMedia("(prefers-reduced-motion: reduce)").matches;for(let a of r){let c=a.tagName==="PRE"?a:a.closest("pre");if(!c||c.dataset.velinObserve==="1")continue;if(c.dataset.velinObserve="1",o||e.immediate){de(c);continue}c.classList.add("velin-syntax-pending");let d=kt(c,async m=>{await de(m)});n.push(d)}return()=>n.forEach(a=>a())}var St,Rn=h(()=>{zi();Cn();St=Ie});var Mn={};y(Mn,{applyHighlight:()=>Oi,escapeHtml:()=>wn,getLanguage:()=>At,getSourceText:()=>Ni,highlightAll:()=>Et,highlightElement:()=>de,initHighlight:()=>Ie,lazyLoadLanguage:()=>Me,listLanguages:()=>Mi,normalizeLanguage:()=>_e,observeCodeBlocks:()=>St,registerLanguage:()=>ot,renderTokens:()=>Di,resolveLanguage:()=>En,velinSyntax:()=>Wa});var Wa,Tt=h(()=>{Ii();An();zi();Rn();zi();Rn();Ii();Wa={highlightElement:de,highlightAll:Et,initHighlight:Ie,observeCodeBlocks:St,registerLanguage:ot,lazyLoadLanguage:Me,listLanguages:Mi}});var Ya={};y(Ya,{default:()=>Ga});function nh(i){let e=new Set;if(!i)return e;for(let t of i.split(",")){let r=t.trim();if(r)if(r.includes("-")){let[n,o]=r.split("-").map(a=>parseInt(a,10));if(!Number.isNaN(n)&&!Number.isNaN(o))for(let a=Math.min(n,o);a<=Math.max(n,o);a+=1)e.add(a)}else{let n=parseInt(r,10);Number.isNaN(n)||e.add(n)}}return e}var $i,Ga,In=h(()=>{Tt();$i=class extends HTMLElement{static get observedAttributes(){return["language","highlight","line-numbers","collapsed"]}connectedCallback(){this._built||(this._built=!0,this.classList.add("velin-code-block"),this._render(),this._setupHighlight())}attributeChangedCallback(){this._built&&(this._render(),this._setupHighlight())}_render(){let e=this.getAttribute("language")||"",t=this.hasAttribute("line-numbers"),r=this.hasAttribute("collapsed"),n=nh(this.getAttribute("highlight")||""),o=this.textContent.trim();this.textContent="";let a=document.createElement("div");a.className="velin-code-block__toolbar",a.innerHTML="";let c=document.createElement("velin-copy");c.setAttribute("value",o),c.setAttribute("label","Copy"),a.appendChild(c);let d=`velin-code-panel-${Math.random().toString(36).slice(2,9)}`,m=document.createElement("div");if(m.id=d,m.className=t?"velin-code-block__gutter":"",r){let v=document.createElement("button");v.type="button",v.className="velin-btn velin-btn--sm velin-btn--ghost",v.textContent="Expand",v.setAttribute("aria-expanded","false"),v.setAttribute("aria-controls",d),v.setAttribute("aria-label","Expand code block"),v.addEventListener("click",()=>{this.hasAttribute("data-collapsed")?(this.removeAttribute("data-collapsed"),v.textContent="Collapse",v.setAttribute("aria-expanded","true"),v.setAttribute("aria-label","Collapse code block")):(this.setAttribute("data-collapsed",""),v.textContent="Expand",v.setAttribute("aria-expanded","false"),v.setAttribute("aria-label","Expand code block"))}),this.setAttribute("data-collapsed",""),a.appendChild(v)}if(t){let v=document.createElement("div");v.className="velin-code-block__line-numbers";let k=o.split(`
1232
- `).length;v.textContent="";for(let A=0;A<k;A+=1){let S=A+1,j=document.createElement("span");n.has(S)&&(j.className="velin-code-block__line--highlight"),j.textContent=String(S),v.appendChild(j)}m.appendChild(v)}let _=document.createElement("pre");e&&(_.setAttribute("language",e),_.dataset.language=e);let f=document.createElement("code");e&&(f.className=`language-${e}`),f.textContent=o,_.appendChild(f),m.appendChild(_),this.appendChild(a),this.appendChild(m),this._pre=_}async _setupHighlight(){if(!this._pre)return;delete this._pre.dataset.velinHighlighted,delete this._pre.dataset.velinObserve,typeof matchMedia<"u"&&matchMedia("(prefers-reduced-motion: reduce)").matches?await de(this._pre):Ie(this,{root:this})}};customElements.define("velin-code-block",$i);Ga=$i});var Xa={};y(Xa,{default:()=>Va});function sh(i){let e=(i.getAttribute("format")||"number").toLowerCase(),t=i.getAttribute("locale")||void 0,r=i.getAttribute("decimals"),n=r!=null?Math.max(0,Number.parseInt(r,10)||0):null,o={};n!=null&&(o.minimumFractionDigits=n,o.maximumFractionDigits=n),e==="currency"?(o.style="currency",o.currency=i.getAttribute("currency")||"EUR"):e==="percent"&&(o.style="percent");try{return new Intl.NumberFormat(t,o)}catch{return new Intl.NumberFormat(void 0,o)}}var oh,Fi,Va,Hi=h(()=>{oh=i=>i===1?1:1-Math.pow(2,-10*i);Fi=class extends HTMLElement{static get observedAttributes(){return["from","to","duration","decimals","prefix","suffix","format","currency","locale"]}constructor(){super(),this._rafId=0,this._started=!1,this._observer=null}connectedCallback(){this.setAttribute("role","status"),this.setAttribute("aria-live","polite"),this.setAttribute("aria-atomic","true"),this._render(this._fromValue()),this.getAttribute("autostart")!=="false"&&this._scheduleStart()}disconnectedCallback(){cancelAnimationFrame(this._rafId),this._observer?.disconnect()}attributeChangedCallback(e){this.isConnected&&(e==="to"||e==="from"?this.start():this._render(this._lastValue??this._toValue()))}_fromValue(){return Number.parseFloat(this.getAttribute("from"))||0}_toValue(){return Number.parseFloat(this.getAttribute("to"))||0}_duration(){return Math.max(0,Number.parseFloat(this.getAttribute("duration"))||900)}_scheduleStart(){if(!this._started){if(typeof IntersectionObserver>"u"){this.start();return}this._observer=new IntersectionObserver(e=>{for(let t of e)if(t.isIntersecting){this.start(),this._observer.disconnect(),this._observer=null;break}},{threshold:.2}),this._observer.observe(this)}}start(){cancelAnimationFrame(this._rafId),this._started=!0;let e=this._fromValue(),t=this._toValue(),r=this._duration();if(typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches||r===0){this._render(t);return}let o=performance.now(),a=c=>{let d=Math.min(1,(c-o)/r),m=e+(t-e)*oh(d);this._render(m),d<1&&(this._rafId=requestAnimationFrame(a))};this._rafId=requestAnimationFrame(a)}reset(){cancelAnimationFrame(this._rafId),this._started=!1,this._render(this._fromValue())}_render(e){this._lastValue=e;let t=sh(this),r=this.getAttribute("prefix")||"",n=this.getAttribute("suffix")||"";this.textContent=`${r}${t.format(e)}${n}`}};typeof customElements<"u"&&!customElements.get("velin-counter")&&customElements.define("velin-counter",Fi);Va=Fi});var el={};y(el,{default:()=>Qa});function Ja(i,e){let r=(i?.dataset?.sortValue??i?.textContent??"").trim();if(e==="number"){let n=Number.parseFloat(r.replace(/[^\d.,-]/g,"").replace(",","."));return Number.isNaN(n)?Number.NEGATIVE_INFINITY:n}if(e==="date"){let n=Date.parse(r);return Number.isNaN(n)?Number.NEGATIVE_INFINITY:n}return r.toLowerCase()}var ah,Za,Pi,Qa,Dn=h(()=>{Le();ah=new Set(["text","number","date"]),Za=!1;Pi=class extends HTMLElement{static get observedAttributes(){return["page-size","filter-input","empty-text","label","editable"]}constructor(){super(),this._table=null,this._page=1,this._query="",this._sortIndex=-1,this._sortDirection="ascending",this._filterEl=null,this._pagination=null,this._emptyRow=null,this._filterTimer=null,this._onFilterInput=this._onFilterInput.bind(this)}connectedCallback(){this.classList.add("velin-data-table"),requestAnimationFrame(()=>this._init())}disconnectedCallback(){this._filterEl&&this._filterEl.removeEventListener("input",this._onFilterInput),this._filterTimer&&clearTimeout(this._filterTimer)}attributeChangedCallback(e,t,r){t===r||!this._table||(e==="page-size"?(this._page=1,this._render()):e==="filter-input"?this._bindFilterInput():e==="label"&&this._ensureAccessibleName())}get rows(){let e=this._table?.tBodies?.[0];return e?[...e.rows].filter(t=>t!==this._emptyRow):[]}get matchingRows(){return this.rows.filter(e=>!e.dataset.velinFiltered)}get visibleRows(){return this.matchingRows.filter(e=>!e.hidden)}get page(){return this._page}get pageSize(){let e=Number.parseInt(this.getAttribute("page-size")||"",10);return Number.isFinite(e)&&e>0?e:0}get pageCount(){let e=this.pageSize;return e?Math.max(1,Math.ceil(this.matchingRows.length/e)):1}sort(e,t){let n=this._headers()[e];if(!n)return;let o=this._sortType(n);if(o==="none")return;this._sortDirection=t||(this._sortIndex===e&&this._sortDirection==="ascending"?"descending":"ascending"),this._sortIndex=e;let a=this._sortDirection==="ascending"?1:-1,c=this._table.tBodies[0],d=this.rows.slice().sort((_,f)=>{let v=Ja(_.cells[e],o),C=Ja(f.cells[e],o);return v<C?-1*a:v>C?1*a:0});for(let _ of d)c.appendChild(_);this._syncSortState(),this._page=1,this._render();let m=n.dataset.sortLabel||n.textContent.trim();ne(`${m} sorted ${this._sortDirection}`),this.dispatchEvent(new CustomEvent("velin-data-table-sort",{bubbles:!0,detail:{index:e,direction:this._sortDirection,column:m}}))}filter(e){this._query=String(e||"").trim().toLowerCase();for(let r of this.rows)!this._query||this._rowText(r).includes(this._query)?delete r.dataset.velinFiltered:r.dataset.velinFiltered="true";this._page=1,this._render();let t=this.matchingRows.length;ne(t===1?"1 row matches":`${t} rows match`),this.dispatchEvent(new CustomEvent("velin-data-table-filter",{bubbles:!0,detail:{query:this._query,count:t}}))}goToPage(e){let t=Math.min(Math.max(1,Math.trunc(e)||1),this.pageCount);t!==this._page&&(this._page=t,this._render(),ne(`Page ${this._page} of ${this.pageCount}`),this.dispatchEvent(new CustomEvent("velin-data-table-page",{bubbles:!0,detail:{page:this._page,pageCount:this.pageCount}})))}_init(){this._table=this.querySelector("table"),!(!this._table||!this._table.tBodies.length)&&(this._ensureAccessibleName(),this._setupSorting(),this._setupEditable(),this._bindFilterInput(),this._render())}_headers(){let e=this._table.tHead?.rows?.[0];return e?[...e.cells]:[]}_sortType(e){let t=(e.dataset.sort||"").toLowerCase();return t==="none"?"none":ah.has(t)?t:this.hasAttribute("sortable")?"text":"none"}_ensureAccessibleName(){let e=this._table;if(!e)return;let t=this.getAttribute("label"),r=e.caption?.textContent.trim()||e.getAttribute("aria-label")?.trim()||e.getAttribute("aria-labelledby")?.trim();if(!r&&t){e.setAttribute("aria-label",t);return}!r&&!Za&&(Za=!0,console.warn("[velinstyle] <velin-data-table> needs a <caption>, aria-label, or a label attribute."))}_setupSorting(){this._headers().forEach((e,t)=>{if(this._sortType(e)==="none"||e.querySelector(".velin-data-table__sort"))return;let r=e.textContent.trim();e.dataset.sortLabel=r,e.setAttribute("aria-sort","none"),e.classList.add("velin-data-table__th");let n=document.createElement("button");n.type="button",n.className="velin-data-table__sort",n.textContent=r;let o=document.createElement("span");o.className="velin-data-table__sort-icon",o.setAttribute("aria-hidden","true"),n.appendChild(o),n.addEventListener("click",()=>this.sort(t)),e.textContent="",e.appendChild(n)})}_setupEditable(){if(!this.hasAttribute("editable")&&!this.querySelector("[data-editable]"))return;let e=this._table.tBodies[0];if(!(!e||e.dataset.velinEditBound)){e.dataset.velinEditBound="true",e.addEventListener("dblclick",t=>{let r=t.target.closest("td");!r||!e.contains(r)||!this.hasAttribute("editable")&&!r.hasAttribute("data-editable")||this._beginEdit(r)}),e.addEventListener("keydown",t=>{let r=t.target.closest("td");if(!(!r||t.target!==r)&&(t.key==="Enter"||t.key==="F2")){if(!this.hasAttribute("editable")&&!r.hasAttribute("data-editable"))return;t.preventDefault(),this._beginEdit(r)}});for(let t of e.querySelectorAll("td[data-editable], td"))!this.hasAttribute("editable")&&!t.hasAttribute("data-editable")||t.hasAttribute("tabindex")||t.setAttribute("tabindex","0")}}_beginEdit(e){if(e.querySelector("input"))return;let t=e.textContent.trim(),r=document.createElement("input");r.className="velin-input velin-data-table__edit",r.value=t,r.setAttribute("aria-label","Edit cell"),e.textContent="",e.appendChild(r),r.focus(),r.select();let n=o=>{let a=o?r.value.trim():t;e.textContent=a,o&&a!==t&&(this.dispatchEvent(new CustomEvent("velin-data-table-edit",{bubbles:!0,detail:{cell:e,row:e.parentElement,previous:t,value:a,columnIndex:e.cellIndex}})),ne("Cell updated"))};r.addEventListener("keydown",o=>{o.key==="Enter"?(o.preventDefault(),n(!0)):o.key==="Escape"&&(o.preventDefault(),n(!1))}),r.addEventListener("blur",()=>n(!0))}_syncSortState(){this._headers().forEach((e,t)=>{if(this._sortType(e)==="none")return;let r=t===this._sortIndex;e.setAttribute("aria-sort",r?this._sortDirection:"none"),e.querySelector(".velin-data-table__sort")?.classList.toggle("velin-data-table__sort--active",r)})}_bindFilterInput(){this._filterEl&&this._filterEl.removeEventListener("input",this._onFilterInput);let e=this.getAttribute("filter-input");this._filterEl=e?document.querySelector(e):null,this._filterEl&&this._filterEl.addEventListener("input",this._onFilterInput)}_onFilterInput(e){this._filterTimer&&clearTimeout(this._filterTimer);let t=e.target.value;this._filterTimer=setTimeout(()=>this.filter(t),150)}_rowText(e){let t=[...e.cells].filter(n=>n.hasAttribute("data-filter"));return(t.length?t:[...e.cells]).map(n=>n.textContent||"").join(" ").toLowerCase()}_render(){let e=this.pageSize;this._page=Math.min(this._page,this.pageCount);let t=this.matchingRows,r=e?(this._page-1)*e:0,n=e?r+e:t.length;for(let o of this.rows){let a=t.indexOf(o);o.hidden=a===-1||a<r||a>=n}this._renderEmptyState(t.length===0),this._renderPagination()}_renderEmptyState(e){if(!e){this._emptyRow?.remove(),this._emptyRow=null;return}if(this._emptyRow?.isConnected)return;let t=this._headers().length||1,r=document.createElement("tr");r.className="velin-data-table__empty";let n=document.createElement("td");n.colSpan=t,n.textContent=this.getAttribute("empty-text")||"No matching rows",r.appendChild(n),this._table.tBodies[0].appendChild(r),this._emptyRow=r}_renderPagination(){if(!this.pageSize||this.pageCount<=1){this._pagination?.remove(),this._pagination=null;return}if(!this._pagination?.isConnected){let n=document.createElement("nav");n.className="velin-data-table__pagination",n.setAttribute("aria-label",this.getAttribute("pagination-label")||"Table pagination");let o=document.createElement("button");o.type="button",o.className="velin-btn velin-btn--outline velin-btn--sm",o.dataset.velinPage="previous",o.textContent=this.getAttribute("previous-text")||"Previous",o.addEventListener("click",()=>this.goToPage(this._page-1));let a=document.createElement("p");a.className="velin-data-table__page-status",a.dataset.velinPage="status";let c=document.createElement("button");c.type="button",c.className="velin-btn velin-btn--outline velin-btn--sm",c.dataset.velinPage="next",c.textContent=this.getAttribute("next-text")||"Next",c.addEventListener("click",()=>this.goToPage(this._page+1)),n.append(o,a,c),this.appendChild(n),this._pagination=n}let e=this._pagination.querySelector('[data-velin-page="status"]');e&&(e.textContent=`Page ${this._page} of ${this.pageCount}`);let t=this._pagination.querySelector('[data-velin-page="previous"]'),r=this._pagination.querySelector('[data-velin-page="next"]');t&&(t.disabled=this._page<=1),r&&(r.disabled=this._page>=this.pageCount)}};customElements.define("velin-data-table",Pi);Qa=Pi});var il={};y(il,{default:()=>tl});var lh,qi,tl,On=h(()=>{T();lh=`
1256
+ `,this.shadowRoot.querySelectorAll("[data-nav]").forEach(m=>{m.addEventListener("click",()=>this._shiftMonth(Number(m.getAttribute("data-nav"))))}),this.shadowRoot.querySelectorAll(".day").forEach(m=>{m.addEventListener("click",()=>{if(m.getAttribute("aria-disabled")==="true")return;let v=Ke(m.getAttribute("data-iso"));v&&this._select(v)}),m.addEventListener("keydown",this._onKey)})}};customElements.define("velin-calendar",Ri);Ua=Ri});function F(i,e){let t=[],r=0;for(;r<i.length;){let n=!1;for(let{type:o,re:a}of e){a.lastIndex=r;let c=a.exec(i);if(c&&c.index===r){t.push({type:o,value:c[0]}),r+=c[0].length,n=!0;break}}if(!n){let o=t[t.length-1];o?.type==="plain"?o.value+=i[r]:t.push({type:"plain",value:i[r]}),r+=1}}return t}function Ne(i,e,t){let r=[...t,{type:"keyword",re:new RegExp(`\\b(${Object.keys(e).join("|")})\\b`,"y")},{type:"identifier",re:/\b[A-Za-z_$][\w$]*\b/y}];return F(i,r)}var ee=p(()=>{});var wn={};g(wn,{default:()=>lt});function lt(i){return Ne(i,Ip,Dp)}var Ip,Dp,St=p(()=>{ee();Ip={const:1,let:1,var:1,function:1,return:1,if:1,else:1,for:1,while:1,do:1,switch:1,case:1,break:1,continue:1,new:1,class:1,extends:1,import:1,export:1,from:1,default:1,async:1,await:1,try:1,catch:1,finally:1,throw:1,typeof:1,instanceof:1,in:1,of:1,true:1,false:1,null:1,undefined:1,void:1,this:1},Dp=[{type:"comment",re:/\/\/[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"string",re:/`(?:\\.|[^`\\])*`/y},{type:"number",re:/\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/y},{type:"operator",re:/[+\-*/%=<>!&|^~?:]+/y},{type:"punctuation",re:/[{}[\]();,.]/y}]});var xn={};g(xn,{default:()=>Ka});function Ka(i){return lt(i).map(e=>e.type==="identifier"&&Op.has(e.value)?{type:"keyword",value:e.value}:e)}var Op,An=p(()=>{St();Op=new Set(["type","interface","enum","implements","declare","namespace","readonly","public","private","protected","abstract","as","satisfies","keyof"])});var Mi={};g(Mi,{default:()=>Ga});function Ga(i){return F(i,Np)}var Np,Ii=p(()=>{ee();Np=[{type:"comment",re:/<!--[\s\S]*?-->/y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"tag",re:/<\/?[\w-]+/y},{type:"punctuation",re:/[<>/=]/y},{type:"attr-name",re:/\s[\w-]+(?==)/y},{type:"attr-value",re:/=(?:"[^"]*"|'[^']*'|[^\s>]+)/y}]});var Wa={};g(Wa,{default:()=>Va});function Va(i){return Ne(i,zp,$p)}var zp,$p,Ya=p(()=>{ee();zp={important:1,inherit:1,initial:1,unset:1,revert:1},$p=[{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"number",re:/#[\da-fA-F]{3,8}\b|\b\d+(?:\.\d+)?(?:%|[a-z]+)?\b/y},{type:"tag",re:/\.[\w-]+|#[\w-]+/y},{type:"attr-name",re:/[\w-]+(?=\s*:)/y},{type:"punctuation",re:/[{}:;,()]/y},{type:"operator",re:/[+\-*/>~]/y}]});var Za={};g(Za,{default:()=>Xa});function Xa(i){return F(i,Pp)}var Pp,Ja=p(()=>{ee();Pp=[{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"number",re:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/y},{type:"keyword",re:/\b(true|false|null)\b/y},{type:"punctuation",re:/[{}[\]:,]/y}]});var En={};g(En,{default:()=>Qa});function Qa(i){return F(i,Fp)}var Fp,kn=p(()=>{ee();Fp=[{type:"comment",re:/<!--[\s\S]*?-->/y},{type:"string",re:/```[\s\S]*?```/y},{type:"string",re:/`[^`\n]+`/y},{type:"keyword",re:/#{1,6}\s[^\n]+/y},{type:"tag",re:/\[[^\]]+\]\([^)]+\)/y},{type:"operator",re:/[*_~]/y}]});var Di={};g(Di,{default:()=>el});function el(i){return Ne(i,qp,Hp)}var qp,Hp,Oi=p(()=>{ee();qp={if:1,then:1,else:1,fi:1,for:1,do:1,done:1,while:1,case:1,esac:1,function:1,return:1,export:1,local:1},Hp=[{type:"comment",re:/#[^\n]*/y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'[^']*'/y},{type:"number",re:/\b\d+\b/y},{type:"operator",re:/[|&<>]/y},{type:"punctuation",re:/[();]/y}]});var il={};g(il,{default:()=>tl});function tl(i){return F(i,Bp)}var Bp,rl=p(()=>{ee();Bp=[{type:"comment",re:/--[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/'(?:''|[^'])*'/y},{type:"number",re:/\b\d+(?:\.\d+)?\b/y},{type:"keyword",re:/\b(?:SELECT|FROM|WHERE|INSERT|INTO|VALUES|UPDATE|SET|DELETE|JOIN|LEFT|RIGHT|INNER|OUTER|ON|AND|OR|NOT|NULL|AS|ORDER|BY|GROUP|HAVING|LIMIT|CREATE|TABLE|INDEX)\b/yi},{type:"operator",re:/[=<>!]+|,/y},{type:"punctuation",re:/[();]/y}]});var Tt={};g(Tt,{default:()=>nl});function nl(i){return i?[{type:"plain",value:i}]:[]}var Ct=p(()=>{});var sl={};g(sl,{default:()=>ol});function ol(i){return Ne(i,Up,jp)}var Up,jp,al=p(()=>{ee();Up={function:1,return:1,if:1,else:1,elseif:1,foreach:1,while:1,class:1,new:1,public:1,private:1,protected:1,static:1,namespace:1,use:1,true:1,false:1,null:1},jp=[{type:"comment",re:/\/\/[^\n]*/y},{type:"comment",re:/#[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"number",re:/\b\d+(?:\.\d+)?\b/y},{type:"operator",re:/=>|\+\+|--|===|!==|==|!=|<=|>=|->|\?\?|[=+\-*/%.<>!&|^~?:]/y},{type:"punctuation",re:/[{}[\]();,.]/y}]});var cl={};g(cl,{default:()=>ll});function ll(i){return F(i,Kp)}var Kp,ul=p(()=>{ee();Kp=[{type:"comment",re:/{{--[\s\S]*?--}}/y},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:\\.|[^'\\])*'/y},{type:"keyword",re:/@(?:vite|csrf|auth|guest|section|endsection|yield|extends|include|push|endpush|stack|once|endonce|forelse|empty|endempty|can|endcan|cannot|endcannot)\b/y},{type:"operator",re:/{{|}}|{!!|!!}|@[{}]/y},{type:"punctuation",re:/[()[\],]/y}]});var Sn={};g(Sn,{default:()=>dl});function dl(i){return F(i,Gp)}var Gp,Tn=p(()=>{ee();Gp=[{type:"comment",re:/#[^\n]*/y},{type:"string",re:/[rbfu]{0,2}"""[\s\S]*?"""/y},{type:"string",re:/[rbfu]{0,2}'''[\s\S]*?'''/y},{type:"string",re:/[rbfu]{0,2}"(?:\\.|[^"\\\n])*"/y},{type:"string",re:/[rbfu]{0,2}'(?:\\.|[^'\\\n])*'/y},{type:"number",re:/\b0[xX][\da-fA-F_]+\b|\b\d[\d_]*(?:\.[\d_]+)?(?:[eE][+-]?\d+)?j?\b/y},{type:"keyword",re:/\b(?:and|as|assert|async|await|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|raise|return|try|while|with|yield)\b/y},{type:"builtin",re:/\b(?:None|True|False|self|cls|abs|all|any|bool|bytes|dict|dir|enumerate|filter|float|format|frozenset|getattr|hasattr|int|isinstance|issubclass|iter|len|list|map|max|min|next|object|open|print|range|repr|reversed|round|set|setattr|sorted|str|sum|super|tuple|type|zip)\b/y},{type:"operator",re:/->|:=|\*\*=?|\/\/=?|<<=?|>>=?|[-+*/%&|^~<>!=]=?/y},{type:"punctuation",re:/[[\]{}(),:;.@]/y},{type:"identifier",re:/\b[A-Za-z_]\w*\b/y}]});var Cn={};g(Cn,{default:()=>pl});function pl(i){return F(i,Vp)}var Vp,Ln=p(()=>{ee();Vp=[{type:"comment",re:/#[^\n]*/y},{type:"punctuation",re:/^(?:---|\.\.\.)$/my},{type:"string",re:/"(?:\\.|[^"\\])*"/y},{type:"string",re:/'(?:''|[^'])*'/y},{type:"attr-name",re:/^[ \t]*-?[ \t]*[\w.$-]+(?=[ \t]*:(?:[ \t]|$))/my},{type:"punctuation",re:/^[ \t]*-(?=[ \t]|$)/my},{type:"keyword",re:/\b(?:true|false|null|yes|no|on|off|~)\b/yi},{type:"number",re:/\b-?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b/y},{type:"operator",re:/[&*]\w+|![\w/!-]*|[|>][+-]?\d*(?=\s*$)/my},{type:"punctuation",re:/[:,[\]{}]/y}]});var Rn={};g(Rn,{default:()=>hl});function hl(i){return F(i,Wp)}var Wp,Mn=p(()=>{ee();Wp=[{type:"comment",re:/\/\/[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/`[^`]*`/y},{type:"string",re:/"(?:\\.|[^"\\\n])*"/y},{type:"string",re:/'(?:\\.|[^'\\\n])*'/y},{type:"number",re:/\b0[xX][\da-fA-F_]+\b|\b\d[\d_]*(?:\.[\d_]*)?(?:[eE][+-]?\d+)?i?\b/y},{type:"keyword",re:/\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go|goto|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/y},{type:"builtin",re:/\b(?:append|bool|byte|cap|clear|close|complex|complex64|complex128|copy|delete|error|float32|float64|imag|int|int8|int16|int32|int64|len|make|max|min|new|nil|panic|print|println|real|recover|rune|string|true|false|iota|uint|uint8|uint16|uint32|uint64|uintptr|any)\b/y},{type:"operator",re:/:=|\.\.\.|&&|\|\||<-|\+\+|--|<<=?|>>=?|&\^=?|[-+*/%&|^<>!=]=?|~/y},{type:"punctuation",re:/[[\]{}(),;:.]/y},{type:"identifier",re:/\b[A-Za-z_]\w*\b/y}]});var In={};g(In,{default:()=>ml});function ml(i){return F(i,Yp)}var Yp,Dn=p(()=>{ee();Yp=[{type:"comment",re:/\/\/\/?[^\n]*/y},{type:"comment",re:/\/\*[\s\S]*?\*\//y},{type:"string",re:/b?r(#*)"[\s\S]*?"\1/y},{type:"string",re:/b?"(?:\\.|[^"\\])*"/y},{type:"string",re:/b?'(?:\\.|[^'\\])'/y},{type:"builtin",re:/#!?\[[^\]]*\]/y},{type:"number",re:/\b0[xXbo][\da-fA-F_]+\b|\b\d[\d_]*(?:\.[\d_]+)?(?:[eE][+-]?\d+)?(?:[iuf](?:8|16|32|64|128|size))?\b/y},{type:"keyword",re:/\b(?:as|async|await|break|const|continue|crate|dyn|else|enum|extern|fn|for|if|impl|in|let|loop|match|mod|move|mut|pub|ref|return|self|Self|static|struct|super|trait|type|unsafe|use|where|while)\b/y},{type:"builtin",re:/\b(?:bool|char|f32|f64|i8|i16|i32|i64|i128|isize|str|u8|u16|u32|u64|u128|usize|String|Vec|Option|Result|Some|None|Ok|Err|Box|Rc|Arc|true|false)\b/y},{type:"operator",re:/'[a-z_]\w*\b/y},{type:"operator",re:/=>|->|::|\.\.=?|&&|\|\||<<=?|>>=?|[-+*/%&|^<>!=]=?|[?@]/y},{type:"punctuation",re:/[[\]{}(),;:.#]/y},{type:"identifier",re:/\b[A-Za-z_]\w*!?\b/y}]});function xe(i){let e=(i||"").trim().toLowerCase();return e?e.startsWith("language-")?xe(e.slice(9)):{javascript:"js",jsx:"js",typescript:"ts",tsx:"ts",markup:"html",xml:"html",svg:"html",bash:"shell",sh:"shell",zsh:"shell",md:"markdown",plaintext:"text","plain-text":"text",yml:"yaml",toml:"text",ini:"text",php8:"php",py:"python",python3:"python",golang:"go",rs:"rust"}[e]||e:""}function ut(i,e){ct.set(xe(i),e)}function Lt(i){return ct.get(xe(i))}async function ze(i){let e=xe(i);if(!e)return;if(ct.has(e))return ct.get(e);if(Ni.has(e))return Ni.get(e);let t=fl[e];if(!t)return;let r=t().then(n=>{let o=n.default;return ct.set(e,o),Ni.delete(e),o});return Ni.set(e,r),r}function zi(){return[...new Set([...ct.keys(),...Object.keys(fl)])]}var ct,Ni,fl,$i=p(()=>{St();ct=new Map,Ni=new Map,fl={js:()=>Promise.resolve().then(()=>(St(),wn)),javascript:()=>Promise.resolve().then(()=>(St(),wn)),ts:()=>Promise.resolve().then(()=>(An(),xn)),typescript:()=>Promise.resolve().then(()=>(An(),xn)),html:()=>Promise.resolve().then(()=>(Ii(),Mi)),xml:()=>Promise.resolve().then(()=>(Ii(),Mi)),css:()=>Promise.resolve().then(()=>(Ya(),Wa)),json:()=>Promise.resolve().then(()=>(Ja(),Za)),md:()=>Promise.resolve().then(()=>(kn(),En)),markdown:()=>Promise.resolve().then(()=>(kn(),En)),shell:()=>Promise.resolve().then(()=>(Oi(),Di)),bash:()=>Promise.resolve().then(()=>(Oi(),Di)),sh:()=>Promise.resolve().then(()=>(Oi(),Di)),sql:()=>Promise.resolve().then(()=>(rl(),il)),text:()=>Promise.resolve().then(()=>(Ct(),Tt)),plain:()=>Promise.resolve().then(()=>(Ct(),Tt)),txt:()=>Promise.resolve().then(()=>(Ct(),Tt)),markup:()=>Promise.resolve().then(()=>(Ii(),Mi)),console:()=>Promise.resolve().then(()=>(Ct(),Tt)),php:()=>Promise.resolve().then(()=>(al(),sl)),blade:()=>Promise.resolve().then(()=>(ul(),cl)),python:()=>Promise.resolve().then(()=>(Tn(),Sn)),py:()=>Promise.resolve().then(()=>(Tn(),Sn)),yaml:()=>Promise.resolve().then(()=>(Ln(),Cn)),yml:()=>Promise.resolve().then(()=>(Ln(),Cn)),go:()=>Promise.resolve().then(()=>(Mn(),Rn)),golang:()=>Promise.resolve().then(()=>(Mn(),Rn)),rust:()=>Promise.resolve().then(()=>(Dn(),In)),rs:()=>Promise.resolve().then(()=>(Dn(),In))};ut("js",lt)});function On(i){return i.replace(/[&<>"]/g,e=>Xp[e]||e)}function Pi(i){return i.map(e=>{let t=e.type==="plain"?"":e.type;return`<span class="${t?`velin-token velin-token--${t}`:"velin-token"}">${On(e.value)}</span>`}).join("")}function Fi(i,e){i.innerHTML=Pi(e),i.classList.add("velin-syntax-ready"),i.closest("pre")?.classList.add("velin-syntax-ready"),i.closest(".velin-code-block")?.classList.add("velin-syntax-ready")}var Xp,Nn=p(()=>{Xp={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"}});function zn(i){let e=i.tagName==="PRE"?i:i.closest("pre"),t=i.tagName==="CODE"?i:e?.querySelector("code")||i,r=e||t,n=r.getAttribute("language")||r.getAttribute("data-language")||r.getAttribute("velin-code")||"";if(n&&n!=="true")return xe(n);let a=(t?.className||"").match(/\blanguage-([\w-]+)\b/i);return a?xe(a[1]):""}function qi(i){let t=(i.tagName==="CODE"?i:i.querySelector("code"))||i;if(t.dataset.velinSource!=null)return t.dataset.velinSource;let r=t.innerHTML;if(r&&/&lt;|&gt;|&amp;/.test(r)){let n=document.createElement("textarea");if(n.innerHTML=r.replace(/<br\s*\/?>/gi,`
1257
+ `),n.value)return n.value}return t.textContent||""}async function he(i,e={}){if(i.dataset.velinHighlighted==="1")return;let t=i.tagName==="PRE"?i:i.closest("pre")||i,r=i.tagName==="CODE"?i:t.querySelector("code")||document.createElement("code");if(!t.querySelector("code")&&r!==i){let c=qi(t);r.textContent=c,t.textContent="",t.appendChild(r)}r.dataset.velinSource||(r.dataset.velinSource=r.textContent||"");let n=e.language||zn(t);if(!n)return;t.classList.add("velin-syntax-pending"),r.classList.add("velin-syntax-pending");let o=e.lexer||Lt(n);o||(o=await ze(n)),o||(o=Lt("text")||await ze("text"));let a=r.dataset.velinSource||qi(r)||"";if(!o){r.textContent=a,t.classList.remove("velin-syntax-pending"),r.classList.remove("velin-syntax-pending"),t.classList.add("velin-syntax-ready"),r.classList.add("velin-syntax-ready");return}try{let c=o(a);Fi(r,c),r.dataset.velinHighlighted="1",t.dataset.velinHighlighted="1"}catch(c){console.warn("[velin-highlight]",n,c),r.textContent=a}t.classList.remove("velin-syntax-pending"),r.classList.remove("velin-syntax-pending"),t.classList.add("velin-syntax-ready"),r.classList.add("velin-syntax-ready")}async function Rt(i=document){let e=i.querySelectorAll('pre[velin-code], pre[data-language], pre code[class*="language-"], [velin-code-block] pre, .velin-doc-example__code pre');await Promise.all([...e].map(t=>he(t)))}var Hi=p(()=>{$i();Nn()});function Fn(i){$n.add(i),Pn||(Pn=requestAnimationFrame(()=>{Pn=0;let e=[...$n];$n.clear(),e.forEach(t=>t())}))}function Zp(i={}){return typeof IntersectionObserver>"u"?null:(Ge||(Ge=new IntersectionObserver(e=>{for(let t of e){if(!t.isIntersecting)continue;let r=qn.get(t.target);r&&Fn(()=>r(t.target)),t.target.dataset.velinOnce!=="false"&&Ge.unobserve(t.target)}},{threshold:i.threshold??.1,rootMargin:i.rootMargin??"0px 0px -40px 0px"})),Ge)}function Ae(i,e,t={}){let r=typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches,n=i.closest('[data-velin-motion="off"]')||i.dataset.velinMotion==="off";if(r||n)return Fn(()=>e(i,!0)),()=>{};let o=Zp(t);return o?(qn.set(i,e),o.observe(i),()=>{qn.delete(i),o.unobserve(i)}):(Fn(()=>e(i,!0)),()=>{})}function bl(){Ge&&(Ge.disconnect(),Ge=null)}var $n,Pn,Ge,qn,Bi=p(()=>{$n=new Set,Pn=0;Ge=null,qn=new WeakMap});function $e(i=document,e={}){if(typeof document>"u")return()=>{};let t=e.selector||["pre[velin-code]","pre[language]","pre[data-language]",'pre code[class*="language-"]',"velin-code-block pre",".velin-doc-example__code pre"].join(","),r=i.querySelectorAll(t),n=[],o=typeof matchMedia<"u"&&matchMedia("(prefers-reduced-motion: reduce)").matches;for(let a of r){let c=a.tagName==="PRE"?a:a.closest("pre");if(!c||c.dataset.velinObserve==="1")continue;if(c.dataset.velinObserve="1",o||e.immediate){he(c);continue}c.classList.add("velin-syntax-pending");let u=Ae(c,async h=>{await he(h)});n.push(u)}return()=>n.forEach(a=>a())}var Mt,Hn=p(()=>{Hi();Bi();Mt=$e});var Bn={};g(Bn,{applyHighlight:()=>Fi,escapeHtml:()=>On,getLanguage:()=>Lt,getSourceText:()=>qi,highlightAll:()=>Rt,highlightElement:()=>he,initHighlight:()=>$e,lazyLoadLanguage:()=>ze,listLanguages:()=>zi,normalizeLanguage:()=>xe,observeCodeBlocks:()=>Mt,registerLanguage:()=>ut,renderTokens:()=>Pi,resolveLanguage:()=>zn,velinSyntax:()=>vl});var vl,It=p(()=>{$i();Nn();Hi();Hn();Hi();Hn();$i();vl={highlightElement:he,highlightAll:Rt,initHighlight:$e,observeCodeBlocks:Mt,registerLanguage:ut,lazyLoadLanguage:ze,listLanguages:zi}});var yl={};g(yl,{default:()=>gl});function Jp(i){let e=new Set;if(!i)return e;for(let t of i.split(",")){let r=t.trim();if(r)if(r.includes("-")){let[n,o]=r.split("-").map(a=>parseInt(a,10));if(!Number.isNaN(n)&&!Number.isNaN(o))for(let a=Math.min(n,o);a<=Math.max(n,o);a+=1)e.add(a)}else{let n=parseInt(r,10);Number.isNaN(n)||e.add(n)}}return e}var Ui,gl,Un=p(()=>{It();Ui=class extends HTMLElement{static get observedAttributes(){return["language","highlight","line-numbers","collapsed"]}connectedCallback(){this._built||(this._built=!0,this.classList.add("velin-code-block"),this._render(),this._setupHighlight())}attributeChangedCallback(){this._built&&(this._render(),this._setupHighlight())}_render(){let e=this.getAttribute("language")||"",t=this.hasAttribute("line-numbers"),r=this.hasAttribute("collapsed"),n=Jp(this.getAttribute("highlight")||""),o=this.textContent.trim();this.textContent="";let a=document.createElement("div");a.className="velin-code-block__toolbar",a.innerHTML="";let c=document.createElement("velin-copy");c.setAttribute("value",o),c.setAttribute("label","Copy"),a.appendChild(c);let u=`velin-code-panel-${Math.random().toString(36).slice(2,9)}`,h=document.createElement("div");if(h.id=u,h.className=t?"velin-code-block__gutter":"",r){let v=document.createElement("button");v.type="button",v.className="velin-btn velin-btn--sm velin-btn--ghost",v.textContent="Expand",v.setAttribute("aria-expanded","false"),v.setAttribute("aria-controls",u),v.setAttribute("aria-label","Expand code block"),v.addEventListener("click",()=>{this.hasAttribute("data-collapsed")?(this.removeAttribute("data-collapsed"),v.textContent="Collapse",v.setAttribute("aria-expanded","true"),v.setAttribute("aria-label","Collapse code block")):(this.setAttribute("data-collapsed",""),v.textContent="Expand",v.setAttribute("aria-expanded","false"),v.setAttribute("aria-label","Expand code block"))}),this.setAttribute("data-collapsed",""),a.appendChild(v)}if(t){let v=document.createElement("div");v.className="velin-code-block__line-numbers";let k=o.split(`
1258
+ `).length;v.textContent="";for(let A=0;A<k;A+=1){let S=A+1,K=document.createElement("span");n.has(S)&&(K.className="velin-code-block__line--highlight"),K.textContent=String(S),v.appendChild(K)}h.appendChild(v)}let b=document.createElement("pre");e&&(b.setAttribute("language",e),b.dataset.language=e);let m=document.createElement("code");e&&(m.className=`language-${e}`),m.textContent=o,b.appendChild(m),h.appendChild(b),this.appendChild(a),this.appendChild(h),this._pre=b}async _setupHighlight(){if(!this._pre)return;delete this._pre.dataset.velinHighlighted,delete this._pre.dataset.velinObserve,typeof matchMedia<"u"&&matchMedia("(prefers-reduced-motion: reduce)").matches?await he(this._pre):$e(this,{root:this})}};customElements.define("velin-code-block",Ui);gl=Ui});var wl={};g(wl,{default:()=>_l});function eh(i){let e=(i.getAttribute("format")||"number").toLowerCase(),t=i.getAttribute("locale")||void 0,r=i.getAttribute("decimals"),n=r!=null?Math.max(0,Number.parseInt(r,10)||0):null,o={};n!=null&&(o.minimumFractionDigits=n,o.maximumFractionDigits=n),e==="currency"?(o.style="currency",o.currency=i.getAttribute("currency")||"EUR"):e==="percent"&&(o.style="percent");try{return new Intl.NumberFormat(t,o)}catch{return new Intl.NumberFormat(void 0,o)}}var Qp,ji,_l,Ki=p(()=>{Qp=i=>i===1?1:1-Math.pow(2,-10*i);ji=class extends HTMLElement{static get observedAttributes(){return["from","to","duration","decimals","prefix","suffix","format","currency","locale"]}constructor(){super(),this._rafId=0,this._started=!1,this._observer=null}connectedCallback(){this.setAttribute("role","status"),this.setAttribute("aria-live","polite"),this.setAttribute("aria-atomic","true"),this._render(this._fromValue()),this.getAttribute("autostart")!=="false"&&this._scheduleStart()}disconnectedCallback(){cancelAnimationFrame(this._rafId),this._observer?.disconnect()}attributeChangedCallback(e){this.isConnected&&(e==="to"||e==="from"?this.start():this._render(this._lastValue??this._toValue()))}_fromValue(){return Number.parseFloat(this.getAttribute("from"))||0}_toValue(){return Number.parseFloat(this.getAttribute("to"))||0}_duration(){return Math.max(0,Number.parseFloat(this.getAttribute("duration"))||900)}_scheduleStart(){if(!this._started){if(typeof IntersectionObserver>"u"){this.start();return}this._observer=new IntersectionObserver(e=>{for(let t of e)if(t.isIntersecting){this.start(),this._observer.disconnect(),this._observer=null;break}},{threshold:.2}),this._observer.observe(this)}}start(){cancelAnimationFrame(this._rafId),this._started=!0;let e=this._fromValue(),t=this._toValue(),r=this._duration();if(typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches||r===0){this._render(t);return}let o=performance.now(),a=c=>{let u=Math.min(1,(c-o)/r),h=e+(t-e)*Qp(u);this._render(h),u<1&&(this._rafId=requestAnimationFrame(a))};this._rafId=requestAnimationFrame(a)}reset(){cancelAnimationFrame(this._rafId),this._started=!1,this._render(this._fromValue())}_render(e){this._lastValue=e;let t=eh(this),r=this.getAttribute("prefix")||"",n=this.getAttribute("suffix")||"";this.textContent=`${r}${t.format(e)}${n}`}};typeof customElements<"u"&&!customElements.get("velin-counter")&&customElements.define("velin-counter",ji);_l=ji});var kl={};g(kl,{default:()=>El});function Al(i,e){let r=(i?.dataset?.sortValue??i?.textContent??"").trim();if(e==="number"){let n=Number.parseFloat(r.replace(/[^\d.,-]/g,"").replace(",","."));return Number.isNaN(n)?Number.NEGATIVE_INFINITY:n}if(e==="date"){let n=Date.parse(r);return Number.isNaN(n)?Number.NEGATIVE_INFINITY:n}return r.toLowerCase()}var th,xl,Gi,El,jn=p(()=>{Ie();th=new Set(["text","number","date"]),xl=!1;Gi=class extends HTMLElement{static get observedAttributes(){return["page-size","filter-input","empty-text","label","editable"]}constructor(){super(),this._table=null,this._page=1,this._query="",this._sortIndex=-1,this._sortDirection="ascending",this._filterEl=null,this._pagination=null,this._emptyRow=null,this._filterTimer=null,this._onFilterInput=this._onFilterInput.bind(this)}connectedCallback(){this.classList.add("velin-data-table"),requestAnimationFrame(()=>this._init())}disconnectedCallback(){this._filterEl&&this._filterEl.removeEventListener("input",this._onFilterInput),this._filterTimer&&clearTimeout(this._filterTimer)}attributeChangedCallback(e,t,r){t===r||!this._table||(e==="page-size"?(this._page=1,this._render()):e==="filter-input"?this._bindFilterInput():e==="label"&&this._ensureAccessibleName())}get rows(){let e=this._table?.tBodies?.[0];return e?[...e.rows].filter(t=>t!==this._emptyRow):[]}get matchingRows(){return this.rows.filter(e=>!e.dataset.velinFiltered)}get visibleRows(){return this.matchingRows.filter(e=>!e.hidden)}get page(){return this._page}get pageSize(){let e=Number.parseInt(this.getAttribute("page-size")||"",10);return Number.isFinite(e)&&e>0?e:0}get pageCount(){let e=this.pageSize;return e?Math.max(1,Math.ceil(this.matchingRows.length/e)):1}sort(e,t){let n=this._headers()[e];if(!n)return;let o=this._sortType(n);if(o==="none")return;this._sortDirection=t||(this._sortIndex===e&&this._sortDirection==="ascending"?"descending":"ascending"),this._sortIndex=e;let a=this._sortDirection==="ascending"?1:-1,c=this._table.tBodies[0],u=this.rows.slice().sort((b,m)=>{let v=Al(b.cells[e],o),T=Al(m.cells[e],o);return v<T?-1*a:v>T?1*a:0});for(let b of u)c.appendChild(b);this._syncSortState(),this._page=1,this._render();let h=n.dataset.sortLabel||n.textContent.trim();ae(`${h} sorted ${this._sortDirection}`),this.dispatchEvent(new CustomEvent("velin-data-table-sort",{bubbles:!0,detail:{index:e,direction:this._sortDirection,column:h}}))}filter(e){this._query=String(e||"").trim().toLowerCase();for(let r of this.rows)!this._query||this._rowText(r).includes(this._query)?delete r.dataset.velinFiltered:r.dataset.velinFiltered="true";this._page=1,this._render();let t=this.matchingRows.length;ae(t===1?"1 row matches":`${t} rows match`),this.dispatchEvent(new CustomEvent("velin-data-table-filter",{bubbles:!0,detail:{query:this._query,count:t}}))}goToPage(e){let t=Math.min(Math.max(1,Math.trunc(e)||1),this.pageCount);t!==this._page&&(this._page=t,this._render(),ae(`Page ${this._page} of ${this.pageCount}`),this.dispatchEvent(new CustomEvent("velin-data-table-page",{bubbles:!0,detail:{page:this._page,pageCount:this.pageCount}})))}_init(){this._table=this.querySelector("table"),!(!this._table||!this._table.tBodies.length)&&(this._ensureAccessibleName(),this._setupSorting(),this._setupEditable(),this._bindFilterInput(),this._render())}_headers(){let e=this._table.tHead?.rows?.[0];return e?[...e.cells]:[]}_sortType(e){let t=(e.dataset.sort||"").toLowerCase();return t==="none"?"none":th.has(t)?t:this.hasAttribute("sortable")?"text":"none"}_ensureAccessibleName(){let e=this._table;if(!e)return;let t=this.getAttribute("label"),r=e.caption?.textContent.trim()||e.getAttribute("aria-label")?.trim()||e.getAttribute("aria-labelledby")?.trim();if(!r&&t){e.setAttribute("aria-label",t);return}!r&&!xl&&(xl=!0,console.warn("[velinstyle] <velin-data-table> needs a <caption>, aria-label, or a label attribute."))}_setupSorting(){this._headers().forEach((e,t)=>{if(this._sortType(e)==="none"||e.querySelector(".velin-data-table__sort"))return;let r=e.textContent.trim();e.dataset.sortLabel=r,e.setAttribute("aria-sort","none"),e.classList.add("velin-data-table__th");let n=document.createElement("button");n.type="button",n.className="velin-data-table__sort",n.textContent=r;let o=document.createElement("span");o.className="velin-data-table__sort-icon",o.setAttribute("aria-hidden","true"),n.appendChild(o),n.addEventListener("click",()=>this.sort(t)),e.textContent="",e.appendChild(n)})}_setupEditable(){if(!this.hasAttribute("editable")&&!this.querySelector("[data-editable]"))return;let e=this._table.tBodies[0];if(!(!e||e.dataset.velinEditBound)){e.dataset.velinEditBound="true",e.addEventListener("dblclick",t=>{let r=t.target.closest("td");!r||!e.contains(r)||!this.hasAttribute("editable")&&!r.hasAttribute("data-editable")||this._beginEdit(r)}),e.addEventListener("keydown",t=>{let r=t.target.closest("td");if(!(!r||t.target!==r)&&(t.key==="Enter"||t.key==="F2")){if(!this.hasAttribute("editable")&&!r.hasAttribute("data-editable"))return;t.preventDefault(),this._beginEdit(r)}});for(let t of e.querySelectorAll("td[data-editable], td"))!this.hasAttribute("editable")&&!t.hasAttribute("data-editable")||t.hasAttribute("tabindex")||t.setAttribute("tabindex","0")}}_beginEdit(e){if(e.querySelector("input"))return;let t=e.textContent.trim(),r=document.createElement("input");r.className="velin-input velin-data-table__edit",r.value=t,r.setAttribute("aria-label","Edit cell"),e.textContent="",e.appendChild(r),r.focus(),r.select();let n=o=>{let a=o?r.value.trim():t;e.textContent=a,o&&a!==t&&(this.dispatchEvent(new CustomEvent("velin-data-table-edit",{bubbles:!0,detail:{cell:e,row:e.parentElement,previous:t,value:a,columnIndex:e.cellIndex}})),ae("Cell updated"))};r.addEventListener("keydown",o=>{o.key==="Enter"?(o.preventDefault(),n(!0)):o.key==="Escape"&&(o.preventDefault(),n(!1))}),r.addEventListener("blur",()=>n(!0))}_syncSortState(){this._headers().forEach((e,t)=>{if(this._sortType(e)==="none")return;let r=t===this._sortIndex;e.setAttribute("aria-sort",r?this._sortDirection:"none"),e.querySelector(".velin-data-table__sort")?.classList.toggle("velin-data-table__sort--active",r)})}_bindFilterInput(){this._filterEl&&this._filterEl.removeEventListener("input",this._onFilterInput);let e=this.getAttribute("filter-input");this._filterEl=e?document.querySelector(e):null,this._filterEl&&this._filterEl.addEventListener("input",this._onFilterInput)}_onFilterInput(e){this._filterTimer&&clearTimeout(this._filterTimer);let t=e.target.value;this._filterTimer=setTimeout(()=>this.filter(t),150)}_rowText(e){let t=[...e.cells].filter(n=>n.hasAttribute("data-filter"));return(t.length?t:[...e.cells]).map(n=>n.textContent||"").join(" ").toLowerCase()}_render(){let e=this.pageSize;this._page=Math.min(this._page,this.pageCount);let t=this.matchingRows,r=e?(this._page-1)*e:0,n=e?r+e:t.length;for(let o of this.rows){let a=t.indexOf(o);o.hidden=a===-1||a<r||a>=n}this._renderEmptyState(t.length===0),this._renderPagination()}_renderEmptyState(e){if(!e){this._emptyRow?.remove(),this._emptyRow=null;return}if(this._emptyRow?.isConnected)return;let t=this._headers().length||1,r=document.createElement("tr");r.className="velin-data-table__empty";let n=document.createElement("td");n.colSpan=t,n.textContent=this.getAttribute("empty-text")||"No matching rows",r.appendChild(n),this._table.tBodies[0].appendChild(r),this._emptyRow=r}_renderPagination(){if(!this.pageSize||this.pageCount<=1){this._pagination?.remove(),this._pagination=null;return}if(!this._pagination?.isConnected){let n=document.createElement("nav");n.className="velin-data-table__pagination",n.setAttribute("aria-label",this.getAttribute("pagination-label")||"Table pagination");let o=document.createElement("button");o.type="button",o.className="velin-btn velin-btn--outline velin-btn--sm",o.dataset.velinPage="previous",o.textContent=this.getAttribute("previous-text")||"Previous",o.addEventListener("click",()=>this.goToPage(this._page-1));let a=document.createElement("p");a.className="velin-data-table__page-status",a.dataset.velinPage="status";let c=document.createElement("button");c.type="button",c.className="velin-btn velin-btn--outline velin-btn--sm",c.dataset.velinPage="next",c.textContent=this.getAttribute("next-text")||"Next",c.addEventListener("click",()=>this.goToPage(this._page+1)),n.append(o,a,c),this.appendChild(n),this._pagination=n}let e=this._pagination.querySelector('[data-velin-page="status"]');e&&(e.textContent=`Page ${this._page} of ${this.pageCount}`);let t=this._pagination.querySelector('[data-velin-page="previous"]'),r=this._pagination.querySelector('[data-velin-page="next"]');t&&(t.disabled=this._page<=1),r&&(r.disabled=this._page>=this.pageCount)}};customElements.define("velin-data-table",Gi);El=Gi});var Tl={};g(Tl,{default:()=>Sl});var ih,Vi,Sl,Kn=p(()=>{ih=`
1259
+ :host {
1260
+ display: block;
1261
+ text-align: center;
1262
+ padding: var(--velin-space-8, 2rem) var(--velin-space-4, 1rem);
1263
+ }
1264
+ .illustration {
1265
+ display: flex;
1266
+ justify-content: center;
1267
+ margin-block-end: var(--velin-space-4, 1rem);
1268
+ color: var(--velin-color-text-muted, #666);
1269
+ }
1270
+ .title {
1271
+ margin: 0 0 var(--velin-space-2, 0.5rem);
1272
+ font-size: var(--velin-text-xl, 1.25rem);
1273
+ font-weight: var(--velin-weight-bold, 700);
1274
+ color: var(--velin-color-text, #111);
1275
+ }
1276
+ .description {
1277
+ margin: 0 0 var(--velin-space-4, 1rem);
1278
+ color: var(--velin-color-text-muted, #666);
1279
+ max-inline-size: 36rem;
1280
+ margin-inline: auto;
1281
+ }
1282
+ .actions {
1283
+ display: flex;
1284
+ flex-wrap: wrap;
1285
+ gap: var(--velin-space-3, 0.75rem);
1286
+ justify-content: center;
1287
+ }
1288
+ `,Vi=class extends HTMLElement{static get observedAttributes(){return["heading","description"]}constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){if(this.shadowRoot.querySelector(".root")){this._syncText();return}let e="velin-empty-title";this.shadowRoot.innerHTML=`
1289
+ <style>${ih}</style>
1290
+ <section class="root" part="root" role="status" aria-labelledby="${e}">
1291
+ <div class="illustration" part="illustration"><slot name="illustration"></slot></div>
1292
+ <h2 class="title" id="${e}" part="title">
1293
+ <slot name="title"><span class="heading-fallback"></span></slot>
1294
+ </h2>
1295
+ <div class="description" part="description">
1296
+ <slot name="description"><span class="description-fallback"></span></slot>
1297
+ </div>
1298
+ <div class="actions" part="actions"><slot name="actions"></slot></div>
1299
+ <slot></slot>
1300
+ </section>
1301
+ `,this._syncText()}attributeChangedCallback(){this._syncText()}_syncText(){let e=this.shadowRoot?.querySelector(".heading-fallback"),t=this.shadowRoot?.querySelector(".description-fallback");if(e&&(e.textContent=this.getAttribute("heading")||"Nothing here yet"),t){let r=this.getAttribute("description")||"";t.textContent=r,t.hidden=!r}}};customElements.define("velin-empty-state",Vi);Sl=Vi});var Ll={};g(Ll,{default:()=>Cl});var rh,Wi,Cl,Gn=p(()=>{L();rh=`
1233
1302
  :host { display: block; }
1234
1303
  .zone {
1235
1304
  border: 2px dashed var(--velin-color-border, #cbd5e1);
@@ -1278,19 +1347,19 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1278
1347
  }
1279
1348
  .status { margin: var(--velin-space-2, 0.5rem) 0 0; font-size: var(--velin-text-sm, 0.875rem); }
1280
1349
  .status[data-tone="error"] { color: var(--velin-color-danger, #b91c1c); }
1281
- `,qi=class extends HTMLElement{static get observedAttributes(){return["accept","multiple","label","progress"]}constructor(){super(),this.attachShadow({mode:"open"}),this._files=[]}connectedCallback(){this._render()}attributeChangedCallback(){this.shadowRoot?.querySelector(".zone")&&this._render()}get files(){return this._files.slice()}_emitFiles(e){let t=this.getAttribute("accept"),r=[...e];if(t){let n=t.split(",").map(a=>a.trim().toLowerCase()),o=r.find(a=>{let c=a.name.toLowerCase(),d=(a.type||"").toLowerCase();return!n.some(m=>m.startsWith(".")?c.endsWith(m):d===m||d.startsWith(m.replace("/*","/")))});if(o){this._setStatus(`File type not allowed: ${o.name}`,"error"),this.dispatchEvent(new CustomEvent("velin-error",{bubbles:!0,detail:{message:"accept",file:o}}));return}}this._files=r,this._setStatus(r.length?`${r.length} file(s) ready`:"","ok"),this.dispatchEvent(new CustomEvent("velin-files",{bubbles:!0,detail:{files:r}})),this._renderList()}_setStatus(e,t="ok"){let r=this.shadowRoot?.querySelector(".status");r&&(r.textContent=e,r.dataset.tone=t)}_renderList(){let e=this.shadowRoot?.querySelector(".list");e&&(e.innerHTML=this._files.map(t=>`<li><span>${b(t.name)}</span><span>${Math.round(t.size/1024)} KB</span></li>`).join(""))}_render(){let e=b(this.getAttribute("label")||"Upload files"),t=this.getAttribute("accept")||"",r=this.hasAttribute("multiple"),n=Math.max(0,Math.min(100,Number(this.getAttribute("progress")||0)));this.shadowRoot.innerHTML=`
1282
- <style>${lh}</style>
1350
+ `,Wi=class extends HTMLElement{static get observedAttributes(){return["accept","multiple","label","progress"]}constructor(){super(),this.attachShadow({mode:"open"}),this._files=[]}connectedCallback(){this._render()}attributeChangedCallback(){this.shadowRoot?.querySelector(".zone")&&this._render()}get files(){return this._files.slice()}_emitFiles(e){let t=this.getAttribute("accept"),r=[...e];if(t){let n=t.split(",").map(a=>a.trim().toLowerCase()),o=r.find(a=>{let c=a.name.toLowerCase(),u=(a.type||"").toLowerCase();return!n.some(h=>h.startsWith(".")?c.endsWith(h):u===h||u.startsWith(h.replace("/*","/")))});if(o){this._setStatus(`File type not allowed: ${o.name}`,"error"),this.dispatchEvent(new CustomEvent("velin-error",{bubbles:!0,detail:{message:"accept",file:o}}));return}}this._files=r,this._setStatus(r.length?`${r.length} file(s) ready`:"","ok"),this.dispatchEvent(new CustomEvent("velin-files",{bubbles:!0,detail:{files:r}})),this._renderList()}_setStatus(e,t="ok"){let r=this.shadowRoot?.querySelector(".status");r&&(r.textContent=e,r.dataset.tone=t)}_renderList(){let e=this.shadowRoot?.querySelector(".list");e&&(e.innerHTML=this._files.map(t=>`<li><span>${y(t.name)}</span><span>${Math.round(t.size/1024)} KB</span></li>`).join(""))}_render(){let e=y(this.getAttribute("label")||"Upload files"),t=this.getAttribute("accept")||"",r=this.hasAttribute("multiple"),n=Math.max(0,Math.min(100,Number(this.getAttribute("progress")||0)));this.shadowRoot.innerHTML=`
1351
+ <style>${rh}</style>
1283
1352
  <div class="zone" role="group" aria-label="${e}">
1284
1353
  <p class="hint">Drag and drop files here, or browse. Client-side only \u2014 wire <code>velin-files</code> to your upload API.</p>
1285
1354
  <button type="button" class="browse">Browse files</button>
1286
- <input type="file" ${t?`accept="${b(t)}"`:""} ${r?"multiple":""} />
1355
+ <input type="file" ${t?`accept="${y(t)}"`:""} ${r?"multiple":""} />
1287
1356
  <div class="progress" hidden="${n<=0?"true":"false"}" aria-hidden="${n<=0?"true":"false"}">
1288
1357
  <div class="bar" style="inline-size:${n}%"></div>
1289
1358
  </div>
1290
1359
  <p class="status" role="status" aria-live="polite"></p>
1291
1360
  <ul class="list"></ul>
1292
1361
  </div>
1293
- `;let o=this.shadowRoot.querySelector("input"),a=this.shadowRoot.querySelector(".browse"),c=this.shadowRoot.querySelector(".zone");a.addEventListener("click",()=>o.click()),o.addEventListener("change",()=>{o.files?.length&&this._emitFiles(o.files)}),["dragenter","dragover"].forEach(d=>{c.addEventListener(d,m=>{m.preventDefault(),this.setAttribute("dragging","")})}),["dragleave","drop"].forEach(d=>{c.addEventListener(d,m=>{m.preventDefault(),this.removeAttribute("dragging")})}),c.addEventListener("drop",d=>{let m=d.dataTransfer?.files;m?.length&&this._emitFiles(m)}),this._renderList()}};customElements.define("velin-file-dropzone",qi);tl=qi});var nl={};y(nl,{default:()=>rl});function Nn(i){let e=String(i??"");return typeof CSS<"u"&&typeof CSS.escape=="function"?CSS.escape(e):e.replace(/[^\w-]/g,t=>`\\${t}`)}function hh(i){let e=i.getAttribute("data-error-label");if(e)return e;let t=i.getAttribute("aria-label");if(t?.trim())return t.trim();let r=i.getAttribute("aria-labelledby");if(r){let o=r.split(/\s+/).map(a=>i.ownerDocument.getElementById(a)?.textContent?.trim()||"").filter(Boolean).join(" ");if(o)return o}if(i.id){let o=i.ownerDocument.querySelector(`label[for="${Nn(i.id)}"]`);if(o?.textContent.trim())return o.textContent.trim()}let n=i.closest("label");return n?.textContent.trim()?n.textContent.trim():i.name||"This field"}function ph(i){return i.getAttribute("data-error-message")?.trim()||i.validationMessage||"Invalid value"}function mh(i,e){let t=(i.getAttribute("aria-describedby")||"").split(/\s+/).filter(Boolean);t.includes(e)||(t.push(e),i.setAttribute("aria-describedby",t.join(" ")))}function fh(i,e){let r=(i.getAttribute("aria-describedby")||"").split(/\s+/).filter(Boolean).filter(n=>n!==e);r.length?i.setAttribute("aria-describedby",r.join(" ")):i.removeAttribute("aria-describedby")}var ch,dh,uh,Bi,rl,zn=h(()=>{Le();ch="input, select, textarea",dh=new Set(["submit","reset","button","image","hidden"]),uh=0;Bi=class extends HTMLElement{static get observedAttributes(){return["for","heading"]}constructor(){super(),this._form=null,this._panel=null,this._errors=[],this._onSubmit=this._onSubmit.bind(this),this._onFieldChange=this._onFieldChange.bind(this),this._onReset=this._onReset.bind(this)}connectedCallback(){this.classList.add("velin-form-summary"),requestAnimationFrame(()=>this._bindForm())}disconnectedCallback(){this._unbindForm()}attributeChangedCallback(e,t,r){if(t!==r){if(e==="for"&&this.isConnected)this._unbindForm(),this._bindForm();else if(e==="heading"&&this._panel){let n=this._panel.querySelector(".velin-form-summary__heading");n&&(n.textContent=this.headingText)}}}get form(){return this._form}get errors(){return this._errors.slice()}get headingText(){return this.getAttribute("heading")||"There is a problem"}validate(){if(!this._form)return!0;let e=[];for(let t of this._fields()){if(t.checkValidity()){this._clearFieldError(t);continue}let r={field:t,label:hh(t),message:ph(t)};this._markFieldError(t,r.message),e.push(r)}return this._errors=e,this._render(),e.length===0}clear(){for(let e of this._fields())this._clearFieldError(e);this._errors=[],this._render()}focusFirstError(){let e=this._errors[0];e&&this._focusField(e.field)}_bindForm(){let e=this.getAttribute("for");this._form=e?this.ownerDocument.getElementById(e):this.closest("form"),this._form&&(this.hasAttribute("native-validation")||(this._form.noValidate=!0),this._form.addEventListener("submit",this._onSubmit),this._form.addEventListener("reset",this._onReset),this._form.addEventListener("input",this._onFieldChange),this._form.addEventListener("change",this._onFieldChange))}_unbindForm(){this._form&&(this._form.removeEventListener("submit",this._onSubmit),this._form.removeEventListener("reset",this._onReset),this._form.removeEventListener("input",this._onFieldChange),this._form.removeEventListener("change",this._onFieldChange),this._form=null)}_fields(){if(!this._form)return[];let e=new Set;return[...this._form.querySelectorAll(ch)].filter(t=>{if(dh.has(t.type)||t.disabled||t.hasAttribute("data-error-ignore")||typeof t.checkValidity!="function")return!1;if(t.type==="radio"&&t.name){if(e.has(t.name))return!1;e.add(t.name)}return!0})}_onSubmit(e){this.validate()||(e.preventDefault(),this._announceErrors(),this._focusPanel(),this.dispatchEvent(new CustomEvent("velin-form-invalid",{bubbles:!0,detail:{errors:this.errors.map(({label:t,message:r})=>({label:t,message:r}))}})))}_onReset(){requestAnimationFrame(()=>this.clear())}_onFieldChange(e){let t=e.target;!t||!this._errors.some(r=>r.field===t)||t.checkValidity()&&(this._clearFieldError(t),this._errors=this._errors.filter(r=>r.field!==t),this._render(),this._errors.length===0&&this.dispatchEvent(new CustomEvent("velin-form-valid",{bubbles:!0})))}_errorId(e){return e.id||(e.id=`velin-field-${++uh}`),`${e.id}-error`}_markFieldError(e,t){let r=this._errorId(e);e.setAttribute("aria-invalid","true");let n=this.ownerDocument.getElementById(r);n||(n=this._form.querySelector(`[data-velin-error-for="${Nn(e.name||e.id)}"]`)),n||(n=this.ownerDocument.createElement("p"),n.dataset.velinErrorGenerated="true",e.insertAdjacentElement("afterend",n)),n.id=r,n.classList.add("velin-field-error"),n.textContent=t,mh(e,r)}_clearFieldError(e){if(!e.id)return;let t=`${e.id}-error`;e.removeAttribute("aria-invalid"),fh(e,t);let r=this.ownerDocument.getElementById(t);r&&(r.dataset.velinErrorGenerated?r.remove():r.textContent="")}_focusField(e){let t=e.type==="radio"&&e.name&&this._form.querySelector(`input[type="radio"][name="${Nn(e.name)}"]`)||e;t.focus(),this.dispatchEvent(new CustomEvent("velin-form-error-focus",{bubbles:!0,detail:{name:t.name||t.id}}))}_render(){if(!this._errors.length){this._panel?.remove(),this._panel=null,this.hidden=!0;return}if(this.hidden=!1,!this._panel?.isConnected){let t=this.ownerDocument.createElement("div");t.className="velin-form-summary__panel velin-alert velin-alert--danger",t.setAttribute("role","alert"),t.tabIndex=-1;let r=this.ownerDocument.createElement("p");r.className="velin-form-summary__heading",r.textContent=this.headingText;let n=this.ownerDocument.createElement("ul");n.className="velin-form-summary__list",t.append(r,n),this.appendChild(t),this._panel=t}let e=this._panel.querySelector(".velin-form-summary__list");e.textContent="";for(let t of this._errors){let r=this.ownerDocument.createElement("li"),n=this.ownerDocument.createElement("a");n.href=`#${this._errorId(t.field).replace(/-error$/,"")}`,n.textContent=`${t.label}: ${t.message}`,n.addEventListener("click",o=>{o.preventDefault(),this._focusField(t.field)}),r.appendChild(n),e.appendChild(r)}}_focusPanel(){this._panel?.focus()}_announceErrors(){let e=this._errors.length;ne(e===1?"1 field needs attention":`${e} fields need attention`,"assertive")}};customElements.define("velin-form-summary",Bi);rl=Bi});var al={};y(al,{default:()=>sl});var ol,vh,bh,Ui,sl,ji=h(()=>{Le();ol={live:"var(--velin-color-success, oklch(60% 0.16 145))",paused:"var(--velin-color-text-muted, oklch(60% 0.02 240))",warning:"var(--velin-color-warning, oklch(75% 0.16 80))",error:"var(--velin-color-danger, oklch(60% 0.2 25))",muted:"var(--velin-color-border, oklch(85% 0.01 240))"},vh=`
1362
+ `;let o=this.shadowRoot.querySelector("input"),a=this.shadowRoot.querySelector(".browse"),c=this.shadowRoot.querySelector(".zone");a.addEventListener("click",()=>o.click()),o.addEventListener("change",()=>{o.files?.length&&this._emitFiles(o.files)}),["dragenter","dragover"].forEach(u=>{c.addEventListener(u,h=>{h.preventDefault(),this.setAttribute("dragging","")})}),["dragleave","drop"].forEach(u=>{c.addEventListener(u,h=>{h.preventDefault(),this.removeAttribute("dragging")})}),c.addEventListener("drop",u=>{let h=u.dataTransfer?.files;h?.length&&this._emitFiles(h)}),this._renderList()}};customElements.define("velin-file-dropzone",Wi);Cl=Wi});var Ml={};g(Ml,{default:()=>Rl});function Vn(i){let e=String(i??"");return typeof CSS<"u"&&typeof CSS.escape=="function"?CSS.escape(e):e.replace(/[^\w-]/g,t=>`\\${t}`)}function ah(i){let e=i.getAttribute("data-error-label");if(e)return e;let t=i.getAttribute("aria-label");if(t?.trim())return t.trim();let r=i.getAttribute("aria-labelledby");if(r){let o=r.split(/\s+/).map(a=>i.ownerDocument.getElementById(a)?.textContent?.trim()||"").filter(Boolean).join(" ");if(o)return o}if(i.id){let o=i.ownerDocument.querySelector(`label[for="${Vn(i.id)}"]`);if(o?.textContent.trim())return o.textContent.trim()}let n=i.closest("label");return n?.textContent.trim()?n.textContent.trim():i.name||"This field"}function lh(i){return i.getAttribute("data-error-message")?.trim()||i.validationMessage||"Invalid value"}function ch(i,e){let t=(i.getAttribute("aria-describedby")||"").split(/\s+/).filter(Boolean);t.includes(e)||(t.push(e),i.setAttribute("aria-describedby",t.join(" ")))}function uh(i,e){let r=(i.getAttribute("aria-describedby")||"").split(/\s+/).filter(Boolean).filter(n=>n!==e);r.length?i.setAttribute("aria-describedby",r.join(" ")):i.removeAttribute("aria-describedby")}var nh,oh,sh,Yi,Rl,Wn=p(()=>{Ie();nh="input, select, textarea",oh=new Set(["submit","reset","button","image","hidden"]),sh=0;Yi=class extends HTMLElement{static get observedAttributes(){return["for","heading"]}constructor(){super(),this._form=null,this._panel=null,this._errors=[],this._onSubmit=this._onSubmit.bind(this),this._onFieldChange=this._onFieldChange.bind(this),this._onReset=this._onReset.bind(this)}connectedCallback(){this.classList.add("velin-form-summary"),requestAnimationFrame(()=>this._bindForm())}disconnectedCallback(){this._unbindForm()}attributeChangedCallback(e,t,r){if(t!==r){if(e==="for"&&this.isConnected)this._unbindForm(),this._bindForm();else if(e==="heading"&&this._panel){let n=this._panel.querySelector(".velin-form-summary__heading");n&&(n.textContent=this.headingText)}}}get form(){return this._form}get errors(){return this._errors.slice()}get headingText(){return this.getAttribute("heading")||"There is a problem"}validate(){if(!this._form)return!0;let e=[];for(let t of this._fields()){if(t.checkValidity()){this._clearFieldError(t);continue}let r={field:t,label:ah(t),message:lh(t)};this._markFieldError(t,r.message),e.push(r)}return this._errors=e,this._render(),e.length===0}clear(){for(let e of this._fields())this._clearFieldError(e);this._errors=[],this._render()}focusFirstError(){let e=this._errors[0];e&&this._focusField(e.field)}_bindForm(){let e=this.getAttribute("for");this._form=e?this.ownerDocument.getElementById(e):this.closest("form"),this._form&&(this.hasAttribute("native-validation")||(this._form.noValidate=!0),this._form.addEventListener("submit",this._onSubmit),this._form.addEventListener("reset",this._onReset),this._form.addEventListener("input",this._onFieldChange),this._form.addEventListener("change",this._onFieldChange))}_unbindForm(){this._form&&(this._form.removeEventListener("submit",this._onSubmit),this._form.removeEventListener("reset",this._onReset),this._form.removeEventListener("input",this._onFieldChange),this._form.removeEventListener("change",this._onFieldChange),this._form=null)}_fields(){if(!this._form)return[];let e=new Set;return[...this._form.querySelectorAll(nh)].filter(t=>{if(oh.has(t.type)||t.disabled||t.hasAttribute("data-error-ignore")||typeof t.checkValidity!="function")return!1;if(t.type==="radio"&&t.name){if(e.has(t.name))return!1;e.add(t.name)}return!0})}_onSubmit(e){this.validate()||(e.preventDefault(),this._announceErrors(),this._focusPanel(),this.dispatchEvent(new CustomEvent("velin-form-invalid",{bubbles:!0,detail:{errors:this.errors.map(({label:t,message:r})=>({label:t,message:r}))}})))}_onReset(){requestAnimationFrame(()=>this.clear())}_onFieldChange(e){let t=e.target;!t||!this._errors.some(r=>r.field===t)||t.checkValidity()&&(this._clearFieldError(t),this._errors=this._errors.filter(r=>r.field!==t),this._render(),this._errors.length===0&&this.dispatchEvent(new CustomEvent("velin-form-valid",{bubbles:!0})))}_errorId(e){return e.id||(e.id=`velin-field-${++sh}`),`${e.id}-error`}_markFieldError(e,t){let r=this._errorId(e);e.setAttribute("aria-invalid","true");let n=this.ownerDocument.getElementById(r);n||(n=this._form.querySelector(`[data-velin-error-for="${Vn(e.name||e.id)}"]`)),n||(n=this.ownerDocument.createElement("p"),n.dataset.velinErrorGenerated="true",e.insertAdjacentElement("afterend",n)),n.id=r,n.classList.add("velin-field-error"),n.textContent=t,ch(e,r)}_clearFieldError(e){if(!e.id)return;let t=`${e.id}-error`;e.removeAttribute("aria-invalid"),uh(e,t);let r=this.ownerDocument.getElementById(t);r&&(r.dataset.velinErrorGenerated?r.remove():r.textContent="")}_focusField(e){let t=e.type==="radio"&&e.name&&this._form.querySelector(`input[type="radio"][name="${Vn(e.name)}"]`)||e;t.focus(),this.dispatchEvent(new CustomEvent("velin-form-error-focus",{bubbles:!0,detail:{name:t.name||t.id}}))}_render(){if(!this._errors.length){this._panel?.remove(),this._panel=null,this.hidden=!0;return}if(this.hidden=!1,!this._panel?.isConnected){let t=this.ownerDocument.createElement("div");t.className="velin-form-summary__panel velin-alert velin-alert--danger",t.setAttribute("role","alert"),t.tabIndex=-1;let r=this.ownerDocument.createElement("p");r.className="velin-form-summary__heading",r.textContent=this.headingText;let n=this.ownerDocument.createElement("ul");n.className="velin-form-summary__list",t.append(r,n),this.appendChild(t),this._panel=t}let e=this._panel.querySelector(".velin-form-summary__list");e.textContent="";for(let t of this._errors){let r=this.ownerDocument.createElement("li"),n=this.ownerDocument.createElement("a");n.href=`#${this._errorId(t.field).replace(/-error$/,"")}`,n.textContent=`${t.label}: ${t.message}`,n.addEventListener("click",o=>{o.preventDefault(),this._focusField(t.field)}),r.appendChild(n),e.appendChild(r)}}_focusPanel(){this._panel?.focus()}_announceErrors(){let e=this._errors.length;ae(e===1?"1 field needs attention":`${e} fields need attention`,"assertive")}};customElements.define("velin-form-summary",Yi);Rl=Yi});var Ol={};g(Ol,{default:()=>Dl});var Il,dh,ph,Xi,Dl,Zi=p(()=>{Ie();Il={live:"var(--velin-color-success, oklch(60% 0.16 145))",paused:"var(--velin-color-text-muted, oklch(60% 0.02 240))",warning:"var(--velin-color-warning, oklch(75% 0.16 80))",error:"var(--velin-color-danger, oklch(60% 0.2 25))",muted:"var(--velin-color-border, oklch(85% 0.01 240))"},dh=`
1294
1363
  :host {
1295
1364
  display: inline-flex;
1296
1365
  align-items: center;
@@ -1311,15 +1380,88 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1311
1380
  @media (prefers-reduced-motion: reduce) {
1312
1381
  .dot { animation: none !important; }
1313
1382
  }
1314
- `,bh=`
1383
+ `,ph=`
1315
1384
  @keyframes velin-live-pulse {
1316
1385
  0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--velin-live-color) 65%, transparent); }
1317
1386
  70% { box-shadow: 0 0 0 0.6rem color-mix(in oklch, var(--velin-live-color) 0%, transparent); }
1318
1387
  100% { box-shadow: 0 0 0 0 transparent; }
1319
- }`,Ui=class extends HTMLElement{static get observedAttributes(){return["status","pulse"]}constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){this._render()}attributeChangedCallback(){this.shadowRoot&&this._render()}_render(){let e=this.getAttribute("status")||"live",t=ol[e]||ol.live,r=this.getAttribute("aria-label")||Wr(e);this.setAttribute("role","status"),this.setAttribute("aria-label",r),this.style.setProperty("--velin-live-color",t),this.shadowRoot.innerHTML=`
1320
- <style>${vh}${bh}</style>
1388
+ }`,Xi=class extends HTMLElement{static get observedAttributes(){return["status","pulse"]}constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){this._render()}attributeChangedCallback(){this.shadowRoot&&this._render()}_render(){let e=this.getAttribute("status")||"live",t=Il[e]||Il.live,r=this.getAttribute("aria-label")||on(e);this.setAttribute("role","status"),this.setAttribute("aria-label",r),this.style.setProperty("--velin-live-color",t),this.shadowRoot.innerHTML=`
1389
+ <style>${dh}${ph}</style>
1321
1390
  <span class="dot" aria-hidden="true"></span><slot></slot>
1322
- `}};typeof customElements<"u"&&!customElements.get("velin-live-dot")&&customElements.define("velin-live-dot",Ui);sl=Ui});function Ki(i){if(!i||typeof i!="object")return null;let e=i,t=String(e.id||e.url||e.title||"").trim(),r=String(e.title||"").trim(),n=String(e.url||"").trim();if(!t||!r)return null;let o=Array.isArray(e.keywords)?e.keywords.map(d=>String(d)):typeof e.keywords=="string"?e.keywords.split(/\s+/).filter(Boolean):[],a=Lt.includes(e.category)?e.category:"docs";!e.category&&typeof e.url=="string"&&(e.url.includes("/components/")?a="components":e.url.includes("/cli/")||e.url.includes("/api/")?a="api":(e.url.includes("samples/")||e.url.includes("examples/"))&&(a="examples"));let c=n?ss(n):`#${t}`;return{id:t,title:r,excerpt:String(e.excerpt||e.section||"").slice(0,200),url:c,category:a,keywords:o,weight:typeof e.weight=="number"?e.weight:1}}var Lt,$n,Fn=h(()=>{T();Lt=["docs","components","api","examples"],$n={components:1.25,api:1.15,docs:1,examples:.9}});function gh(i,e,t){let r=i.title.toLowerCase(),n=(i.excerpt||"").toLowerCase(),o=(i.keywords||[]).join(" ").toLowerCase(),a=($n[i.category]||1)*(i.weight||1),c=0;if(r===e)c=100;else if(r.startsWith(e))c=70;else if(r.includes(e))c=50;else if(o.includes(e))c=35;else if(n.includes(e))c=25;else if(t>0&&Wi(r,e,t))c=40;else if(t>0&&Wi(o,e,t))c=28;else if(t>0&&Wi(n,e,t))c=18;else if(ll(r,e))c=22;else if(t>0){for(let d of r.split(/[^a-z0-9]+/))if(d.length>=3&&Wi(d,e,t)){c=32;break}}return c>0?c*a:0}function ll(i,e){let t=0;for(let r=0;r<i.length&&t<e.length;r++)i[r]===e[t]&&t++;return t===e.length}function Wi(i,e,t){if(!i||!e)return!1;if(i.includes(e)||ll(i,e))return!0;let r=Math.max(1,Math.floor(e.length*t*2));return yh(i.slice(0,Math.min(i.length,e.length+8)),e)<=r}function yh(i,e){let t=i.length,r=e.length;if(t===0)return r;if(r===0)return t;let n=new Uint16Array((r+1)*(t+1));for(let o=0;o<=r;o++)n[o]=o;for(let o=1;o<=t;o++){n[o*(r+1)]=o;for(let a=1;a<=r;a++){let c=i[o-1]===e[a-1]?0:1;n[o*(r+1)+a]=Math.min(n[(o-1)*(r+1)+a]+1,n[o*(r+1)+(a-1)]+1,n[(o-1)*(r+1)+(a-1)]+c)}}return n[t*(r+1)+r]}var Ct,cl=h(()=>{Fn();Ct=class{constructor(){this._entries=[]}setEntries(e){this._entries=e.map(t=>Ki(t)).filter(Boolean)}addEntries(e){let t=e.map(n=>Ki(n)).filter(Boolean),r=new Set(this._entries.map(n=>n.id));for(let n of t)r.has(n.id)||(this._entries.push(n),r.add(n.id))}query(e,t={}){let r=String(e||"").trim().toLowerCase(),n=t.minChars??2,o=t.limit??12,a=t.fuzzy??.2,c=t.categories;if(r.length<n)return{results:[],groups:{}};let d=[];for(let f of this._entries){if(c&&c.length&&!c.includes(f.category))continue;let v=gh(f,r,a);v>0&&d.push({entry:f,score:v})}d.sort((f,v)=>v.score-f.score);let m=d.slice(0,o).map(f=>({...f.entry,_score:f.score})),_={};for(let f of m)_[f.category]||(_[f.category]=[]),_[f.category].push(f);return{results:m,groups:_}}}});function ul(i,e){if(!i||typeof e!="function")throw new Error("registerSearchProvider(id, fn) requires a non-empty id and function");dl.set(i,e)}async function Hn(){let i=[];for(let e of dl.values()){let t=await e();Array.isArray(t)&&i.push(...t)}return i}var dl,Pn=h(()=>{dl=new Map});function Gi(i,e){let t=String(i||""),r=String(e||"").trim();if(!r||r.length<2)return Rt(t);let n=t.toLowerCase(),o=r.toLowerCase(),a=n.indexOf(o),c=r.length;if(a===-1){if(a=_h(n,o),a===-1)return Rt(t);c=Math.min(r.length,t.length-a)}return Rt(t.slice(0,a))+'<mark class="velin-search-hit">'+Rt(t.slice(a,a+c))+"</mark>"+Rt(t.slice(a+c))}function Rt(i){return i.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")}function _h(i,e){let t=0,r=-1;for(let n=0;n<i.length&&t<e.length;n++)i[n]===e[t]&&(t===0&&(r=n),t++);return t===e.length?r:-1}var hl=h(()=>{});function ml(){if(typeof document>"u")return"https://example.invalid/docs/";let i=document.querySelector('script[src*="doc-search"]');if(i?.src){let r=new URL(i.src),n=r.pathname.indexOf(st);if(n!==-1)return r.origin+r.pathname.slice(0,n+st.length)}let e=window.location.pathname.replace(/\\/g,"/"),t=e.indexOf(st);return t>=0?new URL(e.slice(0,t+st.length),window.location.origin).href:new URL("./",window.location.href).href}function xh(i){let e=i.indexOf("#");return e===-1?{path:i,hash:""}:{path:i.slice(0,e),hash:i.slice(e)}}function fl(i){let e=i.indexOf(st);if(e<0)return null;let t=i.slice(e+st.length),r=t.split("/").filter(Boolean);return r.length>=2&&pl.has(r[0])&&pl.has(r[1])&&r[0]!==r[1]?r.slice(1).join("/"):t}function Yi(i){if(!i||i==="#")return"";if(typeof window>"u")return i;let{path:e,hash:t}=xh(i);if(!e)return t||"";let r=e;if(/^https?:\/\//i.test(e))try{r=fl(new URL(e).pathname)??e}catch{return""}try{let n=new URL(r||"",ml());return n.href+(t&&!n.href.includes("#")?t:"")}catch{return""}}var st,pl,vl=h(()=>{st="/docs/",pl=new Set(["getting-started","extend","guides","utilities","components","forms","layout","content","customize","animations","about","helpers","generated","migration"])});var bl={};y(bl,{createSearchWorker:()=>Ah});function Ah(i){if(typeof Worker>"u"||!i)return null;let e=i,t;try{t=new Worker(e,{type:"module"})}catch{return null}let r=new Map;t.onmessage=o=>{let{id:a,ok:c,result:d,error:m}=o.data||{},_=r.get(a);_&&(r.delete(a),c?_.resolve(d):_.reject(new Error(m||"Worker error")))},t.onerror=()=>{for(let o of r.values())o.reject(new Error("Worker failed"));r.clear()};function n(o,a){let c=++wh;return new Promise((d,m)=>{r.set(c,{resolve:d,reject:m}),t.postMessage({id:c,type:o,payload:a})})}return{setEntries(o){return n("setEntries",{entries:o})},query(o,a){return n("query",{query:o,options:a})},terminate(){t.terminate()}}}var wh,gl=h(()=>{wh=0});function yl(i){return Array.isArray(i)?i:i&&Array.isArray(i.entries)?i.entries:[]}function Bn(i={}){let e=new Ct,t=i.worker===!0,r=null;async function n(){if(!t||r)return r;if(typeof Worker>"u")return null;let{createSearchWorker:o}=await Promise.resolve().then(()=>(gl(),bl));return r=o(i.workerUrl),r}return{engine:e,async loadIndex(o){let a=[];if(typeof o=="string"){let d=await fetch(o);a=yl(await d.json())}else Array.isArray(o)&&(a=o);e.setEntries(a);let c=await n();return c&&await c.setEntries(e._entries),a.length},async query(o,a){let c=await n();return c?c.query(o,a):e.query(o,a)},addEntries(o){e.addEntries(o),n().then(a=>a?.setEntries(e._entries))}}}var De,qn,Eh,Un=h(()=>{cl();Pn();hl();Pn();Fn();vl();De=new Ct,qn=!1;Eh={engine:De,async loadIndex(i){let e=[];if(typeof i=="string"){let r=await fetch(i);if(!r.ok)throw new Error(`Failed to load search index: ${r.status}`);e=yl(await r.json())}else Array.isArray(i)&&(e=i);De.setEntries(e);let t=await Hn();return t.length&&De.addEntries(t),qn=!0,e.length},addEntries(i){De.addEntries(i)},async refreshProviders(){let i=await Hn();return i.length&&De.addEntries(i),i.length},async query(i,e={}){return!qn&&De._entries.length===0&&await this.refreshProviders(),De.query(i,e)},isReady(){return qn||De._entries.length>0}}});var jn={};y(jn,{bindDeclarativeSearch:()=>xl,default:()=>_l});function xl(i=document){i.querySelectorAll("[velin-search-input]").forEach(e=>{if(e.dataset.velinSearchBound)return;e.dataset.velinSearchBound="1";let t=e.closest("velin-search");if(!t){t=document.createElement("velin-search"),t.setAttribute("index",e.getAttribute("data-search-index")||"/search-index.json");let r=e.parentElement?.querySelector("[velin-search-results]");e.before(t),t.appendChild(e),r&&t.appendChild(r)}})}var kh,Vi,_l,Mt=h(()=>{Un();T();kh={docs:"Documentation",components:"Components",api:"API",examples:"Examples"},Vi=class extends HTMLElement{static get observedAttributes(){return["index","categories","min-chars","fuzzy","placeholder","debounce"]}constructor(){super(),this._search=Bn(),this._debounceTimer=null,this._activeIndex=-1,this._flatResults=[],this._indexLoaded=!1,this._listId=`velin-search-listbox-${Math.random().toString(36).slice(2,9)}`,this._mounted=!1}connectedCallback(){this._mounted||(this._mounted=!0,this._ensureMarkup(),this._loadIndex(),this._bindEvents())}disconnectedCallback(){this._teardown?.(),this._mounted=!1}get indexUrl(){return this.getAttribute("index")||"/search-index.json"}get minChars(){return parseInt(this.getAttribute("min-chars")||"2",10)}get fuzzy(){let e=this.getAttribute("fuzzy");return e===null?.2:parseFloat(e)||0}get categories(){let e=this.getAttribute("categories");return e?e.split(",").map(t=>t.trim()).filter(t=>Lt.includes(t)):null}get debounceMs(){return parseInt(this.getAttribute("debounce")||"120",10)}_ensureMarkup(){if(this.querySelector("[data-velin-search-input]"))return;let e=ye(this.getAttribute("placeholder")||"Search\u2026"),t=ye(this.getAttribute("aria-label")||"Search");this.innerHTML=`
1391
+ `}};typeof customElements<"u"&&!customElements.get("velin-live-dot")&&customElements.define("velin-live-dot",Xi);Dl=Xi});var zl={};g(zl,{default:()=>Nl});function Ji(i){return String(i||"").replace(/\D/g,"")}var hh,Qi,Nl,Yn=p(()=>{L();De();hh=`
1392
+ ${Q}
1393
+ :host { display: block; }
1394
+ .group {
1395
+ display: inline-flex;
1396
+ flex-wrap: wrap;
1397
+ gap: var(--velin-space-2, 0.5rem);
1398
+ }
1399
+ input {
1400
+ inline-size: 2.75rem;
1401
+ block-size: 2.75rem;
1402
+ text-align: center;
1403
+ font: inherit;
1404
+ font-size: var(--velin-text-lg, 1.25rem);
1405
+ font-weight: var(--velin-weight-semibold, 600);
1406
+ color: var(--velin-color-text, #111);
1407
+ background: var(--velin-color-surface-bright, #fff);
1408
+ border: 1px solid var(--velin-color-border, #ddd);
1409
+ border-radius: var(--velin-radius-md, 0.5rem);
1410
+ padding: 0;
1411
+ }
1412
+ input:focus-visible {
1413
+ outline: 3px solid var(--velin-color-focus, #2563eb);
1414
+ outline-offset: 2px;
1415
+ }
1416
+ input:disabled {
1417
+ opacity: 0.55;
1418
+ cursor: not-allowed;
1419
+ }
1420
+ @media (forced-colors: active) {
1421
+ input { border: 1px solid ButtonText; }
1422
+ }
1423
+ `;Qi=class extends HTMLElement{static get observedAttributes(){return["length","value","disabled","name","autocomplete","label"]}constructor(){super(),this.attachShadow({mode:"open"}),this._onInput=this._onInput.bind(this),this._onKeydown=this._onKeydown.bind(this),this._onPaste=this._onPaste.bind(this),this._onFocus=this._onFocus.bind(this)}connectedCallback(){this.shadowRoot.querySelector(".group")||this._render()}attributeChangedCallback(e,t,r){t!==r&&this.shadowRoot.querySelector(".group")&&(e==="length"?this._render():e==="value"?this._applyValue(this.getAttribute("value")||"",!1):e==="disabled"?this._syncDisabled():(e==="label"||e==="autocomplete"||e==="name")&&this._syncMeta())}get value(){return this._readValue()}set value(e){this.setAttribute("value",Ji(e).slice(0,this._length()))}focus(){let e=this._inputs();(e.find(r=>!r.value)||e[0])?.focus()}_length(){let e=parseInt(this.getAttribute("length")||"6",10);return Number.isFinite(e)&&e>0?Math.min(e,12):6}_inputs(){return[...this.shadowRoot?.querySelectorAll("input")||[]]}_readValue(){return this._inputs().map(e=>e.value).join("")}_render(){let e=this._length(),t=y(this.getAttribute("label")||"One-time password");this.shadowRoot.innerHTML=`
1424
+ <style>${hh}</style>
1425
+ <div class="group" role="group" aria-label="${t}" part="group"></div>
1426
+ `;let r=this.shadowRoot.querySelector(".group");for(let n=0;n<e;n++){let o=document.createElement("input");o.type="text",o.inputMode="numeric",o.pattern="[0-9]*",o.maxLength=1,o.setAttribute("aria-label",`Digit ${n+1} of ${e}`),o.dataset.index=String(n),o.part="digit",o.addEventListener("input",this._onInput),o.addEventListener("keydown",this._onKeydown),o.addEventListener("paste",this._onPaste),o.addEventListener("focus",this._onFocus),r.appendChild(o)}this._syncMeta(),this._syncDisabled(),this._applyValue(this.getAttribute("value")||"",!1)}_syncMeta(){let e=this.shadowRoot?.querySelector(".group");if(!e)return;e.setAttribute("aria-label",this.getAttribute("label")||"One-time password");let t=this.getAttribute("autocomplete")||"one-time-code",r=this.getAttribute("name")||"";this._inputs().forEach((n,o)=>{n.autocomplete=o===0?t:"off",n.name=r?`${r}-${o+1}`:""})}_syncDisabled(){let e=this.hasAttribute("disabled");this._inputs().forEach(t=>{t.disabled=e})}_applyValue(e,t){let r=Ji(e).slice(0,this._length()).split("");this._inputs().forEach((o,a)=>{o.value=r[a]||""}),t&&this._emit()}_emit(){let e=this._readValue();this.getAttribute("value")!==e&&this.setAttribute("value",e),this.dispatchEvent(new CustomEvent("velin-change",{bubbles:!0,composed:!0,detail:{value:e}})),e.length===this._length()&&this.dispatchEvent(new CustomEvent("velin-complete",{bubbles:!0,composed:!0,detail:{value:e}}))}_onInput(e){let t=e.target,r=Ji(t.value).slice(-1);t.value=r;let n=Number(t.dataset.index),o=this._inputs();r&&n<o.length-1&&o[n+1].focus(),this._emit()}_onKeydown(e){let t=e.target,r=Number(t.dataset.index),n=this._inputs();e.key==="Backspace"&&!t.value&&r>0?(n[r-1].focus(),n[r-1].value="",this._emit(),e.preventDefault()):e.key==="ArrowLeft"&&r>0?(n[r-1].focus(),e.preventDefault()):e.key==="ArrowRight"&&r<n.length-1&&(n[r+1].focus(),e.preventDefault())}_onPaste(e){e.preventDefault();let t=Ji(e.clipboardData?.getData("text")||"");if(!t)return;let r=Number(e.target.dataset.index),n=this._inputs(),o=t.split("");for(let c=0;c<o.length&&r+c<n.length;c++)n[r+c].value=o[c];let a=Math.min(r+o.length,n.length-1);n[a]?.focus(),this._emit()}_onFocus(e){e.target.select?.()}};customElements.define("velin-otp-input",Qi);Nl=Qi});var Pl={};g(Pl,{default:()=>$l,scorePassword:()=>Xn});function Xn(i){let e=String(i||""),t=0;return e.length>=8&&(t+=1),e.length>=12&&(t+=1),/[A-Z]/.test(e)&&/[a-z]/.test(e)&&(t+=1),/\d/.test(e)&&(t+=1),/[^A-Za-z0-9]/.test(e)&&(t+=1),{score:t,label:["Too weak","Weak","Okay","Strong","Excellent","Excellent"][t]||"Too weak",pct:Math.min(100,t*20)}}var mh,er,$l,Zn=p(()=>{De();mh=`
1427
+ ${Q}
1428
+ :host { display: block; }
1429
+ .wrap { display: grid; gap: var(--velin-space-2, 0.5rem); }
1430
+ .meter {
1431
+ inline-size: 100%;
1432
+ block-size: 0.5rem;
1433
+ background: var(--velin-color-surface-dim, #eee);
1434
+ border-radius: var(--velin-radius-full, 999px);
1435
+ overflow: hidden;
1436
+ }
1437
+ .bar {
1438
+ block-size: 100%;
1439
+ inline-size: 0%;
1440
+ border-radius: inherit;
1441
+ background: var(--velin-color-danger, #dc2626);
1442
+ transition: inline-size 160ms ease, background-color 160ms ease;
1443
+ }
1444
+ :host([data-score="2"]) .bar,
1445
+ :host([data-score="3"]) .bar { background: var(--velin-color-warning, #f59e0b); }
1446
+ :host([data-score="4"]) .bar,
1447
+ :host([data-score="5"]) .bar { background: var(--velin-color-success, #16a34a); }
1448
+ .label {
1449
+ margin: 0;
1450
+ font-size: var(--velin-text-sm, 0.875rem);
1451
+ color: var(--velin-color-text-muted, #666);
1452
+ }
1453
+ @media (prefers-reduced-motion: reduce) {
1454
+ .bar { transition: none; }
1455
+ }
1456
+ `,er=class extends HTMLElement{static get observedAttributes(){return["for","value","label"]}constructor(){super(),this.attachShadow({mode:"open"}),this._onTargetInput=this._onTargetInput.bind(this),this._target=null}connectedCallback(){this.shadowRoot.querySelector(".wrap")||(this.shadowRoot.innerHTML=`
1457
+ <style>${mh}</style>
1458
+ <div class="wrap" part="wrap">
1459
+ <div class="meter" part="meter" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">
1460
+ <div class="bar" part="bar"></div>
1461
+ </div>
1462
+ <p class="label" part="label" aria-live="polite"></p>
1463
+ </div>
1464
+ `),this._bindTarget(),this._render(this._currentValue())}disconnectedCallback(){this._unbindTarget()}attributeChangedCallback(e,t,r){t!==r&&(e==="for"?(this._bindTarget(),this._render(this._currentValue())):(e==="value"||e==="label")&&this._render(this._currentValue()))}_currentValue(){return this._target?this._target.value||"":this.getAttribute("value")||""}_unbindTarget(){this._target&&(this._target.removeEventListener("input",this._onTargetInput),this._target=null)}_bindTarget(){this._unbindTarget();let e=this.getAttribute("for");if(!e||typeof document>"u")return;let t=document.getElementById(e);t&&"value"in t&&(this._target=t,this._target.addEventListener("input",this._onTargetInput))}_onTargetInput(e){this._render(e.target.value||"")}_render(e){let t=Xn(e),r=this.shadowRoot?.querySelector(".meter"),n=this.shadowRoot?.querySelector(".bar"),o=this.shadowRoot?.querySelector(".label");if(!r||!n||!o)return;n.style.inlineSize=`${t.pct}%`,r.setAttribute("aria-valuenow",String(t.pct)),r.setAttribute("aria-valuetext",t.label);let a=this.getAttribute("label");o.textContent=a?`${a}: ${t.label}`:t.label,this.setAttribute("data-score",String(t.score)),this.dispatchEvent(new CustomEvent("velin-strength",{bubbles:!0,composed:!0,detail:t}))}};customElements.define("velin-password-strength",er);$l=er});function tr(i){if(!i||typeof i!="object")return null;let e=i,t=String(e.id||e.url||e.title||"").trim(),r=String(e.title||"").trim(),n=String(e.url||"").trim();if(!t||!r)return null;let o=Array.isArray(e.keywords)?e.keywords.map(u=>String(u)):typeof e.keywords=="string"?e.keywords.split(/\s+/).filter(Boolean):[],a=Dt.includes(e.category)?e.category:"docs";!e.category&&typeof e.url=="string"&&(e.url.includes("/components/")?a="components":e.url.includes("/cli/")||e.url.includes("/api/")?a="api":(e.url.includes("samples/")||e.url.includes("examples/"))&&(a="examples"));let c=n?Fs(n):`#${t}`;return{id:t,title:r,excerpt:String(e.excerpt||e.section||"").slice(0,200),url:c,category:a,keywords:o,weight:typeof e.weight=="number"?e.weight:1}}var Dt,Jn,Qn=p(()=>{L();Dt=["docs","components","api","examples"],Jn={components:1.25,api:1.15,docs:1,examples:.9}});function fh(i,e,t){let r=i.title.toLowerCase(),n=(i.excerpt||"").toLowerCase(),o=(i.keywords||[]).join(" ").toLowerCase(),a=(Jn[i.category]||1)*(i.weight||1),c=0;if(r===e)c=100;else if(r.startsWith(e))c=70;else if(r.includes(e))c=50;else if(o.includes(e))c=35;else if(n.includes(e))c=25;else if(t>0&&ir(r,e,t))c=40;else if(t>0&&ir(o,e,t))c=28;else if(t>0&&ir(n,e,t))c=18;else if(Fl(r,e))c=22;else if(t>0){for(let u of r.split(/[^a-z0-9]+/))if(u.length>=3&&ir(u,e,t)){c=32;break}}return c>0?c*a:0}function Fl(i,e){let t=0;for(let r=0;r<i.length&&t<e.length;r++)i[r]===e[t]&&t++;return t===e.length}function ir(i,e,t){if(!i||!e)return!1;if(i.includes(e)||Fl(i,e))return!0;let r=Math.max(1,Math.floor(e.length*t*2));return bh(i.slice(0,Math.min(i.length,e.length+8)),e)<=r}function bh(i,e){let t=i.length,r=e.length;if(t===0)return r;if(r===0)return t;let n=new Uint16Array((r+1)*(t+1));for(let o=0;o<=r;o++)n[o]=o;for(let o=1;o<=t;o++){n[o*(r+1)]=o;for(let a=1;a<=r;a++){let c=i[o-1]===e[a-1]?0:1;n[o*(r+1)+a]=Math.min(n[(o-1)*(r+1)+a]+1,n[o*(r+1)+(a-1)]+1,n[(o-1)*(r+1)+(a-1)]+c)}}return n[t*(r+1)+r]}var Ot,ql=p(()=>{Qn();Ot=class{constructor(){this._entries=[]}setEntries(e){this._entries=e.map(t=>tr(t)).filter(Boolean)}addEntries(e){let t=e.map(n=>tr(n)).filter(Boolean),r=new Set(this._entries.map(n=>n.id));for(let n of t)r.has(n.id)||(this._entries.push(n),r.add(n.id))}query(e,t={}){let r=String(e||"").trim().toLowerCase(),n=t.minChars??2,o=t.limit??12,a=t.fuzzy??.2,c=t.categories;if(r.length<n)return{results:[],groups:{}};let u=[];for(let m of this._entries){if(c&&c.length&&!c.includes(m.category))continue;let v=fh(m,r,a);v>0&&u.push({entry:m,score:v})}u.sort((m,v)=>v.score-m.score);let h=u.slice(0,o).map(m=>({...m.entry,_score:m.score})),b={};for(let m of h)b[m.category]||(b[m.category]=[]),b[m.category].push(m);return{results:h,groups:b}}}});function Bl(i,e){if(!i||typeof e!="function")throw new Error("registerSearchProvider(id, fn) requires a non-empty id and function");Hl.set(i,e)}async function eo(){let i=[];for(let e of Hl.values()){let t=await e();Array.isArray(t)&&i.push(...t)}return i}var Hl,to=p(()=>{Hl=new Map});function rr(i,e){let t=String(i||""),r=String(e||"").trim();if(!r||r.length<2)return Nt(t);let n=t.toLowerCase(),o=r.toLowerCase(),a=n.indexOf(o),c=r.length;if(a===-1){if(a=vh(n,o),a===-1)return Nt(t);c=Math.min(r.length,t.length-a)}return Nt(t.slice(0,a))+'<mark class="velin-search-hit">'+Nt(t.slice(a,a+c))+"</mark>"+Nt(t.slice(a+c))}function Nt(i){return i.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")}function vh(i,e){let t=0,r=-1;for(let n=0;n<i.length&&t<e.length;n++)i[n]===e[t]&&(t===0&&(r=n),t++);return t===e.length?r:-1}var Ul=p(()=>{});function Kl(){if(typeof document>"u")return"https://example.invalid/docs/";let i=document.querySelector('script[src*="doc-search"]');if(i?.src){let r=new URL(i.src),n=r.pathname.indexOf(dt);if(n!==-1)return r.origin+r.pathname.slice(0,n+dt.length)}let e=window.location.pathname.replace(/\\/g,"/"),t=e.indexOf(dt);return t>=0?new URL(e.slice(0,t+dt.length),window.location.origin).href:new URL("./",window.location.href).href}function gh(i){let e=i.indexOf("#");return e===-1?{path:i,hash:""}:{path:i.slice(0,e),hash:i.slice(e)}}function Gl(i){let e=i.indexOf(dt);if(e<0)return null;let t=i.slice(e+dt.length),r=t.split("/").filter(Boolean);return r.length>=2&&jl.has(r[0])&&jl.has(r[1])&&r[0]!==r[1]?r.slice(1).join("/"):t}function nr(i){if(!i||i==="#")return"";if(typeof window>"u")return i;let{path:e,hash:t}=gh(i);if(!e)return t||"";let r=e;if(/^https?:\/\//i.test(e))try{r=Gl(new URL(e).pathname)??e}catch{return""}try{let n=new URL(r||"",Kl());return n.href+(t&&!n.href.includes("#")?t:"")}catch{return""}}var dt,jl,Vl=p(()=>{dt="/docs/",jl=new Set(["getting-started","extend","guides","utilities","components","forms","layout","content","customize","animations","about","helpers","generated","migration"])});var Wl={};g(Wl,{createSearchWorker:()=>_h});function _h(i){if(typeof Worker>"u"||!i)return null;let e=i,t;try{t=new Worker(e,{type:"module"})}catch{return null}let r=new Map;t.onmessage=o=>{let{id:a,ok:c,result:u,error:h}=o.data||{},b=r.get(a);b&&(r.delete(a),c?b.resolve(u):b.reject(new Error(h||"Worker error")))},t.onerror=()=>{for(let o of r.values())o.reject(new Error("Worker failed"));r.clear()};function n(o,a){let c=++yh;return new Promise((u,h)=>{r.set(c,{resolve:u,reject:h}),t.postMessage({id:c,type:o,payload:a})})}return{setEntries(o){return n("setEntries",{entries:o})},query(o,a){return n("query",{query:o,options:a})},terminate(){t.terminate()}}}var yh,Yl=p(()=>{yh=0});function Xl(i){return Array.isArray(i)?i:i&&Array.isArray(i.entries)?i.entries:[]}function ro(i={}){let e=new Ot,t=i.worker===!0,r=null;async function n(){if(!t||r)return r;if(typeof Worker>"u")return null;let{createSearchWorker:o}=await Promise.resolve().then(()=>(Yl(),Wl));return r=o(i.workerUrl),r}return{engine:e,async loadIndex(o){let a=[];if(typeof o=="string"){let u=await fetch(o);a=Xl(await u.json())}else Array.isArray(o)&&(a=o);e.setEntries(a);let c=await n();return c&&await c.setEntries(e._entries),a.length},async query(o,a){let c=await n();return c?c.query(o,a):e.query(o,a)},addEntries(o){e.addEntries(o),n().then(a=>a?.setEntries(e._entries))}}}var Pe,io,wh,no=p(()=>{ql();to();Ul();to();Qn();Vl();Pe=new Ot,io=!1;wh={engine:Pe,async loadIndex(i){let e=[];if(typeof i=="string"){let r=await fetch(i);if(!r.ok)throw new Error(`Failed to load search index: ${r.status}`);e=Xl(await r.json())}else Array.isArray(i)&&(e=i);Pe.setEntries(e);let t=await eo();return t.length&&Pe.addEntries(t),io=!0,e.length},addEntries(i){Pe.addEntries(i)},async refreshProviders(){let i=await eo();return i.length&&Pe.addEntries(i),i.length},async query(i,e={}){return!io&&Pe._entries.length===0&&await this.refreshProviders(),Pe.query(i,e)},isReady(){return io||Pe._entries.length>0}}});var oo={};g(oo,{bindDeclarativeSearch:()=>Jl,default:()=>Zl});function Jl(i=document){i.querySelectorAll("[velin-search-input]").forEach(e=>{if(e.dataset.velinSearchBound)return;e.dataset.velinSearchBound="1";let t=e.closest("velin-search");if(!t){t=document.createElement("velin-search"),t.setAttribute("index",e.getAttribute("data-search-index")||"/search-index.json");let r=e.parentElement?.querySelector("[velin-search-results]");e.before(t),t.appendChild(e),r&&t.appendChild(r)}})}var xh,or,Zl,zt=p(()=>{no();L();xh={docs:"Documentation",components:"Components",api:"API",examples:"Examples"},or=class extends HTMLElement{static get observedAttributes(){return["index","categories","min-chars","fuzzy","placeholder","debounce"]}constructor(){super(),this._search=ro(),this._debounceTimer=null,this._activeIndex=-1,this._flatResults=[],this._indexLoaded=!1,this._listId=`velin-search-listbox-${Math.random().toString(36).slice(2,9)}`,this._mounted=!1}connectedCallback(){this._mounted||(this._mounted=!0,this._ensureMarkup(),this._loadIndex(),this._bindEvents())}disconnectedCallback(){this._teardown?.(),this._mounted=!1}get indexUrl(){return this.getAttribute("index")||"/search-index.json"}get minChars(){return parseInt(this.getAttribute("min-chars")||"2",10)}get fuzzy(){let e=this.getAttribute("fuzzy");return e===null?.2:parseFloat(e)||0}get categories(){let e=this.getAttribute("categories");return e?e.split(",").map(t=>t.trim()).filter(t=>Dt.includes(t)):null}get debounceMs(){return parseInt(this.getAttribute("debounce")||"120",10)}_ensureMarkup(){if(this.querySelector("[data-velin-search-input]"))return;let e=we(this.getAttribute("placeholder")||"Search\u2026"),t=we(this.getAttribute("aria-label")||"Search");this.innerHTML=`
1323
1465
  <div class="velin-search">
1324
1466
  <div class="velin-search__field">
1325
1467
  <input type="search" class="velin-search__input" data-velin-search-input
@@ -1330,7 +1472,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1330
1472
  <div class="velin-search__results" data-velin-search-results role="listbox"
1331
1473
  id="${this._listId}" hidden></div>
1332
1474
  </div>
1333
- `}_inputEl(){return this.querySelector("[data-velin-search-input]")}_resultsEl(){return this.querySelector("[data-velin-search-results]")}async _loadIndex(){try{await this._search.loadIndex(this.indexUrl),this._indexLoaded=!0}catch{this._indexLoaded=!1}}_bindEvents(){let e=this._inputEl(),t=this._resultsEl();if(!e||!t)return;e.addEventListener("input",()=>{clearTimeout(this._debounceTimer),this._debounceTimer=setTimeout(()=>this._runQuery(e.value),this.debounceMs)}),e.addEventListener("focus",()=>{e.value.trim().length>=this.minChars&&this._runQuery(e.value)}),e.addEventListener("keydown",n=>this._onKeydown(n,e,t));let r=n=>{this.contains(n.target)||this._hide(t,e)};document.addEventListener("click",r),this._teardown=()=>{document.removeEventListener("click",r),clearTimeout(this._debounceTimer)}}async _runQuery(e){let t=this._inputEl(),r=this._resultsEl();if(!t||!r)return;let n=e.trim();if(n.length<this.minChars){this._hide(r,t);return}this._indexLoaded||await this._loadIndex();let{groups:o}=await this._search.query(n,{minChars:this.minChars,fuzzy:this.fuzzy,categories:this.categories||void 0,limit:12});this._activeIndex=-1,this._renderResults(r,t,n,o),this._flatResults.length?(r.hidden=!1,r.classList.add("velin-search__results--open"),t.setAttribute("aria-expanded","true")):this._hide(r,t)}_renderResults(e,t,r,n){e.innerHTML="";let o=this.categories||[...Lt];this._flatResults=[];let a=0;for(let d of o){let m=n[d];if(!m?.length)continue;let _=`${this._listId}-group-${d}`,f=document.createElement("div");f.setAttribute("role","group"),f.setAttribute("aria-labelledby",_);let v=document.createElement("div");v.className="velin-search__group-label",v.id=_,v.textContent=kh[d]||d,f.appendChild(v);for(let C of m){let k=document.createElement("a"),A=Yi(C.url);A&&(k.href=A),k.className="velin-search__item",k.setAttribute("role","option"),k.id=`velin-search-opt-${a}`,k.innerHTML=`<span class="velin-search__title">${Gi(C.title,r)}</span><span class="velin-search__excerpt">${Gi(C.excerpt||"",r)}</span>`,k.addEventListener("click",S=>{S.preventDefault(),A&&window.location.assign(A)},!0),k.addEventListener("mouseenter",()=>this._setActive(a,e,t)),f.appendChild(k),this._flatResults.push(C),a++}e.appendChild(f)}let c=this._statusEl();c&&(c.textContent=this._flatResults.length?`${this._flatResults.length} results`:"No results")}_statusEl(){return this.querySelector("[data-velin-search-status]")}_setActive(e,t,r){this._activeIndex=e,t.querySelectorAll(".velin-search__item").forEach((n,o)=>{n.classList.toggle("velin-search__item--active",o===e),o===e&&(r.setAttribute("aria-activedescendant",n.id),n.scrollIntoView({block:"nearest"}))})}_onKeydown(e,t,r){if(e.key==="Escape"){this._hide(r,t);return}if(this._flatResults.length){if(e.key==="ArrowDown"){e.preventDefault();let n=this._activeIndex<this._flatResults.length-1?this._activeIndex+1:0;this._setActive(n,r,t)}else if(e.key==="ArrowUp"){e.preventDefault();let n=this._activeIndex>0?this._activeIndex-1:this._flatResults.length-1;this._setActive(n,r,t)}else if(e.key==="Enter"){let n=this._activeIndex>=0?this._flatResults[this._activeIndex]:this._flatResults[0],o=n?.url?Yi(n.url):"";o&&(e.preventDefault(),window.location.assign(o))}}}_hide(e,t){e.hidden=!0,e.classList.remove("velin-search__results--open"),t.setAttribute("aria-expanded","false"),t.removeAttribute("aria-activedescendant"),this._activeIndex=-1}},_l=Vi;typeof HTMLElement<"u"&&typeof customElements<"u"&&!customElements.get("velin-search")&&customElements.define("velin-search",Vi)});var wl={};y(wl,{default:()=>Lh});async function Th(i,e){if(e!=="aes-gcm"||!globalThis.crypto?.subtle)return JSON.stringify({encoding:"base64",payload:btoa(unescape(encodeURIComponent(i)))});let t=crypto.getRandomValues(new Uint8Array(12)),r=await crypto.subtle.generateKey({name:"AES-GCM",length:256},!1,["encrypt"]),n=new TextEncoder().encode(i),o=await crypto.subtle.encrypt({name:"AES-GCM",iv:t},r,n);return JSON.stringify({encoding:"aes-gcm",iv:Array.from(t),cipher:Array.from(new Uint8Array(o))})}var Sh,Xi,Lh,Al=h(()=>{T();Sh=`
1475
+ `}_inputEl(){return this.querySelector("[data-velin-search-input]")}_resultsEl(){return this.querySelector("[data-velin-search-results]")}async _loadIndex(){try{await this._search.loadIndex(this.indexUrl),this._indexLoaded=!0}catch{this._indexLoaded=!1}}_bindEvents(){let e=this._inputEl(),t=this._resultsEl();if(!e||!t)return;e.addEventListener("input",()=>{clearTimeout(this._debounceTimer),this._debounceTimer=setTimeout(()=>this._runQuery(e.value),this.debounceMs)}),e.addEventListener("focus",()=>{e.value.trim().length>=this.minChars&&this._runQuery(e.value)}),e.addEventListener("keydown",n=>this._onKeydown(n,e,t));let r=n=>{this.contains(n.target)||this._hide(t,e)};document.addEventListener("click",r),this._teardown=()=>{document.removeEventListener("click",r),clearTimeout(this._debounceTimer)}}async _runQuery(e){let t=this._inputEl(),r=this._resultsEl();if(!t||!r)return;let n=e.trim();if(n.length<this.minChars){this._hide(r,t);return}this._indexLoaded||await this._loadIndex();let{groups:o}=await this._search.query(n,{minChars:this.minChars,fuzzy:this.fuzzy,categories:this.categories||void 0,limit:12});this._activeIndex=-1,this._renderResults(r,t,n,o),this._flatResults.length?(r.hidden=!1,r.classList.add("velin-search__results--open"),t.setAttribute("aria-expanded","true")):this._hide(r,t)}_renderResults(e,t,r,n){e.innerHTML="";let o=this.categories||[...Dt];this._flatResults=[];let a=0;for(let u of o){let h=n[u];if(!h?.length)continue;let b=`${this._listId}-group-${u}`,m=document.createElement("div");m.setAttribute("role","group"),m.setAttribute("aria-labelledby",b);let v=document.createElement("div");v.className="velin-search__group-label",v.id=b,v.textContent=xh[u]||u,m.appendChild(v);for(let T of h){let k=document.createElement("a"),A=nr(T.url);A&&(k.href=A),k.className="velin-search__item",k.setAttribute("role","option"),k.id=`velin-search-opt-${a}`,k.innerHTML=`<span class="velin-search__title">${rr(T.title,r)}</span><span class="velin-search__excerpt">${rr(T.excerpt||"",r)}</span>`,k.addEventListener("click",S=>{S.preventDefault(),A&&window.location.assign(A)},!0),k.addEventListener("mouseenter",()=>this._setActive(a,e,t)),m.appendChild(k),this._flatResults.push(T),a++}e.appendChild(m)}let c=this._statusEl();c&&(c.textContent=this._flatResults.length?`${this._flatResults.length} results`:"No results")}_statusEl(){return this.querySelector("[data-velin-search-status]")}_setActive(e,t,r){this._activeIndex=e,t.querySelectorAll(".velin-search__item").forEach((n,o)=>{n.classList.toggle("velin-search__item--active",o===e),o===e&&(r.setAttribute("aria-activedescendant",n.id),n.scrollIntoView({block:"nearest"}))})}_onKeydown(e,t,r){if(e.key==="Escape"){this._hide(r,t);return}if(this._flatResults.length){if(e.key==="ArrowDown"){e.preventDefault();let n=this._activeIndex<this._flatResults.length-1?this._activeIndex+1:0;this._setActive(n,r,t)}else if(e.key==="ArrowUp"){e.preventDefault();let n=this._activeIndex>0?this._activeIndex-1:this._flatResults.length-1;this._setActive(n,r,t)}else if(e.key==="Enter"){let n=this._activeIndex>=0?this._flatResults[this._activeIndex]:this._flatResults[0],o=n?.url?nr(n.url):"";o&&(e.preventDefault(),window.location.assign(o))}}}_hide(e,t){e.hidden=!0,e.classList.remove("velin-search__results--open"),t.setAttribute("aria-expanded","false"),t.removeAttribute("aria-activedescendant"),this._activeIndex=-1}},Zl=or;typeof HTMLElement<"u"&&typeof customElements<"u"&&!customElements.get("velin-search")&&customElements.define("velin-search",or)});var Ql={};g(Ql,{default:()=>kh});async function Eh(i,e){if(e!=="aes-gcm"||!globalThis.crypto?.subtle)return JSON.stringify({encoding:"base64",payload:btoa(unescape(encodeURIComponent(i)))});let t=crypto.getRandomValues(new Uint8Array(12)),r=await crypto.subtle.generateKey({name:"AES-GCM",length:256},!1,["encrypt"]),n=new TextEncoder().encode(i),o=await crypto.subtle.encrypt({name:"AES-GCM",iv:t},r,n);return JSON.stringify({encoding:"aes-gcm",iv:Array.from(t),cipher:Array.from(new Uint8Array(o))})}var Ah,sr,kh,ec=p(()=>{L();Ah=`
1334
1476
  :host { display: block; }
1335
1477
  label { display: block; font-size: var(--velin-text-sm); margin-block-end: var(--velin-space-1); }
1336
1478
  input {
@@ -1350,12 +1492,12 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
1350
1492
  color: var(--velin-color-text-muted);
1351
1493
  margin-block-start: var(--velin-space-1);
1352
1494
  }
1353
- `;Xi=class extends HTMLElement{static get observedAttributes(){return["type","name","label","mode","autocomplete"]}constructor(){super(),this.attachShadow({mode:"open"}),this._onChange=null}connectedCallback(){this._onChange||this.render()}disconnectedCallback(){let e=this.shadowRoot?.querySelector("input");e&&this._onChange&&e.removeEventListener("change",this._onChange),this._onChange=null}attributeChangedCallback(){this.isConnected&&this.render()}render(){let e=as(this.getAttribute("type")),t=this.getAttribute("name")||"secure",r=this.getAttribute("label")||"Secure field",n=ye(this.getAttribute("autocomplete")||"off"),o=`velin-secure-${Math.random().toString(36).slice(2,9)}`,a=this.shadowRoot?.querySelector("input");a&&this._onChange&&a.removeEventListener("change",this._onChange),this.shadowRoot.innerHTML=`
1354
- <style>${Sh}</style>
1355
- <label for="${o}">${b(r)}</label>
1495
+ `;sr=class extends HTMLElement{static get observedAttributes(){return["type","name","label","mode","autocomplete"]}constructor(){super(),this.attachShadow({mode:"open"}),this._onChange=null}connectedCallback(){this._onChange||this.render()}disconnectedCallback(){let e=this.shadowRoot?.querySelector("input");e&&this._onChange&&e.removeEventListener("change",this._onChange),this._onChange=null}attributeChangedCallback(){this.isConnected&&this.render()}render(){let e=qs(this.getAttribute("type")),t=this.getAttribute("name")||"secure",r=this.getAttribute("label")||"Secure field",n=we(this.getAttribute("autocomplete")||"off"),o=`velin-secure-${Math.random().toString(36).slice(2,9)}`,a=this.shadowRoot?.querySelector("input");a&&this._onChange&&a.removeEventListener("change",this._onChange),this.shadowRoot.innerHTML=`
1496
+ <style>${Ah}</style>
1497
+ <label for="${o}">${y(r)}</label>
1356
1498
  <input id="${o}" type="${e}" autocomplete="${n}" part="input" />
1357
1499
  <p class="velin-field-help">Demo-only client encoding \u2014 use HTTPS and server-side crypto for real secrets.</p>
1358
- `;let c=this.shadowRoot.querySelector("input");this._onChange=async()=>{let d=this.getAttribute("mode")||"aes-gcm",m=await Th(c.value,d);this.dispatchEvent(new CustomEvent("velin-secure-submit",{bubbles:!0,detail:{name:t,payload:m}}))},c.addEventListener("change",this._onChange)}};customElements.get("velin-secure-field")||customElements.define("velin-secure-field",Xi);Lh=Xi});var Sl={};y(Sl,{default:()=>kl});function Ch(i){if(!i)return[];let e=String(i).trim();if(e.startsWith("["))try{let t=JSON.parse(e);return Array.isArray(t)?t.map(Number).filter(r=>Number.isFinite(r)):[]}catch{return[]}return e.split(/[\s,]+/).map(t=>Number.parseFloat(t)).filter(t=>Number.isFinite(t))}function Rh(i,e,t,r,n){let o=i.length;if(o===0)return[];if(o===1)return[[0,t/2],[e,t/2]];let a=Math.max(n-r,1e-6),c=e/(o-1);return i.map((d,m)=>{let _=m*c,f=t-(d-r)/a*t;return[_,f]})}function El(i){return i.length?i.map(([e,t],r)=>`${r===0?"M":"L"}${e.toFixed(2)},${t.toFixed(2)}`).join(" "):""}function Mh(i,e){if(!i.length)return"";let t=El(i),r=i[i.length-1][0],n=i[0][0];return`${t} L${r.toFixed(2)},${e} L${n.toFixed(2)},${e} Z`}var at,Zi,kl,Ji=h(()=>{at="http://www.w3.org/2000/svg";Zi=class extends HTMLElement{static get observedAttributes(){return["values","width","height","min","max","area","glow","animate","label"]}constructor(){super(),this._values=[],this._gradientId=`velin-spark-grad-${Math.random().toString(36).slice(2,8)}`}connectedCallback(){this._render()}attributeChangedCallback(){this.isConnected&&this._render()}get values(){return this._values.slice()}set values(e){Array.isArray(e)&&(this._values=e.filter(t=>Number.isFinite(Number(t))).map(Number),this.setAttribute("values",this._values.join(",")))}update(e){Array.isArray(e)&&(this._values=e.filter(t=>Number.isFinite(Number(t))).map(Number),this._render({tick:!0}))}_render({tick:e=!1}={}){let t=Number.parseFloat(this.getAttribute("width"))||320,r=Number.parseFloat(this.getAttribute("height"))||96,n=this._values.length?this._values:Ch(this.getAttribute("values"));if(this._values=n,!n.length){this.innerHTML="";return}let o=Number.parseFloat(this.getAttribute("min")),a=Number.parseFloat(this.getAttribute("max")),c=Number.isFinite(o)?o:Math.min(...n),d=Number.isFinite(a)?a:Math.max(...n),m=this.hasAttribute("area")&&this.getAttribute("area")!=="false",_=this.hasAttribute("glow")&&this.getAttribute("glow")!=="false",f=(this.getAttribute("animate")||"draw").toLowerCase(),v=Rh(n,t,r,c,d),C=El(v),k=m?Mh(v,r):"";this.innerHTML="";let A=document.createElementNS(at,"svg");if(A.setAttribute("viewBox",`0 0 ${t} ${r}`),A.setAttribute("preserveAspectRatio","none"),A.style.display="block",A.style.width="100%",A.style.height="100%",this._applyA11y(A),m){let j=document.createElementNS(at,"defs"),ue=document.createElementNS(at,"linearGradient");ue.setAttribute("id",this._gradientId),ue.setAttribute("x1","0"),ue.setAttribute("x2","0"),ue.setAttribute("y1","0"),ue.setAttribute("y2","1"),[["0%","currentColor","0.35"],["100%","currentColor","0"]].forEach(([re,K,ge])=>{let xe=document.createElementNS(at,"stop");xe.setAttribute("offset",re),xe.setAttribute("stop-color",K),xe.setAttribute("stop-opacity",ge),ue.appendChild(xe)}),j.appendChild(ue),A.appendChild(j);let z=document.createElementNS(at,"path");z.setAttribute("d",k),z.setAttribute("fill",`url(#${this._gradientId})`),z.setAttribute("stroke","none"),z.classList.add("velin-chart-area"),A.appendChild(z)}let S=document.createElementNS(at,"path");if(S.setAttribute("d",C),S.setAttribute("fill","none"),S.setAttribute("stroke","currentColor"),S.setAttribute("stroke-width","2"),S.setAttribute("stroke-linecap","round"),S.setAttribute("stroke-linejoin","round"),S.setAttribute("vector-effect","non-scaling-stroke"),A.appendChild(S),_&&A.classList.add("velin-chart-glow"),this.appendChild(A),f!=="none"){let j=typeof S.getTotalLength=="function"&&S.getTotalLength()||t;S.style.setProperty("--velin-chart-len",j.toFixed(2)),S.classList.add("velin-chart-line")}else S.style.strokeDasharray="",S.style.strokeDashoffset="";e&&(this.classList.remove("velin-spark-tick"),this.offsetWidth,this.classList.add("velin-spark-tick"))}_applyA11y(e){let t=(this.getAttribute("label")||this.getAttribute("aria-label")||"").trim();if(t){e.setAttribute("role","img"),e.setAttribute("aria-label",t),e.removeAttribute("aria-hidden"),e.removeAttribute("aria-labelledby");return}let r=this.closest("figure")?.querySelector("figcaption");if(r?.textContent?.trim()){r.id||(r.id=`velin-sparkline-cap-${Math.random().toString(36).slice(2,9)}`),e.setAttribute("role","img"),e.setAttribute("aria-labelledby",r.id),e.removeAttribute("aria-hidden"),e.removeAttribute("aria-label");return}e.setAttribute("role","presentation"),e.setAttribute("aria-hidden","true"),e.setAttribute("focusable","false"),e.removeAttribute("aria-label"),e.removeAttribute("aria-labelledby")}};typeof customElements<"u"&&!customElements.get("velin-sparkline")&&customElements.define("velin-sparkline",Zi);kl=Zi});var Kn,Tl=h(()=>{Kn={"velin-accordion":()=>Promise.resolve().then(()=>(Rr(),vs)),"velin-announcer":()=>Promise.resolve().then(()=>(an(),ma)),"velin-bottom-nav":()=>Promise.resolve().then(()=>(en(),ta)),"velin-calendar":()=>Promise.resolve().then(()=>(ln(),ya)),"velin-carousel":()=>Promise.resolve().then(()=>(Br(),Os)),"velin-code-block":()=>Promise.resolve().then(()=>(In(),Ya)),"velin-collapse":()=>Promise.resolve().then(()=>(Ur(),zs)),"velin-combobox":()=>Promise.resolve().then(()=>(Qr(),Qs)),"velin-command":()=>Promise.resolve().then(()=>(sn(),ha)),"velin-copy":()=>Promise.resolve().then(()=>(Pr(),Rs)),"velin-countdown":()=>Promise.resolve().then(()=>(Xr(),Gs)),"velin-counter":()=>Promise.resolve().then(()=>(Hi(),Xa)),"velin-data-table":()=>Promise.resolve().then(()=>(Dn(),el)),"velin-dialog":()=>Promise.resolve().then(()=>(Vr(),Ks)),"velin-drawer":()=>Promise.resolve().then(()=>(zr(),Es)),"velin-dropdown":()=>Promise.resolve().then(()=>(Cr(),ps)),"velin-email":()=>Promise.resolve().then(()=>(Ei(),ba)),"velin-file-dropzone":()=>Promise.resolve().then(()=>(On(),il)),"velin-form-summary":()=>Promise.resolve().then(()=>(zn(),nl)),"velin-icon":()=>Promise.resolve().then(()=>(Nr(),ws)),"velin-lightbox":()=>Promise.resolve().then(()=>(Gr(),Bs)),"velin-live-dot":()=>Promise.resolve().then(()=>(ji(),al)),"velin-menubar":()=>Promise.resolve().then(()=>(on(),da)),"velin-modal":()=>Promise.resolve().then(()=>(Lr(),us)),"velin-persist":()=>Promise.resolve().then(()=>(Jr(),Zs)),"velin-popover":()=>Promise.resolve().then(()=>(Hr(),Ls)),"velin-progress-ring":()=>Promise.resolve().then(()=>(Zr(),Vs)),"velin-rating":()=>Promise.resolve().then(()=>(nn(),la)),"velin-scroll-top":()=>Promise.resolve().then(()=>(qr(),Is)),"velin-scrollspy":()=>Promise.resolve().then(()=>(jr(),Fs)),"velin-search":()=>Promise.resolve().then(()=>(Mt(),jn)),"velin-secure-field":()=>Promise.resolve().then(()=>(Al(),wl)),"velin-segmented-control":()=>Promise.resolve().then(()=>(rn(),oa)),"velin-sheet":()=>Promise.resolve().then(()=>(tn(),ra)),"velin-sparkline":()=>Promise.resolve().then(()=>(Ji(),Sl)),"velin-stepper":()=>Promise.resolve().then(()=>(di(),Yr)),"velin-stepper-wc":()=>Promise.resolve().then(()=>(di(),Yr)),"velin-tabs":()=>Promise.resolve().then(()=>(Mr(),gs)),"velin-theme-toggle":()=>Promise.resolve().then(()=>(Fr(),Ss)),"velin-toast":()=>Promise.resolve().then(()=>(Ir(),_s)),"velin-tooltip":()=>Promise.resolve().then(()=>(li(),Kr)),"velin-tooltip-wc":()=>Promise.resolve().then(()=>(li(),Kr))}});function Cl(i,e={}){let t=new Set;for(let[r,n]of Object.entries(e)){if(n==="false"||n==="off")continue;let o=Ll[r];if(o&&o.forEach(a=>t.add(a)),r==="slide"&&n&&n!=="true"&&n!==""){let a=`slide-${n}`;Ll[a]?.forEach(c=>t.add(c))}}return t.forEach(r=>i.classList.add(r)),!i.classList.contains("velin-animate-on-scroll")&&e.reveal!==void 0&&i.classList.add("velin-animate-on-scroll"),[...t]}function Qi(i){i.classList.add(Wn),i.dataset.velinVisible="true"}function Rl(){return typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches}var Wn,Ll,Ml=h(()=>{Wn="velin-in-view",Ll={reveal:["velin-animate-on-scroll"],fade:["velin-animate-on-scroll","velin-animate-on-scroll--fade"],slide:["velin-animate-on-scroll","velin-animate-on-scroll--slide-up"],"slide-up":["velin-animate-on-scroll","velin-animate-on-scroll--slide-up"],"slide-down":["velin-animate-on-scroll","velin-animate-on-scroll--slide-down"],"slide-left":["velin-animate-on-scroll","velin-animate-on-scroll--slide-left"],"slide-right":["velin-animate-on-scroll","velin-animate-on-scroll--slide-right"],scale:["velin-animate-on-scroll","velin-animate-on-scroll--scale"],parallax:["velin-parallax"],"parallax-slow":["velin-parallax","velin-parallax--slow"],hover:["velin-animate-hover"],"hover-lift":["velin-animate-hover"],flip:["velin-animate-scale-in"],blur:["velin-animate-fade-in"]}});function Ih(i,e="true"){let t=e==="true"||e===""?60:parseInt(e,10)||60;[...i.children].forEach((n,o)=>{n.style.setProperty("--velin-stagger-delay",`${o*t}ms`),n.classList.add("velin-stagger-item")}),i.classList.add("velin-stagger")}function Dl(i=document){i.querySelectorAll(`[${Il}]`).forEach(e=>{e.dataset.velinStaggerDone||(e.dataset.velinStaggerDone="1",Ih(e,e.getAttribute(Il)||"true"))})}var Il,Ol=h(()=>{Il="velin-stagger"});function Dh(i,e={}){let t=typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches,r=typeof i=="string"?document.querySelector(i):i;r&&(r.scrollIntoView({behavior:t||e.instant?"auto":"smooth",block:e.block||"start",inline:e.inline||"nearest"}),r.tabIndex<0&&!r.hasAttribute("tabindex")&&r.setAttribute("tabindex","-1"),r.focus({preventScroll:!0}))}function Nl(i=document){i.querySelectorAll("[velin-scroll]").forEach(e=>{e.dataset.velinScrollBound||(e.dataset.velinScrollBound="1",e.addEventListener("click",t=>{let r=e.getAttribute("href");if(!r||!r.startsWith("#"))return;let n=document.querySelector(r);n&&(t.preventDefault(),Dh(n))}))})}var zl=h(()=>{});function qe(i={}){let e=i.root||(typeof document<"u"?document:null);if(!e)return()=>{};let t=i.selector||["[velin-reveal]","[velin-fade]","[velin-slide]","[velin-scale]","[velin-parallax]","[velin-hover]",".velin-animate-on-scroll"].join(","),r=e.querySelectorAll(t),n=Rl();for(let o of r){if(o.dataset.velinMotionInit)continue;o.dataset.velinMotionInit="1";let a={};for(let d of Oh)o.hasAttribute(d)&&(a[d.replace("velin-","")]=o.getAttribute(d)||"true");if(Cl(o,a),n){Qi(o);continue}let c=kt(o,d=>Qi(d));Gn.push(c)}return Dl(e),Nl(e),()=>{Gn.forEach(o=>o()),Gn=[],Ka()}}function $l(i={}){return qe({root:typeof document<"u"?document:null,selector:i.selector||".velin-animate-on-scroll"})}var Oh,Gn,Fl,Yn=h(()=>{Cn();Ml();Ol();zl();Oh=["velin-reveal","velin-fade","velin-slide","velin-scale","velin-parallax","velin-hover"],Gn=[];Fl={init:qe,observe:kt,markVisible:Qi,VISIBLE_CLASS:Wn}});function Pl({status:i,review:e,license:t,claims:r=[]}={}){let n=new Set(Array.isArray(r)?r.filter(Boolean):[]),o=zh[String(i||"").toLowerCase()];o&&n.add(o);let a=$h[String(e||"").toLowerCase()];if(a&&n.add(a),t){let c=String(t).toLowerCase().trim(),d=Fh[c]||(c.startsWith("cc")?"license.cc-by":null);d&&n.add(d)}return[...n]}function Hl(i,e="en"){let t=Nh[i];return t&&(t.label[e]||t.label.en)||i}function ql(i=[],e="en"){let t=["ai.generated","ai.assisted","review.human","review.verified","trust.official","license.cc-by","license.mit"];for(let r of t)if(i.includes(r))return Hl(r,e);return i[0]?Hl(i[0],e):e==="de"?"Transparenz":"Transparency"}var Nh,zh,$h,Fh,Bl=h(()=>{Nh={"ai.generated":{pillar:"ai",label:{en:"AI generated",de:"KI-generiert"}},"ai.assisted":{pillar:"ai",label:{en:"AI assisted",de:"KI-unterst\xFCtzt"}},"review.human":{pillar:"ai",label:{en:"Human reviewed",de:"Mensch gepr\xFCft"}},"review.verified":{pillar:"trust",label:{en:"Verified",de:"Verifiziert"}},"security.checked":{pillar:"trust",label:{en:"Security checked",de:"Security gepr\xFCft"}},"accessibility.checked":{pillar:"trust",label:{en:"Accessibility checked",de:"Barrierefreiheit gepr\xFCft"}},"trust.official":{pillar:"trust",label:{en:"Official",de:"Offiziell"}},"trust.signed":{pillar:"trust",label:{en:"Signed",de:"Signiert"}},"trust.opensource":{pillar:"trust",label:{en:"Open source",de:"Open Source"}},"privacy.gdpr":{pillar:"compliance",label:{en:"GDPR",de:"DSGVO"}},"license.cc-by":{pillar:"compliance",label:{en:"CC BY",de:"CC BY"}},"license.mit":{pillar:"compliance",label:{en:"MIT",de:"MIT"}},"license.apache-2":{pillar:"compliance",label:{en:"Apache-2.0",de:"Apache-2.0"}},"content.updated":{pillar:"metadata",label:{en:"Updated",de:"Aktualisiert"}},"content.author":{pillar:"metadata",label:{en:"Author",de:"Autor"}},"content.source":{pillar:"metadata",label:{en:"Source",de:"Quelle"}},"content.language":{pillar:"metadata",label:{en:"Language",de:"Sprache"}},"version.current":{pillar:"metadata",label:{en:"Version",de:"Version"}},"provenance.complete":{pillar:"provenance",label:{en:"Provenance complete",de:"Nachweis vollst\xE4ndig"}}},zh={generated:"ai.generated",assisted:"ai.assisted","ai-assisted":"ai.assisted","human-reviewed":"review.human","human-edited":"review.human",verified:"review.verified",edited:"review.human",draft:null},$h={human:"review.human","human-reviewed":"review.human",verified:"review.verified",none:null},Fh={"cc by 4.0":"license.cc-by","cc-by":"license.cc-by","cc-by-4.0":"license.cc-by",mit:"license.mit","apache-2.0":"license.apache-2",apache:"license.apache-2"}});function jl(){let i=new Map;return{register(e){if(!e?.id)throw new Error("DisclosureRecord requires id");return i.set(e.id,Ul(e)),i.get(e.id)},get(e){return i.get(e)||null},has(e){return i.has(e)},remove(e){return i.delete(e)},list(){return[...i.values()].map(e=>Ul(e))},query(e){return this.list().filter(e)},clear(){i.clear()},size(){return i.size},export(){return{schema:"velinstyle.transparency.registry",version:1,items:this.list()}},diff(e=[]){let t=new Map(e.map(a=>[a.id,a])),r=[],n=[],o=[];for(let a of i.values())t.has(a.id)?JSON.stringify(a)!==JSON.stringify(t.get(a.id))&&o.push(a.id):r.push(a.id);for(let a of t.keys())i.has(a)||n.push(a);return{added:r,removed:n,changed:o}}}}function Ul(i){return JSON.parse(JSON.stringify(i))}function Kl(i={}){if(i.id)return String(i.id).trim();let e=[i.file||"",i.selector||"",i.src||"",i.tag||"",i.type||""].join("|").toLowerCase(),t=2166136261;for(let r=0;r<e.length;r+=1)t^=e.charCodeAt(r),t=Math.imul(t,16777619);return`tx-${(t>>>0).toString(16)}`}var Vn=h(()=>{});function Wl(i={},e={}){let t=String(i.provider||e.provider||"api"),r=String(i.type||"ai").toLowerCase(),n=i.status!=null?String(i.status).toLowerCase():void 0,o=i.review!=null?String(i.review).toLowerCase():void 0,a=Ph(i.provenance||i);i.license&&!a.license&&(a.license=String(i.license)),i.model&&!a.source&&(a.source=`model:${i.model}`),i.generated;let c=n||(i.generated===!0?"generated":void 0),d=Pl({status:c,review:o,license:a.license,claims:i.claims}),m={selector:i.target?.selector||i.selector||void 0,tag:i.target?.tag||i.tag||void 0,src:i.target?.src||i.src||void 0,file:i.target?.file||e.file||i.file||void 0},_=Kl({id:i.id||i.velinTransparencyId,selector:m.selector,src:m.src,tag:m.tag,type:r,file:m.file}),f=e.lang==="de"?"de":"en",v=i.label?String(i.label):ql(d,f),C=i.updated||a.publishedAt||a.reviewedAt||a.createdAt||void 0;return{id:_,type:r,status:c,review:o,provider:t,claims:d,provenance:a,updated:C,label:v,description:i.description?String(i.description):void 0,renderer:i.renderer||i.overlay||"badge",tone:i.tone||qh(d),position:i.position||"top-right",target:m,meta:i.meta&&typeof i.meta=="object"?i.meta:void 0}}function Ph(i={}){let e={};for(let t of Hh){let r=i[t]??i[t.replace(/[A-Z]/g,n=>`-${n.toLowerCase()}`)];r!=null&&String(r).trim()&&(e[t]=String(r).trim())}return i["created-by"]&&(e.createdBy=String(i["created-by"])),i["created-at"]&&(e.createdAt=String(i["created-at"])),i["reviewed-at"]&&(e.reviewedAt=String(i["reviewed-at"])),i["approved-by"]&&(e.approvedBy=String(i["approved-by"])),i["published-at"]&&(e.publishedAt=String(i["published-at"])),e}function qh(i){return i.includes("ai.generated")?"generated":i.includes("review.verified")||i.includes("trust.official")?"verified":i.includes("review.human")?"human":i.includes("ai.assisted")?"mixed":"neutral"}var Hh,Gl=h(()=>{Bl();Vn();Hh=["createdBy","createdAt","reviewedAt","approvedBy","source","license","version","publishedAt"]});function Bh(i,e){Vl.set(i,e)}function Xl(i,e){if(typeof document>"u"||!i)return null;let t=e.renderer||"badge",r=Vl.get(t);return r?(r(i,e),i.querySelector(".velin-transparency")):Zl(i,e)}function Zl(i,e){getComputedStyle(i).position==="static"&&(i.style.position="relative");let r=i.querySelector(":scope > .velin-transparency");r||(r=document.createElement("div"),i.prepend(r));let n=e.renderer||"badge",o=e.tone||"neutral",a=e.position||"top-right";r.className=["velin-transparency",`velin-transparency--${n}`,`velin-transparency--tone-${o}`,`velin-transparency--pos-${a}`].join(" "),r.setAttribute("data-velin-transparency-id",e.id),r.setAttribute("role","note");let c=(e.claims||[]).join(", "),d=e.provenance||{},m=document.createElement("span");m.className="velin-sr-only";let _=(i.closest("[lang]")?.getAttribute("lang")||document.documentElement.lang||"en").startsWith("de")?"de":"en";m.textContent=_==="de"?`Transparenzhinweis: ${e.label}. ${c}. ${Yl(d,"de")}`:`Transparency notice: ${e.label}. ${c}. ${Yl(d,"en")}`;let f=document.createElement("span");f.className="velin-transparency__label",f.textContent=e.label||"Transparency";let v=document.createElement("span");return v.className="velin-transparency__details",v.hidden=n==="badge"||n==="icon",v.textContent=Uh(e,_),r.replaceChildren(m,f,v),e.description?r.title=e.description:v.textContent&&(r.title=v.textContent),i.setAttribute("data-velin-transparency",e.id),r}function Yl(i,e){let t=[];return i.createdBy&&t.push(e==="de"?`Erstellt von ${i.createdBy}`:`Created by ${i.createdBy}`),i.createdAt&&t.push(e==="de"?`am ${i.createdAt}`:`on ${i.createdAt}`),i.approvedBy&&t.push(e==="de"?`Freigegeben von ${i.approvedBy}`:`Approved by ${i.approvedBy}`),i.license&&t.push(i.license),i.version&&t.push(`v${i.version}`),t.join(". ")}function Uh(i,e){let t=i.provenance||{},r=[];return t.approvedBy&&r.push(e==="de"?`Freigabe: ${t.approvedBy}`:`Approved: ${t.approvedBy}`),t.license&&r.push(t.license),t.version&&r.push(`v${t.version}`),(t.updated||i.updated)&&r.push(i.updated||t.publishedAt||""),r.filter(Boolean).join(" \xB7 ")}function jh(i){return i==="corner-badge"||i==="stamp"?"badge":i==="floating-card"||i==="sidebar"?"panel":i==="banner"?"footer":i}var Vl,Jl=h(()=>{Vl=new Map;for(let i of["overlay","badge","inline","tooltip","footer","ribbon","panel","icon","corner-badge","stamp","sidebar","floating-card","banner"])Bh(i,(e,t)=>{Zl(e,{...t,renderer:jh(i)})})});var Jn={};y(Jn,{VelinTransparency:()=>Kh,attach:()=>Zn,enhanceAll:()=>Ql,getDefaultRegistry:()=>ec});function Zn(i,e={},t={}){if(!i)throw new Error("VelinTransparency.attach requires an element");let r=t.registry||Xn,n={...e,tag:i.tagName,src:i.getAttribute?.("src")||i.getAttribute?.("href")||e.src,selector:i.id?`#${i.id}`:e.selector,id:e.id||i.getAttribute?.("velin-transparency-id")||i.id,provider:e.provider||"api"};(i.hasAttribute?.("velin-transparency")||i.hasAttribute?.("velin-disclosure"))&&(n.type=n.type||i.getAttribute("velin-type")||"ai",n.status=n.status||i.getAttribute("velin-status"),n.review=n.review||i.getAttribute("velin-review"),n.license=n.license||i.getAttribute("velin-license"),n.label=n.label||i.getAttribute("velin-label"),n.description=n.description||i.getAttribute("velin-description"),n.overlay=n.overlay||i.getAttribute("velin-overlay")||i.getAttribute("velin-renderer"),n.provenance={createdBy:i.getAttribute("velin-created-by"),createdAt:i.getAttribute("velin-created-at"),reviewedAt:i.getAttribute("velin-reviewed-at"),approvedBy:i.getAttribute("velin-approved-by"),source:i.getAttribute("velin-source"),license:i.getAttribute("velin-license"),version:i.getAttribute("velin-version"),publishedAt:i.getAttribute("velin-published-at"),...e.provenance||{}});let o=Wl(n,{provider:n.provider,lang:t.lang});return r.register(o),i.hasAttribute("velin-transparency")||i.setAttribute("velin-transparency",""),i.hasAttribute("velin-transparency-id")||i.setAttribute("velin-transparency-id",o.id),Xl(i,o),o}function Ql(i=typeof document<"u"?document:null){if(!i?.querySelectorAll)return[];let e=[];return i.querySelectorAll("[velin-transparency], [velin-disclosure]").forEach(t=>{e.push(Zn(t,{},{registry:Xn}))}),e}function ec(){return Xn}var Xn,Kh,Qn=h(()=>{Gl();Jl();Vn();Xn=jl();Kh={attach:Zn,enhanceAll:Ql,getRegistry:ec}});function L(i,e){lt.set(i,e)}function ic(i){return lt.get(i)}function It(i,e,t={}){i.setAttribute("data-velin-component",e);for(let[r,n]of Object.entries(t))n!=null&&i.setAttribute(r,n);return Q(e)}function Wh(){L("velin-modal",{enhance(i){It(i,"velin-modal",{open:i.getAttribute("velin-modal")||""})}}),L("velin-tabs",{enhance:i=>It(i,"velin-tabs")}),L("velin-accordion",{enhance:i=>It(i,"velin-accordion")}),L("velin-tooltip",{enhance(i){let e=i.getAttribute("velin-tooltip")||i.getAttribute("title")||"";if(e&&i.hasAttribute("title")&&i.removeAttribute("title"),i.tagName==="VELIN-TOOLTIP"||i.tagName==="VELIN-TOOLTIP-WC")return i.setAttribute("content",e),Q("velin-tooltip");let t=document.createElement("velin-tooltip");t.setAttribute("content",e);let r=i.parentElement;return r&&(r.insertBefore(t,i),t.appendChild(i)),Q("velin-tooltip")}}),L("velin-copy",{enhance(i){let e=i.getAttribute("velin-copy")||i.textContent?.trim()||"";if(!i.querySelector("velin-copy")){let t=document.createElement("velin-copy");if(t.setAttribute("value",e),i.tagName==="BUTTON")return t.append(...i.childNodes),i.replaceWith(t),Q("velin-copy");i.appendChild(t)}return Q("velin-copy")}}),L("velin-counter",{enhance(i){It(i,"velin-counter",{value:i.getAttribute("velin-counter")||"0"})}}),L("velin-notify",{async enhance(i){await Q("velin-toast"),i.addEventListener("click",()=>{let e=i.getAttribute("velin-notify")||i.textContent||"";document.dispatchEvent(new CustomEvent("velin-toast-show",{detail:{message:e,variant:i.dataset.variant||"info"}}))})}}),L("velin-theme",{enhance(i){let e=i.getAttribute("velin-theme")||"toggle";if(e==="toggle")return i.querySelector("velin-theme-toggle")||i.appendChild(document.createElement("velin-theme-toggle")),Q("velin-theme-toggle");document.documentElement.setAttribute("data-velin-theme",e)}}),L("velin-scroll-top",{enhance(i){let e=i.getAttribute("velin-scroll-top"),t=e&&e!=="true"?e:"300";if(i.tagName==="VELIN-SCROLL-TOP")return e&&e!=="true"&&i.setAttribute("threshold",t),Q("velin-scroll-top");let r=document.querySelector("velin-scroll-top");return r||(r=document.createElement("velin-scroll-top"),r.setAttribute("threshold",t),(i===document.body||i===document.documentElement?document.body:i).appendChild(r)),Q("velin-scroll-top")}}),L("velin-progress",{enhance(i){if(i.hasAttribute("ring"))return It(i,"velin-progress-ring");i.classList.add("velin-progress");let t=parseInt(i.getAttribute("velin-progress")||"0",10);i.setAttribute("role","progressbar"),i.setAttribute("aria-valuenow",String(t)),i.style.setProperty("--velin-progress",`${Math.min(100,t)}%`)}}),L("velin-search",{async enhance(i){if(i.tagName!=="VELIN-SEARCH"){let e=document.createElement("velin-search");e.setAttribute("index",i.getAttribute("data-search-index")||"/search-index.json"),i.replaceWith(e),e.appendChild(i)}return Q("velin-search")}}),L("velin-lazy",{enhance(i){i.tagName==="IMG"&&(i.loading="lazy",i.decoding="async",(i.hasAttribute("velin-skeleton")||i.dataset.velinSkeleton)&&(i.classList.add("velin-skeleton","velin-skeleton--image"),i.addEventListener("load",()=>i.classList.remove("velin-skeleton","velin-skeleton--image"),{once:!0})))}}),L("velin-skeleton",{enhance(i){let e=i.getAttribute("velin-skeleton")||"text";i.classList.add("velin-skeleton",`velin-skeleton--${e}`),!(!!i.textContent?.trim()&&i.children.length>0)&&!i.textContent?.trim()&&i.setAttribute("aria-hidden","true")}}),L("velin-loading",{enhance(i){i.classList.add("velin-spinner"),i.setAttribute("aria-busy","true"),i.setAttribute("role","status"),i.getAttribute("aria-label")?.trim()||i.setAttribute("aria-label","Loading")}}),L("velin-grid",{enhance(i){let e=i.getAttribute("velin-grid")||"auto";i.classList.add("velin-grid"),e!=="auto"&&i.style.setProperty("--velin-grid-cols",e)}}),L("velin-anchor",{enhance(i){!i.id&&i.getAttribute("velin-anchor")&&(i.id=i.getAttribute("velin-anchor")),i.setAttribute("tabindex","-1")}}),L("velin-code",{async enhance(i){let e=i.getAttribute("velin-code")||i.getAttribute("language")||i.getAttribute("data-language")||"";if(i.classList.add("velin-code-block"),e&&e!=="true"&&(i.dataset.language=e,i.getAttribute("language")||i.setAttribute("language",e)),!i.querySelector("[data-velin-copy]")){let o=document.createElement("button");o.type="button",o.className="velin-code-block__copy velin-btn velin-btn--sm",o.textContent="Copy",o.setAttribute("data-velin-copy",""),o.setAttribute("velin-copy",i.querySelector("code")?.textContent||i.textContent||""),i.style.position="relative",i.appendChild(o)}await Q("velin-copy");let{initHighlight:t,highlightElement:r}=await Promise.resolve().then(()=>(Tt(),Mn));i.getAttribute("data-velin-highlight")==="immediate"||typeof matchMedia<"u"&&matchMedia("(prefers-reduced-motion: reduce)").matches?await r(i):t(i,{root:i})}}),L("velin-quote",{enhance(i){(i.tagName==="BLOCKQUOTE"||i.tagName==="Q")&&i.classList.add("velin-quote")}}),L("velin-highlight",{enhance(i){i.classList.add("velin-highlight")}}),L("velin-transparency",{async enhance(i){let{attach:e}=await Promise.resolve().then(()=>(Qn(),Jn));e(i)}}),L("velin-disclosure",{async enhance(i){let{attach:e}=await Promise.resolve().then(()=>(Qn(),Jn));i.hasAttribute("velin-transparency")||i.setAttribute("velin-transparency",""),e(i)}});for(let i of["velin-reveal","velin-fade","velin-slide","velin-scale","velin-parallax","velin-hover","velin-stagger","velin-scroll"])L(i,{enhance(){}})}async function eo(i=document){let e=[...lt.keys()].map(r=>`[${r}]`).join(","),t=i.querySelectorAll(e);for(let r of t)if(!tc.has(r)){for(let n of lt.keys()){if(!r.hasAttribute(n))continue;let o=lt.get(n);o?.enhance&&await o.enhance(r)}tc.add(r)}if(qe({root:i}),typeof HTMLElement<"u"){let{bindDeclarativeSearch:r}=await Promise.resolve().then(()=>(Mt(),jn));if(r(i),!document.querySelector("velin-announcer")){let{getAnnouncer:n}=await Promise.resolve().then(()=>(Le(),Ps));n()}}}function to(){return[...lt.keys()]}var lt,tc,rc=h(()=>{io();Yn();lt=new Map;Wh();tc=new WeakSet});var nc={};y(nc,{bootAttributes:()=>eo,getAttributeHandler:()=>ic,listRegisteredAttributes:()=>to,registerAttribute:()=>L});var ro=h(()=>{rc()});var oc={};y(oc,{PATTERNS:()=>er,VelinHapticObserver:()=>Ot,applyHaptic:()=>Dt,default:()=>Gh,vibrate:()=>no});function no(i){if(typeof navigator>"u"||!navigator.vibrate||window.matchMedia?.("(prefers-reduced-motion: reduce)")?.matches)return;let t=typeof i=="string"?er[i]||er.tap:i;navigator.vibrate(t)}function Dt(i){let e=i.getAttribute("haptic")||"tap";i.addEventListener("click",()=>no(e))}var er,Ot,Gh,oo=h(()=>{er={tap:[10],"double-tap":[10,50,10],success:[50],error:[100,30,100],warning:[30,20,30],long:[200]};Ot=class{constructor(){this._observer=null}start(e=document.body){e.querySelectorAll("[haptic]").forEach(Dt),this._observer=new MutationObserver(r=>{for(let n of r)for(let o of n.addedNodes)o.nodeType===1&&(o.hasAttribute?.("haptic")&&Dt(o),o.querySelectorAll?.("[haptic]").forEach(Dt))}),this._observer.observe(e,{childList:!0,subtree:!0})}stop(){this._observer?.disconnect()}},Gh=Ot});function Vh(i){return typeof customElements>"u"?Promise.reject(new Error("customElements not available")):customElements.whenDefined(i)}async function Q(i){let e=Kn[i];if(!e)throw new Error(`Unknown Velin component: ${i}`);if(so.has(i))return so.get(i);let t=e().then(r=>{let n=r.default;return n&&!customElements.get(i)&&customElements.define(i,n),n});return so.set(i,t),t}async function sc(i){return Promise.all(i.map(e=>Q(e)))}function Xh(i){let e=new Set;i.querySelectorAll("[data-velin-component]").forEach(t=>{let r=t.getAttribute("data-velin-component");r&&e.add(r.startsWith("velin-")?r:`velin-${r}`)});for(let t of i.querySelectorAll("*")){let r=t.tagName?.toLowerCase();r&&Yh.test(r)&&Kn[r]&&e.add(r)}return e}async function Zh(i=document,e={}){let t=e.tags?.length?new Set(e.tags):Xh(i),r=sc([...t]);if(e.attributes){let{bootAttributes:n}=await Promise.resolve().then(()=>(ro(),nc));await n(i)}if(e.highlight){let{initHighlight:n}=await Promise.resolve().then(()=>(Tt(),Mn));n(i)}if(e.haptic){let{VelinHapticObserver:n}=await Promise.resolve().then(()=>(oo(),oc));new n().start(i instanceof Document?i.body:i)}return r}var so,Yh,io=h(()=>{Tl();so=new Map,Yh=/^velin-[a-z0-9-]+$/});Lr();Cr();Rr();Mr();Ir();Nr();zr();Fr();Hr();Pr();qr();Br();Ur();jr();li();Gr();di();Vr();Xr();Zr();Jr();Qr();en();tn();rn();nn();on();sn();an();Ei();io();Ji();Hi();ji();In();Dn();zn();ln();On();Mt();Mt();Yn();var Jh=$l;if(typeof document<"u"){let i=()=>{document.documentElement?.hasAttribute("data-velin-reveal-auto")&&qe()};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",i,{once:!0}):i()}Le();Le();function Qh(i={}){if(typeof document>"u")return;let{announcer:e=!0,scrollPadding:t=!0,skipLink:r=!1}=i;if(e&&et(),t){let n=document.querySelector(".velin-nav, .velin-doc-header, .site-nav, [data-velin-fixed-nav]");if(n){let o=n.getBoundingClientRect().height;document.documentElement.style.setProperty("--velin-nav-height",`${Math.ceil(o)}px`),document.documentElement.classList.add("velin-scroll-pt-nav")}}if(r&&!document.querySelector(".velin-skip-link")&&document.getElementById("main")){let n=document.createElement("a");n.href="#main",n.className="velin-skip-link",n.textContent="Skip to main content",document.body.prepend(n)}}Un();ro();Tt();var ac=typeof window<"u"&&window.matchMedia?window.matchMedia("(prefers-reduced-motion: reduce)"):null,pc={duration:250,easing:"var(--velin-ease-expo-out, cubic-bezier(0.16, 1, 0.3, 1))",itemSelector:":scope > *"};function ao(i,e){return Array.from(i.querySelectorAll(e))}function mc(i,e,t={}){if(!i||typeof e!="function")return;let r={...pc,...t},n=ac&&ac.matches,o=ao(i,r.itemSelector),a=new Map;if(o.forEach(d=>{d.hidden||a.set(d,d.getBoundingClientRect())}),e(),n)return;ao(i,r.itemSelector).forEach(d=>{if(d.hidden)return;let m=a.get(d),_=d.getBoundingClientRect();if(!m){if(typeof d.animate!="function")return;d.animate([{opacity:0,transform:"scale(0.96)"},{opacity:1,transform:"scale(1)"}],{duration:r.duration,easing:r.easing,fill:"both"});return}let f=m.left-_.left,v=m.top-_.top;f===0&&v===0||typeof d.animate=="function"&&d.animate([{transform:`translate(${f}px, ${v}px)`},{transform:"translate(0, 0)"}],{duration:r.duration,easing:r.easing,fill:"both"})})}function fc(i,e,t={}){if(!i||typeof e!="function")return;let r={...pc,...t};mc(i,()=>{ao(i,r.itemSelector).forEach(n=>{n.hidden=!e(n)})},r)}function lc(i){return i?String(i).toLowerCase().split(/[\s,|]+/).map(e=>e.trim()).filter(Boolean):[]}function ep(i,e,t){return e.length?t==="all"?e.every(r=>i.includes(r)):e.some(r=>i.includes(r)):!0}function tp(i,e){return e?((i.getAttribute("data-tags")||"")+" "+(i.getAttribute("data-search")||"")+" "+(i.textContent||"")).toLowerCase().includes(e.toLowerCase()):!0}var lo=class{constructor(e){this.container=e,this.tag="",this.search="",this.matchMode=e.getAttribute("data-velin-filter-mode")==="all"?"all":"any",this.itemSelector=e.getAttribute("data-velin-filter-item")||":scope > *"}apply(){let e=lc(this.tag),t=this.search;fc(this.container,r=>{let n=lc(r.getAttribute("data-tags"));return ep(n,e,this.matchMode)&&tp(r,t)},{itemSelector:this.itemSelector})}},cc=new WeakMap;function dc(i){let e=cc.get(i);return e||(e=new lo(i),cc.set(i,e)),e}function uc(i){let e=i.getAttribute("data-velin-filter-target");if(!e)return null;try{return document.querySelector(e)}catch{return null}}function ip(i,e){i&&i.querySelectorAll("[data-velin-filter-value]").forEach(t=>{t===e?t.setAttribute("data-velin-filter-active",""):t.removeAttribute("data-velin-filter-active")})}function hc(){if(typeof document>"u")return;document.addEventListener("click",e=>{let t=e.target.closest("[data-velin-filter-value]");if(!t)return;let r=uc(t);if(!r)return;let n=t.closest("[data-velin-filter-group]")||t.parentElement;ip(n,t);let o=dc(r);o.tag=t.getAttribute("data-velin-filter-value")||"",(o.tag.toLowerCase()==="all"||o.tag==="*")&&(o.tag=""),o.apply()});let i=e=>{let t=e.target.closest("[data-velin-filter-input]");if(!t)return;let r=uc(t);if(!r)return;let n=dc(r),o=t.value||(typeof t.getAttribute=="function"?t.getAttribute("value"):"");n.search=(o||"").trim(),n.apply()};document.addEventListener("input",i),document.addEventListener("change",i)}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",hc,{once:!0}):hc());T();oo();Z();Ji();Hi();ji();Ei();export{er as HapticPatterns,fs as VelinAccordion,pa as VelinAnnouncer,ea as VelinBottomNav,ga as VelinCalendar,Ds as VelinCarousel,Ga as VelinCodeBlock,Ns as VelinCollapse,Js as VelinCombobox,ua as VelinCommand,Cs as VelinCopy,Ws as VelinCountdown,Va as VelinCounter,Qa as VelinDataTable,js as VelinDialog,As as VelinDrawer,hs as VelinDropdown,va as VelinEmail,tl as VelinFileDropzone,rl as VelinFormSummary,Ot as VelinHapticObserver,xs as VelinIcon,qs as VelinLightbox,sl as VelinLiveDot,ca as VelinMenubar,ds as VelinModal,Xs as VelinPersist,Ts as VelinPopover,Ys as VelinProgressRing,aa as VelinRating,Ms as VelinScrollTop,$s as VelinScrollspy,_l as VelinSearch,na as VelinSegmentedControl,ia as VelinSheet,kl as VelinSparkline,Us as VelinStepper,yt as VelinStepperWC,bs as VelinTabs,ks as VelinThemeToggle,ys as VelinToast,Hs as VelinTooltip,gt as VelinTooltipWC,ne as announce,Dt as applyHaptic,xl as bindDeclarativeSearch,eo as bootAttributes,Zh as bootFromDOM,G as clearBackgroundInert,Yd as createSafeHTML,Bn as createSearch,b as escapeHTML,ye as escapeHTMLAttribute,fc as filterList,mc as flipReorder,et as getAnnouncer,fe as getFocusableElements,cs as getTrustedPolicy,Et as highlightAll,de as highlightElement,Qh as initA11y,Ie as initHighlight,qe as initMotion,Jh as initReveal,Q as lazyDefine,Me as lazyLoadLanguage,to as listRegisteredAttributes,St as observeCodeBlocks,sc as register,L as registerAttribute,ot as registerLanguage,ul as registerSearchProvider,Di as renderTokens,le as restoreFocus,te as rovingTabindex,$e as sanitizeURL,ae as saveFocus,ce as setBackgroundInert,Tr as stripControlChars,ee as trapFocus,Fl as velinMotion,Eh as velinSearch,Wa as velinSyntax,no as vibrate,Vh as whenDefined};
1500
+ `;let c=this.shadowRoot.querySelector("input");this._onChange=async()=>{let u=this.getAttribute("mode")||"aes-gcm",h=await Eh(c.value,u);this.dispatchEvent(new CustomEvent("velin-secure-submit",{bubbles:!0,detail:{name:t,payload:h}}))},c.addEventListener("change",this._onChange)}};customElements.get("velin-secure-field")||customElements.define("velin-secure-field",sr);kh=sr});var rc={};g(rc,{default:()=>ic});function Sh(i){if(!i)return[];let e=String(i).trim();if(e.startsWith("["))try{let t=JSON.parse(e);return Array.isArray(t)?t.map(Number).filter(r=>Number.isFinite(r)):[]}catch{return[]}return e.split(/[\s,]+/).map(t=>Number.parseFloat(t)).filter(t=>Number.isFinite(t))}function Th(i,e,t,r,n){let o=i.length;if(o===0)return[];if(o===1)return[[0,t/2],[e,t/2]];let a=Math.max(n-r,1e-6),c=e/(o-1);return i.map((u,h)=>{let b=h*c,m=t-(u-r)/a*t;return[b,m]})}function tc(i){return i.length?i.map(([e,t],r)=>`${r===0?"M":"L"}${e.toFixed(2)},${t.toFixed(2)}`).join(" "):""}function Ch(i,e){if(!i.length)return"";let t=tc(i),r=i[i.length-1][0],n=i[0][0];return`${t} L${r.toFixed(2)},${e} L${n.toFixed(2)},${e} Z`}var pt,ar,ic,lr=p(()=>{pt="http://www.w3.org/2000/svg";ar=class extends HTMLElement{static get observedAttributes(){return["values","width","height","min","max","area","glow","animate","label"]}constructor(){super(),this._values=[],this._gradientId=`velin-spark-grad-${Math.random().toString(36).slice(2,8)}`}connectedCallback(){this._render()}attributeChangedCallback(){this.isConnected&&this._render()}get values(){return this._values.slice()}set values(e){Array.isArray(e)&&(this._values=e.filter(t=>Number.isFinite(Number(t))).map(Number),this.setAttribute("values",this._values.join(",")))}update(e){Array.isArray(e)&&(this._values=e.filter(t=>Number.isFinite(Number(t))).map(Number),this._render({tick:!0}))}_render({tick:e=!1}={}){let t=Number.parseFloat(this.getAttribute("width"))||320,r=Number.parseFloat(this.getAttribute("height"))||96,n=this._values.length?this._values:Sh(this.getAttribute("values"));if(this._values=n,!n.length){this.innerHTML="";return}let o=Number.parseFloat(this.getAttribute("min")),a=Number.parseFloat(this.getAttribute("max")),c=Number.isFinite(o)?o:Math.min(...n),u=Number.isFinite(a)?a:Math.max(...n),h=this.hasAttribute("area")&&this.getAttribute("area")!=="false",b=this.hasAttribute("glow")&&this.getAttribute("glow")!=="false",m=(this.getAttribute("animate")||"draw").toLowerCase(),v=Th(n,t,r,c,u),T=tc(v),k=h?Ch(v,r):"";this.innerHTML="";let A=document.createElementNS(pt,"svg");if(A.setAttribute("viewBox",`0 0 ${t} ${r}`),A.setAttribute("preserveAspectRatio","none"),A.style.display="block",A.style.width="100%",A.style.height="100%",this._applyA11y(A),h){let K=document.createElementNS(pt,"defs"),me=document.createElementNS(pt,"linearGradient");me.setAttribute("id",this._gradientId),me.setAttribute("x1","0"),me.setAttribute("x2","0"),me.setAttribute("y1","0"),me.setAttribute("y2","1"),[["0%","currentColor","0.35"],["100%","currentColor","0"]].forEach(([se,G,_e])=>{let ke=document.createElementNS(pt,"stop");ke.setAttribute("offset",se),ke.setAttribute("stop-color",G),ke.setAttribute("stop-opacity",_e),me.appendChild(ke)}),K.appendChild(me),A.appendChild(K);let z=document.createElementNS(pt,"path");z.setAttribute("d",k),z.setAttribute("fill",`url(#${this._gradientId})`),z.setAttribute("stroke","none"),z.classList.add("velin-chart-area"),A.appendChild(z)}let S=document.createElementNS(pt,"path");if(S.setAttribute("d",T),S.setAttribute("fill","none"),S.setAttribute("stroke","currentColor"),S.setAttribute("stroke-width","2"),S.setAttribute("stroke-linecap","round"),S.setAttribute("stroke-linejoin","round"),S.setAttribute("vector-effect","non-scaling-stroke"),A.appendChild(S),b&&A.classList.add("velin-chart-glow"),this.appendChild(A),m!=="none"){let K=typeof S.getTotalLength=="function"&&S.getTotalLength()||t;S.style.setProperty("--velin-chart-len",K.toFixed(2)),S.classList.add("velin-chart-line")}else S.style.strokeDasharray="",S.style.strokeDashoffset="";e&&(this.classList.remove("velin-spark-tick"),this.offsetWidth,this.classList.add("velin-spark-tick"))}_applyA11y(e){let t=(this.getAttribute("label")||this.getAttribute("aria-label")||"").trim();if(t){e.setAttribute("role","img"),e.setAttribute("aria-label",t),e.removeAttribute("aria-hidden"),e.removeAttribute("aria-labelledby");return}let r=this.closest("figure")?.querySelector("figcaption");if(r?.textContent?.trim()){r.id||(r.id=`velin-sparkline-cap-${Math.random().toString(36).slice(2,9)}`),e.setAttribute("role","img"),e.setAttribute("aria-labelledby",r.id),e.removeAttribute("aria-hidden"),e.removeAttribute("aria-label");return}e.setAttribute("role","presentation"),e.setAttribute("aria-hidden","true"),e.setAttribute("focusable","false"),e.removeAttribute("aria-label"),e.removeAttribute("aria-labelledby")}};typeof customElements<"u"&&!customElements.get("velin-sparkline")&&customElements.define("velin-sparkline",ar);ic=ar});var so,nc=p(()=>{so={"velin-accordion":()=>Promise.resolve().then(()=>(Or(),ms)),"velin-announcer":()=>Promise.resolve().then(()=>(yn(),Fa)),"velin-bottom-nav":()=>Promise.resolve().then(()=>(hn(),Sa)),"velin-calendar":()=>Promise.resolve().then(()=>(_n(),ja)),"velin-carousel":()=>Promise.resolve().then(()=>(en(),oa)),"velin-code-block":()=>Promise.resolve().then(()=>(Un(),yl)),"velin-collapse":()=>Promise.resolve().then(()=>(tn(),aa)),"velin-combobox":()=>Promise.resolve().then(()=>(pn(),Ea)),"velin-command":()=>Promise.resolve().then(()=>(gn(),$a)),"velin-copy":()=>Promise.resolve().then(()=>(Jr(),ta)),"velin-countdown":()=>Promise.resolve().then(()=>(cn(),ga)),"velin-counter":()=>Promise.resolve().then(()=>(Ki(),wl)),"velin-data-table":()=>Promise.resolve().then(()=>(jn(),kl)),"velin-dialog":()=>Promise.resolve().then(()=>(ln(),ba)),"velin-drawer":()=>Promise.resolve().then(()=>(Wr(),Ws)),"velin-dropdown":()=>Promise.resolve().then(()=>(Dr(),ds)),"velin-email":()=>Promise.resolve().then(()=>(Li(),Ba)),"velin-empty-state":()=>Promise.resolve().then(()=>(Kn(),Tl)),"velin-file-dropzone":()=>Promise.resolve().then(()=>(Gn(),Ll)),"velin-form-summary":()=>Promise.resolve().then(()=>(Wn(),Ml)),"velin-icon":()=>Promise.resolve().then(()=>(Vr(),Gs)),"velin-lightbox":()=>Promise.resolve().then(()=>(sn(),ha)),"velin-live-dot":()=>Promise.resolve().then(()=>(Zi(),Ol)),"velin-menubar":()=>Promise.resolve().then(()=>(vn(),Na)),"velin-modal":()=>Promise.resolve().then(()=>(Ir(),cs)),"velin-otp-input":()=>Promise.resolve().then(()=>(Yn(),zl)),"velin-password-strength":()=>Promise.resolve().then(()=>(Zn(),Pl)),"velin-persist":()=>Promise.resolve().then(()=>(dn(),xa)),"velin-popover":()=>Promise.resolve().then(()=>(Zr(),Qs)),"velin-progress-ring":()=>Promise.resolve().then(()=>(un(),_a)),"velin-rating":()=>Promise.resolve().then(()=>(bn(),Da)),"velin-scroll-top":()=>Promise.resolve().then(()=>(Qr(),ra)),"velin-scrollspy":()=>Promise.resolve().then(()=>(rn(),ca)),"velin-search":()=>Promise.resolve().then(()=>(zt(),oo)),"velin-secure-field":()=>Promise.resolve().then(()=>(ec(),Ql)),"velin-segmented-control":()=>Promise.resolve().then(()=>(fn(),Ra)),"velin-sheet":()=>Promise.resolve().then(()=>(mn(),Ca)),"velin-sparkline":()=>Promise.resolve().then(()=>(lr(),rc)),"velin-stepper":()=>Promise.resolve().then(()=>(fi(),an)),"velin-stepper-wc":()=>Promise.resolve().then(()=>(fi(),an)),"velin-tabs":()=>Promise.resolve().then(()=>(Nr(),bs)),"velin-theme-toggle":()=>Promise.resolve().then(()=>(Xr(),Zs)),"velin-toast":()=>Promise.resolve().then(()=>(jr(),js)),"velin-tooltip":()=>Promise.resolve().then(()=>(hi(),nn)),"velin-tooltip-wc":()=>Promise.resolve().then(()=>(hi(),nn))}});function Ee(i,e={}){let t=new Set;for(let[r,n]of Object.entries(e)){if(n==="false"||n==="off")continue;if(r==="motion"&&n&&n!=="true"){let c=ao[n];c&&c.forEach(u=>t.add(u));continue}let o=ao[r];if(o&&o.forEach(a=>t.add(a)),r==="slide"&&n&&n!=="true"&&n!==""){let a=`slide-${n}`;ao[a]?.forEach(c=>t.add(c))}}return t.forEach(r=>i.classList.add(r)),!i.classList.contains("velin-animate-on-scroll")&&e.reveal!==void 0&&i.classList.add("velin-animate-on-scroll"),[...t]}function j(i){i.classList.add(lo),i.dataset.velinVisible="true"}function te(){return typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches}var lo,ao,Ve=p(()=>{lo="velin-in-view",ao={reveal:["velin-animate-on-scroll"],fade:["velin-animate-on-scroll","velin-animate-on-scroll--fade"],slide:["velin-animate-on-scroll","velin-animate-on-scroll--slide-up"],"slide-up":["velin-animate-on-scroll","velin-animate-on-scroll--slide-up"],"slide-down":["velin-animate-on-scroll","velin-animate-on-scroll--slide-down"],"slide-left":["velin-animate-on-scroll","velin-animate-on-scroll--slide-left"],"slide-right":["velin-animate-on-scroll","velin-animate-on-scroll--slide-right"],scale:["velin-animate-on-scroll","velin-animate-on-scroll--scale"],zoom:["velin-animate-on-scroll","velin-animate-on-scroll--scale"],parallax:["velin-parallax"],"parallax-slow":["velin-parallax","velin-parallax--slow"],hover:["velin-animate-hover"],"hover-lift":["velin-animate-hover"],lift:["velin-animate-hover"],flip:["velin-animate-scale-in"],blur:["velin-animate-fade-in"],pulse:["velin-animate-pulse"],shake:["velin-animate-shake"],bounce:["velin-animate-bounce"],shimmer:["velin-skeleton"],heroReveal:["velin-animate-on-scroll","velin-animate-on-scroll--fade"],fadeOut:["velin-animate-fade-out"]}});function Lh(i,e="true"){let t=e==="true"||e===""?60:parseInt(e,10)||60;[...i.children].forEach((n,o)=>{n.style.setProperty("--velin-stagger-delay",`${o*t}ms`),n.classList.add("velin-stagger-item")}),i.classList.add("velin-stagger")}function sc(i=document){i.querySelectorAll(`[${oc}]`).forEach(e=>{e.dataset.velinStaggerDone||(e.dataset.velinStaggerDone="1",Lh(e,e.getAttribute(oc)||"true"))})}var oc,ac=p(()=>{oc="velin-stagger"});function Rh(i,e={}){let t=typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-reduced-motion: reduce)").matches,r=typeof i=="string"?document.querySelector(i):i;r&&(r.scrollIntoView({behavior:t||e.instant?"auto":"smooth",block:e.block||"start",inline:e.inline||"nearest"}),r.tabIndex<0&&!r.hasAttribute("tabindex")&&r.setAttribute("tabindex","-1"),r.focus({preventScroll:!0}))}function lc(i=document){i.querySelectorAll("[velin-scroll]").forEach(e=>{e.dataset.velinScrollBound||(e.dataset.velinScrollBound="1",e.addEventListener("click",t=>{let r=e.getAttribute("href");if(!r||!r.startsWith("#"))return;let n=document.querySelector(r);n&&(t.preventDefault(),Rh(n))}))})}var cc=p(()=>{});var co,uc=p(()=>{co={schema:"velinstyle.motion.registry",version:1,presets:[{id:"fade",title:"Fade",description:"Opacity entrance; layout-safe default reveal.",kind:"preset",category:"hero",tags:["entrance"],duration:400,fps:"60",reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--fade",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"slide",title:"Slide Up",description:"Slide from below into view.",kind:"preset",category:"cards",tags:["entrance","slide"],duration:500,fps:"60",reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--slide-up",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"slide-down",title:"Slide Down",description:"Slide from above into view.",kind:"preset",category:"navigation",tags:["entrance","slide"],duration:500,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--slide-down",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"slide-left",title:"Slide Left",description:"Slide from the inline-end.",kind:"preset",category:"lists",tags:["entrance","slide"],duration:500,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--slide-left",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"slide-right",title:"Slide Right",description:"Slide from the inline-start.",kind:"preset",category:"lists",tags:["entrance","slide"],duration:500,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--slide-right",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"zoom",title:"Zoom / Scale",description:"Scale-in entrance for cards and media.",kind:"preset",category:"media",tags:["entrance","scale"],duration:450,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--scale",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"blur",title:"Blur In",description:"Soft fade/blur entrance (maps to fade-in utility).",kind:"preset",category:"overlay",tags:["entrance"],duration:500,reducedMotion:!0,layoutSafe:!0,status:"beta",cssClass:"velin-animate-fade-in",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"flip",title:"Flip / Scale In",description:"Attention scale-in for emphasis.",kind:"preset",category:"feedback",tags:["attention"],duration:400,reducedMotion:!0,layoutSafe:!0,status:"beta",cssClass:"velin-animate-scale-in",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"lift",title:"Hover Lift",description:"Subtle lift on hover for interactive cards and buttons.",kind:"preset",category:"buttons",tags:["hover"],duration:200,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-hover",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"pulse",title:"Pulse",description:"Attention pulse; prefer finite loops under performance policy.",kind:"preset",category:"feedback",tags:["attention"],duration:1e3,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-pulse",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"shake",title:"Shake",description:"Error/attention shake feedback.",kind:"preset",category:"forms",tags:["attention","feedback"],duration:400,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-shake",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"bounce",title:"Bounce",description:"Playful bounce entrance or attention.",kind:"preset",category:"feedback",tags:["attention"],duration:600,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-bounce",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"shimmer",title:"Shimmer",description:"Loading shimmer surface (skeleton companion).",kind:"preset",category:"loading",tags:["loading"],duration:1200,reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-skeleton",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"heroReveal",title:"Hero Reveal",description:"Staggered entrance for hero content; layout-safe; reduced-motion fallback.",kind:"preset",category:"hero",tags:["entrance","stagger"],duration:600,fps:"60",reducedMotion:!0,layoutSafe:!0,status:"stable",cssClass:"velin-animate-on-scroll--fade",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"parallax",title:"Parallax",description:"Scroll-driven parallax shift.",kind:"preset",category:"media",tags:["scroll"],duration:0,reducedMotion:!0,layoutSafe:!1,status:"stable",cssClass:"velin-parallax",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"fadeOut",title:"Fade Out",description:"Exit fade (planned composition with timelines).",kind:"preset",category:"overlay",tags:["exit"],duration:300,reducedMotion:!0,layoutSafe:!0,status:"beta",cssClass:"velin-animate-fade-out",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}],timelines:[{id:"hero-intro",title:"Hero Intro",description:"Title \u2192 subtitle \u2192 buttons \u2192 image",kind:"timeline",category:"hero",steps:["title","subtitle","buttons","image"],status:"beta",compatibility:{cssOnly:!1,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"card-stagger",title:"Card Stagger",description:"Sequential card entrance labels.",kind:"timeline",category:"cards",steps:["card-1","card-2","card-3"],status:"beta",compatibility:{cssOnly:!1,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}],transitions:[{id:"cross-fade",title:"Cross Fade",description:"Page/view cross-fade (View Transition friendly).",kind:"transition",category:"page",status:"planned",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"modal-enter",title:"Modal Enter",description:"Overlay modal entrance transition.",kind:"transition",category:"modal",status:"planned",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"drawer-enter",title:"Drawer Enter",description:"Drawer slide transition.",kind:"transition",category:"drawer",status:"planned",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}],physics:[{id:"spring",title:"Spring",description:"Spring easing token mapping (runtime simulation later).",kind:"physics",category:"feedback",status:"planned",token:"--velin-ease-spring",compatibility:{cssOnly:!0,runtime:!1,webComponents:!1,studio:!0,production:!0,review:!0,cli:!0}},{id:"elastic",title:"Elastic",description:"Elastic easing token mapping.",kind:"physics",category:"feedback",status:"planned",token:"--velin-ease-elastic",compatibility:{cssOnly:!0,runtime:!1,webComponents:!1,studio:!0,production:!0,review:!0,cli:!0}}],composers:[{id:"sequence",title:"Sequence Composer",description:"Ordered fade/wait/slide composition API.",kind:"composer",category:"page",status:"planned",compatibility:{cssOnly:!1,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}],triggers:[{id:"load",title:"Load",description:"Start when document/module initializes.",kind:"trigger",category:"page",status:"stable",compatibility:{cssOnly:!1,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"visible",title:"Visible",description:"Start when element enters the viewport (IntersectionObserver).",kind:"trigger",category:"page",status:"stable",compatibility:{cssOnly:!1,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"hidden",title:"Hidden",description:"Fire when element leaves the viewport. (Planned \u2014 runtime falls back to visible.)",kind:"trigger",category:"page",status:"planned",compatibility:{cssOnly:!1,runtime:!1,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"hover",title:"Hover",description:"Pointer enter / hover.",kind:"trigger",category:"buttons",status:"stable",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"focus",title:"Focus",description:"Keyboard/pointer focus.",kind:"trigger",category:"forms",status:"stable",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"click",title:"Click",description:"Pointer activation.",kind:"trigger",category:"buttons",status:"stable",compatibility:{cssOnly:!1,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"scroll",title:"Scroll",description:"Scroll-linked or scroll-progress trigger.",kind:"trigger",category:"page",status:"stable",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"idle",title:"Idle",description:"After user idle timeout. (Planned \u2014 runtime falls back to visible.)",kind:"trigger",category:"feedback",status:"planned",compatibility:{cssOnly:!1,runtime:!1,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"media",title:"Media",description:"Match media query condition. (Planned \u2014 runtime falls back to visible.)",kind:"trigger",category:"page",status:"planned",compatibility:{cssOnly:!1,runtime:!1,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"container",title:"Container",description:"Container query / size trigger. (Planned \u2014 runtime falls back to visible.)",kind:"trigger",category:"cards",status:"planned",compatibility:{cssOnly:!1,runtime:!1,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"theme",title:"Theme",description:"Theme change trigger. (Planned \u2014 runtime falls back to visible.)",kind:"trigger",category:"page",status:"planned",compatibility:{cssOnly:!1,runtime:!1,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"custom",title:"Custom",description:"Custom event name via velin-trigger-event. (Planned \u2014 runtime falls back to visible.)",kind:"trigger",category:"page",status:"planned",compatibility:{cssOnly:!1,runtime:!1,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}],policies:[{id:"safe",title:"Safe",description:"Default layout-safe motion with capped durations.",kind:"policy",category:"page",status:"stable",maxDurationMs:800,allowInfinite:!1,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"reduced",title:"Reduced",description:"Honors prefers-reduced-motion first; shorten or skip decorative motion.",kind:"policy",category:"page",status:"stable",maxDurationMs:200,forceReduced:!0,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"marketing",title:"Marketing",description:"Expressive hero motion allowed within caps.",kind:"policy",category:"hero",status:"stable",maxDurationMs:1200,allowInfinite:!1,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"minimal",title:"Minimal",description:"Very little motion; feedback only.",kind:"policy",category:"page",status:"stable",maxDurationMs:300,allowInfinite:!1,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"accessibility",title:"Accessibility",description:"Strict reduced-motion + focus-safe interactions.",kind:"policy",category:"page",status:"stable",maxDurationMs:200,forceReduced:!0,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"performance",title:"Performance",description:"FPS-friendly; ban infinite decorative loops.",kind:"policy",category:"page",status:"stable",maxDurationMs:600,allowInfinite:!1,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"disabled",title:"Disabled",description:"All motion off.",kind:"policy",category:"page",status:"stable",disabled:!0,compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}],blueprints:[{id:"landing",title:"Landing",description:"Hero reveal + staggered sections + CTA hover.",kind:"blueprint",category:"hero",status:"beta",presets:["heroReveal","fade","lift"],timeline:"hero-intro",policy:"marketing",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"dashboard",title:"Dashboard",description:"Minimal card stagger for admin shells.",kind:"blueprint",category:"cards",status:"beta",presets:["fade","slide"],timeline:"card-stagger",policy:"minimal",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"pricing",title:"Pricing",description:"Pricing cards with stagger and lift.",kind:"blueprint",category:"cards",status:"beta",presets:["slide","lift"],policy:"marketing",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"portfolio",title:"Portfolio",description:"Media zoom + parallax-safe reveals.",kind:"blueprint",category:"media",status:"beta",presets:["zoom","fade"],policy:"marketing",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"shop",title:"Shop",description:"Product cards and feedback pulses.",kind:"blueprint",category:"cards",status:"planned",presets:["fade","lift"],policy:"safe",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"forum",title:"Forum",description:"List slides and form feedback.",kind:"blueprint",category:"lists",status:"planned",presets:["slide","shake"],policy:"safe",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"docs",title:"Docs",description:"Minimal fade for documentation pages.",kind:"blueprint",category:"page",status:"beta",presets:["fade"],policy:"minimal",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"blog",title:"Blog",description:"Article hero fade and card slides.",kind:"blueprint",category:"hero",status:"planned",presets:["fade","slide"],policy:"safe",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"crm",title:"CRM",description:"Table-safe minimal motion.",kind:"blueprint",category:"tables",status:"planned",presets:["fade"],policy:"performance",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}},{id:"login",title:"Login",description:"Form feedback and focus-safe motion.",kind:"blueprint",category:"forms",status:"beta",presets:["fade","shake"],policy:"accessibility",compatibility:{cssOnly:!0,runtime:!0,webComponents:!0,studio:!0,production:!0,review:!0,cli:!0}}]}});function cr(i=null){return i?(uo=i,uo):uo||co}function po(i,e={}){let t=cr(),r=i.endsWith("s")?i:`${i}s`;return(t[r]||t[i]||[]).filter(o=>!(e.status&&o.status!==e.status||e.category&&o.category!==e.category||e.tag&&!(o.tags||[]).includes(e.tag)))}function ur(i,e){return po(i).find(t=>t.id===e)||null}function pc(i){return ur("presets",i)}function ho(i){return ur("policies",i)}function hc(i){return ur("triggers",i)}function mc(i){return ur("timelines",i)}function fc(i){return po("presets",i)}function mo(i){return po("policies",i)}function bc(){let i=cr(),e={};for(let t of dc)e[t]=(i[t]||[]).length;return{schema:i.schema,version:i.version,counts:e,namespaces:dc}}function dr(i){if(!i)return null;let e=pc(i);if(e)return e;let r={scale:"zoom","hover-lift":"lift",reveal:"fade"}[i];return r?pc(r):null}var uo,dc,ht=p(()=>{uc();uo=co,dc=["presets","timelines","transitions","physics","composers","triggers","policies","blueprints"]});function fo(i,e="visible"){return(i.getAttribute("velin-trigger")||e||"visible").trim().toLowerCase()||e}function gc(i,e,t,r={}){let n=r.once!==!1,o=r.reduced??te(),a=(e||"visible").toLowerCase(),c=hc(a);if(o||i.dataset.velinMotion==="off")return t(),()=>{};if(c?.status==="planned"&&!vc.includes(a))return gc(i,"visible",t,r);let u=!1,h=()=>{n&&u||(u=!0,t())};if(a==="load")return h(),()=>{};if(a==="visible"||a==="scroll")return Ae(i,()=>h());if(a==="hover"){let b=()=>h();return i.addEventListener("pointerenter",b),()=>i.removeEventListener("pointerenter",b)}if(a==="focus"){let b=()=>h();return i.addEventListener("focusin",b),()=>i.removeEventListener("focusin",b)}if(a==="click"){let b=()=>h();return i.addEventListener("click",b),()=>i.removeEventListener("click",b)}if(a==="hidden"){let b=Ae(i,()=>{});if(typeof IntersectionObserver>"u")return()=>{};let m=new IntersectionObserver(v=>{for(let T of v)T.isIntersecting||h()},{threshold:0});return m.observe(i),()=>{b(),m.disconnect()}}if(a==="idle"){let b=Number(i.getAttribute("velin-trigger-delay")||3e3),m=setTimeout(h,b);return()=>clearTimeout(m)}if(a==="media"){let b=i.getAttribute("velin-trigger-media")||"(min-width: 768px)";if(typeof window>"u"||!window.matchMedia)return h(),()=>{};let m=window.matchMedia(b),v=()=>{m.matches&&h()};return v(),m.addEventListener?.("change",v),()=>m.removeEventListener?.("change",v)}if(a==="theme"){let b=i.ownerDocument?.documentElement;if(!b||typeof MutationObserver>"u")return h(),()=>{};let m=new MutationObserver(()=>h());return m.observe(b,{attributes:!0,attributeFilter:["data-velin-theme","class"]}),()=>m.disconnect()}if(a==="custom"){let b=i.getAttribute("velin-trigger-event")||"velin:motion",m=()=>h();return i.addEventListener(b,m),()=>i.removeEventListener(b,m)}return a==="container"?Ae(i,()=>h()):Ae(i,()=>h())}function yc(i,e){e();let t=fo(i,i.hasAttribute("velin-hover")?"hover":"visible");return te()||i.dataset.velinMotion==="off"?(j(i),()=>{}):t==="hover"||t==="focus"?(j(i),()=>{}):t==="load"?(j(i),()=>{}):gc(i,t,()=>j(i))}var vc,Ih,vb,_c=p(()=>{Bi();Ve();ht();vc=["load","visible","hover","focus","click","scroll"],Ih=["hidden","idle","media","container","theme","custom"],vb=[...vc,...Ih]});function bo(i="safe"){return ho(i)||ho("safe")}function vo(i){return i?!!(i.disabled||i.forceReduced&&te()||te()&&i.id!=="marketing"):te()}function Dh(i,e){let t=e?.maxDurationMs??800;return e?.disabled?0:Math.min(Number(i)||0,t)}function wc(i,e){let t=i.getAttribute("velin-duration"),r=i.getAttribute("velin-delay"),n=i.getAttribute("velin-ease");if(t){let o=Dh(Number(t),e);i.style.setProperty("--velin-motion-duration",`${o}ms`),i.style.animationDuration=`${o}ms`}if(r&&(i.style.animationDelay=`${Number(r)}ms`),n){let o={spring:"var(--velin-ease-spring)",bounce:"var(--velin-ease-bounce)",elastic:"var(--velin-ease-elastic)",default:"var(--velin-ease-default)"};i.style.animationTimingFunction=o[n]||n}(e?.disabled||vo(e))&&(i.dataset.velinMotion="off")}var xc=p(()=>{ht();Ve()});function Oh(i,e,t={}){let r=mc(i);if(!r)return{ok:!1,error:`Unknown timeline "${i}"`,ran:[]};let n=t.stepMs??120,o=[];if(t.policyDisabled||te()){for(let c of r.steps||[]){let u=Ac(e,c);u&&j(u),o.push(c)}return{ok:!0,ran:o}}let a=0;for(let c of r.steps||[]){let u=Ac(e,c);if(!u)continue;let h=a;a+=n,typeof window<"u"&&window.setTimeout?window.setTimeout(()=>j(u),h):j(u),o.push(c)}return{ok:!0,ran:o,timeline:r}}function Ac(i,e){return i?.querySelector?i.querySelector(`[data-velin-step="${e}"]`)||i.querySelector(`[velin-step="${e}"]`)||i.querySelector(`#${CSS.escape?.(e)||e}`):null}function Ec(i){if(!i?.querySelectorAll)return()=>{};let e=i.querySelectorAll("[velin-timeline]"),t=[];for(let r of e){let n=r.getAttribute("velin-timeline"),o=Oh(n,r);t.push(()=>o)}return()=>{}}var kc=p(()=>{ht();Ve()});function Nh(i=400){return{type:"fade",ms:i}}function zh(i=500,e="up"){return{type:"slide",ms:i,value:e}}function $h(i=200){return{type:"wait",ms:i}}function Ph(i=400){return{type:"rotate",ms:i}}function Fh(i=400){return{type:"blur",ms:i}}function qh(i,e){return{type:"preset",preset:i,ms:e}}async function Hh(i=[],e={}){let t=e.target||e.root,r=te(),n=[];for(let o of i){if(o.type==="wait"){!r&&o.ms&&await Sc(o.ms),n.push(o);continue}if(t&&typeof t.classList?.add=="function"){if(o.type==="preset"&&o.preset){let a=dr(o.preset);a?.cssClass&&t.classList.add(...String(a.cssClass).split(/\s+/)),Ee(t,{[o.preset]:"true"})}else o.type==="fade"?Ee(t,{fade:"true"}):o.type==="slide"?Ee(t,{slide:o.value||"up"}):o.type==="blur"?Ee(t,{blur:"true"}):o.type==="rotate"&&Ee(t,{flip:"true"});j(t)}!r&&o.ms&&await Sc(o.ms),n.push(o)}return{ok:!0,ran:n}}function Sc(i){return new Promise(e=>{if(typeof setTimeout>"u")return e();setTimeout(e,i)})}function Tc(i){if(!i?.querySelectorAll)return()=>{};let e=[...i.querySelectorAll("[velin-motion-sequence]")];for(let t of e){let r=[...t.children],n=0,o=Number(t.getAttribute("velin-sequence-gap")||120);for(let a of r){if(a.classList.add("velin-animate-on-scroll","velin-animate-on-scroll--fade"),te())j(a);else if(typeof setTimeout<"u"){let c=n*o;setTimeout(()=>j(a),c)}else j(a);n+=1}}return()=>{}}var Cc,Lc=p(()=>{Ve();ht();Ve();Cc={sequence:Hh,fade:Nh,slide:zh,wait:$h,rotate:Ph,blur:Fh,preset:qh}});function Uh(i={}){let e=bo(i.policy||"safe");return{policy:e,registry:()=>cr(),catalog:bc,listPresets:fc,listPolicies:mo,init:(t={})=>Fe({...t,policy:e.id}),Motion:Cc}}function Fe(i={}){let e=i.root||(typeof document<"u"?document:null);if(!e)return()=>{};let t=bo(i.policy||e.documentElement?.getAttribute?.("data-velin-motion-policy")||e.querySelector?.("[data-velin-motion-policy]")?.getAttribute("data-velin-motion-policy")||"safe"),r=i.selector||["[velin-motion]","[velin-reveal]","[velin-fade]","[velin-slide]","[velin-scale]","[velin-parallax]","[velin-hover]",".velin-animate-on-scroll"].join(","),n=e.querySelectorAll(r),o=vo(t)||te();for(let a of n){if(a.dataset.velinMotionInit)continue;a.dataset.velinMotionInit="1",wc(a,t);let c={},u=a.getAttribute("velin-motion");if(u){c.motion=u;let b=dr(u);b?.id&&(c[b.id]="true")}for(let b of Bh)a.hasAttribute(b)&&(c[b.replace("velin-","")]=a.getAttribute(b)||"true");if(Ee(a,c),o||a.dataset.velinMotion==="off"){j(a);continue}let h=yc(a,()=>Ee(a,c));go.push(h)}return sc(e),lc(e),Ec(e),Tc(e),()=>{go.forEach(a=>{try{a()}catch{}}),go=[],bl()}}function Rc(i={}){return Fe({root:typeof document<"u"?document:null,selector:i.selector||".velin-animate-on-scroll"})}var Bh,go,Mc,yo=p(()=>{Bi();Ve();ac();cc();_c();xc();kc();Lc();ht();Bh=["velin-reveal","velin-fade","velin-slide","velin-scale","velin-parallax","velin-hover"],go=[];Mc={init:Fe,observe:Ae,markVisible:j,VISIBLE_CLASS:lo,createEngine:Uh,readTrigger:fo}});function Dc({status:i,review:e,license:t,claims:r=[]}={}){let n=new Set(Array.isArray(r)?r.filter(Boolean):[]),o=Kh[String(i||"").toLowerCase()];o&&n.add(o);let a=Gh[String(e||"").toLowerCase()];if(a&&n.add(a),t){let c=String(t).toLowerCase().trim(),u=Vh[c]||(c.startsWith("cc")?"license.cc-by":null);u&&n.add(u)}return[...n]}function Ic(i,e="en"){let t=jh[i];return t&&(t.label[e]||t.label.en)||i}function Oc(i=[],e="en"){let t=["ai.generated","ai.assisted","review.human","review.verified","trust.official","license.cc-by","license.mit"];for(let r of t)if(i.includes(r))return Ic(r,e);return i[0]?Ic(i[0],e):e==="de"?"Transparenz":"Transparency"}var jh,Kh,Gh,Vh,Nc=p(()=>{jh={"ai.generated":{pillar:"ai",label:{en:"AI generated",de:"KI-generiert"}},"ai.assisted":{pillar:"ai",label:{en:"AI assisted",de:"KI-unterst\xFCtzt"}},"review.human":{pillar:"ai",label:{en:"Human reviewed",de:"Mensch gepr\xFCft"}},"review.verified":{pillar:"trust",label:{en:"Verified",de:"Verifiziert"}},"security.checked":{pillar:"trust",label:{en:"Security checked",de:"Security gepr\xFCft"}},"accessibility.checked":{pillar:"trust",label:{en:"Accessibility checked",de:"Barrierefreiheit gepr\xFCft"}},"trust.official":{pillar:"trust",label:{en:"Official",de:"Offiziell"}},"trust.signed":{pillar:"trust",label:{en:"Signed",de:"Signiert"}},"trust.opensource":{pillar:"trust",label:{en:"Open source",de:"Open Source"}},"privacy.gdpr":{pillar:"compliance",label:{en:"GDPR",de:"DSGVO"}},"license.cc-by":{pillar:"compliance",label:{en:"CC BY",de:"CC BY"}},"license.mit":{pillar:"compliance",label:{en:"MIT",de:"MIT"}},"license.apache-2":{pillar:"compliance",label:{en:"Apache-2.0",de:"Apache-2.0"}},"content.updated":{pillar:"metadata",label:{en:"Updated",de:"Aktualisiert"}},"content.author":{pillar:"metadata",label:{en:"Author",de:"Autor"}},"content.source":{pillar:"metadata",label:{en:"Source",de:"Quelle"}},"content.language":{pillar:"metadata",label:{en:"Language",de:"Sprache"}},"version.current":{pillar:"metadata",label:{en:"Version",de:"Version"}},"provenance.complete":{pillar:"provenance",label:{en:"Provenance complete",de:"Nachweis vollst\xE4ndig"}}},Kh={generated:"ai.generated",assisted:"ai.assisted","ai-assisted":"ai.assisted","human-reviewed":"review.human","human-edited":"review.human",verified:"review.verified",edited:"review.human",draft:null},Gh={human:"review.human","human-reviewed":"review.human",verified:"review.verified",none:null},Vh={"cc by 4.0":"license.cc-by","cc-by":"license.cc-by","cc-by-4.0":"license.cc-by",mit:"license.mit","apache-2.0":"license.apache-2",apache:"license.apache-2"}});function $c(){let i=new Map;return{register(e){if(!e?.id)throw new Error("DisclosureRecord requires id");return i.set(e.id,zc(e)),i.get(e.id)},get(e){return i.get(e)||null},has(e){return i.has(e)},remove(e){return i.delete(e)},list(){return[...i.values()].map(e=>zc(e))},query(e){return this.list().filter(e)},clear(){i.clear()},size(){return i.size},export(){return{schema:"velinstyle.transparency.registry",version:1,items:this.list()}},diff(e=[]){let t=new Map(e.map(a=>[a.id,a])),r=[],n=[],o=[];for(let a of i.values())t.has(a.id)?JSON.stringify(a)!==JSON.stringify(t.get(a.id))&&o.push(a.id):r.push(a.id);for(let a of t.keys())i.has(a)||n.push(a);return{added:r,removed:n,changed:o}}}}function zc(i){return JSON.parse(JSON.stringify(i))}function Pc(i={}){if(i.id)return String(i.id).trim();let e=[i.file||"",i.selector||"",i.src||"",i.tag||"",i.type||""].join("|").toLowerCase(),t=2166136261;for(let r=0;r<e.length;r+=1)t^=e.charCodeAt(r),t=Math.imul(t,16777619);return`tx-${(t>>>0).toString(16)}`}var _o=p(()=>{});function Fc(i={},e={}){let t=String(i.provider||e.provider||"api"),r=String(i.type||"ai").toLowerCase(),n=i.status!=null?String(i.status).toLowerCase():void 0,o=i.review!=null?String(i.review).toLowerCase():void 0,a=Yh(i.provenance||i);i.license&&!a.license&&(a.license=String(i.license)),i.model&&!a.source&&(a.source=`model:${i.model}`),i.generated;let c=n||(i.generated===!0?"generated":void 0),u=Dc({status:c,review:o,license:a.license,claims:i.claims}),h={selector:i.target?.selector||i.selector||void 0,tag:i.target?.tag||i.tag||void 0,src:i.target?.src||i.src||void 0,file:i.target?.file||e.file||i.file||void 0},b=Pc({id:i.id||i.velinTransparencyId,selector:h.selector,src:h.src,tag:h.tag,type:r,file:h.file}),m=e.lang==="de"?"de":"en",v=i.label?String(i.label):Oc(u,m),T=i.updated||a.publishedAt||a.reviewedAt||a.createdAt||void 0;return{id:b,type:r,status:c,review:o,provider:t,claims:u,provenance:a,updated:T,label:v,description:i.description?String(i.description):void 0,renderer:i.renderer||i.overlay||"badge",tone:i.tone||Xh(u),position:i.position||"top-right",target:h,meta:i.meta&&typeof i.meta=="object"?i.meta:void 0}}function Yh(i={}){let e={};for(let t of Wh){let r=i[t]??i[t.replace(/[A-Z]/g,n=>`-${n.toLowerCase()}`)];r!=null&&String(r).trim()&&(e[t]=String(r).trim())}return i["created-by"]&&(e.createdBy=String(i["created-by"])),i["created-at"]&&(e.createdAt=String(i["created-at"])),i["reviewed-at"]&&(e.reviewedAt=String(i["reviewed-at"])),i["approved-by"]&&(e.approvedBy=String(i["approved-by"])),i["published-at"]&&(e.publishedAt=String(i["published-at"])),e}function Xh(i){return i.includes("ai.generated")?"generated":i.includes("review.verified")||i.includes("trust.official")?"verified":i.includes("review.human")?"human":i.includes("ai.assisted")?"mixed":"neutral"}var Wh,qc=p(()=>{Nc();_o();Wh=["createdBy","createdAt","reviewedAt","approvedBy","source","license","version","publishedAt"]});function Zh(i,e){Bc.set(i,e)}function Uc(i,e){if(typeof document>"u"||!i)return null;let t=e.renderer||"badge",r=Bc.get(t);return r?(r(i,e),i.querySelector(".velin-transparency")):jc(i,e)}function jc(i,e){getComputedStyle(i).position==="static"&&(i.style.position="relative");let r=i.querySelector(":scope > .velin-transparency");r||(r=document.createElement("div"),i.prepend(r));let n=e.renderer||"badge",o=e.tone||"neutral",a=e.position||"top-right";r.className=["velin-transparency",`velin-transparency--${n}`,`velin-transparency--tone-${o}`,`velin-transparency--pos-${a}`].join(" "),r.setAttribute("data-velin-transparency-id",e.id),r.setAttribute("role","note");let c=(e.claims||[]).join(", "),u=e.provenance||{},h=document.createElement("span");h.className="velin-sr-only";let b=(i.closest("[lang]")?.getAttribute("lang")||document.documentElement.lang||"en").startsWith("de")?"de":"en";h.textContent=b==="de"?`Transparenzhinweis: ${e.label}. ${c}. ${Hc(u,"de")}`:`Transparency notice: ${e.label}. ${c}. ${Hc(u,"en")}`;let m=document.createElement("span");m.className="velin-transparency__label",m.textContent=e.label||"Transparency";let v=document.createElement("span");return v.className="velin-transparency__details",v.hidden=n==="badge"||n==="icon",v.textContent=Jh(e,b),r.replaceChildren(h,m,v),e.description?r.title=e.description:v.textContent&&(r.title=v.textContent),i.setAttribute("data-velin-transparency",e.id),r}function Hc(i,e){let t=[];return i.createdBy&&t.push(e==="de"?`Erstellt von ${i.createdBy}`:`Created by ${i.createdBy}`),i.createdAt&&t.push(e==="de"?`am ${i.createdAt}`:`on ${i.createdAt}`),i.approvedBy&&t.push(e==="de"?`Freigegeben von ${i.approvedBy}`:`Approved by ${i.approvedBy}`),i.license&&t.push(i.license),i.version&&t.push(`v${i.version}`),t.join(". ")}function Jh(i,e){let t=i.provenance||{},r=[];return t.approvedBy&&r.push(e==="de"?`Freigabe: ${t.approvedBy}`:`Approved: ${t.approvedBy}`),t.license&&r.push(t.license),t.version&&r.push(`v${t.version}`),(t.updated||i.updated)&&r.push(i.updated||t.publishedAt||""),r.filter(Boolean).join(" \xB7 ")}function Qh(i){return i==="corner-badge"||i==="stamp"?"badge":i==="floating-card"||i==="sidebar"?"panel":i==="banner"?"footer":i}var Bc,Kc=p(()=>{Bc=new Map;for(let i of["overlay","badge","inline","tooltip","footer","ribbon","panel","icon","corner-badge","stamp","sidebar","floating-card","banner"])Zh(i,(e,t)=>{jc(e,{...t,renderer:Qh(i)})})});var Ao={};g(Ao,{VelinTransparency:()=>em,attach:()=>xo,enhanceAll:()=>Gc,getDefaultRegistry:()=>Vc});function xo(i,e={},t={}){if(!i)throw new Error("VelinTransparency.attach requires an element");let r=t.registry||wo,n={...e,tag:i.tagName,src:i.getAttribute?.("src")||i.getAttribute?.("href")||e.src,selector:i.id?`#${i.id}`:e.selector,id:e.id||i.getAttribute?.("velin-transparency-id")||i.id,provider:e.provider||"api"};(i.hasAttribute?.("velin-transparency")||i.hasAttribute?.("velin-disclosure"))&&(n.type=n.type||i.getAttribute("velin-type")||"ai",n.status=n.status||i.getAttribute("velin-status"),n.review=n.review||i.getAttribute("velin-review"),n.license=n.license||i.getAttribute("velin-license"),n.label=n.label||i.getAttribute("velin-label"),n.description=n.description||i.getAttribute("velin-description"),n.overlay=n.overlay||i.getAttribute("velin-overlay")||i.getAttribute("velin-renderer"),n.provenance={createdBy:i.getAttribute("velin-created-by"),createdAt:i.getAttribute("velin-created-at"),reviewedAt:i.getAttribute("velin-reviewed-at"),approvedBy:i.getAttribute("velin-approved-by"),source:i.getAttribute("velin-source"),license:i.getAttribute("velin-license"),version:i.getAttribute("velin-version"),publishedAt:i.getAttribute("velin-published-at"),...e.provenance||{}});let o=Fc(n,{provider:n.provider,lang:t.lang});return r.register(o),i.hasAttribute("velin-transparency")||i.setAttribute("velin-transparency",""),i.hasAttribute("velin-transparency-id")||i.setAttribute("velin-transparency-id",o.id),Uc(i,o),o}function Gc(i=typeof document<"u"?document:null){if(!i?.querySelectorAll)return[];let e=[];return i.querySelectorAll("[velin-transparency], [velin-disclosure]").forEach(t=>{e.push(xo(t,{},{registry:wo}))}),e}function Vc(){return wo}var wo,em,Eo=p(()=>{qc();Kc();_o();wo=$c();em={attach:xo,enhanceAll:Gc,getRegistry:Vc}});function C(i,e){mt.set(i,e)}function Yc(i){return mt.get(i)}function $t(i,e,t={}){i.setAttribute("data-velin-component",e);for(let[r,n]of Object.entries(t))n!=null&&i.setAttribute(r,n);return ie(e)}function tm(){C("velin-modal",{enhance(i){$t(i,"velin-modal",{open:i.getAttribute("velin-modal")||""})}}),C("velin-tabs",{enhance:i=>$t(i,"velin-tabs")}),C("velin-accordion",{enhance:i=>$t(i,"velin-accordion")}),C("velin-tooltip",{enhance(i){let e=i.getAttribute("velin-tooltip")||i.getAttribute("title")||"";if(e&&i.hasAttribute("title")&&i.removeAttribute("title"),i.tagName==="VELIN-TOOLTIP"||i.tagName==="VELIN-TOOLTIP-WC")return i.setAttribute("content",e),ie("velin-tooltip");let t=document.createElement("velin-tooltip");t.setAttribute("content",e);let r=i.parentElement;return r&&(r.insertBefore(t,i),t.appendChild(i)),ie("velin-tooltip")}}),C("velin-copy",{enhance(i){let e=i.getAttribute("velin-copy")||i.textContent?.trim()||"";if(!i.querySelector("velin-copy")){let t=document.createElement("velin-copy");if(t.setAttribute("value",e),i.tagName==="BUTTON")return t.append(...i.childNodes),i.replaceWith(t),ie("velin-copy");i.appendChild(t)}return ie("velin-copy")}}),C("velin-counter",{enhance(i){$t(i,"velin-counter",{value:i.getAttribute("velin-counter")||"0"})}}),C("velin-notify",{async enhance(i){await ie("velin-toast"),i.addEventListener("click",()=>{let e=i.getAttribute("velin-notify")||i.textContent||"";document.dispatchEvent(new CustomEvent("velin-toast-show",{detail:{message:e,variant:i.dataset.variant||"info"}}))})}}),C("velin-theme",{enhance(i){let e=i.getAttribute("velin-theme")||"toggle";if(e==="toggle")return i.querySelector("velin-theme-toggle")||i.appendChild(document.createElement("velin-theme-toggle")),ie("velin-theme-toggle");document.documentElement.setAttribute("data-velin-theme",e)}}),C("velin-scroll-top",{enhance(i){let e=i.getAttribute("velin-scroll-top"),t=e&&e!=="true"?e:"300";if(i.tagName==="VELIN-SCROLL-TOP")return e&&e!=="true"&&i.setAttribute("threshold",t),ie("velin-scroll-top");let r=document.querySelector("velin-scroll-top");return r||(r=document.createElement("velin-scroll-top"),r.setAttribute("threshold",t),(i===document.body||i===document.documentElement?document.body:i).appendChild(r)),ie("velin-scroll-top")}}),C("velin-progress",{enhance(i){if(i.hasAttribute("ring"))return $t(i,"velin-progress-ring");i.classList.add("velin-progress");let t=parseInt(i.getAttribute("velin-progress")||"0",10);i.setAttribute("role","progressbar"),i.setAttribute("aria-valuenow",String(t)),i.style.setProperty("--velin-progress",`${Math.min(100,t)}%`)}}),C("velin-search",{async enhance(i){if(i.tagName!=="VELIN-SEARCH"){let e=document.createElement("velin-search");e.setAttribute("index",i.getAttribute("data-search-index")||"/search-index.json"),i.replaceWith(e),e.appendChild(i)}return ie("velin-search")}}),C("velin-lazy",{enhance(i){i.tagName==="IMG"&&(i.loading="lazy",i.decoding="async",(i.hasAttribute("velin-skeleton")||i.dataset.velinSkeleton)&&(i.classList.add("velin-skeleton","velin-skeleton--image"),i.addEventListener("load",()=>i.classList.remove("velin-skeleton","velin-skeleton--image"),{once:!0})))}}),C("velin-skeleton",{enhance(i){let e=i.getAttribute("velin-skeleton")||"text";i.classList.add("velin-skeleton",`velin-skeleton--${e}`),!(!!i.textContent?.trim()&&i.children.length>0)&&!i.textContent?.trim()&&i.setAttribute("aria-hidden","true")}}),C("velin-loading",{enhance(i){i.classList.add("velin-spinner"),i.setAttribute("aria-busy","true"),i.setAttribute("role","status"),i.getAttribute("aria-label")?.trim()||i.setAttribute("aria-label","Loading")}}),C("velin-grid",{enhance(i){let e=i.getAttribute("velin-grid")||"auto";i.classList.add("velin-grid"),e!=="auto"&&i.style.setProperty("--velin-grid-cols",e)}}),C("velin-anchor",{enhance(i){!i.id&&i.getAttribute("velin-anchor")&&(i.id=i.getAttribute("velin-anchor")),i.setAttribute("tabindex","-1")}}),C("velin-code",{async enhance(i){let e=i.getAttribute("velin-code")||i.getAttribute("language")||i.getAttribute("data-language")||"";if(i.classList.add("velin-code-block"),e&&e!=="true"&&(i.dataset.language=e,i.getAttribute("language")||i.setAttribute("language",e)),!i.querySelector("[data-velin-copy]")){let o=document.createElement("button");o.type="button",o.className="velin-code-block__copy velin-btn velin-btn--sm",o.textContent="Copy",o.setAttribute("data-velin-copy",""),o.setAttribute("velin-copy",i.querySelector("code")?.textContent||i.textContent||""),i.style.position="relative",i.appendChild(o)}await ie("velin-copy");let{initHighlight:t,highlightElement:r}=await Promise.resolve().then(()=>(It(),Bn));i.getAttribute("data-velin-highlight")==="immediate"||typeof matchMedia<"u"&&matchMedia("(prefers-reduced-motion: reduce)").matches?await r(i):t(i,{root:i})}}),C("velin-quote",{enhance(i){(i.tagName==="BLOCKQUOTE"||i.tagName==="Q")&&i.classList.add("velin-quote")}}),C("velin-highlight",{enhance(i){i.classList.add("velin-highlight")}}),C("velin-transparency",{async enhance(i){let{attach:e}=await Promise.resolve().then(()=>(Eo(),Ao));e(i)}}),C("velin-disclosure",{async enhance(i){let{attach:e}=await Promise.resolve().then(()=>(Eo(),Ao));i.hasAttribute("velin-transparency")||i.setAttribute("velin-transparency",""),e(i)}});for(let i of["velin-motion","velin-trigger","velin-duration","velin-delay","velin-ease","velin-timeline","velin-motion-sequence","velin-reveal","velin-fade","velin-slide","velin-scale","velin-parallax","velin-hover","velin-stagger","velin-scroll"])C(i,{enhance(){}})}async function ko(i=document){let e=[...mt.keys()].map(r=>`[${r}]`).join(","),t=i.querySelectorAll(e);for(let r of t)if(!Wc.has(r)){for(let n of mt.keys()){if(!r.hasAttribute(n))continue;let o=mt.get(n);o?.enhance&&await o.enhance(r)}Wc.add(r)}if(Fe({root:i}),typeof HTMLElement<"u"){let{bindDeclarativeSearch:r}=await Promise.resolve().then(()=>(zt(),oo));if(r(i),!document.querySelector("velin-announcer")){let{getAnnouncer:n}=await Promise.resolve().then(()=>(Ie(),da));n()}}}function So(){return[...mt.keys()]}var mt,Wc,Xc=p(()=>{To();yo();mt=new Map;tm();Wc=new WeakSet});var Zc={};g(Zc,{bootAttributes:()=>ko,getAttributeHandler:()=>Yc,listRegisteredAttributes:()=>So,registerAttribute:()=>C});var Co=p(()=>{Xc()});var Jc={};g(Jc,{PATTERNS:()=>pr,VelinHapticObserver:()=>Ft,applyHaptic:()=>Pt,default:()=>im,vibrate:()=>Lo});function Lo(i){if(typeof navigator>"u"||!navigator.vibrate||window.matchMedia?.("(prefers-reduced-motion: reduce)")?.matches)return;let t=typeof i=="string"?pr[i]||pr.tap:i;navigator.vibrate(t)}function Pt(i){let e=i.getAttribute("haptic")||"tap";i.addEventListener("click",()=>Lo(e))}var pr,Ft,im,Ro=p(()=>{pr={tap:[10],"double-tap":[10,50,10],success:[50],error:[100,30,100],warning:[30,20,30],long:[200]};Ft=class{constructor(){this._observer=null}start(e=document.body){e.querySelectorAll("[haptic]").forEach(Pt),this._observer=new MutationObserver(r=>{for(let n of r)for(let o of n.addedNodes)o.nodeType===1&&(o.hasAttribute?.("haptic")&&Pt(o),o.querySelectorAll?.("[haptic]").forEach(Pt))}),this._observer.observe(e,{childList:!0,subtree:!0})}stop(){this._observer?.disconnect()}},im=Ft});function nm(i){return typeof customElements>"u"?Promise.reject(new Error("customElements not available")):customElements.whenDefined(i)}async function ie(i){let e=so[i];if(!e)throw new Error(`Unknown Velin component: ${i}`);if(Mo.has(i))return Mo.get(i);let t=e().then(r=>{let n=r.default;return n&&!customElements.get(i)&&customElements.define(i,n),n});return Mo.set(i,t),t}async function Qc(i){return Promise.all(i.map(e=>ie(e)))}function om(i){let e=new Set;i.querySelectorAll("[data-velin-component]").forEach(t=>{let r=t.getAttribute("data-velin-component");r&&e.add(r.startsWith("velin-")?r:`velin-${r}`)});for(let t of i.querySelectorAll("*")){let r=t.tagName?.toLowerCase();r&&rm.test(r)&&so[r]&&e.add(r)}return e}async function sm(i=document,e={}){let t=e.tags?.length?new Set(e.tags):om(i),r=Qc([...t]);if(e.attributes){let{bootAttributes:n}=await Promise.resolve().then(()=>(Co(),Zc));await n(i)}if(e.highlight){let{initHighlight:n}=await Promise.resolve().then(()=>(It(),Bn));n(i)}if(e.haptic){let{VelinHapticObserver:n}=await Promise.resolve().then(()=>(Ro(),Jc));new n().start(i instanceof Document?i.body:i)}return r}var Mo,rm,To=p(()=>{nc();Mo=new Map,rm=/^velin-[a-z0-9-]+$/});Ir();Dr();Or();Nr();jr();Vr();Wr();Xr();Zr();Jr();Qr();en();tn();rn();hi();sn();fi();ln();cn();un();dn();pn();hn();mn();fn();bn();vn();gn();yn();Li();To();lr();Ki();Zi();Un();jn();Wn();_n();Gn();zt();Yn();Zn();Kn();zt();yo();var am=Rc;if(typeof document<"u"){let i=()=>{document.documentElement?.hasAttribute("data-velin-reveal-auto")&&Fe()};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",i,{once:!0}):i()}Ie();Ie();function lm(i={}){if(typeof document>"u")return;let{announcer:e=!0,scrollPadding:t=!0,skipLink:r=!1}=i;if(e&&st(),t){let n=document.querySelector(".velin-nav, .velin-doc-header, .site-nav, [data-velin-fixed-nav]");if(n){let o=n.getBoundingClientRect().height;document.documentElement.style.setProperty("--velin-nav-height",`${Math.ceil(o)}px`),document.documentElement.classList.add("velin-scroll-pt-nav")}}if(r&&!document.querySelector(".velin-skip-link")&&document.getElementById("main")){let n=document.createElement("a");n.href="#main",n.className="velin-skip-link",n.textContent="Skip to main content",document.body.prepend(n)}}no();Co();It();var eu=typeof window<"u"&&window.matchMedia?window.matchMedia("(prefers-reduced-motion: reduce)"):null,su={duration:250,easing:"var(--velin-ease-expo-out, cubic-bezier(0.16, 1, 0.3, 1))",itemSelector:":scope > *"};function Io(i,e){return Array.from(i.querySelectorAll(e))}function au(i,e,t={}){if(!i||typeof e!="function")return;let r={...su,...t},n=eu&&eu.matches,o=Io(i,r.itemSelector),a=new Map;if(o.forEach(u=>{u.hidden||a.set(u,u.getBoundingClientRect())}),e(),n)return;Io(i,r.itemSelector).forEach(u=>{if(u.hidden)return;let h=a.get(u),b=u.getBoundingClientRect();if(!h){if(typeof u.animate!="function")return;u.animate([{opacity:0,transform:"scale(0.96)"},{opacity:1,transform:"scale(1)"}],{duration:r.duration,easing:r.easing,fill:"both"});return}let m=h.left-b.left,v=h.top-b.top;m===0&&v===0||typeof u.animate=="function"&&u.animate([{transform:`translate(${m}px, ${v}px)`},{transform:"translate(0, 0)"}],{duration:r.duration,easing:r.easing,fill:"both"})})}function lu(i,e,t={}){if(!i||typeof e!="function")return;let r={...su,...t};au(i,()=>{Io(i,r.itemSelector).forEach(n=>{n.hidden=!e(n)})},r)}function tu(i){return i?String(i).toLowerCase().split(/[\s,|]+/).map(e=>e.trim()).filter(Boolean):[]}function cm(i,e,t){return e.length?t==="all"?e.every(r=>i.includes(r)):e.some(r=>i.includes(r)):!0}function um(i,e){return e?((i.getAttribute("data-tags")||"")+" "+(i.getAttribute("data-search")||"")+" "+(i.textContent||"")).toLowerCase().includes(e.toLowerCase()):!0}var Do=class{constructor(e){this.container=e,this.tag="",this.search="",this.matchMode=e.getAttribute("data-velin-filter-mode")==="all"?"all":"any",this.itemSelector=e.getAttribute("data-velin-filter-item")||":scope > *"}apply(){let e=tu(this.tag),t=this.search;lu(this.container,r=>{let n=tu(r.getAttribute("data-tags"));return cm(n,e,this.matchMode)&&um(r,t)},{itemSelector:this.itemSelector})}},iu=new WeakMap;function ru(i){let e=iu.get(i);return e||(e=new Do(i),iu.set(i,e)),e}function nu(i){let e=i.getAttribute("data-velin-filter-target");if(!e)return null;try{return document.querySelector(e)}catch{return null}}function dm(i,e){i&&i.querySelectorAll("[data-velin-filter-value]").forEach(t=>{t===e?t.setAttribute("data-velin-filter-active",""):t.removeAttribute("data-velin-filter-active")})}function ou(){if(typeof document>"u")return;document.addEventListener("click",e=>{let t=e.target.closest("[data-velin-filter-value]");if(!t)return;let r=nu(t);if(!r)return;let n=t.closest("[data-velin-filter-group]")||t.parentElement;dm(n,t);let o=ru(r);o.tag=t.getAttribute("data-velin-filter-value")||"",(o.tag.toLowerCase()==="all"||o.tag==="*")&&(o.tag=""),o.apply()});let i=e=>{let t=e.target.closest("[data-velin-filter-input]");if(!t)return;let r=nu(t);if(!r)return;let n=ru(r),o=t.value||(typeof t.getAttribute=="function"?t.getAttribute("value"):"");n.search=(o||"").trim(),n.apply()};document.addEventListener("input",i),document.addEventListener("change",i)}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",ou,{once:!0}):ou());L();Ro();J();lr();Ki();Zi();Li();export{pr as HapticPatterns,hs as VelinAccordion,Pa as VelinAnnouncer,ka as VelinBottomNav,Ua as VelinCalendar,na as VelinCarousel,gl as VelinCodeBlock,sa as VelinCollapse,Aa as VelinCombobox,za as VelinCommand,ea as VelinCopy,va as VelinCountdown,_l as VelinCounter,El as VelinDataTable,fa as VelinDialog,Vs as VelinDrawer,us as VelinDropdown,Ha as VelinEmail,Sl as VelinEmptyState,Cl as VelinFileDropzone,Rl as VelinFormSummary,Ft as VelinHapticObserver,Ks as VelinIcon,pa as VelinLightbox,Dl as VelinLiveDot,Oa as VelinMenubar,ls as VelinModal,Nl as VelinOtpInput,$l as VelinPasswordStrength,wa as VelinPersist,Js as VelinPopover,ya as VelinProgressRing,Ia as VelinRating,ia as VelinScrollTop,la as VelinScrollspy,Zl as VelinSearch,La as VelinSegmentedControl,Ta as VelinSheet,ic as VelinSparkline,ma as VelinStepper,kt as VelinStepperWC,fs as VelinTabs,Xs as VelinThemeToggle,Us as VelinToast,ua as VelinTooltip,Et as VelinTooltipWC,ae as announce,Pt as applyHaptic,Jl as bindDeclarativeSearch,ko as bootAttributes,sm as bootFromDOM,W as clearBackgroundInert,Vd as createSafeHTML,ro as createSearch,y as escapeHTML,we as escapeHTMLAttribute,lu as filterList,au as flipReorder,st as getAnnouncer,ge as getFocusableElements,Bs as getTrustedPolicy,Rt as highlightAll,he as highlightElement,lm as initA11y,$e as initHighlight,Fe as initMotion,am as initReveal,ie as lazyDefine,ze as lazyLoadLanguage,So as listRegisteredAttributes,Mt as observeCodeBlocks,Qc as register,C as registerAttribute,ut as registerLanguage,Bl as registerSearchProvider,Pi as renderTokens,de as restoreFocus,ne as rovingTabindex,Ue as sanitizeURL,ue as saveFocus,Xn as scorePassword,pe as setBackgroundInert,Ur as stripControlChars,re as trapFocus,Mc as velinMotion,wh as velinSearch,vl as velinSyntax,Lo as vibrate,nm as whenDefined};
1359
1501
  /*! Bundled license information:
1360
1502
 
1361
1503
  dompurify/dist/purify.es.mjs: