@rettangoli/ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -0
- package/dist/rettangoli-iife-layout.min.js +728 -0
- package/dist/rettangoli-iife-ui.min.js +830 -0
- package/package.json +53 -0
- package/src/common/BaseElement.js +182 -0
- package/src/common.js +190 -0
- package/src/components/dialog/dialog.handlers.js +5 -0
- package/src/components/dialog/dialog.store.js +25 -0
- package/src/components/dialog/dialog.view.yaml +44 -0
- package/src/components/dropdownMenu/dropdownMenu.handlers.js +18 -0
- package/src/components/dropdownMenu/dropdownMenu.store.js +25 -0
- package/src/components/dropdownMenu/dropdownMenu.view.yaml +54 -0
- package/src/components/form/form.handlers.js +63 -0
- package/src/components/form/form.store.js +45 -0
- package/src/components/form/form.view.yaml +174 -0
- package/src/components/navbar/navbar.examples.yaml +86 -0
- package/src/components/navbar/navbar.handlers.js +10 -0
- package/src/components/navbar/navbar.store.js +46 -0
- package/src/components/navbar/navbar.view.yaml +74 -0
- package/src/components/pageOutline/pageOutline.handlers.js +69 -0
- package/src/components/pageOutline/pageOutline.store.js +40 -0
- package/src/components/pageOutline/pageOutline.view.yaml +34 -0
- package/src/components/popover/popover.handlers.js +5 -0
- package/src/components/popover/popover.store.js +12 -0
- package/src/components/popover/popover.view.yaml +57 -0
- package/src/components/select/select.handlers.js +61 -0
- package/src/components/select/select.store.js +65 -0
- package/src/components/select/select.view.yaml +50 -0
- package/src/components/sidebar/sidebar.handlers.js +36 -0
- package/src/components/sidebar/sidebar.store.js +142 -0
- package/src/components/sidebar/sidebar.view.yaml +190 -0
- package/src/components/table/table.handlers.js +55 -0
- package/src/components/table/table.store.js +72 -0
- package/src/components/table/table.view.yaml +103 -0
- package/src/entry-iife-layout.js +15 -0
- package/src/entry-iife-ui.js +22 -0
- package/src/index.js +17 -0
- package/src/lib/uhtml.js +9 -0
- package/src/primitives/button.js +306 -0
- package/src/primitives/colorPicker.js +213 -0
- package/src/primitives/image.js +234 -0
- package/src/primitives/input.js +218 -0
- package/src/primitives/slider.js +269 -0
- package/src/primitives/svg.js +95 -0
- package/src/primitives/text.js +141 -0
- package/src/primitives/textarea.js +103 -0
- package/src/primitives/view.js +217 -0
- package/src/setup.js +16 -0
- package/src/styles/anchorStyles.js +13 -0
- package/src/styles/buttonMarginStyles.js +84 -0
- package/src/styles/cursorStyles.js +12 -0
- package/src/styles/flexChildStyles.js +43 -0
- package/src/styles/flexDirectionStyles.js +74 -0
- package/src/styles/marginStyles.js +13 -0
- package/src/styles/paddingSvgStyles.js +120 -0
- package/src/styles/scrollStyles.js +22 -0
- package/src/styles/textColorStyles.js +14 -0
- package/src/styles/textStyles.js +62 -0
- package/src/styles/viewStyles.js +114 -0
|
@@ -0,0 +1,830 @@
|
|
|
1
|
+
var rettangoli=(()=>{var Cr=Object.defineProperty;var P=(e,t)=>{for(var r in t)Cr(e,r,{get:t[r],enumerable:!0})};function O(e,...t){let r="";return e.forEach((s,i)=>{r+=s+(t[i]||"")}),r}var Or=["xs","sm","md","lg","xl"],wt={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"},U=Object.keys(wt),q=e=>e.concat(Or.flatMap(t=>e.map(r=>`${t}-${r}`))),xt={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)"},B=(e,t={})=>{let r="";for(let[s,i]of Object.entries(xt)){s!=="default"&&(r+=`${i} {`);for(let[n,a]of Object.entries(e)){let o=t[n]?` ${t[n]} `:" ";for(let[l,d]of Object.entries(a)){let u=wt[n],g=d.startsWith("--")?`var(${d})`:d,E=s==="default"?n:`${s}-${n}`,T=s==="default"?`h-${n}`:`${s}-h-${n}`;if(u){let c=u.split(" ").map(h=>`${h}: ${g};`).join(" ");r+=`
|
|
2
|
+
:host([${E}="${l}"])${o}{
|
|
3
|
+
${c}
|
|
4
|
+
}
|
|
5
|
+
:host([${T}="${l}"]:hover)${o}{
|
|
6
|
+
${c}
|
|
7
|
+
}
|
|
8
|
+
`}else r+=`
|
|
9
|
+
:host([${E}="${l}"])${o}{
|
|
10
|
+
${d}
|
|
11
|
+
}
|
|
12
|
+
:host([${T}="${l}"]:hover)${o}{
|
|
13
|
+
${d}
|
|
14
|
+
}
|
|
15
|
+
`}}s!=="default"&&(r+="}")}return r};function Ir(e){if(e===null||e.includes("/"))return!1;let t=String(e);return/[0-9]$/.test(t)}var Tr=e=>/%$/.test(e),N=e=>{if(e!==void 0)return Tr(e)?e:Ir(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 J(e,t=":host"){let r="";for(let[s,i]of Object.entries(xt)){s!=="default"&&(r+=`${i} {
|
|
16
|
+
`);let n="";for(let[a,o]of Object.entries(e[s]))o!=null&&(n+=`${a}: ${o};
|
|
17
|
+
`);r+=`${t} {
|
|
18
|
+
${n.trim()}
|
|
19
|
+
}
|
|
20
|
+
`,s!=="default"&&(r+=`}
|
|
21
|
+
`)}return r}var se=O`
|
|
22
|
+
:host([flex="0"]) {
|
|
23
|
+
flex: 0;
|
|
24
|
+
}
|
|
25
|
+
:host([flex="1"]) {
|
|
26
|
+
flex: 1;
|
|
27
|
+
}
|
|
28
|
+
:host([flex="2"]) {
|
|
29
|
+
flex: 2;
|
|
30
|
+
}
|
|
31
|
+
:host([flex="3"]) {
|
|
32
|
+
flex: 3;
|
|
33
|
+
}
|
|
34
|
+
:host([flex="4"]) {
|
|
35
|
+
flex: 4;
|
|
36
|
+
}
|
|
37
|
+
:host([flex="5"]) {
|
|
38
|
+
flex: 5;
|
|
39
|
+
}
|
|
40
|
+
:host([flex="6"]) {
|
|
41
|
+
flex: 6;
|
|
42
|
+
}
|
|
43
|
+
:host([flex="7"]) {
|
|
44
|
+
flex: 7;
|
|
45
|
+
}
|
|
46
|
+
:host([flex="8"]) {
|
|
47
|
+
flex: 8;
|
|
48
|
+
}
|
|
49
|
+
:host([flex="9"]) {
|
|
50
|
+
flex: 9;
|
|
51
|
+
}
|
|
52
|
+
:host([flex="10"]) {
|
|
53
|
+
flex: 10;
|
|
54
|
+
}
|
|
55
|
+
:host([flex="11"]) {
|
|
56
|
+
flex: 11;
|
|
57
|
+
}
|
|
58
|
+
:host([flex="12"]) {
|
|
59
|
+
flex: 12;
|
|
60
|
+
}
|
|
61
|
+
`;var Nr={mt:$,mr:$,mb:$,ml:$,m:$,mh:$,mv:$,s:{sm:`
|
|
62
|
+
height: 28px;
|
|
63
|
+
padding-left: 12px;
|
|
64
|
+
padding-right: 12px;
|
|
65
|
+
border-radius: 4px;
|
|
66
|
+
font-size: var(--xs-font-size);
|
|
67
|
+
font-weight: var(--xs-font-weight);
|
|
68
|
+
line-height: var(--xs-line-height);
|
|
69
|
+
letter-spacing: var(--xs-letter-spacing);
|
|
70
|
+
`,md:`
|
|
71
|
+
height: 32px;
|
|
72
|
+
padding-left: 16px;
|
|
73
|
+
padding-right: 16px;
|
|
74
|
+
border-radius: 4px;
|
|
75
|
+
font-size: var(--sm-font-size);
|
|
76
|
+
font-weight: var(--sm-font-weight);
|
|
77
|
+
line-height: var(--sm-line-height);
|
|
78
|
+
letter-spacing: var(--sm-letter-spacing);
|
|
79
|
+
`,lg:`
|
|
80
|
+
height: 40px;
|
|
81
|
+
padding-left: 20px;
|
|
82
|
+
padding-right: 20px;
|
|
83
|
+
border-radius: 4px;
|
|
84
|
+
font-size: var(--md-font-size);
|
|
85
|
+
font-weight: var(--md-font-weight);
|
|
86
|
+
line-height: var(--md-line-height);
|
|
87
|
+
letter-spacing: var(--md-letter-spacing);
|
|
88
|
+
`},v:{pr:`
|
|
89
|
+
background-color: var(--primary);
|
|
90
|
+
color: var(--primary-foreground);
|
|
91
|
+
`,se:`
|
|
92
|
+
background-color: var(--secondary);
|
|
93
|
+
color: var(--secondary-foreground);
|
|
94
|
+
`,de:`
|
|
95
|
+
background-color: var(--destructive);
|
|
96
|
+
color: var(--primary-foreground);
|
|
97
|
+
`,ol:`
|
|
98
|
+
background-color: transparent;
|
|
99
|
+
color: var(--foreground);
|
|
100
|
+
border-width: 1px;
|
|
101
|
+
`,gh:`
|
|
102
|
+
background-color: transparent;
|
|
103
|
+
color: var(--foreground);
|
|
104
|
+
`,lk:`
|
|
105
|
+
background-color: transparent;
|
|
106
|
+
color: var(--foreground);
|
|
107
|
+
`}},Lr={mt:"button",mr:"button",mb:"button",ml:"button",m:"button",mh:"button",mv:"button",s:"button",v:"button"},_t=B(Nr,Lr);var ie=O`
|
|
108
|
+
a, a:link, a:visited, a:hover, a:active {
|
|
109
|
+
color: inherit;
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
background: none;
|
|
112
|
+
border: none;
|
|
113
|
+
padding: 0;
|
|
114
|
+
margin: 0;
|
|
115
|
+
font: inherit;
|
|
116
|
+
}
|
|
117
|
+
`;var Ce=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
118
|
+
:host {
|
|
119
|
+
display: contents;
|
|
120
|
+
}
|
|
121
|
+
slot {
|
|
122
|
+
display: contents;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
button {
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-direction: row;
|
|
128
|
+
align-items: center;
|
|
129
|
+
justify-content: center;
|
|
130
|
+
gap: var(--spacing-lg);
|
|
131
|
+
border-width: 0px;
|
|
132
|
+
border-style: solid;
|
|
133
|
+
border-color: var(--border);
|
|
134
|
+
padding: 0px;
|
|
135
|
+
height: 32px;
|
|
136
|
+
padding-left: 16px;
|
|
137
|
+
padding-right: 16px;
|
|
138
|
+
border-radius: 4px;
|
|
139
|
+
|
|
140
|
+
font-size: var(--sm-font-size);
|
|
141
|
+
font-weight: var(--sm-font-weight);
|
|
142
|
+
line-height: var(--sm-line-height);
|
|
143
|
+
letter-spacing: var(--sm-letter-spacing);
|
|
144
|
+
|
|
145
|
+
background-color: var(--primary);
|
|
146
|
+
color: var(--primary-foreground);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
button:hover {
|
|
150
|
+
cursor: pointer;
|
|
151
|
+
background-color: color-mix(
|
|
152
|
+
in srgb,
|
|
153
|
+
var(--primary) 85%,
|
|
154
|
+
white 15%
|
|
155
|
+
);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
button:disabled {
|
|
159
|
+
cursor: not-allowed;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
button:active {
|
|
163
|
+
cursor: pointer;
|
|
164
|
+
background-color: color-mix(
|
|
165
|
+
in srgb,
|
|
166
|
+
var(--primary) 80%,
|
|
167
|
+
white 20%
|
|
168
|
+
);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:host([v="pr"]) button:hover {
|
|
172
|
+
background-color: color-mix(
|
|
173
|
+
in srgb,
|
|
174
|
+
var(--primary) 85%,
|
|
175
|
+
white 15%
|
|
176
|
+
);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
:host([v="pr"]) button:active {
|
|
180
|
+
background-color: color-mix(
|
|
181
|
+
in srgb,
|
|
182
|
+
var(--primary) 80%,
|
|
183
|
+
white 20%
|
|
184
|
+
);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
:host([v="se"]) button:hover {
|
|
188
|
+
background-color: color-mix(
|
|
189
|
+
in srgb,
|
|
190
|
+
var(--secondary) 85%,
|
|
191
|
+
white 15%
|
|
192
|
+
);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
:host([v="se"]) button:active {
|
|
196
|
+
background-color: color-mix(
|
|
197
|
+
in srgb,
|
|
198
|
+
var(--secondary) 80%,
|
|
199
|
+
white 20%
|
|
200
|
+
);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
:host([v="de"]) button:hover {
|
|
204
|
+
background-color: color-mix(
|
|
205
|
+
in srgb,
|
|
206
|
+
var(--destructive) 85%,
|
|
207
|
+
white 15%
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
:host([v="de"]) button:active {
|
|
212
|
+
background-color: color-mix(
|
|
213
|
+
in srgb,
|
|
214
|
+
var(--destructive) 80%,
|
|
215
|
+
white 20%
|
|
216
|
+
);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
:host([v="ol"]) button:hover {
|
|
220
|
+
background-color: var(--accent);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
:host([v="gh"]) button:hover {
|
|
224
|
+
background-color: var(--accent);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
:host([v="lk"]) button:hover {
|
|
228
|
+
text-decoration: underline;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/* Square button styles */
|
|
232
|
+
:host([sq]) button {
|
|
233
|
+
width: 32px;
|
|
234
|
+
height: 32px;
|
|
235
|
+
padding: 0;
|
|
236
|
+
gap: 0;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
:host([sq][s="sm"]) button {
|
|
240
|
+
width: 24px;
|
|
241
|
+
height: 24px;
|
|
242
|
+
padding: 0;
|
|
243
|
+
gap: 0;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
:host([sq][s="lg"]) button {
|
|
247
|
+
width: 40px;
|
|
248
|
+
height: 40px;
|
|
249
|
+
padding: 0;
|
|
250
|
+
gap: 0;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
${ie}
|
|
254
|
+
|
|
255
|
+
a {
|
|
256
|
+
display: contents;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
${_t}
|
|
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=N(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="")}},St=({render:e,html:t})=>Ce;var kt=O`
|
|
262
|
+
|
|
263
|
+
:host([d="h"]) {
|
|
264
|
+
flex-direction: row;
|
|
265
|
+
}
|
|
266
|
+
:host([d="v"]) {
|
|
267
|
+
flex-direction: column;
|
|
268
|
+
}
|
|
269
|
+
:host([d="h"]:not([ah])) {
|
|
270
|
+
justify-content: flex-start;
|
|
271
|
+
}
|
|
272
|
+
:host([d="h"][ah="c"]) {
|
|
273
|
+
justify-content: center;
|
|
274
|
+
}
|
|
275
|
+
:host([d="h"][ah="e"]) {
|
|
276
|
+
justify-content: flex-end;
|
|
277
|
+
}
|
|
278
|
+
:host([d="h"]:not([av])) {
|
|
279
|
+
align-items: flex-start;
|
|
280
|
+
}
|
|
281
|
+
:host([d="h"][av="c"]) {
|
|
282
|
+
align-items: center;
|
|
283
|
+
align-content: center;
|
|
284
|
+
}
|
|
285
|
+
:host([d="h"][av="e"]) {
|
|
286
|
+
align-items: flex-end;
|
|
287
|
+
align-content: flex-end;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
/* Default/vertical direction - horizontal alignment */
|
|
291
|
+
:host(:not([d]):not([ah])),
|
|
292
|
+
:host([d="v"]:not([ah])) {
|
|
293
|
+
align-items: flex-start;
|
|
294
|
+
}
|
|
295
|
+
:host(:not([d])[ah="c"]),
|
|
296
|
+
:host([d="v"][ah="c"]) {
|
|
297
|
+
align-items: center;
|
|
298
|
+
}
|
|
299
|
+
:host(:not([d])[ah="e"]),
|
|
300
|
+
:host([d="v"][ah="e"]) {
|
|
301
|
+
align-items: flex-end;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
:host(:not([d]):not([av])),
|
|
305
|
+
:host([d="v"]:not([av])) {
|
|
306
|
+
justify-content: flex-start;
|
|
307
|
+
}
|
|
308
|
+
:host(:not([d])[av="c"]),
|
|
309
|
+
:host([d="v"][av="c"]) {
|
|
310
|
+
justify-content: center;
|
|
311
|
+
}
|
|
312
|
+
:host(:not([d])[av="e"]),
|
|
313
|
+
:host([d="v"][av="e"]) {
|
|
314
|
+
justify-content: flex-end;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
@media screen and (max-width: 640px) {
|
|
318
|
+
:host([s-d="v"]) {
|
|
319
|
+
flex-direction: column;
|
|
320
|
+
}
|
|
321
|
+
:host([s-d="h"]) {
|
|
322
|
+
flex-direction: row;
|
|
323
|
+
}
|
|
324
|
+
:host([s-d="h"][s-av="c"]) {
|
|
325
|
+
align-items: center;
|
|
326
|
+
align-content: center;
|
|
327
|
+
}
|
|
328
|
+
:host([s-d="v"][s-av="c"]) {
|
|
329
|
+
justify-content: center;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
`;var jr={cur:{p:"pointer",m:"move",grab:"grab",grabbing:"grabbing"}},V=B(jr);var Et=O`
|
|
333
|
+
:host([sh]:not([sv])) {
|
|
334
|
+
overflow-x: scroll;
|
|
335
|
+
flex-wrap: nowrap;
|
|
336
|
+
}
|
|
337
|
+
:host([sv]:not([sh])) {
|
|
338
|
+
overflow-y: scroll;
|
|
339
|
+
flex-wrap: nowrap;
|
|
340
|
+
}
|
|
341
|
+
:host([sh][sv]) {
|
|
342
|
+
overflow: scroll;
|
|
343
|
+
flex-wrap: nowrap;
|
|
344
|
+
}
|
|
345
|
+
:host([overflow="hidden"]) {
|
|
346
|
+
overflow: hidden;
|
|
347
|
+
flex-wrap: nowrap;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
`;var pe={xs:"--border-width-xs",sm:"--border-width-sm",md:"--border-width-md",lg:"--border-width-lg",xl:"--border-width-xl"},Pr={bgc:{pr:`
|
|
351
|
+
background-color: var(--primary);
|
|
352
|
+
`,se:`
|
|
353
|
+
background-color: var(--secondary);
|
|
354
|
+
`,de:`
|
|
355
|
+
background-color: var(--destructive);
|
|
356
|
+
`,fg:`
|
|
357
|
+
background-color: var(--foreground);
|
|
358
|
+
`,bg:`
|
|
359
|
+
background-color: var(--background);
|
|
360
|
+
`,mu:`
|
|
361
|
+
background-color: var(--muted);
|
|
362
|
+
`,ac:`
|
|
363
|
+
background-color: var(--accent);
|
|
364
|
+
`,bo:`
|
|
365
|
+
background-color: var(--border);
|
|
366
|
+
`},pos:{rel:"relative",abs:"absolute",fix:"fixed"},cor:{full:`
|
|
367
|
+
top: 0;
|
|
368
|
+
right: 0;
|
|
369
|
+
bottom: 0;
|
|
370
|
+
left: 0;
|
|
371
|
+
height: 100%;
|
|
372
|
+
`,top:`
|
|
373
|
+
top: 0;
|
|
374
|
+
right: 0;
|
|
375
|
+
left: 0;
|
|
376
|
+
`,right:`
|
|
377
|
+
top: 0;
|
|
378
|
+
right: 0;
|
|
379
|
+
bottom: 0;
|
|
380
|
+
height: 100%;
|
|
381
|
+
`,bottom:`
|
|
382
|
+
right: 0;
|
|
383
|
+
bottom: 0;
|
|
384
|
+
left: 0;
|
|
385
|
+
`,left:`
|
|
386
|
+
bottom: 0;
|
|
387
|
+
left: 0;
|
|
388
|
+
top: 0;
|
|
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:pe,bwt:pe,bwr:pe,bwb:pe,bwl:pe,bc:{pr:"--primary",se:"--secondary",de:"--destructive",fg:"--foreground",bg:"--background",mu:"--muted",ac:"--accent",bo:"--border"},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"}},ue=B(Pr);var Dr={mt:$,mr:$,mb:$,ml:$,m:$,mh:$,mv:$},M=B(Dr);var Oe=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
391
|
+
slot {
|
|
392
|
+
display: contents;
|
|
393
|
+
}
|
|
394
|
+
:host {
|
|
395
|
+
display: flex;
|
|
396
|
+
flex-direction: column;
|
|
397
|
+
align-self: auto;
|
|
398
|
+
align-content: flex-start;
|
|
399
|
+
border-style: solid;
|
|
400
|
+
border-width: 0;
|
|
401
|
+
box-sizing: border-box;
|
|
402
|
+
border-color: var(--border);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
:host([fw="w"]) {
|
|
406
|
+
flex-wrap: wrap;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
${se}
|
|
410
|
+
${Et}
|
|
411
|
+
${kt}
|
|
412
|
+
${M}
|
|
413
|
+
${V}
|
|
414
|
+
${ue}
|
|
415
|
+
${ie}
|
|
416
|
+
|
|
417
|
+
:host([href]) {
|
|
418
|
+
cursor: pointer;
|
|
419
|
+
position: relative;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
:host([href]) a {
|
|
423
|
+
position: absolute;
|
|
424
|
+
top: 0;
|
|
425
|
+
left: 0;
|
|
426
|
+
right: 0;
|
|
427
|
+
bottom: 0;
|
|
428
|
+
z-index: 1;
|
|
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",...q([...U,"wh","w","h","hidden","sh","sv"])]}_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=N(o===null?this.getAttribute(a("w")):o),d=N(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),g=this.getAttribute(a("z"));g!==null&&(this._styles[n]["z-index"]=g),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),d==="f"?this._styles[n].height="100%":d!==void 0&&(this._styles[n].height=d,this._styles[n]["min-height"]=d,this._styles[n]["max-height"]=d),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="flex !important")});let i=J(this._styles);i!==this._lastStyleString&&(this._styleElement.textContent=i,this._lastStyleString=i)}},At=({render:e,html:t})=>Oe;var Vr={ta:{s:"start",c:"center",e:"end",j:"justify"},s:{h1:`
|
|
431
|
+
font-size: var(--h1-font-size);
|
|
432
|
+
font-weight: var(--h1-font-weight);
|
|
433
|
+
line-height: var(--h1-line-height);
|
|
434
|
+
letter-spacing: var(--h1-letter-spacing);
|
|
435
|
+
`,h2:`
|
|
436
|
+
font-size: var(--h2-font-size);
|
|
437
|
+
font-weight: var(--h2-font-weight);
|
|
438
|
+
line-height: var(--h2-line-height);
|
|
439
|
+
letter-spacing: var(--h2-letter-spacing);
|
|
440
|
+
`,h3:`
|
|
441
|
+
font-size: var(--h3-font-size);
|
|
442
|
+
font-weight: var(--h3-font-weight);
|
|
443
|
+
line-height: var(--h3-line-height);
|
|
444
|
+
letter-spacing: var(--h3-letter-spacing);
|
|
445
|
+
`,h4:`
|
|
446
|
+
font-size: var(--h4-font-size);
|
|
447
|
+
font-weight: var(--h4-font-weight);
|
|
448
|
+
line-height: var(--h4-line-height);
|
|
449
|
+
letter-spacing: var(--h4-letter-spacing);
|
|
450
|
+
`,lg:`
|
|
451
|
+
font-size: var(--lg-font-size);
|
|
452
|
+
font-weight: var(--lg-font-weight);
|
|
453
|
+
line-height: var(--lg-line-height);
|
|
454
|
+
letter-spacing: var(--lg-letter-spacing);
|
|
455
|
+
`,md:`
|
|
456
|
+
font-size: var(--md-font-size);
|
|
457
|
+
font-weight: var(--md-font-weight);
|
|
458
|
+
line-height: var(--md-line-height);
|
|
459
|
+
letter-spacing: var(--md-letter-spacing);
|
|
460
|
+
`,sm:`
|
|
461
|
+
font-size: var(--sm-font-size);
|
|
462
|
+
font-weight: var(--sm-font-weight);
|
|
463
|
+
line-height: var(--sm-line-height);
|
|
464
|
+
letter-spacing: var(--sm-letter-spacing);
|
|
465
|
+
`,xs:`
|
|
466
|
+
font-size: var(--xs-font-size);
|
|
467
|
+
font-weight: var(--xs-font-weight);
|
|
468
|
+
line-height: var(--xs-line-height);
|
|
469
|
+
letter-spacing: var(--xs-letter-spacing);
|
|
470
|
+
`}},$t=B(Vr);var Mr={c:{fg:"--foreground",de:"--destructive","pr-fg":"--primary-foreground","se-fg":"--secondary-foreground","mu-fg":"--muted-foreground","ac-fg":"--accent-foreground"}},fe=B(Mr);var Ie=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
471
|
+
:host {
|
|
472
|
+
display: block;
|
|
473
|
+
font-size: var(--md-font-size);
|
|
474
|
+
font-weight: var(--md-font-weight);
|
|
475
|
+
line-height: var(--md-line-height);
|
|
476
|
+
letter-spacing: var(--md-letter-spacing);
|
|
477
|
+
}
|
|
478
|
+
slot {
|
|
479
|
+
display: contents;
|
|
480
|
+
}
|
|
481
|
+
:host ::slotted(a) {
|
|
482
|
+
text-decoration: var(--anchor-text-decoration);
|
|
483
|
+
color: var(--anchor-color);
|
|
484
|
+
}
|
|
485
|
+
:host ::slotted(a:hover) {
|
|
486
|
+
text-decoration: var(--anchor-text-decoration-hover);
|
|
487
|
+
color: var(--anchor-color-hover);
|
|
488
|
+
}
|
|
489
|
+
:host([href]) {
|
|
490
|
+
cursor: pointer;
|
|
491
|
+
position: relative;
|
|
492
|
+
}
|
|
493
|
+
:host([href]) a {
|
|
494
|
+
position: absolute;
|
|
495
|
+
top: 0;
|
|
496
|
+
left: 0;
|
|
497
|
+
right: 0;
|
|
498
|
+
bottom: 0;
|
|
499
|
+
z-index: 1;
|
|
500
|
+
}
|
|
501
|
+
${$t}
|
|
502
|
+
${fe}
|
|
503
|
+
${M}
|
|
504
|
+
${V}
|
|
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=N(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)}},Ct=({render:e,html:t})=>Ie;var Te=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
506
|
+
:host {
|
|
507
|
+
border-style: solid;
|
|
508
|
+
box-sizing: border-box;
|
|
509
|
+
overflow: hidden;
|
|
510
|
+
border-width: 0;
|
|
511
|
+
}
|
|
512
|
+
slot {
|
|
513
|
+
display: contents;
|
|
514
|
+
}
|
|
515
|
+
:host([of="con"]) img {
|
|
516
|
+
object-fit: contain;
|
|
517
|
+
}
|
|
518
|
+
:host([of="cov"]) img {
|
|
519
|
+
object-fit: cover;
|
|
520
|
+
}
|
|
521
|
+
:host([of="none"]) img {
|
|
522
|
+
object-fit: none;
|
|
523
|
+
}
|
|
524
|
+
img {
|
|
525
|
+
height: 100%;
|
|
526
|
+
width: 100%;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
${ie}
|
|
530
|
+
|
|
531
|
+
a {
|
|
532
|
+
display: block;
|
|
533
|
+
height: 100%;
|
|
534
|
+
width: 100%;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
:host([href]) {
|
|
538
|
+
cursor: pointer;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
${ue}
|
|
542
|
+
${M}
|
|
543
|
+
${V}
|
|
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 q([...U,"key","src","href","target","wh","w","h","hidden","height","width"])}_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=N(o===null?this.getAttribute(a("w")):o),d=N(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("o")),g=this.getAttribute(a("z"));g!==null&&(this._styles[n]["z-index"]=g),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),d==="f"?this._styles[n].height="100%":d!==void 0&&(this._styles[n].height=d,this._styles[n]["min-height"]=d,this._styles[n]["max-height"]=d),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=J(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()}},Ot=({render:e,html:t})=>Te;var It=O`
|
|
545
|
+
:host([pt="xs"]) svg {
|
|
546
|
+
padding-top: var(--spacing-xs);
|
|
547
|
+
}
|
|
548
|
+
:host([pt="sm"]) svg {
|
|
549
|
+
padding-top: var(--spacing-sm);
|
|
550
|
+
}
|
|
551
|
+
:host([pt="md"]) svg {
|
|
552
|
+
padding-top: var(--spacing-md);
|
|
553
|
+
}
|
|
554
|
+
:host([pt="lg"]) svg {
|
|
555
|
+
padding-top: var(--spacing-lg);
|
|
556
|
+
}
|
|
557
|
+
:host([pt="xl"]) svg {
|
|
558
|
+
padding-top: var(--spacing-xl);
|
|
559
|
+
}
|
|
560
|
+
:host([pr="xs"]) svg {
|
|
561
|
+
padding-right: var(--spacing-xs);
|
|
562
|
+
}
|
|
563
|
+
:host([pr="sm"]) svg {
|
|
564
|
+
padding-right: var(--spacing-sm);
|
|
565
|
+
}
|
|
566
|
+
:host([pr="md"]) svg {
|
|
567
|
+
padding-right: var(--spacing-md);
|
|
568
|
+
}
|
|
569
|
+
:host([pr="lg"]) svg {
|
|
570
|
+
padding-right: var(--spacing-lg);
|
|
571
|
+
}
|
|
572
|
+
:host([pr="xl"]) svg {
|
|
573
|
+
padding-right: var(--spacing-xl);
|
|
574
|
+
}
|
|
575
|
+
:host([pb="xs"]) svg {
|
|
576
|
+
padding-bottom: var(--spacing-xs);
|
|
577
|
+
}
|
|
578
|
+
:host([pb="sm"]) svg {
|
|
579
|
+
padding-bottom: var(--spacing-sm);
|
|
580
|
+
}
|
|
581
|
+
:host([pb="md"]) svg {
|
|
582
|
+
padding-bottom: var(--spacing-md);
|
|
583
|
+
}
|
|
584
|
+
:host([pb="lg"]) svg {
|
|
585
|
+
padding-bottom: var(--spacing-lg);
|
|
586
|
+
}
|
|
587
|
+
:host([pb="xl"]) svg {
|
|
588
|
+
padding-bottom: var(--spacing-xl);
|
|
589
|
+
}
|
|
590
|
+
:host([pl="xs"]) svg {
|
|
591
|
+
padding-left: var(--spacing-xs);
|
|
592
|
+
}
|
|
593
|
+
:host([pl="sm"]) svg {
|
|
594
|
+
padding-left: var(--spacing-sm);
|
|
595
|
+
}
|
|
596
|
+
:host([pl="md"]) svg {
|
|
597
|
+
padding-left: var(--spacing-md);
|
|
598
|
+
}
|
|
599
|
+
:host([pl="lg"]) svg {
|
|
600
|
+
padding-left: var(--spacing-lg);
|
|
601
|
+
}
|
|
602
|
+
:host([pl="xl"]) svg {
|
|
603
|
+
padding-left: var(--spacing-xl);
|
|
604
|
+
}
|
|
605
|
+
:host([p="xs"]) svg {
|
|
606
|
+
padding: var(--spacing-xs);
|
|
607
|
+
}
|
|
608
|
+
:host([p="sm"]) svg {
|
|
609
|
+
padding: var(--spacing-sm);
|
|
610
|
+
}
|
|
611
|
+
:host([p="md"]) svg {
|
|
612
|
+
padding: var(--spacing-md);
|
|
613
|
+
}
|
|
614
|
+
:host([p="lg"]) svg {
|
|
615
|
+
padding: var(--spacing-lg);
|
|
616
|
+
}
|
|
617
|
+
:host([p="xl"]) svg {
|
|
618
|
+
padding: var(--spacing-xl);
|
|
619
|
+
}
|
|
620
|
+
:host([ph="xs"]) svg {
|
|
621
|
+
padding-left: var(--spacing-xs);
|
|
622
|
+
padding-right: var(--spacing-xs);
|
|
623
|
+
}
|
|
624
|
+
:host([ph="sm"]) svg {
|
|
625
|
+
padding-left: var(--spacing-sm);
|
|
626
|
+
padding-right: var(--spacing-sm);
|
|
627
|
+
}
|
|
628
|
+
:host([ph="md"]) svg {
|
|
629
|
+
padding-left: var(--spacing-md);
|
|
630
|
+
padding-right: var(--spacing-md);
|
|
631
|
+
}
|
|
632
|
+
:host([ph="lg"]) svg {
|
|
633
|
+
padding-left: var(--spacing-lg);
|
|
634
|
+
padding-right: var(--spacing-lg);
|
|
635
|
+
}
|
|
636
|
+
:host([ph="xl"]) svg {
|
|
637
|
+
padding-left: var(--spacing-xl);
|
|
638
|
+
padding-right: var(--spacing-xl);
|
|
639
|
+
}
|
|
640
|
+
:host([pv="xs"]) svg {
|
|
641
|
+
padding-top: var(--spacing-xs);
|
|
642
|
+
padding-bottom: var(--spacing-xs);
|
|
643
|
+
}
|
|
644
|
+
:host([pv="sm"]) svg {
|
|
645
|
+
padding-top: var(--spacing-sm);
|
|
646
|
+
padding-bottom: var(--spacing-sm);
|
|
647
|
+
}
|
|
648
|
+
:host([pv="md"]) svg {
|
|
649
|
+
padding-top: var(--spacing-md);
|
|
650
|
+
padding-bottom: var(--spacing-md);
|
|
651
|
+
}
|
|
652
|
+
:host([pv="lg"]) svg {
|
|
653
|
+
padding-top: var(--spacing-lg);
|
|
654
|
+
padding-bottom: var(--spacing-lg);
|
|
655
|
+
}
|
|
656
|
+
:host([pv="xl"]) svg {
|
|
657
|
+
padding-top: var(--spacing-xl);
|
|
658
|
+
padding-bottom: var(--spacing-xl);
|
|
659
|
+
}
|
|
660
|
+
`;var Ne=class e extends HTMLElement{static styleSheet=null;static _icons={};static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
661
|
+
:host {
|
|
662
|
+
color: var(--foreground);
|
|
663
|
+
}
|
|
664
|
+
${fe}
|
|
665
|
+
${It}
|
|
666
|
+
${se}
|
|
667
|
+
${V}
|
|
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=N(t===null?this.getAttribute("w"):t),s=N(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=""}},Tt=({render:e,html:t})=>Ne;var Le=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
669
|
+
:host {
|
|
670
|
+
display: contents;
|
|
671
|
+
}
|
|
672
|
+
input {
|
|
673
|
+
background-color: var(--background);
|
|
674
|
+
font-size: var(--sm-font-size);
|
|
675
|
+
font-weight: var(--sm-font-weight);
|
|
676
|
+
line-height: var(--sm-line-height);
|
|
677
|
+
letter-spacing: var(--sm-letter-spacing);
|
|
678
|
+
border: 1px solid var(--ring);
|
|
679
|
+
border-radius: var(--border-radius-lg);
|
|
680
|
+
padding-left: var(--spacing-md);
|
|
681
|
+
padding-right: var(--spacing-md);
|
|
682
|
+
height: 32px;
|
|
683
|
+
color: var(--foreground);
|
|
684
|
+
outline: none;
|
|
685
|
+
}
|
|
686
|
+
:host([s="sm"]) input {
|
|
687
|
+
font-size: var(--xs-font-size);
|
|
688
|
+
font-weight: var(--xs-font-weight);
|
|
689
|
+
line-height: var(--xs-line-height);
|
|
690
|
+
letter-spacing: var(--xs-letter-spacing);
|
|
691
|
+
padding-left: var(--spacing-sm);
|
|
692
|
+
padding-right: var(--spacing-sm);
|
|
693
|
+
height: 24px;
|
|
694
|
+
}
|
|
695
|
+
input:focus {
|
|
696
|
+
border-color: var(--foreground);
|
|
697
|
+
}
|
|
698
|
+
input:disabled {
|
|
699
|
+
cursor: not-allowed;
|
|
700
|
+
}
|
|
701
|
+
${M}
|
|
702
|
+
${V}
|
|
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("keydown",this._onChange)}static get observedAttributes(){return["key","type","placeholder","disabled","s",...q([...U,"wh","w","h","hidden","visible","op","z"])]}get value(){return this._inputElement.value}_onChange=t=>{this.dispatchEvent(new CustomEvent("input-keydown",{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=N(o===null?this.getAttribute(a("w")):o),d=N(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),g=this.getAttribute(a("z"));g!==null&&(this._styles[n]["z-index"]=g),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),d==="f"?this._styles[n].height="100%":d!==void 0&&(this._styles[n].height=d,this._styles[n]["min-height"]=d,this._styles[n]["max-height"]=d),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=J(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})=>Le;var je=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
704
|
+
:host {
|
|
705
|
+
display: contents;
|
|
706
|
+
}
|
|
707
|
+
textarea {
|
|
708
|
+
font-family: inherit;
|
|
709
|
+
background-color: var(--background);
|
|
710
|
+
font-size: var(--sm-font-size);
|
|
711
|
+
font-weight: var(--sm-font-weight);
|
|
712
|
+
line-height: var(--sm-line-height);
|
|
713
|
+
letter-spacing: var(--sm-letter-spacing);
|
|
714
|
+
border: 1px solid var(--ring);
|
|
715
|
+
border-radius: var(--border-radius-lg);
|
|
716
|
+
padding-top: var(--spacing-md);
|
|
717
|
+
padding-bottom: var(--spacing-md);
|
|
718
|
+
padding-left: var(--spacing-md);
|
|
719
|
+
padding-right: var(--spacing-md);
|
|
720
|
+
color: var(--foreground);
|
|
721
|
+
outline: none;
|
|
722
|
+
}
|
|
723
|
+
textarea:focus {
|
|
724
|
+
border-color: var(--foreground);
|
|
725
|
+
}
|
|
726
|
+
${M}
|
|
727
|
+
${V}
|
|
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")}},Lt=({render:e,html:t})=>je;var Pe=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
729
|
+
:host {
|
|
730
|
+
display: contents;
|
|
731
|
+
}
|
|
732
|
+
input[type="color"] {
|
|
733
|
+
background-color: var(--background);
|
|
734
|
+
border: 1px solid var(--ring);
|
|
735
|
+
border-radius: var(--border-radius-lg);
|
|
736
|
+
padding: 2px;
|
|
737
|
+
height: 32px;
|
|
738
|
+
width: 32px;
|
|
739
|
+
cursor: pointer;
|
|
740
|
+
outline: none;
|
|
741
|
+
}
|
|
742
|
+
input[type="color"]:focus {
|
|
743
|
+
border-color: var(--foreground);
|
|
744
|
+
}
|
|
745
|
+
input[type="color"]:disabled {
|
|
746
|
+
cursor: not-allowed;
|
|
747
|
+
opacity: 0.5;
|
|
748
|
+
}
|
|
749
|
+
${M}
|
|
750
|
+
${V}
|
|
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",...q([...U,"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=N(o===null?this.getAttribute(a("w")):o),d=N(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),g=this.getAttribute(a("z"));g!==null&&(this._styles[n]["z-index"]=g),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),d==="f"?this._styles[n].height="100%":d!==void 0&&(this._styles[n].height=d,this._styles[n]["min-height"]=d,this._styles[n]["max-height"]=d),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=J(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})=>Pe;var De=class e extends HTMLElement{static styleSheet=null;static initializeStyleSheet(){e.styleSheet||(e.styleSheet=new CSSStyleSheet,e.styleSheet.replaceSync(O`
|
|
752
|
+
:host {
|
|
753
|
+
display: contents;
|
|
754
|
+
}
|
|
755
|
+
input[type="range"] {
|
|
756
|
+
-webkit-appearance: none;
|
|
757
|
+
appearance: none;
|
|
758
|
+
width: 200px;
|
|
759
|
+
height: 8px;
|
|
760
|
+
background: var(--muted);
|
|
761
|
+
border-radius: var(--border-radius-full);
|
|
762
|
+
outline: none;
|
|
763
|
+
cursor: pointer;
|
|
764
|
+
}
|
|
765
|
+
input[type="range"]::-webkit-slider-thumb {
|
|
766
|
+
-webkit-appearance: none;
|
|
767
|
+
appearance: none;
|
|
768
|
+
width: 20px;
|
|
769
|
+
height: 20px;
|
|
770
|
+
background: var(--foreground);
|
|
771
|
+
border-radius: 50%;
|
|
772
|
+
cursor: pointer;
|
|
773
|
+
transition: all 0.2s ease;
|
|
774
|
+
}
|
|
775
|
+
input[type="range"]::-moz-range-thumb {
|
|
776
|
+
width: 20px;
|
|
777
|
+
height: 20px;
|
|
778
|
+
background: var(--foreground);
|
|
779
|
+
border-radius: 50%;
|
|
780
|
+
cursor: pointer;
|
|
781
|
+
border: none;
|
|
782
|
+
transition: all 0.2s ease;
|
|
783
|
+
}
|
|
784
|
+
input[type="range"]:hover::-webkit-slider-thumb {
|
|
785
|
+
transform: scale(1.1);
|
|
786
|
+
}
|
|
787
|
+
input[type="range"]:hover::-moz-range-thumb {
|
|
788
|
+
transform: scale(1.1);
|
|
789
|
+
}
|
|
790
|
+
input[type="range"]:focus {
|
|
791
|
+
outline: 2px solid var(--ring);
|
|
792
|
+
outline-offset: 2px;
|
|
793
|
+
}
|
|
794
|
+
input[type="range"]:disabled {
|
|
795
|
+
cursor: not-allowed;
|
|
796
|
+
opacity: 0.5;
|
|
797
|
+
}
|
|
798
|
+
input[type="range"]:disabled::-webkit-slider-thumb {
|
|
799
|
+
cursor: not-allowed;
|
|
800
|
+
}
|
|
801
|
+
input[type="range"]:disabled::-moz-range-thumb {
|
|
802
|
+
cursor: not-allowed;
|
|
803
|
+
}
|
|
804
|
+
${M}
|
|
805
|
+
${V}
|
|
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",...q([...U,"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=N(o===null?this.getAttribute(a("w")):o),d=N(o===null?this.getAttribute(a("h")):o),u=this.getAttribute(a("op")),g=this.getAttribute(a("z"));g!==null&&(this._styles[n]["z-index"]=g),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),d==="f"?this._styles[n].height="100%":d!==void 0&&(this._styles[n].height=d,this._styles[n]["min-height"]=d,this._styles[n]["max-height"]=d),this.hasAttribute(a("hidden"))&&(this._styles[n].display="none !important"),this.hasAttribute(a("visible"))&&(this._styles[n].display="block !important")});let i=J(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()}},Pt=({render:e,html:t})=>De;var Ve={};P(Ve,{INITIAL_STATE:()=>zr,selectState:()=>Wr,setState:()=>Fr,toViewData:()=>Rr});var zr=Object.freeze({}),Rr=({state:e,props:t})=>({isOpen:t.isOpen,w:t.w||600,position:{x:0,y:0}}),Wr=({state:e})=>e,Fr=e=>{};var Dt={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=",{var:"w"}," br=sm"]}}],fast:!0}],fast:!0}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}};var Me={};P(Me,{handleClickDialogueOverlay:()=>Hr});var Hr=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("close-dialogue"))};var ze={};P(ze,{handleHeaderClick:()=>Br,handleItemClick:()=>Kr});var Br=(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}))},Kr=(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 Vt={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=",{var:"header.image.width"}," h=",{var:"header.image.height"}," src=",{var:"header.image.src"},' alt="',{var:"header.image.alt"},'"']}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["a href=",{var:"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=",{var:"header.image.width"}," h=",{var:"header.image.height"}," src=",{var:"header.image.src"},' alt="',{var:"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=",{var:"header.image.width"}," h=",{var:"header.image.height"}," src=",{var:"header.image.src"},' alt="',{var:"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=",{var:"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=",{var:"header.href"}," d=h av=c ah=",{var:"headerAlign"}," g=lg w=",{var:"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=",{var:"header.image.width"}," h=",{var:"header.image.height"}," src=",{var:"header.image.src"},' alt="',{var:"header.image.alt"},'"']}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["a href=",{var:"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=",{var:"header.image.width"}," h=",{var:"header.image.height"}," src=",{var:"header.image.src"},' alt="',{var:"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=",{var:"header.image.width"}," h=",{var:"header.image.height"}," src=",{var:"header.image.src"},' alt="',{var:"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=",{var:"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=",{var:"headerAlign"}," g=lg w=",{var:"headerWidth"}," cur=p"]}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view ph=",{var:"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=",{var:"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=",{var:"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=",{var:"iconSize"}," svg=",{var:"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=",{var:"firstLetterSize"}," c=fg"]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view wh=",{var:"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-",{var:"item.id"}," ",{var:"item.hrefAttr"}," h=",{var:"itemHeight"}," av=c ",{var:"itemAlignAttr"}," ph=",{var:"itemPadding"}," w=",{var:"itemWidth"}," h-bgc=",{var:"item.itemHoverBgc"}," br=lg bgc=",{var:"item.itemBgc"},' cur=p title="',{var:"item.title"},'"']}}],fast:!1}],fast:!1}],id:null}}],fast:!1}],fast:!1}}],fast:!1},parsedKey:{type:2,parts:["rtgl-view w=f ph=",{var:"headerPadding"}," pb=lg g=xs ah=",{var:"ah"}]}}],fast:!1}],fast:!1},parsedKey:{type:2,parts:["rtgl-view h=f w=",{var:"sidebarWidth"}," bwr=xs ah=",{var:"ah"}," ",{var:"containerAttrString"}]}}],fast:!1}],fast:!1}};var We={};P(We,{INITIAL_STATE:()=>Ur,selectActiveItem:()=>Xr,selectHeader:()=>Gr,selectItem:()=>Qr,setState:()=>Zr,toViewData:()=>Yr});var Ur=Object.freeze({}),qr=["id","class","style","slot"],Jr=e=>Object.entries(e).filter(([t])=>!qr.includes(t)).map(([t,r])=>`${t}=${r}`).join(" ");function Re(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 Yr=({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=Jr(r),o=r.mode||"full",l=s||{label:"",path:"",image:{src:"",alt:"",width:0,height:0}},d=i?Re(i,n):[],u=o==="full"?272:64,g=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,h=o==="shrunk-lg"?28:20,f=o==="shrunk-lg"?"md":"sm",y=o==="full",_=o==="full",m=o==="full"?"fs":"c",x=o==="full"?"":`ah=${E}`,v=o==="full"?"f":c;return{containerAttrString:a,mode:o,header:l,items:d,sidebarWidth:u,headerAlign:g,itemAlign:E,headerPadding:T,itemPadding:p,itemHeight:c,iconSize:h,firstLetterSize:f,showLabels:y,showGroupLabels:_,itemContentAlign:m,itemAlignAttr:x,itemWidth:v,headerWidth:v,selectedItemId:n,ah:o==="shrunk-lg"||o==="shrunk-md"?"c":""}},Gr=({state:e,props:t,attrs:r})=>r.header?JSON.parse(decodeURIComponent(r.header)):t.header,Xr=({state:e,props:t})=>(t.items?Re(t.items):[]).find(s=>s.active),Qr=({state:e,props:t,attrs:r},s)=>{let i=r.items?JSON.parse(decodeURIComponent(r.items)):t.items;return(i?Re(i):[]).find(a=>a.id===s)},Zr=e=>{};var Fe={};P(Fe,{handleClickOverlay:()=>es});var es=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("click-overlay"))};var Mt={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: ',{var:"position.x"},"px; top: ",{var:"position.y"},'px;" id=floatingElement bw=xs p=md bgc=mu']}}],fast:!0}],fast:!0}],id:null}}],fast:!1}],fast:!1}};var He={};P(He,{INITIAL_STATE:()=>ts,selectState:()=>ss,toViewData:()=>rs});var ts=Object.freeze({}),rs=({state:e,props:t})=>({isOpen:t.isOpen,position:t.position}),ss=({state:e})=>e;var Be={};P(Be,{INITIAL_STATE:()=>is,selectFormValues:()=>ps,selectState:()=>ls,setDefaultValues:()=>ds,setFormFieldValue:()=>hs,setState:()=>cs,toViewData:()=>os});var is=Object.freeze({formValues:{}}),ns=["id","class","style","slot"],as=e=>Object.entries(e).filter(([t])=>!ns.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),os=({state:e,props:t,attrs:r})=>({containerAttrString:as(r),title:t.form?.title||"",description:t?.form?.description||"",fields:t?.form?.fields||[],actions:t?.form?.actions||{buttons:[]},formValues:e.formValues}),ls=({state:e})=>e,ps=({state:e})=>e.formValues,cs=e=>{},ds=(e,t)=>{e.formValues=t||{}},hs=(e,{fieldName:t,value:r})=>{e.formValues[t]=r};var Ke={};P(Ke,{handleActionClick:()=>fs,handleColorPickerChange:()=>ys,handleInputChange:()=>ms,handleOnMount:()=>us,handleSelectChange:()=>gs,handleSliderChange:()=>vs});var us=e=>{let{store:t,props:r}=e;t.setDefaultValues(r.defaultValues)},fs=(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()}}))},ms=(e,t)=>{let{store:r}=t,s=e.currentTarget.id.replace("input-","");s&&e.detail.value!==void 0&&r.setFormFieldValue({fieldName:s,value:e.detail.value})},gs=(e,t)=>{let{store:r}=t,s=e.currentTarget.id.replace("select-","");s&&e.detail.selectedValue!==void 0&&r.setFormFieldValue({fieldName:s,value:e.detail.selectedValue})},ys=(e,t)=>{let{store:r}=t,s=e.currentTarget.id.replace("colorpicker-","");s&&e.detail.value!==void 0&&r.setFormFieldValue({fieldName:s,value:e.detail.value})},vs=(e,t)=>{let{store:r}=t,s=e.currentTarget.id.replace("slider-","");s&&e.detail.value!==void 0&&r.setFormFieldValue({fieldName:s,value:e.detail.value})};var zt={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-keydown":{handler:"handleInputChange"}}},"select-*":{eventListeners:{"select-change":{handler:"handleSelectChange"}}},"colorpicker-*":{eventListeners:{"colorpicker-change":{handler:"handleColorPickerChange"}}},"slider-*":{eventListeners:{"slider-change":{handler:"handleSliderChange"}}}},events:{},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-",{var:"field.id"}," w=f placeholder=",{var:"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-",{var:"field.id"}," w=f .options=fields[",{var:"i"},"].options .placeholder=fields[",{var:"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-",{var:"field.id"}," value=",{var:"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-",{var:"field.id"}," min=",{var:"field.min"}," max=",{var:"field.max"}," step=",{var:"field.step"}," value=",{var:"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-",{var:"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 ",{var:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Ue={};P(Ue,{INITIAL_STATE:()=>bs,closeOptionsPopover:()=>Ss,openOptionsPopover:()=>_s,selectState:()=>xs,toViewData:()=>ws,updateSelectOption:()=>ks});var bs=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"}},xs=({state:e})=>e,_s=(e,t)=>{let{position:r}=t;e.position=r,e.isOpen=!0},Ss=e=>{e.isOpen=!1},ks=(e,t)=>{e.selectedValue=t.value,e.selectedLabel=t.label,e.isOpen=!1};var qe={};P(qe,{handleButtonClick:()=>As,handleClickOptionsPopoverOverlay:()=>$s,handleOnMount:()=>Es,handleOptionClick:()=>Cs});var Es=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())}},As=(e,t)=>{let{store:r,render:s,getRefIds:i}=t;r.openOptionsPopover({position:{y:e.clientY,x:e.clientX}}),s()},$s=(e,t)=>{let{store:r,render:s}=t;r.closeOptionsPopover(),s()},Cs=(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 Rt={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-",{var:"i"}," w=f h-bgc=ac ph=lg pv=md cur=p br=md bgc=",{var:"option.bgc"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}};var Je={};P(Je,{INITIAL_STATE:()=>Os,selectCurrentId:()=>Ns,selectState:()=>Ts,setContentContainer:()=>Ps,setCurrentId:()=>js,setItems:()=>Ls,toViewData:()=>Is});var Os=Object.freeze({items:[],currentId:null,contentContainer:null}),Is=({state:e})=>({items:e.items.map(t=>({...t,c:t.id===e.currentId?"fg":"mu-fg"})),currentId:e.currentId}),Ts=({state:e})=>e,Ns=({state:e})=>e.currentId,Ls=(e,t)=>{e.items=t},js=(e,t)=>{e.currentId=t},Ps=(e,t)=>{e.contentContainer=t};var Wt={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=",{var:"item.c"}," h-c=fg"]}}],fast:!0}],fast:!0},parsedKey:{type:2,parts:["rtgl-view pv=xs av=c href=",{var:"item.href"}]}}],fast:!0}],fast:!0}}],fast:!1}}],fast:!1}],fast:!1}}],fast:!1}],fast:!1}};var Ye={};P(Ye,{handleOnMount:()=>Vs});var Ft=(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())},Ds=(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),Ft(n,t),s();let o=Ft.bind(void 0,n,t);return e.addEventListener("scroll",o,{passive:!0}),()=>{e.removeEventListener("scroll",o)}},Vs=e=>{let{attrs:t}=e;requestAnimationFrame(()=>{let r=document.getElementById(t["target-id"]),s=Ds(r,e);return()=>{s()}})};var Ge={};P(Ge,{INITIAL_STATE:()=>Ms,selectPath:()=>Fs,setState:()=>Hs,toViewData:()=>Ws});var Ms=Object.freeze({}),zs=["id","class","style","slot"],Rs=e=>Object.entries(e).filter(([t])=>!zs.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:Rs(r),start:s||{label:"",image:{src:"",width:32,height:32,alt:""}}}},Fs=({props:e})=>e.start.path,Hs=e=>{};var Ht={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=",{var:"start.image.width"}," h=",{var:"start.image.height"}," src=",{var:"start.image.src"}," alt=",{var:"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=",{var:"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=",{var:"start.image.width"}," h=",{var:"start.image.height"}," src=",{var:"start.image.src"}," alt=",{var:"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=",{var:"start.image.width"}," h=",{var:"start.image.height"}," src=",{var:"start.image.src"}," alt=",{var:"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 ",{var:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Xe={};P(Xe,{handleClickStart:()=>Bs});var Bs=(e,t)=>{let{dispatchEvent:r,store:s}=t;console.log("handle click start",s.selectPath()),r(new CustomEvent("clickStart",{detail:{path:s.selectPath()}}))};var Bt={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-",{var:"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 Qe={};P(Qe,{handleClickMenuItem:()=>Us,handleClickPopoverOverlay:()=>Ks});var Ks=(e,t)=>{let{dispatchEvent:r}=t;r(new CustomEvent("click-overlay"))},Us=(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 Ze={};P(Ze,{INITIAL_STATE:()=>qs,selectState:()=>Ys,setState:()=>Gs,toViewData:()=>Js});var qs=Object.freeze({}),Js=({state:e,props:t})=>({items:t.items||[],isOpen:t.isOpen||!1,position:t.position||{x:0,y:0}}),Ys=({state:e})=>e,Gs=e=>{};var et={};P(et,{INITIAL_STATE:()=>Xs,clearSort:()=>ni,selectSortInfo:()=>si,selectState:()=>ri,setSortColumn:()=>ii,toViewData:()=>ti});var Xs=Object.freeze({sortColumn:null,sortDirection:null}),Qs=["id","class","style","slot"],Zs=e=>Object.entries(e).filter(([t])=>!Qs.includes(t)).map(([t,r])=>`${t}=${r}`).join(" "),ei=(e,t)=>{let r=t.split("."),s=e;for(let i of r){if(s==null)return null;s=s[i]}return s},ti=({state:e,props:t,attrs:r})=>{let s=Zs(r),i=t.data||{columns:[],rows:[]},n=i.rows.map((a,o)=>{let l=i.columns.map(d=>{let u=ei(a,d.key);return{key:d.key,value:u!=null?String(u):""}});return{index:o,cells:l}});return{containerAttrString:s,columns:i.columns||[],rows:n||[]}},ri=({state:e})=>e,si=({state:e})=>({column:e.sortColumn,direction:e.sortDirection}),ii=(e,{column:t,direction:r})=>{e.sortColumn=t,e.sortDirection=r},ni=e=>{e.sortColumn=null,e.sortDirection=null};var tt={};P(tt,{handleHeaderClick:()=>li,handleOnMount:()=>ai,handleRowClick:()=>oi});var ai=e=>{},oi=(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}}))},li=(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 Kt={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-",{var:"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-",{var:"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 ",{var:"containerAttrString"}]}}],fast:!1}],fast:!1}};var Xt=Symbol.for("immer-nothing"),Ut=Symbol.for("immer-draftable"),W=Symbol.for("immer-state");function K(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[W]}function X(e){return e?Qt(e)||Array.isArray(e)||!!e[Ut]||!!e.constructor?.[Ut]||be(e)||we(e):!1}var pi=Object.prototype.constructor.toString();function Qt(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)===pi}function me(e,t){ve(e)===0?Reflect.ownKeys(e).forEach(r=>{t(r,e[r],e)}):e.forEach((r,s)=>t(s,r,e))}function ve(e){let t=e[W];return t?t.type_:Array.isArray(e)?1:be(e)?2:we(e)?3:0}function it(e,t){return ve(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Zt(e,t,r){let s=ve(e);s===2?e.set(t,r):s===3?e.add(r):e[t]=r}function ci(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 G(e){return e.copy_||e.base_}function nt(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=Qt(e);if(t===!0||t==="class_only"&&!r){let s=Object.getOwnPropertyDescriptors(e);delete s[W];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 ct(e,t=!1){return xe(e)||ae(e)||!X(e)||(ve(e)>1&&(e.set=e.add=e.clear=e.delete=di),Object.freeze(e),t&&Object.entries(e).forEach(([r,s])=>ct(s,!0))),e}function di(){K(2)}function xe(e){return Object.isFrozen(e)}var hi={};function Q(e){let t=hi[e];return t||K(0,e),t}var ce;function er(){return ce}function ui(e,t){return{drafts_:[],parent_:e,immer_:t,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function qt(e,t){t&&(Q("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function at(e){ot(e),e.drafts_.forEach(fi),e.drafts_=null}function ot(e){e===ce&&(ce=e.parent_)}function Jt(e){return ce=ui(ce,e)}function fi(e){let t=e[W];t.type_===0||t.type_===1?t.revoke_():t.revoked_=!0}function Yt(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];return e!==void 0&&e!==r?(r[W].modified_&&(at(t),K(4)),X(e)&&(e=ge(t,e),t.parent_||ye(t,e)),t.patches_&&Q("Patches").generateReplacementPatches_(r[W].base_,e,t.patches_,t.inversePatches_)):e=ge(t,r,[]),at(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==Xt?e:void 0}function ge(e,t,r){if(xe(t))return t;let s=t[W];if(!s)return me(t,(i,n)=>Gt(e,s,t,i,n,r)),t;if(s.scope_!==e)return t;if(!s.modified_)return ye(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),me(n,(o,l)=>Gt(e,s,i,o,l,r,a)),ye(e,i,!1),r&&e.patches_&&Q("Patches").generatePatches_(s,r,e.patches_,e.inversePatches_)}return s.copy_}function Gt(e,t,r,s,i,n,a){if(ae(i)){let o=n&&t&&t.type_!==3&&!it(t.assigned_,s)?n.concat(s):void 0,l=ge(e,i,o);if(Zt(r,s,l),ae(l))e.canAutoFreeze_=!1;else return}else a&&r.add(i);if(X(i)&&!xe(i)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;ge(e,i),(!t||!t.scope_.parent_)&&typeof s!="symbol"&&Object.prototype.propertyIsEnumerable.call(r,s)&&ye(e,i)}}function ye(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&ct(t,r)}function mi(e,t){let r=Array.isArray(e),s={type_:r?1:0,scope_:t?t.scope_:er(),modified_:!1,finalized_:!1,assigned_:{},parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1},i=s,n=dt;r&&(i=[s],n=de);let{revoke:a,proxy:o}=Proxy.revocable(i,n);return s.draft_=o,s.revoke_=a,o}var dt={get(e,t){if(t===W)return e;let r=G(e);if(!it(r,t))return gi(e,r,t);let s=r[t];return e.finalized_||!X(s)?s:s===rt(e.base_,t)?(st(e),e.copy_[t]=pt(s,e)):s},has(e,t){return t in G(e)},ownKeys(e){return Reflect.ownKeys(G(e))},set(e,t,r){let s=tr(G(e),t);if(s?.set)return s.set.call(e.draft_,r),!0;if(!e.modified_){let i=rt(G(e),t),n=i?.[W];if(n&&n.base_===r)return e.copy_[t]=r,e.assigned_[t]=!1,!0;if(ci(r,i)&&(r!==void 0||it(e.base_,t)))return!0;st(e),lt(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 rt(e.base_,t)!==void 0||t in e.base_?(e.assigned_[t]=!1,st(e),lt(e)):delete e.assigned_[t],e.copy_&&delete e.copy_[t],!0},getOwnPropertyDescriptor(e,t){let r=G(e),s=Reflect.getOwnPropertyDescriptor(r,t);return s&&{writable:!0,configurable:e.type_!==1||t!=="length",enumerable:s.enumerable,value:r[t]}},defineProperty(){K(11)},getPrototypeOf(e){return ne(e.base_)},setPrototypeOf(){K(12)}},de={};me(dt,(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 dt.set.call(this,e[0],t,r,e[0])};function rt(e,t){let r=e[W];return(r?G(r):e)[t]}function gi(e,t,r){let s=tr(t,r);return s?"value"in s?s.value:s.get?.call(e.draft_):void 0}function tr(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 lt(e){e.modified_||(e.modified_=!0,e.parent_&<(e.parent_))}function st(e){e.copy_||(e.copy_=nt(e.base_,e.scope_.immer_.useStrictShallowCopy_))}var yi=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,...d){return a.produce(l,u=>r.call(this,u,...d))}}typeof r!="function"&&K(6),s!==void 0&&typeof s!="function"&&K(7);let i;if(X(t)){let n=Jt(this),a=pt(t,void 0),o=!0;try{i=r(a),o=!1}finally{o?at(n):ot(n)}return qt(n,s),Yt(i,n)}else if(!t||typeof t!="object"){if(i=r(t),i===void 0&&(i=t),i===Xt&&(i=void 0),this.autoFreeze_&&ct(i,!0),s){let n=[],a=[];Q("Patches").generateReplacementPatches_(t,i,n,a),s(n,a)}return i}else K(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){X(e)||K(8),ae(e)&&(e=vi(e));let t=Jt(this),r=pt(e,void 0);return r[W].isManual_=!0,ot(t),r}finishDraft(e,t){let r=e&&e[W];(!r||!r.isManual_)&&K(9);let{scope_:s}=r;return qt(s,t),Yt(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=Q("Patches").applyPatches_;return ae(e)?s(e,t):this.produce(e,i=>s(i,t))}};function pt(e,t){let r=be(e)?Q("MapSet").proxyMap_(e,t):we(e)?Q("MapSet").proxySet_(e,t):mi(e,t);return(t?t.scope_:er()).drafts_.push(r),r}function vi(e){return ae(e)||K(10,e),rr(e)}function rr(e){if(!X(e)||xe(e))return e;let t=e[W],r;if(t){if(!t.modified_)return t.base_;t.finalized_=!0,r=nt(e,t.scope_.immer_.useStrictShallowCopy_)}else r=nt(e,!0);return me(r,(s,i)=>{Zt(r,s,rr(i))}),t&&(t.finalized_=!1),r}var F=new yi,sr=F.produce,Fa=F.produceWithPatches.bind(F),Ha=F.setAutoFreeze.bind(F),Ba=F.setUseStrictShallowCopy.bind(F),Ka=F.applyPatches.bind(F),Ua=F.createDraft.bind(F),qa=F.finishDraft.bind(F);var L={LITERAL:0,VARIABLE:1,INTERPOLATION:2,FUNCTION:3,BINARY:4,UNARY:5,CONDITIONAL:6,LOOP:7,OBJECT:8,ARRAY:9},H={EQ:0,NEQ:1,GT:2,LT:3,GTE:4,LTE:5,AND:6,OR:7,IN:8},_e={NOT:0};var bi=e=>{let{ast:t,functions:r,data:s}=e;return D(t,r,s,{})},D=(e,t,r,s)=>{switch(e.type){case L.LITERAL:return e.value;case L.VARIABLE:return ht(e.path,r,s);case L.INTERPOLATION:return wi(e.parts,t,r,s);case L.FUNCTION:return ir(e,t,r,s);case L.BINARY:return nr(e,t,r,s);case L.UNARY:return ar(e,t,r,s);case L.CONDITIONAL:return xi(e,t,r,s);case L.LOOP:return _i(e,t,r,s);case L.OBJECT:return Si(e,t,r,s);case L.ARRAY:return ki(e,t,r,s);default:throw new Error(`Unknown node type: ${e.type}`)}},ht=(e,t,r)=>{if(!e)return;if(r.hasOwnProperty(e))return r[e];let s=e.split("."),i=t;for(let n of s){if(i==null)return;r.hasOwnProperty(n)?i=r[n]:i=i[n]}return i},wi=(e,t,r,s)=>{let i="";for(let n of e)if(typeof n=="string")i+=n;else if(n.var){let a=ht(n.var,r,s);i+=a!=null?String(a):""}else if(n.func){let a=t[n.func]?.(...n.args||[]);i+=a!=null?String(a):""}return i},ir=(e,t,r,s)=>{let i=t[e.name];if(!i)throw new Error(`Function '${e.name}' is not defined`);let n=e.args.map(a=>D(a,t,r,s));return i(...n)},Se=(e,t,r,s)=>{switch(e.type){case L.VARIABLE:return ht(e.path,r,s);case L.LITERAL:return e.value;case L.BINARY:return nr(e,t,r,s);case L.UNARY:return ar(e,t,r,s);case L.FUNCTION:return ir(e,t,r,s);default:return D(e,t,r,s)}},nr=(e,t,r,s)=>{if(e.op===H.AND||e.op===H.OR){let a=Se(e.left,t,r,s),o=Se(e.right,t,r,s);switch(e.op){case H.AND:return a&&o;case H.OR:return a||o}}let i=D(e.left,t,r,s),n=D(e.right,t,r,s);switch(e.op){case H.EQ:return i==n;case H.NEQ:return i!=n;case H.GT:return i>n;case H.LT:return i<n;case H.GTE:return i>=n;case H.LTE:return i<=n;case H.IN:return Array.isArray(n)?n.includes(i):!1;default:throw new Error(`Unknown binary operator: ${e.op}`)}},ar=(e,t,r,s)=>{let i=e.op===_e.NOT?Se(e.operand,t,r,s):D(e.operand,t,r,s);switch(e.op){case _e.NOT:return!i;default:throw new Error(`Unknown unary operator: ${e.op}`)}},xi=(e,t,r,s)=>{for(let i=0;i<e.conditions.length;i++){let n=e.conditions[i];if(n===null||Se(n,t,r,s))return D(e.bodies[i],t,r,s)}return{}},_i=(e,t,r,s)=>{let i=D(e.iterable,t,r,s);if(!Array.isArray(i))return[];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=D(e.body,t,r,o);Array.isArray(l)&&l.length===1?n.push(l[0]):n.push(l)}return n},Si=(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=D(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===L.OBJECT&&l.properties){let d=l.properties.find(u=>u.key.startsWith("$for "));if(d){let u=D(d.value,t,r,s);u!==void 0&&(i[o.key]=u)}else{let u=D(o.value,t,r,s);u!==void 0&&(i[o.key]=u)}}else{let d=o.parsedKey?D(o.parsedKey,t,r,s):o.key,u=D(o.value,t,r,s);u!==void 0&&(i[d]=u)}}return i},ki=(e,t,r,s)=>{let i=[];for(let n of e.items)if(n.type===L.LOOP){let a=D(n,t,r,s);i.push(a)}else i.push(D(n,t,r,s));return i},ke=bi;var Ee=e=>Array.isArray(e)?e.reduce((t,r)=>{if(Array.isArray(r))t.push(...Ee(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]:Ee(n)})}}t.push(r)}return t},[]):e;var $i=(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)},or=({h:e,template:t,viewData:r,refs:s,handlers:i})=>{let n=ke({ast:t,data:r}),a=Ee(n),o=Ci({h:e,items:a,refs:s,handlers:i,viewData:r});return e("div",{style:{display:"contents"}},o)},Ci=({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,d)=>{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[g,E]=u[0];if(!isNaN(Number(g)))return Array.isArray(E)?n(E,`${o}.${g}`):typeof E=="object"&&E!==null&&Object.entries(E).length>0?n([E],`${o}.${g}`):String(E);u.length>1&&console.warn("Item has multiple keys, processing only the first:",g);let T,p,c=g.indexOf(" ");c===-1?(T=g,p=""):(T=g.substring(0,c),p=g.substring(c+1).trim());let h=T.split(/[.#]/)[0],f=h.includes("-"),y={},_={};if(p){let S=/(\S+?)=(?:\"([^\"]*)\"|\'([^\']*)\'|(\S+))/g,b;for(;(b=S.exec(p))!==null;)if(b[1].startsWith(".")){let I=b[1].substring(1),j=b[4];_[I]=$i(i,j)}else y[b[1]]=b[2]||b[3]||b[4]}let m=T.match(/#([^.#\s]+)/);m&&!Object.prototype.hasOwnProperty.call(y,"id")&&(y.id=m[1]);let x=null;y.id?x=y.id:f&&(x=h);let v=Object.create(null),k=null;if(f)k=h;else{let S=T.match(/\.([^.#]+)/g);S&&S.forEach(I=>{let j=I.substring(1);v[j]=!0});let b=T.match(/#([^.#\s]+)/);b&&(k=b[1])}let w;typeof E=="string"||typeof E=="number"?w=String(E):Array.isArray(E)?w=n(E,`${o}.${g}`):w=[],k&&!f&&(y.id=k);let A=Object.create(null);if(x&&r){let S=[];if(Object.keys(r).forEach(b=>{if(b.includes("*")){let I="^"+b.replace(/[.*+?^${}()|[\\\]\\]/g,"\\$&").replace(/\\\*/g,".*")+"$";try{new RegExp(I).test(x)&&S.push(b)}catch(j){console.warn(`[Parser] Invalid regex pattern created from refKey '${b}': ${I}`,j)}}else x===b&&S.push(b)}),S.length>0){S.sort((I,j)=>{let R=!I.includes("*"),te=!j.includes("*");return R&&!te?-1:!R&&te?1:j.length-I.length});let b=S[0];if(r[b]&&r[b].eventListeners){let I=r[b].eventListeners;Object.entries(I).forEach(([j,R])=>{R.handler&&s[R.handler]?A[j]=te=>{s[R.handler](te)}:R.handler&&console.warn(`[Parser] Handler '${R.handler}' for refKey '${b}' (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}.${d}`:String(d);if(C.key=`${T}-${S}`,Object.keys(_).length>0){let b=JSON.stringify(_).substring(0,50);C.key+=`-${b}`}}Object.keys(y).length>0&&(C.attrs=y),Object.keys(v).length>0&&(C.class=v),Object.keys(A).length>0&&(C.on=A),Object.keys(_).length>0&&(C.props=_,f&&(C.hook={update:(S,b)=>{let I=S.data?.props||{},j=b.data?.props||{},R=S.data?.attrs||{},te=b.data?.attrs||{},Ar=JSON.stringify(I)!==JSON.stringify(j),$r=JSON.stringify(R)!==JSON.stringify(te);if(Ar||$r){let re=b.elm;re&&re.render&&typeof re.render=="function"&&(re.setAttribute("isDirty","true"),requestAnimationFrame(()=>{re.render(),re.removeAttribute("isDirty")}))}}}));try{return e(h,C,w)}catch(S){return console.error("Error creating virtual node:",S,{tagName:h,snabbdomData:C,childrenOrText:w}),e("div",{},["Error creating element"])}}).filter(Boolean)}return n(t)};var Oi=(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,d])=>{let u=s(d);return` ${l} {
|
|
808
|
+
${u.split(`
|
|
809
|
+
`).map(g=>g?` ${g}`:"").join(`
|
|
810
|
+
`)}
|
|
811
|
+
}`}).join(`
|
|
812
|
+
`);return`${n} {
|
|
813
|
+
${o}
|
|
814
|
+
}`}else{let o=s(a);return`${n} {
|
|
815
|
+
${o}
|
|
816
|
+
}`}};return Object.entries(t).forEach(([n,a])=>{let o=i(n,a);o&&(r+=(r?`
|
|
817
|
+
|
|
818
|
+
`:"")+o)}),r},Ii=e=>{let t=e.map(r=>r.subscribe());return()=>{for(let r of t)r&&typeof r.unsubscribe=="function"&&r.unsubscribe()}};function Ti(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 Ni(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 ut=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
|
+
a, a:link, a:visited, a:hover, a:active {
|
|
820
|
+
display: contents;
|
|
821
|
+
color: inherit;
|
|
822
|
+
text-decoration: none;
|
|
823
|
+
background: none;
|
|
824
|
+
border: none;
|
|
825
|
+
padding: 0;
|
|
826
|
+
margin: 0;
|
|
827
|
+
font: inherit;
|
|
828
|
+
cursor: pointer;
|
|
829
|
+
}
|
|
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=Ii(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=or({h:this.h,template:this.template,viewData:this.viewData,refs:this.refs,handlers:this.transformedHandlers}),r={},s=i=>{i.data?.attrs&&i.data.attrs.id&&(r[i.data.attrs.id]=i),i.children&&i.children.forEach(s)};s(t),this.refIds=r,this._oldVNode?this._oldVNode=this.patch(this._oldVNode,t):this._oldVNode=this.patch(this.renderTarget,t)}catch(t){console.error("Error during patching:",t)}}},Li=(e,t,r)=>{let{INITIAL_STATE:s,toViewData:i,...n}=e,a={},o={},l=structuredClone(s);return Object.entries(n).forEach(([d,u])=>{d.startsWith("select")?a[d]=(...g)=>u({state:l,props:t,attrs:r},...g):o[d]=g=>(l=sr(l,E=>u(E,g)),l)}),{toViewData:()=>i({state:l,props:t,attrs:r}),getState:()=>l,...o,...a}},ji=({handlers:e,view:t,store:r,patch:s,h:i},n)=>{let{elementName:a,propsSchema:o,template:l,refs:d,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 g extends ut{static get observedAttributes(){return["key"]}constructor(){super();let T=Ti(this);this.propsSchema=o,this.props=o?Ni(this,Object.keys(o.properties)):{},this.elementName=a,this.styles=u,this.store=Li(r,this.props,T),this.template=l,this.handlers=e,this.refs=d,this.patch=s,this.deps={...n,store:this.store,render:this.render,handlers:e,attrs:T,props:this.props},this.h=i,this.cssText=Oi(a,u)}}return g},ft=ji;function Z(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 oe=Array.isArray;function le(e){return typeof e=="string"||typeof e=="number"||e instanceof String||e instanceof Number}function Pi(e,t){return document.createElement(e,t)}function Di(e,t,r){return document.createElementNS(e,t,r)}function Vi(){return ee(document.createDocumentFragment())}function Mi(e){return document.createTextNode(e)}function zi(e){return document.createComment(e)}function Ri(e,t,r){if(Y(e)){let s=e;for(;s&&Y(s);)s=ee(s).parent;e=s??e}Y(t)&&(t=ee(t,e)),r&&Y(r)&&(r=ee(r).firstChildNode),e.insertBefore(t,r)}function Wi(e,t){e.removeChild(t)}function Fi(e,t){Y(t)&&(t=ee(t,e)),e.appendChild(t)}function pr(e){if(Y(e)){for(;e&&Y(e);)e=ee(e).parent;return e??null}return e.parentNode}function Hi(e){var t;if(Y(e)){let r=ee(e),s=pr(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 Bi(e){return e.tagName}function Ki(e,t){e.textContent=t}function Ui(e){return e.textContent}function qi(e){return e.nodeType===1}function Ji(e){return e.nodeType===3}function Yi(e){return e.nodeType===8}function Y(e){return e.nodeType===11}function ee(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 cr={createElement:Pi,createElementNS:Di,createTextNode:Mi,createDocumentFragment:Vi,createComment:zi,insertBefore:Ri,removeChild:Wi,appendChild:Fi,parentNode:pr,nextSibling:Hi,tagName:Bi,setTextContent:Ki,getTextContent:Ui,isElement:qi,isText:Ji,isComment:Yi,isDocumentFragment:Y};function Ae(e){return e===void 0}function z(e){return e!==void 0}var mt=Z("",{},[],void 0,void 0);function he(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 Gi(){throw new Error("The document fragment is not supported on this platform.")}function Xi(e,t){return e.isElement(t)}function Qi(e,t){return e.isDocumentFragment(t)}function Zi(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 en=["create","update","remove","destroy","pre","post"];function dr(e,t,r){let s={create:[],update:[],remove:[],destroy:[],pre:[],post:[]},i=t!==void 0?t:cr;for(let p of en)for(let c of e){let h=c[p];h!==void 0&&s[p].push(h)}function n(p){let c=p.id?"#"+p.id:"",h=p.getAttribute("class"),f=h?"."+h.split(" ").join("."):"";return Z(i.tagName(p).toLowerCase()+c+f,{},[],void 0,p)}function a(p){return Z(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 h,f,y,_;let m,x=p.data;if(x!==void 0){let w=(h=x.hook)===null||h===void 0?void 0:h.init;z(w)&&(w(p),x=p.data)}let v=p.children,k=p.sel;if(k==="!")Ae(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,b=w!==-1||A!==-1?k.slice(0,Math.min(C,S)):k,I=p.elm=z(x)&&z(m=x.ns)?i.createElementNS(m,b,x):i.createElement(b,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](mt,p);if(le(p.text)&&(!oe(v)||v.length===0)&&i.appendChild(I,i.createTextNode(p.text)),oe(v))for(m=0;m<v.length;++m){let R=v[m];R!=null&&i.appendChild(I,l(R,c))}let j=p.data.hook;z(j)&&((f=j.create)===null||f===void 0||f.call(j,mt,p),j.insert&&c.push(p))}else if(!((y=r?.experimental)===null||y===void 0)&&y.fragments&&p.children){for(p.elm=((_=i.createDocumentFragment)!==null&&_!==void 0?_:Gi)(),m=0;m<s.create.length;++m)s.create[m](mt,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 d(p,c,h,f,y,_){for(;f<=y;++f){let m=h[f];m!=null&&i.insertBefore(p,l(m,_),c)}}function u(p){var c,h;let f=p.data;if(f!==void 0){(h=(c=f?.hook)===null||c===void 0?void 0:c.destroy)===null||h===void 0||h.call(c,p);for(let y=0;y<s.destroy.length;++y)s.destroy[y](p);if(p.children!==void 0)for(let y=0;y<p.children.length;++y){let _=p.children[y];_!=null&&typeof _!="string"&&u(_)}}}function g(p,c,h,f){for(var y,_;h<=f;++h){let m,x,v=c[h];if(v!=null)if(z(v.sel)){u(v),m=s.remove.length+1,x=o(v.elm,m);for(let w=0;w<s.remove.length;++w)s.remove[w](v,x);let k=(_=(y=v?.data)===null||y===void 0?void 0:y.hook)===null||_===void 0?void 0:_.remove;z(k)?k(v,x):x()}else v.children?(u(v),g(p,v.children,0,v.children.length-1)):i.removeChild(p,v.elm)}}function E(p,c,h,f){let y=0,_=0,m=c.length-1,x=c[0],v=c[m],k=h.length-1,w=h[0],A=h[k],C,S,b,I;for(;y<=m&&_<=k;)x==null?x=c[++y]:v==null?v=c[--m]:w==null?w=h[++_]:A==null?A=h[--k]:he(x,w)?(T(x,w,f),x=c[++y],w=h[++_]):he(v,A)?(T(v,A,f),v=c[--m],A=h[--k]):he(x,A)?(T(x,A,f),i.insertBefore(p,x.elm,i.nextSibling(v.elm)),x=c[++y],A=h[--k]):he(v,w)?(T(v,w,f),i.insertBefore(p,v.elm,x.elm),v=c[--m],w=h[++_]):(C===void 0&&(C=Zi(c,y,m)),S=C[w.key],Ae(S)?(i.insertBefore(p,l(w,f),x.elm),w=h[++_]):Ae(C[A.key])?(i.insertBefore(p,l(A,f),i.nextSibling(v.elm)),A=h[--k]):(b=c[S],b.sel!==w.sel?i.insertBefore(p,l(w,f),x.elm):(T(b,w,f),c[S]=void 0,i.insertBefore(p,b.elm,x.elm)),w=h[++_]));_<=k&&(I=h[k+1]==null?null:h[k+1].elm,d(p,I,h,_,k,f)),y<=m&&g(p,c,y,m)}function T(p,c,h){var f,y,_,m,x,v,k,w;let A=(f=c.data)===null||f===void 0?void 0:f.hook;(y=A?.prepatch)===null||y===void 0||y.call(A,p,c);let C=c.elm=p.elm;if(p===c)return;if(c.data!==void 0||z(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=(v=(x=c.data)===null||x===void 0?void 0:x.hook)===null||v===void 0?void 0:v.update)===null||k===void 0||k.call(v,p,c)}let S=p.children,b=c.children;Ae(c.text)?z(S)&&z(b)?S!==b&&E(C,S,b,h):z(b)?(z(p.text)&&i.setTextContent(C,""),d(C,null,b,0,b.length-1,h)):z(S)?g(C,S,0,S.length-1):z(p.text)&&i.setTextContent(C,""):p.text!==c.text&&(z(S)&&g(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,h){let f,y,_,m=[];for(f=0;f<s.pre.length;++f)s.pre[f]();for(Xi(i,c)?c=n(c):Qi(i,c)&&(c=a(c)),he(c,h)?T(c,h,m):(y=c.elm,_=i.parentNode(y),l(h,m),_!==null&&(i.insertBefore(_,h.elm,i.nextSibling(y)),g(_,[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 h}}function hr(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 ur={create:hr,update:hr};function fr(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 mr={create:fr,update:fr};var tn="http://www.w3.org/1999/xlink",rn="http://www.w3.org/2000/xmlns/",sn="http://www.w3.org/XML/1998/namespace";function gr(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(sn,r,a):r.charCodeAt(5)===58?r.charCodeAt(1)===109?s.setAttributeNS(rn,r,a):s.setAttributeNS(tn,r,a):s.setAttribute(r,a))}for(r in i)r in n||s.removeAttribute(r)}}var yr={create:gr,update:gr};var vr=typeof window?.requestAnimationFrame=="function"?window.requestAnimationFrame.bind(window):setTimeout,nn=function(e){vr(function(){vr(e)})},gt=!1;function an(e,t,r){nn(function(){e[t]=r})}function br(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])&&an(i.style,l,r);else s!=="remove"&&r!==n[s]&&(s[0]==="-"&&s[1]==="-"?i.style.setProperty(s,r):i.style[s]=r)}function on(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 ln(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(g){g.target===i&&--o,o===0&&t()})}function pn(){gt=!1}var wr={pre:pn,create:br,update:br,destroy:on,remove:ln};function xr(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++)xr(e[s],t,r)}function cn(e,t){let r=e.type,s=t.data.on;s&&s[r]&&xr(s[r],t,e)}function dn(){return function e(t){cn(t,e.vnode)}}function yt(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||dn();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 _r={create:yt,update:yt,destroy:yt};var hn=()=>dr([ur,mr,yr,wr,_r]),vt=hn;function Sr(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&&Sr(n,i.children,i.sel)}}function bt(e,t,r){let s={},i,n,a;if(r!==void 0?(t!==null&&(s=t),oe(r)?i=r:le(r)?n=r.toString():r&&r.sel&&(i=[r])):t!=null&&(oe(t)?i=t:le(t)?n=t.toString():t&&t.sel?i=[t]:s=t),i!==void 0)for(a=0;a<i.length;++a)le(i[a])&&(i[a]=Z(void 0,void 0,void 0,i[a],void 0));return e.startsWith("svg")&&(e.length===3||e[3]==="."||e[3]==="#")&&Sr(s,i,e),Z(e,s,i,n,void 0)}var un={},kr={components:un},Er=vt();var $e={components:{dialog:{store:Ve,view:Dt,handlers:Me},sidebar:{handlers:ze,view:Vt,store:We},popover:{handlers:Fe,view:Mt,store:He},form:{store:Be,handlers:Ke,view:zt},select:{store:Ue,handlers:qe,view:Rt},pageOutline:{store:Je,view:Wt,handlers:Ye},navbar:{store:Ge,view:Ht,handlers:Xe},dropdownMenu:{view:Bt,handlers:Qe,store:Ze},table:{store:et,handlers:tt,view:Kt}}};Object.keys($e).forEach(e=>{Object.keys($e[e]).forEach(t=>{let r=ft({...$e[e][t],patch:Er,h:bt},kr[e]);customElements.define($e[e][t].view.elementName,r)})});customElements.define("rtgl-button",St({}));customElements.define("rtgl-view",At({}));customElements.define("rtgl-text",Ct({}));customElements.define("rtgl-image",Ot({}));customElements.define("rtgl-svg",Tt({}));customElements.define("rtgl-input",Nt({}));customElements.define("rtgl-textarea",Lt({}));customElements.define("rtgl-color-picker",jt({}));customElements.define("rtgl-slider",Pt({}));})();
|