@rettangoli/ui 0.1.2-rc3 → 0.1.2-rc31

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 (56) hide show
  1. package/dist/rettangoli-iife-layout.min.js +115 -43
  2. package/dist/rettangoli-iife-ui.min.js +187 -67
  3. package/package.json +5 -3
  4. package/src/cli/buildSvg.js +86 -0
  5. package/src/cli/index.js +1 -0
  6. package/src/common.js +19 -0
  7. package/src/components/breadcrumb/breadcrumb.handlers.js +9 -0
  8. package/src/components/breadcrumb/breadcrumb.store.js +29 -0
  9. package/src/components/breadcrumb/breadcrumb.view.yaml +64 -0
  10. package/src/components/dropdownMenu/dropdownMenu.handlers.js +4 -4
  11. package/src/components/dropdownMenu/dropdownMenu.store.js +5 -17
  12. package/src/components/dropdownMenu/dropdownMenu.view.yaml +15 -13
  13. package/src/components/form/form.handlers.js +173 -25
  14. package/src/components/form/form.store.js +176 -22
  15. package/src/components/form/form.view.yaml +217 -33
  16. package/src/components/pageOutline/pageOutline.handlers.js +57 -17
  17. package/src/components/pageOutline/pageOutline.store.js +46 -1
  18. package/src/components/pageOutline/pageOutline.view.yaml +7 -5
  19. package/src/components/popoverInput/popoverInput.handlers.js +99 -0
  20. package/src/components/popoverInput/popoverInput.store.js +48 -0
  21. package/src/components/popoverInput/popoverInput.view.yaml +55 -0
  22. package/src/components/select/select.handlers.js +116 -11
  23. package/src/components/select/select.store.js +84 -18
  24. package/src/components/select/select.view.yaml +40 -10
  25. package/src/components/sidebar/sidebar.view.yaml +1 -1
  26. package/src/components/sliderInput/sliderInput.handlers.js +41 -0
  27. package/src/components/sliderInput/sliderInput.store.js +18 -0
  28. package/src/components/sliderInput/sliderInput.view.yaml +42 -0
  29. package/src/components/table/table.handlers.js +1 -1
  30. package/src/components/tabs/tabs.handlers.js +10 -0
  31. package/src/components/tabs/tabs.store.js +29 -0
  32. package/src/components/tabs/tabs.view.yaml +64 -0
  33. package/src/components/tooltip/tooltip.handlers.js +0 -0
  34. package/src/components/tooltip/tooltip.store.js +12 -0
  35. package/src/components/tooltip/tooltip.view.yaml +27 -0
  36. package/src/components/waveform/waveform.handlers.js +92 -0
  37. package/src/components/waveform/waveform.store.js +17 -0
  38. package/src/components/waveform/waveform.view.yaml +38 -0
  39. package/src/entry-iife-layout.js +3 -0
  40. package/src/entry-iife-ui.js +4 -0
  41. package/src/index.js +5 -1
  42. package/src/primitives/button.js +10 -0
  43. package/src/primitives/colorPicker.js +9 -0
  44. package/src/primitives/dialog.js +254 -0
  45. package/src/primitives/input.js +41 -11
  46. package/src/primitives/popover.js +280 -0
  47. package/src/primitives/slider.js +18 -9
  48. package/src/primitives/svg.js +2 -0
  49. package/src/primitives/textarea.js +25 -1
  50. package/src/styles/cursorStyles.js +38 -2
  51. package/src/components/dialog/dialog.handlers.js +0 -5
  52. package/src/components/dialog/dialog.store.js +0 -25
  53. package/src/components/dialog/dialog.view.yaml +0 -44
  54. package/src/components/popover/popover.handlers.js +0 -5
  55. package/src/components/popover/popover.store.js +0 -12
  56. package/src/components/popover/popover.view.yaml +0 -57
@@ -1,24 +1,24 @@
1
- var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)Nr(e,r,{get:t[r],enumerable:!0})};function O(e,...t){let r="";return e.forEach((s,i)=>{r+=s+(t[i]||"")}),r}var Pr=["xs","sm","md","lg","xl"],xt={mt:"margin-top",mr:"margin-right",mb:"margin-bottom",ml:"margin-left",m:"margin",mh:"margin-left margin-right",mv:"margin-top margin-bottom",pt:"padding-top",pr:"padding-right",pb:"padding-bottom",pl:"padding-left",p:"padding",ph:"padding-left padding-right",pv:"padding-top padding-bottom",g:"gap",gv:"row-gap",gh:"column-gap",bw:"border-width",bwt:"border-top-width",bwr:"border-right-width",bwb:"border-bottom-width",bwl:"border-left-width",bc:"border-color",br:"border-radius",pos:"position",shadow:"box-shadow",ta:"text-align",c:"color",cur:"cursor"},q=Object.keys(xt),J=e=>e.concat(Pr.flatMap(t=>e.map(r=>`${t}-${r}`))),_t={default:void 0,xl:"@media only screen and (max-width: 1280px)",lg:"@media only screen and (max-width: 1024px)",md:"@media only screen and (max-width: 768px)",sm:"@media only screen and (max-width: 640px)"},K=(e,t={})=>{let r="";for(let[s,i]of Object.entries(_t)){s!=="default"&&(r+=`${i} {`);for(let[n,a]of Object.entries(e)){let o=t[n]?` ${t[n]} `:" ";for(let[l,h]of Object.entries(a)){let u=xt[n],y=h.startsWith("--")?`var(${h})`:h,E=s==="default"?n:`${s}-${n}`,T=s==="default"?`h-${n}`:`${s}-h-${n}`;if(u){let c=u.split(" ").map(d=>`${d}: ${y};`).join(" ");r+=`
2
- :host([${E}="${l}"])${o}{
3
- ${c}
1
+ var rettangoli=(()=>{var Vs=Object.defineProperty;var P=(e,t)=>{for(var r in t)Vs(e,r,{get:t[r],enumerable:!0})};function I(e,...t){let r="";return e.forEach((s,n)=>{r+=s+(t[n]||"")}),r}var Rs=["xs","sm","md","lg","xl"],sr={mt:"margin-top",mr:"margin-right",mb:"margin-bottom",ml:"margin-left",m:"margin",mh:"margin-left margin-right",mv:"margin-top margin-bottom",pt:"padding-top",pr:"padding-right",pb:"padding-bottom",pl:"padding-left",p:"padding",ph:"padding-left padding-right",pv:"padding-top padding-bottom",g:"gap",gv:"row-gap",gh:"column-gap",bw:"border-width",bwt:"border-top-width",bwr:"border-right-width",bwb:"border-bottom-width",bwl:"border-left-width",bc:"border-color",br:"border-radius",pos:"position",shadow:"box-shadow",ta:"text-align",c:"color",cur:"cursor"},re=Object.keys(sr),se=e=>e.concat(Rs.flatMap(t=>e.map(r=>`${t}-${r}`))),ir={default:void 0,xl:"@media only screen and (max-width: 1280px)",lg:"@media only screen and (max-width: 1024px)",md:"@media only screen and (max-width: 768px)",sm:"@media only screen and (max-width: 640px)"},Q=(e,t={})=>{let r="";for(let[s,n]of Object.entries(ir)){s!=="default"&&(r+=`${n} {`);for(let[i,a]of Object.entries(e)){let o=t[i]?` ${t[i]} `:" ";for(let[l,p]of Object.entries(a)){let u=sr[i],c=p.startsWith("--")?`var(${p})`:p,h=s==="default"?i:`${s}-${i}`,y=s==="default"?`h-${i}`:`${s}-h-${i}`;if(u){let f=u.split(" ").map(m=>`${m}: ${c};`).join(" ");r+=`
2
+ :host([${h}="${l}"])${o}{
3
+ ${f}
4
4
  }
5
- :host([${T}="${l}"]:hover)${o}{
6
- ${c}
5
+ :host([${y}="${l}"]:hover)${o}{
6
+ ${f}
7
7
  }
8
8
  `}else r+=`
9
- :host([${E}="${l}"])${o}{
10
- ${h}
9
+ :host([${h}="${l}"])${o}{
10
+ ${p}
11
11
  }
12
- :host([${T}="${l}"]:hover)${o}{
13
- ${h}
12
+ :host([${y}="${l}"]:hover)${o}{
13
+ ${p}
14
14
  }
15
- `}}s!=="default"&&(r+="}")}return r};function jr(e){if(e===null||e.includes("/"))return!1;let t=String(e);return/[0-9]$/.test(t)}var Dr=e=>/%$/.test(e),L=e=>{if(e!==void 0)return Dr(e)?e:jr(e)?`${e}px`:Object.keys($).includes(e)?`var(${$[e]})`:e},$={xs:"--spacing-xs",sm:"--spacing-sm",md:"--spacing-md",lg:"--spacing-lg",xl:"--spacing-xl"};function Y(e,t=":host"){let r="";for(let[s,i]of Object.entries(_t)){s!=="default"&&(r+=`${i} {
16
- `);let n="";for(let[a,o]of Object.entries(e[s]))o!=null&&(n+=`${a}: ${o};
15
+ `}}s!=="default"&&(r+="}")}return r};function Ps(e){if(e===null||e.includes("/"))return!1;let t=String(e);return/[0-9]$/.test(t)}var js=e=>/%$/.test(e),D=e=>{if(e!==void 0)return js(e)?e:Ps(e)?`${e}px`:Object.keys(N).includes(e)?`var(${N[e]})`:e},N={xs:"--spacing-xs",sm:"--spacing-sm",md:"--spacing-md",lg:"--spacing-lg",xl:"--spacing-xl"};function ie(e,t=":host"){let r="";for(let[s,n]of Object.entries(ir)){s!=="default"&&(r+=`${n} {
16
+ `);let i="";for(let[a,o]of Object.entries(e[s]))o!=null&&(i+=`${a}: ${o};
17
17
  `);r+=`${t} {
18
- ${n.trim()}
18
+ ${i.trim()}
19
19
  }
20
20
  `,s!=="default"&&(r+=`}
21
- `)}return r}var se=O`
21
+ `)}return r}var oe=(e,t)=>{if(e===t)return!0;if(e==null||t==null||typeof e!="object"||typeof t!="object")return!1;let r=Object.keys(e),s=Object.keys(t);if(r.length!==s.length)return!1;for(let n of r)if(!s.includes(n)||!oe(e[n],t[n]))return!1;return!0};var fe=I`
22
22
  :host([flex="0"]) {
23
23
  flex: 0;
24
24
  }
@@ -58,7 +58,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
58
58
  :host([flex="12"]) {
59
59
  flex: 12;
60
60
  }
61
- `;var Vr={mt:$,mr:$,mb:$,ml:$,m:$,mh:$,mv:$,s:{sm:`
61
+ `;var Ds={mt:N,mr:N,mb:N,ml:N,m:N,mh:N,mv:N,s:{sm:`
62
62
  height: 28px;
63
63
  padding-left: 12px;
64
64
  padding-right: 12px;
@@ -104,7 +104,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
104
104
  `,lk:`
105
105
  background-color: transparent;
106
106
  color: var(--foreground);
107
- `}},Rr={mt:"button",mr:"button",mb:"button",ml:"button",m:"button",mh:"button",mv:"button",s:"button",v:"button"},St=K(Vr,Rr);var ie=O`
107
+ `}},Bs={mt:"button",mr:"button",mb:"button",ml:"button",m:"button",mh:"button",mv:"button",s:"button",v:"button"},nr=Q(Ds,Bs);var ye=I`
108
108
  a, a:link, a:visited, a:hover, a:active {
109
109
  color: inherit;
110
110
  text-decoration: none;
@@ -114,7 +114,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
114
114
  margin: 0;
115
115
  font: inherit;
116
116
  }
117
- `;var Ie=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
117
+ `;var Ge=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
118
118
  :host {
119
119
  display: contents;
120
120
  }
@@ -250,15 +250,15 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
250
250
  gap: 0;
251
251
  }
252
252
 
253
- ${ie}
253
+ ${ye}
254
254
 
255
255
  a {
256
256
  display: contents;
257
257
  }
258
258
 
259
- ${St}
260
- ${se}
261
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._containerElement=null,this._buttonElement=document.createElement("button"),this._slotElement=document.createElement("slot"),this._iconElement=null,this._buttonElement.appendChild(this._slotElement)}static get observedAttributes(){return["key","href","target","w","t","icon","disabled","v","s","sq","ip"]}connectedCallback(){this._updateButton()}attributeChangedCallback(t,r,s){this._updateButton()}_updateButton(){this.shadow.innerHTML="",this._updateIcon(),this.hasAttribute("sq")||this._updateWidth(),this.hasAttribute("disabled")?this._buttonElement.setAttribute("disabled",""):this._buttonElement.removeAttribute("disabled");let r=this.getAttribute("href");if(r){let s=document.createElement("a");s.setAttribute("href",r);let i=this.getAttribute("target");i&&s.setAttribute("target",i),s.appendChild(this._buttonElement),this.shadow.appendChild(s),this._containerElement=s}else this.shadow.appendChild(this._buttonElement),this._containerElement=this._buttonElement}_updateIcon(){this._iconElement&&(this._iconElement.remove(),this._iconElement=null);let t=this.getAttribute("icon");if(t){let r={pr:"pr-fg",se:"ac-fg",de:"pr-fg",ol:"ac-fg",gh:"ac-fg",lk:"ac-fg"},s={sm:14,md:18,lg:22},i=r[this.getAttribute("v")]||"pr-fg",n=18;if(this.hasAttribute("sq")){let o={sm:14,lg:22},l=this.getAttribute("s");n=o[l]||18}else n=s[this.getAttribute("t")]||18;this._iconElement=document.createElement("rtgl-svg"),this._iconElement.setAttribute("svg",t),this._iconElement.setAttribute("c",i),this._iconElement.setAttribute("wh",n.toString()),this.getAttribute("ip")==="s"?this._buttonElement.insertBefore(this._iconElement,this._slotElement):this._buttonElement.appendChild(this._iconElement)}}_updateWidth(){let t=L(this.getAttribute("w"));t==="f"?this._buttonElement.style.width="var(--width-stretch)":t!=null?(this._buttonElement.style.width=t,this._buttonElement.style.minWidth=t,this._buttonElement.style.maxWidth=t):(this._buttonElement.style.width="",this._buttonElement.style.minWidth="",this._buttonElement.style.maxWidth="")}},kt=({render:e,html:t})=>Ie;var Et=O`
259
+ ${nr}
260
+ ${fe}
261
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._containerElement=null,this._buttonElement=document.createElement("button"),this._slotElement=document.createElement("slot"),this._iconElement=null,this._buttonElement.appendChild(this._slotElement)}static get observedAttributes(){return["key","href","target","w","t","icon","disabled","v","s","sq","ip"]}connectedCallback(){this._updateButton()}attributeChangedCallback(t,r,s){this._updateButton()}_updateButton(){this.shadow.innerHTML="",this._updateIcon(),this.hasAttribute("sq")||this._updateWidth(),this.hasAttribute("disabled")?this._buttonElement.setAttribute("disabled",""):this._buttonElement.removeAttribute("disabled");let r=this.getAttribute("href");if(r){let s=document.createElement("a");s.setAttribute("href",r);let n=this.getAttribute("target");n&&s.setAttribute("target",n),s.appendChild(this._buttonElement),this.shadow.appendChild(s),this._containerElement=s}else this.shadow.appendChild(this._buttonElement),this._containerElement=this._buttonElement}_updateIcon(){this._iconElement&&(this._iconElement.remove(),this._iconElement=null);let t=this.getAttribute("icon");if(t){let r={pr:"pr-fg",se:"ac-fg",de:"pr-fg",ol:"ac-fg",gh:"ac-fg",lk:"ac-fg"},s={sm:14,md:18,lg:22},n=r[this.getAttribute("v")]||"pr-fg",i=18;if(this.hasAttribute("sq")){let o={sm:14,lg:22},l=this.getAttribute("s");i=o[l]||18}else i=s[this.getAttribute("t")]||18;this._iconElement=document.createElement("rtgl-svg"),this._iconElement.setAttribute("svg",t),this._iconElement.setAttribute("c",n),this._iconElement.setAttribute("wh",i.toString()),this.getAttribute("ip")==="s"?this._buttonElement.insertBefore(this._iconElement,this._slotElement):this._buttonElement.appendChild(this._iconElement)}}_updateWidth(){let t=D(this.getAttribute("w"));t==="f"?this._buttonElement.style.width="var(--width-stretch)":t!=null?(this._buttonElement.style.width=t,this._buttonElement.style.minWidth=t,this._buttonElement.style.maxWidth=t):(this._buttonElement.style.width="",this._buttonElement.style.minWidth="",this._buttonElement.style.maxWidth="")}getBoundingClientRect(){return this._buttonElement?this._buttonElement.getBoundingClientRect():super.getBoundingClientRect()}},or=({render:e,html:t})=>Ge;var ar=I`
262
262
 
263
263
  :host([d="h"]) {
264
264
  flex-direction: row;
@@ -329,7 +329,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
329
329
  justify-content: center;
330
330
  }
331
331
  }
332
- `;var Mr={cur:{p:"pointer",m:"move",grab:"grab",grabbing:"grabbing"}},R=K(Mr);var At=O`
332
+ `;var Ws={cur:{alias:"alias","all-scroll":"all-scroll",auto:"auto",cell:"cell","col-resize":"col-resize","context-menu":"context-menu",copy:"copy",crosshair:"crosshair",default:"default","e-resize":"e-resize","ew-resize":"ew-resize",grab:"grab",grabbing:"grabbing",help:"help",move:"move","n-resize":"n-resize","ne-resize":"ne-resize","nesw-resize":"nesw-resize","ns-resize":"ns-resize","nw-resize":"nw-resize","nwse-resize":"nwse-resize","no-drop":"no-drop",none:"none","not-allowed":"not-allowed",pointer:"pointer",progress:"progress","row-resize":"row-resize","s-resize":"s-resize","se-resize":"se-resize","sw-resize":"sw-resize",text:"text",url:"url","w-resize":"w-resize",wait:"wait","zoom-in":"zoom-in","zoom-out":"zoom-out",p:"pointer",m:"move"}},U=Q(Ws);var lr=I`
333
333
  :host([sh]:not([sv])) {
334
334
  overflow-x: scroll;
335
335
  flex-wrap: nowrap;
@@ -347,7 +347,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
347
347
  flex-wrap: nowrap;
348
348
  }
349
349
 
350
- `;var ce={xs:"--border-width-xs",sm:"--border-width-sm",md:"--border-width-md",lg:"--border-width-lg",xl:"--border-width-xl"},zr={bgc:{pr:`
350
+ `;var Ae={xs:"--border-width-xs",sm:"--border-width-sm",md:"--border-width-md",lg:"--border-width-lg",xl:"--border-width-xl"},Ms={bgc:{pr:`
351
351
  background-color: var(--primary);
352
352
  `,se:`
353
353
  background-color: var(--secondary);
@@ -387,7 +387,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
387
387
  left: 0;
388
388
  top: 0;
389
389
  height: 100%;
390
- `},shadow:{sm:"--shadow-sm",md:"--shadow-md",lg:"--shadow-lg"},pt:$,pr:$,pb:$,pl:$,p:$,ph:$,pv:$,g:$,gv:$,gh:$,bw:ce,bwt:ce,bwr:ce,bwb:ce,bwl:ce,bc:{pr:"--primary",se:"--secondary",de:"--destructive",fg:"--foreground",bg:"--background",mu:"--muted",ac:"--accent",bo:"--border",tr:"transparent"},br:{xs:"--border-radius-xs",sm:"--border-radius-sm",md:"--border-radius-md",lg:"--border-radius-lg",xl:"--border-radius-xl",f:"--border-radius-f"}},fe=K(zr);var Wr={mt:$,mr:$,mb:$,ml:$,m:$,mh:$,mv:$},z=K(Wr);var Te=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
390
+ `},shadow:{sm:"--shadow-sm",md:"--shadow-md",lg:"--shadow-lg"},pt:N,pr:N,pb:N,pl:N,p:N,ph:N,pv:N,g:N,gv:N,gh:N,bw:Ae,bwt:Ae,bwr:Ae,bwb:Ae,bwl:Ae,bc:{pr:"--primary",se:"--secondary",de:"--destructive",fg:"--foreground",bg:"--background",mu:"--muted",ac:"--accent",bo:"--border",tr:"transparent"},br:{xs:"--border-radius-xs",sm:"--border-radius-sm",md:"--border-radius-md",lg:"--border-radius-lg",xl:"--border-radius-xl",f:"--border-radius-f"}},Te=Q(Ms);var zs={mt:N,mr:N,mb:N,ml:N,m:N,mh:N,mv:N},H=Q(zs);var Xe=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
391
391
  slot {
392
392
  display: contents;
393
393
  }
@@ -406,13 +406,13 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
406
406
  flex-wrap: wrap;
407
407
  }
408
408
 
409
- ${se}
410
- ${At}
411
- ${Et}
412
- ${z}
413
- ${R}
414
409
  ${fe}
415
- ${ie}
410
+ ${lr}
411
+ ${ar}
412
+ ${H}
413
+ ${U}
414
+ ${Te}
415
+ ${ye}
416
416
 
417
417
  :host([href]) {
418
418
  cursor: pointer;
@@ -427,7 +427,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
427
427
  bottom: 0;
428
428
  z-index: 1;
429
429
  }
430
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styleElement=document.createElement("style"),this._slotElement=document.createElement("slot"),this._linkElement=null,this.shadow.appendChild(this._styleElement),this._updateDOM()}static get observedAttributes(){return["href","target","op",...J([...q,"wh","w","h","hidden","sh","sv","z"])]}_styles={default:{},sm:{},md:{},lg:{},xl:{}};_lastStyleString="";_updateDOM(){let t=this.getAttribute("href"),r=this.getAttribute("target");this._slotElement.parentNode!==this.shadow&&this.shadow.appendChild(this._slotElement),t?(this._linkElement||(this._linkElement=document.createElement("a"),this.shadow.appendChild(this._linkElement)),this._linkElement.href=t,r?this._linkElement.target=r:this._linkElement.removeAttribute("target")):this._linkElement&&(this.shadow.removeChild(this._linkElement),this._linkElement=null)}attributeChangedCallback(t,r,s){if(t==="href"||t==="target"){this._updateDOM();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(n=>{let a=E=>`${n==="default"?"":`${n}-`}${E}`,o=this.getAttribute(a("wh")),l=L(o===null?this.getAttribute(a("w")):o),h=L(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),y=this.getAttribute(a("z"));y!==null&&(this._styles[n]["z-index"]=y),u!==null&&(this._styles[n].opacity=u),l==="f"?this._styles[n].width="var(--width-stretch)":l!==void 0&&(this._styles[n].width=l,this._styles[n]["min-width"]=l,this._styles[n]["max-width"]=l),h==="f"?this._styles[n].height="100%":h!==void 0&&(this._styles[n].height=h,this._styles[n]["min-height"]=h,this._styles[n]["max-height"]=h),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="flex !important")});let i=Y(this._styles);i!==this._lastStyleString&&(this._styleElement.textContent=i,this._lastStyleString=i)}},$t=({render:e,html:t})=>Te;var Fr={ta:{s:"start",c:"center",e:"end",j:"justify"},s:{h1:`
430
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styleElement=document.createElement("style"),this._slotElement=document.createElement("slot"),this._linkElement=null,this.shadow.appendChild(this._styleElement),this._updateDOM()}static get observedAttributes(){return["href","target","op",...se([...re,"wh","w","h","hidden","sh","sv","z"])]}_styles={default:{},sm:{},md:{},lg:{},xl:{}};_lastStyleString="";_updateDOM(){let t=this.getAttribute("href"),r=this.getAttribute("target");this._slotElement.parentNode!==this.shadow&&this.shadow.appendChild(this._slotElement),t?(this._linkElement||(this._linkElement=document.createElement("a"),this.shadow.appendChild(this._linkElement)),this._linkElement.href=t,r?this._linkElement.target=r:this._linkElement.removeAttribute("target")):this._linkElement&&(this.shadow.removeChild(this._linkElement),this._linkElement=null)}attributeChangedCallback(t,r,s){if(t==="href"||t==="target"){this._updateDOM();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(i=>{let a=h=>`${i==="default"?"":`${i}-`}${h}`,o=this.getAttribute(a("wh")),l=D(o===null?this.getAttribute(a("w")):o),p=D(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),c=this.getAttribute(a("z"));c!==null&&(this._styles[i]["z-index"]=c),u!==null&&(this._styles[i].opacity=u),l==="f"?this._styles[i].width="var(--width-stretch)":l!==void 0&&(this._styles[i].width=l,this._styles[i]["min-width"]=l,this._styles[i]["max-width"]=l),p==="f"?this._styles[i].height="100%":p!==void 0&&(this._styles[i].height=p,this._styles[i]["min-height"]=p,this._styles[i]["max-height"]=p),this.hasAttribute(a("hidden"))&&(this._styles[i].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[i].display="flex !important")});let n=ie(this._styles);n!==this._lastStyleString&&(this._styleElement.textContent=n,this._lastStyleString=n)}},pr=({render:e,html:t})=>Xe;var Ks={ta:{s:"start",c:"center",e:"end",j:"justify"},s:{h1:`
431
431
  font-size: var(--h1-font-size);
432
432
  font-weight: var(--h1-font-weight);
433
433
  line-height: var(--h1-line-height);
@@ -467,7 +467,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
467
467
  font-weight: var(--xs-font-weight);
468
468
  line-height: var(--xs-line-height);
469
469
  letter-spacing: var(--xs-letter-spacing);
470
- `}},Ct=K(Fr);var Hr={c:{fg:"--foreground",de:"--destructive","pr-fg":"--primary-foreground","se-fg":"--secondary-foreground","mu-fg":"--muted-foreground","ac-fg":"--accent-foreground"}},me=K(Hr);var Le=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
470
+ `}},cr=Q(Ks);var Fs={c:{fg:"--foreground",de:"--destructive","pr-fg":"--primary-foreground","se-fg":"--secondary-foreground","mu-fg":"--muted-foreground","ac-fg":"--accent-foreground"}},Le=Q(Fs);var Qe=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
471
471
  :host {
472
472
  display: block;
473
473
  font-size: var(--md-font-size);
@@ -498,11 +498,11 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
498
498
  bottom: 0;
499
499
  z-index: 1;
500
500
  }
501
- ${Ct}
502
- ${me}
503
- ${z}
504
- ${R}
505
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._slotElement=document.createElement("slot"),this._linkElement=null,this._updateDOM()}static get observedAttributes(){return["key","w","ellipsis","href","target"]}connectedCallback(){this._updateStyling(),this._updateDOM()}attributeChangedCallback(t,r,s){t==="href"||t==="target"?this._updateDOM():this._updateStyling()}_updateStyling(){let t=L(this.getAttribute("w"));this.hasAttribute("ellipsis")?(this.style.overflow="hidden",this.style.textOverflow="ellipsis",this.style.whiteSpace="nowrap"):(this.style.overflow="",this.style.textOverflow="",this.style.whiteSpace=""),t==="f"?this.style.width="var(--width-stretch)":t!==void 0?this.style.width=t:this.style.width=""}_updateDOM(){let t=this.getAttribute("href"),r=this.getAttribute("target");this._slotElement.parentNode!==this.shadow&&this.shadow.appendChild(this._slotElement),t?(this._linkElement||(this._linkElement=document.createElement("a"),this.shadow.appendChild(this._linkElement)),this._linkElement.href=t,r?this._linkElement.target=r:this._linkElement.removeAttribute("target")):this._linkElement&&(this.shadow.removeChild(this._linkElement),this._linkElement=null)}},Ot=({render:e,html:t})=>Le;var Ne=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
501
+ ${cr}
502
+ ${Le}
503
+ ${H}
504
+ ${U}
505
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._slotElement=document.createElement("slot"),this._linkElement=null,this._updateDOM()}static get observedAttributes(){return["key","w","ellipsis","href","target"]}connectedCallback(){this._updateStyling(),this._updateDOM()}attributeChangedCallback(t,r,s){t==="href"||t==="target"?this._updateDOM():this._updateStyling()}_updateStyling(){let t=D(this.getAttribute("w"));this.hasAttribute("ellipsis")?(this.style.overflow="hidden",this.style.textOverflow="ellipsis",this.style.whiteSpace="nowrap"):(this.style.overflow="",this.style.textOverflow="",this.style.whiteSpace=""),t==="f"?this.style.width="var(--width-stretch)":t!==void 0?this.style.width=t:this.style.width=""}_updateDOM(){let t=this.getAttribute("href"),r=this.getAttribute("target");this._slotElement.parentNode!==this.shadow&&this.shadow.appendChild(this._slotElement),t?(this._linkElement||(this._linkElement=document.createElement("a"),this.shadow.appendChild(this._linkElement)),this._linkElement.href=t,r?this._linkElement.target=r:this._linkElement.removeAttribute("target")):this._linkElement&&(this.shadow.removeChild(this._linkElement),this._linkElement=null)}},ur=({render:e,html:t})=>Qe;var Ze=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
506
506
  :host {
507
507
  border-style: solid;
508
508
  box-sizing: border-box;
@@ -526,7 +526,7 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
526
526
  width: 100%;
527
527
  }
528
528
 
529
- ${ie}
529
+ ${ye}
530
530
 
531
531
  a {
532
532
  display: block;
@@ -538,10 +538,10 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
538
538
  cursor: pointer;
539
539
  }
540
540
 
541
- ${fe}
542
- ${z}
543
- ${R}
544
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styleElement=document.createElement("style"),this._imgElement=document.createElement("img"),this._linkElement=null,this.shadow.appendChild(this._styleElement),this._updateDOM()}static get observedAttributes(){return J([...q,"key","src","href","target","wh","w","h","hidden","height","width","z"])}_styles={default:{},sm:{},md:{},lg:{},xl:{}};_lastStyleString="";_updateDOM(){let t=this.getAttribute("href"),r=this.getAttribute("target");t?(this._linkElement||(this._linkElement=document.createElement("a")),this._linkElement.href=t,r?this._linkElement.target=r:this._linkElement.removeAttribute("target"),this._linkElement.appendChild(this._imgElement),this._linkElement.parentNode!==this.shadow&&this.shadow.appendChild(this._linkElement)):this._linkElement?(this._imgElement.parentNode===this._linkElement&&this.shadow.appendChild(this._imgElement),this._linkElement.parentNode===this.shadow&&this.shadow.removeChild(this._linkElement),this._linkElement=null):this._imgElement.parentNode!==this.shadow&&this.shadow.appendChild(this._imgElement)}attributeChangedCallback(t,r,s){if(t==="href"||t==="target"){this._updateDOM();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(n=>{let a=E=>`${n==="default"?"":`${n}-`}${E}`,o=this.getAttribute(a("wh")),l=L(o===null?this.getAttribute(a("w")):o),h=L(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("o")),y=this.getAttribute(a("z"));y!==null&&(this._styles[n]["z-index"]=y),u!==null&&(this._styles[n].opacity=u),l==="f"?this._styles[n].width="var(--width-stretch)":l!==void 0&&(this._styles[n].width=l,this._styles[n]["min-width"]=l,this._styles[n]["max-width"]=l),h==="f"?this._styles[n].height="100%":h!==void 0&&(this._styles[n].height=h,this._styles[n]["min-height"]=h,this._styles[n]["max-height"]=h),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=Y(this._styles);i!==this._lastStyleString&&(this._styleElement.textContent=i,this._lastStyleString=i),this._updateImageAttributes()}_updateImageAttributes(){let t=this.getAttribute("src"),r=this.getAttribute("width"),s=this.getAttribute("height");t!==null&&this._imgElement.setAttribute("src",t),r!==null&&this._imgElement.setAttribute("width",r),s!==null&&this._imgElement.setAttribute("height",s)}connectedCallback(){this._updateImageAttributes()}},It=({render:e,html:t})=>Ne;var Tt=O`
541
+ ${Te}
542
+ ${H}
543
+ ${U}
544
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styleElement=document.createElement("style"),this._imgElement=document.createElement("img"),this._linkElement=null,this.shadow.appendChild(this._styleElement),this._updateDOM()}static get observedAttributes(){return se([...re,"key","src","href","target","wh","w","h","hidden","height","width","z"])}_styles={default:{},sm:{},md:{},lg:{},xl:{}};_lastStyleString="";_updateDOM(){let t=this.getAttribute("href"),r=this.getAttribute("target");t?(this._linkElement||(this._linkElement=document.createElement("a")),this._linkElement.href=t,r?this._linkElement.target=r:this._linkElement.removeAttribute("target"),this._linkElement.appendChild(this._imgElement),this._linkElement.parentNode!==this.shadow&&this.shadow.appendChild(this._linkElement)):this._linkElement?(this._imgElement.parentNode===this._linkElement&&this.shadow.appendChild(this._imgElement),this._linkElement.parentNode===this.shadow&&this.shadow.removeChild(this._linkElement),this._linkElement=null):this._imgElement.parentNode!==this.shadow&&this.shadow.appendChild(this._imgElement)}attributeChangedCallback(t,r,s){if(t==="href"||t==="target"){this._updateDOM();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(i=>{let a=h=>`${i==="default"?"":`${i}-`}${h}`,o=this.getAttribute(a("wh")),l=D(o===null?this.getAttribute(a("w")):o),p=D(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("o")),c=this.getAttribute(a("z"));c!==null&&(this._styles[i]["z-index"]=c),u!==null&&(this._styles[i].opacity=u),l==="f"?this._styles[i].width="var(--width-stretch)":l!==void 0&&(this._styles[i].width=l,this._styles[i]["min-width"]=l,this._styles[i]["max-width"]=l),p==="f"?this._styles[i].height="100%":p!==void 0&&(this._styles[i].height=p,this._styles[i]["min-height"]=p,this._styles[i]["max-height"]=p),this.hasAttribute(a("hidden"))&&(this._styles[i].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[i].display="block !important")});let n=ie(this._styles);n!==this._lastStyleString&&(this._styleElement.textContent=n,this._lastStyleString=n),this._updateImageAttributes()}_updateImageAttributes(){let t=this.getAttribute("src"),r=this.getAttribute("width"),s=this.getAttribute("height");t!==null&&this._imgElement.setAttribute("src",t),r!==null&&this._imgElement.setAttribute("width",r),s!==null&&this._imgElement.setAttribute("height",s)}connectedCallback(){this._updateImageAttributes()}},dr=({render:e,html:t})=>Ze;var hr=I`
545
545
  :host([pt="xs"]) svg {
546
546
  padding-top: var(--spacing-xs);
547
547
  }
@@ -657,15 +657,16 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
657
657
  padding-top: var(--spacing-xl);
658
658
  padding-bottom: var(--spacing-xl);
659
659
  }
660
- `;var Pe=class e extends HTMLElement{static styleSheet=null;static _icons={};static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
660
+ `;var et=class e extends HTMLElement{static styleSheet=null;static _icons={};static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
661
661
  :host {
662
662
  color: var(--foreground);
663
663
  }
664
- ${me}
665
- ${Tt}
666
- ${se}
667
- ${R}
668
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet]}static get observedAttributes(){return["key","svg","w","h","wh"]}static get icons(){return e._icons}static addIcon(t,r){e._icons[t]=r}connectedCallback(){this._updateSizing(),this._render()}attributeChangedCallback(t,r,s){this._updateSizing(),this._render()}_updateSizing(){let t=this.getAttribute("wh"),r=L(t===null?this.getAttribute("w"):t),s=L(t===null?this.getAttribute("h"):t);r&&(this.style.width=r),s&&(this.style.height=s)}_render(){try{let t=this.getAttribute("svg"),r=e._icons[t]||(window.rtglIcons||{})[t];if(r){this.shadow.innerHTML=r;return}}catch(t){console.log("error in rtgl-svg render",t)}this.shadow.innerHTML=""}},Lt=({render:e,html:t})=>Pe;var je=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
664
+ ${Le}
665
+ ${hr}
666
+ ${H}
667
+ ${fe}
668
+ ${U}
669
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet]}static get observedAttributes(){return["key","svg","w","h","wh"]}static get icons(){return e._icons}static addIcon(t,r){e._icons[t]=r}connectedCallback(){this._updateSizing(),this._render()}attributeChangedCallback(t,r,s){this._updateSizing(),this._render()}_updateSizing(){let t=this.getAttribute("wh"),r=D(t===null?this.getAttribute("w"):t),s=D(t===null?this.getAttribute("h"):t);r&&(this.style.width=r),s&&(this.style.height=s)}_render(){try{let t=this.getAttribute("svg"),r=e._icons[t]||(window.rtglIcons||{})[t];if(r){this.shadow.innerHTML=r;return}}catch(t){console.log("error in rtgl-svg render",t)}this.shadow.innerHTML=""}},fr=({render:e,html:t})=>et;var tt=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
669
670
  :host {
670
671
  display: contents;
671
672
  }
@@ -698,9 +699,9 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
698
699
  input:disabled {
699
700
  cursor: not-allowed;
700
701
  }
701
- ${z}
702
- ${R}
703
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styles={default:{},sm:{},md:{},lg:{},xl:{}},this._lastStyleString="",this._inputElement=document.createElement("input"),this._styleElement=document.createElement("style"),this.shadow.appendChild(this._styleElement),this.shadow.appendChild(this._inputElement),this._inputElement.addEventListener("input",this._onChange)}static get observedAttributes(){return["key","type","placeholder","disabled","s",...J([...q,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}_onChange=t=>{this.dispatchEvent(new CustomEvent("input-change",{detail:{value:this._inputElement.value}}))};attributeChangedCallback(t,r,s){if(["type","placeholder","disabled","s"].includes(t)){this._updateInputAttributes();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(n=>{let a=E=>`${n==="default"?"":`${n}-`}${E}`,o=this.getAttribute(a("wh")),l=L(o===null?this.getAttribute(a("w")):o),h=L(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),y=this.getAttribute(a("z"));y!==null&&(this._styles[n]["z-index"]=y),u!==null&&(this._styles[n].opacity=u),l==="f"?this._styles[n].width="var(--width-stretch)":l!==void 0&&(this._styles[n].width=l,this._styles[n]["min-width"]=l,this._styles[n]["max-width"]=l),h==="f"?this._styles[n].height="100%":h!==void 0&&(this._styles[n].height=h,this._styles[n]["min-height"]=h,this._styles[n]["max-height"]=h),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=Y(this._styles,"input");i!==this._lastStyleString&&(this._styleElement.textContent=i,this._lastStyleString=i)}_updateInputAttributes(){let t=this.getAttribute("type")||"text",r=this.getAttribute("placeholder"),s=this.hasAttribute("disabled");this._inputElement.setAttribute("type",t),r!==null?this._inputElement.setAttribute("placeholder",r):this._inputElement.removeAttribute("placeholder"),s?this._inputElement.setAttribute("disabled",""):this._inputElement.removeAttribute("disabled")}connectedCallback(){this._updateInputAttributes()}},Nt=({render:e,html:t})=>je;var De=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
702
+ ${H}
703
+ ${U}
704
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styles={default:{},sm:{},md:{},lg:{},xl:{}},this._lastStyleString="",this._inputElement=document.createElement("input"),this._styleElement=document.createElement("style"),this.shadow.appendChild(this._styleElement),this.shadow.appendChild(this._inputElement),this._inputElement.addEventListener("input",this._onChange)}static get observedAttributes(){return["key","type","placeholder","disabled","value","s",...se([...re,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}set value(t){this._inputElement.value=t}focus(){this._inputElement.focus()}_onChange=t=>{this.dispatchEvent(new CustomEvent("input-change",{detail:{value:this._inputElement.value}}))};attributeChangedCallback(t,r,s){if(t==="key"&&r!==s){requestAnimationFrame(()=>{let i=this.getAttribute("value");this._inputElement.value=i??""});return}if(["type","placeholder","disabled","value","step","s"].includes(t)){this._updateInputAttributes();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(i=>{let a=h=>`${i==="default"?"":`${i}-`}${h}`,o=this.getAttribute(a("wh")),l=D(o===null?this.getAttribute(a("w")):o),p=D(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),c=this.getAttribute(a("z"));c!==null&&(this._styles[i]["z-index"]=c),u!==null&&(this._styles[i].opacity=u),l==="f"?this._styles[i].width="var(--width-stretch)":l!==void 0&&(this._styles[i].width=l,this._styles[i]["min-width"]=l,this._styles[i]["max-width"]=l),p==="f"?this._styles[i].height="100%":p!==void 0&&(this._styles[i].height=p,this._styles[i]["min-height"]=p,this._styles[i]["max-height"]=p),this.hasAttribute(a("hidden"))&&(this._styles[i].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[i].display="block !important")});let n=ie(this._styles,"input");n!==this._lastStyleString&&(this._styleElement.textContent=n,this._lastStyleString=n)}_updateInputAttributes(){let t=this.getAttribute("type")||"text",r=this.getAttribute("placeholder"),s=this.getAttribute("value"),n=this.getAttribute("step"),i=this.hasAttribute("disabled");this._inputElement.setAttribute("type",t),r!==null?this._inputElement.setAttribute("placeholder",r):this._inputElement.removeAttribute("placeholder"),s!==null&&(this._inputElement.value=s),n!==null?this._inputElement.setAttribute("step",n):this._inputElement.removeAttribute("step"),i?this._inputElement.setAttribute("disabled",""):this._inputElement.removeAttribute("disabled")}connectedCallback(){this._updateInputAttributes()}},yr=({render:e,html:t})=>tt;var rt=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
704
705
  :host {
705
706
  display: contents;
706
707
  }
@@ -723,9 +724,9 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
723
724
  textarea:focus {
724
725
  border-color: var(--foreground);
725
726
  }
726
- ${z}
727
- ${R}
728
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._textareaElement=document.createElement("textarea"),this._textareaElement.setAttribute("type","text"),this.shadow.appendChild(this._textareaElement)}static get observedAttributes(){return["key","w","ellipsis","cols","rows","placeholder"]}get value(){return this._textareaElement.value}set value(t){this._textareaElement.value=t}connectedCallback(){this._updateTextareaAttributes()}attributeChangedCallback(t,r,s){this._updateTextareaAttributes()}_updateTextareaAttributes(){let t=this.getAttribute("cols"),r=this.getAttribute("rows"),s=this.getAttribute("placeholder");t!==null?this._textareaElement.setAttribute("cols",t):this._textareaElement.removeAttribute("cols"),r!==null?this._textareaElement.setAttribute("rows",r):this._textareaElement.removeAttribute("rows"),s!==null?this._textareaElement.setAttribute("placeholder",s):this._textareaElement.removeAttribute("placeholder")}},Pt=({render:e,html:t})=>De;var Ve=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
727
+ ${H}
728
+ ${U}
729
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._textareaElement=document.createElement("textarea"),this._textareaElement.setAttribute("type","text"),this.shadow.appendChild(this._textareaElement),this._textareaElement.addEventListener("input",this._onChange)}_onChange=t=>{this.dispatchEvent(new CustomEvent("textarea-change",{detail:{value:this._textareaElement.value}}))};static get observedAttributes(){return["key","w","ellipsis","cols","rows","placeholder","value"]}get value(){return this._textareaElement.value}set value(t){this._textareaElement.value=t}connectedCallback(){this._updateTextareaAttributes()}attributeChangedCallback(t,r,s){if(t==="key"&&r!==s){requestAnimationFrame(()=>{let n=this.getAttribute("value");this._textareaElement.value=n??""});return}this._updateTextareaAttributes()}_updateTextareaAttributes(){let t=this.getAttribute("cols"),r=this.getAttribute("rows"),s=this.getAttribute("placeholder"),n=this.getAttribute("value");t!==null?this._textareaElement.setAttribute("cols",t):this._textareaElement.removeAttribute("cols"),r!==null?this._textareaElement.setAttribute("rows",r):this._textareaElement.removeAttribute("rows"),s!==null?this._textareaElement.setAttribute("placeholder",s):this._textareaElement.removeAttribute("placeholder"),n!==null&&(this._textareaElement.value=n)}},mr=({render:e,html:t})=>rt;var st=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
729
730
  :host {
730
731
  display: contents;
731
732
  }
@@ -746,16 +747,15 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
746
747
  cursor: not-allowed;
747
748
  opacity: 0.5;
748
749
  }
749
- ${z}
750
- ${R}
751
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styles={default:{},sm:{},md:{},lg:{},xl:{}},this._lastStyleString="",this._inputElement=document.createElement("input"),this._inputElement.type="color",this._styleElement=document.createElement("style"),this.shadow.appendChild(this._styleElement),this.shadow.appendChild(this._inputElement),this._inputElement.addEventListener("change",this._onChange),this._inputElement.addEventListener("input",this._onInput)}static get observedAttributes(){return["key","value","disabled",...J([...q,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}set value(t){this._inputElement.value=t}_onChange=t=>{this.dispatchEvent(new CustomEvent("colorpicker-change",{detail:{value:this._inputElement.value}}))};_onInput=t=>{this.dispatchEvent(new CustomEvent("colorpicker-input",{detail:{value:this._inputElement.value}}))};attributeChangedCallback(t,r,s){if(["value","disabled"].includes(t)){this._updateInputAttributes();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(n=>{let a=E=>`${n==="default"?"":`${n}-`}${E}`,o=this.getAttribute(a("wh")),l=L(o===null?this.getAttribute(a("w")):o),h=L(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),y=this.getAttribute(a("z"));y!==null&&(this._styles[n]["z-index"]=y),u!==null&&(this._styles[n].opacity=u),l==="f"?this._styles[n].width="var(--width-stretch)":l!==void 0&&(this._styles[n].width=l,this._styles[n]["min-width"]=l,this._styles[n]["max-width"]=l),h==="f"?this._styles[n].height="100%":h!==void 0&&(this._styles[n].height=h,this._styles[n]["min-height"]=h,this._styles[n]["max-height"]=h),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=Y(this._styles,'input[type="color"]');i!==this._lastStyleString&&(this._styleElement.textContent=i,this._lastStyleString=i)}_updateInputAttributes(){let t=this.getAttribute("value"),r=this.hasAttribute("disabled");t!==null&&(this._inputElement.value=t),r?this._inputElement.setAttribute("disabled",""):this._inputElement.removeAttribute("disabled")}connectedCallback(){this._updateInputAttributes()}},jt=({render:e,html:t})=>Ve;var Re=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
750
+ ${H}
751
+ ${U}
752
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styles={default:{},sm:{},md:{},lg:{},xl:{}},this._lastStyleString="",this._inputElement=document.createElement("input"),this._inputElement.type="color",this._styleElement=document.createElement("style"),this.shadow.appendChild(this._styleElement),this.shadow.appendChild(this._inputElement),this._inputElement.addEventListener("change",this._onChange),this._inputElement.addEventListener("input",this._onInput)}static get observedAttributes(){return["key","value","disabled",...se([...re,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}set value(t){this._inputElement.value=t}_onChange=t=>{this.dispatchEvent(new CustomEvent("colorpicker-change",{detail:{value:this._inputElement.value}}))};_onInput=t=>{this.dispatchEvent(new CustomEvent("colorpicker-input",{detail:{value:this._inputElement.value}}))};attributeChangedCallback(t,r,s){if(t==="key"&&r!==s){requestAnimationFrame(()=>{let i=this.getAttribute("value");this._inputElement.value=i??"#000000"});return}if(["value","disabled"].includes(t)){this._updateInputAttributes();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(i=>{let a=h=>`${i==="default"?"":`${i}-`}${h}`,o=this.getAttribute(a("wh")),l=D(o===null?this.getAttribute(a("w")):o),p=D(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),c=this.getAttribute(a("z"));c!==null&&(this._styles[i]["z-index"]=c),u!==null&&(this._styles[i].opacity=u),l==="f"?this._styles[i].width="var(--width-stretch)":l!==void 0&&(this._styles[i].width=l,this._styles[i]["min-width"]=l,this._styles[i]["max-width"]=l),p==="f"?this._styles[i].height="100%":p!==void 0&&(this._styles[i].height=p,this._styles[i]["min-height"]=p,this._styles[i]["max-height"]=p),this.hasAttribute(a("hidden"))&&(this._styles[i].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[i].display="block !important")});let n=ie(this._styles,'input[type="color"]');n!==this._lastStyleString&&(this._styleElement.textContent=n,this._lastStyleString=n)}_updateInputAttributes(){let t=this.getAttribute("value"),r=this.hasAttribute("disabled");t!==null&&(this._inputElement.value=t),r?this._inputElement.setAttribute("disabled",""):this._inputElement.removeAttribute("disabled")}connectedCallback(){this._updateInputAttributes()}},gr=({render:e,html:t})=>st;var it=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
752
753
  :host {
753
754
  display: contents;
754
755
  }
755
756
  input[type="range"] {
756
757
  -webkit-appearance: none;
757
758
  appearance: none;
758
- width: 200px;
759
759
  height: 8px;
760
760
  background: var(--muted);
761
761
  border-radius: var(--border-radius-full);
@@ -801,21 +801,141 @@ var rettangoli=(()=>{var Nr=Object.defineProperty;var D=(e,t)=>{for(var r in t)N
801
801
  input[type="range"]:disabled::-moz-range-thumb {
802
802
  cursor: not-allowed;
803
803
  }
804
- ${z}
805
- ${R}
806
- `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styles={default:{},sm:{},md:{},lg:{},xl:{}},this._lastStyleString="",this._inputElement=document.createElement("input"),this._inputElement.type="range",this._styleElement=document.createElement("style"),this.shadow.appendChild(this._styleElement),this.shadow.appendChild(this._inputElement),this._inputElement.addEventListener("input",this._onInput),this._inputElement.addEventListener("change",this._onChange)}static get observedAttributes(){return["key","value","min","max","step","disabled",...J([...q,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}set value(t){this._inputElement.value=t}_onInput=t=>{this.dispatchEvent(new CustomEvent("slider-input",{detail:{value:this._inputElement.value}}))};_onChange=t=>{this.dispatchEvent(new CustomEvent("slider-change",{detail:{value:this._inputElement.value}}))};attributeChangedCallback(t,r,s){if(["value","min","max","step","disabled"].includes(t)){this._updateInputAttributes();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(n=>{let a=E=>`${n==="default"?"":`${n}-`}${E}`,o=this.getAttribute(a("wh")),l=L(o===null?this.getAttribute(a("w")):o),h=L(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),y=this.getAttribute(a("z"));y!==null&&(this._styles[n]["z-index"]=y),u!==null&&(this._styles[n].opacity=u),l==="f"?this._styles[n].width="var(--width-stretch)":l!==void 0&&(this._styles[n].width=l,this._styles[n]["min-width"]=l,this._styles[n]["max-width"]=l),h==="f"?this._styles[n].height="100%":h!==void 0&&(this._styles[n].height=h,this._styles[n]["min-height"]=h,this._styles[n]["max-height"]=h),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=Y(this._styles,'input[type="range"]');i!==this._lastStyleString&&(this._styleElement.textContent=i,this._lastStyleString=i)}_updateInputAttributes(){let t=this.getAttribute("value"),r=this.getAttribute("min"),s=this.getAttribute("max"),i=this.getAttribute("step"),n=this.hasAttribute("disabled");t!==null&&(this._inputElement.value=t),r!==null?this._inputElement.min=r:this._inputElement.min="0",s!==null?this._inputElement.max=s:this._inputElement.max="100",i!==null?this._inputElement.step=i:this._inputElement.step="1",n?this._inputElement.setAttribute("disabled",""):this._inputElement.removeAttribute("disabled")}connectedCallback(){this._updateInputAttributes()}},Dt=({render:e,html:t})=>Re;var Me={};D(Me,{handleClickDialogueOverlay:()=>Br});var Br=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("close-dialogue"))};var ze={};D(ze,{INITIAL_STATE:()=>Kr,selectState:()=>qr,setState:()=>Jr,toViewData:()=>Ur});var Kr=Object.freeze({}),Ur=({state:e,props:t})=>({isOpen:t.isOpen,w:t.w||600,position:{x:0,y:0}}),qr=({state:e})=>e,Jr=e=>{};var Vt={elementName:"rtgl-dialog",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{isOpen:{type:"boolean"},w:{type:"string"}}},refs:{"dialog-overlay":{eventListeners:{click:{handler:"handleClickDialogueOverlay"}}}},events:{"close-dialogue":{type:"object",properties:{}}},styles:null,template:{type:9,items:[{type:8,properties:[{key:"$if isOpen",value:{type:6,conditions:[{type:1,path:"isOpen"}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view pos=fix cor=full ah=c",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view#dialog-overlay pos=fix cor=full ah=c av=c bgc=bg op=0.5",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:"rtgl-view h=10vh",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:"rtgl-view#dialog-container z=100 bw=xs p=lg bgc=bg w=${w} br=sm",value:{type:9,items:[{type:8,properties:[{key:"slot name=content",value:{type:0,value:null}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#dialog-container z=100 bw=xs p=lg bgc=bg w=",{type:1,path:"w"}," br=sm"]}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}};var We={};D(We,{handleClickMenuItem:()=>Gr,handleClickPopoverOverlay:()=>Yr});var Yr=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("click-overlay"))},Gr=(e,t)=>{let{dispatchEvent:r}=t,s=parseInt(e.currentTarget.id.replace("option-","")),i=t.props.items[s];r(new CustomEvent("click-item",{detail:{index:s,item:i}}))};var Fe={};D(Fe,{INITIAL_STATE:()=>Xr,selectState:()=>Zr,setState:()=>es,toViewData:()=>Qr});var Xr=Object.freeze({}),Qr=({state:e,props:t})=>({items:t.items||[],isOpen:t.isOpen||!1,position:t.position||{x:0,y:0}}),Zr=({state:e})=>e,es=e=>{};var Rt={elementName:"rtgl-dropdown-menu",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{items:{type:"array",items:{type:"object",properties:{label:{type:"string"},type:{type:"string",enum:["label","item","separator"]}}}},isOpen:{type:"boolean"},position:{type:"object",properties:{x:{type:"number"},y:{type:"number"}}}}},refs:{popover:{eventListeners:{"click-overlay":{handler:"handleClickPopoverOverlay"}}},"option-*":{eventListeners:{click:{handler:"handleClickMenuItem"}}}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-popover#popover .isOpen=isOpen .position=position",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view wh=300 g=xs slot=content bgc=background br=md",value:{type:9,items:[{type:7,itemVar:"item",indexVar:"i",iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:"$if item.type == 'label'",value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"label"}},{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"item"}},{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"separator"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f ph=lg pv=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm c=mu-fg",value:{type:1,path:"item.label"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#option-${i} w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=mu",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"item.label"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#option-",{type:1,path:"i"}," w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=mu"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f h=1 ph=lg mv=md bgc=bo",value:{type:0,value:null}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}};var He={};D(He,{handleActionClick:()=>rs,handleColorPickerChange:()=>ns,handleInputChange:()=>ss,handleOnMount:()=>ts,handleSelectChange:()=>is,handleSliderChange:()=>as});var ts=e=>{let{store:t,props:r}=e;t.setDefaultValues(r.defaultValues)},ye=(e,t,r,s)=>{s(new CustomEvent("form-change",{detail:{fieldName:e,fieldValue:t,formValues:r}}))},rs=(e,t)=>{let{store:r,dispatchEvent:s}=t,i=e.currentTarget.id.replace("action-","");s(new CustomEvent("action-click",{detail:{actionId:i,formValues:r.selectFormValues()}}))},ss=(e,t)=>{let{store:r,dispatchEvent:s}=t,i=e.currentTarget.id.replace("input-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({fieldName:i,value:e.detail.value}),ye(i,e.detail.value,r.selectFormValues(),s))},is=(e,t)=>{let{store:r,dispatchEvent:s}=t,i=e.currentTarget.id.replace("select-","");i&&e.detail.selectedValue!==void 0&&(r.setFormFieldValue({fieldName:i,value:e.detail.selectedValue}),ye(i,e.detail.selectedValue,r.selectFormValues(),s))},ns=(e,t)=>{let{store:r,dispatchEvent:s}=t,i=e.currentTarget.id.replace("colorpicker-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({fieldName:i,value:e.detail.value}),ye(i,e.detail.value,r.selectFormValues(),s))},as=(e,t)=>{let{store:r,dispatchEvent:s}=t,i=e.currentTarget.id.replace("slider-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({fieldName:i,value:e.detail.value}),ye(i,e.detail.value,r.selectFormValues(),s))};var Be={};D(Be,{INITIAL_STATE:()=>os,selectFormValues:()=>ds,selectState:()=>hs,setDefaultValues:()=>fs,setFormFieldValue:()=>ms,setState:()=>us,toViewData:()=>cs});var os=Object.freeze({formValues:{}}),ls=["id","class","style","slot"],ps=e=>Object.entries(e).filter(([t])=>!ls.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),cs=({state:e,props:t,attrs:r})=>({containerAttrString:ps(r),title:t.form?.title||"",description:t?.form?.description||"",fields:t?.form?.fields||[],actions:t?.form?.actions||{buttons:[]},formValues:e.formValues}),hs=({state:e})=>e,ds=({state:e})=>e.formValues,us=e=>{},fs=(e,t)=>{e.formValues=t||{}},ms=(e,{fieldName:t,value:r})=>{e.formValues[t]=r};var Mt={elementName:"rtgl-form",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{defaultValues:{type:"object"},form:{type:"object",properties:{title:{type:"string"},description:{type:"string"},fields:{type:"array",items:{anyOf:[{type:"object",properties:{id:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"inputText"},placeholder:{type:"string"}},required:["id","label","inputType"],additionalProperties:!1},{type:"object",properties:{id:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"select"},placeholder:{type:"string"},options:{type:"array",items:{type:"object",properties:{id:{type:"string"},label:{type:"string"},value:{type:"any"}},required:["id","label","value"]}}},required:["id","label","inputType","options"],additionalProperties:!1},{type:"object",properties:{id:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"colorPicker"},value:{type:"string"}},required:["id","label","inputType"],additionalProperties:!1},{type:"object",properties:{id:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"slider"},min:{type:"number"},max:{type:"number"},step:{type:"number"},value:{type:"number"}},required:["id","label","inputType"],additionalProperties:!1}]}},actions:{type:"object",properties:{buttons:{type:"array",items:{type:"object",properties:{id:{type:"string"},content:{type:"string"}},required:["id","content"]}}}}}}}},refs:{"action-*":{eventListeners:{click:{handler:"handleActionClick"}}},"input-*":{eventListeners:{"input-change":{handler:"handleInputChange"}}},"select-*":{eventListeners:{"select-change":{handler:"handleSelectChange"}}},"colorpicker-*":{eventListeners:{"colorpicker-change":{handler:"handleColorPickerChange"}}},"slider-*":{eventListeners:{"slider-change":{handler:"handleSliderChange"}}}},events:{"form-change":{}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f h=f p=md g=lg ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=sm w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"title"}}],fast:!0},{type:8,properties:[{key:"rtgl-text c=mu-fg",value:{type:1,path:"description"}}],fast:!0}],fast:!0}}],fast:!0},{type:8,properties:[{key:"rtgl-view g=lg w=f",value:{type:9,items:[{type:7,itemVar:"field",indexVar:"i",iterable:{type:1,path:"fields"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=md w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=sm",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"field.label"}}],fast:!0},{type:8,properties:[{key:"rtgl-text s=sm c=mu-fg",value:{type:1,path:"field.description"}}],fast:!0}],fast:!0}}],fast:!0},{type:8,properties:[{key:'$if field.inputType == "inputText"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"inputText"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-input#input-${field.id} w=f placeholder=${field.placeholder}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-input#input-",{type:1,path:"field.id"}," w=f placeholder=",{type:1,path:"field.placeholder"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "select"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"select"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-select#select-${field.id} w=f .options=fields[${i}].options .placeholder=fields[${i}].placeholder .selectedValue=formValues[field.id]",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-select#select-",{type:1,path:"field.id"}," w=f .options=fields[",{type:1,path:"i"},"].options .placeholder=fields[",{type:1,path:"i"},"].placeholder .selectedValue=formValues[field.id]"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "colorPicker"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"colorPicker"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-color-picker#colorpicker-${field.id} value=${field.value}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-color-picker#colorpicker-",{type:1,path:"field.id"}," value=",{type:1,path:"field.value"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "slider"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"slider"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-slider#slider-${field.id} min=${field.min} max=${field.max} step=${field.step} value=${field.value}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-slider#slider-",{type:1,path:"field.id"}," min=",{type:1,path:"field.min"}," max=",{type:1,path:"field.max"}," step=",{type:1,path:"field.step"}," value=",{type:1,path:"field.value"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}}],fast:!1},{type:8,properties:[{key:"rtgl-view g=sm w=f",value:{type:9,items:[{type:7,itemVar:"button",indexVar:"i",iterable:{type:1,path:"actions.buttons"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h ah=e g=sm w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-button#action-${button.id}",value:{type:1,path:"button.content"},parsedKey:{type:2,parts:["rtgl-button#action-",{type:1,path:"button.id"}]}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view w=f h=f p=md g=lg ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Ke={};D(Ke,{handleClickStart:()=>ys});var ys=(e,t)=>{let{dispatchEvent:r,store:s}=t;console.log("handle click start",s.selectPath()),r(new CustomEvent("clickStart",{detail:{path:s.selectPath()}}))};var Ue={};D(Ue,{INITIAL_STATE:()=>gs,selectPath:()=>xs,setState:()=>_s,toViewData:()=>ws});var gs=Object.freeze({}),bs=["id","class","style","slot"],vs=e=>Object.entries(e).filter(([t])=>!bs.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),ws=({state:e,props:t,attrs:r})=>{console.log("attrs",{attrs:r,entries:Object.entries(r)});let s=r.start?JSON.parse(decodeURIComponent(r.start)):t.start;return{containerAttrString:vs(r),start:s||{label:"",image:{src:"",width:32,height:32,alt:""}}}},xs=({props:e})=>e.start.path,_s=e=>{};var zt={elementName:"rtgl-navbar",viewDataSchema:{type:"object",properties:{containerAttrString:{type:"string"},start:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"}}},hasImage:{type:"boolean"},hasHref:{type:"boolean"}}}}},propsSchema:{type:"object",properties:{start:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"}}}}}}},refs:{start:{eventListeners:{click:{handler:"handleClickStart"}}}},events:{clickStart:{type:"object",properties:{path:{type:"string"}}}},anchors:[[{"rtgl-text s=lg":"${start.label}"},{"$if start.image && start.image.src":[{"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}":null}]}]],template:{type:9,items:[{type:8,properties:[{key:"rtgl-view bgc=bg d=h h=48 av=c w=f ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"$if start.href",value:{type:6,conditions:[{type:1,path:"start.href"},{type:1,path:"start.path"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"a href=${start.href}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c g=lg g=md",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"start.label"}}],fast:!0},{type:8,properties:[{key:"$if start.image && start.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"start.image"},right:{type:1,path:"start.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"start.image.width"}," h=",{type:1,path:"start.image.height"}," src=",{type:1,path:"start.image.src"}," alt=",{type:1,path:"start.image.alt"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["a href=",{type:1,path:"start.href"}]}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view#start d=h av=c g=lg g=md cur=p",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"start.label"}}],fast:!0},{type:8,properties:[{key:"$if start.image && start.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"start.image"},right:{type:1,path:"start.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"start.image.width"}," h=",{type:1,path:"start.image.height"}," src=",{type:1,path:"start.image.src"}," alt=",{type:1,path:"start.image.alt"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c g=lg g=md",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"start.label"}}],fast:!0},{type:8,properties:[{key:"$if start.image && start.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"start.image"},right:{type:1,path:"start.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"start.image.width"}," h=",{type:1,path:"start.image.height"}," src=",{type:1,path:"start.image.src"}," alt=",{type:1,path:"start.image.alt"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}],id:null}}],fast:!1},{type:8,properties:[{key:"rtgl-view flex=1",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:"rtgl-view d=h av=c g=lg",value:{type:9,items:[{type:8,properties:[{key:"slot name=right",value:{type:0,value:null}}],fast:!0}],fast:!0}}],fast:!0}],fast:!1},parsedKey:{type:2,parts:["rtgl-view bgc=bg d=h h=48 av=c w=f ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var qe={};D(qe,{handleOnMount:()=>ks});var Wt=(e,t)=>{let{store:r,render:s}=t,i,n=-1/0;e.forEach(a=>{let o=a.getBoundingClientRect();o.top<=20&&o.top>n&&(n=o.top,i=a.id)}),i&&i!==r.selectCurrentId()&&(r.setCurrentId(i),s())},Ss=(e,t)=>{let{store:r,render:s}=t,i=e.querySelectorAll("rtgl-text[id]"),n=Array.from(i),a=n.map(l=>({id:l.id,href:`#${l.id}`,title:l.textContent}));r.setItems(a),Wt(n,t),s();let o=Wt.bind(void 0,n,t);return e.addEventListener("scroll",o,{passive:!0}),()=>{e.removeEventListener("scroll",o)}},ks=e=>{let{attrs:t}=e;requestAnimationFrame(()=>{let r=document.getElementById(t["target-id"]),s=Ss(r,e);return()=>{s()}})};var Je={};D(Je,{INITIAL_STATE:()=>Es,selectCurrentId:()=>Cs,selectState:()=>$s,setContentContainer:()=>Ts,setCurrentId:()=>Is,setItems:()=>Os,toViewData:()=>As});var Es=Object.freeze({items:[],currentId:null,contentContainer:null}),As=({state:e})=>({items:e.items.map(t=>({...t,c:t.id===e.currentId?"fg":"mu-fg"})),currentId:e.currentId}),$s=({state:e})=>e,Cs=({state:e})=>e.currentId,Os=(e,t)=>{e.items=t},Is=(e,t)=>{e.currentId=t},Ts=(e,t)=>{e.contentContainer=t};var Ft={elementName:"rtgl-page-outline",viewDataSchema:{type:"object",properties:{items:{type:"array",items:{type:"object",properties:{slug:{type:"string"},title:{type:"string"}}}},selectedSlug:{type:"string",nullable:!0}}},propsSchema:{type:"object",properties:{}},refs:{},events:{onItemClick:{type:"object"}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view h=f w=272",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f g=sm mt=xl",value:{type:9,items:[{type:7,itemVar:"item",indexVar:"i",iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view pv=xs av=c href=${item.href}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm c=${item.c} h-c=fg",value:{type:1,path:"item.title"},parsedKey:{type:2,parts:["rtgl-text s=sm c=",{type:1,path:"item.c"}," h-c=fg"]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view pv=xs av=c href=",{type:1,path:"item.href"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}};var Ye={};D(Ye,{handleClickOverlay:()=>Ls});var Ls=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("click-overlay"))};var Ge={};D(Ge,{INITIAL_STATE:()=>Ns,selectState:()=>js,toViewData:()=>Ps});var Ns=Object.freeze({}),Ps=({state:e,props:t})=>({isOpen:t.isOpen,position:t.position}),js=({state:e})=>e;var Ht={elementName:"rtgl-popover",viewDataSchema:{type:"object",properties:{isOpen:{type:"boolean"},position:{type:"object",properties:{x:{type:"number"},y:{type:"number"}}},placement:{type:"string"}}},propsSchema:{type:"object",properties:{placement:{type:"string",default:"bottom"},isOpen:{type:"boolean"},position:{type:"object",properties:{x:{type:"number"},y:{type:"number"}}}}},refs:{popoverOverlay:{eventListeners:{click:{handler:"handleClickOverlay"}}}},styles:{"@keyframes popover-in":{from:{opacity:0,transform:"scale(0.95)"},to:{opacity:1,transform:"scale(1)"}},"#popoverContainer":{animation:"popover-in 150ms cubic-bezier(0.16, 1, 0.3, 1)","transform-origin":"top"}},template:{type:9,items:[{type:8,properties:[{key:"$if isOpen",value:{type:6,conditions:[{type:1,path:"isOpen"}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view#popoverOverlay pos=fix cor=full",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:'rtgl-view#popoverContainer pos=fix style="left: ${position.x}px; top: ${position.y}px;" id=floatingElement bw=xs p=md bgc=mu',value:{type:9,items:[{type:8,properties:[{key:"slot name=content",value:{type:0,value:null}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:['rtgl-view#popoverContainer pos=fix style="left: ',{type:1,path:"position.x"},"px; top: ",{type:1,path:"position.y"},'px;" id=floatingElement bw=xs p=md bgc=mu']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}};var Xe={};D(Xe,{handleButtonClick:()=>Vs,handleClickOptionsPopoverOverlay:()=>Rs,handleOnMount:()=>Ds,handleOptionClick:()=>Ms});var Ds=e=>{let{store:t,props:r,render:s}=e;if(r.selectedValue!==null&&r.selectedValue!==void 0&&r.options){let i=r.options.find(n=>n.value===r.selectedValue);i&&(t.update(n=>{n.selectedValue=i.value,n.selectedLabel=i.label}),s())}},Vs=(e,t)=>{let{store:r,render:s,getRefIds:i}=t;r.openOptionsPopover({position:{y:e.clientY,x:e.clientX}}),s()},Rs=(e,t)=>{let{store:r,render:s}=t;r.closeOptionsPopover(),s()},Ms=(e,t)=>{let{render:r,dispatchEvent:s,props:i,store:n}=t,a=e.currentTarget.id.replace("option-",""),o=i.options[a];n.updateSelectOption(o),i.onChange&&typeof i.onChange=="function"&&i.onChange(o.value),s(new CustomEvent("option-selected",{detail:{value:o.value,label:o.label},bubbles:!0})),s(new CustomEvent("select-change",{detail:{selectedValue:o.value},bubbles:!0})),r()};var Qe={};D(Qe,{INITIAL_STATE:()=>zs,closeOptionsPopover:()=>Bs,openOptionsPopover:()=>Hs,selectState:()=>Fs,toViewData:()=>Ws,updateSelectOption:()=>Ks});var zs=Object.freeze({isOpen:!1,position:{x:0,y:0},selectedValue:null,selectedLabel:null}),Ws=({state:e,props:t})=>{let r=t.placeholder||"Select an option",s=e.selectedValue!==null?e.selectedValue:t.selectedValue;if(s!=null&&t.options){let n=t.options.find(a=>a.value===s);n&&(r=n.label)}else e.selectedLabel&&(r=e.selectedLabel);let i=(t.options||[]).map(n=>({...n,isSelected:n.value===s,bgc:n.value===s?"mu":""}));return{isOpen:e.isOpen,position:e.position,options:i,selectedValue:s,selectedLabel:r,placeholder:t.placeholder||"Select an option"}},Fs=({state:e})=>e,Hs=(e,t)=>{let{position:r}=t;e.position=r,e.isOpen=!0},Bs=e=>{e.isOpen=!1},Ks=(e,t)=>{e.selectedValue=t.value,e.selectedLabel=t.label,e.isOpen=!1};var Bt={elementName:"rtgl-select",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{options:{type:"array",items:{type:"object",properties:{id:{type:"string"},label:{type:"string"},value:{type:"any"}}}},selectedValue:{type:"any"},placeholder:{type:"string"},onChange:{type:"function"}}},refs:{"select-button":{eventListeners:{click:{handler:"handleButtonClick"}}},popover:{eventListeners:{"click-overlay":{handler:"handleClickOptionsPopoverOverlay"}}},"option-*":{eventListeners:{click:{handler:"handleOptionClick"}}}},events:{},template:{type:9,items:[{type:8,properties:[{key:"rtgl-button#select-button v=ol",value:{type:9,items:[{type:1,path:"selectedLabel"}],fast:!0}}],fast:!0},{type:8,properties:[{key:"rtgl-popover#popover .isOpen=isOpen .position=position",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view wh=300 g=xs slot=content bgc=background br=md",value:{type:9,items:[{type:7,itemVar:"option",indexVar:"i",iterable:{type:1,path:"options"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view#option-${i} w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=${option.bgc}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"option.label"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#option-",{type:1,path:"i"}," w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=",{type:1,path:"option.bgc"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}};var Ze={};D(Ze,{handleHeaderClick:()=>Us,handleItemClick:()=>qs});var Us=(e,t)=>{let{store:r,dispatchEvent:s}=t,i,n=r.selectHeader();e.currentTarget.id==="header-label"?i=n.labelPath:e.currentTarget.id==="header-image"?i=n.image.path:e.currentTarget.id==="header"&&(i=n.path),s(new CustomEvent("headerClick",{detail:{path:i},bubbles:!0,composed:!0}))},qs=(e,t)=>{let{store:r,dispatchEvent:s}=t,i=e.currentTarget.id.replace("item-",""),n=r.selectItem(i);s(new CustomEvent("itemClick",{detail:{item:n},bubbles:!0,composed:!0}))};var tt={};D(tt,{INITIAL_STATE:()=>Js,selectActiveItem:()=>Zs,selectHeader:()=>Qs,selectItem:()=>ei,setState:()=>ti,toViewData:()=>Xs});var Js=Object.freeze({}),Ys=["id","class","style","slot"],Gs=e=>Object.entries(e).filter(([t])=>!Ys.includes(t)).map(([t,r])=>`${t}=${r}`).join(" ");function et(e,t=null){let r=[];for(let s of e){let i=s.id||s.href||s.path,n=t===i;if(r.push({id:i,title:s.title,href:s.href,type:s.type||"item",icon:s.icon,hrefAttr:s.href?`href=${s.href}`:"",isSelected:n,itemBgc:n?"ac":"bg",itemHoverBgc:n?"ac":"mu"}),s.items&&Array.isArray(s.items))for(let a of s.items){let o=a.id||a.href||a.path,l=t===o;r.push({id:o,title:a.title,href:a.href,type:a.type||"item",icon:a.icon,hrefAttr:a.href?`href=${a.href}`:"",isSelected:l,itemBgc:l?"ac":"bg",itemHoverBgc:l?"ac":"mu"})}}return r}var Xs=({state:e,props:t,attrs:r})=>{let s=r.header?JSON.parse(decodeURIComponent(r.header)):t.header,i=r.items?JSON.parse(decodeURIComponent(r.items)):t.items,n=r.selectedItemId||t.selectedItemId,a=Gs(r),o=r.mode||"full",l=s||{label:"",path:"",image:{src:"",alt:"",width:0,height:0}},h=i?et(i,n):[],u=o==="full"?272:64,y=o==="full"?"fs":"c",E=o==="full"?"fs":"c",T=o==="full"?"lg":"sm",p=o==="full"?"md":"sm",c=o==="shrunk-lg"?48:40,d=o==="shrunk-lg"?28:20,f=o==="shrunk-lg"?"md":"sm",g=o==="full",_=o==="full",m=o==="full"?"fs":"c",x=o==="full"?"":`ah=${E}`,b=o==="full"?"f":c;return{containerAttrString:a,mode:o,header:l,items:h,sidebarWidth:u,headerAlign:y,itemAlign:E,headerPadding:T,itemPadding:p,itemHeight:c,iconSize:d,firstLetterSize:f,showLabels:g,showGroupLabels:_,itemContentAlign:m,itemAlignAttr:x,itemWidth:b,headerWidth:b,selectedItemId:n,ah:o==="shrunk-lg"||o==="shrunk-md"?"c":""}},Qs=({state:e,props:t,attrs:r})=>r.header?JSON.parse(decodeURIComponent(r.header)):t.header,Zs=({state:e,props:t})=>(t.items?et(t.items):[]).find(s=>s.active),ei=({state:e,props:t,attrs:r},s)=>{let i=r.items?JSON.parse(decodeURIComponent(r.items)):t.items;return(i?et(i):[]).find(a=>a.id===s)},ti=e=>{};var Kt={elementName:"rtgl-sidebar",viewDataSchema:{type:"object",properties:{containerAttrString:{type:"string"},mode:{type:"string",enum:["full","shrunk","shrunk-lg"],default:"full"},sidebarWidth:{type:"number"},headerAlign:{type:"string"},itemAlign:{type:"string"},headerPadding:{type:"string"},itemPadding:{type:"string"},itemHeight:{type:"number"},iconSize:{type:"number"},firstLetterSize:{type:"string"},showLabels:{type:"boolean"},showGroupLabels:{type:"boolean"},itemContentAlign:{type:"string"},itemAlignAttr:{type:"string"},itemWidth:{type:"string"},headerWidth:{type:"string"},selectedItemId:{type:"string"},header:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"},width:{type:"number"},height:{type:"number"},alt:{type:"string"}}}}},items:{type:"array",items:{type:"object",properties:{title:{type:"string"},slug:{type:"string"},type:{type:"string"},active:{type:"boolean"},icon:{type:"string"}}}}}},propsSchema:{type:"object",properties:{selectedItemId:{type:"string"},header:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"},width:{type:"number"},height:{type:"number"},alt:{type:"string"}}}}},items:{type:"array",items:{type:"object",properties:{title:{type:"string"},slug:{type:"string"},type:{type:"string"},items:{type:"array"}}}}}},refs:{"header-image":{eventListeners:{click:{handler:"handleHeaderClick"}}},"header-label":{eventListeners:{click:{handler:"handleHeaderClick"}}},header:{eventListeners:{click:{handler:"handleHeaderClick"}}},"item-*":{eventListeners:{click:{handler:"handleItemClick"}}}},events:{headerClick:{type:"object",properties:{path:{type:"string"}}}},anchors:[[{"$if header.image && header.image.src":[{"$if header.image.href":[{"a href=${header.image.href}":[{'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"':null}]}],"$elif header.image.path":[{"rtgl-view#header-image cur=p":[{'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"':null}]}],$else:[{'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"':null}]}]},{"$if header.label && showLabels":[{"$if header.labelHref":[{"rtgl-text href=${header.labelHref} s=lg":"${header.label}"}],"$elif header.labelPath":[{"rtgl-view#header-label cur=p":[{"rtgl-text s=lg":"${header.label}"}]}],$else:[{"rtgl-text s=lg":"${header.label}"}]}]}]],template:{type:9,items:[{type:8,properties:[{key:"rtgl-view h=f w=${sidebarWidth} bwr=xs ah=${ah} ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view ph=${headerPadding} pv=lg",value:{type:9,items:[{type:8,properties:[{key:"$if header.href",value:{type:6,conditions:[{type:1,path:"header.href"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view href=${header.href} d=h av=c ah=${headerAlign} g=lg w=${headerWidth}",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"$if header.image && header.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.image"},right:{type:1,path:"header.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.image.href",value:{type:6,conditions:[{type:1,path:"header.image.href"},{type:1,path:"header.image.path"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"a href=${header.image.href}",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["a href=",{type:1,path:"header.image.href"}]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-image cur=p",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1},{type:8,properties:[{key:"$if header.label && showLabels",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.label"},right:{type:1,path:"showLabels"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.labelHref",value:{type:6,conditions:[{type:1,path:"header.labelHref"},{type:1,path:"header.labelPath"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text href=${header.labelHref} s=lg",value:{type:1,path:"header.label"},parsedKey:{type:2,parts:["rtgl-text href=",{type:1,path:"header.labelHref"}," s=lg"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-label cur=p",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view href=",{type:1,path:"header.href"}," d=h av=c ah=",{type:1,path:"headerAlign"}," g=lg w=",{type:1,path:"headerWidth"}]}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header d=h av=c ah=${headerAlign} g=lg w=${headerWidth} cur=p",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"$if header.image && header.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.image"},right:{type:1,path:"header.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.image.href",value:{type:6,conditions:[{type:1,path:"header.image.href"},{type:1,path:"header.image.path"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"a href=${header.image.href}",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["a href=",{type:1,path:"header.image.href"}]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-image cur=p",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1},{type:8,properties:[{key:"$if header.label && showLabels",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.label"},right:{type:1,path:"showLabels"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.labelHref",value:{type:6,conditions:[{type:1,path:"header.labelHref"},{type:1,path:"header.labelPath"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text href=${header.labelHref} s=lg",value:{type:1,path:"header.label"},parsedKey:{type:2,parts:["rtgl-text href=",{type:1,path:"header.labelHref"}," s=lg"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-label cur=p",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view#header d=h av=c ah=",{type:1,path:"headerAlign"}," g=lg w=",{type:1,path:"headerWidth"}," cur=p"]}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view ph=",{type:1,path:"headerPadding"}," pv=lg"]}}],fast:!1},{type:8,properties:[{key:"rtgl-view w=f ph=${headerPadding} pb=lg g=xs ah=${ah}",value:{type:9,items:[{type:7,itemVar:"item",indexVar:"i",iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:'$if item.type == "groupLabel"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"groupLabel"}},null],bodies:[{type:9,items:[{type:8,properties:[{key:"$if showGroupLabels",value:{type:6,conditions:[{type:1,path:"showGroupLabels"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view mt=md h=32 av=c ph=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=xs c=mu-fg",value:{type:1,path:"item.title"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view mt=md h=1 bgc=mu-bg",value:{type:0,value:null}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:'rtgl-view#item-${item.id} ${item.hrefAttr} h=${itemHeight} av=c ${itemAlignAttr} ph=${itemPadding} w=${itemWidth} h-bgc=${item.itemHoverBgc} br=lg bgc=${item.itemBgc} cur=p title="${item.title}"',value:{type:9,items:[{type:8,properties:[{key:"$if item.icon",value:{type:6,conditions:[{type:1,path:"item.icon"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"$if showLabels",value:{type:6,conditions:[{type:1,path:"showLabels"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h ah=${itemContentAlign} g=sm",value:{type:9,items:[{type:8,properties:[{key:"rtgl-svg wh=16 svg=${item.icon} c=fg",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-svg wh=16 svg=",{type:1,path:"item.icon"}," c=fg"]}}],fast:!0},{type:8,properties:[{key:"rtgl-text s=sm",value:{type:1,path:"item.title"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view d=h ah=",{type:1,path:"itemContentAlign"}," g=sm"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-svg wh=${iconSize} svg=${item.icon} c=fg",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-svg wh=",{type:1,path:"iconSize"}," svg=",{type:1,path:"item.icon"}," c=fg"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"$if showLabels",value:{type:6,conditions:[{type:1,path:"showLabels"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm",value:{type:1,path:"item.title"}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view wh=${iconSize} br=f bgc=mu av=c ah=c",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=${firstLetterSize} c=fg",value:{type:1,path:"item.title.charAt(0).toUpperCase()"},parsedKey:{type:2,parts:["rtgl-text s=",{type:1,path:"firstLetterSize"}," c=fg"]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view wh=",{type:1,path:"iconSize"}," br=f bgc=mu av=c ah=c"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view#item-",{type:1,path:"item.id"}," ",{type:1,path:"item.hrefAttr"}," h=",{type:1,path:"itemHeight"}," av=c ",{type:1,path:"itemAlignAttr"}," ph=",{type:1,path:"itemPadding"}," w=",{type:1,path:"itemWidth"}," h-bgc=",{type:1,path:"item.itemHoverBgc"}," br=lg bgc=",{type:1,path:"item.itemBgc"},' cur=p title="',{type:1,path:"item.title"},'"']}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}}],fast:!1},parsedKey:{type:2,parts:["rtgl-view w=f ph=",{type:1,path:"headerPadding"}," pb=lg g=xs ah=",{type:1,path:"ah"}]}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view h=f w=",{type:1,path:"sidebarWidth"}," bwr=xs ah=",{type:1,path:"ah"}," ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var rt={};D(rt,{handleHeaderClick:()=>ii,handleOnMount:()=>ri,handleRowClick:()=>si});var ri=e=>{},si=(e,t)=>{let{dispatchEvent:r,props:s}=t,i=parseInt(e.currentTarget.id.replace("row-","")),n=s.data?.rows?.[i];n&&r(new CustomEvent("row-click",{detail:{rowIndex:i,rowData:n}}))},ii=(e,t)=>{let{store:r,render:s,dispatchEvent:i}=t,n=e.currentTarget.id.replace("header-",""),a=r.selectSortInfo(),o="asc";a.column===n&&(a.direction==="asc"?o="desc":a.direction==="desc"&&(o=null)),o?r.setSortColumn({column:n,direction:o}):r.clearSort(),s(),i(new CustomEvent("header-click",{detail:{column:n,direction:o,sortInfo:o?{column:n,direction:o}:null}}))};var st={};D(st,{INITIAL_STATE:()=>ni,clearSort:()=>ui,selectSortInfo:()=>hi,selectState:()=>ci,setSortColumn:()=>di,toViewData:()=>pi});var ni=Object.freeze({sortColumn:null,sortDirection:null}),ai=["id","class","style","slot"],oi=e=>Object.entries(e).filter(([t])=>!ai.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),li=(e,t)=>{let r=t.split("."),s=e;for(let i of r){if(s==null)return null;s=s[i]}return s},pi=({state:e,props:t,attrs:r})=>{let s=oi(r),i=t.data||{columns:[],rows:[]},n=i.rows.map((a,o)=>{let l=i.columns.map(h=>{let u=li(a,h.key);return{key:h.key,value:u!=null?String(u):""}});return{index:o,cells:l}});return{containerAttrString:s,columns:i.columns||[],rows:n||[]}},ci=({state:e})=>e,hi=({state:e})=>({column:e.sortColumn,direction:e.sortDirection}),di=(e,{column:t,direction:r})=>{e.sortColumn=t,e.sortDirection=r},ui=e=>{e.sortColumn=null,e.sortDirection=null};var Ut={elementName:"rtgl-table",viewDataSchema:{type:"object",properties:{columns:{type:"array"},rows:{type:"array"},containerAttrString:{type:"string"}}},propsSchema:{type:"object",properties:{data:{type:"object",properties:{columns:{type:"array",items:{type:"object",properties:{key:{type:"string"},label:{type:"string"}}}},rows:{type:"array",items:{type:"object"}}}},responsive:{type:"boolean",default:!0}}},refs:{"row-*":{eventListeners:{click:{handler:"handleRowClick"}}},"header-*":{eventListeners:{click:{handler:"handleHeaderClick"}}}},events:{},styles:{table:{width:"100%","border-collapse":"collapse","border-spacing":0},thead:{"border-bottom":"2px solid var(--border)"},th:{padding:"12px","text-align":"left","font-weight":500,color:"var(--foreground)","background-color":"var(--muted)",cursor:"pointer",position:"sticky",top:0,"z-index":1},"tbody tr":{"border-bottom":"1px solid var(--border)"},"tbody tr:last-child":{"border-bottom":"none"},td:{padding:"12px",color:"var(--foreground)"},".table-container":{width:"100%",height:"100%",overflow:"auto"},".empty-state":{"text-align":"center",padding:"24px",color:"var(--muted-foreground)"}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view.table-container ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"$if rows.length > 0",value:{type:6,conditions:[{type:4,op:2,left:{type:1,path:"rows.length"},right:{type:0,value:0}},null],bodies:[{type:9,items:[{type:8,properties:[{key:"table",value:{type:9,items:[{type:8,properties:[{key:"thead",value:{type:9,items:[{type:8,properties:[{key:"tr",value:{type:9,items:[{type:7,itemVar:"column",indexVar:"i",iterable:{type:1,path:"columns"},body:{type:9,items:[{type:8,properties:[{key:"th#header-${column.key}",value:{type:1,path:"column.label"},parsedKey:{type:2,parts:["th#header-",{type:1,path:"column.key"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1},{type:8,properties:[{key:"tbody",value:{type:9,items:[{type:7,itemVar:"row",indexVar:"rowIndex",iterable:{type:1,path:"rows"},body:{type:9,items:[{type:8,properties:[{key:"tr#row-${row.index}",value:{type:9,items:[{type:7,itemVar:"cell",indexVar:"cellIndex",iterable:{type:1,path:"row.cells"},body:{type:9,items:[{type:8,properties:[{key:"td",value:{type:1,path:"cell.value"}}],fast:!0}],fast:!0}}],fast:!1},parsedKey:{type:2,parts:["tr#row-",{type:1,path:"row.index"}]}}],fast:!1}],fast:!1}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view.empty-state w=f p=xl",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=mu-fg",value:{type:0,value:"No data available"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view.table-container ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Qt=Symbol.for("immer-nothing"),qt=Symbol.for("immer-draftable"),F=Symbol.for("immer-state");function U(e,...t){throw new Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var ne=Object.getPrototypeOf;function ae(e){return!!e&&!!e[F]}function Z(e){return e?Zt(e)||Array.isArray(e)||!!e[qt]||!!e.constructor?.[qt]||xe(e)||_e(e):!1}var fi=Object.prototype.constructor.toString();function Zt(e){if(!e||typeof e!="object")return!1;let t=ne(e);if(t===null)return!0;let r=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return r===Object?!0:typeof r=="function"&&Function.toString.call(r)===fi}function ge(e,t){we(e)===0?Reflect.ownKeys(e).forEach(r=>{t(r,e[r],e)}):e.forEach((r,s)=>t(s,r,e))}function we(e){let t=e[F];return t?t.type_:Array.isArray(e)?1:xe(e)?2:_e(e)?3:0}function at(e,t){return we(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function er(e,t,r){let s=we(e);s===2?e.set(t,r):s===3?e.add(r):e[t]=r}function mi(e,t){return e===t?e!==0||1/e===1/t:e!==e&&t!==t}function xe(e){return e instanceof Map}function _e(e){return e instanceof Set}function Q(e){return e.copy_||e.base_}function ot(e,t){if(xe(e))return new Map(e);if(_e(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);let r=Zt(e);if(t===!0||t==="class_only"&&!r){let s=Object.getOwnPropertyDescriptors(e);delete s[F];let i=Reflect.ownKeys(s);for(let n=0;n<i.length;n++){let a=i[n],o=s[a];o.writable===!1&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(s[a]={configurable:!0,writable:!0,enumerable:o.enumerable,value:e[a]})}return Object.create(ne(e),s)}else{let s=ne(e);if(s!==null&&r)return{...e};let i=Object.create(s);return Object.assign(i,e)}}function dt(e,t=!1){return Se(e)||ae(e)||!Z(e)||(we(e)>1&&(e.set=e.add=e.clear=e.delete=yi),Object.freeze(e),t&&Object.entries(e).forEach(([r,s])=>dt(s,!0))),e}function yi(){U(2)}function Se(e){return Object.isFrozen(e)}var gi={};function ee(e){let t=gi[e];return t||U(0,e),t}var he;function tr(){return he}function bi(e,t){return{drafts_:[],parent_:e,immer_:t,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function Jt(e,t){t&&(ee("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function lt(e){pt(e),e.drafts_.forEach(vi),e.drafts_=null}function pt(e){e===he&&(he=e.parent_)}function Yt(e){return he=bi(he,e)}function vi(e){let t=e[F];t.type_===0||t.type_===1?t.revoke_():t.revoked_=!0}function Gt(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];return e!==void 0&&e!==r?(r[F].modified_&&(lt(t),U(4)),Z(e)&&(e=be(t,e),t.parent_||ve(t,e)),t.patches_&&ee("Patches").generateReplacementPatches_(r[F].base_,e,t.patches_,t.inversePatches_)):e=be(t,r,[]),lt(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==Qt?e:void 0}function be(e,t,r){if(Se(t))return t;let s=t[F];if(!s)return ge(t,(i,n)=>Xt(e,s,t,i,n,r)),t;if(s.scope_!==e)return t;if(!s.modified_)return ve(e,s.base_,!0),s.base_;if(!s.finalized_){s.finalized_=!0,s.scope_.unfinalizedDrafts_--;let i=s.copy_,n=i,a=!1;s.type_===3&&(n=new Set(i),i.clear(),a=!0),ge(n,(o,l)=>Xt(e,s,i,o,l,r,a)),ve(e,i,!1),r&&e.patches_&&ee("Patches").generatePatches_(s,r,e.patches_,e.inversePatches_)}return s.copy_}function Xt(e,t,r,s,i,n,a){if(ae(i)){let o=n&&t&&t.type_!==3&&!at(t.assigned_,s)?n.concat(s):void 0,l=be(e,i,o);if(er(r,s,l),ae(l))e.canAutoFreeze_=!1;else return}else a&&r.add(i);if(Z(i)&&!Se(i)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;be(e,i),(!t||!t.scope_.parent_)&&typeof s!="symbol"&&Object.prototype.propertyIsEnumerable.call(r,s)&&ve(e,i)}}function ve(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&dt(t,r)}function wi(e,t){let r=Array.isArray(e),s={type_:r?1:0,scope_:t?t.scope_:tr(),modified_:!1,finalized_:!1,assigned_:{},parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1},i=s,n=ut;r&&(i=[s],n=de);let{revoke:a,proxy:o}=Proxy.revocable(i,n);return s.draft_=o,s.revoke_=a,o}var ut={get(e,t){if(t===F)return e;let r=Q(e);if(!at(r,t))return xi(e,r,t);let s=r[t];return e.finalized_||!Z(s)?s:s===it(e.base_,t)?(nt(e),e.copy_[t]=ht(s,e)):s},has(e,t){return t in Q(e)},ownKeys(e){return Reflect.ownKeys(Q(e))},set(e,t,r){let s=rr(Q(e),t);if(s?.set)return s.set.call(e.draft_,r),!0;if(!e.modified_){let i=it(Q(e),t),n=i?.[F];if(n&&n.base_===r)return e.copy_[t]=r,e.assigned_[t]=!1,!0;if(mi(r,i)&&(r!==void 0||at(e.base_,t)))return!0;nt(e),ct(e)}return e.copy_[t]===r&&(r!==void 0||t in e.copy_)||Number.isNaN(r)&&Number.isNaN(e.copy_[t])||(e.copy_[t]=r,e.assigned_[t]=!0),!0},deleteProperty(e,t){return it(e.base_,t)!==void 0||t in e.base_?(e.assigned_[t]=!1,nt(e),ct(e)):delete e.assigned_[t],e.copy_&&delete e.copy_[t],!0},getOwnPropertyDescriptor(e,t){let r=Q(e),s=Reflect.getOwnPropertyDescriptor(r,t);return s&&{writable:!0,configurable:e.type_!==1||t!=="length",enumerable:s.enumerable,value:r[t]}},defineProperty(){U(11)},getPrototypeOf(e){return ne(e.base_)},setPrototypeOf(){U(12)}},de={};ge(ut,(e,t)=>{de[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}});de.deleteProperty=function(e,t){return de.set.call(this,e,t,void 0)};de.set=function(e,t,r){return ut.set.call(this,e[0],t,r,e[0])};function it(e,t){let r=e[F];return(r?Q(r):e)[t]}function xi(e,t,r){let s=rr(t,r);return s?"value"in s?s.value:s.get?.call(e.draft_):void 0}function rr(e,t){if(!(t in e))return;let r=ne(e);for(;r;){let s=Object.getOwnPropertyDescriptor(r,t);if(s)return s;r=ne(r)}}function ct(e){e.modified_||(e.modified_=!0,e.parent_&&ct(e.parent_))}function nt(e){e.copy_||(e.copy_=ot(e.base_,e.scope_.immer_.useStrictShallowCopy_))}var _i=class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(t,r,s)=>{if(typeof t=="function"&&typeof r!="function"){let n=r;r=t;let a=this;return function(l=n,...h){return a.produce(l,u=>r.call(this,u,...h))}}typeof r!="function"&&U(6),s!==void 0&&typeof s!="function"&&U(7);let i;if(Z(t)){let n=Yt(this),a=ht(t,void 0),o=!0;try{i=r(a),o=!1}finally{o?lt(n):pt(n)}return Jt(n,s),Gt(i,n)}else if(!t||typeof t!="object"){if(i=r(t),i===void 0&&(i=t),i===Qt&&(i=void 0),this.autoFreeze_&&dt(i,!0),s){let n=[],a=[];ee("Patches").generateReplacementPatches_(t,i,n,a),s(n,a)}return i}else U(1,t)},this.produceWithPatches=(t,r)=>{if(typeof t=="function")return(a,...o)=>this.produceWithPatches(a,l=>t(l,...o));let s,i;return[this.produce(t,r,(a,o)=>{s=a,i=o}),s,i]},typeof e?.autoFreeze=="boolean"&&this.setAutoFreeze(e.autoFreeze),typeof e?.useStrictShallowCopy=="boolean"&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){Z(e)||U(8),ae(e)&&(e=Si(e));let t=Yt(this),r=ht(e,void 0);return r[F].isManual_=!0,pt(t),r}finishDraft(e,t){let r=e&&e[F];(!r||!r.isManual_)&&U(9);let{scope_:s}=r;return Jt(s,t),Gt(void 0,s)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,t){let r;for(r=t.length-1;r>=0;r--){let i=t[r];if(i.path.length===0&&i.op==="replace"){e=i.value;break}}r>-1&&(t=t.slice(r+1));let s=ee("Patches").applyPatches_;return ae(e)?s(e,t):this.produce(e,i=>s(i,t))}};function ht(e,t){let r=xe(e)?ee("MapSet").proxyMap_(e,t):_e(e)?ee("MapSet").proxySet_(e,t):wi(e,t);return(t?t.scope_:tr()).drafts_.push(r),r}function Si(e){return ae(e)||U(10,e),sr(e)}function sr(e){if(!Z(e)||Se(e))return e;let t=e[F],r;if(t){if(!t.modified_)return t.base_;t.finalized_=!0,r=ot(e,t.scope_.immer_.useStrictShallowCopy_)}else r=ot(e,!0);return ge(r,(s,i)=>{er(r,s,sr(i))}),t&&(t.finalized_=!1),r}var H=new _i,ir=H.produce,qa=H.produceWithPatches.bind(H),Ja=H.setAutoFreeze.bind(H),Ya=H.setUseStrictShallowCopy.bind(H),Ga=H.applyPatches.bind(H),Xa=H.createDraft.bind(H),Qa=H.finishDraft.bind(H);var N={LITERAL:0,VARIABLE:1,INTERPOLATION:2,FUNCTION:3,BINARY:4,UNARY:5,CONDITIONAL:6,LOOP:7,OBJECT:8,ARRAY:9},B={EQ:0,NEQ:1,GT:2,LT:3,GTE:4,LTE:5,AND:6,OR:7,IN:8},ke={NOT:0};var oe=class extends Error{constructor(t){super(`Render Error: ${t}`),this.name="JemplRenderError"}};var nr=(e,t)=>{if(t===null)return new oe(`Cannot iterate over null value at '$for ${e}'`);if(t===void 0)return new oe(`Cannot iterate over undefined value at '$for ${e}'`);let r=typeof t;return new oe(`Cannot iterate over non-array value (got: ${r}) at '$for ${e}'`)},ar=(e,t)=>{let r=t&&Object.keys(t).length>0?Object.keys(t).join(", "):"no custom functions provided";return new oe(`Unknown function '${e}' (${r})`)};var ki=(e,t,r={})=>V(e,r,t,{}),V=(e,t,r,s)=>{switch(e.type){case N.LITERAL:return e.value;case N.VARIABLE:return or(e.path,r,s);case N.INTERPOLATION:return Ei(e.parts,t,r,s);case N.FUNCTION:return lr(e,t,r,s);case N.BINARY:return pr(e,t,r,s);case N.UNARY:return cr(e,t,r,s);case N.CONDITIONAL:return Ai(e,t,r,s);case N.LOOP:return $i(e,t,r,s);case N.OBJECT:return Ci(e,t,r,s);case N.ARRAY:return Oi(e,t,r,s);default:throw new Error(`Unknown node type: ${e.type}`)}},or=(e,t,r)=>{if(!e)return;if(r.hasOwnProperty(e))return r[e];let s=e.split("."),i=t;for(let n=0;n<s.length;n++){let a=s[n];if(r.hasOwnProperty(a)){i=r[a];continue}if(i==null)return;i=i[a]}return i},Ei=(e,t,r,s)=>{let i="";for(let n of e)if(typeof n=="string")i+=n;else{let a=V(n,t,r,s);i+=a!=null?String(a):""}return i},lr=(e,t,r,s)=>{let i=t[e.name];if(!i)throw ar(e.name,t);let n=e.args.map(a=>V(a,t,r,s));return i(...n)},Ee=(e,t,r,s)=>{switch(e.type){case N.VARIABLE:return or(e.path,r,s);case N.LITERAL:return e.value;case N.BINARY:return pr(e,t,r,s);case N.UNARY:return cr(e,t,r,s);case N.FUNCTION:return lr(e,t,r,s);default:return V(e,t,r,s)}},pr=(e,t,r,s)=>{if(e.op===B.AND||e.op===B.OR){let a=Ee(e.left,t,r,s),o=Ee(e.right,t,r,s);switch(e.op){case B.AND:return a&&o;case B.OR:return a||o}}let i=V(e.left,t,r,s),n=V(e.right,t,r,s);switch(e.op){case B.EQ:return i==n;case B.NEQ:return i!=n;case B.GT:return i>n;case B.LT:return i<n;case B.GTE:return i>=n;case B.LTE:return i<=n;case B.IN:return Array.isArray(n)?n.includes(i):!1;default:throw new Error(`Unknown binary operator: ${e.op}`)}},cr=(e,t,r,s)=>{let i=e.op===ke.NOT?Ee(e.operand,t,r,s):V(e.operand,t,r,s);switch(e.op){case ke.NOT:return!i;default:throw new Error(`Unknown unary operator: ${e.op}`)}},Ai=(e,t,r,s)=>{for(let i=0;i<e.conditions.length;i++){let n=e.conditions[i];if(n===null||Ee(n,t,r,s))return V(e.bodies[i],t,r,s)}return{}},$i=(e,t,r,s)=>{let i=V(e.iterable,t,r,s);if(!Array.isArray(i)){let a=`${e.itemVar}${e.indexVar?`, ${e.indexVar}`:""} in ${e.iterable.path}`;throw nr(a,i)}let n=[];for(let a=0;a<i.length;a++){let o=Object.create(s);o[e.itemVar]=i[a],e.indexVar&&(o[e.indexVar]=a);let l=V(e.body,t,r,o);Array.isArray(l)&&l.length===1?n.push(l[0]):n.push(l)}return n},Ci=(e,t,r,s)=>{let i={},n=null,a=!1;for(let o of e.properties)if(!o.key.startsWith("$if ")&&!o.key.match(/^\$if\s+\w+.*:?$/)&&!o.key.startsWith("$elif")&&!o.key.startsWith("$else")&&!o.key.startsWith("$for ")){a=!0;break}for(let o of e.properties)if(o.key.startsWith("$if ")||o.key.match(/^\$if\s+\w+.*:?$/)){let l=V(o.value,t,r,s);if(!a&&l!==null&&l!==void 0)return Array.isArray(l)&&l.length===1?l[0]:l;typeof l=="object"&&l!==null&&!Array.isArray(l)&&Object.assign(i,l)}else if(!o.key.startsWith("$for ")){let l=o.value;if(l&&l.type===N.OBJECT&&l.properties){let h=l.properties.find(u=>u.key.startsWith("$for "));if(h){let u=V(h.value,t,r,s);u!==void 0&&(i[o.key]=u)}else{let u=V(o.value,t,r,s);u!==void 0&&(i[o.key]=u)}}else{let h=o.parsedKey?V(o.parsedKey,t,r,s):o.key,u=V(o.value,t,r,s);u!==void 0&&(i[h]=u)}}return i},Oi=(e,t,r,s)=>{let i=[];for(let n of e.items)if(n.type===N.LOOP){let a=V(n,t,r,s);i.push(a)}else i.push(V(n,t,r,s));return i},Ae=ki;var $e=e=>Array.isArray(e)?e.reduce((t,r)=>{if(Array.isArray(r))t.push(...$e(r));else{if(r&&typeof r=="object"){let s=Object.entries(r);if(s.length>0){let[i,n]=s[0];Array.isArray(n)&&(r={[i]:$e(n)})}}t.push(r)}return t},[]):e;var Li=(e,t)=>{if(!t)return e;let r=[],s="",i=!1,n=null;for(let a=0;a<t.length;a++){let o=t[a];if(!i&&o===".")s&&(r.push(s),s="");else if(!i&&o==="[")s&&(r.push(s),s=""),i=!0;else if(i&&o==="]"){if(s){if(s.startsWith('"')&&s.endsWith('"')||s.startsWith("'")&&s.endsWith("'"))r.push(s.slice(1,-1));else{let l=Number(s);r.push(isNaN(l)?s:l)}s=""}i=!1,n=null}else i&&(o==='"'||o==="'")&&(n?o===n&&(n=null):n=o),s+=o}return s&&r.push(s),r.reduce((a,o)=>a&&a[o],e)},hr=({h:e,template:t,viewData:r,refs:s,handlers:i})=>{let n=Ae(t,r,{}),a=$e(n),o=Ni({h:e,items:a,refs:s,handlers:i,viewData:r});return e("div",{style:{display:"contents"}},o)},Ni=({h:e,items:t,refs:r={},handlers:s={},viewData:i={}})=>{if(!Array.isArray(t))return console.error("Input to createVirtualDom must be an array."),[e("div",{},[])];function n(a,o=""){return a.map((l,h)=>{if(typeof l=="string"||typeof l=="number")return String(l);if(typeof l!="object"||l===null)return console.warn("Skipping invalid item in DOM structure:",l),null;let u=Object.entries(l);if(u.length===0)return console.warn("Skipping empty object item:",l),null;let[y,E]=u[0];if(!isNaN(Number(y)))return Array.isArray(E)?n(E,`${o}.${y}`):typeof E=="object"&&E!==null&&Object.entries(E).length>0?n([E],`${o}.${y}`):String(E);u.length>1&&console.warn("Item has multiple keys, processing only the first:",y);let T,p,c=y.indexOf(" ");c===-1?(T=y,p=""):(T=y.substring(0,c),p=y.substring(c+1).trim());let d=T.split(/[.#]/)[0],f=d.includes("-"),g={},_={};if(p){let S=/(\S+?)=(?:\"([^\"]*)\"|\'([^\']*)\'|(\S+))/g,v;for(;(v=S.exec(p))!==null;)if(v[1].startsWith(".")){let I=v[1].substring(1),P=v[4];_[I]=Li(i,P)}else g[v[1]]=v[2]||v[3]||v[4]}let m=T.match(/#([^.#\s]+)/);m&&!Object.prototype.hasOwnProperty.call(g,"id")&&(g.id=m[1]);let x=null;g.id?x=g.id:f&&(x=d);let b=Object.create(null),k=null;if(f)k=d;else{let S=T.match(/\.([^.#]+)/g);S&&S.forEach(I=>{let P=I.substring(1);b[P]=!0});let v=T.match(/#([^.#\s]+)/);v&&(k=v[1])}let w;typeof E=="string"||typeof E=="number"?w=String(E):Array.isArray(E)?w=n(E,`${o}.${y}`):w=[],k&&!f&&(g.id=k);let A=Object.create(null);if(x&&r){let S=[];if(Object.keys(r).forEach(v=>{if(v.includes("*")){let I="^"+v.replace(/[.*+?^${}()|[\\\]\\]/g,"\\$&").replace(/\\\*/g,".*")+"$";try{new RegExp(I).test(x)&&S.push(v)}catch(P){console.warn(`[Parser] Invalid regex pattern created from refKey '${v}': ${I}`,P)}}else x===v&&S.push(v)}),S.length>0){S.sort((I,P)=>{let M=!I.includes("*"),X=!P.includes("*");return M&&!X?-1:!M&&X?1:P.length-I.length});let v=S[0];if(r[v]&&r[v].eventListeners){let I=r[v].eventListeners;Object.entries(I).forEach(([P,M])=>{M.handler&&s[M.handler]?A[P]=X=>{s[M.handler](X)}:M.handler&&console.warn(`[Parser] Handler '${M.handler}' for refKey '${v}' (matching elementId '${x}') is referenced but not found in available handlers.`)})}}}let C={};if(x)C.key=x;else if(T){let S=o?`${o}.${h}`:String(h);if(C.key=`${T}-${S}`,Object.keys(_).length>0){let v=JSON.stringify(_).substring(0,50);C.key+=`-${v}`}}Object.keys(g).length>0&&(C.attrs=g),Object.keys(b).length>0&&(C.class=b),Object.keys(A).length>0&&(C.on=A),Object.keys(_).length>0&&(C.props=_),f&&(C.hook={update:(S,v)=>{let I=S.data?.props||{},P=v.data?.props||{},M=S.data?.attrs||{},X=v.data?.attrs||{},Ir=JSON.stringify(I)!==JSON.stringify(P),Tr=JSON.stringify(M)!==JSON.stringify(X);if(Ir||Tr){let j=v.elm;j&&j.render&&typeof j.render=="function"&&(j.setAttribute("isDirty","true"),requestAnimationFrame(()=>{if(j.render(),j.removeAttribute("isDirty"),j.handlers&&j.handlers.handleOnUpdate){let Lr={...j.deps||{},store:j.store,render:j.render.bind(j),handlers:j.handlers,dispatchEvent:j.dispatchEvent.bind(j),refIds:j.refIds||{},getRefIds:()=>j.refIds||{}};j.handlers.handleOnUpdate({oldProps:I,newProps:P,oldAttrs:M,newAttrs:X},Lr)}}))}}});try{return e(d,C,w)}catch(S){return console.error("Error creating virtual node:",S,{tagName:d,snabbdomData:C,childrenOrText:w}),e("div",{},["Error creating element"])}}).filter(Boolean)}return n(t)};var Pi=(e,t)=>{if(!t||typeof t!="object")return"";let r="",s=n=>Object.entries(n).map(([a,o])=>` ${a}: ${o};`).join(`
807
- `),i=(n,a)=>{if(typeof a!="object"||a===null)return"";if(n.startsWith("@")){let o=Object.entries(a).map(([l,h])=>{let u=s(h);return` ${l} {
804
+ ${H}
805
+ ${U}
806
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"closed"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._styles={default:{},sm:{},md:{},lg:{},xl:{}},this._lastStyleString="",this._inputElement=document.createElement("input"),this._inputElement.type="range",this._styleElement=document.createElement("style"),this.shadow.appendChild(this._styleElement),this.shadow.appendChild(this._inputElement),this._inputElement.addEventListener("input",this._onInput),this._inputElement.addEventListener("change",this._onChange)}static get observedAttributes(){return["key","value","min","max","step","disabled",...se([...re,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}set value(t){this._inputElement.value=t}_onInput=t=>{this.dispatchEvent(new CustomEvent("slider-input",{detail:{value:this._inputElement.value}}))};_onChange=t=>{this.dispatchEvent(new CustomEvent("slider-change",{detail:{value:this._inputElement.value}}))};attributeChangedCallback(t,r,s){if(t==="key"&&r!==s){requestAnimationFrame(()=>{let i=this.getAttribute("value"),a=this.getAttribute("min")||"0";this._inputElement.value=i??a});return}if(["value","min","max","step","disabled"].includes(t)){this._updateInputAttributes();return}this._styles={default:{},sm:{},md:{},lg:{},xl:{}},["default","sm","md","lg","xl"].forEach(i=>{let a=h=>`${i==="default"?"":`${i}-`}${h}`,o=this.getAttribute(a("wh")),l=D(o===null?this.getAttribute(a("w")):o),p=D(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),c=this.getAttribute(a("z"));c!==null&&(this._styles[i]["z-index"]=c),u!==null&&(this._styles[i].opacity=u),l==="f"?this._styles[i].width="var(--width-stretch)":l!==void 0&&(this._styles[i].width=l,this._styles[i]["min-width"]=l,this._styles[i]["max-width"]=l),p==="f"?this._styles[i].height="100%":p!==void 0&&(this._styles[i].height=p,this._styles[i]["min-height"]=p,this._styles[i]["max-height"]=p),this.hasAttribute(a("hidden"))&&(this._styles[i].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[i].display="block !important")});let n=ie(this._styles,'input[type="range"]');n!==this._lastStyleString&&(this._styleElement.textContent=n,this._lastStyleString=n)}_updateInputAttributes(){let t=this.getAttribute("value"),r=this.getAttribute("min"),s=this.getAttribute("max"),n=this.getAttribute("step"),i=this.hasAttribute("disabled");t!==null&&(this._inputElement.value=t),r!==null?this._inputElement.min=r:this._inputElement.min="0",s!==null?this._inputElement.max=s:this._inputElement.max="100",n!==null?this._inputElement.step=n:this._inputElement.step="1",i?this._inputElement.setAttribute("disabled",""):this._inputElement.removeAttribute("disabled")}connectedCallback(){this._updateInputAttributes()}},vr=({render:e,html:t})=>it;var nt=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
807
+ :host {
808
+ display: contents;
809
+ }
810
+
811
+ dialog {
812
+ padding: 0;
813
+ border: none;
814
+ background: transparent;
815
+ margin: auto;
816
+ overflow-y: scroll;
817
+ color: inherit;
818
+ max-height: 100vh;
819
+ height: 100vh;
820
+ max-width: 100vw;
821
+ scrollbar-width: none;
822
+ outline: none;
823
+ }
824
+
825
+ dialog::backdrop {
826
+ background-color: rgba(0, 0, 0, 0.5);
827
+ }
828
+
829
+ slot[name="content"] {
830
+ background-color: var(--background) !important;
831
+ display: block;
832
+ padding: var(--spacing-lg);
833
+ border: 1px solid var(--border);
834
+ border-radius: var(--border-radius-md);
835
+ margin-left: var(--spacing-lg);
836
+ margin-right: var(--spacing-lg);
837
+ width: fit-content;
838
+ max-width: calc(100vw - 2 * var(--spacing-lg));
839
+ /* Default margins will be set dynamically via JavaScript for adaptive centering */
840
+ margin-top: 40px;
841
+ margin-bottom: 40px;
842
+ }
843
+
844
+ /* Size attribute styles */
845
+ :host([s="sm"]) slot[name="content"] {
846
+ width: 33vw;
847
+ }
848
+
849
+ :host([s="md"]) slot[name="content"] {
850
+ width: 50vw;
851
+ }
852
+
853
+ :host([s="lg"]) slot[name="content"] {
854
+ width: 80vw;
855
+ }
856
+
857
+ :host([s="f"]) slot[name="content"] {
858
+ width: 100vw;
859
+ margin-left: 0;
860
+ margin-right: 0;
861
+ }
862
+
863
+ @keyframes dialog-in {
864
+ from {
865
+ opacity: 0;
866
+ transform: scale(0.95);
867
+ }
868
+ to {
869
+ opacity: 1;
870
+ transform: scale(1);
871
+ }
872
+ }
873
+
874
+ dialog[open] slot[name="content"] {
875
+ animation: dialog-in 150ms cubic-bezier(0.16, 1, 0.3, 1);
876
+ }
877
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"open"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._dialogElement=document.createElement("dialog"),this.shadow.appendChild(this._dialogElement),this._slotElement=null,this._isConnected=!1,this._dialogElement.addEventListener("click",t=>{t.target===this._dialogElement&&this.dispatchEvent(new CustomEvent("close",{detail:{}}))}),this._dialogElement.addEventListener("contextmenu",t=>{t.target===this._dialogElement&&(t.preventDefault(),this.dispatchEvent(new CustomEvent("close",{detail:{}})))}),this._dialogElement.addEventListener("cancel",t=>{t.preventDefault(),this.dispatchEvent(new CustomEvent("close",{detail:{}}))})}static get observedAttributes(){return["open","w","s"]}connectedCallback(){this._updateDialog(),this._isConnected=!0,this.hasAttribute("open")&&this._showModal()}attributeChangedCallback(t,r,s){t==="open"?s!==null&&!this._dialogElement.open&&this._isConnected?this._showModal():s===null&&this._dialogElement.open&&this._hideModal():t==="w"&&this._updateWidth()}_updateDialog(){this._updateWidth()}_updateWidth(){let t=this.getAttribute("w");t?this._dialogElement.style.width=t:this._dialogElement.style.width=""}_showModal(){this._dialogElement.open||(this._slotElement||(this._slotElement=document.createElement("slot"),this._slotElement.setAttribute("name","content"),this._dialogElement.appendChild(this._slotElement)),this._dialogElement.showModal(),this._dialogElement.scrollTop=0,this._applyAdaptiveCentering())}_hideModal(){this._dialogElement.open&&(this._dialogElement.close(),this._slotElement&&(this._slotElement.style.marginTop="",this._slotElement.style.marginBottom="",this._dialogElement.removeChild(this._slotElement),this._slotElement=null),this._dialogElement.style.height="")}_applyAdaptiveCentering(){this._slotElement&&requestAnimationFrame(()=>{if(!this._slotElement)return;let t=this._slotElement.offsetHeight,r=window.innerHeight,s=40;if(t>=r-2*s)this._slotElement.style.marginTop=`${s}px`,this._slotElement.style.marginBottom=`${s}px`,this._dialogElement.style.height="100vh";else{let n=r-t,i=Math.floor(n/2);this._slotElement.style.marginTop=`${i}px`,this._slotElement.style.marginBottom=`${i}px`,this._dialogElement.style.height="auto"}})}get dialog(){return this._dialogElement}},br=({render:e,html:t})=>nt;var ot=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(I`
878
+ :host {
879
+ display: contents;
880
+ }
881
+
882
+ .popover-overlay {
883
+ position: fixed;
884
+ top: 0;
885
+ left: 0;
886
+ width: 100vw;
887
+ height: 100vh;
888
+ z-index: 999;
889
+ display: none;
890
+ }
891
+
892
+ .popover-container {
893
+ position: fixed;
894
+ z-index: 1000;
895
+ display: none;
896
+ outline: none;
897
+ }
898
+
899
+ :host([open]:not([no-overlay])) .popover-overlay {
900
+ display: block;
901
+ }
902
+
903
+ :host([open]) .popover-container {
904
+ display: block;
905
+ visibility: hidden;
906
+ }
907
+
908
+ /* For no-overlay mode, make the container non-interactive */
909
+ :host([no-overlay]) .popover-container {
910
+ pointer-events: none;
911
+ }
912
+
913
+ :host([open][positioned]) .popover-container {
914
+ visibility: visible;
915
+ }
916
+
917
+ slot[name="content"] {
918
+ display: block;
919
+ background-color: var(--muted);
920
+ border: 1px solid var(--border);
921
+ border-radius: var(--border-radius-md);
922
+ padding: var(--spacing-md);
923
+ min-width: 200px;
924
+ max-width: 400px;
925
+ }
926
+ `))}constructor(){super(),e.initializeStyleSheet(),this.shadow=this.attachShadow({mode:"open"}),this.shadow.adoptedStyleSheets=[e.styleSheet],this._popoverOverlay=document.createElement("div"),this._popoverOverlay.className="popover-overlay",this.shadow.appendChild(this._popoverOverlay),this._popoverOverlay.addEventListener("click",()=>{this.dispatchEvent(new CustomEvent("close",{detail:{}}))}),this._popoverOverlay.addEventListener("contextmenu",t=>{t.preventDefault(),this.dispatchEvent(new CustomEvent("close",{detail:{}}))}),this._popoverContainer=document.createElement("div"),this._popoverContainer.className="popover-container",this.shadow.appendChild(this._popoverContainer),this._slotElement=null,this._isOpen=!1,this._handleEscKey=this._handleEscKey.bind(this)}static get observedAttributes(){return["open","x","y","placement","no-overlay"]}connectedCallback(){this.hasAttribute("open")&&this._show()}disconnectedCallback(){this._removeGlobalListeners()}attributeChangedCallback(t,r,s){t==="open"?s!==null&&!this._isOpen?this._show():s===null&&this._isOpen&&this._hide():(t==="x"||t==="y"||t==="placement")&&this._isOpen&&this._updatePosition()}_show(){this._isOpen||(this._slotElement||(this._slotElement=document.createElement("slot"),this._slotElement.setAttribute("name","content"),this._popoverContainer.appendChild(this._slotElement)),this._isOpen=!0,this._updatePosition(),this._addGlobalListeners())}_hide(){this._isOpen&&(this._isOpen=!1,this._slotElement&&(this._popoverContainer.removeChild(this._slotElement),this._slotElement=null),this._removeGlobalListeners())}_updatePosition(){let t=parseFloat(this.getAttribute("x")||"0"),r=parseFloat(this.getAttribute("y")||"0"),s=this.getAttribute("placement")||"bottom-start";this.removeAttribute("positioned"),requestAnimationFrame(()=>{let n=this._popoverContainer.getBoundingClientRect(),{left:i,top:a}=this._calculatePosition(t,r,n.width,n.height,s);this._popoverContainer.style.left=`${i}px`,this._popoverContainer.style.top=`${a}px`,requestAnimationFrame(()=>{this.setAttribute("positioned","")})})}_calculatePosition(t,r,s,n,i){let o=t,l=r;switch(i){case"top":o=t-s/2,l=r-n-8;break;case"top-start":o=t,l=r-n-8;break;case"top-end":o=t-s,l=r-n-8;break;case"right":o=t+8,l=r-n/2;break;case"right-start":o=t+8,l=r;break;case"right-end":o=t+8,l=r-n;break;case"bottom":o=t-s/2,l=r+8;break;case"bottom-start":o=t,l=r+8;break;case"bottom-end":o=t-s,l=r+8;break;case"left":o=t-s-8,l=r-n/2;break;case"left-start":o=t-s-8,l=r;break;case"left-end":o=t-s-8,l=r-n;break}let p=8;return o=Math.max(p,Math.min(o,window.innerWidth-s-p)),l=Math.max(p,Math.min(l,window.innerHeight-n-p)),{left:o,top:l}}_addGlobalListeners(){setTimeout(()=>{document.addEventListener("keydown",this._handleEscKey)},0)}_removeGlobalListeners(){document.removeEventListener("keydown",this._handleEscKey)}_handleEscKey(t){t.key==="Escape"&&this.dispatchEvent(new CustomEvent("close",{detail:{}}))}get popover(){return this._popoverContainer}},wr=({render:e,html:t})=>ot;var at={};P(at,{handleClickItem:()=>Us});var Us=(e,t)=>{let{dispatchEvent:r}=t,s=e.currentTarget.dataset.id;r(new CustomEvent("item-click",{detail:{id:s}}))};var lt={};P(lt,{INITIAL_STATE:()=>Hs,toViewData:()=>Ys});var Hs=Object.freeze({}),Js=["id","class","style","slot"],qs=e=>Object.entries(e).filter(([t])=>!Js.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),Ys=({props:e,attrs:t})=>{let r=qs(t),s=e.items||[],n=e.separator||"breadcrumb-arrow",i=[];return s.forEach((a,o)=>{i.push(a),o<s.length-1&&i.push({isSeparator:!0})}),{containerAttrString:r,items:i,separator:n}};var xr={elementName:"rtgl-breadcrumb",viewDataSchema:{type:"object",properties:{containerAttrString:{type:"string"},items:{type:"array",items:{type:"object",properties:{label:{type:"string"},id:{type:"string"}}}},separator:{type:"string"}}},propsSchema:{type:"object",properties:{items:{type:"array",items:{type:"object",properties:{label:{type:"string"},id:{type:"string"}}}},separator:{type:"string",default:"breadcrumb-arrow"}}},refs:{"item-*":{eventListeners:{click:{handler:"handleClickItem"}}}},events:{"item-click":{type:"object",properties:{item:{type:"object",properties:{label:{type:"string"},id:{type:"string"}}},index:{type:"number"}}}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c g=md p=sm ${containerAttrString}",value:{type:9,items:[{type:7,itemVar:"item",indexVar:null,iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:"$if item.isSeparator",value:{type:6,conditions:[{type:1,path:"item.isSeparator"},{type:1,path:"item.id"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-svg wh=16 svg=${separator} c=mu-fg",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-svg wh=16 svg=",{type:1,path:"separator"}," c=mu-fg"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#item-${item.id} data-id=${item.id} cur=p",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm c=mu-fg",value:{type:1,path:"item.label"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#item-",{type:1,path:"item.id"}," data-id=",{type:1,path:"item.id"}," cur=p"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm c=mu-fg",value:{type:1,path:"item.label"}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1},parsedKey:{type:2,parts:["rtgl-view d=h av=c g=md p=sm ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var pt={};P(pt,{handleClickMenuItem:()=>Xs,handleClosePopover:()=>Gs});var Gs=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("close"))},Xs=(e,t)=>{let{dispatchEvent:r}=t,s=parseInt(e.currentTarget.id.replace("option-","")),n=t.props.items[s];r(new CustomEvent("click-item",{detail:{index:s,item:n}}))};var ct={};P(ct,{INITIAL_STATE:()=>Qs,toViewData:()=>Zs});var Qs=Object.freeze({}),Zs=({props:e,attrs:t})=>({items:e.items||[],open:!!t.open,x:t.x,y:t.y,placement:t.placement});var Er={elementName:"rtgl-dropdown-menu",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{items:{type:"array",items:{type:"object",properties:{label:{type:"string"},type:{type:"string",enum:["label","item","separator"]}}}}}},attrsSchema:{type:"object",properties:{open:{type:"string"},x:{type:"string"},y:{type:"string"},placement:{type:"string"}}},refs:{popover:{eventListeners:{close:{handler:"handleClosePopover"}}},"option-*":{eventListeners:{click:{handler:"handleClickMenuItem"}}}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-popover#popover ?open=${open} x=${x} y=${y} placement=${placement}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view wh=300 g=xs slot=content bgc=background br=md",value:{type:9,items:[{type:7,itemVar:"item",indexVar:"i",iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:"$if item.type == 'label'",value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"label"}},{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"item"}},{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"separator"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f ph=lg pv=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm c=mu-fg",value:{type:1,path:"item.label"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#option-${i} w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=mu",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"item.label"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#option-",{type:1,path:"i"}," w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=mu"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f h=1 ph=lg mv=md bgc=bo",value:{type:0,value:null}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-popover#popover ?open=",{type:1,path:"open"}," x=",{type:1,path:"x"}," y=",{type:1,path:"y"}," placement=",{type:1,path:"placement"}]}}],fast:!1}],fast:!1}};var ut={};P(ut,{handleActionClick:()=>ri,handleBeforeMount:()=>ei,handleColorPickerChange:()=>oi,handleImageClick:()=>pi,handleInputChange:()=>si,handleOnUpdate:()=>ti,handlePopoverInputChange:()=>ii,handleSelectAddOption:()=>ui,handleSelectChange:()=>ni,handleSliderChange:()=>ai,handleSliderInputChange:()=>li,handleTooltipMouseEnter:()=>di,handleTooltipMouseLeave:()=>hi,handleWaveformClick:()=>ci});var ei=e=>{let{store:t,props:r}=e;t.setFormValues(r.defaultValues)},ti=(e,t)=>{let{oldAttrs:r,newAttrs:s}=e,{store:n,props:i,render:a}=t;r?.key!==s?.key&&(n.setFormValues(i.defaultValues),a())},me=(e,t,r,s)=>{s(new CustomEvent("form-change",{detail:{name:e,fieldValue:t,formValues:r}}))},ri=(e,t)=>{let{store:r,dispatchEvent:s}=t,n=e.currentTarget.id.replace("action-","");s(new CustomEvent("action-click",{detail:{actionId:n,formValues:r.selectFormValues()}}))},si=(e,t)=>{let{store:r,dispatchEvent:s,props:n}=t,i=e.currentTarget.id.replace("input-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({name:i,value:e.detail.value,props:n}),me(i,e.detail.value,r.selectFormValues(),s))},ii=(e,t)=>{let{store:r,dispatchEvent:s,props:n}=t,i=e.currentTarget.id.replace("popover-input-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({name:i,value:e.detail.value,props:n}),me(i,e.detail.value,r.selectFormValues(),s))},ni=(e,t)=>{let{store:r,dispatchEvent:s,render:n,props:i}=t,a=e.currentTarget.id.replace("select-","");a&&e.detail.selectedValue!==void 0&&(r.setFormFieldValue({name:a,value:e.detail.selectedValue,props:i}),me(a,e.detail.selectedValue,r.selectFormValues(),s),n())},oi=(e,t)=>{let{store:r,dispatchEvent:s,props:n}=t,i=e.currentTarget.id.replace("colorpicker-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({name:i,value:e.detail.value,props:n}),me(i,e.detail.value,r.selectFormValues(),s))},ai=(e,t)=>{let{store:r,dispatchEvent:s,props:n}=t,i=e.currentTarget.id.replace("slider-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({name:i,value:e.detail.value,props:n}),me(i,e.detail.value,r.selectFormValues(),s))},li=(e,t)=>{let{store:r,dispatchEvent:s,props:n}=t,i=e.currentTarget.id.replace("slider-input-","");i&&e.detail.value!==void 0&&(r.setFormFieldValue({name:i,value:e.detail.value,props:n}),me(i,e.detail.value,r.selectFormValues(),s))},pi=(e,t)=>{e.type==="contextmenu"&&e.preventDefault();let{dispatchEvent:r}=t,s=e.currentTarget.id.replace("image-","");r(new CustomEvent("extra-event",{detail:{name:s,x:e.clientX,y:e.clientY,trigger:e.type}}))},ci=(e,t)=>{e.type==="contextmenu"&&e.preventDefault();let{dispatchEvent:r}=t,s=e.currentTarget.id.replace("waveform-","");r(new CustomEvent("extra-event",{detail:{name:s,x:e.clientX,y:e.clientY,trigger:e.type}}))},ui=(e,t)=>{let{store:r,dispatchEvent:s}=t,n=e.currentTarget.id.replace("select-","");s(new CustomEvent("action-click",{detail:{actionId:"select-options-add",name:n,formValues:r.selectFormValues()}}))},di=(e,t)=>{let{store:r,render:s,props:n}=t,i=e.currentTarget.id.replace("tooltip-icon-",""),o=n.form.fields.find(l=>l.name===i);if(o&&o.tooltip){let l=e.currentTarget.getBoundingClientRect();r.showTooltip({x:l.left+l.width/2,y:l.top-8,content:o.tooltip.content}),s()}},hi=(e,t)=>{let{store:r,render:s}=t;r.hideTooltip(),s()};var bt={};P(bt,{INITIAL_STATE:()=>Mi,getFormFieldValue:()=>qi,hideTooltip:()=>Qi,selectForm:()=>Ve,selectFormValues:()=>Ji,selectState:()=>Hi,setFormFieldValue:()=>Gi,setFormValues:()=>Yi,showTooltip:()=>Xi,toViewData:()=>Ui});var g={LITERAL:0,VARIABLE:1,INTERPOLATION:2,FUNCTION:3,BINARY:4,UNARY:5,CONDITIONAL:6,LOOP:7,OBJECT:8,ARRAY:9},B={EQ:0,NEQ:1,GT:2,LT:3,GTE:4,LTE:5,AND:6,OR:7,IN:8},_e={NOT:0};var j=class extends Error{constructor(t){super(`Parse Error: ${t}`),this.name="JemplParseError"}},ge=class extends Error{constructor(t){super(`Render Error: ${t}`),this.name="JemplRenderError"}};var dt=e=>{if(!e||e.trim()==="")throw new j("Missing condition expression after '$if'");if(e.includes("===")||e.includes("!==")){let r=e.includes("===")?"==":"!=";throw new j(`Invalid comparison operator '${e.includes("===")?"===":"!=="}' - did you mean '${r}'? (got: '${e}')`)}let t=["<",">","<=",">=","==","!="];for(let r of t)if(e.trim().endsWith(r))throw new j(`Incomplete comparison expression - missing right operand (got: '${e}')`)},kr=e=>{if(e.trim().endsWith(" in"))throw new j(`Missing iterable expression after 'in' (got: '$for ${e}')`);if(!e.includes(" in "))throw new j(`Invalid loop syntax - missing 'in' keyword (got: '$for ${e}')`);let[t,r]=e.split(" in ");if(!r||r.trim()==="")throw new j(`Missing iterable expression after 'in' (got: '$for ${e}')`);if(t.includes(",")){let s=t.split(",").map(n=>n.trim());for(let n of s)if(!n)throw new j(`Invalid loop variable - variable name cannot be empty (got: '$for ${e}')`)}else if(!t.trim())throw new j(`Invalid loop variable - variable name cannot be empty (got: '$for ${e}')`)};var Ar=(e,t)=>{if(t===null)return new ge(`Cannot iterate over null value at '$for ${e}'`);if(t===void 0)return new ge(`Cannot iterate over undefined value at '$for ${e}'`);let r=typeof t;return new ge(`Cannot iterate over non-array value (got: ${r}) at '$for ${e}'`)},_r=(e,t)=>{let r=t&&Object.keys(t).length>0?Object.keys(t).join(", "):"no custom functions provided";return new ge(`Unknown function '${e}' (${r})`)};var fi=(e,t,r={})=>{let s=O(e,r,t,{});return s===void 0?{}:s},O=(e,t,r,s)=>{if(e.var&&!e.type)return z(e.var,r,s);if(e.type===g.LITERAL)return e.value;if(e.type===g.VARIABLE)return z(e.path,r,s);if(e.type===g.INTERPOLATION)return mi(e.parts,t,r,s);switch(e.type){case g.FUNCTION:return $r(e,t,r,s);case g.BINARY:return Cr(e,t,r,s);case g.UNARY:return Ir(e,t,r,s);case g.CONDITIONAL:return vi(e,t,r,s);case g.LOOP:return ki(e,t,r,s);case g.OBJECT:return _i(e,t,r,s);case g.ARRAY:return Si(e,t,r,s);default:throw new Error(`Unknown node type: ${e.type}`)}},Sr=new Map,yi=e=>{let t=[],r="",s=!1;for(let n=0;n<e.length;n++){let i=e[n];if(i==="[")r&&(t.push({type:"property",value:r}),r=""),s=!0;else if(i==="]"){if(s&&r){let a=r.trim();/^\d+$/.test(a)?t.push({type:"index",value:parseInt(a,10)}):t.push({type:"property",value:`[${r}]`}),r=""}s=!1}else r+=i}return r&&t.push({type:"property",value:r}),t},z=(e,t,r)=>{if(!e)return;if(e in r)return r[e];let s=Sr.get(e);if(!s){let i=[],a="",o=0;for(let l=0;l<e.length;l++){let p=e[l];p==="["?(o++,a+=p):p==="]"?(o--,a+=p):p==="."&&o===0?a&&(i.push(a),a=""):a+=p}a&&i.push(a),s=[];for(let l of i){let p=yi(l.trim());s.push(...p)}Sr.set(e,s)}let n=t;for(let i=0;i<s.length;i++){let a=s[i];if(a.type==="property"&&a.value in r){n=r[a.value];continue}if(n==null)return;(a.type==="property"||a.type==="index")&&(n=n[a.value])}return n},mi=(e,t,r,s)=>{let n=[];for(let i of e)if(typeof i=="string")n.push(i);else{let a=O(i,t,r,s);n.push(a!=null?String(a):"")}return n.join("")},$r=(e,t,r,s)=>{let n=t[e.name];if(!n)throw _r(e.name,t);let i=e.args.map(a=>O(a,t,r,s));return n(...i)},Se=(e,t,r,s)=>{if(e.var&&!e.type)return z(e.var,r,s);switch(e.type){case g.VARIABLE:return z(e.path,r,s);case g.LITERAL:return e.value;case g.BINARY:return Cr(e,t,r,s);case g.UNARY:return Ir(e,t,r,s);case g.FUNCTION:return $r(e,t,r,s);default:return O(e,t,r,s)}},Cr=(e,t,r,s)=>{if(e.op===B.AND||e.op===B.OR){let a=Se(e.left,t,r,s),o=Se(e.right,t,r,s);switch(e.op){case B.AND:return a&&o;case B.OR:return a||o}}let n=O(e.left,t,r,s),i=O(e.right,t,r,s);switch(e.op){case B.EQ:return n==i;case B.NEQ:return n!=i;case B.GT:return n>i;case B.LT:return n<i;case B.GTE:return n>=i;case B.LTE:return n<=i;case B.IN:return Array.isArray(i)?i.includes(n):!1;default:throw new Error(`Unknown binary operator: ${e.op}`)}},Ir=(e,t,r,s)=>{let n=e.op===_e.NOT?Se(e.operand,t,r,s):O(e.operand,t,r,s);switch(e.op){case _e.NOT:return!n;default:throw new Error(`Unknown unary operator: ${e.op}`)}},gi=(e,t,r,s)=>{if(e.conditions.length===2&&e.conditions[1]===null){let n=e.conditions[0];if(n.type===g.VARIABLE)if(z(n.path,r,s)){let a=e.bodies[0];if(a.type===g.OBJECT&&a.properties.length<=5){let o={};for(let l of a.properties){let p=l.parsedKey?O(l.parsedKey,t,r,s):l.key,u=l.value;if(u.type===g.LITERAL)o[p]=u.value;else if(u.type===g.VARIABLE)o[p]=z(u.path,r,s);else if(u.type===g.INTERPOLATION){let c=[];for(let h of u.parts)if(typeof h=="string")c.push(h);else if(h.type===g.VARIABLE){let y=z(h.path,r,s);c.push(y!=null?String(y):"")}else{let y=O(h,t,r,s);c.push(y!=null?String(y):"")}o[p]=c.join("")}else o[p]=O(u,t,r,s)}return o}}else{let a=e.bodies[1];if(a.type===g.OBJECT&&a.properties.length<=5){let o={};for(let l of a.properties){let p=l.parsedKey?O(l.parsedKey,t,r,s):l.key,u=l.value;if(u.type===g.LITERAL)o[p]=u.value;else if(u.type===g.VARIABLE)o[p]=z(u.path,r,s);else if(u.type===g.INTERPOLATION){let c=[];for(let h of u.parts)if(typeof h=="string")c.push(h);else if(h.type===g.VARIABLE){let y=z(h.path,r,s);c.push(y!=null?String(y):"")}else{let y=O(h,t,r,s);c.push(y!=null?String(y):"")}o[p]=c.join("")}else o[p]=O(u,t,r,s)}return o}}}return null},vi=(e,t,r,s)=>{let n=gi(e,t,r,s);if(n!==null)return n;for(let i=0;i<e.conditions.length;i++){let a=e.conditions[i];if(a===null||Se(a,t,r,s))return O(e.bodies[i],t,r,s)}return Or},bi=(e,t)=>{let r=e.body,s=e.itemVar;if(r.type===g.CONDITIONAL&&r.conditions.length===1&&r.conditions[0].type===g.VARIABLE){let n=r.conditions[0].path,i=r.bodies[0];if(n.startsWith(s+".")){let a=n.substring(s.length+1);if(i.type===g.OBJECT&&i.properties.length<=5){for(let l of i.properties)if(l.parsedKey)return null;let o=[];for(let l=0;l<t.length;l++){let p=t[l];if(p[a]){let u={};for(let c of i.properties){let h=c.key,y=c.value;if(y.type===g.LITERAL)u[h]=y.value;else if(y.type===g.VARIABLE){let d=y.path;if(d===s)u[h]=p;else if(d.startsWith(s+".")){let f=d.substring(s.length+1);u[h]=p[f]}else return null}else if(y.type===g.INTERPOLATION){let d=[],f=!0;for(let m of y.parts)if(typeof m=="string")d.push(m);else if(m.type===g.VARIABLE){let v=m.path;if(v===s)d.push(p!=null?String(p):"");else if(v.startsWith(s+".")){let b=v.substring(s.length+1),w=p[b];d.push(w!=null?String(w):"")}else{f=!1;break}}else{f=!1;break}if(!f)return null;u[h]=d.join("")}else return null}o.push(u)}}return o}}}return null},wi=(e,t)=>{let r=e.body,s=e.itemVar,n=bi(e,t);if(n!==null)return n;if(r.type===g.OBJECT&&r.properties.length<=5){for(let o of r.properties)if(o.parsedKey)return null;let i=[],a=!0;for(let o of r.properties){let l=o.key,p=o.value;if(p.type===g.LITERAL)i.push({key:l,type:"literal",value:p.value});else if(p.type===g.VARIABLE){let u=p.path;if(u===s)i.push({key:l,type:"item"});else if(u.startsWith(s+".")){let c=u.substring(s.length+1);if(!c.includes(".")&&!c.includes("["))i.push({key:l,type:"prop",prop:c});else{a=!1;break}}else{a=!1;break}}else if(p.type===g.INTERPOLATION&&p.parts.length===1){let u=p.parts[0];if(u.type===g.VARIABLE){let c=u.path;if(c===s)i.push({key:l,type:"item_string"});else if(c.startsWith(s+".")){let h=c.substring(s.length+1);if(!h.includes(".")&&!h.includes("["))i.push({key:l,type:"prop_string",prop:h});else{a=!1;break}}else{a=!1;break}}else{a=!1;break}}else{a=!1;break}}if(a){let o=new Array(t.length);if(i.length===3&&i[0].type==="prop"&&i[0].key==="id"&&i[1].type==="prop_string"&&i[1].key==="title"&&i[2].type==="prop"&&i[2].key==="completed")for(let l=0;l<t.length;l++){let p=t[l];o[l]={id:p.id,title:p.title!=null?String(p.title):"",completed:p.completed}}else for(let l=0;l<t.length;l++){let p=t[l],u={};for(let c of i)if(c.type==="literal")u[c.key]=c.value;else if(c.type==="item")u[c.key]=p;else if(c.type==="prop")u[c.key]=p[c.prop];else if(c.type==="item_string")u[c.key]=p!=null?String(p):"";else if(c.type==="prop_string"){let h=p[c.prop];u[c.key]=h!=null?String(h):""}o[l]=u}return o}}return null},xi=(e,t,r,s,n)=>{let i=[],a=e.body;if(a.type===g.OBJECT&&a.fast!==!1){let o=e.itemVar,l=e.indexVar;for(let p=0;p<n.length;p++){let u=n[p],c={},h={...s,[o]:u,...l&&{[l]:p}};for(let y of a.properties){let d=y.parsedKey?O(y.parsedKey,t,r,h):y.key,f=y.value;if(f.type===g.LITERAL)c[d]=f.value;else if(f.type===g.VARIABLE){let m=f.path;if(m===o)c[d]=u;else if(m===l)c[d]=p;else if(m.startsWith(o+".")){let v=m.substring(o.length+1);!v.includes(".")&&!v.includes("[")?c[d]=u[v]:c[d]=z(m,r,{...s,[o]:u,...l&&{[l]:p}})}else c[d]=z(m,r,{...s,[o]:u,...l&&{[l]:p}})}else if(f.type===g.INTERPOLATION){let m=[];for(let v of f.parts)if(typeof v=="string")m.push(v);else if(v.type===g.VARIABLE){let b=v.path,w;if(b===o)w=u;else if(b===l)w=p;else if(b.startsWith(o+".")){let E=b.substring(o.length+1);!E.includes(".")&&!E.includes("[")?w=u[E]:w=z(b,r,{...s,[o]:u,...l&&{[l]:p}})}else w=z(b,r,{...s,[o]:u,...l&&{[l]:p}});m.push(w!=null?String(w):"")}else{let b={...s,[o]:u,...l&&{[l]:p}},w=O(v,t,r,b);m.push(w!=null?String(w):"")}c[d]=m.join("")}else{let m={...s,[o]:u,...l&&{[l]:p}};c[d]=O(f,t,r,m)}}i.push(c)}return i}return null},Ei=(e,t,r)=>{let s=e.body;if(s.type===g.OBJECT&&s.properties.length===1&&s.properties[0].key==="$if item.visible"){let i=s.properties[0].value;if(i.type===g.CONDITIONAL&&i.conditions.length===1&&i.conditions[0].type===g.VARIABLE&&i.conditions[0].path==="item.visible"){let a=i.bodies[0];if(a.type===g.OBJECT&&a.properties.length===2){let o=a.properties[0],l=a.properties[1];if(o.key==="id"&&o.value.type===g.VARIABLE&&o.value.path==="item.id"&&l.key==="$if item.highlighted"&&l.value.type===g.CONDITIONAL){let p=[];for(let u=0;u<t.length;u++){let c=t[u];if(c.visible){let h={id:c.id};c.highlighted?(h.highlight=!0,h.message=`This item is highlighted: ${c.name}`):(h.highlight=!1,h.message=c.name),p.push(h)}}return p}}}}return null},ki=(e,t,r,s)=>{let n=O(e.iterable,t,r,s);if(!Array.isArray(n)){let o=`${e.itemVar}${e.indexVar?`, ${e.indexVar}`:""} in ${e.iterable.path}`;throw Ar(o,n)}if(!e.indexVar){let o=Ei(e,n,e.itemVar);if(o!==null)return o}if(!e.indexVar){let o=wi(e,n);if(o!==null)return o}let i=xi(e,t,r,s,n);if(i!==null)return i;let a=[];for(let o=0;o<n.length;o++){let l=e.indexVar?{...s,[e.itemVar]:n[o],[e.indexVar]:o}:{...s,[e.itemVar]:n[o]},p=O(e.body,t,r,l);Array.isArray(p)&&p.length===1?a.push(p[0]):a.push(p)}return a},Ai=(e,t,r,s)=>{if(e.whenCondition)return null;if(e.properties.length===1){let n=e.properties[0],i=n.parsedKey?O(n.parsedKey,t,r,s):n.key,a=n.value;if(a.type===g.OBJECT&&a.properties.length<=10&&!a.whenCondition){let o={},l={},p=!0;for(let u of a.properties){let c=u.parsedKey?O(u.parsedKey,t,r,s):u.key,h=u.value;if(h.type===g.LITERAL)l[c]=h.value;else if(h.type===g.VARIABLE)l[c]=z(h.path,r,s);else if(h.type===g.INTERPOLATION){let y=[];for(let d of h.parts)if(typeof d=="string")y.push(d);else if(d.type===g.VARIABLE){let f=z(d.path,r,s);y.push(f!=null?String(f):"")}else{p=!1;break}if(!p)break;l[c]=y.join("")}else if(h.type===g.OBJECT&&h.properties.length<=5){let y={};for(let d of h.properties){let f=d.key,m=d.value;if(m.type===g.LITERAL)y[f]=m.value;else if(m.type===g.VARIABLE)y[f]=z(m.path,r,s);else if(m.type===g.INTERPOLATION){let v=[];for(let b of m.parts)if(typeof b=="string")v.push(b);else if(b.type===g.VARIABLE){let w=z(b.path,r,s);v.push(w!=null?String(w):"")}else{p=!1;break}if(!p)break;y[f]=v.join("")}else{p=!1;break}}if(!p)break;l[c]=y}else{p=!1;break}}if(p)return o[i]=l,o}}return null},_i=(e,t,r,s)=>{if(e.whenCondition&&!Se(e.whenCondition,t,r,s))return;let n=Ai(e,t,r,s);if(n!==null)return n;if(e.fast){let l={};for(let p of e.properties){let u=p.parsedKey?O(p.parsedKey,t,r,s):p.key,c=p.value;if(c.type===g.LITERAL)l[u]=c.value;else if(c.type===g.VARIABLE)l[u]=z(c.path,r,s);else if(c.type===g.INTERPOLATION){let h=[];for(let y of c.parts)if(typeof y=="string")h.push(y);else if(y.type===g.VARIABLE){let d=z(y.path,r,s);h.push(d!=null?String(d):"")}else{let d=O(y,t,r,s);h.push(d!=null?String(d):"")}l[u]=h.join("")}else l[u]=O(c,t,r,s)}return l}let i={},a=null,o=!1;for(let l of e.properties)if(!l.key.startsWith("$if ")&&!l.key.match(/^\$if\s+\w+.*:?$/)&&!l.key.startsWith("$elif")&&!l.key.startsWith("$else")&&!l.key.startsWith("$for ")){o=!0;break}for(let l of e.properties)if(l.key.startsWith("$if ")||l.key.match(/^\$if\s+\w+.*:?$/)){let p=O(l.value,t,r,s);if(!o&&p!==null&&p!==void 0)return Array.isArray(p)&&p.length===1?p[0]:p;typeof p=="object"&&p!==null&&!Array.isArray(p)&&Object.assign(i,p)}else if(!l.key.startsWith("$for ")){let p=l.value;if(p&&p.type===g.OBJECT&&p.properties){let u=p.properties.find(c=>c.key.startsWith("$for "));if(u){let c=O(u.value,t,r,s);c!==void 0&&(i[l.key]=c)}else{let c=O(l.value,t,r,s);c!==void 0&&(i[l.key]=c)}}else{let u=l.parsedKey?O(l.parsedKey,t,r,s):l.key,c=O(l.value,t,r,s);c!==void 0&&(i[u]=c)}}return i},Or={},Si=(e,t,r,s)=>{let n=[];for(let i of e.items)if(i.type===g.LOOP){let a=O(i,t,r,s);n.push(a)}else{let a=O(i,t,r,s);a!==Or&&a!==void 0&&n.push(a)}return n},ht=fi;var $i=/\$\{([^}]*)\}/g,Lr=e=>{let t=e.match(/^(\w+)\((.*)\)$/);if(!t)return{isFunction:!1};let[,r,s]=t,n=Ci(s);return{isFunction:!0,type:g.FUNCTION,name:r,args:n}},Ci=e=>e.trim()?Ii(e).map(r=>Oi(r.trim())):[],Ii=e=>{let t=[],r="",s=0,n=!1,i="";for(let a=0;a<e.length;a++){let o=e[a],l=a>0?e[a-1]:"";!n&&(o==='"'||o==="'")?(n=!0,i=o,r+=o):n&&o===i&&l!=="\\"?(n=!1,i="",r+=o):!n&&o==="("?(s++,r+=o):!n&&o===")"?(s--,r+=o):!n&&o===","&&s===0?(t.push(r),r=""):r+=o}return r&&t.push(r),t},Oi=e=>{if(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))return{type:g.LITERAL,value:e.slice(1,-1)};if(/^-?\d+(\.\d+)?$/.test(e))return{type:g.LITERAL,value:parseFloat(e)};if(e==="true")return{type:g.LITERAL,value:!0};if(e==="false")return{type:g.LITERAL,value:!1};if(e==="null")return{type:g.LITERAL,value:null};let t=Lr(e);return t.isFunction?{type:t.type,name:t.name,args:t.args}:{type:g.VARIABLE,path:e}},Ti=/^\w+\(.*\)$/,Li=/\s[+\-*/%]\s|\|\||&&|\?\?|.*\?.*:/,Ni=e=>{if(!(!e||e.trim()===""||Ti.test(e))&&Li.test(e))throw e.includes("?")&&e.includes(":")?new j(`Complex expressions not supported in variable replacements - consider calculating the value in your data instead. Offending expression: "${e}"`):e.includes("||")||e.includes("&&")||e.includes("??")?new j(`Logical operators not supported in variable replacements - consider calculating the value in your data instead (operators like ||, &&, ?? are not supported). Offending expression: "${e}"`):new j(`Arithmetic expressions not supported in variable replacements - consider calculating '${e}' in your data instead (expressions with +, -, *, /, % are not supported). Offending expression: "${e}"`)},Tr=(e,t={})=>{let r=e.trim();Ni(r);let s=Lr(r);if(s.isFunction)return{type:s.type,name:s.name,args:s.args};if(r.includes("[")&&!/[\s+\-*/%|&?:]/.test(r)){let n=0;for(let i of r)i==="["?n++:i==="]"&&n--;if(n!==0)throw new Error("Invalid array index syntax")}return{type:g.VARIABLE,path:r}},ft=(e,t={})=>{let r=e,s=[];e.includes("\\${")&&(r=e.replace(/\\\\(\$\{[^}]*\})/g,"\\DOUBLE_ESC$1"),r=r.replace(/\\(\$\{[^}]*\})/g,(o,l)=>{let p=`__ESCAPED_${s.length}__`;return s.push(l),p}),r=r.replace(/\\DOUBLE_ESC/g,"\\"));let n=[...r.matchAll($i)];if(n.length===0){let o=r;for(let l=0;l<s.length;l++)o=o.replace(`__ESCAPED_${l}__`,s[l]);return{type:g.LITERAL,value:o}}if(n.length===1&&n[0][0]===r&&s.length===0)try{return Tr(n[0][1],t)}catch(o){if(o.message==="Invalid array index syntax")return{type:g.LITERAL,value:r};throw o}let i=[],a=0;for(let o of n){let[l,p]=o,u=o.index;if(u>a){let c=r.substring(a,u);for(let h=0;h<s.length;h++)c=c.replace(`__ESCAPED_${h}__`,s[h]);c&&i.push(c)}try{let c=Tr(p.trim(),t);i.push(c)}catch(c){if(c.message==="Invalid array index syntax")i.push(l);else throw c}a=u+l.length}if(a<r.length){let o=r.substring(a);for(let l=0;l<s.length;l++)o=o.replace(`__ESCAPED_${l}__`,s[l]);o&&i.push(o)}return{type:g.INTERPOLATION,parts:i}};var le=(e,t)=>typeof e=="string"?ft(e,t):typeof e=="object"&&e!==null?Array.isArray(e)?Vi(e,t):Ri(e,t):{type:g.LITERAL,value:e},Vi=(e,t)=>{let r=[],s=!1;for(let n=0;n<e.length;n++){let i=e[n];if(typeof i=="object"&&i!==null&&!Array.isArray(i)){let o=Object.keys(i);if(o.length===1&&o[0].startsWith("$for ")){let l=Nr(o[0],i[o[0]],t);r.push(l),s=!0;continue}}let a=le(i,t);r.push(a),(a.type===g.FUNCTION||a.type===g.CONDITIONAL||a.type===g.LOOP||a.type===g.OBJECT&&!a.fast||a.type===g.ARRAY&&!a.fast)&&(s=!0)}return{type:g.ARRAY,items:r,fast:!s}},Ri=(e,t)=>{let r=[],s=!1,n=null,i=Object.entries(e),a=0;for(let[l,p]of i)if(l==="$when"){if(n!==null)throw new j("Multiple '$when' directives on the same object are not allowed");if(p==null)throw new j("Missing condition expression after '$when'");let u=typeof p=="string"?p:JSON.stringify(p);if(u.trim()==="")throw new j("Empty condition expression after '$when'");n=Z(u),s=!0}else if(l.startsWith("$when#")||l.startsWith("$when "))throw new j("'$when' does not support ID syntax or inline conditions - use '$when' as a property");for(;a<i.length;){let[l,p]=i[a];if(l==="$when"){a++;continue}if(l.startsWith("$if ")||l.match(/^\$if#\w+\s/)||l.match(/^\$if\s+\w+.*:$/)){let u=Pi(i,a,t);r.push({key:l,value:u.node}),s=!0,a=u.nextIndex}else if(l.startsWith("$for ")){let u=Nr(l,p,t);r.push({key:l,value:u}),s=!0,a++}else{if(l.startsWith("$elif ")||l.startsWith("$else"))throw new j(`'${l.split(" ")[0]}' without matching '$if'`);if(l==="$if"||l==="$if:")throw new j("Missing condition expression after '$if'");{let u=le(p,t);(u.type===g.FUNCTION||u.type===g.CONDITIONAL||u.type===g.LOOP||u.type===g.OBJECT&&!u.fast||u.type===g.ARRAY&&!u.fast)&&(s=!0);let c=ft(l,t),h={key:l,value:u};(c.type!==g.LITERAL||c.value!==l)&&(h.parsedKey=c),r.push(h),a++}}}let o={type:g.OBJECT,properties:r,fast:!s};return n&&(o.whenCondition=n),o},Pi=(e,t,r={})=>{let s=[],n=[],i=t,[a,o]=e[i],l=null,p;if(a.startsWith("$if#")){let c=a.match(/^\$if#(\w+)\s+(.+)$/);if(c)l=c[1],p=c[2];else throw new j(`Invalid conditional syntax: ${a}`)}else p=a.substring(4),p.endsWith(":")&&(p=p.slice(0,-1).trim());dt(p);let u=Z(p);for(s.push(u),n.push(le(o,r)),i++;i<e.length;){let[c,h]=e[i],y=!1,d;if(l?c.startsWith(`$elif#${l} `)?(d=c.substring(`$elif#${l} `.length),d.endsWith(":")&&(d=d.slice(0,-1).trim()),y=!0):(c===`$else#${l}`||c===`$else#${l}:`)&&(y=!0,d=null):c.startsWith("$elif ")?(d=c.substring(6),d.endsWith(":")&&(d=d.slice(0,-1).trim()),y=!0):(c==="$else"||c==="$else:")&&(y=!0,d=null),y){if(d===null)s.push(null);else{dt(d);let f=Z(d);s.push(f)}if(n.push(le(h,r)),i++,d===null)break}else break}return{node:{type:g.CONDITIONAL,conditions:s,bodies:n,id:l},nextIndex:i}},Z=e=>{if(e=e.trim(),e.startsWith("(")&&e.endsWith(")"))return Z(e.slice(1,-1));let t=Ne(e,"||");if(t!==-1)return{type:g.BINARY,op:B.OR,left:Z(e.substring(0,t).trim()),right:Z(e.substring(t+2).trim())};let r=Ne(e,"&&");if(r!==-1)return{type:g.BINARY,op:B.AND,left:Z(e.substring(0,r).trim()),right:Z(e.substring(r+2).trim())};let s=[{op:">=",type:B.GTE},{op:"<=",type:B.LTE},{op:"==",type:B.EQ},{op:"!=",type:B.NEQ},{op:">",type:B.GT},{op:"<",type:B.LT},{op:" in ",type:B.IN}];for(let{op:i,type:a}of s){let o=Ne(e,i);if(o!==-1)return{type:g.BINARY,op:a,left:Z(e.substring(0,o).trim()),right:Z(e.substring(o+i.length).trim())}}let n=[" + "," - "," * "," / "," % "];for(let i of n)if(Ne(e,i)!==-1)throw new j(`Arithmetic expressions not supported in conditionals - consider calculating '${e}' in your data instead (expressions with +, -, *, /, % are not supported). Offending expression: "${e}"`);return e.startsWith("!")?{type:g.UNARY,op:_e.NOT,operand:Z(e.substring(1).trim())}:ji(e)},Ne=(e,t)=>{let r=0,s=0;for(;s<=e.length-t.length;){if(e[s]==="(")r++;else if(e[s]===")")r--;else if(r===0&&e.substring(s,s+t.length)===t)return s;s++}return-1},ji=e=>{if(e=e.trim(),e==="true")return{type:g.LITERAL,value:!0};if(e==="false")return{type:g.LITERAL,value:!1};if(e==="null")return{type:g.LITERAL,value:null};if(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))return{type:g.LITERAL,value:e.slice(1,-1)};if(e==='""'||e==="''")return{type:g.LITERAL,value:""};let t=Number(e);return!isNaN(t)&&isFinite(t)?{type:g.LITERAL,value:t}:{type:g.VARIABLE,path:e}},Nr=(e,t,r)=>{let s=e.substring(5).trim();kr(s);let n=s.match(/^(.+?)\s+in\s+(.+)$/);if(!n)throw new j(`Invalid loop syntax - missing 'in' keyword (got: '$for ${s}')`);let i=n[1].trim(),a=n[2].trim(),o,l=null;if(i.includes(",")){let c=i.split(",").map(h=>h.trim());if(c.length!==2)throw new j(`Invalid loop variables: ${i}. Expected format: "item" or "item, index"`);o=c[0],l=c[1]}else o=i;let p={type:g.VARIABLE,path:a},u=le(t,r);return{type:g.LOOP,itemVar:o,indexVar:l,iterable:p,body:u}};var Di=(e,t={})=>{let{functions:r={}}=t;return le(e,r)},yt=Di;var mt={};P(mt,{now:()=>Bi});var Bi=()=>Date.now();var Wi=(e,t,r={})=>{let{functions:s={}}=r,n={...mt,...s},i=yt(e,{functions:n});return ht(i,t,n)},gt=Wi;var Vr=e=>{function t(r){let s={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"};return r.replace(/[&<>"']/g,n=>s[n])}return e==null?"":`"${t(String(e))}"`};function Rr(e,t){return t.reduce((r,s)=>(s in e&&(r[s]=e[s]),r),{})}var Mi=Object.freeze({formValues:{},tooltipState:{open:!1,x:0,y:0,content:""}}),vt=(e,t,r=void 0)=>{if(!t)return;let s=t.split(/[\[\].]/).filter(i=>i!==""),n=e;for(let i of s){if(n==null||!(i in n))return r;n=n[i]}return n},zi=(e,t,r)=>{let s=t.split(/[\[\].]/).filter(i=>i!=="");t.includes("[")&&t in e&&delete e[t];let n=e;for(let i=0;i<s.length-1;i++){let a=s[i];if(!(a in n)||typeof n[a]!="object"||n[a]===null){let o=s[i+1],l=/^\d+$/.test(o);n[a]=l?[]:{}}n=n[a]}return n[s[s.length-1]]=r,e},Ki=["id","class","style","slot"],Fi=e=>Object.entries(e).filter(([t])=>!Ki.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),Ve=({state:e,props:t})=>{let{form:r}=t,{context:s}=t;return s?gt(r,s):r},Ui=({state:e,props:t,attrs:r})=>{let s=Fi(r),n=t.defaultValues||{},i=Ve({state:e,props:t}),a=structuredClone(i.fields||[]);return a.forEach(o=>{let l=vt(e.formValues,o.name)??vt(n,o.name);if(["popover-input","select","read-only-text"].includes(o.inputType)?o.defaultValue=l:o.defaultValue=Vr(l),["inputText"].includes(o.inputType)&&(o.placeholder=Vr(o.placeholder)),o.inputType==="image"){let p=o.src;o.imageSrc=p&&p.trim()?p:null,o.placeholderText=o.placeholder||"No Image"}if(o.inputType==="waveform"){let p=o.waveformData;o.waveformData=p||null,o.placeholderText=o.placeholder||"No Waveform"}}),{key:r?.key,containerAttrString:s,title:i?.title||"",description:i?.description||"",fields:a,actions:t?.form?.actions||{buttons:[]},formValues:e.formValues,tooltipState:e.tooltipState}},Hi=({state:e})=>e,Ji=({state:e,props:t})=>{let r=Ve({state:e,props:t});return Rr(e.formValues,r.fields.map(s=>s.name))},qi=({state:e},t)=>vt(e.formValues,t),Yi=(e,t)=>{e.formValues=t||{}},Gi=(e,{name:t,value:r,props:s})=>{zi(e.formValues,t,r);let n=Ve({state:e,props:s}),i=Rr(e.formValues,n.fields.map(a=>a.name));e.formValues=i},Xi=(e,{x:t,y:r,content:s})=>{e.tooltipState={open:!0,x:t,y:r,content:s}},Qi=e=>{e.tooltipState={...e.tooltipState,open:!1}};var Pr={elementName:"rtgl-form",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{defaultValues:{type:"object"},context:{type:"object"},form:{type:"object",properties:{title:{type:"string"},description:{type:"string"},fields:{type:"array",items:{anyOf:[{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"inputText"},placeholder:{type:"string"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"select"},placeholder:{type:"string"},noClear:{type:"boolean"},addOption:{type:"object",properties:{label:{type:"string"}}},options:{type:"array",items:{type:"object",properties:{label:{type:"string"},value:{type:"any"}},required:["label","value"]}},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType","options"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"colorPicker"},value:{type:"string"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"slider"},min:{type:"number"},max:{type:"number"},step:{type:"number"},value:{type:"number"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"slider-input"},min:{type:"number"},max:{type:"number"},step:{type:"number"},value:{type:"number"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"image"},width:{type:"number"},height:{type:"number"},placeholder:{type:"string"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"waveform"},width:{type:"number"},height:{type:"number"},placeholder:{type:"string"},defaultValue:{type:"object"},waveformData:{type:"object"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1},{type:"object",properties:{name:{type:"string"},label:{type:"string"},description:{type:"string"},inputType:{const:"popover-input"},placeholder:{type:"string"},tooltip:{type:"object",properties:{content:{type:"string"}}}},required:["name","label","inputType"],additionalProperties:!1}]}},actions:{type:"object",properties:{buttons:{type:"array",items:{type:"object",properties:{id:{type:"string"},content:{type:"string"}},required:["id","content"]}}}}}}}},refs:{"action-*":{eventListeners:{click:{handler:"handleActionClick"}}},"tooltip-icon-*":{eventListeners:{mouseenter:{handler:"handleTooltipMouseEnter"},mouseleave:{handler:"handleTooltipMouseLeave"}}},"input-*":{eventListeners:{"input-change":{handler:"handleInputChange"}}},"select-*":{eventListeners:{"select-change":{handler:"handleSelectChange"},"add-option-selected":{handler:"handleSelectAddOption"}}},"colorpicker-*":{eventListeners:{"colorpicker-change":{handler:"handleColorPickerChange"}}},"slider-*":{eventListeners:{"slider-change":{handler:"handleSliderChange"}}},"slider-input-*":{eventListeners:{"slider-input-value-change":{handler:"handleSliderInputChange"}}},"image-*":{eventListeners:{click:{handler:"handleImageClick"},contextmenu:{handler:"handleImageClick"}}},"waveform-*":{eventListeners:{click:{handler:"handleWaveformClick"},contextmenu:{handler:"handleWaveformClick"}}},"popover-input-*":{eventListeners:{"input-change":{handler:"handlePopoverInputChange"}}}},events:{"form-change":{},"extra-event":{},"action-click":{}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f p=md g=lg ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=sm w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"title"}}],fast:!0},{type:8,properties:[{key:"rtgl-text c=mu-fg",value:{type:1,path:"description"}}],fast:!0}],fast:!0}}],fast:!0},{type:8,properties:[{key:"rtgl-view g=lg w=f",value:{type:9,items:[{type:7,itemVar:"field",indexVar:"i",iterable:{type:1,path:"fields"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=md w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=sm",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h g=md av=c",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"field.label"}}],fast:!0},{type:8,properties:[{key:"$if field.tooltip",value:{type:6,conditions:[{type:1,path:"field.tooltip"}],bodies:[{type:9,items:[{type:8,properties:[{key:'rtgl-svg#tooltip-icon-${field.name} svg="info" wh=16 c=mu-fg cur=help ml=xs',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-svg#tooltip-icon-",{type:1,path:"field.name"},' svg="info" wh=16 c=mu-fg cur=help ml=xs']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1},{type:8,properties:[{key:"rtgl-text s=sm c=mu-fg",value:{type:1,path:"field.description"}}],fast:!0}],fast:!1}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "read-only-text"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"read-only-text"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm",value:{type:1,path:"field.defaultValue"}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "inputText"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"inputText"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-input#input-${field.name} key=${key} w=f placeholder=${field.placeholder} value=${field.defaultValue}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-input#input-",{type:1,path:"field.name"}," key=",{type:1,path:"key"}," w=f placeholder=",{type:1,path:"field.placeholder"}," value=",{type:1,path:"field.defaultValue"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "popover-input"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"popover-input"}}],bodies:[{type:9,items:[{type:8,properties:[{key:'rtgl-popover-input#popover-input-${field.name} label="${field.label}" .defaultValue=fields[${i}].defaultValue',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-popover-input#popover-input-",{type:1,path:"field.name"},' label="',{type:1,path:"field.label"},'" .defaultValue=fields[',{type:1,path:"i"},"].defaultValue"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "select"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"select"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-select#select-${field.name} key=${key} w=f .options=fields[${i}].options .placeholder=fields[${i}].placeholder .selectedValue=fields[${i}].defaultValue ?no-clear=fields[${i}].noClear .addOption=fields[${i}].addOption",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-select#select-",{type:1,path:"field.name"}," key=",{type:1,path:"key"}," w=f .options=fields[",{type:1,path:"i"},"].options .placeholder=fields[",{type:1,path:"i"},"].placeholder .selectedValue=fields[",{type:1,path:"i"},"].defaultValue ?no-clear=fields[",{type:1,path:"i"},"].noClear .addOption=fields[",{type:1,path:"i"},"].addOption"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "colorPicker"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"colorPicker"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-color-picker#colorpicker-${field.name} key=${key} value=${field.defaultValue}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-color-picker#colorpicker-",{type:1,path:"field.name"}," key=",{type:1,path:"key"}," value=",{type:1,path:"field.defaultValue"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "slider"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"slider"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-slider#slider-${field.name} key=${key} w=f min=${field.min} max=${field.max} step=${field.step} value=${field.defaultValue}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-slider#slider-",{type:1,path:"field.name"}," key=",{type:1,path:"key"}," w=f min=",{type:1,path:"field.min"}," max=",{type:1,path:"field.max"}," step=",{type:1,path:"field.step"}," value=",{type:1,path:"field.defaultValue"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "slider-input"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"slider-input"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-slider-input#slider-input-${field.name} key=${key} w=f min=${field.min} max=${field.max} step=${field.step} defaultValue=${field.defaultValue}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-slider-input#slider-input-",{type:1,path:"field.name"}," key=",{type:1,path:"key"}," w=f min=",{type:1,path:"field.min"}," max=",{type:1,path:"field.max"}," step=",{type:1,path:"field.step"}," defaultValue=",{type:1,path:"field.defaultValue"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "image" && field.imageSrc',value:{type:6,conditions:[{type:4,op:6,left:{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"image"}},right:{type:1,path:"field.imageSrc"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image#image-${field.name} src=${field.imageSrc} w=${field.width} h=${field.height} cur=p",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image#image-",{type:1,path:"field.name"}," src=",{type:1,path:"field.imageSrc"}," w=",{type:1,path:"field.width"}," h=",{type:1,path:"field.height"}," cur=p"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "image" && !field.imageSrc',value:{type:6,conditions:[{type:4,op:6,left:{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"image"}},right:{type:5,op:0,operand:{type:1,path:"field.imageSrc"}}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view#image-${field.name} w=${field.width} h=${field.height} bc=ac bw=sm ah=c av=c cur=p p=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=mu-fg ta=c",value:{type:1,path:"field.placeholderText"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#image-",{type:1,path:"field.name"}," w=",{type:1,path:"field.width"}," h=",{type:1,path:"field.height"}," bc=ac bw=sm ah=c av=c cur=p p=md"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "waveform" && field.waveformData',value:{type:6,conditions:[{type:4,op:6,left:{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"waveform"}},right:{type:1,path:"field.waveformData"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-waveform#waveform-${field.name} .waveformData=fields[${i}].waveformData w=${field.width} h=${field.height} cur=p",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-waveform#waveform-",{type:1,path:"field.name"}," .waveformData=fields[",{type:1,path:"i"},"].waveformData w=",{type:1,path:"field.width"}," h=",{type:1,path:"field.height"}," cur=p"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "waveform" && !field.waveformData',value:{type:6,conditions:[{type:4,op:6,left:{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"waveform"}},right:{type:5,op:0,operand:{type:1,path:"field.waveformData"}}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view#waveform-${field.name} w=${field.width} h=${field.height} bc=ac bw=sm ah=c av=c cur=p p=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=mu-fg ta=c",value:{type:1,path:"field.placeholder"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#waveform-",{type:1,path:"field.name"}," w=",{type:1,path:"field.width"}," h=",{type:1,path:"field.height"}," bc=ac bw=sm ah=c av=c cur=p p=md"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:'$if field.inputType == "slot"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"field.inputType"},right:{type:0,value:"slot"}}],bodies:[{type:9,items:[{type:8,properties:[{key:'slot#slot-${field.slotName} name=${field.slot} style="display: contents;"',value:{type:0,value:null},parsedKey:{type:2,parts:["slot#slot-",{type:1,path:"field.slotName"}," name=",{type:1,path:"field.slot"},' style="display: contents;"']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}}],fast:!1},{type:8,properties:[{key:"rtgl-view g=sm w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h ah=e g=sm w=f",value:{type:9,items:[{type:7,itemVar:"button",indexVar:"i",iterable:{type:1,path:"actions.buttons"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-button#action-${button.id}",value:{type:1,path:"button.content"},parsedKey:{type:2,parts:["rtgl-button#action-",{type:1,path:"button.id"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1},{type:8,properties:[{key:'rtgl-tooltip ?open=${tooltipState.open} x=${tooltipState.x} y=${tooltipState.y} placement="top" content="${tooltipState.content}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-tooltip ?open=",{type:1,path:"tooltipState.open"}," x=",{type:1,path:"tooltipState.x"}," y=",{type:1,path:"tooltipState.y"},' placement="top" content="',{type:1,path:"tooltipState.content"},'"']}}],fast:!0}],fast:!1},parsedKey:{type:2,parts:["rtgl-view w=f p=md g=lg ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var wt={};P(wt,{handleClickStart:()=>Zi});var Zi=(e,t)=>{let{dispatchEvent:r,store:s}=t;console.log("handle click start",s.selectPath()),r(new CustomEvent("clickStart",{detail:{path:s.selectPath()}}))};var xt={};P(xt,{INITIAL_STATE:()=>en,selectPath:()=>nn,setState:()=>on,toViewData:()=>sn});var en=Object.freeze({}),tn=["id","class","style","slot"],rn=e=>Object.entries(e).filter(([t])=>!tn.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),sn=({state:e,props:t,attrs:r})=>{console.log("attrs",{attrs:r,entries:Object.entries(r)});let s=r.start?JSON.parse(decodeURIComponent(r.start)):t.start;return{containerAttrString:rn(r),start:s||{label:"",image:{src:"",width:32,height:32,alt:""}}}},nn=({props:e})=>e.start.path,on=e=>{};var jr={elementName:"rtgl-navbar",viewDataSchema:{type:"object",properties:{containerAttrString:{type:"string"},start:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"}}},hasImage:{type:"boolean"},hasHref:{type:"boolean"}}}}},propsSchema:{type:"object",properties:{start:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"}}}}}}},refs:{start:{eventListeners:{click:{handler:"handleClickStart"}}}},events:{clickStart:{type:"object",properties:{path:{type:"string"}}}},anchors:[[{"rtgl-text s=lg":"${start.label}"},{"$if start.image && start.image.src":[{"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}":null}]}]],template:{type:9,items:[{type:8,properties:[{key:"rtgl-view bgc=bg d=h h=48 av=c w=f ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"$if start.href",value:{type:6,conditions:[{type:1,path:"start.href"},{type:1,path:"start.path"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"a href=${start.href}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c g=lg g=md",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"start.label"}}],fast:!0},{type:8,properties:[{key:"$if start.image && start.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"start.image"},right:{type:1,path:"start.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"start.image.width"}," h=",{type:1,path:"start.image.height"}," src=",{type:1,path:"start.image.src"}," alt=",{type:1,path:"start.image.alt"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["a href=",{type:1,path:"start.href"}]}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view#start d=h av=c g=lg g=md cur=p",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"start.label"}}],fast:!0},{type:8,properties:[{key:"$if start.image && start.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"start.image"},right:{type:1,path:"start.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"start.image.width"}," h=",{type:1,path:"start.image.height"}," src=",{type:1,path:"start.image.src"}," alt=",{type:1,path:"start.image.alt"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c g=lg g=md",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"start.label"}}],fast:!0},{type:8,properties:[{key:"$if start.image && start.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"start.image"},right:{type:1,path:"start.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-image w=${start.image.width} h=${start.image.height} src=${start.image.src} alt=${start.image.alt}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"start.image.width"}," h=",{type:1,path:"start.image.height"}," src=",{type:1,path:"start.image.src"}," alt=",{type:1,path:"start.image.alt"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}],id:null}}],fast:!1},{type:8,properties:[{key:"rtgl-view flex=1",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:"rtgl-view d=h av=c g=lg",value:{type:9,items:[{type:8,properties:[{key:"slot name=right",value:{type:0,value:null}}],fast:!0}],fast:!0}}],fast:!0}],fast:!1},parsedKey:{type:2,parts:["rtgl-view bgc=bg d=h h=48 av=c w=f ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Et={};P(Et,{handleBeforeMount:()=>ln});var Dr=(e,t,r)=>{let{store:s,render:n}=r,i,a=-1/0;if(e.forEach(o=>{let l=o.getBoundingClientRect();l.top<=t&&l.top>a&&(a=l.top,i=o.id)}),!i){let o=1/0;e.forEach(l=>{let p=l.getBoundingClientRect();p.top>t&&p.top<o&&(o=p.top,i=l.id)})}i&&i!==s.selectCurrentId()&&(s.setCurrentId(i),n())},an=(e,t,r,s)=>{let{store:n,render:i}=s,a=e.querySelectorAll("h1[id], h2[id], h3[id], h4[id], rtgl-text[id]"),o=Array.from(a),l=o.map(u=>{let c=1,h=u.tagName.toLowerCase();return h==="h1"?c=1:h==="h2"?c=2:h==="h3"?c=3:h==="h4"?c=4:h==="rtgl-text"&&(c=parseInt(u.getAttribute("data-level")||"1",10)),{id:u.id,href:`#${u.id}`,title:u.textContent,level:c}});n.setItems(l),Dr(o,r,s),i();let p=Dr.bind(void 0,o,r,s);return t.addEventListener("scroll",p,{passive:!0}),()=>{t.removeEventListener("scroll",p)}},ln=e=>{let{attrs:t}=e;requestAnimationFrame(()=>{let r=document.getElementById(t["target-id"]),s=window;t["scroll-container-id"]&&(s=document.getElementById(t["scroll-container-id"])||window);let n=parseInt(t["offset-top"]||"100",10),i=an(r,s,n,e);return()=>{i()}})};var kt={};P(kt,{INITIAL_STATE:()=>pn,selectCurrentId:()=>dn,selectState:()=>un,setContentContainer:()=>yn,setCurrentId:()=>fn,setItems:()=>hn,toViewData:()=>cn});var pn=Object.freeze({items:[],currentId:null,contentContainer:null}),cn=({state:e})=>{let r=((s,n)=>{let i=new Set,a=s.findIndex(l=>l.id===n);if(a===-1)return i;let o=s[a].level;for(let l=a-1;l>=0;l--)if(s[l].level<o){let p=s[l].level;i.add(s[l].id);for(let u=l-1;u>=0;u--)s[u].level<p&&(i.add(s[u].id),p=s[u].level);break}return i})(e.items,e.currentId);return{items:e.items.map(s=>{let n={1:"0",2:"12px",3:"24px",4:"32px"},i=s.id===e.currentId,a=r.has(s.id),o=i||a;return{...s,c:o?"fg":"mu-fg",ml:n[s.level]||"",bc:o?"fg":"mu-fg"}}),currentId:e.currentId}},un=({state:e})=>e,dn=({state:e})=>e.currentId,hn=(e,t)=>{e.items=t},fn=(e,t)=>{e.currentId=t},yn=(e,t)=>{e.contentContainer=t};var Br={elementName:"rtgl-page-outline",viewDataSchema:{type:"object",properties:{items:{type:"array",items:{type:"object",properties:{slug:{type:"string"},title:{type:"string"}}}},selectedSlug:{type:"string",nullable:!0}}},propsSchema:{type:"object",properties:{}},refs:{},events:{onItemClick:{type:"object"}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view h=f w=272 pr=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f mt=xl",value:{type:9,items:[{type:7,itemVar:"item",indexVar:"i",iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:'rtgl-view d=h bwl=xs bc="${item.bc}" pv=sm av=c href=${item.href} pl=md',value:{type:9,items:[{type:8,properties:[{key:"rtgl-view w=${item.ml}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-view w=",{type:1,path:"item.ml"}]}}],fast:!0},{type:8,properties:[{key:"rtgl-text s=sm c=${item.c} h-c=fg",value:{type:1,path:"item.title"},parsedKey:{type:2,parts:["rtgl-text s=sm c=",{type:1,path:"item.c"}," h-c=fg"]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:['rtgl-view d=h bwl=xs bc="',{type:1,path:"item.bc"},'" pv=sm av=c href=',{type:1,path:"item.href"}," pl=md"]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}};var At={};P(At,{handleBeforeMount:()=>mn,handleInputChange:()=>wn,handleInputKeydown:()=>En,handleOnUpdate:()=>gn,handlePopoverClose:()=>bn,handleSubmitClick:()=>xn,handleTextClick:()=>vn});var mn=e=>{let{store:t,props:r}=e;(r.value!==void 0||r.defaultValue!==void 0)&&t.setValue(r.value||r.defaultValue||"")},gn=(e,t)=>{let{oldProps:r,newProps:s}=e,{store:n,props:i,render:a}=t;r.defaultValue!==s.defaultValue&&n.setValue(i.defaultValue||""),a()},vn=(e,t)=>{let{store:r,render:s,getRefIds:n,attrs:i}=t,a=r.selectValue();r.setTempValue(a),r.openPopover({position:{x:e.currentTarget.getBoundingClientRect().left,y:e.currentTarget.getBoundingClientRect().bottom}});let{input:o}=n();o.elm.value=a,s(),i["auto-focus"]&&setTimeout(()=>{o.elm.focus()},50)},bn=(e,t)=>{let{store:r,render:s}=t;r.closePopover(),s()},wn=(e,t)=>{let{store:r,render:s,dispatchEvent:n}=t,i=e.detail.value;r.setTempValue(i),n(new CustomEvent("temp-input-change",{detail:{value:i},bubbles:!0})),s()},xn=(e,t)=>{let{store:r,render:s,dispatchEvent:n,getRefIds:i}=t,{input:a}=i(),o=a.elm.value;r.setValue(o),r.closePopover(),n(new CustomEvent("input-change",{detail:{value:o},bubbles:!0})),s()},En=(e,t)=>{let{store:r,render:s,dispatchEvent:n,getRefIds:i}=t;if(e.key==="Enter"){let{input:a}=i(),o=a.elm.value;r.closePopover(),n(new CustomEvent("input-change",{detail:{value:o},bubbles:!0})),s()}else e.key==="Escape"&&(r.closePopover(),s())};var _t={};P(_t,{INITIAL_STATE:()=>kn,closePopover:()=>$n,openPopover:()=>Sn,selectValue:()=>In,setTempValue:()=>_n,setValue:()=>Cn,toViewData:()=>An});var kn=Object.freeze({isOpen:!1,position:{x:0,y:0},value:"",tempValue:""}),An=({attrs:e,state:t,props:r})=>{let s=t.value||"-";return{isOpen:t.isOpen,position:t.position,value:s??"-",tempValue:t.tempValue,placeholder:r.placeholder??"",label:e.label}},_n=(e,t)=>{e.tempValue=t},Sn=(e,t)=>{let{position:r}=t;e.position=r,e.isOpen=!0,e.hasUnsavedChanges=!1},$n=e=>{e.isOpen=!1,e.tempValue=""},Cn=(e,t)=>{e.value=t},In=({state:e})=>e.value;var Wr={elementName:"rtgl-popover-input",viewDataSchema:{type:"object"},attrsSchema:{type:"object",properties:{"auto-focus":{type:"boolean"}}},propsSchema:{type:"object",properties:{value:{type:"string"},defaultValue:{type:"string"},placeholder:{type:"string"},onChange:{type:"function"}}},refs:{"text-display":{eventListeners:{click:{handler:"handleTextClick"}}},popover:{eventListeners:{close:{handler:"handlePopoverClose"}}},input:{eventListeners:{"input-change":{handler:"handleInputChange"},keydown:{handler:"handleInputKeydown"}}},submit:{eventListeners:{click:{handler:"handleSubmitClick"}}}},events:{"input-change":{}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view#text-display w=f cur=p",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"value"}}],fast:!0}],fast:!0}}],fast:!0},{type:8,properties:[{key:"rtgl-popover#popover ?open=${isOpen} x=${position.x} y=${position.y}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view g=md w=240 slot=content bgc=background br=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"label"}}],fast:!0},{type:8,properties:[{key:"rtgl-input#input w=f placeholder=${placeholder}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-input#input w=f placeholder=",{type:1,path:"placeholder"}]}}],fast:!0},{type:8,properties:[{key:"rtgl-view w=f ah=e",value:{type:9,items:[{type:8,properties:[{key:"rtgl-button#submit",value:{type:0,value:"Submit"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-popover#popover ?open=",{type:1,path:"isOpen"}," x=",{type:1,path:"position.x"}," y=",{type:1,path:"position.y"}]}}],fast:!0}],fast:!0}};var St={};P(St,{handleAddOptionClick:()=>Dn,handleAddOptionMouseEnter:()=>Bn,handleAddOptionMouseLeave:()=>Wn,handleBeforeMount:()=>On,handleButtonClick:()=>Ln,handleClearClick:()=>jn,handleClickOptionsPopoverOverlay:()=>Nn,handleOnUpdate:()=>Tn,handleOptionClick:()=>Vn,handleOptionMouseEnter:()=>Rn,handleOptionMouseLeave:()=>Pn});var On=e=>{let{store:t,props:r,render:s}=e;if(r.selectedValue!==null&&r.selectedValue!==void 0&&r.options){let n=r.options.find(i=>oe(i.value,r.selectedValue));n&&(t.updateSelectOption(n),s())}},Tn=(e,t)=>{let{oldAttrs:r,newAttrs:s,oldProps:n,newProps:i}=e,{store:a,props:o,render:l}=t;if(r?.key!==s?.key&&s?.key){a.resetSelection();let p=i?.selectedValue||o?.selectedValue,u=i?.options||o?.options;if(p!=null&&u){let c=u.find(h=>oe(h.value,p));c&&a.updateSelectOption(c)}l()}},Ln=(e,t)=>{let{store:r,render:s,getRefIds:n,props:i}=t,a=n()["select-button"].elm,o=a.firstElementChild,l=o?o.getBoundingClientRect():a.getBoundingClientRect(),p=r.selectSelectedValue(),u=p!==null?p:i.selectedValue,c=null;u!=null&&i.options&&(c=i.options.findIndex(h=>oe(h.value,u)),c===-1&&(c=null)),r.openOptionsPopover({position:{y:l.bottom+12,x:l.left-24},selectedIndex:c}),s()},Nn=(e,t)=>{let{store:r,render:s}=t;r.closeOptionsPopover(),s()},Vn=(e,t)=>{let{render:r,dispatchEvent:s,props:n,store:i}=t,a=e.currentTarget.id.replace("option-",""),o=n.options[a];i.updateSelectOption(o),n.onChange&&typeof n.onChange=="function"&&n.onChange(o.value),s(new CustomEvent("option-selected",{detail:{value:o.value,label:o.label},bubbles:!0})),s(new CustomEvent("select-change",{detail:{selectedValue:o.value},bubbles:!0})),r()},Rn=(e,t)=>{let{store:r,render:s}=t,n=parseInt(e.currentTarget.id.replace("option-",""));r.setHoveredOption(n),s()},Pn=(e,t)=>{let{store:r,render:s}=t;r.clearHoveredOption(),s()},jn=(e,t)=>{let{store:r,render:s,dispatchEvent:n,props:i}=t;e.stopPropagation(),r.clearSelectedValue(),i.onChange&&typeof i.onChange=="function"&&i.onChange(void 0),n(new CustomEvent("option-selected",{detail:{value:void 0,label:void 0},bubbles:!0})),n(new CustomEvent("select-change",{detail:{selectedValue:void 0},bubbles:!0})),s()},Dn=(e,t)=>{let{store:r,render:s,dispatchEvent:n}=t;r.closeOptionsPopover(),n(new CustomEvent("add-option-selected",{bubbles:!0})),s()},Bn=(e,t)=>{let{store:r,render:s}=t;r.setHoveredAddOption(!0),s()},Wn=(e,t)=>{let{store:r,render:s}=t;r.setHoveredAddOption(!1),s()};var $t={};P($t,{INITIAL_STATE:()=>Kn,clearHoveredOption:()=>Qn,clearSelectedValue:()=>Zn,closeOptionsPopover:()=>qn,openOptionsPopover:()=>Jn,resetSelection:()=>Gn,selectSelectedValue:()=>Hn,selectState:()=>Un,setHoveredAddOption:()=>eo,setHoveredOption:()=>Xn,toViewData:()=>Fn,updateSelectOption:()=>Yn});var Mn=["id","class","style","slot","placeholder","selectedValue","selected-value","onChange","on-change","options"],zn=e=>Object.entries(e||{}).filter(([t])=>!Mn.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),Kn=Object.freeze({isOpen:!1,position:{x:0,y:0},selectedValue:null,hoveredOptionId:null,hoveredAddOption:!1}),Fn=({state:e,props:t,attrs:r})=>{let s=zn(r),n=e.selectedValue!==null?e.selectedValue:t.selectedValue,i=t.placeholder||"Select an option",a=!0;if(n!=null&&t.options){let l=t.options.find(p=>oe(p.value,n));l&&(i=l.label,a=!1)}let o=(t.options||[]).map((l,p)=>{let u=oe(l.value,n),c=e.hoveredOptionId===p;return{...l,isSelected:u,bgc:c?"ac":u?"mu":""}});return{containerAttrString:s,isOpen:e.isOpen,position:e.position,options:o,selectedValue:n,selectedLabel:i,selectedLabelColor:a?"mu-fg":"fg",placeholder:t.placeholder||"Select an option",hasValue:n!=null,showClear:!r["no-clear"]&&!t["no-clear"]&&n!=null,showAddOption:!!t.addOption,addOptionLabel:t.addOption?.label?`+ ${t.addOption.label}`:"+ Add",addOptionBgc:e.hoveredAddOption?"ac":""}},Un=({state:e})=>e,Hn=({state:e})=>e.selectedValue,Jn=(e,t)=>{let{position:r,selectedIndex:s}=t;e.position=r,e.isOpen=!0,s!=null&&(e.hoveredOptionId=s)},qn=e=>{e.isOpen=!1},Yn=(e,t)=>{e.selectedValue=t.value,e.isOpen=!1},Gn=e=>{e.selectedValue=void 0},Xn=(e,t)=>{e.hoveredOptionId=t},Qn=e=>{e.hoveredOptionId=null},Zn=e=>{e.selectedValue=void 0},eo=(e,t)=>{e.hoveredAddOption=t};var Mr={elementName:"rtgl-select",viewDataSchema:{type:"object"},propsSchema:{type:"object",properties:{options:{type:"array",items:{type:"object",properties:{label:{type:"string"},value:{type:"any"}}}},selectedValue:{type:"any"},placeholder:{type:"string"},onChange:{type:"function"},"no-clear":{type:"boolean"},addOption:{type:"object",properties:{label:{type:"string"}}}}},refs:{"select-button":{eventListeners:{click:{handler:"handleButtonClick"}}},"clear-button":{eventListeners:{click:{handler:"handleClearClick"}}},popover:{eventListeners:{close:{handler:"handleClickOptionsPopoverOverlay"}}},"option-*":{eventListeners:{click:{handler:"handleOptionClick"},mouseenter:{handler:"handleOptionMouseEnter"},mouseleave:{handler:"handleOptionMouseLeave"}}},"option-add":{eventListeners:{click:{handler:"handleAddOptionClick"},mouseenter:{handler:"handleAddOptionMouseEnter"},mouseleave:{handler:"handleAddOptionMouseLeave"}}}},events:{},template:{type:9,items:[{type:8,properties:[{key:"rtgl-button#select-button v=ol ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c w=f",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=${selectedLabelColor}",value:{type:1,path:"selectedLabel"},parsedKey:{type:2,parts:["rtgl-text c=",{type:1,path:"selectedLabelColor"}]}}],fast:!0},{type:8,properties:[{key:"rtgl-view mh=md flex=1",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:"$if showClear",value:{type:6,conditions:[{type:1,path:"showClear"}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-svg#clear-button mr=md svg=x wh=16 c=mu-fg cur=p",value:{type:0,value:null}}],fast:!0}],fast:!0}],id:null}}],fast:!1},{type:8,properties:[{key:"rtgl-svg svg=chevronDown wh=16 c=mu-fg",value:{type:0,value:null}}],fast:!0}],fast:!1}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-button#select-button v=ol ",{type:1,path:"containerAttrString"}]}}],fast:!1},{type:8,properties:[{key:"rtgl-popover#popover ?open=${isOpen} x=${position.x} y=${position.y} placement=right-start",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view wh=300 g=xs slot=content bgc=background br=md sv=true",value:{type:9,items:[{type:7,itemVar:"option",indexVar:"i",iterable:{type:1,path:"options"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view#option-${i} w=f ph=lg pv=md cur=p br=md bgc=${option.bgc}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text",value:{type:1,path:"option.label"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#option-",{type:1,path:"i"}," w=f ph=lg pv=md cur=p br=md bgc=",{type:1,path:"option.bgc"}]}}],fast:!0}],fast:!0}},{type:8,properties:[{key:"$if showAddOption",value:{type:6,conditions:[{type:1,path:"showAddOption"}],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f bw=xs bc=mu-bg bt=sm",value:{type:0,value:null}}],fast:!0},{type:8,properties:[{key:"rtgl-view#option-add w=f ph=lg pv=md cur=p br=md bgc=${addOptionBgc}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=ac",value:{type:1,path:"addOptionLabel"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#option-add w=f ph=lg pv=md cur=p br=md bgc=",{type:1,path:"addOptionBgc"}]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-popover#popover ?open=",{type:1,path:"isOpen"}," x=",{type:1,path:"position.x"}," y=",{type:1,path:"position.y"}," placement=right-start"]}}],fast:!1}],fast:!1}};var Ct={};P(Ct,{handleHeaderClick:()=>to,handleItemClick:()=>ro});var to=(e,t)=>{let{store:r,dispatchEvent:s}=t,n,i=r.selectHeader();e.currentTarget.id==="header-label"?n=i.labelPath:e.currentTarget.id==="header-image"?n=i.image.path:e.currentTarget.id==="header"&&(n=i.path),s(new CustomEvent("headerClick",{detail:{path:n},bubbles:!0,composed:!0}))},ro=(e,t)=>{let{store:r,dispatchEvent:s}=t,n=e.currentTarget.id.replace("item-",""),i=r.selectItem(n);s(new CustomEvent("itemClick",{detail:{item:i},bubbles:!0,composed:!0}))};var Ot={};P(Ot,{INITIAL_STATE:()=>so,selectActiveItem:()=>lo,selectHeader:()=>ao,selectItem:()=>po,setState:()=>co,toViewData:()=>oo});var so=Object.freeze({}),io=["id","class","style","slot"],no=e=>Object.entries(e).filter(([t])=>!io.includes(t)).map(([t,r])=>`${t}=${r}`).join(" ");function It(e,t=null){let r=[];for(let s of e){let n=s.id||s.href||s.path,i=t===n;if(r.push({id:n,title:s.title,href:s.href,type:s.type||"item",icon:s.icon,hrefAttr:s.href?`href=${s.href}`:"",isSelected:i,itemBgc:i?"ac":"bg",itemHoverBgc:i?"ac":"mu"}),s.items&&Array.isArray(s.items))for(let a of s.items){let o=a.id||a.href||a.path,l=t===o;r.push({id:o,title:a.title,href:a.href,type:a.type||"item",icon:a.icon,hrefAttr:a.href?`href=${a.href}`:"",isSelected:l,itemBgc:l?"ac":"bg",itemHoverBgc:l?"ac":"mu"})}}return r}var oo=({state:e,props:t,attrs:r})=>{let s=r.header?JSON.parse(decodeURIComponent(r.header)):t.header,n=r.items?JSON.parse(decodeURIComponent(r.items)):t.items,i=r.selectedItemId||t.selectedItemId,a=no(r),o=r.mode||"full",l=s||{label:"",path:"",image:{src:"",alt:"",width:0,height:0}},p=n?It(n,i):[],u=o==="full"?272:64,c=o==="full"?"fs":"c",h=o==="full"?"fs":"c",y=o==="full"?"lg":"sm",d=o==="full"?"md":"sm",f=o==="shrunk-lg"?48:40,m=o==="shrunk-lg"?28:20,v=o==="shrunk-lg"?"md":"sm",b=o==="full",w=o==="full",E=o==="full"?"fs":"c",_=o==="full"?"":`ah=${h}`,k=o==="full"?"f":f;return{containerAttrString:a,mode:o,header:l,items:p,sidebarWidth:u,headerAlign:c,itemAlign:h,headerPadding:y,itemPadding:d,itemHeight:f,iconSize:m,firstLetterSize:v,showLabels:b,showGroupLabels:w,itemContentAlign:E,itemAlignAttr:_,itemWidth:k,headerWidth:k,selectedItemId:i,ah:o==="shrunk-lg"||o==="shrunk-md"?"c":""}},ao=({state:e,props:t,attrs:r})=>r.header?JSON.parse(decodeURIComponent(r.header)):t.header,lo=({state:e,props:t})=>(t.items?It(t.items):[]).find(s=>s.active),po=({state:e,props:t,attrs:r},s)=>{let n=r.items?JSON.parse(decodeURIComponent(r.items)):t.items;return(n?It(n):[]).find(a=>a.id===s)},co=e=>{};var zr={elementName:"rtgl-sidebar",viewDataSchema:{type:"object",properties:{containerAttrString:{type:"string"},mode:{type:"string",enum:["full","shrunk","shrunk-lg"],default:"full"},sidebarWidth:{type:"number"},headerAlign:{type:"string"},itemAlign:{type:"string"},headerPadding:{type:"string"},itemPadding:{type:"string"},itemHeight:{type:"number"},iconSize:{type:"number"},firstLetterSize:{type:"string"},showLabels:{type:"boolean"},showGroupLabels:{type:"boolean"},itemContentAlign:{type:"string"},itemAlignAttr:{type:"string"},itemWidth:{type:"string"},headerWidth:{type:"string"},selectedItemId:{type:"string"},header:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"},width:{type:"number"},height:{type:"number"},alt:{type:"string"}}}}},items:{type:"array",items:{type:"object",properties:{title:{type:"string"},slug:{type:"string"},type:{type:"string"},active:{type:"boolean"},icon:{type:"string"}}}}}},propsSchema:{type:"object",properties:{selectedItemId:{type:"string"},header:{type:"object",properties:{label:{type:"string"},href:{type:"string"},image:{type:"object",properties:{src:{type:"string"},width:{type:"number"},height:{type:"number"},alt:{type:"string"}}}}},items:{type:"array",items:{type:"object",properties:{title:{type:"string"},slug:{type:"string"},type:{type:"string"},items:{type:"array"}}}}}},refs:{"header-image":{eventListeners:{click:{handler:"handleHeaderClick"}}},"header-label":{eventListeners:{click:{handler:"handleHeaderClick"}}},header:{eventListeners:{click:{handler:"handleHeaderClick"}}},"item-*":{eventListeners:{click:{handler:"handleItemClick"}}}},events:{headerClick:{type:"object",properties:{path:{type:"string"}}}},anchors:[[{"$if header.image && header.image.src":[{"$if header.image.href":[{"a href=${header.image.href}":[{'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"':null}]}],"$elif header.image.path":[{"rtgl-view#header-image cur=p":[{'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"':null}]}],$else:[{'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"':null}]}]},{"$if header.label && showLabels":[{"$if header.labelHref":[{"rtgl-text href=${header.labelHref} s=lg":"${header.label}"}],"$elif header.labelPath":[{"rtgl-view#header-label cur=p":[{"rtgl-text s=lg":"${header.label}"}]}],$else:[{"rtgl-text s=lg":"${header.label}"}]}]}]],template:{type:9,items:[{type:8,properties:[{key:"rtgl-view h=f w=${sidebarWidth} bwr=xs ah=${ah} ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view ph=${headerPadding} pv=lg",value:{type:9,items:[{type:8,properties:[{key:"$if header.href",value:{type:6,conditions:[{type:1,path:"header.href"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view href=${header.href} d=h av=c ah=${headerAlign} g=lg w=${headerWidth}",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"$if header.image && header.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.image"},right:{type:1,path:"header.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.image.href",value:{type:6,conditions:[{type:1,path:"header.image.href"},{type:1,path:"header.image.path"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"a href=${header.image.href}",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["a href=",{type:1,path:"header.image.href"}]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-image cur=p",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1},{type:8,properties:[{key:"$if header.label && showLabels",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.label"},right:{type:1,path:"showLabels"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.labelHref",value:{type:6,conditions:[{type:1,path:"header.labelHref"},{type:1,path:"header.labelPath"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text href=${header.labelHref} s=lg",value:{type:1,path:"header.label"},parsedKey:{type:2,parts:["rtgl-text href=",{type:1,path:"header.labelHref"}," s=lg"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-label cur=p",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view href=",{type:1,path:"header.href"}," d=h av=c ah=",{type:1,path:"headerAlign"}," g=lg w=",{type:1,path:"headerWidth"}]}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header d=h av=c ah=${headerAlign} g=lg w=${headerWidth} cur=p",value:{type:9,items:[{type:9,items:[{type:8,properties:[{key:"$if header.image && header.image.src",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.image"},right:{type:1,path:"header.image.src"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.image.href",value:{type:6,conditions:[{type:1,path:"header.image.href"},{type:1,path:"header.image.path"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"a href=${header.image.href}",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["a href=",{type:1,path:"header.image.href"}]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-image cur=p",value:{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:'rtgl-image w=${header.image.width} h=${header.image.height} src=${header.image.src} alt="${header.image.alt}"',value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-image w=",{type:1,path:"header.image.width"}," h=",{type:1,path:"header.image.height"}," src=",{type:1,path:"header.image.src"},' alt="',{type:1,path:"header.image.alt"},'"']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1},{type:8,properties:[{key:"$if header.label && showLabels",value:{type:6,conditions:[{type:4,op:6,left:{type:1,path:"header.label"},right:{type:1,path:"showLabels"}}],bodies:[{type:9,items:[{type:8,properties:[{key:"$if header.labelHref",value:{type:6,conditions:[{type:1,path:"header.labelHref"},{type:1,path:"header.labelPath"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text href=${header.labelHref} s=lg",value:{type:1,path:"header.label"},parsedKey:{type:2,parts:["rtgl-text href=",{type:1,path:"header.labelHref"}," s=lg"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view#header-label cur=p",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-text s=lg",value:{type:1,path:"header.label"}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view#header d=h av=c ah=",{type:1,path:"headerAlign"}," g=lg w=",{type:1,path:"headerWidth"}," cur=p"]}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view ph=",{type:1,path:"headerPadding"}," pv=lg"]}}],fast:!1},{type:8,properties:[{key:"rtgl-view w=f ph=${headerPadding} pb=lg g=xs ah=${ah}",value:{type:9,items:[{type:7,itemVar:"item",indexVar:"i",iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:'$if item.type == "groupLabel"',value:{type:6,conditions:[{type:4,op:0,left:{type:1,path:"item.type"},right:{type:0,value:"groupLabel"}},null],bodies:[{type:9,items:[{type:8,properties:[{key:"$if showGroupLabels",value:{type:6,conditions:[{type:1,path:"showGroupLabels"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view mt=md h=32 av=c ph=md",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=xs c=mu-fg",value:{type:1,path:"item.title"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view mt=md h=1 bgc=mu-bg",value:{type:0,value:null}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view#item-${item.id} ${item.hrefAttr} h=${itemHeight} av=c ${itemAlignAttr} ph=${itemPadding} w=${itemWidth} h-bgc=${item.itemHoverBgc} br=lg bgc=${item.itemBgc} cur=p",value:{type:9,items:[{type:8,properties:[{key:"$if item.icon",value:{type:6,conditions:[{type:1,path:"item.icon"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"$if showLabels",value:{type:6,conditions:[{type:1,path:"showLabels"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h ah=${itemContentAlign} g=sm",value:{type:9,items:[{type:8,properties:[{key:"rtgl-svg wh=16 svg=${item.icon} c=fg",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-svg wh=16 svg=",{type:1,path:"item.icon"}," c=fg"]}}],fast:!0},{type:8,properties:[{key:"rtgl-text s=sm",value:{type:1,path:"item.title"}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view d=h ah=",{type:1,path:"itemContentAlign"}," g=sm"]}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-svg wh=${iconSize} svg=${item.icon} c=fg",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-svg wh=",{type:1,path:"iconSize"}," svg=",{type:1,path:"item.icon"}," c=fg"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"$if showLabels",value:{type:6,conditions:[{type:1,path:"showLabels"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm",value:{type:1,path:"item.title"}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:"rtgl-view wh=${iconSize} br=f bgc=mu av=c ah=c",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=${firstLetterSize} c=fg",value:{type:1,path:"item.title.charAt(0).toUpperCase()"},parsedKey:{type:2,parts:["rtgl-text s=",{type:1,path:"firstLetterSize"}," c=fg"]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view wh=",{type:1,path:"iconSize"}," br=f bgc=mu av=c ah=c"]}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view#item-",{type:1,path:"item.id"}," ",{type:1,path:"item.hrefAttr"}," h=",{type:1,path:"itemHeight"}," av=c ",{type:1,path:"itemAlignAttr"}," ph=",{type:1,path:"itemPadding"}," w=",{type:1,path:"itemWidth"}," h-bgc=",{type:1,path:"item.itemHoverBgc"}," br=lg bgc=",{type:1,path:"item.itemBgc"}," cur=p"]}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}}],fast:!1},parsedKey:{type:2,parts:["rtgl-view w=f ph=",{type:1,path:"headerPadding"}," pb=lg g=xs ah=",{type:1,path:"ah"}]}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view h=f w=",{type:1,path:"sidebarWidth"}," bwr=xs ah=",{type:1,path:"ah"}," ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Tt={};P(Tt,{handleBeforeMount:()=>uo,handleOnUpdate:()=>ho,handleValueChange:()=>fo});var uo=e=>{let{store:t,attrs:r}=e;t.setValue(r.defaultValue||0)},ho=(e,t)=>{let{oldAttrs:r,newAttrs:s}=e,{store:n,render:i,attrs:a}=t;if(r?.key!==s?.key&&s?.key){let o=s?.defaultValue||a?.defaultValue||0;n.setValue(o),i()}else if(r?.defaultValue!==s?.defaultValue){let o=s?.defaultValue||0;n.setValue(o),i()}},fo=(e,t)=>{let{store:r,render:s,dispatchEvent:n}=t,i=Number(e.detail.value);r.setValue(i),s(),n(new CustomEvent("slider-input-value-change",{detail:{value:i},bubbles:!0}))};var Lt={};P(Lt,{INITIAL_STATE:()=>yo,setValue:()=>go,toViewData:()=>mo});var yo=Object.freeze({value:0}),mo=({state:e,attrs:t})=>({key:t.key,value:e.value,w:t.w||"",min:t.min||0,max:t.max||100,step:t.step||1}),go=(e,t)=>{e.value=t};var Kr={elementName:"rtgl-slider-input",viewDataSchema:{type:"object"},attrsSchema:{type:"object",properties:{defaultValue:{type:"string",default:"0"},w:{type:"string",default:""},min:{type:"string",default:"0"},max:{type:"string",default:"100"},step:{type:"string",default:"1"}}},refs:{input:{eventListeners:{"input-change":{handler:"handleValueChange"}}},slider:{eventListeners:{"slider-change":{handler:"handleValueChange"}}}},events:{"form-change":{}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h av=c g=md w=${w}",value:{type:9,items:[{type:8,properties:[{key:"rtgl-slider#slider key=${key} w=f type=range min=${min} max=${max} step=${step} value=${value}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-slider#slider key=",{type:1,path:"key"}," w=f type=range min=",{type:1,path:"min"}," max=",{type:1,path:"max"}," step=",{type:1,path:"step"}," value=",{type:1,path:"value"}]}}],fast:!0},{type:8,properties:[{key:"rtgl-view w=84",value:{type:9,items:[{type:8,properties:[{key:"rtgl-input#input key=${key} w=f type=number min=${min} max=${max} step=${step} value=${value}",value:{type:0,value:null},parsedKey:{type:2,parts:["rtgl-input#input key=",{type:1,path:"key"}," w=f type=number min=",{type:1,path:"min"}," max=",{type:1,path:"max"}," step=",{type:1,path:"step"}," value=",{type:1,path:"value"}]}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view d=h av=c g=md w=",{type:1,path:"w"}]}}],fast:!0}],fast:!0}};var Nt={};P(Nt,{handleBeforeMount:()=>vo,handleHeaderClick:()=>wo,handleRowClick:()=>bo});var vo=e=>{},bo=(e,t)=>{let{dispatchEvent:r,props:s}=t,n=parseInt(e.currentTarget.id.replace("row-","")),i=s.data?.rows?.[n];i&&r(new CustomEvent("row-click",{detail:{rowIndex:n,rowData:i}}))},wo=(e,t)=>{let{store:r,render:s,dispatchEvent:n}=t,i=e.currentTarget.id.replace("header-",""),a=r.selectSortInfo(),o="asc";a.column===i&&(a.direction==="asc"?o="desc":a.direction==="desc"&&(o=null)),o?r.setSortColumn({column:i,direction:o}):r.clearSort(),s(),n(new CustomEvent("header-click",{detail:{column:i,direction:o,sortInfo:o?{column:i,direction:o}:null}}))};var Vt={};P(Vt,{INITIAL_STATE:()=>xo,clearSort:()=>Io,selectSortInfo:()=>$o,selectState:()=>So,setSortColumn:()=>Co,toViewData:()=>_o});var xo=Object.freeze({sortColumn:null,sortDirection:null}),Eo=["id","class","style","slot"],ko=e=>Object.entries(e).filter(([t])=>!Eo.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),Ao=(e,t)=>{let r=t.split("."),s=e;for(let n of r){if(s==null)return null;s=s[n]}return s},_o=({state:e,props:t,attrs:r})=>{let s=ko(r),n=t.data||{columns:[],rows:[]},i=n.rows.map((a,o)=>{let l=n.columns.map(p=>{let u=Ao(a,p.key);return{key:p.key,value:u!=null?String(u):""}});return{index:o,cells:l}});return{containerAttrString:s,columns:n.columns||[],rows:i||[]}},So=({state:e})=>e,$o=({state:e})=>({column:e.sortColumn,direction:e.sortDirection}),Co=(e,{column:t,direction:r})=>{e.sortColumn=t,e.sortDirection=r},Io=e=>{e.sortColumn=null,e.sortDirection=null};var Fr={elementName:"rtgl-table",viewDataSchema:{type:"object",properties:{columns:{type:"array"},rows:{type:"array"},containerAttrString:{type:"string"}}},propsSchema:{type:"object",properties:{data:{type:"object",properties:{columns:{type:"array",items:{type:"object",properties:{key:{type:"string"},label:{type:"string"}}}},rows:{type:"array",items:{type:"object"}}}},responsive:{type:"boolean",default:!0}}},refs:{"row-*":{eventListeners:{click:{handler:"handleRowClick"}}},"header-*":{eventListeners:{click:{handler:"handleHeaderClick"}}}},events:{},styles:{table:{width:"100%","border-collapse":"collapse","border-spacing":0},thead:{"border-bottom":"2px solid var(--border)"},th:{padding:"12px","text-align":"left","font-weight":500,color:"var(--foreground)","background-color":"var(--muted)",cursor:"pointer",position:"sticky",top:0,"z-index":1},"tbody tr":{"border-bottom":"1px solid var(--border)"},"tbody tr:last-child":{"border-bottom":"none"},td:{padding:"12px",color:"var(--foreground)"},".table-container":{width:"100%",height:"100%",overflow:"auto"},".empty-state":{"text-align":"center",padding:"24px",color:"var(--muted-foreground)"}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view.table-container ${containerAttrString}",value:{type:9,items:[{type:8,properties:[{key:"$if rows.length > 0",value:{type:6,conditions:[{type:4,op:2,left:{type:1,path:"rows.length"},right:{type:0,value:0}},null],bodies:[{type:9,items:[{type:8,properties:[{key:"table",value:{type:9,items:[{type:8,properties:[{key:"thead",value:{type:9,items:[{type:8,properties:[{key:"tr",value:{type:9,items:[{type:7,itemVar:"column",indexVar:"i",iterable:{type:1,path:"columns"},body:{type:9,items:[{type:8,properties:[{key:"th#header-${column.key}",value:{type:1,path:"column.label"},parsedKey:{type:2,parts:["th#header-",{type:1,path:"column.key"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1},{type:8,properties:[{key:"tbody",value:{type:9,items:[{type:7,itemVar:"row",indexVar:"rowIndex",iterable:{type:1,path:"rows"},body:{type:9,items:[{type:8,properties:[{key:"tr#row-${row.index}",value:{type:9,items:[{type:7,itemVar:"cell",indexVar:"cellIndex",iterable:{type:1,path:"row.cells"},body:{type:9,items:[{type:8,properties:[{key:"td",value:{type:1,path:"cell.value"}}],fast:!0}],fast:!0}}],fast:!1},parsedKey:{type:2,parts:["tr#row-",{type:1,path:"row.index"}]}}],fast:!1}],fast:!1}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1},{type:9,items:[{type:8,properties:[{key:"rtgl-view.empty-state w=f p=xl",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=mu-fg",value:{type:0,value:"No data available"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view.table-container ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Rt={};P(Rt,{handleClickItem:()=>Oo});var Oo=(e,t)=>{let{dispatchEvent:r}=t,s=e.currentTarget.dataset.id;r(new CustomEvent("item-click",{detail:{id:s}}))};var Pt={};P(Pt,{INITIAL_STATE:()=>To,toViewData:()=>Vo});var To=Object.freeze({}),Lo=["id","class","style","slot"],No=e=>Object.entries(e).filter(([t])=>!Lo.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),Vo=({state:e,props:t,attrs:r})=>{let s=No(r),n=t.items||[],i=r["selected-tab"],a=n.map(o=>({...o,isSelected:o.id===i,bgColor:o.id===i?"ac":"",borderColor:o.id===i?"":"tr",textColor:o.id===i?"":"mu-fg"}));return{containerAttrString:s,items:a,selectedTab:i}};var Ur={elementName:"rtgl-tabs",viewDataSchema:{type:"object",properties:{containerAttrString:{type:"string"},items:{type:"array",items:{type:"object",properties:{label:{type:"string"},id:{type:"string"},isSelected:{type:"boolean"},bgColor:{type:"string"},textColor:{type:"string"},borderColor:{type:"string"}}}},selectedTab:{type:"string"}}},propsSchema:{type:"object",properties:{items:{type:"array",items:{type:"object",properties:{label:{type:"string"},id:{type:"string"}}}}}},attrsSchema:{type:"object",properties:{"selected-tab":{type:"string"}}},refs:{"tab-*":{eventListeners:{click:{handler:"handleClickItem"}}}},events:{"item-click":{type:"object",properties:{id:{type:"string"}}}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view d=h g=sm bgc=mu p=sm br=lg ${containerAttrString}",value:{type:9,items:[{type:7,itemVar:"item",indexVar:null,iterable:{type:1,path:"items"},body:{type:9,items:[{type:8,properties:[{key:"rtgl-view#tab-${item.id} data-id=${item.id} cur=p bgc=${item.bgColor} bw=xs bc=${item.borderColor} pv=md ph=lg br=lg",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text s=sm c=${item.textColor}",value:{type:1,path:"item.label"},parsedKey:{type:2,parts:["rtgl-text s=sm c=",{type:1,path:"item.textColor"}]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view#tab-",{type:1,path:"item.id"}," data-id=",{type:1,path:"item.id"}," cur=p bgc=",{type:1,path:"item.bgColor"}," bw=xs bc=",{type:1,path:"item.borderColor"}," pv=md ph=lg br=lg"]}}],fast:!0}],fast:!0}}],fast:!1},parsedKey:{type:2,parts:["rtgl-view d=h g=sm bgc=mu p=sm br=lg ",{type:1,path:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Hr={};var jt={};P(jt,{INITIAL_STATE:()=>Ro,toViewData:()=>Po});var Ro=Object.freeze({}),Po=({attrs:e})=>({open:!!e.open,x:e.x||0,y:e.y||0,placement:e.placement||"top",content:e.content||""});var Jr={elementName:"rtgl-tooltip",viewDataSchema:{type:"object"},attrsSchema:{type:"object",properties:{open:{type:"string"},x:{type:"string"},y:{type:"string"},placement:{type:"string"},content:{type:"string"}}},refs:{popover:null},template:{type:9,items:[{type:8,properties:[{key:"rtgl-popover#popover ?open=${open} x=${x} y=${y} placement=${placement} no-overlay",value:{type:9,items:[{type:8,properties:[{key:"rtgl-view slot=content bgc=background bc=border br=md p=sm ah=c av=c",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text ta=c s=sm c=foreground",value:{type:1,path:"content"}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-popover#popover ?open=",{type:1,path:"open"}," x=",{type:1,path:"x"}," y=",{type:1,path:"y"}," placement=",{type:1,path:"placement"}," no-overlay"]}}],fast:!0}],fast:!0}};var Dt={};P(Dt,{handleAfterMount:()=>jo,handleOnUpdate:()=>Do});var jo=async e=>{let{props:t,store:r,render:s,getRefIds:n}=e,{waveformData:i}=t;r.setWaveformData(i),s();let a=n().canvas?.elm;a&&qr(i,a)},Do=async(e,t)=>{let{store:r,render:s,getRefIds:n,props:i}=t,{waveformData:a}=i;if(!a){console.log("waveform handleOnUpdate: no waveformData provided");return}r.setWaveformData(a),s();let o=n().canvas?.elm;o&&qr(a,o)};async function qr(e,t){let r=t.getContext("2d"),s=t.getBoundingClientRect(),n=s.width,i=s.height;t.width=n,t.height=i;let a=t.width,o=t.height;if(r.clearRect(0,0,a,o),r.fillStyle="#1a1a1a",r.fillRect(0,0,a,o),!e||!e.data)return;let l=e.data,p=o/2,u=r.createLinearGradient(0,0,0,o);u.addColorStop(0,"#404040"),u.addColorStop(.5,"#A1A1A1"),u.addColorStop(1,"#404040");let c=Math.max(1,a/l.length),h=.2;for(let y=0;y<l.length;y++){let f=l[y]*(o*.85),m=y*c,v=p-f/2;r.fillStyle=u,r.fillRect(m,v,Math.max(1,c*(1-h)),f)}r.strokeStyle="rgba(255, 255, 255, 0.1)",r.lineWidth=1,r.beginPath(),r.moveTo(0,p),r.lineTo(a,p),r.stroke(),r.shadowBlur=10,r.shadowColor="#2196F3"}var Bt={};P(Bt,{INITIAL_STATE:()=>Bo,setWaveformData:()=>Wo,toViewData:()=>Mo});var Bo=Object.freeze({waveformData:null}),Wo=(e,t)=>{e.waveformData=t},Mo=({state:e,attrs:t,props:r})=>({isLoading:r.isLoading,w:t.w||"250",h:t.h||"150",cur:t.cur,waveformData:r.waveformData});var Yr={elementName:"rtgl-waveform",attrsSchema:{type:"object",properties:{w:{type:"string",description:"Width of the waveform visualizer",default:"250"},h:{type:"string",description:"Height of the waveform visualizer",default:"150"},cur:{type:"string",description:"cursor"}}},propsSchema:{type:"object",properties:{waveformData:{type:"object",description:"File ID of the waveform data in object storage"},isLoading:{type:"boolean",description:"Whether the waveform data is currently being loaded"}}},refs:{canvas:{selector:"canvas"}},template:{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f h=f pos=rel w=${w} h=${h} cur=${cur}",value:{type:9,items:[{type:8,properties:[{key:"$if isLoading",value:{type:6,conditions:[{type:1,path:"isLoading"},null],bodies:[{type:9,items:[{type:8,properties:[{key:"rtgl-view w=f h=f av=c ah=c",value:{type:9,items:[{type:8,properties:[{key:"rtgl-text c=mu-fg",value:{type:0,value:"..."}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0},{type:9,items:[{type:8,properties:[{key:'canvas#canvas style="width:100%; height:100%;"',value:{type:0,value:null}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view w=f h=f pos=rel w=",{type:1,path:"w"}," h=",{type:1,path:"h"}," cur=",{type:1,path:"cur"}]}}],fast:!1}],fast:!1}};var ts=Symbol.for("immer-nothing"),Gr=Symbol.for("immer-draftable"),q=Symbol.for("immer-state");function ee(e,...t){throw new Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var ve=Object.getPrototypeOf;function be(e){return!!e&&!!e[q]}function ce(e){return e?rs(e)||Array.isArray(e)||!!e[Gr]||!!e.constructor?.[Gr]||Be(e)||We(e):!1}var zo=Object.prototype.constructor.toString();function rs(e){if(!e||typeof e!="object")return!1;let t=ve(e);if(t===null)return!0;let r=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return r===Object?!0:typeof r=="function"&&Function.toString.call(r)===zo}function Re(e,t){De(e)===0?Reflect.ownKeys(e).forEach(r=>{t(r,e[r],e)}):e.forEach((r,s)=>t(s,r,e))}function De(e){let t=e[q];return t?t.type_:Array.isArray(e)?1:Be(e)?2:We(e)?3:0}function zt(e,t){return De(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function ss(e,t,r){let s=De(e);s===2?e.set(t,r):s===3?e.add(r):e[t]=r}function Ko(e,t){return e===t?e!==0||1/e===1/t:e!==e&&t!==t}function Be(e){return e instanceof Map}function We(e){return e instanceof Set}function pe(e){return e.copy_||e.base_}function Kt(e,t){if(Be(e))return new Map(e);if(We(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);let r=rs(e);if(t===!0||t==="class_only"&&!r){let s=Object.getOwnPropertyDescriptors(e);delete s[q];let n=Reflect.ownKeys(s);for(let i=0;i<n.length;i++){let a=n[i],o=s[a];o.writable===!1&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(s[a]={configurable:!0,writable:!0,enumerable:o.enumerable,value:e[a]})}return Object.create(ve(e),s)}else{let s=ve(e);if(s!==null&&r)return{...e};let n=Object.create(s);return Object.assign(n,e)}}function qt(e,t=!1){return Me(e)||be(e)||!ce(e)||(De(e)>1&&(e.set=e.add=e.clear=e.delete=Fo),Object.freeze(e),t&&Object.entries(e).forEach(([r,s])=>qt(s,!0))),e}function Fo(){ee(2)}function Me(e){return Object.isFrozen(e)}var Uo={};function ue(e){let t=Uo[e];return t||ee(0,e),t}var $e;function is(){return $e}function Ho(e,t){return{drafts_:[],parent_:e,immer_:t,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function Xr(e,t){t&&(ue("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function Ft(e){Ut(e),e.drafts_.forEach(Jo),e.drafts_=null}function Ut(e){e===$e&&($e=e.parent_)}function Qr(e){return $e=Ho($e,e)}function Jo(e){let t=e[q];t.type_===0||t.type_===1?t.revoke_():t.revoked_=!0}function Zr(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];return e!==void 0&&e!==r?(r[q].modified_&&(Ft(t),ee(4)),ce(e)&&(e=Pe(t,e),t.parent_||je(t,e)),t.patches_&&ue("Patches").generateReplacementPatches_(r[q].base_,e,t.patches_,t.inversePatches_)):e=Pe(t,r,[]),Ft(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==ts?e:void 0}function Pe(e,t,r){if(Me(t))return t;let s=t[q];if(!s)return Re(t,(n,i)=>es(e,s,t,n,i,r)),t;if(s.scope_!==e)return t;if(!s.modified_)return je(e,s.base_,!0),s.base_;if(!s.finalized_){s.finalized_=!0,s.scope_.unfinalizedDrafts_--;let n=s.copy_,i=n,a=!1;s.type_===3&&(i=new Set(n),n.clear(),a=!0),Re(i,(o,l)=>es(e,s,n,o,l,r,a)),je(e,n,!1),r&&e.patches_&&ue("Patches").generatePatches_(s,r,e.patches_,e.inversePatches_)}return s.copy_}function es(e,t,r,s,n,i,a){if(be(n)){let o=i&&t&&t.type_!==3&&!zt(t.assigned_,s)?i.concat(s):void 0,l=Pe(e,n,o);if(ss(r,s,l),be(l))e.canAutoFreeze_=!1;else return}else a&&r.add(n);if(ce(n)&&!Me(n)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;Pe(e,n),(!t||!t.scope_.parent_)&&typeof s!="symbol"&&Object.prototype.propertyIsEnumerable.call(r,s)&&je(e,n)}}function je(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&qt(t,r)}function qo(e,t){let r=Array.isArray(e),s={type_:r?1:0,scope_:t?t.scope_:is(),modified_:!1,finalized_:!1,assigned_:{},parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1},n=s,i=Yt;r&&(n=[s],i=Ce);let{revoke:a,proxy:o}=Proxy.revocable(n,i);return s.draft_=o,s.revoke_=a,o}var Yt={get(e,t){if(t===q)return e;let r=pe(e);if(!zt(r,t))return Yo(e,r,t);let s=r[t];return e.finalized_||!ce(s)?s:s===Wt(e.base_,t)?(Mt(e),e.copy_[t]=Jt(s,e)):s},has(e,t){return t in pe(e)},ownKeys(e){return Reflect.ownKeys(pe(e))},set(e,t,r){let s=ns(pe(e),t);if(s?.set)return s.set.call(e.draft_,r),!0;if(!e.modified_){let n=Wt(pe(e),t),i=n?.[q];if(i&&i.base_===r)return e.copy_[t]=r,e.assigned_[t]=!1,!0;if(Ko(r,n)&&(r!==void 0||zt(e.base_,t)))return!0;Mt(e),Ht(e)}return e.copy_[t]===r&&(r!==void 0||t in e.copy_)||Number.isNaN(r)&&Number.isNaN(e.copy_[t])||(e.copy_[t]=r,e.assigned_[t]=!0),!0},deleteProperty(e,t){return Wt(e.base_,t)!==void 0||t in e.base_?(e.assigned_[t]=!1,Mt(e),Ht(e)):delete e.assigned_[t],e.copy_&&delete e.copy_[t],!0},getOwnPropertyDescriptor(e,t){let r=pe(e),s=Reflect.getOwnPropertyDescriptor(r,t);return s&&{writable:!0,configurable:e.type_!==1||t!=="length",enumerable:s.enumerable,value:r[t]}},defineProperty(){ee(11)},getPrototypeOf(e){return ve(e.base_)},setPrototypeOf(){ee(12)}},Ce={};Re(Yt,(e,t)=>{Ce[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}});Ce.deleteProperty=function(e,t){return Ce.set.call(this,e,t,void 0)};Ce.set=function(e,t,r){return Yt.set.call(this,e[0],t,r,e[0])};function Wt(e,t){let r=e[q];return(r?pe(r):e)[t]}function Yo(e,t,r){let s=ns(t,r);return s?"value"in s?s.value:s.get?.call(e.draft_):void 0}function ns(e,t){if(!(t in e))return;let r=ve(e);for(;r;){let s=Object.getOwnPropertyDescriptor(r,t);if(s)return s;r=ve(r)}}function Ht(e){e.modified_||(e.modified_=!0,e.parent_&&Ht(e.parent_))}function Mt(e){e.copy_||(e.copy_=Kt(e.base_,e.scope_.immer_.useStrictShallowCopy_))}var Go=class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(t,r,s)=>{if(typeof t=="function"&&typeof r!="function"){let i=r;r=t;let a=this;return function(l=i,...p){return a.produce(l,u=>r.call(this,u,...p))}}typeof r!="function"&&ee(6),s!==void 0&&typeof s!="function"&&ee(7);let n;if(ce(t)){let i=Qr(this),a=Jt(t,void 0),o=!0;try{n=r(a),o=!1}finally{o?Ft(i):Ut(i)}return Xr(i,s),Zr(n,i)}else if(!t||typeof t!="object"){if(n=r(t),n===void 0&&(n=t),n===ts&&(n=void 0),this.autoFreeze_&&qt(n,!0),s){let i=[],a=[];ue("Patches").generateReplacementPatches_(t,n,i,a),s(i,a)}return n}else ee(1,t)},this.produceWithPatches=(t,r)=>{if(typeof t=="function")return(a,...o)=>this.produceWithPatches(a,l=>t(l,...o));let s,n;return[this.produce(t,r,(a,o)=>{s=a,n=o}),s,n]},typeof e?.autoFreeze=="boolean"&&this.setAutoFreeze(e.autoFreeze),typeof e?.useStrictShallowCopy=="boolean"&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){ce(e)||ee(8),be(e)&&(e=Xo(e));let t=Qr(this),r=Jt(e,void 0);return r[q].isManual_=!0,Ut(t),r}finishDraft(e,t){let r=e&&e[q];(!r||!r.isManual_)&&ee(9);let{scope_:s}=r;return Xr(s,t),Zr(void 0,s)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,t){let r;for(r=t.length-1;r>=0;r--){let n=t[r];if(n.path.length===0&&n.op==="replace"){e=n.value;break}}r>-1&&(t=t.slice(r+1));let s=ue("Patches").applyPatches_;return be(e)?s(e,t):this.produce(e,n=>s(n,t))}};function Jt(e,t){let r=Be(e)?ue("MapSet").proxyMap_(e,t):We(e)?ue("MapSet").proxySet_(e,t):qo(e,t);return(t?t.scope_:is()).drafts_.push(r),r}function Xo(e){return be(e)||ee(10,e),os(e)}function os(e){if(!ce(e)||Me(e))return e;let t=e[q],r;if(t){if(!t.modified_)return t.base_;t.finalized_=!0,r=Kt(e,t.scope_.immer_.useStrictShallowCopy_)}else r=Kt(e,!0);return Re(r,(s,n)=>{ss(r,s,os(n))}),t&&(t.finalized_=!1),r}var Y=new Go,as=Y.produce,nc=Y.produceWithPatches.bind(Y),oc=Y.setAutoFreeze.bind(Y),ac=Y.setUseStrictShallowCopy.bind(Y),lc=Y.applyPatches.bind(Y),pc=Y.createDraft.bind(Y),cc=Y.finishDraft.bind(Y);var x={LITERAL:0,VARIABLE:1,INTERPOLATION:2,FUNCTION:3,BINARY:4,UNARY:5,CONDITIONAL:6,LOOP:7,OBJECT:8,ARRAY:9},G={EQ:0,NEQ:1,GT:2,LT:3,GTE:4,LTE:5,AND:6,OR:7,IN:8},ze={NOT:0};var we=class extends Error{constructor(t){super(`Render Error: ${t}`),this.name="JemplRenderError"}};var ls=(e,t)=>{if(t===null)return new we(`Cannot iterate over null value at '$for ${e}'`);if(t===void 0)return new we(`Cannot iterate over undefined value at '$for ${e}'`);let r=typeof t;return new we(`Cannot iterate over non-array value (got: ${r}) at '$for ${e}'`)},ps=(e,t)=>{let r=t&&Object.keys(t).length>0?Object.keys(t).join(", "):"no custom functions provided";return new we(`Unknown function '${e}' (${r})`)};var Qo=(e,t,r={})=>T(e,r,t,{}),T=(e,t,r,s)=>{if(e.var&&!e.type)return F(e.var,r,s);if(e.type===x.LITERAL)return e.value;if(e.type===x.VARIABLE)return F(e.path,r,s);if(e.type===x.INTERPOLATION)return Zo(e.parts,t,r,s);switch(e.type){case x.FUNCTION:return cs(e,t,r,s);case x.BINARY:return us(e,t,r,s);case x.UNARY:return ds(e,t,r,s);case x.CONDITIONAL:return ta(e,t,r,s);case x.LOOP:return oa(e,t,r,s);case x.OBJECT:return la(e,t,r,s);case x.ARRAY:return pa(e,t,r,s);default:throw new Error(`Unknown node type: ${e.type}`)}},ae=new Map,F=(e,t,r)=>{if(!e)return;if(e in r)return r[e];let s=ae.get(e);s||(s=e.split("."),ae.set(e,s));let n=t;for(let i=0;i<s.length;i++){let a=s[i];if(a in r){n=r[a];continue}if(n==null)return;n=n[a]}return n},Zo=(e,t,r,s)=>{let n=[];for(let i of e)if(typeof i=="string")n.push(i);else{let a=T(i,t,r,s);n.push(a!=null?String(a):"")}return n.join("")},cs=(e,t,r,s)=>{let n=t[e.name];if(!n)throw ps(e.name,t);let i=e.args.map(a=>T(a,t,r,s));return n(...i)},Ke=(e,t,r,s)=>{if(e.var&&!e.type)return F(e.var,r,s);switch(e.type){case x.VARIABLE:return F(e.path,r,s);case x.LITERAL:return e.value;case x.BINARY:return us(e,t,r,s);case x.UNARY:return ds(e,t,r,s);case x.FUNCTION:return cs(e,t,r,s);default:return T(e,t,r,s)}},us=(e,t,r,s)=>{if(e.op===G.AND||e.op===G.OR){let a=Ke(e.left,t,r,s),o=Ke(e.right,t,r,s);switch(e.op){case G.AND:return a&&o;case G.OR:return a||o}}let n=T(e.left,t,r,s),i=T(e.right,t,r,s);switch(e.op){case G.EQ:return n==i;case G.NEQ:return n!=i;case G.GT:return n>i;case G.LT:return n<i;case G.GTE:return n>=i;case G.LTE:return n<=i;case G.IN:return Array.isArray(i)?i.includes(n):!1;default:throw new Error(`Unknown binary operator: ${e.op}`)}},ds=(e,t,r,s)=>{let n=e.op===ze.NOT?Ke(e.operand,t,r,s):T(e.operand,t,r,s);switch(e.op){case ze.NOT:return!n;default:throw new Error(`Unknown unary operator: ${e.op}`)}},ea=(e,t,r,s)=>{if(e.conditions.length===2&&e.conditions[1]===null){let n=e.conditions[0];if(n.type===x.VARIABLE)if(F(n.path,r,s)){let a=e.bodies[0];if(a.type===x.OBJECT&&a.properties.length<=5){let o={};for(let l of a.properties){let p=l.parsedKey?T(l.parsedKey,t,r,s):l.key,u=l.value;if(u.type===x.LITERAL)o[p]=u.value;else if(u.type===x.VARIABLE)o[p]=F(u.path,r,s);else if(u.type===x.INTERPOLATION){let c=[];for(let h of u.parts)if(typeof h=="string")c.push(h);else if(h.type===x.VARIABLE){let y=F(h.path,r,s);c.push(y!=null?String(y):"")}else{let y=T(h,t,r,s);c.push(y!=null?String(y):"")}o[p]=c.join("")}else o[p]=T(u,t,r,s)}return o}}else{let a=e.bodies[1];if(a.type===x.OBJECT&&a.properties.length<=5){let o={};for(let l of a.properties){let p=l.parsedKey?T(l.parsedKey,t,r,s):l.key,u=l.value;if(u.type===x.LITERAL)o[p]=u.value;else if(u.type===x.VARIABLE)o[p]=F(u.path,r,s);else if(u.type===x.INTERPOLATION){let c=[];for(let h of u.parts)if(typeof h=="string")c.push(h);else if(h.type===x.VARIABLE){let y=F(h.path,r,s);c.push(y!=null?String(y):"")}else{let y=T(h,t,r,s);c.push(y!=null?String(y):"")}o[p]=c.join("")}else o[p]=T(u,t,r,s)}return o}}}return null},ta=(e,t,r,s)=>{let n=ea(e,t,r,s);if(n!==null)return n;for(let i=0;i<e.conditions.length;i++){let a=e.conditions[i];if(a===null||Ke(a,t,r,s))return T(e.bodies[i],t,r,s)}return hs},ra=(e,t)=>{let r=e.body,s=e.itemVar;if(r.type===x.CONDITIONAL&&r.conditions.length===1&&r.conditions[0].type===x.VARIABLE){let n=r.conditions[0].path,i=r.bodies[0];if(n.startsWith(s+".")){let a=n.substring(s.length+1);if(i.type===x.OBJECT&&i.properties.length<=5){for(let l of i.properties)if(l.parsedKey)return null;let o=[];for(let l=0;l<t.length;l++){let p=t[l];if(p[a]){let u={};for(let c of i.properties){let h=c.key,y=c.value;if(y.type===x.LITERAL)u[h]=y.value;else if(y.type===x.VARIABLE){let d=y.path;if(d===s)u[h]=p;else if(d.startsWith(s+".")){let f=d.substring(s.length+1);u[h]=p[f]}else return null}else if(y.type===x.INTERPOLATION){let d=[],f=!0;for(let m of y.parts)if(typeof m=="string")d.push(m);else if(m.type===x.VARIABLE){let v=m.path;if(v===s)d.push(p!=null?String(p):"");else if(v.startsWith(s+".")){let b=v.substring(s.length+1),w=p[b];d.push(w!=null?String(w):"")}else{f=!1;break}}else{f=!1;break}if(!f)return null;u[h]=d.join("")}else return null}o.push(u)}}return o}}}return null},sa=(e,t)=>{let r=e.body,s=e.itemVar,n=ra(e,t);if(n!==null)return n;if(r.type===x.OBJECT&&r.properties.length<=5){for(let o of r.properties)if(o.parsedKey)return null;let i=[],a=!0;for(let o of r.properties){let l=o.key,p=o.value;if(p.type===x.LITERAL)i.push({key:l,type:"literal",value:p.value});else if(p.type===x.VARIABLE){let u=p.path;if(u===s)i.push({key:l,type:"item"});else if(u.startsWith(s+".")){let c=u.substring(s.length+1);if(!c.includes("."))i.push({key:l,type:"prop",prop:c});else{a=!1;break}}else{a=!1;break}}else if(p.type===x.INTERPOLATION&&p.parts.length===1){let u=p.parts[0];if(u.type===x.VARIABLE){let c=u.path;if(c===s)i.push({key:l,type:"item_string"});else if(c.startsWith(s+".")){let h=c.substring(s.length+1);if(!h.includes("."))i.push({key:l,type:"prop_string",prop:h});else{a=!1;break}}else{a=!1;break}}else{a=!1;break}}else{a=!1;break}}if(a){let o=new Array(t.length);if(i.length===3&&i[0].type==="prop"&&i[0].key==="id"&&i[1].type==="prop_string"&&i[1].key==="title"&&i[2].type==="prop"&&i[2].key==="completed")for(let l=0;l<t.length;l++){let p=t[l];o[l]={id:p.id,title:p.title!=null?String(p.title):"",completed:p.completed}}else for(let l=0;l<t.length;l++){let p=t[l],u={};for(let c of i)if(c.type==="literal")u[c.key]=c.value;else if(c.type==="item")u[c.key]=p;else if(c.type==="prop")u[c.key]=p[c.prop];else if(c.type==="item_string")u[c.key]=p!=null?String(p):"";else if(c.type==="prop_string"){let h=p[c.prop];u[c.key]=h!=null?String(h):""}o[l]=u}return o}}return null},ia=(e,t,r,s,n)=>{let i=[],a=e.body;if(a.type===x.OBJECT&&a.fast!==!1){let o=e.itemVar,l=e.indexVar;for(let p=0;p<n.length;p++){let u=n[p],c={},h={...s,[o]:u,...l&&{[l]:p}};for(let y of a.properties){let d=y.parsedKey?T(y.parsedKey,t,r,h):y.key,f=y.value;if(f.type===x.LITERAL)c[d]=f.value;else if(f.type===x.VARIABLE){let m=f.path;if(m===o)c[d]=u;else if(m===l)c[d]=p;else if(m.startsWith(o+".")){let v=m.substring(o.length+1);if(!v.includes("."))c[d]=u[v];else{let b=ae.get(v)||(ae.set(v,v.split(".")),ae.get(v)),w=u;for(let E of b){if(w==null){w=void 0;break}w=w[E]}c[d]=w}}else c[d]=F(m,r,{...s,[o]:u,...l&&{[l]:p}})}else if(f.type===x.INTERPOLATION){let m=[];for(let v of f.parts)if(typeof v=="string")m.push(v);else if(v.type===x.VARIABLE){let b=v.path,w;if(b===o)w=u;else if(b===l)w=p;else if(b.startsWith(o+".")){let E=b.substring(o.length+1);if(!E.includes("."))w=u[E];else{let _=ae.get(E)||(ae.set(E,E.split(".")),ae.get(E)),k=u;for(let C of _){if(k==null){k=void 0;break}k=k[C]}w=k}}else w=F(b,r,{...s,[o]:u,...l&&{[l]:p}});m.push(w!=null?String(w):"")}else{let b={...s,[o]:u,...l&&{[l]:p}},w=T(v,t,r,b);m.push(w!=null?String(w):"")}c[d]=m.join("")}else{let m={...s,[o]:u,...l&&{[l]:p}};c[d]=T(f,t,r,m)}}i.push(c)}return i}return null},na=(e,t,r)=>{let s=e.body;if(s.type===x.OBJECT&&s.properties.length===1&&s.properties[0].key==="$if item.visible"){let i=s.properties[0].value;if(i.type===x.CONDITIONAL&&i.conditions.length===1&&i.conditions[0].type===x.VARIABLE&&i.conditions[0].path==="item.visible"){let a=i.bodies[0];if(a.type===x.OBJECT&&a.properties.length===2){let o=a.properties[0],l=a.properties[1];if(o.key==="id"&&o.value.type===x.VARIABLE&&o.value.path==="item.id"&&l.key==="$if item.highlighted"&&l.value.type===x.CONDITIONAL){let p=[];for(let u=0;u<t.length;u++){let c=t[u];if(c.visible){let h={id:c.id};c.highlighted?(h.highlight=!0,h.message=`This item is highlighted: ${c.name}`):(h.highlight=!1,h.message=c.name),p.push(h)}}return p}}}}return null},oa=(e,t,r,s)=>{let n=T(e.iterable,t,r,s);if(!Array.isArray(n)){let o=`${e.itemVar}${e.indexVar?`, ${e.indexVar}`:""} in ${e.iterable.path}`;throw ls(o,n)}if(!e.indexVar){let o=na(e,n,e.itemVar);if(o!==null)return o}if(!e.indexVar){let o=sa(e,n);if(o!==null)return o}let i=ia(e,t,r,s,n);if(i!==null)return i;let a=[];for(let o=0;o<n.length;o++){let l=e.indexVar?{...s,[e.itemVar]:n[o],[e.indexVar]:o}:{...s,[e.itemVar]:n[o]},p=T(e.body,t,r,l);Array.isArray(p)&&p.length===1?a.push(p[0]):a.push(p)}return a},aa=(e,t,r,s)=>{if(e.properties.length===1){let n=e.properties[0],i=n.parsedKey?T(n.parsedKey,t,r,s):n.key,a=n.value;if(a.type===x.OBJECT&&a.properties.length<=10){let o={},l={},p=!0;for(let u of a.properties){let c=u.parsedKey?T(u.parsedKey,t,r,s):u.key,h=u.value;if(h.type===x.LITERAL)l[c]=h.value;else if(h.type===x.VARIABLE)l[c]=F(h.path,r,s);else if(h.type===x.INTERPOLATION){let y=[];for(let d of h.parts)if(typeof d=="string")y.push(d);else if(d.type===x.VARIABLE){let f=F(d.path,r,s);y.push(f!=null?String(f):"")}else{p=!1;break}if(!p)break;l[c]=y.join("")}else if(h.type===x.OBJECT&&h.properties.length<=5){let y={};for(let d of h.properties){let f=d.key,m=d.value;if(m.type===x.LITERAL)y[f]=m.value;else if(m.type===x.VARIABLE)y[f]=F(m.path,r,s);else if(m.type===x.INTERPOLATION){let v=[];for(let b of m.parts)if(typeof b=="string")v.push(b);else if(b.type===x.VARIABLE){let w=F(b.path,r,s);v.push(w!=null?String(w):"")}else{p=!1;break}if(!p)break;y[f]=v.join("")}else{p=!1;break}}if(!p)break;l[c]=y}else{p=!1;break}}if(p)return o[i]=l,o}}return null},la=(e,t,r,s)=>{let n=aa(e,t,r,s);if(n!==null)return n;if(e.fast){let l={};for(let p of e.properties){let u=p.parsedKey?T(p.parsedKey,t,r,s):p.key,c=p.value;if(c.type===x.LITERAL)l[u]=c.value;else if(c.type===x.VARIABLE)l[u]=F(c.path,r,s);else if(c.type===x.INTERPOLATION){let h=[];for(let y of c.parts)if(typeof y=="string")h.push(y);else if(y.type===x.VARIABLE){let d=F(y.path,r,s);h.push(d!=null?String(d):"")}else{let d=T(y,t,r,s);h.push(d!=null?String(d):"")}l[u]=h.join("")}else l[u]=T(c,t,r,s)}return l}let i={},a=null,o=!1;for(let l of e.properties)if(!l.key.startsWith("$if ")&&!l.key.match(/^\$if\s+\w+.*:?$/)&&!l.key.startsWith("$elif")&&!l.key.startsWith("$else")&&!l.key.startsWith("$for ")){o=!0;break}for(let l of e.properties)if(l.key.startsWith("$if ")||l.key.match(/^\$if\s+\w+.*:?$/)){let p=T(l.value,t,r,s);if(!o&&p!==null&&p!==void 0)return Array.isArray(p)&&p.length===1?p[0]:p;typeof p=="object"&&p!==null&&!Array.isArray(p)&&Object.assign(i,p)}else if(!l.key.startsWith("$for ")){let p=l.value;if(p&&p.type===x.OBJECT&&p.properties){let u=p.properties.find(c=>c.key.startsWith("$for "));if(u){let c=T(u.value,t,r,s);c!==void 0&&(i[l.key]=c)}else{let c=T(l.value,t,r,s);c!==void 0&&(i[l.key]=c)}}else{let u=l.parsedKey?T(l.parsedKey,t,r,s):l.key,c=T(l.value,t,r,s);c!==void 0&&(i[u]=c)}}return i},hs={},pa=(e,t,r,s)=>{let n=[];for(let i of e.items)if(i.type===x.LOOP){let a=T(i,t,r,s);n.push(a)}else{let a=T(i,t,r,s);a!==hs&&n.push(a)}return n},Fe=Qo;var Ue=e=>Array.isArray(e)?e.reduce((t,r)=>{if(Array.isArray(r))t.push(...Ue(r));else{if(r&&typeof r=="object"){let s=Object.entries(r);if(s.length>0){let[n,i]=s[0];Array.isArray(i)&&(r={[n]:Ue(i)})}}t.push(r)}return t},[]):e;var fs=(e,t)=>{if(!t)return e;let r=[],s="",n=!1,i=null;for(let a=0;a<t.length;a++){let o=t[a];if(!n&&o===".")s&&(r.push(s),s="");else if(!n&&o==="[")s&&(r.push(s),s=""),n=!0;else if(n&&o==="]"){if(s){if(s.startsWith('"')&&s.endsWith('"')||s.startsWith("'")&&s.endsWith("'"))r.push(s.slice(1,-1));else{let l=Number(s);r.push(isNaN(l)?s:l)}s=""}n=!1,i=null}else n&&(o==='"'||o==="'")&&(i?o===i&&(i=null):i=o),s+=o}return s&&r.push(s),r.reduce((a,o)=>a&&a[o],e)},ys=({h:e,template:t,viewData:r,refs:s,handlers:n})=>{let i=Fe(t,r,{}),a=Ue(i),o=ha({h:e,items:a,refs:s,handlers:n,viewData:r});return e("div",{style:{display:"contents"}},o)},ha=({h:e,items:t,refs:r={},handlers:s={},viewData:n={}})=>{if(!Array.isArray(t))return console.error("Input to createVirtualDom must be an array."),[e("div",{},[])];function i(a,o=""){return a.map((l,p)=>{if(typeof l=="string"||typeof l=="number")return String(l);if(typeof l!="object"||l===null)return console.warn("Skipping invalid item in DOM structure:",l),null;let u=Object.entries(l);if(u.length===0)return null;let[c,h]=u[0];if(!isNaN(Number(c)))return Array.isArray(h)?i(h,`${o}.${c}`):typeof h=="object"&&h!==null&&Object.entries(h).length>0?i([h],`${o}.${c}`):String(h);u.length>1&&console.warn("Item has multiple keys, processing only the first:",c);let y,d,f=c.indexOf(" ");f===-1?(y=c,d=""):(y=c.substring(0,f),d=c.substring(f+1).trim());let m=y.split(/[.#]/)[0],v=m.includes("-"),b={},w={};if(d){let $=/(\S+?)=(?:\"([^\"]*)\"|\'([^\']*)\'|([^\s]+))/g,A,R=new Set;for(;(A=$.exec(d))!==null;)if(R.add(A[1]),A[1].startsWith(".")){let X=A[1].substring(1),ke=A[4];w[X]=fs(n,ke)}else if(A[1].startsWith("?")){let X=A[1].substring(1),ke=A[2]||A[3]||A[4],Oe;ke==="true"?Oe=!0:ke==="false"?Oe=!1:Oe=fs(n,ke),Oe&&(b[X]="")}else b[A[1]]=A[2]||A[3]||A[4];let W=d,K=[],te,qe=/(\S+?)=(?:\"([^\"]*)\"|\'([^\']*)\'|([^\s]+))/g;for(;(te=qe.exec(d))!==null;)K.push(te[0]);K.forEach(X=>{W=W.replace(X," ")});let Ye=/\b(\S+?)(?=\s|$)/g,M;for(;(M=Ye.exec(W))!==null;){let X=M[1];!R.has(X)&&!X.startsWith(".")&&!X.includes("=")&&(b[X]="")}}let E=y.match(/#([^.#\s]+)/);E&&!Object.prototype.hasOwnProperty.call(b,"id")&&(b.id=E[1]);let _=null;b.id?_=b.id:v&&(_=m);let k=Object.create(null),C=null;if(v)C=m;else{let $=y.match(/\.([^.#]+)/g);$&&$.forEach(R=>{let W=R.substring(1);k[W]=!0});let A=y.match(/#([^.#\s]+)/);A&&(C=A[1])}let S;typeof h=="string"||typeof h=="number"?S=String(h):Array.isArray(h)?S=i(h,`${o}.${c}`):S=[],C&&!v&&(b.id=C);let L=Object.create(null);if(_&&r){let $=[];if(Object.keys(r).forEach(A=>{if(A.includes("*")){let R="^"+A.replace(/[.*+?^${}()|[\\\]\\]/g,"\\$&").replace(/\\\*/g,".*")+"$";try{new RegExp(R).test(_)&&$.push(A)}catch(W){console.warn(`[Parser] Invalid regex pattern created from refKey '${A}': ${R}`,W)}}else _===A&&$.push(A)}),$.length>0){$.sort((R,W)=>{let K=!R.includes("*"),te=!W.includes("*");return K&&!te?-1:!K&&te?1:W.length-R.length});let A=$[0];if(r[A]&&r[A].eventListeners){let R=r[A].eventListeners;Object.entries(R).forEach(([W,K])=>{K.handler&&s[K.handler]?L[W]=te=>{s[K.handler](te)}:K.handler&&console.warn(`[Parser] Handler '${K.handler}' for refKey '${A}' (matching elementId '${_}') is referenced but not found in available handlers.`)})}}}let V={};if(_)V.key=_;else if(y){let $=o?`${o}.${p}`:String(p);if(V.key=`${y}-${$}`,Object.keys(w).length>0){let A=JSON.stringify(w).substring(0,50);V.key+=`-${A}`}}Object.keys(b).length>0&&(V.attrs=b),Object.keys(k).length>0&&(V.class=k),Object.keys(L).length>0&&(V.on=L),Object.keys(w).length>0&&(V.props=w),v&&(V.hook={update:($,A)=>{let R=$.data?.props||{},W=A.data?.props||{},K=$.data?.attrs||{},te=A.data?.attrs||{},qe=JSON.stringify(R)!==JSON.stringify(W),Ye=JSON.stringify(K)!==JSON.stringify(te);if(qe||Ye){let M=A.elm;M&&M.render&&typeof M.render=="function"&&(M.setAttribute("isDirty","true"),requestAnimationFrame(()=>{if(M.render(),M.removeAttribute("isDirty"),M.handlers&&M.handlers.handleOnUpdate){let X={...M.deps||{},store:M.store,render:M.render.bind(M),handlers:M.handlers,dispatchEvent:M.dispatchEvent.bind(M),refIds:M.refIds||{},getRefIds:()=>M.refIds||{}};M.handlers.handleOnUpdate({oldProps:R,newProps:W,oldAttrs:K,newAttrs:te},X)}}))}}});try{return e(m,V,S)}catch($){return console.error("Error creating virtual node:",$,{tagName:m,snabbdomData:V,childrenOrText:S}),e("div",{},["Error creating element"])}}).filter(Boolean)}return i(t)};var fa=(e,t)=>{if(!t||typeof t!="object")return"";let r="",s=i=>Object.entries(i).map(([a,o])=>` ${a}: ${o};`).join(`
927
+ `),n=(i,a)=>{if(typeof a!="object"||a===null)return"";if(i.startsWith("@")){let o=Object.entries(a).map(([l,p])=>{let u=s(p);return` ${l} {
808
928
  ${u.split(`
809
- `).map(y=>y?` ${y}`:"").join(`
929
+ `).map(c=>c?` ${c}`:"").join(`
810
930
  `)}
811
931
  }`}).join(`
812
- `);return`${n} {
932
+ `);return`${i} {
813
933
  ${o}
814
- }`}else{let o=s(a);return`${n} {
934
+ }`}else{let o=s(a);return`${i} {
815
935
  ${o}
816
- }`}};return Object.entries(t).forEach(([n,a])=>{let o=i(n,a);o&&(r+=(r?`
936
+ }`}};return Object.entries(t).forEach(([i,a])=>{let o=n(i,a);o&&(r+=(r?`
817
937
 
818
- `:"")+o)}),r},ji=e=>{let t=e.map(r=>r.subscribe());return()=>{for(let r of t)r&&typeof r.unsubscribe=="function"&&r.unsubscribe()}};function Di(e){return new Proxy({},{get(t,r){if(typeof r=="string")return e.getAttribute(r)},set(){throw new Error("Cannot assign to read-only proxy")},defineProperty(){throw new Error("Cannot define properties on read-only proxy")},deleteProperty(){throw new Error("Cannot delete properties from read-only proxy")},has(t,r){return typeof r=="string"&&e.hasAttribute(r)},ownKeys(){return e.getAttributeNames()},getOwnPropertyDescriptor(t,r){if(typeof r=="string"&&e.hasAttribute(r))return{configurable:!0,enumerable:!0,get:()=>e.getAttribute(r)}}})}function Vi(e,t){let r=new Set(t);return new Proxy({},{get(s,i){if(typeof i=="string"&&r.has(i))return e[i]},set(){throw new Error("Cannot assign to read-only proxy")},defineProperty(){throw new Error("Cannot define properties on read-only proxy")},deleteProperty(){throw new Error("Cannot delete properties from read-only proxy")},has(s,i){return typeof i=="string"&&r.has(i)},ownKeys(){return[...r]},getOwnPropertyDescriptor(s,i){if(typeof i=="string"&&r.has(i))return{configurable:!0,enumerable:!0,get:()=>e[i]}}})}var ft=class extends HTMLElement{elementName;styles;h;store;props;propsSchema;template;handlers;transformedHandlers={};refs;refIds={};patch;_unmountCallback;_oldVNode;deps;cssText;static get observedAttributes(){return["key"]}get viewData(){return this.store.toViewData()}connectedCallback(){this.shadow=this.attachShadow({mode:"open"});let t=new CSSStyleSheet;t.replaceSync(`
938
+ `:"")+o)}),r},ya=e=>{let t=e.map(r=>r.subscribe());return()=>{for(let r of t)r&&typeof r.unsubscribe=="function"&&r.unsubscribe()}};function ma(e){return new Proxy({},{get(t,r){if(typeof r=="string"){let s=e.getAttribute(r);return s===""?!0:s}},set(){throw new Error("Cannot assign to read-only proxy")},defineProperty(){throw new Error("Cannot define properties on read-only proxy")},deleteProperty(){throw new Error("Cannot delete properties from read-only proxy")},has(t,r){return typeof r=="string"&&e.hasAttribute(r)},ownKeys(){return e.getAttributeNames()},getOwnPropertyDescriptor(t,r){if(typeof r=="string"&&e.hasAttribute(r))return{configurable:!0,enumerable:!0,get:()=>e.getAttribute(r)}}})}function ga(e,t){let r=new Set(t);return new Proxy({},{get(s,n){if(typeof n=="string"&&r.has(n))return e[n]},set(){throw new Error("Cannot assign to read-only proxy")},defineProperty(){throw new Error("Cannot define properties on read-only proxy")},deleteProperty(){throw new Error("Cannot delete properties from read-only proxy")},has(s,n){return typeof n=="string"&&r.has(n)},ownKeys(){return[...r]},getOwnPropertyDescriptor(s,n){if(typeof n=="string"&&r.has(n))return{configurable:!0,enumerable:!0,get:()=>e[n]}}})}var Gt=class extends HTMLElement{elementName;styles;h;store;props;propsSchema;template;handlers;transformedHandlers={};refs;refIds={};patch;_unmountCallback;_oldVNode;deps;cssText;static get observedAttributes(){return["key"]}get viewData(){return this.store.toViewData()}connectedCallback(){this.shadow=this.attachShadow({mode:"open"});let t=new CSSStyleSheet;t.replaceSync(`
819
939
  a, a:link, a:visited, a:hover, a:active {
820
940
  display: contents;
821
941
  color: inherit;
@@ -827,4 +947,4 @@ ${o}
827
947
  font: inherit;
828
948
  cursor: pointer;
829
949
  }
830
- `);let r=[t];if(this.cssText){let i=new CSSStyleSheet;i.replaceSync(this.cssText),r.push(i)}this.shadow.adoptedStyleSheets=r,this.renderTarget=document.createElement("div"),this.renderTarget.style.cssText="display: contents;",this.shadow.appendChild(this.renderTarget),this.transformedHandlers={},this.renderTarget.parentNode||this.appendChild(this.renderTarget),this.style.display="contents";let s={...this.deps,refIds:this.refIds,getRefIds:()=>this.refIds,dispatchEvent:this.dispatchEvent.bind(this)};Object.keys(this.handlers||{}).forEach(i=>{this.transformedHandlers[i]=n=>this.handlers[i](n,s)}),this.handlers?.subscriptions&&(this.unsubscribeAll=ji(this.handlers.subscriptions(s))),this.handlers?.handleOnMount&&(this._unmountCallback=this.handlers?.handleOnMount(s)),this.render()}disconnectedCallback(){this._unmountCallback&&this._unmountCallback(),this.unsubscribeAll&&this.unsubscribeAll()}attributeChangedCallback(t,r,s){r!==s&&this.render&&requestAnimationFrame(()=>{this.render()})}render=()=>{if(!this.patch){console.error("Patch function is not defined!");return}if(!this.template){console.error("Template is not defined!");return}try{let t={...this.deps,refIds:this.refIds,getRefIds:()=>this.refIds,dispatchEvent:this.dispatchEvent.bind(this),store:this.store,render:this.render.bind(this)},r=hr({h:this.h,template:this.template,viewData:this.viewData,refs:this.refs,handlers:this.transformedHandlers}),s={},i=n=>{n.data?.attrs&&n.data.attrs.id&&(s[n.data.attrs.id]=n),n.children&&n.children.forEach(i)};i(r),this.refIds=s,this._oldVNode?this._oldVNode=this.patch(this._oldVNode,r):this._oldVNode=this.patch(this.renderTarget,r)}catch(t){console.error("Error during patching:",t)}}},Ri=(e,t,r)=>{let{INITIAL_STATE:s,toViewData:i,...n}=e,a={},o={},l=structuredClone(s);return Object.entries(n).forEach(([h,u])=>{h.startsWith("select")?a[h]=(...y)=>u({state:l,props:t,attrs:r},...y):o[h]=y=>(l=ir(l,E=>u(E,y)),l)}),{toViewData:()=>i({state:l,props:t,attrs:r}),getState:()=>l,...o,...a}},Mi=({handlers:e,view:t,store:r,patch:s,h:i},n)=>{let{elementName:a,propsSchema:o,template:l,refs:h,styles:u}=t;if(!s)throw new Error("Patch is not defined");if(!i)throw new Error("h is not defined");if(!t)throw new Error("view is not defined");class y extends ft{static get observedAttributes(){return["key"]}constructor(){super();let T=Di(this);this.propsSchema=o,this.props=o?Vi(this,Object.keys(o.properties)):{},this.elementName=a,this.styles=u,this.store=Ri(r,this.props,T),this.template=l,this.handlers=e,this.refs=h,this.patch=s,this.deps={...n,store:this.store,render:this.render,handlers:e,attrs:T,props:this.props},this.h=i,this.cssText=Pi(a,u)}}return y},mt=Mi;function te(e,t,r,s,i){let n=t===void 0?void 0:t.key;return{sel:e,data:t,children:r,text:s,elm:i,key:n}}var le=Array.isArray;function pe(e){return typeof e=="string"||typeof e=="number"||e instanceof String||e instanceof Number}function zi(e,t){return document.createElement(e,t)}function Wi(e,t,r){return document.createElementNS(e,t,r)}function Fi(){return re(document.createDocumentFragment())}function Hi(e){return document.createTextNode(e)}function Bi(e){return document.createComment(e)}function Ki(e,t,r){if(G(e)){let s=e;for(;s&&G(s);)s=re(s).parent;e=s??e}G(t)&&(t=re(t,e)),r&&G(r)&&(r=re(r).firstChildNode),e.insertBefore(t,r)}function Ui(e,t){e.removeChild(t)}function qi(e,t){G(t)&&(t=re(t,e)),e.appendChild(t)}function ur(e){if(G(e)){for(;e&&G(e);)e=re(e).parent;return e??null}return e.parentNode}function Ji(e){var t;if(G(e)){let r=re(e),s=ur(r);if(s&&r.lastChildNode){let i=Array.from(s.childNodes),n=i.indexOf(r.lastChildNode);return(t=i[n+1])!==null&&t!==void 0?t:null}return null}return e.nextSibling}function Yi(e){return e.tagName}function Gi(e,t){e.textContent=t}function Xi(e){return e.textContent}function Qi(e){return e.nodeType===1}function Zi(e){return e.nodeType===3}function en(e){return e.nodeType===8}function G(e){return e.nodeType===11}function re(e,t){var r,s,i;let n=e;return(r=n.parent)!==null&&r!==void 0||(n.parent=t??null),(s=n.firstChildNode)!==null&&s!==void 0||(n.firstChildNode=e.firstChild),(i=n.lastChildNode)!==null&&i!==void 0||(n.lastChildNode=e.lastChild),n}var fr={createElement:zi,createElementNS:Wi,createTextNode:Hi,createDocumentFragment:Fi,createComment:Bi,insertBefore:Ki,removeChild:Ui,appendChild:qi,parentNode:ur,nextSibling:Ji,tagName:Yi,setTextContent:Gi,getTextContent:Xi,isElement:Qi,isText:Zi,isComment:en,isDocumentFragment:G};function Ce(e){return e===void 0}function W(e){return e!==void 0}var yt=te("",{},[],void 0,void 0);function ue(e,t){var r,s;let i=e.key===t.key,n=((r=e.data)===null||r===void 0?void 0:r.is)===((s=t.data)===null||s===void 0?void 0:s.is),a=e.sel===t.sel,o=!e.sel&&e.sel===t.sel?typeof e.text==typeof t.text:!0;return a&&i&&n&&o}function tn(){throw new Error("The document fragment is not supported on this platform.")}function rn(e,t){return e.isElement(t)}function sn(e,t){return e.isDocumentFragment(t)}function nn(e,t,r){var s;let i={};for(let n=t;n<=r;++n){let a=(s=e[n])===null||s===void 0?void 0:s.key;a!==void 0&&(i[a]=n)}return i}var an=["create","update","remove","destroy","pre","post"];function mr(e,t,r){let s={create:[],update:[],remove:[],destroy:[],pre:[],post:[]},i=t!==void 0?t:fr;for(let p of an)for(let c of e){let d=c[p];d!==void 0&&s[p].push(d)}function n(p){let c=p.id?"#"+p.id:"",d=p.getAttribute("class"),f=d?"."+d.split(" ").join("."):"";return te(i.tagName(p).toLowerCase()+c+f,{},[],void 0,p)}function a(p){return te(void 0,{},[],void 0,p)}function o(p,c){return function(){if(--c===0){let f=i.parentNode(p);f!==null&&i.removeChild(f,p)}}}function l(p,c){var d,f,g,_;let m,x=p.data;if(x!==void 0){let w=(d=x.hook)===null||d===void 0?void 0:d.init;W(w)&&(w(p),x=p.data)}let b=p.children,k=p.sel;if(k==="!")Ce(p.text)&&(p.text=""),p.elm=i.createComment(p.text);else if(k==="")p.elm=i.createTextNode(p.text);else if(k!==void 0){let w=k.indexOf("#"),A=k.indexOf(".",w),C=w>0?w:k.length,S=A>0?A:k.length,v=w!==-1||A!==-1?k.slice(0,Math.min(C,S)):k,I=p.elm=W(x)&&W(m=x.ns)?i.createElementNS(m,v,x):i.createElement(v,x);for(C<S&&I.setAttribute("id",k.slice(C+1,S)),A>0&&I.setAttribute("class",k.slice(S+1).replace(/\./g," ")),m=0;m<s.create.length;++m)s.create[m](yt,p);if(pe(p.text)&&(!le(b)||b.length===0)&&i.appendChild(I,i.createTextNode(p.text)),le(b))for(m=0;m<b.length;++m){let M=b[m];M!=null&&i.appendChild(I,l(M,c))}let P=p.data.hook;W(P)&&((f=P.create)===null||f===void 0||f.call(P,yt,p),P.insert&&c.push(p))}else if(!((g=r?.experimental)===null||g===void 0)&&g.fragments&&p.children){for(p.elm=((_=i.createDocumentFragment)!==null&&_!==void 0?_:tn)(),m=0;m<s.create.length;++m)s.create[m](yt,p);for(m=0;m<p.children.length;++m){let w=p.children[m];w!=null&&i.appendChild(p.elm,l(w,c))}}else p.elm=i.createTextNode(p.text);return p.elm}function h(p,c,d,f,g,_){for(;f<=g;++f){let m=d[f];m!=null&&i.insertBefore(p,l(m,_),c)}}function u(p){var c,d;let f=p.data;if(f!==void 0){(d=(c=f?.hook)===null||c===void 0?void 0:c.destroy)===null||d===void 0||d.call(c,p);for(let g=0;g<s.destroy.length;++g)s.destroy[g](p);if(p.children!==void 0)for(let g=0;g<p.children.length;++g){let _=p.children[g];_!=null&&typeof _!="string"&&u(_)}}}function y(p,c,d,f){for(var g,_;d<=f;++d){let m,x,b=c[d];if(b!=null)if(W(b.sel)){u(b),m=s.remove.length+1,x=o(b.elm,m);for(let w=0;w<s.remove.length;++w)s.remove[w](b,x);let k=(_=(g=b?.data)===null||g===void 0?void 0:g.hook)===null||_===void 0?void 0:_.remove;W(k)?k(b,x):x()}else b.children?(u(b),y(p,b.children,0,b.children.length-1)):i.removeChild(p,b.elm)}}function E(p,c,d,f){let g=0,_=0,m=c.length-1,x=c[0],b=c[m],k=d.length-1,w=d[0],A=d[k],C,S,v,I;for(;g<=m&&_<=k;)x==null?x=c[++g]:b==null?b=c[--m]:w==null?w=d[++_]:A==null?A=d[--k]:ue(x,w)?(T(x,w,f),x=c[++g],w=d[++_]):ue(b,A)?(T(b,A,f),b=c[--m],A=d[--k]):ue(x,A)?(T(x,A,f),i.insertBefore(p,x.elm,i.nextSibling(b.elm)),x=c[++g],A=d[--k]):ue(b,w)?(T(b,w,f),i.insertBefore(p,b.elm,x.elm),b=c[--m],w=d[++_]):(C===void 0&&(C=nn(c,g,m)),S=C[w.key],Ce(S)?(i.insertBefore(p,l(w,f),x.elm),w=d[++_]):Ce(C[A.key])?(i.insertBefore(p,l(A,f),i.nextSibling(b.elm)),A=d[--k]):(v=c[S],v.sel!==w.sel?i.insertBefore(p,l(w,f),x.elm):(T(v,w,f),c[S]=void 0,i.insertBefore(p,v.elm,x.elm)),w=d[++_]));_<=k&&(I=d[k+1]==null?null:d[k+1].elm,h(p,I,d,_,k,f)),g<=m&&y(p,c,g,m)}function T(p,c,d){var f,g,_,m,x,b,k,w;let A=(f=c.data)===null||f===void 0?void 0:f.hook;(g=A?.prepatch)===null||g===void 0||g.call(A,p,c);let C=c.elm=p.elm;if(p===c)return;if(c.data!==void 0||W(c.text)&&c.text!==p.text){(_=c.data)!==null&&_!==void 0||(c.data={}),(m=p.data)!==null&&m!==void 0||(p.data={});for(let I=0;I<s.update.length;++I)s.update[I](p,c);(k=(b=(x=c.data)===null||x===void 0?void 0:x.hook)===null||b===void 0?void 0:b.update)===null||k===void 0||k.call(b,p,c)}let S=p.children,v=c.children;Ce(c.text)?W(S)&&W(v)?S!==v&&E(C,S,v,d):W(v)?(W(p.text)&&i.setTextContent(C,""),h(C,null,v,0,v.length-1,d)):W(S)?y(C,S,0,S.length-1):W(p.text)&&i.setTextContent(C,""):p.text!==c.text&&(W(S)&&y(C,S,0,S.length-1),i.setTextContent(C,c.text)),(w=A?.postpatch)===null||w===void 0||w.call(A,p,c)}return function(c,d){let f,g,_,m=[];for(f=0;f<s.pre.length;++f)s.pre[f]();for(rn(i,c)?c=n(c):sn(i,c)&&(c=a(c)),ue(c,d)?T(c,d,m):(g=c.elm,_=i.parentNode(g),l(d,m),_!==null&&(i.insertBefore(_,d.elm,i.nextSibling(g)),y(_,[c],0,0))),f=0;f<m.length;++f)m[f].data.hook.insert(m[f]);for(f=0;f<s.post.length;++f)s.post[f]();return d}}function yr(e,t){let r,s,i=t.elm,n=e.data.class,a=t.data.class;if(!(!n&&!a)&&n!==a){n=n||{},a=a||{};for(s in n)n[s]&&!Object.prototype.hasOwnProperty.call(a,s)&&i.classList.remove(s);for(s in a)r=a[s],r!==n[s]&&i.classList[r?"add":"remove"](s)}}var gr={create:yr,update:yr};function br(e,t){let r,s,i,n=t.elm,a=e.data.props,o=t.data.props;if(!(!a&&!o)&&a!==o){a=a||{},o=o||{};for(r in o)s=o[r],i=a[r],i!==s&&(r!=="value"||n[r]!==s)&&(n[r]=s)}}var vr={create:br,update:br};var on="http://www.w3.org/1999/xlink",ln="http://www.w3.org/2000/xmlns/",pn="http://www.w3.org/XML/1998/namespace";function wr(e,t){let r,s=t.elm,i=e.data.attrs,n=t.data.attrs;if(!(!i&&!n)&&i!==n){i=i||{},n=n||{};for(r in n){let a=n[r];i[r]!==a&&(a===!0?s.setAttribute(r,""):a===!1?s.removeAttribute(r):r.charCodeAt(0)!==120?s.setAttribute(r,a):r.charCodeAt(3)===58?s.setAttributeNS(pn,r,a):r.charCodeAt(5)===58?r.charCodeAt(1)===109?s.setAttributeNS(ln,r,a):s.setAttributeNS(on,r,a):s.setAttribute(r,a))}for(r in i)r in n||s.removeAttribute(r)}}var xr={create:wr,update:wr};var _r=typeof window?.requestAnimationFrame=="function"?window.requestAnimationFrame.bind(window):setTimeout,cn=function(e){_r(function(){_r(e)})},gt=!1;function hn(e,t,r){cn(function(){e[t]=r})}function Sr(e,t){let r,s,i=t.elm,n=e.data.style,a=t.data.style;if(!n&&!a||n===a)return;n=n||{},a=a||{};let o="delayed"in n;for(s in n)s in a||(s[0]==="-"&&s[1]==="-"?i.style.removeProperty(s):i.style[s]="");for(s in a)if(r=a[s],s==="delayed"&&a.delayed)for(let l in a.delayed)r=a.delayed[l],(!o||r!==n.delayed[l])&&hn(i.style,l,r);else s!=="remove"&&r!==n[s]&&(s[0]==="-"&&s[1]==="-"?i.style.setProperty(s,r):i.style[s]=r)}function dn(e){let t,r,s=e.elm,i=e.data.style;if(!(!i||!(t=i.destroy)))for(r in t)s.style[r]=t[r]}function un(e,t){let r=e.data.style;if(!r||!r.remove){t();return}gt||(e.elm.offsetLeft,gt=!0);let s,i=e.elm,n=0,a=r.remove,o=0,l=[];for(s in a)l.push(s),i.style[s]=a[s];let u=getComputedStyle(i)["transition-property"].split(", ");for(;n<u.length;++n)l.indexOf(u[n])!==-1&&o++;i.addEventListener("transitionend",function(y){y.target===i&&--o,o===0&&t()})}function fn(){gt=!1}var kr={pre:fn,create:Sr,update:Sr,destroy:dn,remove:un};function Er(e,t,r){if(typeof e=="function")e.call(t,r,t);else if(typeof e=="object")for(let s=0;s<e.length;s++)Er(e[s],t,r)}function mn(e,t){let r=e.type,s=t.data.on;s&&s[r]&&Er(s[r],t,e)}function yn(){return function e(t){mn(t,e.vnode)}}function bt(e,t){let r=e.data.on,s=e.listener,i=e.elm,n=t&&t.data.on,a=t&&t.elm,o;if(r!==n){if(r&&s)if(n)for(o in r)n[o]||i.removeEventListener(o,s,!1);else for(o in r)i.removeEventListener(o,s,!1);if(n){let l=t.listener=e.listener||yn();if(l.vnode=t,r)for(o in n)r[o]||a.addEventListener(o,l,!1);else for(o in n)a.addEventListener(o,l,!1)}}}var Ar={create:bt,update:bt,destroy:bt};var gn=()=>mr([gr,vr,xr,kr,Ar]),vt=gn;function $r(e,t,r){if(e.ns="http://www.w3.org/2000/svg",r!=="foreignObject"&&t!==void 0)for(let s=0;s<t.length;++s){let i=t[s];if(typeof i=="string")continue;let n=i.data;n!==void 0&&$r(n,i.children,i.sel)}}function wt(e,t,r){let s={},i,n,a;if(r!==void 0?(t!==null&&(s=t),le(r)?i=r:pe(r)?n=r.toString():r&&r.sel&&(i=[r])):t!=null&&(le(t)?i=t:pe(t)?n=t.toString():t&&t.sel?i=[t]:s=t),i!==void 0)for(a=0;a<i.length;++a)pe(i[a])&&(i[a]=te(void 0,void 0,void 0,i[a],void 0));return e.startsWith("svg")&&(e.length===3||e[3]==="."||e[3]==="#")&&$r(s,i,e),te(e,s,i,n,void 0)}var bn={},Cr={components:bn},Or=vt();var Oe={components:{dialog:{handlers:Me,store:ze,view:Vt},dropdownMenu:{handlers:We,store:Fe,view:Rt},form:{handlers:He,store:Be,view:Mt},navbar:{handlers:Ke,store:Ue,view:zt},pageOutline:{handlers:qe,store:Je,view:Ft},popover:{handlers:Ye,store:Ge,view:Ht},select:{handlers:Xe,store:Qe,view:Bt},sidebar:{handlers:Ze,store:tt,view:Kt},table:{handlers:rt,store:st,view:Ut}}};Object.keys(Oe).forEach(e=>{Object.keys(Oe[e]).forEach(t=>{let r=mt({...Oe[e][t],patch:Or,h:wt},Cr[e]);customElements.define(Oe[e][t].view.elementName,r)})});customElements.define("rtgl-button",kt({}));customElements.define("rtgl-view",$t({}));customElements.define("rtgl-text",Ot({}));customElements.define("rtgl-image",It({}));customElements.define("rtgl-svg",Lt({}));customElements.define("rtgl-input",Nt({}));customElements.define("rtgl-textarea",Pt({}));customElements.define("rtgl-color-picker",jt({}));customElements.define("rtgl-slider",Dt({}));})();
950
+ `);let r=[t];if(this.cssText){let n=new CSSStyleSheet;n.replaceSync(this.cssText),r.push(n)}this.shadow.adoptedStyleSheets=r,this.renderTarget=document.createElement("div"),this.renderTarget.style.cssText="display: contents;",this.shadow.appendChild(this.renderTarget),this.transformedHandlers={},this.renderTarget.parentNode||this.appendChild(this.renderTarget),this.style.display="contents";let s={...this.deps,refIds:this.refIds,getRefIds:()=>this.refIds,dispatchEvent:this.dispatchEvent.bind(this)};if(Object.keys(this.handlers||{}).forEach(n=>{this.transformedHandlers[n]=i=>this.handlers[n](i,s)}),this.handlers?.handleBeforeMount&&(this._unmountCallback=this.handlers?.handleBeforeMount(s),this._unmountCallback&&typeof this._unmountCallback.then=="function"))throw new Error("handleBeforeMount must be synchronous and cannot return a Promise.");this.render(),this.handlers?.handleAfterMount&&this.handlers?.handleAfterMount(s),this.handlers?.subscriptions&&(this.unsubscribeAll=ya(this.handlers.subscriptions(s)))}disconnectedCallback(){this._unmountCallback&&this._unmountCallback(),this.unsubscribeAll&&this.unsubscribeAll()}attributeChangedCallback(t,r,s){if(r!==s&&this.render)if(this.handlers?.handleOnUpdate){let n={oldAttrs:{[t]:r},newAttrs:{[t]:s}},i={...this.deps,refIds:this.refIds,getRefIds:()=>this.refIds,dispatchEvent:this.dispatchEvent.bind(this),store:this.store,render:this.render.bind(this)};this.handlers.handleOnUpdate(n,i)}else requestAnimationFrame(()=>{this.render()})}render=()=>{if(!this.patch){console.error("Patch function is not defined!");return}if(!this.template){console.error("Template is not defined!");return}try{let t={...this.deps,refIds:this.refIds,getRefIds:()=>this.refIds,dispatchEvent:this.dispatchEvent.bind(this),store:this.store,render:this.render.bind(this)},r=ys({h:this.h,template:this.template,viewData:this.viewData,refs:this.refs,handlers:this.transformedHandlers}),s={},n=i=>{i.data?.attrs&&i.data.attrs.id&&(s[i.data.attrs.id]=i),i.children&&i.children.forEach(n)};n(r),this.refIds=s,this._oldVNode?this._oldVNode=this.patch(this._oldVNode,r):this._oldVNode=this.patch(this.renderTarget,r)}catch(t){console.error("Error during patching:",t)}}},va=(e,t,r)=>{let{INITIAL_STATE:s,toViewData:n,...i}=e,a={},o={},l=structuredClone(s);return Object.entries(i).forEach(([p,u])=>{p.startsWith("select")?a[p]=(...c)=>u({state:l,props:t,attrs:r},...c):o[p]=c=>(l=as(l,h=>u(h,c)),l)}),{toViewData:()=>n({state:l,props:t,attrs:r}),getState:()=>l,...o,...a}},ba=({handlers:e,view:t,store:r,patch:s,h:n},i)=>{let{elementName:a,propsSchema:o,attrsSchema:l,template:p,refs:u,styles:c}=t;if(!s)throw new Error("Patch is not defined");if(!n)throw new Error("h is not defined");if(!t)throw new Error("view is not defined");class h extends Gt{static get observedAttributes(){let d=["key"],f=l?.properties?Object.keys(l.properties):[];return[...d,...f]}constructor(){super();let d=ma(this);this.propsSchema=o,this.props=o?ga(this,Object.keys(o.properties)):{},this.elementName=a,this.styles=c,this.store=va(r,this.props,d),this.template=p,this.handlers=e,this.refs=u,this.patch=s,this.deps={...i,store:this.store,render:this.render,handlers:e,attrs:d,props:this.props},this.h=n,this.cssText=fa(a,c)}}return h},Xt=ba;function de(e,t,r,s,n){let i=t===void 0?void 0:t.key;return{sel:e,data:t,children:r,text:s,elm:n,key:i}}var xe=Array.isArray;function Ee(e){return typeof e=="string"||typeof e=="number"||e instanceof String||e instanceof Number}function wa(e,t){return document.createElement(e,t)}function xa(e,t,r){return document.createElementNS(e,t,r)}function Ea(){return he(document.createDocumentFragment())}function ka(e){return document.createTextNode(e)}function Aa(e){return document.createComment(e)}function _a(e,t,r){if(ne(e)){let s=e;for(;s&&ne(s);)s=he(s).parent;e=s??e}ne(t)&&(t=he(t,e)),r&&ne(r)&&(r=he(r).firstChildNode),e.insertBefore(t,r)}function Sa(e,t){e.removeChild(t)}function $a(e,t){ne(t)&&(t=he(t,e)),e.appendChild(t)}function gs(e){if(ne(e)){for(;e&&ne(e);)e=he(e).parent;return e??null}return e.parentNode}function Ca(e){var t;if(ne(e)){let r=he(e),s=gs(r);if(s&&r.lastChildNode){let n=Array.from(s.childNodes),i=n.indexOf(r.lastChildNode);return(t=n[i+1])!==null&&t!==void 0?t:null}return null}return e.nextSibling}function Ia(e){return e.tagName}function Oa(e,t){e.textContent=t}function Ta(e){return e.textContent}function La(e){return e.nodeType===1}function Na(e){return e.nodeType===3}function Va(e){return e.nodeType===8}function ne(e){return e.nodeType===11}function he(e,t){var r,s,n;let i=e;return(r=i.parent)!==null&&r!==void 0||(i.parent=t??null),(s=i.firstChildNode)!==null&&s!==void 0||(i.firstChildNode=e.firstChild),(n=i.lastChildNode)!==null&&n!==void 0||(i.lastChildNode=e.lastChild),i}var vs={createElement:wa,createElementNS:xa,createTextNode:ka,createDocumentFragment:Ea,createComment:Aa,insertBefore:_a,removeChild:Sa,appendChild:$a,parentNode:gs,nextSibling:Ca,tagName:Ia,setTextContent:Oa,getTextContent:Ta,isElement:La,isText:Na,isComment:Va,isDocumentFragment:ne};function He(e){return e===void 0}function J(e){return e!==void 0}var Qt=de("",{},[],void 0,void 0);function Ie(e,t){var r,s;let n=e.key===t.key,i=((r=e.data)===null||r===void 0?void 0:r.is)===((s=t.data)===null||s===void 0?void 0:s.is),a=e.sel===t.sel,o=!e.sel&&e.sel===t.sel?typeof e.text==typeof t.text:!0;return a&&n&&i&&o}function Ra(){throw new Error("The document fragment is not supported on this platform.")}function Pa(e,t){return e.isElement(t)}function ja(e,t){return e.isDocumentFragment(t)}function Da(e,t,r){var s;let n={};for(let i=t;i<=r;++i){let a=(s=e[i])===null||s===void 0?void 0:s.key;a!==void 0&&(n[a]=i)}return n}var Ba=["create","update","remove","destroy","pre","post"];function bs(e,t,r){let s={create:[],update:[],remove:[],destroy:[],pre:[],post:[]},n=t!==void 0?t:vs;for(let d of Ba)for(let f of e){let m=f[d];m!==void 0&&s[d].push(m)}function i(d){let f=d.id?"#"+d.id:"",m=d.getAttribute("class"),v=m?"."+m.split(" ").join("."):"";return de(n.tagName(d).toLowerCase()+f+v,{},[],void 0,d)}function a(d){return de(void 0,{},[],void 0,d)}function o(d,f){return function(){if(--f===0){let v=n.parentNode(d);v!==null&&n.removeChild(v,d)}}}function l(d,f){var m,v,b,w;let E,_=d.data;if(_!==void 0){let S=(m=_.hook)===null||m===void 0?void 0:m.init;J(S)&&(S(d),_=d.data)}let k=d.children,C=d.sel;if(C==="!")He(d.text)&&(d.text=""),d.elm=n.createComment(d.text);else if(C==="")d.elm=n.createTextNode(d.text);else if(C!==void 0){let S=C.indexOf("#"),L=C.indexOf(".",S),V=S>0?S:C.length,$=L>0?L:C.length,A=S!==-1||L!==-1?C.slice(0,Math.min(V,$)):C,R=d.elm=J(_)&&J(E=_.ns)?n.createElementNS(E,A,_):n.createElement(A,_);for(V<$&&R.setAttribute("id",C.slice(V+1,$)),L>0&&R.setAttribute("class",C.slice($+1).replace(/\./g," ")),E=0;E<s.create.length;++E)s.create[E](Qt,d);if(Ee(d.text)&&(!xe(k)||k.length===0)&&n.appendChild(R,n.createTextNode(d.text)),xe(k))for(E=0;E<k.length;++E){let K=k[E];K!=null&&n.appendChild(R,l(K,f))}let W=d.data.hook;J(W)&&((v=W.create)===null||v===void 0||v.call(W,Qt,d),W.insert&&f.push(d))}else if(!((b=r?.experimental)===null||b===void 0)&&b.fragments&&d.children){for(d.elm=((w=n.createDocumentFragment)!==null&&w!==void 0?w:Ra)(),E=0;E<s.create.length;++E)s.create[E](Qt,d);for(E=0;E<d.children.length;++E){let S=d.children[E];S!=null&&n.appendChild(d.elm,l(S,f))}}else d.elm=n.createTextNode(d.text);return d.elm}function p(d,f,m,v,b,w){for(;v<=b;++v){let E=m[v];E!=null&&n.insertBefore(d,l(E,w),f)}}function u(d){var f,m;let v=d.data;if(v!==void 0){(m=(f=v?.hook)===null||f===void 0?void 0:f.destroy)===null||m===void 0||m.call(f,d);for(let b=0;b<s.destroy.length;++b)s.destroy[b](d);if(d.children!==void 0)for(let b=0;b<d.children.length;++b){let w=d.children[b];w!=null&&typeof w!="string"&&u(w)}}}function c(d,f,m,v){for(var b,w;m<=v;++m){let E,_,k=f[m];if(k!=null)if(J(k.sel)){u(k),E=s.remove.length+1,_=o(k.elm,E);for(let S=0;S<s.remove.length;++S)s.remove[S](k,_);let C=(w=(b=k?.data)===null||b===void 0?void 0:b.hook)===null||w===void 0?void 0:w.remove;J(C)?C(k,_):_()}else k.children?(u(k),c(d,k.children,0,k.children.length-1)):n.removeChild(d,k.elm)}}function h(d,f,m,v){let b=0,w=0,E=f.length-1,_=f[0],k=f[E],C=m.length-1,S=m[0],L=m[C],V,$,A,R;for(;b<=E&&w<=C;)_==null?_=f[++b]:k==null?k=f[--E]:S==null?S=m[++w]:L==null?L=m[--C]:Ie(_,S)?(y(_,S,v),_=f[++b],S=m[++w]):Ie(k,L)?(y(k,L,v),k=f[--E],L=m[--C]):Ie(_,L)?(y(_,L,v),n.insertBefore(d,_.elm,n.nextSibling(k.elm)),_=f[++b],L=m[--C]):Ie(k,S)?(y(k,S,v),n.insertBefore(d,k.elm,_.elm),k=f[--E],S=m[++w]):(V===void 0&&(V=Da(f,b,E)),$=V[S.key],He($)?(n.insertBefore(d,l(S,v),_.elm),S=m[++w]):He(V[L.key])?(n.insertBefore(d,l(L,v),n.nextSibling(k.elm)),L=m[--C]):(A=f[$],A.sel!==S.sel?n.insertBefore(d,l(S,v),_.elm):(y(A,S,v),f[$]=void 0,n.insertBefore(d,A.elm,_.elm)),S=m[++w]));w<=C&&(R=m[C+1]==null?null:m[C+1].elm,p(d,R,m,w,C,v)),b<=E&&c(d,f,b,E)}function y(d,f,m){var v,b,w,E,_,k,C,S;let L=(v=f.data)===null||v===void 0?void 0:v.hook;(b=L?.prepatch)===null||b===void 0||b.call(L,d,f);let V=f.elm=d.elm;if(d===f)return;if(f.data!==void 0||J(f.text)&&f.text!==d.text){(w=f.data)!==null&&w!==void 0||(f.data={}),(E=d.data)!==null&&E!==void 0||(d.data={});for(let R=0;R<s.update.length;++R)s.update[R](d,f);(C=(k=(_=f.data)===null||_===void 0?void 0:_.hook)===null||k===void 0?void 0:k.update)===null||C===void 0||C.call(k,d,f)}let $=d.children,A=f.children;He(f.text)?J($)&&J(A)?$!==A&&h(V,$,A,m):J(A)?(J(d.text)&&n.setTextContent(V,""),p(V,null,A,0,A.length-1,m)):J($)?c(V,$,0,$.length-1):J(d.text)&&n.setTextContent(V,""):d.text!==f.text&&(J($)&&c(V,$,0,$.length-1),n.setTextContent(V,f.text)),(S=L?.postpatch)===null||S===void 0||S.call(L,d,f)}return function(f,m){let v,b,w,E=[];for(v=0;v<s.pre.length;++v)s.pre[v]();for(Pa(n,f)?f=i(f):ja(n,f)&&(f=a(f)),Ie(f,m)?y(f,m,E):(b=f.elm,w=n.parentNode(b),l(m,E),w!==null&&(n.insertBefore(w,m.elm,n.nextSibling(b)),c(w,[f],0,0))),v=0;v<E.length;++v)E[v].data.hook.insert(E[v]);for(v=0;v<s.post.length;++v)s.post[v]();return m}}function ws(e,t){let r,s,n=t.elm,i=e.data.class,a=t.data.class;if(!(!i&&!a)&&i!==a){i=i||{},a=a||{};for(s in i)i[s]&&!Object.prototype.hasOwnProperty.call(a,s)&&n.classList.remove(s);for(s in a)r=a[s],r!==i[s]&&n.classList[r?"add":"remove"](s)}}var xs={create:ws,update:ws};function Es(e,t){let r,s,n,i=t.elm,a=e.data.props,o=t.data.props;if(!(!a&&!o)&&a!==o){a=a||{},o=o||{};for(r in o)s=o[r],n=a[r],n!==s&&(r!=="value"||i[r]!==s)&&(i[r]=s)}}var ks={create:Es,update:Es};var Wa="http://www.w3.org/1999/xlink",Ma="http://www.w3.org/2000/xmlns/",za="http://www.w3.org/XML/1998/namespace";function As(e,t){let r,s=t.elm,n=e.data.attrs,i=t.data.attrs;if(!(!n&&!i)&&n!==i){n=n||{},i=i||{};for(r in i){let a=i[r];n[r]!==a&&(a===!0?s.setAttribute(r,""):a===!1?s.removeAttribute(r):r.charCodeAt(0)!==120?s.setAttribute(r,a):r.charCodeAt(3)===58?s.setAttributeNS(za,r,a):r.charCodeAt(5)===58?r.charCodeAt(1)===109?s.setAttributeNS(Ma,r,a):s.setAttributeNS(Wa,r,a):s.setAttribute(r,a))}for(r in n)r in i||s.removeAttribute(r)}}var _s={create:As,update:As};var Ss=typeof window?.requestAnimationFrame=="function"?window.requestAnimationFrame.bind(window):setTimeout,Ka=function(e){Ss(function(){Ss(e)})},Zt=!1;function Fa(e,t,r){Ka(function(){e[t]=r})}function $s(e,t){let r,s,n=t.elm,i=e.data.style,a=t.data.style;if(!i&&!a||i===a)return;i=i||{},a=a||{};let o="delayed"in i;for(s in i)s in a||(s[0]==="-"&&s[1]==="-"?n.style.removeProperty(s):n.style[s]="");for(s in a)if(r=a[s],s==="delayed"&&a.delayed)for(let l in a.delayed)r=a.delayed[l],(!o||r!==i.delayed[l])&&Fa(n.style,l,r);else s!=="remove"&&r!==i[s]&&(s[0]==="-"&&s[1]==="-"?n.style.setProperty(s,r):n.style[s]=r)}function Ua(e){let t,r,s=e.elm,n=e.data.style;if(!(!n||!(t=n.destroy)))for(r in t)s.style[r]=t[r]}function Ha(e,t){let r=e.data.style;if(!r||!r.remove){t();return}Zt||(e.elm.offsetLeft,Zt=!0);let s,n=e.elm,i=0,a=r.remove,o=0,l=[];for(s in a)l.push(s),n.style[s]=a[s];let u=getComputedStyle(n)["transition-property"].split(", ");for(;i<u.length;++i)l.indexOf(u[i])!==-1&&o++;n.addEventListener("transitionend",function(c){c.target===n&&--o,o===0&&t()})}function Ja(){Zt=!1}var Cs={pre:Ja,create:$s,update:$s,destroy:Ua,remove:Ha};function Is(e,t,r){if(typeof e=="function")e.call(t,r,t);else if(typeof e=="object")for(let s=0;s<e.length;s++)Is(e[s],t,r)}function qa(e,t){let r=e.type,s=t.data.on;s&&s[r]&&Is(s[r],t,e)}function Ya(){return function e(t){qa(t,e.vnode)}}function er(e,t){let r=e.data.on,s=e.listener,n=e.elm,i=t&&t.data.on,a=t&&t.elm,o;if(r!==i){if(r&&s)if(i)for(o in r)i[o]||n.removeEventListener(o,s,!1);else for(o in r)n.removeEventListener(o,s,!1);if(i){let l=t.listener=e.listener||Ya();if(l.vnode=t,r)for(o in i)r[o]||a.addEventListener(o,l,!1);else for(o in i)a.addEventListener(o,l,!1)}}}var Os={create:er,update:er,destroy:er};var Ga=()=>bs([xs,ks,_s,Cs,Os]),tr=Ga;function Ts(e,t,r){if(e.ns="http://www.w3.org/2000/svg",r!=="foreignObject"&&t!==void 0)for(let s=0;s<t.length;++s){let n=t[s];if(typeof n=="string")continue;let i=n.data;i!==void 0&&Ts(i,n.children,n.sel)}}function rr(e,t,r){let s={},n,i,a;if(r!==void 0?(t!==null&&(s=t),xe(r)?n=r:Ee(r)?i=r.toString():r&&r.sel&&(n=[r])):t!=null&&(xe(t)?n=t:Ee(t)?i=t.toString():t&&t.sel?n=[t]:s=t),n!==void 0)for(a=0;a<n.length;++a)Ee(n[a])&&(n[a]=de(void 0,void 0,void 0,n[a],void 0));return e.startsWith("svg")&&(e.length===3||e[3]==="."||e[3]==="#")&&Ts(s,n,e),de(e,s,n,i,void 0)}var Xa={},Ls={components:Xa},Ns=tr();var Je={components:{breadcrumb:{handlers:at,store:lt,view:xr},dropdownMenu:{handlers:pt,store:ct,view:Er},form:{handlers:ut,store:bt,view:Pr},navbar:{handlers:wt,store:xt,view:jr},pageOutline:{handlers:Et,store:kt,view:Br},popoverInput:{handlers:At,store:_t,view:Wr},select:{handlers:St,store:$t,view:Mr},sidebar:{handlers:Ct,store:Ot,view:zr},sliderInput:{handlers:Tt,store:Lt,view:Kr},table:{handlers:Nt,store:Vt,view:Fr},tabs:{handlers:Rt,store:Pt,view:Ur},tooltip:{handlers:Hr,store:jt,view:Jr},waveform:{handlers:Dt,store:Bt,view:Yr}}};Object.keys(Je).forEach(e=>{Object.keys(Je[e]).forEach(t=>{let r=Xt({...Je[e][t],patch:Ns,h:rr},Ls[e]);customElements.define(Je[e][t].view.elementName,r)})});customElements.define("rtgl-button",or({}));customElements.define("rtgl-view",pr({}));customElements.define("rtgl-text",ur({}));customElements.define("rtgl-image",dr({}));customElements.define("rtgl-svg",fr({}));customElements.define("rtgl-input",yr({}));customElements.define("rtgl-textarea",mr({}));customElements.define("rtgl-color-picker",gr({}));customElements.define("rtgl-slider",vr({}));customElements.define("rtgl-dialog",br({}));customElements.define("rtgl-popover",wr({}));})();