@cas-smartdesign/lit-input 7.3.1 → 7.4.1

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/dist/docs/doc.mjs CHANGED
@@ -1,4 +1,4 @@
1
- (function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))n(s);new MutationObserver(s=>{for(const o of s)if(o.type==="childList")for(const r of o.addedNodes)r.tagName==="LINK"&&r.rel==="modulepreload"&&n(r)}).observe(document,{childList:!0,subtree:!0});function t(s){const o={};return s.integrity&&(o.integrity=s.integrity),s.referrerPolicy&&(o.referrerPolicy=s.referrerPolicy),s.crossOrigin==="use-credentials"?o.credentials="include":s.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function n(s){if(s.ep)return;s.ep=!0;const o=t(s);fetch(s.href,o)}})();const Ts=`<!-- Load element with all dependencies directly -->
1
+ (function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const t of document.querySelectorAll('link[rel="modulepreload"]'))r(t);new MutationObserver(t=>{for(const u of t)if(u.type==="childList")for(const a of u.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(t){const u={};return t.integrity&&(u.integrity=t.integrity),t.referrerPolicy&&(u.referrerPolicy=t.referrerPolicy),t.crossOrigin==="use-credentials"?u.credentials="include":t.crossOrigin==="anonymous"?u.credentials="omit":u.credentials="same-origin",u}function r(t){if(t.ep)return;t.ep=!0;const u=n(t);fetch(t.href,u)}})();const Is=`<!-- Load element with all dependencies directly -->
2
2
  <script src="./input-with-externals.js"><\/script>
3
3
 
4
4
  <div class="examples">
@@ -34,8 +34,8 @@
34
34
  <sd-lit-input label="password" type="password" value="supersecret"></sd-lit-input>
35
35
  </div>
36
36
  </div>
37
- `,js=`<h3 id="basic-usage">Basic usage</h3>
38
- `,Ds=`sd-lit-input {
37
+ `,Ts=`<h3 id="basic-usage">Basic usage</h3>
38
+ `,js=`sd-lit-input {
39
39
  min-height: 66px;
40
40
  margin: 0 16px;
41
41
  width: 400px;
@@ -52,7 +52,7 @@
52
52
  width: 280px;
53
53
  text-align: right;
54
54
  }
55
- `,zs={mainContent:Ts,description:js,css:Ds},Us=Object.freeze(Object.defineProperty({__proto__:null,default:zs},Symbol.toStringTag,{value:"Module"})),Bs=`<!-- Load element with all dependencies directly -->
55
+ `,Ds={mainContent:Is,description:Ts,css:js},zs=Object.freeze(Object.defineProperty({__proto__:null,default:Ds},Symbol.toStringTag,{value:"Module"})),Us="modulepreload",Bs=function(i,e){return new URL(i,e).href},Vn={},fn=function(e,n,r){let t=Promise.resolve();if(n&&n.length>0){let d=function(s){return Promise.all(s.map(c=>Promise.resolve(c).then(o=>({status:"fulfilled",value:o}),o=>({status:"rejected",reason:o}))))};const a=document.getElementsByTagName("link"),f=document.querySelector("meta[property=csp-nonce]"),b=f?.nonce||f?.getAttribute("nonce");t=d(n.map(s=>{if(s=Bs(s,r),s in Vn)return;Vn[s]=!0;const c=s.endsWith(".css"),o=c?'[rel="stylesheet"]':"";if(!!r)for(let m=a.length-1;m>=0;m--){const g=a[m];if(g.href===s&&(!c||g.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${s}"]${o}`))return;const p=document.createElement("link");if(p.rel=c?"stylesheet":Us,c||(p.as="script"),p.crossOrigin="",p.href=s,b&&p.setAttribute("nonce",b),document.head.appendChild(p),c)return new Promise((m,g)=>{p.addEventListener("load",m),p.addEventListener("error",()=>g(new Error(`Unable to preload CSS for ${s}`)))})}))}function u(a){const f=new Event("vite:preloadError",{cancelable:!0});if(f.payload=a,window.dispatchEvent(f),!f.defaultPrevented)throw a}return t.then(a=>{for(const f of a||[])f.status==="rejected"&&u(f.reason);return e().catch(u)})},qs=`<!-- Load element with all dependencies directly -->
56
56
  <script src="./input-with-externals.js"><\/script>
57
57
 
58
58
  <div class="examples">
@@ -74,6 +74,13 @@
74
74
  <span>Max date</span>
75
75
  <sd-lit-input type="date" name="endDate" max="2025-08-01"></sd-lit-input>
76
76
  </div>
77
+ <div class="example-container">
78
+ <span>Required</span>
79
+ <sd-lit-input required
80
+ ><button id="random-generator-button" slot="suffix">Random</button
81
+ ><button id="clear-button" slot="suffix">Clear</button></sd-lit-input
82
+ >
83
+ </div>
77
84
  <button type="submit">Submit</button>
78
85
  </form>
79
86
  </div>
@@ -95,7 +102,24 @@
95
102
  width: 280px;
96
103
  text-align: right;
97
104
  }
98
- `,Vs={mainContent:Bs,description:Fs,css:Hs},Ws=Object.freeze(Object.defineProperty({__proto__:null,default:Vs},Symbol.toStringTag,{value:"Module"})),qs=`<!-- Load element with all dependencies directly -->
105
+
106
+ #clear-button {
107
+ margin-left: 8px;
108
+ }
109
+ `,Ws=`import SDInput from "@cas-smartdesign/lit-input";
110
+
111
+ document.getElementById("random-generator-button").addEventListener("click", (e) => {
112
+ e.preventDefault();
113
+ const relevantInput = (e.target as HTMLElement).parentElement as SDInput;
114
+ relevantInput.value = (Math.random() + 1).toString(36).substring(7);
115
+ });
116
+
117
+ document.getElementById("clear-button").addEventListener("click", (e) => {
118
+ e.preventDefault();
119
+ const relevantInput = (e.target as HTMLElement).parentElement as SDInput;
120
+ relevantInput.value = "";
121
+ });
122
+ `,Vs={mainContent:qs,description:Fs,css:Hs,initializer:{content:Ws,type:"typescript",initialize:()=>fn(()=>import("./form-validation.js"),[],import.meta.url)}},Gs=Object.freeze(Object.defineProperty({__proto__:null,default:Vs},Symbol.toStringTag,{value:"Module"})),Zs=`<!-- Load element with all dependencies directly -->
99
123
  <script src="./input-with-externals.js"><\/script>
100
124
  <form action="" autocomplete="on">
101
125
  <sd-lit-input label="E-Mail" type="email" name="email-field" id="email-field"></sd-lit-input>
@@ -110,9 +134,9 @@
110
134
  <button type="submit">Submit</button>
111
135
  </div>
112
136
  </form>
113
- `,Gs=`<h3 id="login-form">Login form</h3>
137
+ `,Js=`<h3 id="login-form">Login form</h3>
114
138
  <p>This form can be used to test autofill/autocomplete mechanism</p>
115
- `,Zs=`sd-lit-input {
139
+ `,Ks=`sd-lit-input {
116
140
  min-height: 66px;
117
141
  width: 400px;
118
142
  outline: none;
@@ -126,7 +150,7 @@ fieldset {
126
150
  form > * {
127
151
  display: block;
128
152
  }
129
- `,Ks={mainContent:qs,description:Gs,css:Zs},Js=Object.freeze(Object.defineProperty({__proto__:null,default:Ks},Symbol.toStringTag,{value:"Module"})),Xs="modulepreload",Qs=function(i,e){return new URL(i,e).href},Ln={},vi=function(e,t,n){let s=Promise.resolve();if(t&&t.length>0){const o=document.getElementsByTagName("link");s=Promise.all(t.map(r=>{if(r=Qs(r,n),r in Ln)return;Ln[r]=!0;const a=r.endsWith(".css"),l=a?'[rel="stylesheet"]':"";if(!!n)for(let p=o.length-1;p>=0;p--){const f=o[p];if(f.href===r&&(!a||f.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${r}"]${l}`))return;const u=document.createElement("link");if(u.rel=a?"stylesheet":Xs,a||(u.as="script",u.crossOrigin=""),u.href=r,document.head.appendChild(u),a)return new Promise((p,f)=>{u.addEventListener("load",p),u.addEventListener("error",()=>f(new Error(`Unable to preload CSS for ${r}`)))})}))}return s.then(()=>e()).catch(o=>{const r=new Event("vite:preloadError",{cancelable:!0});if(r.payload=o,window.dispatchEvent(r),!r.defaultPrevented)throw o})},Ys=`<div id="advanced-examples">
153
+ `,Xs={mainContent:Zs,description:Js,css:Ks},Qs=Object.freeze(Object.defineProperty({__proto__:null,default:Xs},Symbol.toStringTag,{value:"Module"})),Ys=`<div id="advanced-examples">
130
154
  <div class="example-container">
131
155
  <span>Even the placeholder is blue</span>
132
156
  <sd-lit-input class="blue" label="blue" placeholder="placeholder"></sd-lit-input>
@@ -222,7 +246,7 @@ tokenSelectorInput.addEventListener("value-change", (event) => {
222
246
  tokenSelectorExample.querySelector(".token-wrapper").appendChild(tokenEl);
223
247
  tokenSelectorInput.value = "";
224
248
  });
225
- `,ir={mainContent:Ys,description:er,css:tr,initializer:{content:nr,type:"typescript",initialize:()=>vi(()=>import("./misc-examples.js"),__vite__mapDeps([]),import.meta.url)}},sr=Object.freeze(Object.defineProperty({__proto__:null,default:ir},Symbol.toStringTag,{value:"Module"})),rr=`<!-- Load element with all dependencies directly -->
249
+ `,ir={mainContent:Ys,description:er,css:tr,initializer:{content:nr,type:"typescript",initialize:()=>fn(()=>import("./misc-examples.js"),[],import.meta.url)}},sr=Object.freeze(Object.defineProperty({__proto__:null,default:ir},Symbol.toStringTag,{value:"Module"})),rr=`<!-- Load element with all dependencies directly -->
226
250
  <script src="./input-with-externals.js"><\/script>
227
251
 
228
252
  <div class="examples">
@@ -371,55 +395,55 @@ function setupValidation(attribute: string, validationLevel: ValidationLevel) {
371
395
  setupValidation("mandatory", ValidationLevel.Error);
372
396
  setupValidation("recommended", ValidationLevel.Warn);
373
397
  setupValidation("suggestion", ValidationLevel.Suggest);
374
- `,fr={mainContent:ur,description:dr,css:hr,initializer:{content:pr,type:"typescript",initialize:()=>vi(()=>import("./validation.js"),__vite__mapDeps([]),import.meta.url)}},mr=Object.freeze(Object.defineProperty({__proto__:null,default:fr},Symbol.toStringTag,{value:"Module"}));const rt=window,un=rt.ShadowRoot&&(rt.ShadyCSS===void 0||rt.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,dn=Symbol(),Pn=new WeakMap;let yi=class{constructor(e,t,n){if(this._$cssResult$=!0,n!==dn)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=e,this.t=t}get styleSheet(){let e=this.o;const t=this.t;if(un&&e===void 0){const n=t!==void 0&&t.length===1;n&&(e=Pn.get(t)),e===void 0&&((this.o=e=new CSSStyleSheet).replaceSync(this.cssText),n&&Pn.set(t,e))}return e}toString(){return this.cssText}};const hn=i=>new yi(typeof i=="string"?i:i+"",void 0,dn),wi=(i,...e)=>{const t=i.length===1?i[0]:e.reduce((n,s,o)=>n+(r=>{if(r._$cssResult$===!0)return r.cssText;if(typeof r=="number")return r;throw Error("Value passed to 'css' function must be a 'css' function result: "+r+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(s)+i[o+1],i[0]);return new yi(t,i,dn)},gr=(i,e)=>{un?i.adoptedStyleSheets=e.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet):e.forEach(t=>{const n=document.createElement("style"),s=rt.litNonce;s!==void 0&&n.setAttribute("nonce",s),n.textContent=t.cssText,i.appendChild(n)})},In=un?i=>i:i=>i instanceof CSSStyleSheet?(e=>{let t="";for(const n of e.cssRules)t+=n.cssText;return hn(t)})(i):i;var Nt;const lt=window,Tn=lt.trustedTypes,br=Tn?Tn.emptyScript:"",jn=lt.reactiveElementPolyfillSupport,Wt={toAttribute(i,e){switch(e){case Boolean:i=i?br:null;break;case Object:case Array:i=i==null?i:JSON.stringify(i)}return i},fromAttribute(i,e){let t=i;switch(e){case Boolean:t=i!==null;break;case Number:t=i===null?null:Number(i);break;case Object:case Array:try{t=JSON.parse(i)}catch{t=null}}return t}},xi=(i,e)=>e!==i&&(e==e||i==i),Lt={attribute:!0,type:String,converter:Wt,reflect:!1,hasChanged:xi},qt="finalized";let be=class extends HTMLElement{constructor(){super(),this._$Ei=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$El=null,this._$Eu()}static addInitializer(e){var t;this.finalize(),((t=this.h)!==null&&t!==void 0?t:this.h=[]).push(e)}static get observedAttributes(){this.finalize();const e=[];return this.elementProperties.forEach((t,n)=>{const s=this._$Ep(n,t);s!==void 0&&(this._$Ev.set(s,n),e.push(s))}),e}static createProperty(e,t=Lt){if(t.state&&(t.attribute=!1),this.finalize(),this.elementProperties.set(e,t),!t.noAccessor&&!this.prototype.hasOwnProperty(e)){const n=typeof e=="symbol"?Symbol():"__"+e,s=this.getPropertyDescriptor(e,n,t);s!==void 0&&Object.defineProperty(this.prototype,e,s)}}static getPropertyDescriptor(e,t,n){return{get(){return this[t]},set(s){const o=this[e];this[t]=s,this.requestUpdate(e,o,n)},configurable:!0,enumerable:!0}}static getPropertyOptions(e){return this.elementProperties.get(e)||Lt}static finalize(){if(this.hasOwnProperty(qt))return!1;this[qt]=!0;const e=Object.getPrototypeOf(this);if(e.finalize(),e.h!==void 0&&(this.h=[...e.h]),this.elementProperties=new Map(e.elementProperties),this._$Ev=new Map,this.hasOwnProperty("properties")){const t=this.properties,n=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const s of n)this.createProperty(s,t[s])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(e){const t=[];if(Array.isArray(e)){const n=new Set(e.flat(1/0).reverse());for(const s of n)t.unshift(In(s))}else e!==void 0&&t.push(In(e));return t}static _$Ep(e,t){const n=t.attribute;return n===!1?void 0:typeof n=="string"?n:typeof e=="string"?e.toLowerCase():void 0}_$Eu(){var e;this._$E_=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$Eg(),this.requestUpdate(),(e=this.constructor.h)===null||e===void 0||e.forEach(t=>t(this))}addController(e){var t,n;((t=this._$ES)!==null&&t!==void 0?t:this._$ES=[]).push(e),this.renderRoot!==void 0&&this.isConnected&&((n=e.hostConnected)===null||n===void 0||n.call(e))}removeController(e){var t;(t=this._$ES)===null||t===void 0||t.splice(this._$ES.indexOf(e)>>>0,1)}_$Eg(){this.constructor.elementProperties.forEach((e,t)=>{this.hasOwnProperty(t)&&(this._$Ei.set(t,this[t]),delete this[t])})}createRenderRoot(){var e;const t=(e=this.shadowRoot)!==null&&e!==void 0?e:this.attachShadow(this.constructor.shadowRootOptions);return gr(t,this.constructor.elementStyles),t}connectedCallback(){var e;this.renderRoot===void 0&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(e=this._$ES)===null||e===void 0||e.forEach(t=>{var n;return(n=t.hostConnected)===null||n===void 0?void 0:n.call(t)})}enableUpdating(e){}disconnectedCallback(){var e;(e=this._$ES)===null||e===void 0||e.forEach(t=>{var n;return(n=t.hostDisconnected)===null||n===void 0?void 0:n.call(t)})}attributeChangedCallback(e,t,n){this._$AK(e,n)}_$EO(e,t,n=Lt){var s;const o=this.constructor._$Ep(e,n);if(o!==void 0&&n.reflect===!0){const r=(((s=n.converter)===null||s===void 0?void 0:s.toAttribute)!==void 0?n.converter:Wt).toAttribute(t,n.type);this._$El=e,r==null?this.removeAttribute(o):this.setAttribute(o,r),this._$El=null}}_$AK(e,t){var n;const s=this.constructor,o=s._$Ev.get(e);if(o!==void 0&&this._$El!==o){const r=s.getPropertyOptions(o),a=typeof r.converter=="function"?{fromAttribute:r.converter}:((n=r.converter)===null||n===void 0?void 0:n.fromAttribute)!==void 0?r.converter:Wt;this._$El=o,this[o]=a.fromAttribute(t,r.type),this._$El=null}}requestUpdate(e,t,n){let s=!0;e!==void 0&&(((n=n||this.constructor.getPropertyOptions(e)).hasChanged||xi)(this[e],t)?(this._$AL.has(e)||this._$AL.set(e,t),n.reflect===!0&&this._$El!==e&&(this._$EC===void 0&&(this._$EC=new Map),this._$EC.set(e,n))):s=!1),!this.isUpdatePending&&s&&(this._$E_=this._$Ej())}async _$Ej(){this.isUpdatePending=!0;try{await this._$E_}catch(t){Promise.reject(t)}const e=this.scheduleUpdate();return e!=null&&await e,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var e;if(!this.isUpdatePending)return;this.hasUpdated,this._$Ei&&(this._$Ei.forEach((s,o)=>this[o]=s),this._$Ei=void 0);let t=!1;const n=this._$AL;try{t=this.shouldUpdate(n),t?(this.willUpdate(n),(e=this._$ES)===null||e===void 0||e.forEach(s=>{var o;return(o=s.hostUpdate)===null||o===void 0?void 0:o.call(s)}),this.update(n)):this._$Ek()}catch(s){throw t=!1,this._$Ek(),s}t&&this._$AE(n)}willUpdate(e){}_$AE(e){var t;(t=this._$ES)===null||t===void 0||t.forEach(n=>{var s;return(s=n.hostUpdated)===null||s===void 0?void 0:s.call(n)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}_$Ek(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$E_}shouldUpdate(e){return!0}update(e){this._$EC!==void 0&&(this._$EC.forEach((t,n)=>this._$EO(n,this[n],t)),this._$EC=void 0),this._$Ek()}updated(e){}firstUpdated(e){}};be[qt]=!0,be.elementProperties=new Map,be.elementStyles=[],be.shadowRootOptions={mode:"open"},jn==null||jn({ReactiveElement:be}),((Nt=lt.reactiveElementVersions)!==null&&Nt!==void 0?Nt:lt.reactiveElementVersions=[]).push("1.6.3");var Pt;const ct=window,ve=ct.trustedTypes,Dn=ve?ve.createPolicy("lit-html",{createHTML:i=>i}):void 0,Gt="$lit$",te=`lit$${(Math.random()+"").slice(9)}$`,_i="?"+te,vr=`<${_i}>`,de=document,Me=()=>de.createComment(""),Ne=i=>i===null||typeof i!="object"&&typeof i!="function",Ei=Array.isArray,yr=i=>Ei(i)||typeof(i==null?void 0:i[Symbol.iterator])=="function",It=`[
375
- \f\r]`,Ae=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,zn=/-->/g,Un=/>/g,ae=RegExp(`>|${It}(?:([^\\s"'>=/]+)(${It}*=${It}*(?:[^
376
- \f\r"'\`<>=]|("|')|))|$)`,"g"),Bn=/'/g,Fn=/"/g,Si=/^(?:script|style|textarea|title)$/i,wr=i=>(e,...t)=>({_$litType$:i,strings:e,values:t}),ee=wr(1),ye=Symbol.for("lit-noChange"),L=Symbol.for("lit-nothing"),Hn=new WeakMap,le=de.createTreeWalker(de,129,null,!1);function $i(i,e){if(!Array.isArray(i)||!i.hasOwnProperty("raw"))throw Error("invalid template strings array");return Dn!==void 0?Dn.createHTML(e):e}const xr=(i,e)=>{const t=i.length-1,n=[];let s,o=e===2?"<svg>":"",r=Ae;for(let a=0;a<t;a++){const l=i[a];let c,u,p=-1,f=0;for(;f<l.length&&(r.lastIndex=f,u=r.exec(l),u!==null);)f=r.lastIndex,r===Ae?u[1]==="!--"?r=zn:u[1]!==void 0?r=Un:u[2]!==void 0?(Si.test(u[2])&&(s=RegExp("</"+u[2],"g")),r=ae):u[3]!==void 0&&(r=ae):r===ae?u[0]===">"?(r=s??Ae,p=-1):u[1]===void 0?p=-2:(p=r.lastIndex-u[2].length,c=u[1],r=u[3]===void 0?ae:u[3]==='"'?Fn:Bn):r===Fn||r===Bn?r=ae:r===zn||r===Un?r=Ae:(r=ae,s=void 0);const x=r===ae&&i[a+1].startsWith("/>")?" ":"";o+=r===Ae?l+vr:p>=0?(n.push(c),l.slice(0,p)+Gt+l.slice(p)+te+x):l+te+(p===-2?(n.push(void 0),a):x)}return[$i(i,o+(i[t]||"<?>")+(e===2?"</svg>":"")),n]};class Le{constructor({strings:e,_$litType$:t},n){let s;this.parts=[];let o=0,r=0;const a=e.length-1,l=this.parts,[c,u]=xr(e,t);if(this.el=Le.createElement(c,n),le.currentNode=this.el.content,t===2){const p=this.el.content,f=p.firstChild;f.remove(),p.append(...f.childNodes)}for(;(s=le.nextNode())!==null&&l.length<a;){if(s.nodeType===1){if(s.hasAttributes()){const p=[];for(const f of s.getAttributeNames())if(f.endsWith(Gt)||f.startsWith(te)){const x=u[r++];if(p.push(f),x!==void 0){const O=s.getAttribute(x.toLowerCase()+Gt).split(te),P=/([.?@])?(.*)/.exec(x);l.push({type:1,index:o,name:P[2],strings:O,ctor:P[1]==="."?Er:P[1]==="?"?$r:P[1]==="@"?Ar:bt})}else l.push({type:6,index:o})}for(const f of p)s.removeAttribute(f)}if(Si.test(s.tagName)){const p=s.textContent.split(te),f=p.length-1;if(f>0){s.textContent=ve?ve.emptyScript:"";for(let x=0;x<f;x++)s.append(p[x],Me()),le.nextNode(),l.push({type:2,index:++o});s.append(p[f],Me())}}}else if(s.nodeType===8)if(s.data===_i)l.push({type:2,index:o});else{let p=-1;for(;(p=s.data.indexOf(te,p+1))!==-1;)l.push({type:7,index:o}),p+=te.length-1}o++}}static createElement(e,t){const n=de.createElement("template");return n.innerHTML=e,n}}function we(i,e,t=i,n){var s,o,r,a;if(e===ye)return e;let l=n!==void 0?(s=t._$Co)===null||s===void 0?void 0:s[n]:t._$Cl;const c=Ne(e)?void 0:e._$litDirective$;return(l==null?void 0:l.constructor)!==c&&((o=l==null?void 0:l._$AO)===null||o===void 0||o.call(l,!1),c===void 0?l=void 0:(l=new c(i),l._$AT(i,t,n)),n!==void 0?((r=(a=t)._$Co)!==null&&r!==void 0?r:a._$Co=[])[n]=l:t._$Cl=l),l!==void 0&&(e=we(i,l._$AS(i,e.values),l,n)),e}class _r{constructor(e,t){this._$AV=[],this._$AN=void 0,this._$AD=e,this._$AM=t}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(e){var t;const{el:{content:n},parts:s}=this._$AD,o=((t=e==null?void 0:e.creationScope)!==null&&t!==void 0?t:de).importNode(n,!0);le.currentNode=o;let r=le.nextNode(),a=0,l=0,c=s[0];for(;c!==void 0;){if(a===c.index){let u;c.type===2?u=new Be(r,r.nextSibling,this,e):c.type===1?u=new c.ctor(r,c.name,c.strings,this,e):c.type===6&&(u=new Cr(r,this,e)),this._$AV.push(u),c=s[++l]}a!==(c==null?void 0:c.index)&&(r=le.nextNode(),a++)}return le.currentNode=de,o}v(e){let t=0;for(const n of this._$AV)n!==void 0&&(n.strings!==void 0?(n._$AI(e,n,t),t+=n.strings.length-2):n._$AI(e[t])),t++}}class Be{constructor(e,t,n,s){var o;this.type=2,this._$AH=L,this._$AN=void 0,this._$AA=e,this._$AB=t,this._$AM=n,this.options=s,this._$Cp=(o=s==null?void 0:s.isConnected)===null||o===void 0||o}get _$AU(){var e,t;return(t=(e=this._$AM)===null||e===void 0?void 0:e._$AU)!==null&&t!==void 0?t:this._$Cp}get parentNode(){let e=this._$AA.parentNode;const t=this._$AM;return t!==void 0&&(e==null?void 0:e.nodeType)===11&&(e=t.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(e,t=this){e=we(this,e,t),Ne(e)?e===L||e==null||e===""?(this._$AH!==L&&this._$AR(),this._$AH=L):e!==this._$AH&&e!==ye&&this._(e):e._$litType$!==void 0?this.g(e):e.nodeType!==void 0?this.$(e):yr(e)?this.T(e):this._(e)}k(e){return this._$AA.parentNode.insertBefore(e,this._$AB)}$(e){this._$AH!==e&&(this._$AR(),this._$AH=this.k(e))}_(e){this._$AH!==L&&Ne(this._$AH)?this._$AA.nextSibling.data=e:this.$(de.createTextNode(e)),this._$AH=e}g(e){var t;const{values:n,_$litType$:s}=e,o=typeof s=="number"?this._$AC(e):(s.el===void 0&&(s.el=Le.createElement($i(s.h,s.h[0]),this.options)),s);if(((t=this._$AH)===null||t===void 0?void 0:t._$AD)===o)this._$AH.v(n);else{const r=new _r(o,this),a=r.u(this.options);r.v(n),this.$(a),this._$AH=r}}_$AC(e){let t=Hn.get(e.strings);return t===void 0&&Hn.set(e.strings,t=new Le(e)),t}T(e){Ei(this._$AH)||(this._$AH=[],this._$AR());const t=this._$AH;let n,s=0;for(const o of e)s===t.length?t.push(n=new Be(this.k(Me()),this.k(Me()),this,this.options)):n=t[s],n._$AI(o),s++;s<t.length&&(this._$AR(n&&n._$AB.nextSibling,s),t.length=s)}_$AR(e=this._$AA.nextSibling,t){var n;for((n=this._$AP)===null||n===void 0||n.call(this,!1,!0,t);e&&e!==this._$AB;){const s=e.nextSibling;e.remove(),e=s}}setConnected(e){var t;this._$AM===void 0&&(this._$Cp=e,(t=this._$AP)===null||t===void 0||t.call(this,e))}}class bt{constructor(e,t,n,s,o){this.type=1,this._$AH=L,this._$AN=void 0,this.element=e,this.name=t,this._$AM=s,this.options=o,n.length>2||n[0]!==""||n[1]!==""?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=L}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(e,t=this,n,s){const o=this.strings;let r=!1;if(o===void 0)e=we(this,e,t,0),r=!Ne(e)||e!==this._$AH&&e!==ye,r&&(this._$AH=e);else{const a=e;let l,c;for(e=o[0],l=0;l<o.length-1;l++)c=we(this,a[n+l],t,l),c===ye&&(c=this._$AH[l]),r||(r=!Ne(c)||c!==this._$AH[l]),c===L?e=L:e!==L&&(e+=(c??"")+o[l+1]),this._$AH[l]=c}r&&!s&&this.j(e)}j(e){e===L?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,e??"")}}class Er extends bt{constructor(){super(...arguments),this.type=3}j(e){this.element[this.name]=e===L?void 0:e}}const Sr=ve?ve.emptyScript:"";class $r extends bt{constructor(){super(...arguments),this.type=4}j(e){e&&e!==L?this.element.setAttribute(this.name,Sr):this.element.removeAttribute(this.name)}}let Ar=class extends bt{constructor(e,t,n,s,o){super(e,t,n,s,o),this.type=5}_$AI(e,t=this){var n;if((e=(n=we(this,e,t,0))!==null&&n!==void 0?n:L)===ye)return;const s=this._$AH,o=e===L&&s!==L||e.capture!==s.capture||e.once!==s.once||e.passive!==s.passive,r=e!==L&&(s===L||o);o&&this.element.removeEventListener(this.name,this,s),r&&this.element.addEventListener(this.name,this,e),this._$AH=e}handleEvent(e){var t,n;typeof this._$AH=="function"?this._$AH.call((n=(t=this.options)===null||t===void 0?void 0:t.host)!==null&&n!==void 0?n:this.element,e):this._$AH.handleEvent(e)}};class Cr{constructor(e,t,n){this.element=e,this.type=6,this._$AN=void 0,this._$AM=t,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(e){we(this,e)}}const Vn=ct.litHtmlPolyfillSupport;Vn==null||Vn(Le,Be),((Pt=ct.litHtmlVersions)!==null&&Pt!==void 0?Pt:ct.litHtmlVersions=[]).push("2.8.0");const kr=(i,e,t)=>{var n,s;const o=(n=t==null?void 0:t.renderBefore)!==null&&n!==void 0?n:e;let r=o._$litPart$;if(r===void 0){const a=(s=t==null?void 0:t.renderBefore)!==null&&s!==void 0?s:null;o._$litPart$=r=new Be(e.insertBefore(Me(),a),a,void 0,t??{})}return r._$AI(i),r};var Tt,jt;class ce extends be{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var e,t;const n=super.createRenderRoot();return(e=(t=this.renderOptions).renderBefore)!==null&&e!==void 0||(t.renderBefore=n.firstChild),n}update(e){const t=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(e),this._$Do=kr(t,this.renderRoot,this.renderOptions)}connectedCallback(){var e;super.connectedCallback(),(e=this._$Do)===null||e===void 0||e.setConnected(!0)}disconnectedCallback(){var e;super.disconnectedCallback(),(e=this._$Do)===null||e===void 0||e.setConnected(!1)}render(){return ye}}ce.finalized=!0,ce._$litElement$=!0,(Tt=globalThis.litElementHydrateSupport)===null||Tt===void 0||Tt.call(globalThis,{LitElement:ce});const Wn=globalThis.litElementPolyfillSupport;Wn==null||Wn({LitElement:ce});((jt=globalThis.litElementVersions)!==null&&jt!==void 0?jt:globalThis.litElementVersions=[]).push("3.3.3");const Or=(i,e)=>e.kind==="method"&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(t){t.createProperty(e.key,i)}}:{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:e.key,initializer(){typeof e.initializer=="function"&&(this[e.key]=e.initializer.call(this))},finisher(t){t.createProperty(e.key,i)}},Rr=(i,e,t)=>{e.constructor.createProperty(t,i)};function C(i){return(e,t)=>t!==void 0?Rr(i,e,t):Or(i,e)}const F=i=>i??L,Mr=":host{display:inline-block;font-size:13px;line-height:20px;font-family:Segoe UI,Lucida Sans,Arial,sans-serif;color:#111;contain:content}:host([hidden]){display:none!important}:host([level=warn i]){color:#555}:host([level=suggest i]){color:#bf8800}:host([level=error i]){color:#cc0017}:host([level=warn]){color:#555}:host([level=suggest]){color:#bf8800}:host([level=error]){color:#cc0017}.icon{height:12px;width:12px;padding-right:4px;margin-bottom:-1px}",Nr="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2012'%3e%3cstyle%20id='style3'%3e%20.st0{fill:%23fff}.st1{fill:%23c00}%20%3c/style%3e%3cg%20id='g5'%3e%3cpath%20class='st1'%20d='M6%20.9c2.8%200%205.1%202.3%205.1%205.1S8.8%2011.1%206%2011.1.9%208.8.9%206%203.2.9%206%20.9m0-1C2.7-.1-.1%202.7-.1%206s2.7%206.1%206.1%206.1%206.1-2.7%206.1-6.1S9.3-.1%206-.1z'%20id='path9'/%3e%3c/g%3e%3cg%20id='g11'%3e%3cpath%20class='st0'%20id='rect13'%20d='M5.5%202.5h1v4h-1z'/%3e%3cpath%20class='st1'%20d='M6%203v3-3m1-1H5v5h2V2z'%20id='path15'/%3e%3c/g%3e%3cg%20id='g17'%3e%3cpath%20class='st0'%20id='rect19'%20d='M5.5%208.5h1v1h-1z'/%3e%3cpath%20class='st1'%20id='polygon21'%20d='M7%208H5v2h2V8z'/%3e%3c/g%3e%3c/svg%3e",Lr="data:image/svg+xml,%3csvg%20id='Ebene_1'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cstyle%3e%20.st0{fill:%23bf8800}%20%3c/style%3e%3cpath%20class='st0'%20d='M12%20.8l11%2019.8v1.3H1v-1.3L12%20.8zm.8-.6h-1.6L0%2020v3h24v-3L12.8.2z'/%3e%3cpath%20class='st0'%20d='M11%208h2v8h-2zm0%2010h2v2h-2z'/%3e%3c/svg%3e",Pr="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2012'%3e%3cpath%20class='st1'%20d='M6%20.9c2.8%200%205.1%202.3%205.1%205.1S8.8%2011.1%206%2011.1.9%208.8.9%206%203.2.9%206%20.9m0-1C2.7-.1-.1%202.7-.1%206s2.7%206.1%206.1%206.1%206.1-2.7%206.1-6.1S9.3-.1%206-.1z'%20fill='%23555'/%3e%3cpath%20d='M6%209V6v3m-1%201h2V5H5v5zm2-8H5v2h2z'%20class='st1'%20fill='%23555'/%3e%3c/svg%3e";var Ir=Object.defineProperty,Tr=Object.getOwnPropertyDescriptor,pn=(i,e,t,n)=>{for(var s=n>1?void 0:n?Tr(e,t):e,o=i.length-1,r;o>=0;o--)(r=i[o])&&(s=(n?r(e,t,s):r(s))||s);return n&&s&&Ir(e,t,s),s},me;const Pe=(me=class extends ce{static parseLevel(i){if(i){const e=Object.keys(ut).find(t=>t.toLowerCase()===i.toLowerCase());return e&&ut[e]}}static get styles(){return[wi`
377
- ${hn(Mr)}
378
- `]}render(){return ee`${this.iconToUse&&ee`<img class="icon" src="${this.iconToUse}">`}${this.message}`}get iconToUse(){return this.icon||this._defaultIconPath}shouldUpdate(i){return i.has("level")&&(this._defaultIconPath=this.iconForLevel,!this.icon)?!0:super.shouldUpdate(i)}get iconForLevel(){switch(me.parseLevel(this.level)){case"warn":return Pr;case"suggest":return Lr;case"error":return Nr;default:return null}}},me.ID="sd-field-validation-message",me.levelConverter={fromAttribute(i){return me.parseLevel(i)},toAttribute(i){return i&&i.toLowerCase()}},me);pn([C({type:String,attribute:!0})],Pe.prototype,"message",2);pn([C({type:String,attribute:!0})],Pe.prototype,"icon",2);pn([C({converter:Pe.levelConverter,reflect:!0})],Pe.prototype,"level",2);let Dt=Pe;var ut=(i=>(i.Warn="warn",i.Suggest="suggest",i.Error="error",i))(ut||{});customElements.get(Dt.ID)||customElements.define(Dt.ID,Dt);const jr=":host{display:inline-flex;position:relative;cursor:text;font-family:Segoe UI,Lucida Sans,Arial,sans-serif;font-size:16px;color:#111;contain:layout style;flex-direction:column}:host([hidden]),:host([type=hidden]){display:none!important}:host([effective-disabled]){opacity:.6;cursor:default;filter:grayscale(100%)}:host([effective-disabled]) .unfocused-line,:host([effective-disabled]) .focused-line{border-bottom-style:dashed}:host(:not([effective-disabled]):focus) .focused-line,:host(:not([effective-disabled])[focused]) .focused-line{transform:none;transition:transform .25s}:host(:not([effective-disabled]):focus) .label.float,:host(:not([effective-disabled])[focused]) .label.float{color:var(--sd-input-focused-color, #1467ba)}:host([inactive]) .input{pointer-events:none}:host([effective-disabled]:focus),:host([effective-disabled][focused]){box-shadow:0 0 0 1px #111}:host(:not([effective-disabled])[validationlevel]) .focused-line,:host(:not([effective-disabled]):invalid) .focused-line{transform:none;transition:transform .25s}:host([validationlevel=warn i]) .focused-line{border-bottom-color:var(--sd-input-validation-color, #555555)}:host([validationlevel=warn i]) .label,:host([validationlevel=warn i]) .validation-message{color:var(--sd-input-validation-color, #555555)!important}:host([validationlevel=suggest i]) .focused-line{border-bottom-color:var(--sd-input-validation-color, #bf8800)}:host([validationlevel=suggest i]) .label,:host([validationlevel=suggest i]) .validation-message{color:var(--sd-input-validation-color, #bf8800)!important}:host([validationlevel=error i]) .focused-line,:host(:not([validationlevel]):invalid) .focused-line{border-bottom-color:var(--sd-input-validation-color, #cc0017)}:host([validationlevel=error i]) .label,:host([validationlevel=error i]) .validation-message,:host(:not([validationlevel]):invalid) .label,:host(:not([validationlevel]):invalid) .validation-message{color:var(--sd-input-validation-color, #cc0017)!important}.validation-message-wrapper{min-height:var(--sd-input-validation-message-minheight, 0px);position:relative;font-size:0}.validation-message{position:relative;position:var(--sd-input-validation-message-minheight, absolute);left:0;right:0}.label.float{transform:translateY(-75%) scale(.75);width:133%}.label:not(.float){max-width:100%}.floated-label-placeholder{height:20px;width:100%}.label{position:absolute;top:0;left:0;line-height:24px;pointer-events:none;color:var(--sd-input-color, #767676);transition:transform .25s,width .25s;transform-origin:left top}.input-wrapper{position:relative;display:flex;flex-direction:row;align-items:center;background-color:var(--input-wrapper-background-color)}:host([extended-prefix]:focus-within:not([effective-disabled])) .input-wrapper{flex-direction:column;align-items:baseline}:host([extended-prefix]:focus-within:not([effective-disabled])) .input-container{width:100%}:host([extended-prefix]:not(:focus-within)) .input-container,:host([extended-prefix][effective-disabled]) .input-container{width:0px}.input-container{line-height:var(--sd-input-line-height, 24px);flex:1 1 auto}.input{width:100%;background:var(--sd-input-background, transparent);font-family:inherit;font-size:inherit;text-align:inherit;color:inherit;border:none;outline:none;resize:none;padding-left:0;padding-right:0}.input:-webkit-autofill{animation-name:onautofillstart}.input:not(:-webkit-autofill){animation-name:onautofillcancel}@keyframes onautofillstart{0%{outline:none}}@keyframes onautofillcancel{0%{outline:none}}.label,input.input{text-overflow:ellipsis;overflow-x:hidden;white-space:nowrap}.validation-message{text-overflow:ellipsis;overflow-x:hidden;white-space:normal;white-space:var(--sd-input-validation-message-minheight, nowrap)}.input::placeholder{color:var(--sd-input-color, #767676)}.underline{height:2px;width:100%;position:relative}.unfocused-line,.focused-line{position:absolute;top:0;right:0;bottom:0;left:0}.unfocused-line{border-bottom:1px solid var(--sd-input-underline-color, #959595)}.focused-line{border-bottom:2px solid var(--sd-input-focused-color, #1467ba);transform-origin:center center;transform:scale3d(0,1,1)}.prefix,.suffix{display:flex;flex-wrap:nowrap;max-width:100%}.prefix ::slotted(*),.suffix ::slotted(*){display:flex}";var Dr=Object.defineProperty,zr=Object.getOwnPropertyDescriptor,N=(i,e,t,n)=>{for(var s=n>1?void 0:n?zr(e,t):e,o=i.length-1,r;o>=0;o--)(r=i[o])&&(s=(n?r(e,t,s):r(s))||s);return n&&s&&Dr(e,t,s),s};const Ur="sd-lit-input",qn="delegatesFocus"in window.ShadowRoot.prototype;let Br=0;var B;const M=(B=class extends ce{constructor(){super(),this.rows=1,this.effectiveDisabled=!1,this.type="text",this.autocomplete="off";const e=Br++;this._validationMessageId=B.ID+"_message_"+e,this._inputId=B.ID+"_input_"+e,this.attachInternals&&!this.activeShadyDOM&&(this._internals=this.attachInternals())}connectedCallback(){super.connectedCallback(),this.hasAttribute("tabIndex")||(this.tabIndex=0)}firstUpdated(e){super.firstUpdated(e),this.initAutocompleted(this.inputElement),this.updateInitialValue(),this.updateFormValidity(),this.hasAttribute("disabled")&&(this.disabled=!0),this.inputElement.oninput=t=>{this.autocompleted=t.inputType==="insertReplacementText"||!("data"in t),this.currentText=this.inputElement.value,this.fireValueChange(!0)},this.inputElement.onchange=()=>this.fireValueChange(),qn||(this.inputElement.onfocus=()=>this.setAttribute("focused",""),this.inputElement.onblur=()=>this.removeAttribute("focused"),this.addEventListener("focus",t=>{t.target===this&&this.inputElement.focus()})),this.inputElement.addEventListener("keyup",()=>{this.updateFormValidity()}),this.addEventListener("keydown",t=>{var n,s;t.key=="Enter"&&((s=(n=this._internals)==null?void 0:n.form)==null||s.requestSubmit())}),this._initialized=!0}initAutocompleted(e){const t=n=>{/^onautofillstart(-sd-lit-input-\d+|\s?)$/.test(n.animationName)?this.autocompleted=!0:/^onautofillcancel(-sd-lit-input-\d+|\s?)$/.test(n.animationName)&&(this.autocompleted=!1)};this.activeShadyDOM?(this._needsAutocompletedCheck=!0,this.activeShadyDOM.nativeMethods.addEventListener.call(e,"animationstart",t)):e.addEventListener("animationstart",t)}get activeShadyDOM(){const e=window.ShadyDOM;return e&&e.inUse?e:null}updateInitialValue(){typeof this.currentText<"u"?this.value=this.currentText:this.value=this.getAttribute("value"),this.value&&(this.currentText=this.inputElement.value),this._initialValue=this.value}get disabled(){return this.hasAttribute("disabled")}set disabled(e){e?this.setAttribute("disabled",""):this.removeAttribute("disabled"),this._internals||(this.effectiveDisabled=e)}get inputElement(){return this.shadowRoot&&!this._inputElement&&(this._inputElement=this.shadowRoot.querySelector(".input")),this._inputElement}get value(){return this.inputElement&&this.inputElement.value}set value(e){this.currentText=e||"",this.inputElement&&(this.inputElement.value=this.currentText),this.setFormValue(this.currentText)}get selectionStart(){return this.inputElement?this.inputElement.selectionStart:0}focus(){this.inputElement?this.inputElement.focus():super.focus()}select(){this.inputElement&&this.inputElement.select()}setSelectionRange(e,t){this.updateComplete.then(()=>{this.inputElement&&this.inputElement.setSelectionRange(e,t)})}static get styles(){return[wi`
379
- ${hn(jr)}
380
- `]}render(){var s;let e;const t=this.validationMessage||((s=this.inputElement)==null?void 0:s.validationMessage),n=t||this.validationLevel!=null;return this.rows===1?e=ee`
398
+ `,fr={mainContent:ur,description:dr,css:hr,initializer:{content:pr,type:"typescript",initialize:()=>fn(()=>import("./validation.js"),[],import.meta.url)}},mr=Object.freeze(Object.defineProperty({__proto__:null,default:fr},Symbol.toStringTag,{value:"Module"}));const pt=globalThis,mn=pt.ShadowRoot&&(pt.ShadyCSS===void 0||pt.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,gn=Symbol(),Gn=new WeakMap;let Li=class{constructor(e,n,r){if(this._$cssResult$=!0,r!==gn)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=e,this.t=n}get styleSheet(){let e=this.o;const n=this.t;if(mn&&e===void 0){const r=n!==void 0&&n.length===1;r&&(e=Gn.get(n)),e===void 0&&((this.o=e=new CSSStyleSheet).replaceSync(this.cssText),r&&Gn.set(n,e))}return e}toString(){return this.cssText}};const bn=i=>new Li(typeof i=="string"?i:i+"",void 0,gn),Ii=(i,...e)=>{const n=i.length===1?i[0]:e.reduce(((r,t,u)=>r+(a=>{if(a._$cssResult$===!0)return a.cssText;if(typeof a=="number")return a;throw Error("Value passed to 'css' function must be a 'css' function result: "+a+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(t)+i[u+1]),i[0]);return new Li(n,i,gn)},gr=(i,e)=>{if(mn)i.adoptedStyleSheets=e.map((n=>n instanceof CSSStyleSheet?n:n.styleSheet));else for(const n of e){const r=document.createElement("style"),t=pt.litNonce;t!==void 0&&r.setAttribute("nonce",t),r.textContent=n.cssText,i.appendChild(r)}},Zn=mn?i=>i:i=>i instanceof CSSStyleSheet?(e=>{let n="";for(const r of e.cssRules)n+=r.cssText;return bn(n)})(i):i;const{is:br,defineProperty:yr,getOwnPropertyDescriptor:vr,getOwnPropertyNames:wr,getOwnPropertySymbols:xr,getPrototypeOf:_r}=Object,yt=globalThis,Jn=yt.trustedTypes,Er=Jn?Jn.emptyScript:"",Sr=yt.reactiveElementPolyfillSupport,Je=(i,e)=>i,ft={toAttribute(i,e){switch(e){case Boolean:i=i?Er:null;break;case Object:case Array:i=i==null?i:JSON.stringify(i)}return i},fromAttribute(i,e){let n=i;switch(e){case Boolean:n=i!==null;break;case Number:n=i===null?null:Number(i);break;case Object:case Array:try{n=JSON.parse(i)}catch{n=null}}return n}},yn=(i,e)=>!br(i,e),Kn={attribute:!0,type:String,converter:ft,reflect:!1,useDefault:!1,hasChanged:yn};Symbol.metadata??=Symbol("metadata"),yt.litPropertyMetadata??=new WeakMap;let Ue=class extends HTMLElement{static addInitializer(e){this._$Ei(),(this.l??=[]).push(e)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(e,n=Kn){if(n.state&&(n.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(e)&&((n=Object.create(n)).wrapped=!0),this.elementProperties.set(e,n),!n.noAccessor){const r=Symbol(),t=this.getPropertyDescriptor(e,r,n);t!==void 0&&yr(this.prototype,e,t)}}static getPropertyDescriptor(e,n,r){const{get:t,set:u}=vr(this.prototype,e)??{get(){return this[n]},set(a){this[n]=a}};return{get:t,set(a){const f=t?.call(this);u?.call(this,a),this.requestUpdate(e,f,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(e){return this.elementProperties.get(e)??Kn}static _$Ei(){if(this.hasOwnProperty(Je("elementProperties")))return;const e=_r(this);e.finalize(),e.l!==void 0&&(this.l=[...e.l]),this.elementProperties=new Map(e.elementProperties)}static finalize(){if(this.hasOwnProperty(Je("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Je("properties"))){const n=this.properties,r=[...wr(n),...xr(n)];for(const t of r)this.createProperty(t,n[t])}const e=this[Symbol.metadata];if(e!==null){const n=litPropertyMetadata.get(e);if(n!==void 0)for(const[r,t]of n)this.elementProperties.set(r,t)}this._$Eh=new Map;for(const[n,r]of this.elementProperties){const t=this._$Eu(n,r);t!==void 0&&this._$Eh.set(t,n)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(e){const n=[];if(Array.isArray(e)){const r=new Set(e.flat(1/0).reverse());for(const t of r)n.unshift(Zn(t))}else e!==void 0&&n.push(Zn(e));return n}static _$Eu(e,n){const r=n.attribute;return r===!1?void 0:typeof r=="string"?r:typeof e=="string"?e.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise((e=>this.enableUpdating=e)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((e=>e(this)))}addController(e){(this._$EO??=new Set).add(e),this.renderRoot!==void 0&&this.isConnected&&e.hostConnected?.()}removeController(e){this._$EO?.delete(e)}_$E_(){const e=new Map,n=this.constructor.elementProperties;for(const r of n.keys())this.hasOwnProperty(r)&&(e.set(r,this[r]),delete this[r]);e.size>0&&(this._$Ep=e)}createRenderRoot(){const e=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return gr(e,this.constructor.elementStyles),e}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach((e=>e.hostConnected?.()))}enableUpdating(e){}disconnectedCallback(){this._$EO?.forEach((e=>e.hostDisconnected?.()))}attributeChangedCallback(e,n,r){this._$AK(e,r)}_$ET(e,n){const r=this.constructor.elementProperties.get(e),t=this.constructor._$Eu(e,r);if(t!==void 0&&r.reflect===!0){const u=(r.converter?.toAttribute!==void 0?r.converter:ft).toAttribute(n,r.type);this._$Em=e,u==null?this.removeAttribute(t):this.setAttribute(t,u),this._$Em=null}}_$AK(e,n){const r=this.constructor,t=r._$Eh.get(e);if(t!==void 0&&this._$Em!==t){const u=r.getPropertyOptions(t),a=typeof u.converter=="function"?{fromAttribute:u.converter}:u.converter?.fromAttribute!==void 0?u.converter:ft;this._$Em=t;const f=a.fromAttribute(n,u.type);this[t]=f??this._$Ej?.get(t)??f,this._$Em=null}}requestUpdate(e,n,r){if(e!==void 0){const t=this.constructor,u=this[e];if(r??=t.getPropertyOptions(e),!((r.hasChanged??yn)(u,n)||r.useDefault&&r.reflect&&u===this._$Ej?.get(e)&&!this.hasAttribute(t._$Eu(e,r))))return;this.C(e,n,r)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(e,n,{useDefault:r,reflect:t,wrapped:u},a){r&&!(this._$Ej??=new Map).has(e)&&(this._$Ej.set(e,a??n??this[e]),u!==!0||a!==void 0)||(this._$AL.has(e)||(this.hasUpdated||r||(n=void 0),this._$AL.set(e,n)),t===!0&&this._$Em!==e&&(this._$Eq??=new Set).add(e))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(n){Promise.reject(n)}const e=this.scheduleUpdate();return e!=null&&await e,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,u]of this._$Ep)this[t]=u;this._$Ep=void 0}const r=this.constructor.elementProperties;if(r.size>0)for(const[t,u]of r){const{wrapped:a}=u,f=this[t];a!==!0||this._$AL.has(t)||f===void 0||this.C(t,void 0,u,f)}}let e=!1;const n=this._$AL;try{e=this.shouldUpdate(n),e?(this.willUpdate(n),this._$EO?.forEach((r=>r.hostUpdate?.())),this.update(n)):this._$EM()}catch(r){throw e=!1,this._$EM(),r}e&&this._$AE(n)}willUpdate(e){}_$AE(e){this._$EO?.forEach((n=>n.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(e){return!0}update(e){this._$Eq&&=this._$Eq.forEach((n=>this._$ET(n,this[n]))),this._$EM()}updated(e){}firstUpdated(e){}};Ue.elementStyles=[],Ue.shadowRootOptions={mode:"open"},Ue[Je("elementProperties")]=new Map,Ue[Je("finalized")]=new Map,Sr?.({ReactiveElement:Ue}),(yt.reactiveElementVersions??=[]).push("2.1.1");const vn=globalThis,mt=vn.trustedTypes,Xn=mt?mt.createPolicy("lit-html",{createHTML:i=>i}):void 0,Ti="$lit$",Se=`lit$${Math.random().toFixed(9).slice(2)}$`,ji="?"+Se,Ar=`<${ji}>`,Ne=document,Xe=()=>Ne.createComment(""),Qe=i=>i===null||typeof i!="object"&&typeof i!="function",wn=Array.isArray,kr=i=>wn(i)||typeof i?.[Symbol.iterator]=="function",Tt=`[
399
+ \f\r]`,Ge=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Qn=/-->/g,Yn=/>/g,Ce=RegExp(`>|${Tt}(?:([^\\s"'>=/]+)(${Tt}*=${Tt}*(?:[^
400
+ \f\r"'\`<>=]|("|')|))|$)`,"g"),ei=/'/g,ti=/"/g,Di=/^(?:script|style|textarea|title)$/i,$r=i=>(e,...n)=>({_$litType$:i,strings:e,values:n}),Ee=$r(1),Be=Symbol.for("lit-noChange"),ie=Symbol.for("lit-nothing"),ni=new WeakMap,Re=Ne.createTreeWalker(Ne,129);function zi(i,e){if(!wn(i)||!i.hasOwnProperty("raw"))throw Error("invalid template strings array");return Xn!==void 0?Xn.createHTML(e):e}const Or=(i,e)=>{const n=i.length-1,r=[];let t,u=e===2?"<svg>":e===3?"<math>":"",a=Ge;for(let f=0;f<n;f++){const b=i[f];let d,s,c=-1,o=0;for(;o<b.length&&(a.lastIndex=o,s=a.exec(b),s!==null);)o=a.lastIndex,a===Ge?s[1]==="!--"?a=Qn:s[1]!==void 0?a=Yn:s[2]!==void 0?(Di.test(s[2])&&(t=RegExp("</"+s[2],"g")),a=Ce):s[3]!==void 0&&(a=Ce):a===Ce?s[0]===">"?(a=t??Ge,c=-1):s[1]===void 0?c=-2:(c=a.lastIndex-s[2].length,d=s[1],a=s[3]===void 0?Ce:s[3]==='"'?ti:ei):a===ti||a===ei?a=Ce:a===Qn||a===Yn?a=Ge:(a=Ce,t=void 0);const l=a===Ce&&i[f+1].startsWith("/>")?" ":"";u+=a===Ge?b+Ar:c>=0?(r.push(d),b.slice(0,c)+Ti+b.slice(c)+Se+l):b+Se+(c===-2?f:l)}return[zi(i,u+(i[n]||"<?>")+(e===2?"</svg>":e===3?"</math>":"")),r]};class Ye{constructor({strings:e,_$litType$:n},r){let t;this.parts=[];let u=0,a=0;const f=e.length-1,b=this.parts,[d,s]=Or(e,n);if(this.el=Ye.createElement(d,r),Re.currentNode=this.el.content,n===2||n===3){const c=this.el.content.firstChild;c.replaceWith(...c.childNodes)}for(;(t=Re.nextNode())!==null&&b.length<f;){if(t.nodeType===1){if(t.hasAttributes())for(const c of t.getAttributeNames())if(c.endsWith(Ti)){const o=s[a++],l=t.getAttribute(c).split(Se),p=/([.?@])?(.*)/.exec(o);b.push({type:1,index:u,name:p[2],strings:l,ctor:p[1]==="."?Rr:p[1]==="?"?Mr:p[1]==="@"?Nr:vt}),t.removeAttribute(c)}else c.startsWith(Se)&&(b.push({type:6,index:u}),t.removeAttribute(c));if(Di.test(t.tagName)){const c=t.textContent.split(Se),o=c.length-1;if(o>0){t.textContent=mt?mt.emptyScript:"";for(let l=0;l<o;l++)t.append(c[l],Xe()),Re.nextNode(),b.push({type:2,index:++u});t.append(c[o],Xe())}}}else if(t.nodeType===8)if(t.data===ji)b.push({type:2,index:u});else{let c=-1;for(;(c=t.data.indexOf(Se,c+1))!==-1;)b.push({type:7,index:u}),c+=Se.length-1}u++}}static createElement(e,n){const r=Ne.createElement("template");return r.innerHTML=e,r}}function qe(i,e,n=i,r){if(e===Be)return e;let t=r!==void 0?n._$Co?.[r]:n._$Cl;const u=Qe(e)?void 0:e._$litDirective$;return t?.constructor!==u&&(t?._$AO?.(!1),u===void 0?t=void 0:(t=new u(i),t._$AT(i,n,r)),r!==void 0?(n._$Co??=[])[r]=t:n._$Cl=t),t!==void 0&&(e=qe(i,t._$AS(i,e.values),t,r)),e}class Cr{constructor(e,n){this._$AV=[],this._$AN=void 0,this._$AD=e,this._$AM=n}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(e){const{el:{content:n},parts:r}=this._$AD,t=(e?.creationScope??Ne).importNode(n,!0);Re.currentNode=t;let u=Re.nextNode(),a=0,f=0,b=r[0];for(;b!==void 0;){if(a===b.index){let d;b.type===2?d=new tt(u,u.nextSibling,this,e):b.type===1?d=new b.ctor(u,b.name,b.strings,this,e):b.type===6&&(d=new Pr(u,this,e)),this._$AV.push(d),b=r[++f]}a!==b?.index&&(u=Re.nextNode(),a++)}return Re.currentNode=Ne,t}p(e){let n=0;for(const r of this._$AV)r!==void 0&&(r.strings!==void 0?(r._$AI(e,r,n),n+=r.strings.length-2):r._$AI(e[n])),n++}}class tt{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(e,n,r,t){this.type=2,this._$AH=ie,this._$AN=void 0,this._$AA=e,this._$AB=n,this._$AM=r,this.options=t,this._$Cv=t?.isConnected??!0}get parentNode(){let e=this._$AA.parentNode;const n=this._$AM;return n!==void 0&&e?.nodeType===11&&(e=n.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(e,n=this){e=qe(this,e,n),Qe(e)?e===ie||e==null||e===""?(this._$AH!==ie&&this._$AR(),this._$AH=ie):e!==this._$AH&&e!==Be&&this._(e):e._$litType$!==void 0?this.$(e):e.nodeType!==void 0?this.T(e):kr(e)?this.k(e):this._(e)}O(e){return this._$AA.parentNode.insertBefore(e,this._$AB)}T(e){this._$AH!==e&&(this._$AR(),this._$AH=this.O(e))}_(e){this._$AH!==ie&&Qe(this._$AH)?this._$AA.nextSibling.data=e:this.T(Ne.createTextNode(e)),this._$AH=e}$(e){const{values:n,_$litType$:r}=e,t=typeof r=="number"?this._$AC(e):(r.el===void 0&&(r.el=Ye.createElement(zi(r.h,r.h[0]),this.options)),r);if(this._$AH?._$AD===t)this._$AH.p(n);else{const u=new Cr(t,this),a=u.u(this.options);u.p(n),this.T(a),this._$AH=u}}_$AC(e){let n=ni.get(e.strings);return n===void 0&&ni.set(e.strings,n=new Ye(e)),n}k(e){wn(this._$AH)||(this._$AH=[],this._$AR());const n=this._$AH;let r,t=0;for(const u of e)t===n.length?n.push(r=new tt(this.O(Xe()),this.O(Xe()),this,this.options)):r=n[t],r._$AI(u),t++;t<n.length&&(this._$AR(r&&r._$AB.nextSibling,t),n.length=t)}_$AR(e=this._$AA.nextSibling,n){for(this._$AP?.(!1,!0,n);e!==this._$AB;){const r=e.nextSibling;e.remove(),e=r}}setConnected(e){this._$AM===void 0&&(this._$Cv=e,this._$AP?.(e))}}class vt{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(e,n,r,t,u){this.type=1,this._$AH=ie,this._$AN=void 0,this.element=e,this.name=n,this._$AM=t,this.options=u,r.length>2||r[0]!==""||r[1]!==""?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=ie}_$AI(e,n=this,r,t){const u=this.strings;let a=!1;if(u===void 0)e=qe(this,e,n,0),a=!Qe(e)||e!==this._$AH&&e!==Be,a&&(this._$AH=e);else{const f=e;let b,d;for(e=u[0],b=0;b<u.length-1;b++)d=qe(this,f[r+b],n,b),d===Be&&(d=this._$AH[b]),a||=!Qe(d)||d!==this._$AH[b],d===ie?e=ie:e!==ie&&(e+=(d??"")+u[b+1]),this._$AH[b]=d}a&&!t&&this.j(e)}j(e){e===ie?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,e??"")}}class Rr extends vt{constructor(){super(...arguments),this.type=3}j(e){this.element[this.name]=e===ie?void 0:e}}class Mr extends vt{constructor(){super(...arguments),this.type=4}j(e){this.element.toggleAttribute(this.name,!!e&&e!==ie)}}class Nr extends vt{constructor(e,n,r,t,u){super(e,n,r,t,u),this.type=5}_$AI(e,n=this){if((e=qe(this,e,n,0)??ie)===Be)return;const r=this._$AH,t=e===ie&&r!==ie||e.capture!==r.capture||e.once!==r.once||e.passive!==r.passive,u=e!==ie&&(r===ie||t);t&&this.element.removeEventListener(this.name,this,r),u&&this.element.addEventListener(this.name,this,e),this._$AH=e}handleEvent(e){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,e):this._$AH.handleEvent(e)}}let Pr=class{constructor(e,n,r){this.element=e,this.type=6,this._$AN=void 0,this._$AM=n,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(e){qe(this,e)}};const Lr=vn.litHtmlPolyfillSupport;Lr?.(Ye,tt),(vn.litHtmlVersions??=[]).push("3.3.1");const Ir=(i,e,n)=>{const r=n?.renderBefore??e;let t=r._$litPart$;if(t===void 0){const u=n?.renderBefore??null;r._$litPart$=t=new tt(e.insertBefore(Xe(),u),u,void 0,n??{})}return t._$AI(i),t};const xn=globalThis;class Me extends Ue{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const e=super.createRenderRoot();return this.renderOptions.renderBefore??=e.firstChild,e}update(e){const n=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(e),this._$Do=Ir(n,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return Be}}Me._$litElement$=!0,Me.finalized=!0,xn.litElementHydrateSupport?.({LitElement:Me});const Tr=xn.litElementPolyfillSupport;Tr?.({LitElement:Me});(xn.litElementVersions??=[]).push("4.2.1");const jr={attribute:!0,type:String,converter:ft,reflect:!1,hasChanged:yn},Dr=(i=jr,e,n)=>{const{kind:r,metadata:t}=n;let u=globalThis.litPropertyMetadata.get(t);if(u===void 0&&globalThis.litPropertyMetadata.set(t,u=new Map),r==="setter"&&((i=Object.create(i)).wrapped=!0),u.set(n.name,i),r==="accessor"){const{name:a}=n;return{set(f){const b=e.get.call(this);e.set.call(this,f),this.requestUpdate(a,b,i)},init(f){return f!==void 0&&this.C(a,void 0,i,f),f}}}if(r==="setter"){const{name:a}=n;return function(f){const b=this[a];e.call(this,f),this.requestUpdate(a,b,i)}}throw Error("Unsupported decorator location: "+r)};function Z(i){return(e,n)=>typeof n=="object"?Dr(i,e,n):((r,t,u)=>{const a=t.hasOwnProperty(u);return t.constructor.createProperty(u,r),a?Object.getOwnPropertyDescriptor(t,u):void 0})(i,e,n)}const pe=i=>i??ie,zr=":host{display:inline-block;font-size:13px;line-height:20px;font-family:Segoe UI,Lucida Sans,Arial,sans-serif;color:#111;contain:content}:host([hidden]){display:none!important}:host([level=warn i]){color:#555}:host([level=suggest i]){color:#bf8800}:host([level=error i]){color:#cc0017}:host([level=warn]){color:#555}:host([level=suggest]){color:#bf8800}:host([level=error]){color:#cc0017}.icon{height:12px;width:12px;padding-right:4px;margin-bottom:-1px}",Ur="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2012'%3e%3cstyle%20id='style3'%3e%20.st0{fill:%23fff}.st1{fill:%23c00}%20%3c/style%3e%3cg%20id='g5'%3e%3cpath%20class='st1'%20d='M6%20.9c2.8%200%205.1%202.3%205.1%205.1S8.8%2011.1%206%2011.1.9%208.8.9%206%203.2.9%206%20.9m0-1C2.7-.1-.1%202.7-.1%206s2.7%206.1%206.1%206.1%206.1-2.7%206.1-6.1S9.3-.1%206-.1z'%20id='path9'/%3e%3c/g%3e%3cg%20id='g11'%3e%3cpath%20class='st0'%20id='rect13'%20d='M5.5%202.5h1v4h-1z'/%3e%3cpath%20class='st1'%20d='M6%203v3-3m1-1H5v5h2V2z'%20id='path15'/%3e%3c/g%3e%3cg%20id='g17'%3e%3cpath%20class='st0'%20id='rect19'%20d='M5.5%208.5h1v1h-1z'/%3e%3cpath%20class='st1'%20id='polygon21'%20d='M7%208H5v2h2V8z'/%3e%3c/g%3e%3c/svg%3e",Br="data:image/svg+xml,%3csvg%20id='Ebene_1'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3cstyle%3e%20.st0{fill:%23bf8800}%20%3c/style%3e%3cpath%20class='st0'%20d='M12%20.8l11%2019.8v1.3H1v-1.3L12%20.8zm.8-.6h-1.6L0%2020v3h24v-3L12.8.2z'/%3e%3cpath%20class='st0'%20d='M11%208h2v8h-2zm0%2010h2v2h-2z'/%3e%3c/svg%3e",qr="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2012'%3e%3cpath%20class='st1'%20d='M6%20.9c2.8%200%205.1%202.3%205.1%205.1S8.8%2011.1%206%2011.1.9%208.8.9%206%203.2.9%206%20.9m0-1C2.7-.1-.1%202.7-.1%206s2.7%206.1%206.1%206.1%206.1-2.7%206.1-6.1S9.3-.1%206-.1z'%20fill='%23555'/%3e%3cpath%20d='M6%209V6v3m-1%201h2V5H5v5zm2-8H5v2h2z'%20class='st1'%20fill='%23555'/%3e%3c/svg%3e";var Fr=Object.defineProperty,_n=(i,e,n,r)=>{for(var t=void 0,u=i.length-1,a;u>=0;u--)(a=i[u])&&(t=a(e,n,t)||t);return t&&Fr(e,n,t),t},ze;const et=(ze=class extends Me{static parseLevel(i){if(i){const e=Object.keys(gt).find(n=>n.toLowerCase()===i.toLowerCase());return e&&gt[e]}}static get styles(){return[Ii`
401
+ ${bn(zr)}
402
+ `]}render(){return Ee`${this.iconToUse&&Ee`<img class="icon" src="${this.iconToUse}">`}${this.message}`}get iconToUse(){return this.icon||this._defaultIconPath}shouldUpdate(i){return i.has("level")&&(this._defaultIconPath=this.iconForLevel,!this.icon)?!0:super.shouldUpdate(i)}get iconForLevel(){switch(ze.parseLevel(this.level)){case"warn":return qr;case"suggest":return Br;case"error":return Ur;default:return null}}},ze.ID="sd-field-validation-message",ze.levelConverter={fromAttribute(i){return ze.parseLevel(i)},toAttribute(i){return i&&i.toLowerCase()}},ze);_n([Z({type:String,attribute:!0})],et.prototype,"message");_n([Z({type:String,attribute:!0})],et.prototype,"icon");_n([Z({converter:et.levelConverter,reflect:!0})],et.prototype,"level");let jt=et;var gt=(i=>(i.Warn="warn",i.Suggest="suggest",i.Error="error",i))(gt||{});customElements.get(jt.ID)||customElements.define(jt.ID,jt);const Hr=":host{display:inline-flex;position:relative;cursor:text;font-family:Segoe UI,Lucida Sans,Arial,sans-serif;font-size:16px;color:#111;contain:layout style;flex-direction:column}:host([hidden]),:host([type=hidden]){display:none!important}:host([effective-disabled]){opacity:.6;cursor:default;filter:grayscale(100%)}:host([effective-disabled]) .unfocused-line,:host([effective-disabled]) .focused-line{border-bottom-style:dashed}:host(:not([effective-disabled]):focus) .focused-line,:host(:not([effective-disabled])[focused]) .focused-line{transform:none;transition:transform .25s}:host(:not([effective-disabled]):focus) .label.float,:host(:not([effective-disabled])[focused]) .label.float{color:var(--sd-input-focused-color, #1467ba)}:host([inactive]) .input{pointer-events:none}:host([effective-disabled]:focus),:host([effective-disabled][focused]){box-shadow:0 0 0 1px #111}:host(:not([effective-disabled])[validationlevel]) .focused-line,:host(:not([effective-disabled]):invalid) .focused-line{transform:none;transition:transform .25s}:host([validationlevel=warn i]) .focused-line{border-bottom-color:var(--sd-input-validation-color, #555555)}:host([validationlevel=warn i]) .label,:host([validationlevel=warn i]) .validation-message{color:var(--sd-input-validation-color, #555555)!important}:host([validationlevel=suggest i]) .focused-line{border-bottom-color:var(--sd-input-validation-color, #bf8800)}:host([validationlevel=suggest i]) .label,:host([validationlevel=suggest i]) .validation-message{color:var(--sd-input-validation-color, #bf8800)!important}:host([validationlevel=error i]) .focused-line,:host(:not([validationlevel]):invalid) .focused-line{border-bottom-color:var(--sd-input-validation-color, #cc0017)}:host([validationlevel=error i]) .label,:host([validationlevel=error i]) .validation-message,:host(:not([validationlevel]):invalid) .label,:host(:not([validationlevel]):invalid) .validation-message{color:var(--sd-input-validation-color, #cc0017)!important}.validation-message-wrapper{min-height:var(--sd-input-validation-message-minheight, 0px);position:relative;font-size:0}.validation-message{position:relative;position:var(--sd-input-validation-message-minheight, absolute);left:0;right:0}.label.float{transform:translateY(-75%) scale(.75);width:133%}.label:not(.float){max-width:100%}.floated-label-placeholder{height:20px;width:100%}.label{position:absolute;top:0;left:0;line-height:24px;pointer-events:none;color:var(--sd-input-color, #767676);transition:transform .25s,width .25s;transform-origin:left top}.input-wrapper{position:relative;display:flex;flex-direction:row;align-items:center;background-color:var(--input-wrapper-background-color)}:host([extended-prefix]:focus-within:not([effective-disabled])) .input-wrapper{flex-direction:column;align-items:baseline}:host([extended-prefix]:focus-within:not([effective-disabled])) .input-container{width:100%}:host([extended-prefix]:not(:focus-within)) .input-container,:host([extended-prefix][effective-disabled]) .input-container{width:0px}.input-container{line-height:var(--sd-input-line-height, 24px);flex:1 1 auto}.input{width:100%;background:var(--sd-input-background, transparent);font-family:inherit;font-size:inherit;text-align:inherit;color:inherit;border:none;outline:none;resize:none;padding-left:0;padding-right:0}.input:-webkit-autofill{animation-name:onautofillstart}.input:not(:-webkit-autofill){animation-name:onautofillcancel}@keyframes onautofillstart{0%{outline:none}}@keyframes onautofillcancel{0%{outline:none}}.label,input.input{text-overflow:ellipsis;overflow-x:hidden;white-space:nowrap}.validation-message{text-overflow:ellipsis;overflow-x:hidden;white-space:normal;white-space:var(--sd-input-validation-message-minheight, nowrap)}.input::placeholder{color:var(--sd-input-color, #767676)}.underline{height:2px;width:100%;position:relative}.unfocused-line,.focused-line{position:absolute;inset:0}.unfocused-line{border-bottom:1px solid var(--sd-input-underline-color, #959595)}.focused-line{border-bottom:2px solid var(--sd-input-focused-color, #1467ba);transform-origin:center center;transform:scale3d(0,1,1)}.prefix,.suffix{display:flex;flex-wrap:nowrap;max-width:100%}.prefix ::slotted(*),.suffix ::slotted(*){display:flex}";var Wr=Object.defineProperty,Q=(i,e,n,r)=>{for(var t=void 0,u=i.length-1,a;u>=0;u--)(a=i[u])&&(t=a(e,n,t)||t);return t&&Wr(e,n,t),t};const Vr="sd-lit-input",ii="delegatesFocus"in window.ShadowRoot.prototype;let Gr=0;var de;const X=(de=class extends Me{constructor(){super(),this.rows=1,this.effectiveDisabled=!1,this.type="text",this.autocomplete="off";const e=Gr++;this._validationMessageId=de.ID+"_message_"+e,this._inputId=de.ID+"_input_"+e,this.attachInternals&&!this.activeShadyDOM&&(this._internals=this.attachInternals())}connectedCallback(){super.connectedCallback(),this.hasAttribute("tabIndex")||(this.tabIndex=0)}firstUpdated(e){super.firstUpdated(e),this.initAutocompleted(this.inputElement),this.updateInitialValue(),this.updateFormValidity(),this.hasAttribute("disabled")&&(this.disabled=!0),this.inputElement.oninput=n=>{this.autocompleted=n.inputType==="insertReplacementText"||!("data"in n),this.currentText=this.inputElement.value,this.fireValueChange(!0)},this.inputElement.onchange=()=>this.fireValueChange(),ii||(this.inputElement.onfocus=()=>this.setAttribute("focused",""),this.inputElement.onblur=()=>this.removeAttribute("focused"),this.addEventListener("focus",n=>{n.target===this&&this.inputElement.focus()})),this.inputElement.addEventListener("keyup",()=>{this.updateFormValidity()}),this.addEventListener("keydown",n=>{n.key=="Enter"&&this._internals?.form?.requestSubmit()}),this._initialized=!0}initAutocompleted(e){const n=r=>{/^onautofillstart(-sd-lit-input-\d+|\s?)$/.test(r.animationName)?this.autocompleted=!0:/^onautofillcancel(-sd-lit-input-\d+|\s?)$/.test(r.animationName)&&(this.autocompleted=!1)};this.activeShadyDOM?(this._needsAutocompletedCheck=!0,this.activeShadyDOM.nativeMethods.addEventListener.call(e,"animationstart",n)):e.addEventListener("animationstart",n)}get activeShadyDOM(){const e=window.ShadyDOM;return e&&e.inUse?e:null}updateInitialValue(){typeof this.currentText<"u"?this.value=this.currentText:this.value=this.getAttribute("value"),this.value&&(this.currentText=this.inputElement.value),this._initialValue=this.value}get disabled(){return this.hasAttribute("disabled")}set disabled(e){e?this.setAttribute("disabled",""):this.removeAttribute("disabled"),this._internals||(this.effectiveDisabled=e)}get inputElement(){return this.shadowRoot&&!this._inputElement&&(this._inputElement=this.shadowRoot.querySelector(".input")),this._inputElement}get value(){return this.inputElement&&this.inputElement.value}set value(e){this.currentText=e||"",this.inputElement&&(this.inputElement.value=this.currentText),this.setFormValue(this.currentText)}get selectionStart(){return this.inputElement?this.inputElement.selectionStart:0}focus(){this.inputElement?this.inputElement.focus():super.focus()}select(){this.inputElement&&this.inputElement.select()}setSelectionRange(e,n){this.updateComplete.then(()=>{this.inputElement&&this.inputElement.setSelectionRange(e,n)})}static get styles(){return[Ii`
403
+ ${bn(Hr)}
404
+ `]}render(){let e;const n=this.validationMessage||this.inputElement?.validationMessage,r=n||this.validationLevel!=null;return this.rows===1?e=Ee`
381
405
  <input
382
406
  id=${this._inputId}
383
407
  class="input"
384
408
  .type=${this.type}
385
- placeholder=${F(this.placeholder||void 0)}
386
- name=${F(this.name||void 0)}
409
+ placeholder=${pe(this.placeholder||void 0)}
410
+ name=${pe(this.name||void 0)}
387
411
  aria-disabled=${this.effectiveDisabled}
388
412
  autocomplete=${this.autocomplete}
389
413
  ?disabled=${this.inactive}
390
414
  ?readonly=${this.readonly||this.effectiveDisabled}
391
415
  ?required=${this.required}
392
- maxlength=${this.maxlength>0?this.maxlength:B.DEFAULT_MAX_LENGTH}
416
+ maxlength=${this.maxlength>0?this.maxlength:de.DEFAULT_MAX_LENGTH}
393
417
  aria-describedby=${this._validationMessageId}
394
- aria-invalid=${F(n)}
395
- aria-label=${F(this.sdAriaLabel||void 0)}
396
- min=${F(this.min||void 0)}
397
- max=${F(this.max||void 0)}
398
- pattern=${F(this.pattern||void 0)}
418
+ aria-invalid=${pe(r)}
419
+ aria-label=${pe(this.sdAriaLabel||void 0)}
420
+ min=${pe(this.min||void 0)}
421
+ max=${pe(this.max||void 0)}
422
+ pattern=${pe(this.pattern||void 0)}
399
423
  />
400
- `:e=ee`
424
+ `:e=Ee`
401
425
  <textarea
402
426
  id=${this._inputId}
403
427
  class="input"
404
- placeholder=${F(this.placeholder||void 0)}
405
- name=${F(this.name||void 0)}
428
+ placeholder=${pe(this.placeholder||void 0)}
429
+ name=${pe(this.name||void 0)}
406
430
  aria-disabled=${this.effectiveDisabled}
407
431
  autocomplete=${this.autocomplete}
408
432
  ?disabled=${this.inactive}
409
433
  ?readonly=${this.readonly||this.effectiveDisabled}
410
434
  ?required=${this.required}
411
- maxlength=${this.maxlength>0?this.maxlength:B.DEFAULT_MAX_LENGTH}
435
+ maxlength=${this.maxlength>0?this.maxlength:de.DEFAULT_MAX_LENGTH}
412
436
  rows=${this.rows}
413
437
  aria-describedby=${this._validationMessageId}
414
- aria-invalid=${F(n)}
415
- aria-label=${F(this.sdAriaLabel||void 0)}
438
+ aria-invalid=${pe(r)}
439
+ aria-label=${pe(this.sdAriaLabel||void 0)}
416
440
  ></textarea>
417
- `,ee`
418
- ${this.label?ee` <div class="floated-label-placeholder" aria-hidden="true">&nbsp;</div> `:L}
441
+ `,Ee`
442
+ ${this.label?Ee` <div class="floated-label-placeholder" aria-hidden="true">&nbsp;</div> `:ie}
419
443
  <div class="input-wrapper">
420
444
  <span class="prefix"><slot name="prefix"></slot></span>
421
445
  <div class="input-container" style="position:${this.shouldFloat()?"static":"relative"};">
422
- ${this.label&&ee`
446
+ ${this.label&&Ee`
423
447
  <label for="${this._inputId}" class="label ${this.shouldFloat()?"float":""}"
424
448
  >${this.label}</label
425
449
  >
@@ -433,46 +457,49 @@ setupValidation("suggestion", ValidationLevel.Suggest);
433
457
  <div class="focused-line"></div>
434
458
  </div>
435
459
  <div class="validation-message-wrapper" aria-hidden="true">
436
- ${(t||this.validationIconSrc)&&ee`
460
+ ${(n||this.validationIconSrc)&&Ee`
437
461
  <sd-field-validation-message
438
462
  id=${this._validationMessageId}
439
463
  class="validation-message"
440
- .message=${t}
464
+ .message=${n}
441
465
  .icon=${this.validationIconSrc}
442
466
  .level=${this.validationLevel}
443
467
  >
444
468
  </sd-field-validation-message>
445
469
  `}
446
470
  </div>
447
- `}updated(e){super.updated(e),this._needsAutocompletedCheck&&!this.autocompleted&&setTimeout(()=>{try{this.autocompleted=this.autocompleted||!!this.shadowRoot.querySelector(":-webkit-autofill")}catch{}},0),this.rows>1&&((e.has("min")||e.has("max")||e.has("pattern"))&&console.warn("min, max & pattern attributes are not supported with multiple rows configuration."),this.type!="text"&&console.warn(`type: ${this.type} is not supported with multiple rows configuration.`))}update(e){var t,n;if(super.update(e),e.has("validationMessage")&&(this.validationMessage?(t=this._internals)==null||t.setValidity({customError:!0},this.validationMessage):(n=this._internals)==null||n.setValidity(this.inputElement.validity,this.inputElement.validationMessage)),this._initialized&&e.has("rows"))throw Error("rows attribute cannot be changed after the input is attached to the DOM")}fireValueChange(e){this.dispatchEvent(new CustomEvent(`${e?"immediate-":""}value-change`,{detail:{value:this.value}})),this.setFormValue(this.value),this.updateFormValidity()}updateFormValidity(){if(this.validationMessage==null){this._internals.setValidity(this.inputElement.validity,this.inputElement.validationMessage);const e=this.shadowRoot.querySelector("sd-field-validation-message");this.requestUpdate("validationMessage",e==null?null:e.message)}}shouldFloat(){return this.alwaysFloatLabel||this.currentText||this.placeholder||this.autocompleted||this.type==="date"}setFormValue(e){var t;(t=this._internals)==null||t.setFormValue(e)}formResetCallback(){this.value=this._initialValue}formDisabledCallback(e){this.effectiveDisabled=e||this.hasAttribute("disabled")}formAssociatedCallback(e){this._needsAutocompletedCheck=!0}formStateRestoreCallback(e,t){typeof e=="string"&&(this.value=e)}},B.ID=Ur,B.DEFAULT_MAX_LENGTH=524288,B.formAssociated=!0,B.shadowRootOptions={...ce.shadowRootOptions,delegatesFocus:qn},B);N([C({type:String,reflect:!0})],M.prototype,"label",2);N([C({type:String,attribute:!0})],M.prototype,"validationMessage",2);N([C({type:String,attribute:!0})],M.prototype,"validationIconSrc",2);N([C({type:ut,attribute:!0,reflect:!0})],M.prototype,"validationLevel",2);N([C({type:String,hasChanged(i,e){return e!=null&&e!=i}})],M.prototype,"currentText",2);N([C({type:Boolean,attribute:!0})],M.prototype,"alwaysFloatLabel",2);N([C({type:Boolean,attribute:!0})],M.prototype,"autocompleted",2);N([C({type:Number,attribute:!0})],M.prototype,"rows",2);N([C({type:Boolean,reflect:!0,attribute:"effective-disabled"})],M.prototype,"effectiveDisabled",2);N([C({type:Boolean,reflect:!0,attribute:"extended-prefix"})],M.prototype,"extendedPrefix",2);N([C({type:String,reflect:!0})],M.prototype,"type",2);N([C({type:String,reflect:!0})],M.prototype,"placeholder",2);N([C({type:String,reflect:!0})],M.prototype,"sdAriaLabel",2);N([C({type:Number,reflect:!0})],M.prototype,"maxlength",2);N([C({type:Boolean,reflect:!0})],M.prototype,"readonly",2);N([C({type:Boolean,reflect:!0})],M.prototype,"required",2);N([C({type:String,reflect:!0})],M.prototype,"name",2);N([C({type:Boolean,reflect:!0})],M.prototype,"inactive",2);N([C({type:String,attribute:!0})],M.prototype,"autocomplete",2);N([C({type:String,attribute:!0})],M.prototype,"min",2);N([C({type:String,attribute:!0})],M.prototype,"max",2);N([C({type:String,attribute:!0})],M.prototype,"pattern",2);let zt=M;customElements.get(zt.ID)||customElements.define(zt.ID,zt);function Ai(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}function Fr(i){if(i.__esModule)return i;var e=i.default;if(typeof e=="function"){var t=function n(){return this instanceof n?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};t.prototype=e.prototype}else t={};return Object.defineProperty(t,"__esModule",{value:!0}),Object.keys(i).forEach(function(n){var s=Object.getOwnPropertyDescriptor(i,n);Object.defineProperty(t,n,s.get?s:{enumerable:!0,get:function(){return i[n]}})}),t}var fn={exports:{}},A=String,Ci=function(){return{isColorSupported:!1,reset:A,bold:A,dim:A,italic:A,underline:A,inverse:A,hidden:A,strikethrough:A,black:A,red:A,green:A,yellow:A,blue:A,magenta:A,cyan:A,white:A,gray:A,bgBlack:A,bgRed:A,bgGreen:A,bgYellow:A,bgBlue:A,bgMagenta:A,bgCyan:A,bgWhite:A}};fn.exports=Ci();fn.exports.createColors=Ci;var Hr=fn.exports;const Vr={},Wr=Object.freeze(Object.defineProperty({__proto__:null,default:Vr},Symbol.toStringTag,{value:"Module"})),H=Fr(Wr);let Gn=Hr,Zn=H,Zt=class ki extends Error{constructor(e,t,n,s,o,r){super(e),this.name="CssSyntaxError",this.reason=e,o&&(this.file=o),s&&(this.source=s),r&&(this.plugin=r),typeof t<"u"&&typeof n<"u"&&(typeof t=="number"?(this.line=t,this.column=n):(this.line=t.line,this.column=t.column,this.endLine=n.line,this.endColumn=n.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,ki)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;e==null&&(e=Gn.isColorSupported),Zn&&e&&(t=Zn(t));let n=t.split(/\r?\n/),s=Math.max(this.line-3,0),o=Math.min(this.line+2,n.length),r=String(o).length,a,l;if(e){let{bold:c,gray:u,red:p}=Gn.createColors(!0);a=f=>c(p(f)),l=f=>u(f)}else a=l=c=>c;return n.slice(s,o).map((c,u)=>{let p=s+1+u,f=" "+(" "+p).slice(-r)+" | ";if(p===this.line){let x=l(f.replace(/\d/g," "))+c.slice(0,this.column-1).replace(/[^\t]/g," ");return a(">")+l(f)+c+`
448
- `+x+a("^")}return" "+l(f)+c}).join(`
449
- `)}toString(){let e=this.showSourceCode();return e&&(e=`
471
+ `}updated(e){super.updated(e),this._needsAutocompletedCheck&&!this.autocompleted&&setTimeout(()=>{try{this.autocompleted=this.autocompleted||!!this.shadowRoot.querySelector(":-webkit-autofill")}catch{}},0),this.rows>1&&((e.has("min")||e.has("max")||e.has("pattern"))&&console.warn("min, max & pattern attributes are not supported with multiple rows configuration."),this.type!="text"&&console.warn(`type: ${this.type} is not supported with multiple rows configuration.`))}update(e){if(super.update(e),e.has("validationMessage")&&(this.validationMessage?this._internals?.setValidity({customError:!0},this.validationMessage):this._internals?.setValidity(this.inputElement.validity,this.inputElement.validationMessage)),this._initialized&&e.has("rows"))throw Error("rows attribute cannot be changed after the input is attached to the DOM")}fireValueChange(e){this.dispatchEvent(new CustomEvent(`${e?"immediate-":""}value-change`,{detail:{value:this.value}})),this.setFormValue(this.value)}updateFormValidity(){if(this.validationMessage==null){this._internals.setValidity(this.inputElement.validity,this.inputElement.validationMessage);const e=this.shadowRoot.querySelector("sd-field-validation-message");this.requestUpdate("validationMessage",e==null?null:e.message)}}shouldFloat(){return this.alwaysFloatLabel||this.currentText||this.placeholder||this.autocompleted||this.type==="date"}setFormValue(e){this._internals?.setFormValue(e),this.updateFormValidity()}formResetCallback(){this.value=this._initialValue}formDisabledCallback(e){this.effectiveDisabled=e||this.hasAttribute("disabled")}formAssociatedCallback(e){this._needsAutocompletedCheck=!0}formStateRestoreCallback(e,n){typeof e=="string"&&(this.value=e)}},de.ID=Vr,de.DEFAULT_MAX_LENGTH=524288,de.formAssociated=!0,de.shadowRootOptions={...Me.shadowRootOptions,delegatesFocus:ii},de);Q([Z({type:String,reflect:!0})],X.prototype,"label");Q([Z({type:String,attribute:!0})],X.prototype,"validationMessage");Q([Z({type:String,attribute:!0})],X.prototype,"validationIconSrc");Q([Z({type:gt,attribute:!0,reflect:!0})],X.prototype,"validationLevel");Q([Z({type:String,hasChanged(i,e){return e!=null&&e!=i}})],X.prototype,"currentText");Q([Z({type:Boolean,attribute:!0})],X.prototype,"alwaysFloatLabel");Q([Z({type:Boolean,attribute:!0})],X.prototype,"autocompleted");Q([Z({type:Number,attribute:!0})],X.prototype,"rows");Q([Z({type:Boolean,reflect:!0,attribute:"effective-disabled"})],X.prototype,"effectiveDisabled");Q([Z({type:Boolean,reflect:!0,attribute:"extended-prefix"})],X.prototype,"extendedPrefix");Q([Z({type:String,reflect:!0})],X.prototype,"type");Q([Z({type:String,reflect:!0})],X.prototype,"placeholder");Q([Z({type:String,reflect:!0})],X.prototype,"sdAriaLabel");Q([Z({type:Number,reflect:!0})],X.prototype,"maxlength");Q([Z({type:Boolean,reflect:!0})],X.prototype,"readonly");Q([Z({type:Boolean,reflect:!0})],X.prototype,"required");Q([Z({type:String,reflect:!0})],X.prototype,"name");Q([Z({type:Boolean,reflect:!0})],X.prototype,"inactive");Q([Z({type:String,attribute:!0})],X.prototype,"autocomplete");Q([Z({type:String,attribute:!0})],X.prototype,"min");Q([Z({type:String,attribute:!0})],X.prototype,"max");Q([Z({type:String,attribute:!0})],X.prototype,"pattern");let Dt=X;customElements.get(Dt.ID)||customElements.define(Dt.ID,Dt);function Ui(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}function Zr(i){if(Object.prototype.hasOwnProperty.call(i,"__esModule"))return i;var e=i.default;if(typeof e=="function"){var n=function r(){var t=!1;try{t=this instanceof r}catch{}return t?Reflect.construct(e,arguments,this.constructor):e.apply(this,arguments)};n.prototype=e.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(i).forEach(function(r){var t=Object.getOwnPropertyDescriptor(i,r);Object.defineProperty(n,r,t.get?t:{enumerable:!0,get:function(){return i[r]}})}),n}var ut={exports:{}},si;function Jr(){if(si)return ut.exports;si=1;var i=String,e=function(){return{isColorSupported:!1,reset:i,bold:i,dim:i,italic:i,underline:i,inverse:i,hidden:i,strikethrough:i,black:i,red:i,green:i,yellow:i,blue:i,magenta:i,cyan:i,white:i,gray:i,bgBlack:i,bgRed:i,bgGreen:i,bgYellow:i,bgBlue:i,bgMagenta:i,bgCyan:i,bgWhite:i,blackBright:i,redBright:i,greenBright:i,yellowBright:i,blueBright:i,magentaBright:i,cyanBright:i,whiteBright:i,bgBlackBright:i,bgRedBright:i,bgGreenBright:i,bgYellowBright:i,bgBlueBright:i,bgMagentaBright:i,bgCyanBright:i,bgWhiteBright:i}};return ut.exports=e(),ut.exports.createColors=e,ut.exports}const Kr={},Xr=Object.freeze(Object.defineProperty({__proto__:null,default:Kr},Symbol.toStringTag,{value:"Module"})),fe=Zr(Xr);var zt,ri;function En(){if(ri)return zt;ri=1;let i=Jr(),e=fe;class n extends Error{constructor(t,u,a,f,b,d){super(t),this.name="CssSyntaxError",this.reason=t,b&&(this.file=b),f&&(this.source=f),d&&(this.plugin=d),typeof u<"u"&&typeof a<"u"&&(typeof u=="number"?(this.line=u,this.column=a):(this.line=u.line,this.column=u.column,this.endLine=a.line,this.endColumn=a.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,n)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(t){if(!this.source)return"";let u=this.source;t==null&&(t=i.isColorSupported);let a=l=>l,f=l=>l,b=l=>l;if(t){let{bold:l,gray:p,red:m}=i.createColors(!0);f=g=>l(m(g)),a=g=>p(g),e&&(b=g=>e(g))}let d=u.split(/\r?\n/),s=Math.max(this.line-3,0),c=Math.min(this.line+2,d.length),o=String(c).length;return d.slice(s,c).map((l,p)=>{let m=s+1+p,g=" "+(" "+m).slice(-o)+" | ";if(m===this.line){if(l.length>160){let E=20,w=Math.max(0,this.column-E),v=Math.max(this.column+E,this.endColumn+E),y=l.slice(w,v),S=a(g.replace(/\d/g," "))+l.slice(0,Math.min(this.column-1,E-1)).replace(/[^\t]/g," ");return f(">")+a(g)+b(y)+`
472
+ `+S+f("^")}let _=a(g.replace(/\d/g," "))+l.slice(0,this.column-1).replace(/[^\t]/g," ");return f(">")+a(g)+b(l)+`
473
+ `+_+f("^")}return" "+a(g)+b(l)}).join(`
474
+ `)}toString(){let t=this.showSourceCode();return t&&(t=`
450
475
 
451
- `+e+`
452
- `),this.name+": "+this.message+e}};var mn=Zt;Zt.default=Zt;var Fe={};Fe.isClean=Symbol("isClean");Fe.my=Symbol("my");const Kn={after:`
476
+ `+t+`
477
+ `),this.name+": "+this.message+t}}return zt=n,n.default=n,zt}var Ut,oi;function Bi(){if(oi)return Ut;oi=1;const i={after:`
453
478
  `,beforeClose:`
454
479
  `,beforeComment:`
455
480
  `,beforeDecl:`
456
481
  `,beforeOpen:" ",beforeRule:`
457
- `,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function qr(i){return i[0].toUpperCase()+i.slice(1)}let Kt=class{constructor(e){this.builder=e}atrule(e,t){let n="@"+e.name,s=e.params?this.rawValue(e,"params"):"";if(typeof e.raws.afterName<"u"?n+=e.raws.afterName:s&&(n+=" "),e.nodes)this.block(e,n+s);else{let o=(e.raws.between||"")+(t?";":"");this.builder(n+s+o,e)}}beforeAfter(e,t){let n;e.type==="decl"?n=this.raw(e,null,"beforeDecl"):e.type==="comment"?n=this.raw(e,null,"beforeComment"):t==="before"?n=this.raw(e,null,"beforeRule"):n=this.raw(e,null,"beforeClose");let s=e.parent,o=0;for(;s&&s.type!=="root";)o+=1,s=s.parent;if(n.includes(`
458
- `)){let r=this.raw(e,null,"indent");if(r.length)for(let a=0;a<o;a++)n+=r}return n}block(e,t){let n=this.raw(e,"between","beforeOpen");this.builder(t+n+"{",e,"start");let s;e.nodes&&e.nodes.length?(this.body(e),s=this.raw(e,"after")):s=this.raw(e,"after","emptyBody"),s&&this.builder(s),this.builder("}",e,"end")}body(e){let t=e.nodes.length-1;for(;t>0&&e.nodes[t].type==="comment";)t-=1;let n=this.raw(e,"semicolon");for(let s=0;s<e.nodes.length;s++){let o=e.nodes[s],r=this.raw(o,"before");r&&this.builder(r),this.stringify(o,t!==s||n)}}comment(e){let t=this.raw(e,"left","commentLeft"),n=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+n+"*/",e)}decl(e,t){let n=this.raw(e,"between","colon"),s=e.prop+n+this.rawValue(e,"value");e.important&&(s+=e.raws.important||" !important"),t&&(s+=";"),this.builder(s,e)}document(e){this.body(e)}raw(e,t,n){let s;if(n||(n=t),t&&(s=e.raws[t],typeof s<"u"))return s;let o=e.parent;if(n==="before"&&(!o||o.type==="root"&&o.first===e||o&&o.type==="document"))return"";if(!o)return Kn[n];let r=e.root();if(r.rawCache||(r.rawCache={}),typeof r.rawCache[n]<"u")return r.rawCache[n];if(n==="before"||n==="after")return this.beforeAfter(e,n);{let a="raw"+qr(n);this[a]?s=this[a](r,e):r.walk(l=>{if(s=l.raws[t],typeof s<"u")return!1})}return typeof s>"u"&&(s=Kn[n]),r.rawCache[n]=s,s}rawBeforeClose(e){let t;return e.walk(n=>{if(n.nodes&&n.nodes.length>0&&typeof n.raws.after<"u")return t=n.raws.after,t.includes(`
459
- `)&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawBeforeComment(e,t){let n;return e.walkComments(s=>{if(typeof s.raws.before<"u")return n=s.raws.before,n.includes(`
460
- `)&&(n=n.replace(/[^\n]+$/,"")),!1}),typeof n>"u"?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/\S/g,"")),n}rawBeforeDecl(e,t){let n;return e.walkDecls(s=>{if(typeof s.raws.before<"u")return n=s.raws.before,n.includes(`
461
- `)&&(n=n.replace(/[^\n]+$/,"")),!1}),typeof n>"u"?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/\S/g,"")),n}rawBeforeOpen(e){let t;return e.walk(n=>{if(n.type!=="decl"&&(t=n.raws.between,typeof t<"u"))return!1}),t}rawBeforeRule(e){let t;return e.walk(n=>{if(n.nodes&&(n.parent!==e||e.first!==n)&&typeof n.raws.before<"u")return t=n.raws.before,t.includes(`
462
- `)&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawColon(e){let t;return e.walkDecls(n=>{if(typeof n.raws.between<"u")return t=n.raws.between.replace(/[^\s:]/g,""),!1}),t}rawEmptyBody(e){let t;return e.walk(n=>{if(n.nodes&&n.nodes.length===0&&(t=n.raws.after,typeof t<"u"))return!1}),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk(n=>{let s=n.parent;if(s&&s!==e&&s.parent&&s.parent===e&&typeof n.raws.before<"u"){let o=n.raws.before.split(`
463
- `);return t=o[o.length-1],t=t.replace(/\S/g,""),!1}}),t}rawSemicolon(e){let t;return e.walk(n=>{if(n.nodes&&n.nodes.length&&n.last.type==="decl"&&(t=n.raws.semicolon,typeof t<"u"))return!1}),t}rawValue(e,t){let n=e[t],s=e.raws[t];return s&&s.value===n?s.raw:n}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}};var Oi=Kt;Kt.default=Kt;let Gr=Oi;function Jt(i,e){new Gr(e).stringify(i)}var vt=Jt;Jt.default=Jt;let{isClean:Ze,my:Zr}=Fe,Kr=mn,Jr=Oi,Xr=vt;function Xt(i,e){let t=new i.constructor;for(let n in i){if(!Object.prototype.hasOwnProperty.call(i,n)||n==="proxyCache")continue;let s=i[n],o=typeof s;n==="parent"&&o==="object"?e&&(t[n]=e):n==="source"?t[n]=s:Array.isArray(s)?t[n]=s.map(r=>Xt(r,t)):(o==="object"&&s!==null&&(s=Xt(s)),t[n]=s)}return t}let Qt=class{constructor(e={}){this.raws={},this[Ze]=!1,this[Zr]=!0;for(let t in e)if(t==="nodes"){this.nodes=[];for(let n of e[t])typeof n.clone=="function"?this.append(n.clone()):this.append(n)}else this[t]=e[t]}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${t.input.from}:${t.start.line}:${t.start.column}$&`)}return e}after(e){return this.parent.insertAfter(this,e),this}assign(e={}){for(let t in e)this[t]=e[t];return this}before(e){return this.parent.insertBefore(this,e),this}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}clone(e={}){let t=Xt(this);for(let n in e)t[n]=e[n];return t}cloneAfter(e={}){let t=this.clone(e);return this.parent.insertAfter(this,t),t}cloneBefore(e={}){let t=this.clone(e);return this.parent.insertBefore(this,t),t}error(e,t={}){if(this.source){let{end:n,start:s}=this.rangeBy(t);return this.source.input.error(e,{column:s.column,line:s.line},{column:n.column,line:n.line},t)}return new Kr(e)}getProxyProcessor(){return{get(e,t){return t==="proxyOf"?e:t==="root"?()=>e.root().toProxy():e[t]},set(e,t,n){return e[t]===n||(e[t]=n,(t==="prop"||t==="value"||t==="name"||t==="params"||t==="important"||t==="text")&&e.markDirty()),!0}}}markDirty(){if(this[Ze]){this[Ze]=!1;let e=this;for(;e=e.parent;)e[Ze]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e,t){let n=this.source.start;if(e.index)n=this.positionInside(e.index,t);else if(e.word){t=this.toString();let s=t.indexOf(e.word);s!==-1&&(n=this.positionInside(s,t))}return n}positionInside(e,t){let n=t||this.toString(),s=this.source.start.column,o=this.source.start.line;for(let r=0;r<e;r++)n[r]===`
464
- `?(s=1,o+=1):s+=1;return{column:s,line:o}}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}rangeBy(e){let t={column:this.source.start.column,line:this.source.start.line},n=this.source.end?{column:this.source.end.column+1,line:this.source.end.line}:{column:t.column+1,line:t.line};if(e.word){let s=this.toString(),o=s.indexOf(e.word);o!==-1&&(t=this.positionInside(o,s),n=this.positionInside(o+e.word.length,s))}else e.start?t={column:e.start.column,line:e.start.line}:e.index&&(t=this.positionInside(e.index)),e.end?n={column:e.end.column,line:e.end.line}:e.endIndex?n=this.positionInside(e.endIndex):e.index&&(n=this.positionInside(e.index+1));return(n.line<t.line||n.line===t.line&&n.column<=t.column)&&(n={column:t.column+1,line:t.line}),{end:n,start:t}}raw(e,t){return new Jr().raw(this,e,t)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...e){if(this.parent){let t=this,n=!1;for(let s of e)s===this?n=!0:n?(this.parent.insertAfter(t,s),t=s):this.parent.insertBefore(t,s);n||this.remove()}return this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}toJSON(e,t){let n={},s=t==null;t=t||new Map;let o=0;for(let r in this){if(!Object.prototype.hasOwnProperty.call(this,r)||r==="parent"||r==="proxyCache")continue;let a=this[r];if(Array.isArray(a))n[r]=a.map(l=>typeof l=="object"&&l.toJSON?l.toJSON(null,t):l);else if(typeof a=="object"&&a.toJSON)n[r]=a.toJSON(null,t);else if(r==="source"){let l=t.get(a.input);l==null&&(l=o,t.set(a.input,o),o++),n[r]={end:a.end,inputId:l,start:a.start}}else n[r]=a}return s&&(n.inputs=[...t.keys()].map(r=>r.toJSON())),n}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=Xr){e.stringify&&(e=e.stringify);let t="";return e(this,n=>{t+=n}),t}warn(e,t,n){let s={node:this};for(let o in n)s[o]=n[o];return e.warn(t,s)}get proxyOf(){return this}};var yt=Qt;Qt.default=Qt;let Qr=yt,Yt=class extends Qr{constructor(e){e&&typeof e.value<"u"&&typeof e.value!="string"&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}};var wt=Yt;Yt.default=Yt;let Yr="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",eo=(i,e=21)=>(t=e)=>{let n="",s=t;for(;s--;)n+=i[Math.random()*i.length|0];return n},to=(i=21)=>{let e="",t=i;for(;t--;)e+=Yr[Math.random()*64|0];return e};var no={nanoid:to,customAlphabet:eo};let{SourceMapConsumer:Jn,SourceMapGenerator:Xn}=H,{existsSync:io,readFileSync:so}=H,{dirname:Ut,join:ro}=H;function oo(i){return Buffer?Buffer.from(i,"base64").toString():window.atob(i)}let en=class{constructor(e,t){if(t.map===!1)return;this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let n=t.map?t.map.prev:void 0,s=this.loadMap(t.from,n);!this.mapFile&&t.from&&(this.mapFile=t.from),this.mapFile&&(this.root=Ut(this.mapFile)),s&&(this.text=s)}consumer(){return this.consumerCache||(this.consumerCache=new Jn(this.text)),this.consumerCache}decodeInline(e){let t=/^data:application\/json;charset=utf-?8;base64,/,n=/^data:application\/json;base64,/,s=/^data:application\/json;charset=utf-?8,/,o=/^data:application\/json,/;if(s.test(e)||o.test(e))return decodeURIComponent(e.substr(RegExp.lastMatch.length));if(t.test(e)||n.test(e))return oo(e.substr(RegExp.lastMatch.length));let r=e.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+r)}getAnnotationURL(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}isMap(e){return typeof e!="object"?!1:typeof e.mappings=="string"||typeof e._mappings=="string"||Array.isArray(e.sections)}loadAnnotation(e){let t=e.match(/\/\*\s*# sourceMappingURL=/gm);if(!t)return;let n=e.lastIndexOf(t.pop()),s=e.indexOf("*/",n);n>-1&&s>-1&&(this.annotation=this.getAnnotationURL(e.substring(n,s)))}loadFile(e){if(this.root=Ut(e),io(e))return this.mapFile=e,so(e,"utf-8").toString().trim()}loadMap(e,t){if(t===!1)return!1;if(t){if(typeof t=="string")return t;if(typeof t=="function"){let n=t(e);if(n){let s=this.loadFile(n);if(!s)throw new Error("Unable to load previous source map: "+n.toString());return s}}else{if(t instanceof Jn)return Xn.fromSourceMap(t).toString();if(t instanceof Xn)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let n=this.annotation;return e&&(n=ro(Ut(e),n)),this.loadFile(n)}}}startWith(e,t){return e?e.substr(0,t.length)===t:!1}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}};var Ri=en;en.default=en;let{SourceMapConsumer:ao,SourceMapGenerator:lo}=H,{fileURLToPath:Qn,pathToFileURL:Ke}=H,{isAbsolute:tn,resolve:nn}=H,{nanoid:co}=no,Bt=H,Yn=mn,uo=Ri,Ft=Symbol("fromOffsetCache"),ho=!!(ao&&lo),ei=!!(nn&&tn),dt=class{constructor(e,t={}){if(e===null||typeof e>"u"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\uFEFF"||this.css[0]==="￾"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,t.from&&(!ei||/^\w+:\/\//.test(t.from)||tn(t.from)?this.file=t.from:this.file=nn(t.from)),ei&&ho){let n=new uo(this.css,t);if(n.text){this.map=n;let s=n.consumer().file;!this.file&&s&&(this.file=this.mapResolve(s))}}this.file||(this.id="<input css "+co(6)+">"),this.map&&(this.map.file=this.from)}error(e,t,n,s={}){let o,r,a;if(t&&typeof t=="object"){let c=t,u=n;if(typeof c.offset=="number"){let p=this.fromOffset(c.offset);t=p.line,n=p.col}else t=c.line,n=c.column;if(typeof u.offset=="number"){let p=this.fromOffset(u.offset);r=p.line,a=p.col}else r=u.line,a=u.column}else if(!n){let c=this.fromOffset(t);t=c.line,n=c.col}let l=this.origin(t,n,r,a);return l?o=new Yn(e,l.endLine===void 0?l.line:{column:l.column,line:l.line},l.endLine===void 0?l.column:{column:l.endColumn,line:l.endLine},l.source,l.file,s.plugin):o=new Yn(e,r===void 0?t:{column:n,line:t},r===void 0?n:{column:a,line:r},this.css,this.file,s.plugin),o.input={column:n,endColumn:a,endLine:r,line:t,source:this.css},this.file&&(Ke&&(o.input.url=Ke(this.file).toString()),o.input.file=this.file),o}fromOffset(e){let t,n;if(this[Ft])n=this[Ft];else{let o=this.css.split(`
465
- `);n=new Array(o.length);let r=0;for(let a=0,l=o.length;a<l;a++)n[a]=r,r+=o[a].length+1;this[Ft]=n}t=n[n.length-1];let s=0;if(e>=t)s=n.length-1;else{let o=n.length-2,r;for(;s<o;)if(r=s+(o-s>>1),e<n[r])o=r-1;else if(e>=n[r+1])s=r+1;else{s=r;break}}return{col:e-n[s]+1,line:s+1}}mapResolve(e){return/^\w+:\/\//.test(e)?e:nn(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,t,n,s){if(!this.map)return!1;let o=this.map.consumer(),r=o.originalPositionFor({column:t,line:e});if(!r.source)return!1;let a;typeof n=="number"&&(a=o.originalPositionFor({column:s,line:n}));let l;tn(r.source)?l=Ke(r.source):l=new URL(r.source,this.map.consumer().sourceRoot||Ke(this.map.mapFile));let c={column:r.column,endColumn:a&&a.column,endLine:a&&a.line,line:r.line,url:l.toString()};if(l.protocol==="file:")if(Qn)c.file=Qn(l);else throw new Error("file: protocol is not available in this PostCSS build");let u=o.sourceContentFor(r.source);return u&&(c.source=u),c}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])this[t]!=null&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}get from(){return this.file||this.id}};var xt=dt;dt.default=dt;Bt&&Bt.registerInput&&Bt.registerInput(dt);let{SourceMapConsumer:Mi,SourceMapGenerator:ot}=H,{dirname:at,relative:Ni,resolve:Li,sep:Pi}=H,{pathToFileURL:ti}=H,po=xt,fo=!!(Mi&&ot),mo=!!(at&&Li&&Ni&&Pi),go=class{constructor(e,t,n,s){this.stringify=e,this.mapOpts=n.map||{},this.root=t,this.opts=n,this.css=s,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let e;this.isInline()?e="data:application/json;base64,"+this.toBase64(this.map.toString()):typeof this.mapOpts.annotation=="string"?e=this.mapOpts.annotation:typeof this.mapOpts.annotation=="function"?e=this.mapOpts.annotation(this.opts.to,this.root):e=this.outputFile()+".map";let t=`
482
+ `,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function e(r){return r[0].toUpperCase()+r.slice(1)}class n{constructor(t){this.builder=t}atrule(t,u){let a="@"+t.name,f=t.params?this.rawValue(t,"params"):"";if(typeof t.raws.afterName<"u"?a+=t.raws.afterName:f&&(a+=" "),t.nodes)this.block(t,a+f);else{let b=(t.raws.between||"")+(u?";":"");this.builder(a+f+b,t)}}beforeAfter(t,u){let a;t.type==="decl"?a=this.raw(t,null,"beforeDecl"):t.type==="comment"?a=this.raw(t,null,"beforeComment"):u==="before"?a=this.raw(t,null,"beforeRule"):a=this.raw(t,null,"beforeClose");let f=t.parent,b=0;for(;f&&f.type!=="root";)b+=1,f=f.parent;if(a.includes(`
483
+ `)){let d=this.raw(t,null,"indent");if(d.length)for(let s=0;s<b;s++)a+=d}return a}block(t,u){let a=this.raw(t,"between","beforeOpen");this.builder(u+a+"{",t,"start");let f;t.nodes&&t.nodes.length?(this.body(t),f=this.raw(t,"after")):f=this.raw(t,"after","emptyBody"),f&&this.builder(f),this.builder("}",t,"end")}body(t){let u=t.nodes.length-1;for(;u>0&&t.nodes[u].type==="comment";)u-=1;let a=this.raw(t,"semicolon");for(let f=0;f<t.nodes.length;f++){let b=t.nodes[f],d=this.raw(b,"before");d&&this.builder(d),this.stringify(b,u!==f||a)}}comment(t){let u=this.raw(t,"left","commentLeft"),a=this.raw(t,"right","commentRight");this.builder("/*"+u+t.text+a+"*/",t)}decl(t,u){let a=this.raw(t,"between","colon"),f=t.prop+a+this.rawValue(t,"value");t.important&&(f+=t.raws.important||" !important"),u&&(f+=";"),this.builder(f,t)}document(t){this.body(t)}raw(t,u,a){let f;if(a||(a=u),u&&(f=t.raws[u],typeof f<"u"))return f;let b=t.parent;if(a==="before"&&(!b||b.type==="root"&&b.first===t||b&&b.type==="document"))return"";if(!b)return i[a];let d=t.root();if(d.rawCache||(d.rawCache={}),typeof d.rawCache[a]<"u")return d.rawCache[a];if(a==="before"||a==="after")return this.beforeAfter(t,a);{let s="raw"+e(a);this[s]?f=this[s](d,t):d.walk(c=>{if(f=c.raws[u],typeof f<"u")return!1})}return typeof f>"u"&&(f=i[a]),d.rawCache[a]=f,f}rawBeforeClose(t){let u;return t.walk(a=>{if(a.nodes&&a.nodes.length>0&&typeof a.raws.after<"u")return u=a.raws.after,u.includes(`
484
+ `)&&(u=u.replace(/[^\n]+$/,"")),!1}),u&&(u=u.replace(/\S/g,"")),u}rawBeforeComment(t,u){let a;return t.walkComments(f=>{if(typeof f.raws.before<"u")return a=f.raws.before,a.includes(`
485
+ `)&&(a=a.replace(/[^\n]+$/,"")),!1}),typeof a>"u"?a=this.raw(u,null,"beforeDecl"):a&&(a=a.replace(/\S/g,"")),a}rawBeforeDecl(t,u){let a;return t.walkDecls(f=>{if(typeof f.raws.before<"u")return a=f.raws.before,a.includes(`
486
+ `)&&(a=a.replace(/[^\n]+$/,"")),!1}),typeof a>"u"?a=this.raw(u,null,"beforeRule"):a&&(a=a.replace(/\S/g,"")),a}rawBeforeOpen(t){let u;return t.walk(a=>{if(a.type!=="decl"&&(u=a.raws.between,typeof u<"u"))return!1}),u}rawBeforeRule(t){let u;return t.walk(a=>{if(a.nodes&&(a.parent!==t||t.first!==a)&&typeof a.raws.before<"u")return u=a.raws.before,u.includes(`
487
+ `)&&(u=u.replace(/[^\n]+$/,"")),!1}),u&&(u=u.replace(/\S/g,"")),u}rawColon(t){let u;return t.walkDecls(a=>{if(typeof a.raws.between<"u")return u=a.raws.between.replace(/[^\s:]/g,""),!1}),u}rawEmptyBody(t){let u;return t.walk(a=>{if(a.nodes&&a.nodes.length===0&&(u=a.raws.after,typeof u<"u"))return!1}),u}rawIndent(t){if(t.raws.indent)return t.raws.indent;let u;return t.walk(a=>{let f=a.parent;if(f&&f!==t&&f.parent&&f.parent===t&&typeof a.raws.before<"u"){let b=a.raws.before.split(`
488
+ `);return u=b[b.length-1],u=u.replace(/\S/g,""),!1}}),u}rawSemicolon(t){let u;return t.walk(a=>{if(a.nodes&&a.nodes.length&&a.last.type==="decl"&&(u=a.raws.semicolon,typeof u<"u"))return!1}),u}rawValue(t,u){let a=t[u],f=t.raws[u];return f&&f.value===a?f.raw:a}root(t){this.body(t),t.raws.after&&this.builder(t.raws.after)}rule(t){this.block(t,this.rawValue(t,"selector")),t.raws.ownSemicolon&&this.builder(t.raws.ownSemicolon,t,"end")}stringify(t,u){if(!this[t.type])throw new Error("Unknown AST node type "+t.type+". Maybe you need to change PostCSS stringifier.");this[t.type](t,u)}}return Ut=n,n.default=n,Ut}var Bt,ai;function wt(){if(ai)return Bt;ai=1;let i=Bi();function e(n,r){new i(r).stringify(n)}return Bt=e,e.default=e,Bt}var dt={},li;function Sn(){return li||(li=1,dt.isClean=Symbol("isClean"),dt.my=Symbol("my")),dt}var qt,ci;function xt(){if(ci)return qt;ci=1;let i=En(),e=Bi(),n=wt(),{isClean:r,my:t}=Sn();function u(b,d){let s=new b.constructor;for(let c in b){if(!Object.prototype.hasOwnProperty.call(b,c)||c==="proxyCache")continue;let o=b[c],l=typeof o;c==="parent"&&l==="object"?d&&(s[c]=d):c==="source"?s[c]=o:Array.isArray(o)?s[c]=o.map(p=>u(p,s)):(l==="object"&&o!==null&&(o=u(o)),s[c]=o)}return s}function a(b,d){if(d&&typeof d.offset<"u")return d.offset;let s=1,c=1,o=0;for(let l=0;l<b.length;l++){if(c===d.line&&s===d.column){o=l;break}b[l]===`
489
+ `?(s=1,c+=1):s+=1}return o}class f{get proxyOf(){return this}constructor(d={}){this.raws={},this[r]=!1,this[t]=!0;for(let s in d)if(s==="nodes"){this.nodes=[];for(let c of d[s])typeof c.clone=="function"?this.append(c.clone()):this.append(c)}else this[s]=d[s]}addToError(d){if(d.postcssNode=this,d.stack&&this.source&&/\n\s{4}at /.test(d.stack)){let s=this.source;d.stack=d.stack.replace(/\n\s{4}at /,`$&${s.input.from}:${s.start.line}:${s.start.column}$&`)}return d}after(d){return this.parent.insertAfter(this,d),this}assign(d={}){for(let s in d)this[s]=d[s];return this}before(d){return this.parent.insertBefore(this,d),this}cleanRaws(d){delete this.raws.before,delete this.raws.after,d||delete this.raws.between}clone(d={}){let s=u(this);for(let c in d)s[c]=d[c];return s}cloneAfter(d={}){let s=this.clone(d);return this.parent.insertAfter(this,s),s}cloneBefore(d={}){let s=this.clone(d);return this.parent.insertBefore(this,s),s}error(d,s={}){if(this.source){let{end:c,start:o}=this.rangeBy(s);return this.source.input.error(d,{column:o.column,line:o.line},{column:c.column,line:c.line},s)}return new i(d)}getProxyProcessor(){return{get(d,s){return s==="proxyOf"?d:s==="root"?()=>d.root().toProxy():d[s]},set(d,s,c){return d[s]===c||(d[s]=c,(s==="prop"||s==="value"||s==="name"||s==="params"||s==="important"||s==="text")&&d.markDirty()),!0}}}markClean(){this[r]=!0}markDirty(){if(this[r]){this[r]=!1;let d=this;for(;d=d.parent;)d[r]=!1}}next(){if(!this.parent)return;let d=this.parent.index(this);return this.parent.nodes[d+1]}positionBy(d={}){let s=this.source.start;if(d.index)s=this.positionInside(d.index);else if(d.word){let c="document"in this.source.input?this.source.input.document:this.source.input.css,l=c.slice(a(c,this.source.start),a(c,this.source.end)).indexOf(d.word);l!==-1&&(s=this.positionInside(l))}return s}positionInside(d){let s=this.source.start.column,c=this.source.start.line,o="document"in this.source.input?this.source.input.document:this.source.input.css,l=a(o,this.source.start),p=l+d;for(let m=l;m<p;m++)o[m]===`
490
+ `?(s=1,c+=1):s+=1;return{column:s,line:c,offset:p}}prev(){if(!this.parent)return;let d=this.parent.index(this);return this.parent.nodes[d-1]}rangeBy(d={}){let s="document"in this.source.input?this.source.input.document:this.source.input.css,c={column:this.source.start.column,line:this.source.start.line,offset:a(s,this.source.start)},o=this.source.end?{column:this.source.end.column+1,line:this.source.end.line,offset:typeof this.source.end.offset=="number"?this.source.end.offset:a(s,this.source.end)+1}:{column:c.column+1,line:c.line,offset:c.offset+1};if(d.word){let p=s.slice(a(s,this.source.start),a(s,this.source.end)).indexOf(d.word);p!==-1&&(c=this.positionInside(p),o=this.positionInside(p+d.word.length))}else d.start?c={column:d.start.column,line:d.start.line,offset:a(s,d.start)}:d.index&&(c=this.positionInside(d.index)),d.end?o={column:d.end.column,line:d.end.line,offset:a(s,d.end)}:typeof d.endIndex=="number"?o=this.positionInside(d.endIndex):d.index&&(o=this.positionInside(d.index+1));return(o.line<c.line||o.line===c.line&&o.column<=c.column)&&(o={column:c.column+1,line:c.line,offset:c.offset+1}),{end:o,start:c}}raw(d,s){return new e().raw(this,d,s)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...d){if(this.parent){let s=this,c=!1;for(let o of d)o===this?c=!0:c?(this.parent.insertAfter(s,o),s=o):this.parent.insertBefore(s,o);c||this.remove()}return this}root(){let d=this;for(;d.parent&&d.parent.type!=="document";)d=d.parent;return d}toJSON(d,s){let c={},o=s==null;s=s||new Map;let l=0;for(let p in this){if(!Object.prototype.hasOwnProperty.call(this,p)||p==="parent"||p==="proxyCache")continue;let m=this[p];if(Array.isArray(m))c[p]=m.map(g=>typeof g=="object"&&g.toJSON?g.toJSON(null,s):g);else if(typeof m=="object"&&m.toJSON)c[p]=m.toJSON(null,s);else if(p==="source"){if(m==null)continue;let g=s.get(m.input);g==null&&(g=l,s.set(m.input,l),l++),c[p]={end:m.end,inputId:g,start:m.start}}else c[p]=m}return o&&(c.inputs=[...s.keys()].map(p=>p.toJSON())),c}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(d=n){d.stringify&&(d=d.stringify);let s="";return d(this,c=>{s+=c}),s}warn(d,s,c={}){let o={node:this};for(let l in c)o[l]=c[l];return d.warn(s,o)}}return qt=f,f.default=f,qt}var Ft,ui;function _t(){if(ui)return Ft;ui=1;let i=xt();class e extends i{constructor(r){super(r),this.type="comment"}}return Ft=e,e.default=e,Ft}var Ht,di;function Et(){if(di)return Ht;di=1;let i=xt();class e extends i{get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}constructor(r){r&&typeof r.value<"u"&&typeof r.value!="string"&&(r={...r,value:String(r.value)}),super(r),this.type="decl"}}return Ht=e,e.default=e,Ht}var Wt,hi;function Pe(){if(hi)return Wt;hi=1;let i=_t(),e=Et(),n=xt(),{isClean:r,my:t}=Sn(),u,a,f,b;function d(o){return o.map(l=>(l.nodes&&(l.nodes=d(l.nodes)),delete l.source,l))}function s(o){if(o[r]=!1,o.proxyOf.nodes)for(let l of o.proxyOf.nodes)s(l)}class c extends n{get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}append(...l){for(let p of l){let m=this.normalize(p,this.last);for(let g of m)this.proxyOf.nodes.push(g)}return this.markDirty(),this}cleanRaws(l){if(super.cleanRaws(l),this.nodes)for(let p of this.nodes)p.cleanRaws(l)}each(l){if(!this.proxyOf.nodes)return;let p=this.getIterator(),m,g;for(;this.indexes[p]<this.proxyOf.nodes.length&&(m=this.indexes[p],g=l(this.proxyOf.nodes[m],m),g!==!1);)this.indexes[p]+=1;return delete this.indexes[p],g}every(l){return this.nodes.every(l)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let l=this.lastEach;return this.indexes[l]=0,l}getProxyProcessor(){return{get(l,p){return p==="proxyOf"?l:l[p]?p==="each"||typeof p=="string"&&p.startsWith("walk")?(...m)=>l[p](...m.map(g=>typeof g=="function"?(_,E)=>g(_.toProxy(),E):g)):p==="every"||p==="some"?m=>l[p]((g,..._)=>m(g.toProxy(),..._)):p==="root"?()=>l.root().toProxy():p==="nodes"?l.nodes.map(m=>m.toProxy()):p==="first"||p==="last"?l[p].toProxy():l[p]:l[p]},set(l,p,m){return l[p]===m||(l[p]=m,(p==="name"||p==="params"||p==="selector")&&l.markDirty()),!0}}}index(l){return typeof l=="number"?l:(l.proxyOf&&(l=l.proxyOf),this.proxyOf.nodes.indexOf(l))}insertAfter(l,p){let m=this.index(l),g=this.normalize(p,this.proxyOf.nodes[m]).reverse();m=this.index(l);for(let E of g)this.proxyOf.nodes.splice(m+1,0,E);let _;for(let E in this.indexes)_=this.indexes[E],m<_&&(this.indexes[E]=_+g.length);return this.markDirty(),this}insertBefore(l,p){let m=this.index(l),g=m===0?"prepend":!1,_=this.normalize(p,this.proxyOf.nodes[m],g).reverse();m=this.index(l);for(let w of _)this.proxyOf.nodes.splice(m,0,w);let E;for(let w in this.indexes)E=this.indexes[w],m<=E&&(this.indexes[w]=E+_.length);return this.markDirty(),this}normalize(l,p){if(typeof l=="string")l=d(a(l).nodes);else if(typeof l>"u")l=[];else if(Array.isArray(l)){l=l.slice(0);for(let g of l)g.parent&&g.parent.removeChild(g,"ignore")}else if(l.type==="root"&&this.type!=="document"){l=l.nodes.slice(0);for(let g of l)g.parent&&g.parent.removeChild(g,"ignore")}else if(l.type)l=[l];else if(l.prop){if(typeof l.value>"u")throw new Error("Value field is missed in node creation");typeof l.value!="string"&&(l.value=String(l.value)),l=[new e(l)]}else if(l.selector||l.selectors)l=[new b(l)];else if(l.name)l=[new u(l)];else if(l.text)l=[new i(l)];else throw new Error("Unknown node type in node creation");return l.map(g=>(g[t]||c.rebuild(g),g=g.proxyOf,g.parent&&g.parent.removeChild(g),g[r]&&s(g),g.raws||(g.raws={}),typeof g.raws.before>"u"&&p&&typeof p.raws.before<"u"&&(g.raws.before=p.raws.before.replace(/\S/g,"")),g.parent=this.proxyOf,g))}prepend(...l){l=l.reverse();for(let p of l){let m=this.normalize(p,this.first,"prepend").reverse();for(let g of m)this.proxyOf.nodes.unshift(g);for(let g in this.indexes)this.indexes[g]=this.indexes[g]+m.length}return this.markDirty(),this}push(l){return l.parent=this,this.proxyOf.nodes.push(l),this}removeAll(){for(let l of this.proxyOf.nodes)l.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(l){l=this.index(l),this.proxyOf.nodes[l].parent=void 0,this.proxyOf.nodes.splice(l,1);let p;for(let m in this.indexes)p=this.indexes[m],p>=l&&(this.indexes[m]=p-1);return this.markDirty(),this}replaceValues(l,p,m){return m||(m=p,p={}),this.walkDecls(g=>{p.props&&!p.props.includes(g.prop)||p.fast&&!g.value.includes(p.fast)||(g.value=g.value.replace(l,m))}),this.markDirty(),this}some(l){return this.nodes.some(l)}walk(l){return this.each((p,m)=>{let g;try{g=l(p,m)}catch(_){throw p.addToError(_)}return g!==!1&&p.walk&&(g=p.walk(l)),g})}walkAtRules(l,p){return p?l instanceof RegExp?this.walk((m,g)=>{if(m.type==="atrule"&&l.test(m.name))return p(m,g)}):this.walk((m,g)=>{if(m.type==="atrule"&&m.name===l)return p(m,g)}):(p=l,this.walk((m,g)=>{if(m.type==="atrule")return p(m,g)}))}walkComments(l){return this.walk((p,m)=>{if(p.type==="comment")return l(p,m)})}walkDecls(l,p){return p?l instanceof RegExp?this.walk((m,g)=>{if(m.type==="decl"&&l.test(m.prop))return p(m,g)}):this.walk((m,g)=>{if(m.type==="decl"&&m.prop===l)return p(m,g)}):(p=l,this.walk((m,g)=>{if(m.type==="decl")return p(m,g)}))}walkRules(l,p){return p?l instanceof RegExp?this.walk((m,g)=>{if(m.type==="rule"&&l.test(m.selector))return p(m,g)}):this.walk((m,g)=>{if(m.type==="rule"&&m.selector===l)return p(m,g)}):(p=l,this.walk((m,g)=>{if(m.type==="rule")return p(m,g)}))}}return c.registerParse=o=>{a=o},c.registerRule=o=>{b=o},c.registerAtRule=o=>{u=o},c.registerRoot=o=>{f=o},Wt=c,c.default=c,c.rebuild=o=>{o.type==="atrule"?Object.setPrototypeOf(o,u.prototype):o.type==="rule"?Object.setPrototypeOf(o,b.prototype):o.type==="decl"?Object.setPrototypeOf(o,e.prototype):o.type==="comment"?Object.setPrototypeOf(o,i.prototype):o.type==="root"&&Object.setPrototypeOf(o,f.prototype),o[t]=!0,o.nodes&&o.nodes.forEach(l=>{c.rebuild(l)})},Wt}var Vt,pi;function An(){if(pi)return Vt;pi=1;let i=Pe();class e extends i{constructor(r){super(r),this.type="atrule"}append(...r){return this.proxyOf.nodes||(this.nodes=[]),super.append(...r)}prepend(...r){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...r)}}return Vt=e,e.default=e,i.registerAtRule(e),Vt}var Gt,fi;function kn(){if(fi)return Gt;fi=1;let i=Pe(),e,n;class r extends i{constructor(u){super({type:"document",...u}),this.nodes||(this.nodes=[])}toResult(u={}){return new e(new n,this,u).stringify()}}return r.registerLazyResult=t=>{e=t},r.registerProcessor=t=>{n=t},Gt=r,r.default=r,Gt}var Zt,mi;function Qr(){if(mi)return Zt;mi=1;let i="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";return Zt={nanoid:(r=21)=>{let t="",u=r|0;for(;u--;)t+=i[Math.random()*64|0];return t},customAlphabet:(r,t=21)=>(u=t)=>{let a="",f=u|0;for(;f--;)a+=r[Math.random()*r.length|0];return a}},Zt}var Jt,gi;function qi(){if(gi)return Jt;gi=1;let{existsSync:i,readFileSync:e}=fe,{dirname:n,join:r}=fe,{SourceMapConsumer:t,SourceMapGenerator:u}=fe;function a(b){return Buffer?Buffer.from(b,"base64").toString():window.atob(b)}class f{constructor(d,s){if(s.map===!1)return;this.loadAnnotation(d),this.inline=this.startWith(this.annotation,"data:");let c=s.map?s.map.prev:void 0,o=this.loadMap(s.from,c);!this.mapFile&&s.from&&(this.mapFile=s.from),this.mapFile&&(this.root=n(this.mapFile)),o&&(this.text=o)}consumer(){return this.consumerCache||(this.consumerCache=new t(this.text)),this.consumerCache}decodeInline(d){let s=/^data:application\/json;charset=utf-?8;base64,/,c=/^data:application\/json;base64,/,o=/^data:application\/json;charset=utf-?8,/,l=/^data:application\/json,/,p=d.match(o)||d.match(l);if(p)return decodeURIComponent(d.substr(p[0].length));let m=d.match(s)||d.match(c);if(m)return a(d.substr(m[0].length));let g=d.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+g)}getAnnotationURL(d){return d.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}isMap(d){return typeof d!="object"?!1:typeof d.mappings=="string"||typeof d._mappings=="string"||Array.isArray(d.sections)}loadAnnotation(d){let s=d.match(/\/\*\s*# sourceMappingURL=/g);if(!s)return;let c=d.lastIndexOf(s.pop()),o=d.indexOf("*/",c);c>-1&&o>-1&&(this.annotation=this.getAnnotationURL(d.substring(c,o)))}loadFile(d){if(this.root=n(d),i(d))return this.mapFile=d,e(d,"utf-8").toString().trim()}loadMap(d,s){if(s===!1)return!1;if(s){if(typeof s=="string")return s;if(typeof s=="function"){let c=s(d);if(c){let o=this.loadFile(c);if(!o)throw new Error("Unable to load previous source map: "+c.toString());return o}}else{if(s instanceof t)return u.fromSourceMap(s).toString();if(s instanceof u)return s.toString();if(this.isMap(s))return JSON.stringify(s);throw new Error("Unsupported previous source map format: "+s.toString())}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let c=this.annotation;return d&&(c=r(n(d),c)),this.loadFile(c)}}}startWith(d,s){return d?d.substr(0,s.length)===s:!1}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}return Jt=f,f.default=f,Jt}var Kt,bi;function St(){if(bi)return Kt;bi=1;let{nanoid:i}=Qr(),{isAbsolute:e,resolve:n}=fe,{SourceMapConsumer:r,SourceMapGenerator:t}=fe,{fileURLToPath:u,pathToFileURL:a}=fe,f=En(),b=qi(),d=fe,s=Symbol("lineToIndexCache"),c=!!(r&&t),o=!!(n&&e);function l(m){if(m[s])return m[s];let g=m.css.split(`
491
+ `),_=new Array(g.length),E=0;for(let w=0,v=g.length;w<v;w++)_[w]=E,E+=g[w].length+1;return m[s]=_,_}class p{get from(){return this.file||this.id}constructor(g,_={}){if(g===null||typeof g>"u"||typeof g=="object"&&!g.toString)throw new Error(`PostCSS received ${g} instead of CSS string`);if(this.css=g.toString(),this.css[0]==="\uFEFF"||this.css[0]==="￾"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,this.document=this.css,_.document&&(this.document=_.document.toString()),_.from&&(!o||/^\w+:\/\//.test(_.from)||e(_.from)?this.file=_.from:this.file=n(_.from)),o&&c){let E=new b(this.css,_);if(E.text){this.map=E;let w=E.consumer().file;!this.file&&w&&(this.file=this.mapResolve(w))}}this.file||(this.id="<input css "+i(6)+">"),this.map&&(this.map.file=this.from)}error(g,_,E,w={}){let v,y,S,O,I;if(_&&typeof _=="object"){let P=_,K=E;if(typeof P.offset=="number"){O=P.offset;let F=this.fromOffset(O);_=F.line,E=F.col}else _=P.line,E=P.column,O=this.fromLineAndColumn(_,E);if(typeof K.offset=="number"){S=K.offset;let F=this.fromOffset(S);y=F.line,v=F.col}else y=K.line,v=K.column,S=this.fromLineAndColumn(K.line,K.column)}else if(E)O=this.fromLineAndColumn(_,E);else{O=_;let P=this.fromOffset(O);_=P.line,E=P.col}let U=this.origin(_,E,y,v);return U?I=new f(g,U.endLine===void 0?U.line:{column:U.column,line:U.line},U.endLine===void 0?U.column:{column:U.endColumn,line:U.endLine},U.source,U.file,w.plugin):I=new f(g,y===void 0?_:{column:E,line:_},y===void 0?E:{column:v,line:y},this.css,this.file,w.plugin),I.input={column:E,endColumn:v,endLine:y,endOffset:S,line:_,offset:O,source:this.css},this.file&&(a&&(I.input.url=a(this.file).toString()),I.input.file=this.file),I}fromLineAndColumn(g,_){return l(this)[g-1]+_-1}fromOffset(g){let _=l(this),E=_[_.length-1],w=0;if(g>=E)w=_.length-1;else{let v=_.length-2,y;for(;w<v;)if(y=w+(v-w>>1),g<_[y])v=y-1;else if(g>=_[y+1])w=y+1;else{w=y;break}}return{col:g-_[w]+1,line:w+1}}mapResolve(g){return/^\w+:\/\//.test(g)?g:n(this.map.consumer().sourceRoot||this.map.root||".",g)}origin(g,_,E,w){if(!this.map)return!1;let v=this.map.consumer(),y=v.originalPositionFor({column:_,line:g});if(!y.source)return!1;let S;typeof E=="number"&&(S=v.originalPositionFor({column:w,line:E}));let O;e(y.source)?O=a(y.source):O=new URL(y.source,this.map.consumer().sourceRoot||a(this.map.mapFile));let I={column:y.column,endColumn:S&&S.column,endLine:S&&S.line,line:y.line,url:O.toString()};if(O.protocol==="file:")if(u)I.file=u(O);else throw new Error("file: protocol is not available in this PostCSS build");let U=v.sourceContentFor(y.source);return U&&(I.source=U),I}toJSON(){let g={};for(let _ of["hasBOM","css","file","id"])this[_]!=null&&(g[_]=this[_]);return this.map&&(g.map={...this.map},g.map.consumerCache&&(g.map.consumerCache=void 0)),g}}return Kt=p,p.default=p,d&&d.registerInput&&d.registerInput(p),Kt}var Xt,yi;function nt(){if(yi)return Xt;yi=1;let i=Pe(),e,n;class r extends i{constructor(u){super(u),this.type="root",this.nodes||(this.nodes=[])}normalize(u,a,f){let b=super.normalize(u);if(a){if(f==="prepend")this.nodes.length>1?a.raws.before=this.nodes[1].raws.before:delete a.raws.before;else if(this.first!==a)for(let d of b)d.raws.before=a.raws.before}return b}removeChild(u,a){let f=this.index(u);return!a&&f===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[f].raws.before),super.removeChild(u)}toResult(u={}){return new e(new n,this,u).stringify()}}return r.registerLazyResult=t=>{e=t},r.registerProcessor=t=>{n=t},Xt=r,r.default=r,i.registerRoot(r),Xt}var Qt,vi;function Fi(){if(vi)return Qt;vi=1;let i={comma(e){return i.split(e,[","],!0)},space(e){let n=[" ",`
492
+ `," "];return i.split(e,n)},split(e,n,r){let t=[],u="",a=!1,f=0,b=!1,d="",s=!1;for(let c of e)s?s=!1:c==="\\"?s=!0:b?c===d&&(b=!1):c==='"'||c==="'"?(b=!0,d=c):c==="("?f+=1:c===")"?f>0&&(f-=1):f===0&&n.includes(c)&&(a=!0),a?(u!==""&&t.push(u.trim()),u="",a=!1):u+=c;return(r||u!=="")&&t.push(u.trim()),t}};return Qt=i,i.default=i,Qt}var Yt,wi;function $n(){if(wi)return Yt;wi=1;let i=Pe(),e=Fi();class n extends i{get selectors(){return e.comma(this.selector)}set selectors(t){let u=this.selector?this.selector.match(/,\s*/):null,a=u?u[0]:","+this.raw("between","beforeOpen");this.selector=t.join(a)}constructor(t){super(t),this.type="rule",this.nodes||(this.nodes=[])}}return Yt=n,n.default=n,i.registerRule(n),Yt}var en,xi;function Yr(){if(xi)return en;xi=1;let i=An(),e=_t(),n=Et(),r=St(),t=qi(),u=nt(),a=$n();function f(b,d){if(Array.isArray(b))return b.map(o=>f(o));let{inputs:s,...c}=b;if(s){d=[];for(let o of s){let l={...o,__proto__:r.prototype};l.map&&(l.map={...l.map,__proto__:t.prototype}),d.push(l)}}if(c.nodes&&(c.nodes=b.nodes.map(o=>f(o,d))),c.source){let{inputId:o,...l}=c.source;c.source=l,o!=null&&(c.source.input=d[o])}if(c.type==="root")return new u(c);if(c.type==="decl")return new n(c);if(c.type==="rule")return new a(c);if(c.type==="comment")return new e(c);if(c.type==="atrule")return new i(c);throw new Error("Unknown node type: "+b.type)}return en=f,f.default=f,en}var tn,_i;function Hi(){if(_i)return tn;_i=1;let{dirname:i,relative:e,resolve:n,sep:r}=fe,{SourceMapConsumer:t,SourceMapGenerator:u}=fe,{pathToFileURL:a}=fe,f=St(),b=!!(t&&u),d=!!(i&&n&&e&&r);class s{constructor(o,l,p,m){this.stringify=o,this.mapOpts=p.map||{},this.root=l,this.opts=p,this.css=m,this.originalCSS=m,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let o;this.isInline()?o="data:application/json;base64,"+this.toBase64(this.map.toString()):typeof this.mapOpts.annotation=="string"?o=this.mapOpts.annotation:typeof this.mapOpts.annotation=="function"?o=this.mapOpts.annotation(this.opts.to,this.root):o=this.outputFile()+".map";let l=`
466
493
  `;this.css.includes(`\r
467
- `)&&(t=`\r
468
- `),this.css+=t+"/*# sourceMappingURL="+e+" */"}applyPrevMaps(){for(let e of this.previous()){let t=this.toUrl(this.path(e.file)),n=e.root||at(e.file),s;this.mapOpts.sourcesContent===!1?(s=new Mi(e.text),s.sourcesContent&&(s.sourcesContent=s.sourcesContent.map(()=>null))):s=e.consumer(),this.map.applySourceMap(s,t,this.toUrl(this.path(n)))}}clearAnnotation(){if(this.mapOpts.annotation!==!1)if(this.root){let e;for(let t=this.root.nodes.length-1;t>=0;t--)e=this.root.nodes[t],e.type==="comment"&&e.text.indexOf("# sourceMappingURL=")===0&&this.root.removeChild(t)}else this.css&&(this.css=this.css.replace(/(\n)?\/\*#[\S\s]*?\*\/$/gm,""))}generate(){if(this.clearAnnotation(),mo&&fo&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,t=>{e+=t}),[e]}}generateMap(){if(this.root)this.generateString();else if(this.previous().length===1){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=ot.fromSourceMap(e)}else this.map=new ot({file:this.outputFile()}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>"});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new ot({file:this.outputFile()});let e=1,t=1,n="<no source>",s={generated:{column:0,line:0},original:{column:0,line:0},source:""},o,r;this.stringify(this.root,(a,l,c)=>{if(this.css+=a,l&&c!=="end"&&(s.generated.line=e,s.generated.column=t-1,l.source&&l.source.start?(s.source=this.sourcePath(l),s.original.line=l.source.start.line,s.original.column=l.source.start.column-1,this.map.addMapping(s)):(s.source=n,s.original.line=1,s.original.column=0,this.map.addMapping(s))),o=a.match(/\n/g),o?(e+=o.length,r=a.lastIndexOf(`
469
- `),t=a.length-r):t+=a.length,l&&c!=="start"){let u=l.parent||{raws:{}};(!(l.type==="decl"||l.type==="atrule"&&!l.nodes)||l!==u.last||u.raws.semicolon)&&(l.source&&l.source.end?(s.source=this.sourcePath(l),s.original.line=l.source.end.line,s.original.column=l.source.end.column-1,s.generated.line=e,s.generated.column=t-2,this.map.addMapping(s)):(s.source=n,s.original.line=1,s.original.column=0,s.generated.line=e,s.generated.column=t-1,this.map.addMapping(s)))}})}isAnnotation(){return this.isInline()?!0:typeof this.mapOpts.annotation<"u"?this.mapOpts.annotation:this.previous().length?this.previous().some(e=>e.annotation):!0}isInline(){if(typeof this.mapOpts.inline<"u")return this.mapOpts.inline;let e=this.mapOpts.annotation;return typeof e<"u"&&e!==!0?!1:this.previous().length?this.previous().some(t=>t.inline):!0}isMap(){return typeof this.opts.map<"u"?!!this.opts.map:this.previous().length>0}isSourcesContent(){return typeof this.mapOpts.sourcesContent<"u"?this.mapOpts.sourcesContent:this.previous().length?this.previous().some(e=>e.withContent()):!0}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(e){if(this.mapOpts.absolute||e.charCodeAt(0)===60||/^\w+:\/\//.test(e))return e;let t=this.memoizedPaths.get(e);if(t)return t;let n=this.opts.to?at(this.opts.to):".";typeof this.mapOpts.annotation=="string"&&(n=at(Li(n,this.mapOpts.annotation)));let s=Ni(n,e);return this.memoizedPaths.set(e,s),s}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(e=>{if(e.source&&e.source.input.map){let t=e.source.input.map;this.previousMaps.includes(t)||this.previousMaps.push(t)}});else{let e=new po(this.css,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}setSourcesContent(){let e={};if(this.root)this.root.walk(t=>{if(t.source){let n=t.source.input.from;if(n&&!e[n]){e[n]=!0;let s=this.usesFileUrls?this.toFileUrl(n):this.toUrl(this.path(n));this.map.setSourceContent(s,t.source.input.css)}}});else if(this.css){let t=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(t,this.css)}}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}toFileUrl(e){let t=this.memoizedFileURLs.get(e);if(t)return t;if(ti){let n=ti(e).toString();return this.memoizedFileURLs.set(e,n),n}else throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(e){let t=this.memoizedURLs.get(e);if(t)return t;Pi==="\\"&&(e=e.replace(/\\/g,"/"));let n=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,n),n}};var Ii=go;let bo=yt,sn=class extends bo{constructor(e){super(e),this.type="comment"}};var _t=sn;sn.default=sn;let{isClean:Ti,my:ji}=Fe,Di=wt,zi=_t,vo=yt,Ui,gn,bn,Bi;function Fi(i){return i.map(e=>(e.nodes&&(e.nodes=Fi(e.nodes)),delete e.source,e))}function Hi(i){if(i[Ti]=!1,i.proxyOf.nodes)for(let e of i.proxyOf.nodes)Hi(e)}let Q=class Vi extends vo{append(...e){for(let t of e){let n=this.normalize(t,this.last);for(let s of n)this.proxyOf.nodes.push(s)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let t=this.getIterator(),n,s;for(;this.indexes[t]<this.proxyOf.nodes.length&&(n=this.indexes[t],s=e(this.proxyOf.nodes[n],n),s!==!1);)this.indexes[t]+=1;return delete this.indexes[t],s}every(e){return this.nodes.every(e)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}getProxyProcessor(){return{get(e,t){return t==="proxyOf"?e:e[t]?t==="each"||typeof t=="string"&&t.startsWith("walk")?(...n)=>e[t](...n.map(s=>typeof s=="function"?(o,r)=>s(o.toProxy(),r):s)):t==="every"||t==="some"?n=>e[t]((s,...o)=>n(s.toProxy(),...o)):t==="root"?()=>e.root().toProxy():t==="nodes"?e.nodes.map(n=>n.toProxy()):t==="first"||t==="last"?e[t].toProxy():e[t]:e[t]},set(e,t,n){return e[t]===n||(e[t]=n,(t==="name"||t==="params"||t==="selector")&&e.markDirty()),!0}}}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,t){let n=this.index(e),s=this.normalize(t,this.proxyOf.nodes[n]).reverse();n=this.index(e);for(let r of s)this.proxyOf.nodes.splice(n+1,0,r);let o;for(let r in this.indexes)o=this.indexes[r],n<o&&(this.indexes[r]=o+s.length);return this.markDirty(),this}insertBefore(e,t){let n=this.index(e),s=n===0?"prepend":!1,o=this.normalize(t,this.proxyOf.nodes[n],s).reverse();n=this.index(e);for(let a of o)this.proxyOf.nodes.splice(n,0,a);let r;for(let a in this.indexes)r=this.indexes[a],n<=r&&(this.indexes[a]=r+o.length);return this.markDirty(),this}normalize(e,t){if(typeof e=="string")e=Fi(Ui(e).nodes);else if(Array.isArray(e)){e=e.slice(0);for(let s of e)s.parent&&s.parent.removeChild(s,"ignore")}else if(e.type==="root"&&this.type!=="document"){e=e.nodes.slice(0);for(let s of e)s.parent&&s.parent.removeChild(s,"ignore")}else if(e.type)e=[e];else if(e.prop){if(typeof e.value>"u")throw new Error("Value field is missed in node creation");typeof e.value!="string"&&(e.value=String(e.value)),e=[new Di(e)]}else if(e.selector)e=[new gn(e)];else if(e.name)e=[new bn(e)];else if(e.text)e=[new zi(e)];else throw new Error("Unknown node type in node creation");return e.map(s=>(s[ji]||Vi.rebuild(s),s=s.proxyOf,s.parent&&s.parent.removeChild(s),s[Ti]&&Hi(s),typeof s.raws.before>"u"&&t&&typeof t.raws.before<"u"&&(s.raws.before=t.raws.before.replace(/\S/g,"")),s.parent=this.proxyOf,s))}prepend(...e){e=e.reverse();for(let t of e){let n=this.normalize(t,this.first,"prepend").reverse();for(let s of n)this.proxyOf.nodes.unshift(s);for(let s in this.indexes)this.indexes[s]=this.indexes[s]+n.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);let t;for(let n in this.indexes)t=this.indexes[n],t>=e&&(this.indexes[n]=t-1);return this.markDirty(),this}replaceValues(e,t,n){return n||(n=t,t={}),this.walkDecls(s=>{t.props&&!t.props.includes(s.prop)||t.fast&&!s.value.includes(t.fast)||(s.value=s.value.replace(e,n))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((t,n)=>{let s;try{s=e(t,n)}catch(o){throw t.addToError(o)}return s!==!1&&t.walk&&(s=t.walk(e)),s})}walkAtRules(e,t){return t?e instanceof RegExp?this.walk((n,s)=>{if(n.type==="atrule"&&e.test(n.name))return t(n,s)}):this.walk((n,s)=>{if(n.type==="atrule"&&n.name===e)return t(n,s)}):(t=e,this.walk((n,s)=>{if(n.type==="atrule")return t(n,s)}))}walkComments(e){return this.walk((t,n)=>{if(t.type==="comment")return e(t,n)})}walkDecls(e,t){return t?e instanceof RegExp?this.walk((n,s)=>{if(n.type==="decl"&&e.test(n.prop))return t(n,s)}):this.walk((n,s)=>{if(n.type==="decl"&&n.prop===e)return t(n,s)}):(t=e,this.walk((n,s)=>{if(n.type==="decl")return t(n,s)}))}walkRules(e,t){return t?e instanceof RegExp?this.walk((n,s)=>{if(n.type==="rule"&&e.test(n.selector))return t(n,s)}):this.walk((n,s)=>{if(n.type==="rule"&&n.selector===e)return t(n,s)}):(t=e,this.walk((n,s)=>{if(n.type==="rule")return t(n,s)}))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}};Q.registerParse=i=>{Ui=i};Q.registerRule=i=>{gn=i};Q.registerAtRule=i=>{bn=i};Q.registerRoot=i=>{Bi=i};var he=Q;Q.default=Q;Q.rebuild=i=>{i.type==="atrule"?Object.setPrototypeOf(i,bn.prototype):i.type==="rule"?Object.setPrototypeOf(i,gn.prototype):i.type==="decl"?Object.setPrototypeOf(i,Di.prototype):i.type==="comment"?Object.setPrototypeOf(i,zi.prototype):i.type==="root"&&Object.setPrototypeOf(i,Bi.prototype),i[ji]=!0,i.nodes&&i.nodes.forEach(e=>{Q.rebuild(e)})};let yo=he,Wi,qi,Ie=class extends yo{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new Wi(new qi,this,e).stringify()}};Ie.registerLazyResult=i=>{Wi=i};Ie.registerProcessor=i=>{qi=i};var vn=Ie;Ie.default=Ie;let rn=class{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let n=t.node.rangeBy(t);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(let n in t)this[n]=t[n]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};var Gi=rn;rn.default=rn;let wo=Gi,on=class{constructor(e,t,n){this.processor=e,this.messages=[],this.root=t,this.opts=n,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let n=new wo(e,t);return this.messages.push(n),n}warnings(){return this.messages.filter(e=>e.type==="warning")}get content(){return this.css}};var yn=on;on.default=on;const Ht=39,ni=34,Je=92,ii=47,Xe=10,Ce=32,Qe=12,Ye=9,et=13,xo=91,_o=93,Eo=40,So=41,$o=123,Ao=125,Co=59,ko=42,Oo=58,Ro=64,tt=/[\t\n\f\r "#'()/;[\\\]{}]/g,nt=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,Mo=/.[\r\n"'(/\\]/,si=/[\da-f]/i;var No=function(e,t={}){let n=e.css.valueOf(),s=t.ignoreErrors,o,r,a,l,c,u,p,f,x,O,P=n.length,b=0,Z=[],K=[];function ie(){return b}function U(V){throw e.error("Unclosed "+V,b)}function J(){return K.length===0&&b>=P}function $e(V){if(K.length)return K.pop();if(b>=P)return;let j=V?V.ignoreUnclosed:!1;switch(o=n.charCodeAt(b),o){case Xe:case Ce:case Ye:case et:case Qe:{r=b;do r+=1,o=n.charCodeAt(r);while(o===Ce||o===Xe||o===Ye||o===et||o===Qe);O=["space",n.slice(b,r)],b=r-1;break}case xo:case _o:case $o:case Ao:case Oo:case Co:case So:{let se=String.fromCharCode(o);O=[se,se,b];break}case Eo:{if(f=Z.length?Z.pop()[1]:"",x=n.charCodeAt(b+1),f==="url"&&x!==Ht&&x!==ni&&x!==Ce&&x!==Xe&&x!==Ye&&x!==Qe&&x!==et){r=b;do{if(u=!1,r=n.indexOf(")",r+1),r===-1)if(s||j){r=b;break}else U("bracket");for(p=r;n.charCodeAt(p-1)===Je;)p-=1,u=!u}while(u);O=["brackets",n.slice(b,r+1),b,r],b=r}else r=n.indexOf(")",b+1),l=n.slice(b,r+1),r===-1||Mo.test(l)?O=["(","(",b]:(O=["brackets",l,b,r],b=r);break}case Ht:case ni:{a=o===Ht?"'":'"',r=b;do{if(u=!1,r=n.indexOf(a,r+1),r===-1)if(s||j){r=b+1;break}else U("string");for(p=r;n.charCodeAt(p-1)===Je;)p-=1,u=!u}while(u);O=["string",n.slice(b,r+1),b,r],b=r;break}case Ro:{tt.lastIndex=b+1,tt.test(n),tt.lastIndex===0?r=n.length-1:r=tt.lastIndex-2,O=["at-word",n.slice(b,r+1),b,r],b=r;break}case Je:{for(r=b,c=!0;n.charCodeAt(r+1)===Je;)r+=1,c=!c;if(o=n.charCodeAt(r+1),c&&o!==ii&&o!==Ce&&o!==Xe&&o!==Ye&&o!==et&&o!==Qe&&(r+=1,si.test(n.charAt(r)))){for(;si.test(n.charAt(r+1));)r+=1;n.charCodeAt(r+1)===Ce&&(r+=1)}O=["word",n.slice(b,r+1),b,r],b=r;break}default:{o===ii&&n.charCodeAt(b+1)===ko?(r=n.indexOf("*/",b+2)+1,r===0&&(s||j?r=n.length:U("comment")),O=["comment",n.slice(b,r+1),b,r],b=r):(nt.lastIndex=b+1,nt.test(n),nt.lastIndex===0?r=n.length-1:r=nt.lastIndex-2,O=["word",n.slice(b,r+1),b,r],Z.push(O),b=r);break}}return b++,O}function fe(V){K.push(V)}return{back:fe,endOfFile:J,nextToken:$e,position:ie}};let Zi=he,ht=class extends Zi{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};var wn=ht;ht.default=ht;Zi.registerAtRule(ht);let Ki=he,Ji,Xi,xe=class extends Ki{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,t,n){let s=super.normalize(e);if(t){if(n==="prepend")this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let o of s)o.raws.before=t.raws.before}return s}removeChild(e,t){let n=this.index(e);return!t&&n===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),super.removeChild(e)}toResult(e={}){return new Ji(new Xi,this,e).stringify()}};xe.registerLazyResult=i=>{Ji=i};xe.registerProcessor=i=>{Xi=i};var He=xe;xe.default=xe;Ki.registerRoot(xe);let Te={comma(i){return Te.split(i,[","],!0)},space(i){let e=[" ",`
470
- `," "];return Te.split(i,e)},split(i,e,t){let n=[],s="",o=!1,r=0,a=!1,l="",c=!1;for(let u of i)c?c=!1:u==="\\"?c=!0:a?u===l&&(a=!1):u==='"'||u==="'"?(a=!0,l=u):u==="("?r+=1:u===")"?r>0&&(r-=1):r===0&&e.includes(u)&&(o=!0),o?(s!==""&&n.push(s.trim()),s="",o=!1):s+=u;return(t||s!=="")&&n.push(s.trim()),n}};var Qi=Te;Te.default=Te;let Yi=he,Lo=Qi,pt=class extends Yi{constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return Lo.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}};var xn=pt;pt.default=pt;Yi.registerRule(pt);let Po=wt,Io=No,To=_t,jo=wn,Do=He,ri=xn;const oi={empty:!0,space:!0};function zo(i){for(let e=i.length-1;e>=0;e--){let t=i[e],n=t[3]||t[2];if(n)return n}}let Uo=class{constructor(e){this.input=e,this.root=new Do,this.current=this.root,this.spaces="",this.semicolon=!1,this.customProperty=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let t=new jo;t.name=e[1].slice(1),t.name===""&&this.unnamedAtrule(t,e),this.init(t,e[2]);let n,s,o,r=!1,a=!1,l=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),n=e[0],n==="("||n==="["?c.push(n==="("?")":"]"):n==="{"&&c.length>0?c.push("}"):n===c[c.length-1]&&c.pop(),c.length===0)if(n===";"){t.source.end=this.getPosition(e[2]),t.source.end.offset++,this.semicolon=!0;break}else if(n==="{"){a=!0;break}else if(n==="}"){if(l.length>0){for(o=l.length-1,s=l[o];s&&s[0]==="space";)s=l[--o];s&&(t.source.end=this.getPosition(s[3]||s[2]),t.source.end.offset++)}this.end(e);break}else l.push(e);else l.push(e);if(this.tokenizer.endOfFile()){r=!0;break}}t.raws.between=this.spacesAndCommentsFromEnd(l),l.length?(t.raws.afterName=this.spacesAndCommentsFromStart(l),this.raw(t,"params",l),r&&(e=l[l.length-1],t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++,this.spaces=t.raws.between,t.raws.between="")):(t.raws.afterName="",t.params=""),a&&(t.nodes=[],this.current=t)}checkMissedSemicolon(e){let t=this.colon(e);if(t===!1)return;let n=0,s;for(let o=t-1;o>=0&&(s=e[o],!(s[0]!=="space"&&(n+=1,n===2)));o--);throw this.input.error("Missed semicolon",s[0]==="word"?s[3]+1:s[2])}colon(e){let t=0,n,s,o;for(let[r,a]of e.entries()){if(n=a,s=n[0],s==="("&&(t+=1),s===")"&&(t-=1),t===0&&s===":")if(!o)this.doubleColon(n);else{if(o[0]==="word"&&o[1]==="progid")continue;return r}o=n}return!1}comment(e){let t=new To;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;let n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{let s=n.match(/^(\s*)([^]*\S)(\s*)$/);t.text=s[2],t.raws.left=s[1],t.raws.right=s[3]}}createTokenizer(){this.tokenizer=Io(this.input)}decl(e,t){let n=new Po;this.init(n,e[0][2]);let s=e[e.length-1];for(s[0]===";"&&(this.semicolon=!0,e.pop()),n.source.end=this.getPosition(s[3]||s[2]||zo(e)),n.source.end.offset++;e[0][0]!=="word";)e.length===1&&this.unknownWord(e),n.raws.before+=e.shift()[1];for(n.source.start=this.getPosition(e[0][2]),n.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;n.prop+=e.shift()[1]}n.raws.between="";let o;for(;e.length;)if(o=e.shift(),o[0]===":"){n.raws.between+=o[1];break}else o[0]==="word"&&/\w/.test(o[1])&&this.unknownWord([o]),n.raws.between+=o[1];(n.prop[0]==="_"||n.prop[0]==="*")&&(n.raws.before+=n.prop[0],n.prop=n.prop.slice(1));let r=[],a;for(;e.length&&(a=e[0][0],!(a!=="space"&&a!=="comment"));)r.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(o=e[c],o[1].toLowerCase()==="!important"){n.important=!0;let u=this.stringFrom(e,c);u=this.spacesFromEnd(e)+u,u!==" !important"&&(n.raws.important=u);break}else if(o[1].toLowerCase()==="important"){let u=e.slice(0),p="";for(let f=c;f>0;f--){let x=u[f][0];if(p.trim().indexOf("!")===0&&x!=="space")break;p=u.pop()[1]+p}p.trim().indexOf("!")===0&&(n.important=!0,n.raws.important=p,e=u)}if(o[0]!=="space"&&o[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(n.raws.between+=r.map(c=>c[1]).join(""),r=[]),this.raw(n,"value",r.concat(e),t),n.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let t=new ri;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let t=this.current.nodes[this.current.nodes.length-1];t&&t.type==="rule"&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}init(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}other(e){let t=!1,n=null,s=!1,o=null,r=[],a=e[1].startsWith("--"),l=[],c=e;for(;c;){if(n=c[0],l.push(c),n==="("||n==="[")o||(o=c),r.push(n==="("?")":"]");else if(a&&s&&n==="{")o||(o=c),r.push("}");else if(r.length===0)if(n===";")if(s){this.decl(l,a);return}else break;else if(n==="{"){this.rule(l);return}else if(n==="}"){this.tokenizer.back(l.pop()),t=!0;break}else n===":"&&(s=!0);else n===r[r.length-1]&&(r.pop(),r.length===0&&(o=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),r.length>0&&this.unclosedBracket(o),t&&s){if(!a)for(;l.length&&(c=l[l.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(l.pop());this.decl(l,a)}else this.unknownWord(l)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}precheckMissedSemicolon(){}raw(e,t,n,s){let o,r,a=n.length,l="",c=!0,u,p;for(let f=0;f<a;f+=1)o=n[f],r=o[0],r==="space"&&f===a-1&&!s?c=!1:r==="comment"?(p=n[f-1]?n[f-1][0]:"empty",u=n[f+1]?n[f+1][0]:"empty",!oi[p]&&!oi[u]?l.slice(-1)===","?c=!1:l+=o[1]:c=!1):l+=o[1];if(!c){let f=n.reduce((x,O)=>x+O[1],"");e.raws[t]={raw:f,value:l}}e[t]=l}rule(e){e.pop();let t=new ri;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}spacesAndCommentsFromEnd(e){let t,n="";for(;e.length&&(t=e[e.length-1][0],!(t!=="space"&&t!=="comment"));)n=e.pop()[1]+n;return n}spacesAndCommentsFromStart(e){let t,n="";for(;e.length&&(t=e[0][0],!(t!=="space"&&t!=="comment"));)n+=e.shift()[1];return n}spacesFromEnd(e){let t,n="";for(;e.length&&(t=e[e.length-1][0],t==="space");)n=e.pop()[1]+n;return n}stringFrom(e,t){let n="";for(let s=t;s<e.length;s++)n+=e[s][1];return e.splice(t,e.length-t),n}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word",{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unnamedAtrule(e,t){throw this.input.error("At-rule without name",{offset:t[2]},{offset:t[2]+t[1].length})}};var Bo=Uo;let Fo=he,Ho=Bo,Vo=xt;function ft(i,e){let t=new Vo(i,e),n=new Ho(t);try{n.parse()}catch(s){throw s}return n.root}var _n=ft;ft.default=ft;Fo.registerParse(ft);let{isClean:G,my:Wo}=Fe,qo=Ii,Go=vt,Zo=he,Ko=vn,ai=yn,Jo=_n,Xo=He;const Qo={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},Yo={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},ea={Once:!0,postcssPlugin:!0,prepare:!0},_e=0;function ke(i){return typeof i=="object"&&typeof i.then=="function"}function es(i){let e=!1,t=Qo[i.type];return i.type==="decl"?e=i.prop.toLowerCase():i.type==="atrule"&&(e=i.name.toLowerCase()),e&&i.append?[t,t+"-"+e,_e,t+"Exit",t+"Exit-"+e]:e?[t,t+"-"+e,t+"Exit",t+"Exit-"+e]:i.append?[t,_e,t+"Exit"]:[t,t+"Exit"]}function li(i){let e;return i.type==="document"?e=["Document",_e,"DocumentExit"]:i.type==="root"?e=["Root",_e,"RootExit"]:e=es(i),{eventIndex:0,events:e,iterator:0,node:i,visitorIndex:0,visitors:[]}}function an(i){return i[G]=!1,i.nodes&&i.nodes.forEach(e=>an(e)),i}let ln={},Ee=class ts{constructor(e,t,n){this.stringified=!1,this.processed=!1;let s;if(typeof t=="object"&&t!==null&&(t.type==="root"||t.type==="document"))s=an(t);else if(t instanceof ts||t instanceof ai)s=an(t.root),t.map&&(typeof n.map>"u"&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=t.map);else{let o=Jo;n.syntax&&(o=n.syntax.parse),n.parser&&(o=n.parser),o.parse&&(o=o.parse);try{s=o(t,n)}catch(r){this.processed=!0,this.error=r}s&&!s[Wo]&&Zo.rebuild(s)}this.result=new ai(e,s,n),this.helpers={...ln,postcss:ln,result:this.result},this.plugins=this.processor.plugins.map(o=>typeof o=="object"&&o.prepare?{...o,...o.prepare(this.result)}:o)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let n=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=n.postcssPlugin,e.setMessage()):n.postcssVersion}catch(s){console&&console.error&&console.error(s)}return e}prepareVisitors(){this.listeners={};let e=(t,n,s)=>{this.listeners[n]||(this.listeners[n]=[]),this.listeners[n].push([t,s])};for(let t of this.plugins)if(typeof t=="object")for(let n in t){if(!Yo[n]&&/^[A-Z]/.test(n))throw new Error(`Unknown event ${n} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!ea[n])if(typeof t[n]=="object")for(let s in t[n])s==="*"?e(t,n,t[n][s]):e(t,n+"-"+s.toLowerCase(),t[n][s]);else typeof t[n]=="function"&&e(t,n,t[n])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let t=this.plugins[e],n=this.runOnRoot(t);if(ke(n))try{await n}catch(s){throw this.handleError(s)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[G];){e[G]=!0;let t=[li(e)];for(;t.length>0;){let n=this.visitTick(t);if(ke(n))try{await n}catch(s){let o=t[t.length-1].node;throw this.handleError(s,o)}}}if(this.listeners.OnceExit)for(let[t,n]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if(e.type==="document"){let s=e.nodes.map(o=>n(o,this.helpers));await Promise.all(s)}else await n(e,this.helpers)}catch(s){throw this.handleError(s)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let t=this.result.root.nodes.map(n=>e.Once(n,this.helpers));return ke(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(t){throw this.handleError(t)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=Go;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let s=new qo(t,this.result.root,this.result.opts).generate();return this.result.css=s[0],this.result.map=s[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let t=this.runOnRoot(e);if(ke(t))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[G];)e[G]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,t){return this.async().then(e,t)}toString(){return this.css}visitSync(e,t){for(let[n,s]of e){this.result.lastPlugin=n;let o;try{o=s(t,this.helpers)}catch(r){throw this.handleError(r,t.proxyOf)}if(t.type!=="root"&&t.type!=="document"&&!t.parent)return!0;if(ke(o))throw this.getAsyncError()}}visitTick(e){let t=e[e.length-1],{node:n,visitors:s}=t;if(n.type!=="root"&&n.type!=="document"&&!n.parent){e.pop();return}if(s.length>0&&t.visitorIndex<s.length){let[r,a]=s[t.visitorIndex];t.visitorIndex+=1,t.visitorIndex===s.length&&(t.visitors=[],t.visitorIndex=0),this.result.lastPlugin=r;try{return a(n.toProxy(),this.helpers)}catch(l){throw this.handleError(l,n)}}if(t.iterator!==0){let r=t.iterator,a;for(;a=n.nodes[n.indexes[r]];)if(n.indexes[r]+=1,!a[G]){a[G]=!0,e.push(li(a));return}t.iterator=0,delete n.indexes[r]}let o=t.events;for(;t.eventIndex<o.length;){let r=o[t.eventIndex];if(t.eventIndex+=1,r===_e){n.nodes&&n.nodes.length&&(n[G]=!0,t.iterator=n.getIterator());return}else if(this.listeners[r]){t.visitors=this.listeners[r];return}}e.pop()}walkSync(e){e[G]=!0;let t=es(e);for(let n of t)if(n===_e)e.nodes&&e.each(s=>{s[G]||this.walkSync(s)});else{let s=this.listeners[n];if(s&&this.visitSync(s,e.toProxy()))return}}warnings(){return this.sync().warnings()}get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}};Ee.registerPostcss=i=>{ln=i};var ns=Ee;Ee.default=Ee;Xo.registerLazyResult(Ee);Ko.registerLazyResult(Ee);let ta=Ii,na=vt,ia=_n;const sa=yn;let cn=class{constructor(e,t,n){t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=n,this._map=void 0;let s,o=na;this.result=new sa(this._processor,s,this._opts),this.result.css=t;let r=this;Object.defineProperty(this.result,"root",{get(){return r.root}});let a=new ta(o,s,this._opts,t);if(a.isMap()){let[l,c]=a.generate();l&&(this.result.css=l),c&&(this.result.map=c)}}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,t){return this.async().then(e,t)}toString(){return this._css}warnings(){return[]}get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,t=ia;try{e=t(this._css,this._opts)}catch(n){this.error=n}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}};var ra=cn;cn.default=cn;let oa=ra,aa=ns,la=vn,ca=He,je=class{constructor(e=[]){this.version="8.4.32",this.plugins=this.normalize(e)}normalize(e){let t=[];for(let n of e)if(n.postcss===!0?n=n():n.postcss&&(n=n.postcss),typeof n=="object"&&Array.isArray(n.plugins))t=t.concat(n.plugins);else if(typeof n=="object"&&n.postcssPlugin)t.push(n);else if(typeof n=="function")t.push(n);else if(!(typeof n=="object"&&(n.parse||n.stringify)))throw new Error(n+" is not a PostCSS plugin");return t}process(e,t={}){return this.plugins.length===0&&typeof t.parser>"u"&&typeof t.stringifier>"u"&&typeof t.syntax>"u"?new oa(this,e,t):new aa(this,e,t)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}};var ua=je;je.default=je;ca.registerProcessor(je);la.registerProcessor(je);let da=wt,ha=Ri,pa=_t,fa=wn,ma=xt,ga=He,ba=xn;function De(i,e){if(Array.isArray(i))return i.map(s=>De(s));let{inputs:t,...n}=i;if(t){e=[];for(let s of t){let o={...s,__proto__:ma.prototype};o.map&&(o.map={...o.map,__proto__:ha.prototype}),e.push(o)}}if(n.nodes&&(n.nodes=i.nodes.map(s=>De(s,e))),n.source){let{inputId:s,...o}=n.source;n.source=o,s!=null&&(n.source.input=e[s])}if(n.type==="root")return new ga(n);if(n.type==="decl")return new da(n);if(n.type==="rule")return new ba(n);if(n.type==="comment")return new pa(n);if(n.type==="atrule")return new fa(n);throw new Error("Unknown node type: "+i.type)}var va=De;De.default=De;var ci={};let ya=mn,is=wt,wa=ns,xa=he,En=ua,_a=vt,Ea=va,ss=vn,Sa=Gi,rs=_t,os=wn,$a=yn,Aa=xt,Ca=_n,ka=Qi,as=xn,ls=He,Oa=yt;function E(...i){return i.length===1&&Array.isArray(i[0])&&(i=i[0]),new En(i)}E.plugin=function(e,t){let n=!1;function s(...r){console&&console.warn&&!n&&(n=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide:
471
- https://evilmartians.com/chronicles/postcss-8-plugin-migration`),ci.LANG&&ci.LANG.startsWith("cn")&&console.warn(e+`: 里面 postcss.plugin 被弃用. 迁移指南:
472
- https://www.w3ctech.com/topic/2226`));let a=t(...r);return a.postcssPlugin=e,a.postcssVersion=new En().version,a}let o;return Object.defineProperty(s,"postcss",{get(){return o||(o=s()),o}}),s.process=function(r,a,l){return E([s(l)]).process(r,a)},s};E.stringify=_a;E.parse=Ca;E.fromJSON=Ea;E.list=ka;E.comment=i=>new rs(i);E.atRule=i=>new os(i);E.decl=i=>new is(i);E.rule=i=>new as(i);E.root=i=>new ls(i);E.document=i=>new ss(i);E.CssSyntaxError=ya;E.Declaration=is;E.Container=xa;E.Processor=En;E.Document=ss;E.Comment=rs;E.Warning=Sa;E.AtRule=os;E.Result=$a;E.Input=Aa;E.Rule=as;E.Root=ls;E.Node=Oa;wa.registerPostcss(E);var Ra=E;E.default=E;const k=Ai(Ra);k.stringify;k.fromJSON;k.plugin;k.parse;k.list;k.document;k.comment;k.atRule;k.rule;k.decl;k.root;k.CssSyntaxError;k.Declaration;k.Container;k.Processor;k.Document;k.Comment;k.Warning;k.AtRule;k.Result;k.Input;k.Rule;k.Root;k.Node;var Ma=function(e){const t=e.prefix,n=/\s+$/.test(t)?t:`${t} `,s=e.ignoreFiles?[].concat(e.ignoreFiles):[],o=e.includeFiles?[].concat(e.includeFiles):[];return function(r){s.length&&r.source.input.file&&ui(r.source.input.file,s)||o.length&&r.source.input.file&&!ui(r.source.input.file,o)||r.walkRules(a=>{const l=["keyframes","-webkit-keyframes","-moz-keyframes","-o-keyframes"];a.parent&&l.includes(a.parent.name)||(a.selectors=a.selectors.map(c=>e.exclude&&Na(c,e.exclude)?c:e.transform?e.transform(t,c,n+c,r.source.input.file,a):n+c))})}};function ui(i,e){return e.some(t=>t instanceof RegExp?t.test(i):i.includes(t))}function Na(i,e){return e.some(t=>t instanceof RegExp?t.test(i):i===t)}const La=Ai(Ma),Pa="code{white-space:pre}.example{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;gap:16px}.example>*{flex:1 1 500px}.example .tab-control{overflow:hidden}.example div[role=tab]{cursor:pointer;padding:8px 16px;display:inline-block;font-size:16px;border-bottom:2px solid transparent;background-clip:padding-box;-webkit-user-select:none;user-select:none}.example div[role=tab]:hover{background-color:#1467ba14}.example div[role=tab][selected]{background-color:#1467ba21;border-bottom:2px solid #1467ba}.tab-content{margin:16px 0}.tab-content>pre{padding-top:0}.tab-content.code{max-height:500px;overflow:auto}.tab-content.code pre{margin:0}",Ia="pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#24292e;background:#fff}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#d73a49}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#6f42c1}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-variable,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id{color:#005cc5}.hljs-regexp,.hljs-string,.hljs-meta .hljs-string{color:#032f62}.hljs-built_in,.hljs-symbol{color:#e36209}.hljs-comment,.hljs-code,.hljs-formula{color:#6a737d}.hljs-name,.hljs-quote,.hljs-selector-tag,.hljs-selector-pseudo{color:#22863a}.hljs-subst{color:#24292e}.hljs-section{color:#005cc5;font-weight:700}.hljs-bullet{color:#735c0f}.hljs-emphasis{color:#24292e;font-style:italic}.hljs-strong{color:#24292e;font-weight:700}.hljs-addition{color:#22863a;background-color:#f0fff4}.hljs-deletion{color:#b31d28;background-color:#ffeef0}";function Ta(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}function cs(i){return i instanceof Map?i.clear=i.delete=i.set=function(){throw new Error("map is read-only")}:i instanceof Set&&(i.add=i.clear=i.delete=function(){throw new Error("set is read-only")}),Object.freeze(i),Object.getOwnPropertyNames(i).forEach(e=>{const t=i[e],n=typeof t;(n==="object"||n==="function")&&!Object.isFrozen(t)&&cs(t)}),i}class di{constructor(e){e.data===void 0&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function us(i){return i.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")}function ne(i,...e){const t=Object.create(null);for(const n in i)t[n]=i[n];return e.forEach(function(n){for(const s in n)t[s]=n[s]}),t}const ja="</span>",hi=i=>!!i.scope,Da=(i,{prefix:e})=>{if(i.startsWith("language:"))return i.replace("language:","language-");if(i.includes(".")){const t=i.split(".");return[`${e}${t.shift()}`,...t.map((n,s)=>`${n}${"_".repeat(s+1)}`)].join(" ")}return`${e}${i}`};class za{constructor(e,t){this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=us(e)}openNode(e){if(!hi(e))return;const t=Da(e.scope,{prefix:this.classPrefix});this.span(t)}closeNode(e){hi(e)&&(this.buffer+=ja)}value(){return this.buffer}span(e){this.buffer+=`<span class="${e}">`}}const pi=(i={})=>{const e={children:[]};return Object.assign(e,i),e};class Sn{constructor(){this.rootNode=pi(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t=pi({scope:e});this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return typeof t=="string"?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(n=>this._walk(e,n)),e.closeNode(t)),e}static _collapse(e){typeof e!="string"&&e.children&&(e.children.every(t=>typeof t=="string")?e.children=[e.children.join("")]:e.children.forEach(t=>{Sn._collapse(t)}))}}class Ua extends Sn{constructor(e){super(),this.options=e}addText(e){e!==""&&this.add(e)}startScope(e){this.openNode(e)}endScope(){this.closeNode()}__addSublanguage(e,t){const n=e.root;t&&(n.scope=`language:${t}`),this.add(n)}toHTML(){return new za(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}}function ze(i){return i?typeof i=="string"?i:i.source:null}function ds(i){return pe("(?=",i,")")}function Ba(i){return pe("(?:",i,")*")}function Fa(i){return pe("(?:",i,")?")}function pe(...i){return i.map(e=>ze(e)).join("")}function Ha(i){const e=i[i.length-1];return typeof e=="object"&&e.constructor===Object?(i.splice(i.length-1,1),e):{}}function $n(...i){return"("+(Ha(i).capture?"":"?:")+i.map(e=>ze(e)).join("|")+")"}function hs(i){return new RegExp(i.toString()+"|").exec("").length-1}function Va(i,e){const t=i&&i.exec(e);return t&&t.index===0}const Wa=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function An(i,{joinWith:e}){let t=0;return i.map(n=>{t+=1;const s=t;let o=ze(n),r="";for(;o.length>0;){const a=Wa.exec(o);if(!a){r+=o;break}r+=o.substring(0,a.index),o=o.substring(a.index+a[0].length),a[0][0]==="\\"&&a[1]?r+="\\"+String(Number(a[1])+s):(r+=a[0],a[0]==="("&&t++)}return r}).map(n=>`(${n})`).join(e)}const qa=/\b\B/,ps="[a-zA-Z]\\w*",Cn="[a-zA-Z_]\\w*",fs="\\b\\d+(\\.\\d+)?",ms="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",gs="\\b(0b[01]+)",Ga="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",Za=(i={})=>{const e=/^#![ ]*\//;return i.binary&&(i.begin=pe(e,/.*\b/,i.binary,/\b.*/)),ne({scope:"meta",begin:e,end:/$/,relevance:0,"on:begin":(t,n)=>{t.index!==0&&n.ignoreMatch()}},i)},Ue={begin:"\\\\[\\s\\S]",relevance:0},Ka={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[Ue]},Ja={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[Ue]},Xa={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},Et=function(i,e,t={}){const n=ne({scope:"comment",begin:i,end:e,contains:[]},t);n.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const s=$n("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return n.contains.push({begin:pe(/[ ]+/,"(",s,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),n},Qa=Et("//","$"),Ya=Et("/\\*","\\*/"),el=Et("#","$"),tl={scope:"number",begin:fs,relevance:0},nl={scope:"number",begin:ms,relevance:0},il={scope:"number",begin:gs,relevance:0},sl={scope:"regexp",begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[Ue,{begin:/\[/,end:/\]/,relevance:0,contains:[Ue]}]},rl={scope:"title",begin:ps,relevance:0},ol={scope:"title",begin:Cn,relevance:0},al={begin:"\\.\\s*"+Cn,relevance:0},ll=function(i){return Object.assign(i,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var it=Object.freeze({__proto__:null,APOS_STRING_MODE:Ka,BACKSLASH_ESCAPE:Ue,BINARY_NUMBER_MODE:il,BINARY_NUMBER_RE:gs,COMMENT:Et,C_BLOCK_COMMENT_MODE:Ya,C_LINE_COMMENT_MODE:Qa,C_NUMBER_MODE:nl,C_NUMBER_RE:ms,END_SAME_AS_BEGIN:ll,HASH_COMMENT_MODE:el,IDENT_RE:ps,MATCH_NOTHING_RE:qa,METHOD_GUARD:al,NUMBER_MODE:tl,NUMBER_RE:fs,PHRASAL_WORDS_MODE:Xa,QUOTE_STRING_MODE:Ja,REGEXP_MODE:sl,RE_STARTERS_RE:Ga,SHEBANG:Za,TITLE_MODE:rl,UNDERSCORE_IDENT_RE:Cn,UNDERSCORE_TITLE_MODE:ol});function cl(i,e){i.input[i.index-1]==="."&&e.ignoreMatch()}function ul(i,e){i.className!==void 0&&(i.scope=i.className,delete i.className)}function dl(i,e){e&&i.beginKeywords&&(i.begin="\\b("+i.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",i.__beforeBegin=cl,i.keywords=i.keywords||i.beginKeywords,delete i.beginKeywords,i.relevance===void 0&&(i.relevance=0))}function hl(i,e){Array.isArray(i.illegal)&&(i.illegal=$n(...i.illegal))}function pl(i,e){if(i.match){if(i.begin||i.end)throw new Error("begin & end are not supported with match");i.begin=i.match,delete i.match}}function fl(i,e){i.relevance===void 0&&(i.relevance=1)}const ml=(i,e)=>{if(!i.beforeMatch)return;if(i.starts)throw new Error("beforeMatch cannot be used with starts");const t=Object.assign({},i);Object.keys(i).forEach(n=>{delete i[n]}),i.keywords=t.keywords,i.begin=pe(t.beforeMatch,ds(t.begin)),i.starts={relevance:0,contains:[Object.assign(t,{endsParent:!0})]},i.relevance=0,delete t.beforeMatch},gl=["of","and","for","in","not","or","if","then","parent","list","value"],bl="keyword";function bs(i,e,t=bl){const n=Object.create(null);return typeof i=="string"?s(t,i.split(" ")):Array.isArray(i)?s(t,i):Object.keys(i).forEach(function(o){Object.assign(n,bs(i[o],e,o))}),n;function s(o,r){e&&(r=r.map(a=>a.toLowerCase())),r.forEach(function(a){const l=a.split("|");n[l[0]]=[o,vl(l[0],l[1])]})}}function vl(i,e){return e?Number(e):yl(i)?0:1}function yl(i){return gl.includes(i.toLowerCase())}const fi={},ue=i=>{console.error(i)},mi=(i,...e)=>{console.log(`WARN: ${i}`,...e)},ge=(i,e)=>{fi[`${i}/${e}`]||(console.log(`Deprecated as of ${i}. ${e}`),fi[`${i}/${e}`]=!0)},mt=new Error;function vs(i,e,{key:t}){let n=0;const s=i[t],o={},r={};for(let a=1;a<=e.length;a++)r[a+n]=s[a],o[a+n]=!0,n+=hs(e[a-1]);i[t]=r,i[t]._emit=o,i[t]._multi=!0}function wl(i){if(Array.isArray(i.begin)){if(i.skip||i.excludeBegin||i.returnBegin)throw ue("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),mt;if(typeof i.beginScope!="object"||i.beginScope===null)throw ue("beginScope must be object"),mt;vs(i,i.begin,{key:"beginScope"}),i.begin=An(i.begin,{joinWith:""})}}function xl(i){if(Array.isArray(i.end)){if(i.skip||i.excludeEnd||i.returnEnd)throw ue("skip, excludeEnd, returnEnd not compatible with endScope: {}"),mt;if(typeof i.endScope!="object"||i.endScope===null)throw ue("endScope must be object"),mt;vs(i,i.end,{key:"endScope"}),i.end=An(i.end,{joinWith:""})}}function _l(i){i.scope&&typeof i.scope=="object"&&i.scope!==null&&(i.beginScope=i.scope,delete i.scope)}function El(i){_l(i),typeof i.beginScope=="string"&&(i.beginScope={_wrap:i.beginScope}),typeof i.endScope=="string"&&(i.endScope={_wrap:i.endScope}),wl(i),xl(i)}function Sl(i){function e(r,a){return new RegExp(ze(r),"m"+(i.case_insensitive?"i":"")+(i.unicodeRegex?"u":"")+(a?"g":""))}class t{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(a,l){l.position=this.position++,this.matchIndexes[this.matchAt]=l,this.regexes.push([l,a]),this.matchAt+=hs(a)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);const a=this.regexes.map(l=>l[1]);this.matcherRe=e(An(a,{joinWith:"|"}),!0),this.lastIndex=0}exec(a){this.matcherRe.lastIndex=this.lastIndex;const l=this.matcherRe.exec(a);if(!l)return null;const c=l.findIndex((p,f)=>f>0&&p!==void 0),u=this.matchIndexes[c];return l.splice(0,c),Object.assign(l,u)}}class n{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(a){if(this.multiRegexes[a])return this.multiRegexes[a];const l=new t;return this.rules.slice(a).forEach(([c,u])=>l.addRule(c,u)),l.compile(),this.multiRegexes[a]=l,l}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(a,l){this.rules.push([a,l]),l.type==="begin"&&this.count++}exec(a){const l=this.getMatcher(this.regexIndex);l.lastIndex=this.lastIndex;let c=l.exec(a);if(this.resumingScanAtSamePosition()&&!(c&&c.index===this.lastIndex)){const u=this.getMatcher(0);u.lastIndex=this.lastIndex+1,c=u.exec(a)}return c&&(this.regexIndex+=c.position+1,this.regexIndex===this.count&&this.considerAll()),c}}function s(r){const a=new n;return r.contains.forEach(l=>a.addRule(l.begin,{rule:l,type:"begin"})),r.terminatorEnd&&a.addRule(r.terminatorEnd,{type:"end"}),r.illegal&&a.addRule(r.illegal,{type:"illegal"}),a}function o(r,a){const l=r;if(r.isCompiled)return l;[ul,pl,El,ml].forEach(u=>u(r,a)),i.compilerExtensions.forEach(u=>u(r,a)),r.__beforeBegin=null,[dl,hl,fl].forEach(u=>u(r,a)),r.isCompiled=!0;let c=null;return typeof r.keywords=="object"&&r.keywords.$pattern&&(r.keywords=Object.assign({},r.keywords),c=r.keywords.$pattern,delete r.keywords.$pattern),c=c||/\w+/,r.keywords&&(r.keywords=bs(r.keywords,i.case_insensitive)),l.keywordPatternRe=e(c,!0),a&&(r.begin||(r.begin=/\B|\b/),l.beginRe=e(l.begin),!r.end&&!r.endsWithParent&&(r.end=/\B|\b/),r.end&&(l.endRe=e(l.end)),l.terminatorEnd=ze(l.end)||"",r.endsWithParent&&a.terminatorEnd&&(l.terminatorEnd+=(r.end?"|":"")+a.terminatorEnd)),r.illegal&&(l.illegalRe=e(r.illegal)),r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map(function(u){return $l(u==="self"?r:u)})),r.contains.forEach(function(u){o(u,l)}),r.starts&&o(r.starts,a),l.matcher=s(l),l}if(i.compilerExtensions||(i.compilerExtensions=[]),i.contains&&i.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return i.classNameAliases=ne(i.classNameAliases||{}),o(i)}function ys(i){return i?i.endsWithParent||ys(i.starts):!1}function $l(i){return i.variants&&!i.cachedVariants&&(i.cachedVariants=i.variants.map(function(e){return ne(i,{variants:null},e)})),i.cachedVariants?i.cachedVariants:ys(i)?ne(i,{starts:i.starts?ne(i.starts):null}):Object.isFrozen(i)?ne(i):i}var Al="11.9.0";class Cl extends Error{constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}const Vt=us,gi=ne,bi=Symbol("nomatch"),kl=7,ws=function(i){const e=Object.create(null),t=Object.create(null),n=[];let s=!0;const o="Could not find the language '{}', did you forget to load/include a language module?",r={disableAutodetect:!0,name:"Plain text",contains:[]};let a={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:Ua};function l(d){return a.noHighlightRe.test(d)}function c(d){let m=d.className+" ";m+=d.parentNode?d.parentNode.className:"";const y=a.languageDetectRe.exec(m);if(y){const _=j(y[1]);return _||(mi(o.replace("{}",y[1])),mi("Falling back to no-highlight mode for this block.",d)),_?y[1]:"no-highlight"}return m.split(/\s+/).find(_=>l(_)||j(_))}function u(d,m,y){let _="",R="";typeof m=="object"?(_=d,y=m.ignoreIllegals,R=m.language):(ge("10.7.0","highlight(lang, code, ...args) has been deprecated."),ge("10.7.0",`Please use highlight(code, options) instead.
473
- https://github.com/highlightjs/highlight.js/issues/2277`),R=d,_=m),y===void 0&&(y=!0);const D={code:_,language:R};re("before:highlight",D);const Y=D.result?D.result:p(D.language,D.code,y);return Y.code=D.code,re("after:highlight",Y),Y}function p(d,m,y,_){const R=Object.create(null);function D(h,g){return h.keywords[g]}function Y(){if(!v.keywords){I.addText($);return}let h=0;v.keywordPatternRe.lastIndex=0;let g=v.keywordPatternRe.exec($),w="";for(;g;){w+=$.substring(h,g.index);const S=q.case_insensitive?g[0].toLowerCase():g[0],T=D(v,S);if(T){const[X,Ps]=T;if(I.addText(w),w="",R[S]=(R[S]||0)+1,R[S]<=kl&&(Ge+=Ps),X.startsWith("_"))w+=g[0];else{const Is=q.classNameAliases[X]||X;W(g[0],Is)}}else w+=g[0];h=v.keywordPatternRe.lastIndex,g=v.keywordPatternRe.exec($)}w+=$.substring(h),I.addText(w)}function We(){if($==="")return;let h=null;if(typeof v.subLanguage=="string"){if(!e[v.subLanguage]){I.addText($);return}h=p(v.subLanguage,$,!0,Nn[v.subLanguage]),Nn[v.subLanguage]=h._top}else h=x($,v.subLanguage.length?v.subLanguage:null);v.relevance>0&&(Ge+=h.relevance),I.__addSublanguage(h._emitter,h.language)}function z(){v.subLanguage!=null?We():Y(),$=""}function W(h,g){h!==""&&(I.startScope(g),I.addText(h),I.endScope())}function kn(h,g){let w=1;const S=g.length-1;for(;w<=S;){if(!h._emit[w]){w++;continue}const T=q.classNameAliases[h[w]]||h[w],X=g[w];T?W(X,T):($=X,Y(),$=""),w++}}function On(h,g){return h.scope&&typeof h.scope=="string"&&I.openNode(q.classNameAliases[h.scope]||h.scope),h.beginScope&&(h.beginScope._wrap?(W($,q.classNameAliases[h.beginScope._wrap]||h.beginScope._wrap),$=""):h.beginScope._multi&&(kn(h.beginScope,g),$="")),v=Object.create(h,{parent:{value:v}}),v}function Rn(h,g,w){let S=Va(h.endRe,w);if(S){if(h["on:end"]){const T=new di(h);h["on:end"](g,T),T.isMatchIgnored&&(S=!1)}if(S){for(;h.endsParent&&h.parent;)h=h.parent;return h}}if(h.endsWithParent)return Rn(h.parent,g,w)}function Os(h){return v.matcher.regexIndex===0?($+=h[0],1):(Mt=!0,0)}function Rs(h){const g=h[0],w=h.rule,S=new di(w),T=[w.__beforeBegin,w["on:begin"]];for(const X of T)if(X&&(X(h,S),S.isMatchIgnored))return Os(g);return w.skip?$+=g:(w.excludeBegin&&($+=g),z(),!w.returnBegin&&!w.excludeBegin&&($=g)),On(w,h),w.returnBegin?0:g.length}function Ms(h){const g=h[0],w=m.substring(h.index),S=Rn(v,h,w);if(!S)return bi;const T=v;v.endScope&&v.endScope._wrap?(z(),W(g,v.endScope._wrap)):v.endScope&&v.endScope._multi?(z(),kn(v.endScope,h)):T.skip?$+=g:(T.returnEnd||T.excludeEnd||($+=g),z(),T.excludeEnd&&($=g));do v.scope&&I.closeNode(),!v.skip&&!v.subLanguage&&(Ge+=v.relevance),v=v.parent;while(v!==S.parent);return S.starts&&On(S.starts,h),T.returnEnd?0:g.length}function Ns(){const h=[];for(let g=v;g!==q;g=g.parent)g.scope&&h.unshift(g.scope);h.forEach(g=>I.openNode(g))}let qe={};function Mn(h,g){const w=g&&g[0];if($+=h,w==null)return z(),0;if(qe.type==="begin"&&g.type==="end"&&qe.index===g.index&&w===""){if($+=m.slice(g.index,g.index+1),!s){const S=new Error(`0 width match regex (${d})`);throw S.languageName=d,S.badRule=qe.rule,S}return 1}if(qe=g,g.type==="begin")return Rs(g);if(g.type==="illegal"&&!y){const S=new Error('Illegal lexeme "'+w+'" for mode "'+(v.scope||"<unnamed>")+'"');throw S.mode=v,S}else if(g.type==="end"){const S=Ms(g);if(S!==bi)return S}if(g.type==="illegal"&&w==="")return 1;if(Rt>1e5&&Rt>g.index*3)throw new Error("potential infinite loop, way more iterations than matches");return $+=w,w.length}const q=j(d);if(!q)throw ue(o.replace("{}",d)),new Error('Unknown language: "'+d+'"');const Ls=Sl(q);let Ot="",v=_||Ls;const Nn={},I=new a.__emitter(a);Ns();let $="",Ge=0,oe=0,Rt=0,Mt=!1;try{if(q.__emitTokens)q.__emitTokens(m,I);else{for(v.matcher.considerAll();;){Rt++,Mt?Mt=!1:v.matcher.considerAll(),v.matcher.lastIndex=oe;const h=v.matcher.exec(m);if(!h)break;const g=m.substring(oe,h.index),w=Mn(g,h);oe=h.index+w}Mn(m.substring(oe))}return I.finalize(),Ot=I.toHTML(),{language:d,value:Ot,relevance:Ge,illegal:!1,_emitter:I,_top:v}}catch(h){if(h.message&&h.message.includes("Illegal"))return{language:d,value:Vt(m),illegal:!0,relevance:0,_illegalBy:{message:h.message,index:oe,context:m.slice(oe-100,oe+100),mode:h.mode,resultSoFar:Ot},_emitter:I};if(s)return{language:d,value:Vt(m),illegal:!1,relevance:0,errorRaised:h,_emitter:I,_top:v};throw h}}function f(d){const m={value:Vt(d),illegal:!1,relevance:0,_top:r,_emitter:new a.__emitter(a)};return m._emitter.addText(d),m}function x(d,m){m=m||a.languages||Object.keys(e);const y=f(d),_=m.filter(j).filter(Ve).map(z=>p(z,d,!1));_.unshift(y);const R=_.sort((z,W)=>{if(z.relevance!==W.relevance)return W.relevance-z.relevance;if(z.language&&W.language){if(j(z.language).supersetOf===W.language)return 1;if(j(W.language).supersetOf===z.language)return-1}return 0}),[D,Y]=R,We=D;return We.secondBest=Y,We}function O(d,m,y){const _=m&&t[m]||y;d.classList.add("hljs"),d.classList.add(`language-${_}`)}function P(d){let m=null;const y=c(d);if(l(y))return;if(re("before:highlightElement",{el:d,language:y}),d.dataset.highlighted){console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",d);return}if(d.children.length>0&&(a.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(d)),a.throwUnescapedHTML))throw new Cl("One of your code blocks includes unescaped HTML.",d.innerHTML);m=d;const _=m.textContent,R=y?u(_,{language:y,ignoreIllegals:!0}):x(_);d.innerHTML=R.value,d.dataset.highlighted="yes",O(d,y,R.language),d.result={language:R.language,re:R.relevance,relevance:R.relevance},R.secondBest&&(d.secondBest={language:R.secondBest.language,relevance:R.secondBest.relevance}),re("after:highlightElement",{el:d,result:R,text:_})}function b(d){a=gi(a,d)}const Z=()=>{U(),ge("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function K(){U(),ge("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let ie=!1;function U(){if(document.readyState==="loading"){ie=!0;return}document.querySelectorAll(a.cssSelector).forEach(P)}function J(){ie&&U()}typeof window<"u"&&window.addEventListener&&window.addEventListener("DOMContentLoaded",J,!1);function $e(d,m){let y=null;try{y=m(i)}catch(_){if(ue("Language definition for '{}' could not be registered.".replace("{}",d)),s)ue(_);else throw _;y=r}y.name||(y.name=d),e[d]=y,y.rawDefinition=m.bind(null,i),y.aliases&&se(y.aliases,{languageName:d})}function fe(d){delete e[d];for(const m of Object.keys(t))t[m]===d&&delete t[m]}function V(){return Object.keys(e)}function j(d){return d=(d||"").toLowerCase(),e[d]||e[t[d]]}function se(d,{languageName:m}){typeof d=="string"&&(d=[d]),d.forEach(y=>{t[y.toLowerCase()]=m})}function Ve(d){const m=j(d);return m&&!m.disableAutodetect}function $t(d){d["before:highlightBlock"]&&!d["before:highlightElement"]&&(d["before:highlightElement"]=m=>{d["before:highlightBlock"](Object.assign({block:m.el},m))}),d["after:highlightBlock"]&&!d["after:highlightElement"]&&(d["after:highlightElement"]=m=>{d["after:highlightBlock"](Object.assign({block:m.el},m))})}function At(d){$t(d),n.push(d)}function Ct(d){const m=n.indexOf(d);m!==-1&&n.splice(m,1)}function re(d,m){const y=d;n.forEach(function(_){_[y]&&_[y](m)})}function kt(d){return ge("10.7.0","highlightBlock will be removed entirely in v12.0"),ge("10.7.0","Please use highlightElement now."),P(d)}Object.assign(i,{highlight:u,highlightAuto:x,highlightAll:U,highlightElement:P,highlightBlock:kt,configure:b,initHighlighting:Z,initHighlightingOnLoad:K,registerLanguage:$e,unregisterLanguage:fe,listLanguages:V,getLanguage:j,registerAliases:se,autoDetection:Ve,inherit:gi,addPlugin:At,removePlugin:Ct}),i.debugMode=function(){s=!1},i.safeMode=function(){s=!0},i.versionString=Al,i.regex={concat:pe,lookahead:ds,either:$n,optional:Fa,anyNumberOfTimes:Ba};for(const d in it)typeof it[d]=="object"&&cs(it[d]);return Object.assign(i,it),i},Se=ws({});Se.newInstance=()=>ws({});var Ol=Se;Se.HighlightJS=Se;Se.default=Se;const St=Ta(Ol),gt="[A-Za-z$_][0-9A-Za-z$_]*",xs=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],_s=["true","false","null","undefined","NaN","Infinity"],Es=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],Ss=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],$s=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],As=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],Cs=[].concat($s,Es,Ss);function Rl(i){const e=i.regex,t=(d,{after:m})=>{const y="</"+d[0].slice(1);return d.input.indexOf(y,m)!==-1},n=gt,s={begin:"<>",end:"</>"},o=/<[A-Za-z0-9\\._:-]+\s*\/>/,r={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(d,m)=>{const y=d[0].length+d.index,_=d.input[y];if(_==="<"||_===","){m.ignoreMatch();return}_===">"&&(t(d,{after:y})||m.ignoreMatch());let R;const D=d.input.substring(y);if(R=D.match(/^\s*=/)){m.ignoreMatch();return}if((R=D.match(/^\s+extends\s+/))&&R.index===0){m.ignoreMatch();return}}},a={$pattern:gt,keyword:xs,literal:_s,built_in:Cs,"variable.language":As},l="[0-9](_?[0-9])*",c=`\\.(${l})`,u="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",p={className:"number",variants:[{begin:`(\\b(${u})((${c})|\\.)?|(${c}))[eE][+-]?(${l})\\b`},{begin:`\\b(${u})\\b((${c})\\b|\\.)?|(${c})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},f={className:"subst",begin:"\\$\\{",end:"\\}",keywords:a,contains:[]},x={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[i.BACKSLASH_ESCAPE,f],subLanguage:"xml"}},O={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[i.BACKSLASH_ESCAPE,f],subLanguage:"css"}},P={begin:"gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[i.BACKSLASH_ESCAPE,f],subLanguage:"graphql"}},b={className:"string",begin:"`",end:"`",contains:[i.BACKSLASH_ESCAPE,f]},Z={className:"comment",variants:[i.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:n+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),i.C_BLOCK_COMMENT_MODE,i.C_LINE_COMMENT_MODE]},K=[i.APOS_STRING_MODE,i.QUOTE_STRING_MODE,x,O,P,b,{match:/\$\d+/},p];f.contains=K.concat({begin:/\{/,end:/\}/,keywords:a,contains:["self"].concat(K)});const ie=[].concat(Z,f.contains),U=ie.concat([{begin:/\(/,end:/\)/,keywords:a,contains:["self"].concat(ie)}]),J={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:a,contains:U},$e={variants:[{match:[/class/,/\s+/,n,/\s+/,/extends/,/\s+/,e.concat(n,"(",e.concat(/\./,n),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,n],scope:{1:"keyword",3:"title.class"}}]},fe={relevance:0,match:e.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Es,...Ss]}},V={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},j={variants:[{match:[/function/,/\s+/,n,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[J],illegal:/%/},se={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function Ve(d){return e.concat("(?!",d.join("|"),")")}const $t={match:e.concat(/\b/,Ve([...$s,"super","import"]),n,e.lookahead(/\(/)),className:"title.function",relevance:0},At={begin:e.concat(/\./,e.lookahead(e.concat(n,/(?![0-9A-Za-z$_(])/))),end:n,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},Ct={match:[/get|set/,/\s+/,n,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},J]},re="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+i.UNDERSCORE_IDENT_RE+")\\s*=>",kt={match:[/const|var|let/,/\s+/,n,/\s*/,/=\s*/,/(async\s*)?/,e.lookahead(re)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[J]};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:a,exports:{PARAMS_CONTAINS:U,CLASS_REFERENCE:fe},illegal:/#(?![$_A-z])/,contains:[i.SHEBANG({label:"shebang",binary:"node",relevance:5}),V,i.APOS_STRING_MODE,i.QUOTE_STRING_MODE,x,O,P,b,Z,{match:/\$\d+/},p,fe,{className:"attr",begin:n+e.lookahead(":"),relevance:0},kt,{begin:"("+i.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[Z,i.REGEXP_MODE,{className:"function",begin:re,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:i.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:a,contains:U}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:s.begin,end:s.end},{match:o},{begin:r.begin,"on:begin":r.isTrulyOpeningTag,end:r.end}],subLanguage:"xml",contains:[{begin:r.begin,end:r.end,skip:!0,contains:["self"]}]}]},j,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+i.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[J,i.inherit(i.TITLE_MODE,{begin:n,className:"title.function"})]},{match:/\.\.\./,relevance:0},At,{match:"\\$"+n,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[J]},$t,se,$e,Ct,{match:/\$[(.]/}]}}function Ml(i){const e=Rl(i),t=gt,n=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],s={beginKeywords:"namespace",end:/\{/,excludeEnd:!0,contains:[e.exports.CLASS_REFERENCE]},o={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:n},contains:[e.exports.CLASS_REFERENCE]},r={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},a=["type","namespace","interface","public","private","protected","implements","declare","abstract","readonly","enum","override"],l={$pattern:gt,keyword:xs.concat(a),literal:_s,built_in:Cs.concat(n),"variable.language":As},c={className:"meta",begin:"@"+t},u=(f,x,O)=>{const P=f.contains.findIndex(b=>b.label===x);if(P===-1)throw new Error("can not find mode to replace");f.contains.splice(P,1,O)};Object.assign(e.keywords,l),e.exports.PARAMS_CONTAINS.push(c),e.contains=e.contains.concat([c,s,o]),u(e,"shebang",i.SHEBANG()),u(e,"use_strict",r);const p=e.contains.find(f=>f.label==="func.def");return p.relevance=0,Object.assign(e,{name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),e}function Nl(i){const e=i.regex,t=e.concat(/[\p{L}_]/u,e.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),n=/[\p{L}0-9._:-]+/u,s={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},o={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},r=i.inherit(o,{begin:/\(/,end:/\)/}),a=i.inherit(i.APOS_STRING_MODE,{className:"string"}),l=i.inherit(i.QUOTE_STRING_MODE,{className:"string"}),c={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",begin:n,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[s]},{begin:/'/,end:/'/,contains:[s]},{begin:/[^\s"'=<>`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,relevance:10,contains:[o,l,a,r,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,contains:[o,r,l,a]}]}]},i.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},s,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[l]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[c],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[c],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:e.concat(/</,e.lookahead(e.concat(t,e.either(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:t,relevance:0,starts:c}]},{className:"tag",begin:e.concat(/<\//,e.lookahead(e.concat(t,/>/))),contains:[{className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}const Ll=i=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:i.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[i.APOS_STRING_MODE,i.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:i.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),Pl=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Il=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],Tl=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],jl=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],Dl=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function zl(i){const e=i.regex,t=Ll(i),n={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},s="and or not only",o=/@-?\w[\w]*(-\w+)*/,r="[a-zA-Z-][a-zA-Z0-9_-]*",a=[i.APOS_STRING_MODE,i.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[t.BLOCK_COMMENT,n,t.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+r,relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+Tl.join("|")+")"},{begin:":(:)?("+jl.join("|")+")"}]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+Dl.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[t.BLOCK_COMMENT,t.HEXCOLOR,t.IMPORTANT,t.CSS_NUMBER_MODE,...a,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...a,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},t.FUNCTION_DISPATCH]},{begin:e.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:o},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:s,attribute:Il.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...a,t.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+Pl.join("|")+")\\b"}]}}const ks=document.createElement("style");ks.innerText=[Pa,Ia].join(`
474
- `);document.head.appendChild(ks);St.registerLanguage("typescript",Ml);St.registerLanguage("html",Nl);St.registerLanguage("css",zl);function Ul(...i){const e=document.createElement("div"),t=document.createElement("div");t.classList.add("tab-control");const n=document.createElement("div");return i.forEach(s=>{e.appendChild(s),s.addEventListener("click",()=>{i.forEach(o=>o.removeAttribute("selected")),s.setAttribute("selected",""),n.innerHTML="",n.appendChild(s.content),n.className=s.className,n.classList.add("tab-content")})}),t.appendChild(e),t.appendChild(n),n.classList.add("tab-content"),i[0].setAttribute("selected",""),n.appendChild(i[0].content),t}function Oe(i,e){const t=document.createElement("div");return t.role="tab",t.tabIndex=0,t.innerText=i,t.content=e,e.tagName=="PRE"&&t.classList.add("code"),t}function Re(i,e){const t=document.createElement(i);return typeof e=="string"?t.innerHTML=e:e.forEach(n=>{t.appendChild(n)}),t}async function Bl(i,e,t){var n,s,o;const r=e.mainContent,a=Re("div",r);a.id=`example-preview-${t}`;const l=typeof e.css=="string"||(n=e.css)==null?void 0:n.label,c=typeof e.css=="string"?e.css:(s=e.css)==null?void 0:s.content,u=Ul(Oe("Preview",a),Oe("HTML",st("html",r)),...c?[Oe(l??"CSS",st("css",c))]:[],...e.initializer&&e.initializer.content?[Oe(e.initializer.label??"TS",st("typescript",e.initializer.content))]:[],...(e.additionalSources||[]).map(f=>Oe(f.label,st(f.language,f.content))));e.description&&i.appendChild(Re("div",e.description));const p=Re("div",[u]);p.classList.add("example"),i.appendChild(p),c&&Fl(`#${a.id}`,c),(o=e.initializer)!=null&&o.initialize&&await e.initializer.initialize(a)}function st(i,e){let t=e.split(/\r?\n/).map(n=>{const s=n.indexOf("///");if(s>-1){const o=n.substring(s+3).trimStart();return o?n.replace(/^(\s*)([^\s].*)$/,`$1${o}`):void 0}return n}).filter(n=>typeof n<"u").join(`
475
- `).trim();return i&&i!="raw"&&(t=St.highlight(t,{language:i}).value),Re("pre",[Re("code",t)])}function Fl(i,e){const t=document.createElement("style");t.innerHTML=k().use(La({prefix:i})).process(e).css,document.head.appendChild(t)}async function Hl(i,e=document.body){const t=Wl(e);let n=0;Object.keys(i).forEach(async s=>{const o=document.createElement("div");o.className="example-container",t.appendChild(o);const r=i[s].default;Bl(o,r,n++)})}function Vl(i){const e=document.createElement("div");e.id="examples-container";const t=i.querySelector("#examples");return t?t.after(e):i.appendChild(e),e}function Wl(i){return i.children?Vl(i):i}const ql=`<h1 id="@cas-smartdesign/lit-input">@cas-smartdesign/lit-input</h1>
494
+ `)&&(l=`\r
495
+ `),this.css+=l+"/*# sourceMappingURL="+o+" */"}applyPrevMaps(){for(let o of this.previous()){let l=this.toUrl(this.path(o.file)),p=o.root||i(o.file),m;this.mapOpts.sourcesContent===!1?(m=new t(o.text),m.sourcesContent&&(m.sourcesContent=null)):m=o.consumer(),this.map.applySourceMap(m,l,this.toUrl(this.path(p)))}}clearAnnotation(){if(this.mapOpts.annotation!==!1)if(this.root){let o;for(let l=this.root.nodes.length-1;l>=0;l--)o=this.root.nodes[l],o.type==="comment"&&o.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(l)}else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}generate(){if(this.clearAnnotation(),d&&b&&this.isMap())return this.generateMap();{let o="";return this.stringify(this.root,l=>{o+=l}),[o]}}generateMap(){if(this.root)this.generateString();else if(this.previous().length===1){let o=this.previous()[0].consumer();o.file=this.outputFile(),this.map=u.fromSourceMap(o,{ignoreInvalidMapping:!0})}else this.map=new u({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>"});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new u({file:this.outputFile(),ignoreInvalidMapping:!0});let o=1,l=1,p="<no source>",m={generated:{column:0,line:0},original:{column:0,line:0},source:""},g,_;this.stringify(this.root,(E,w,v)=>{if(this.css+=E,w&&v!=="end"&&(m.generated.line=o,m.generated.column=l-1,w.source&&w.source.start?(m.source=this.sourcePath(w),m.original.line=w.source.start.line,m.original.column=w.source.start.column-1,this.map.addMapping(m)):(m.source=p,m.original.line=1,m.original.column=0,this.map.addMapping(m))),_=E.match(/\n/g),_?(o+=_.length,g=E.lastIndexOf(`
496
+ `),l=E.length-g):l+=E.length,w&&v!=="start"){let y=w.parent||{raws:{}};(!(w.type==="decl"||w.type==="atrule"&&!w.nodes)||w!==y.last||y.raws.semicolon)&&(w.source&&w.source.end?(m.source=this.sourcePath(w),m.original.line=w.source.end.line,m.original.column=w.source.end.column-1,m.generated.line=o,m.generated.column=l-2,this.map.addMapping(m)):(m.source=p,m.original.line=1,m.original.column=0,m.generated.line=o,m.generated.column=l-1,this.map.addMapping(m)))}})}isAnnotation(){return this.isInline()?!0:typeof this.mapOpts.annotation<"u"?this.mapOpts.annotation:this.previous().length?this.previous().some(o=>o.annotation):!0}isInline(){if(typeof this.mapOpts.inline<"u")return this.mapOpts.inline;let o=this.mapOpts.annotation;return typeof o<"u"&&o!==!0?!1:this.previous().length?this.previous().some(l=>l.inline):!0}isMap(){return typeof this.opts.map<"u"?!!this.opts.map:this.previous().length>0}isSourcesContent(){return typeof this.mapOpts.sourcesContent<"u"?this.mapOpts.sourcesContent:this.previous().length?this.previous().some(o=>o.withContent()):!0}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(o){if(this.mapOpts.absolute||o.charCodeAt(0)===60||/^\w+:\/\//.test(o))return o;let l=this.memoizedPaths.get(o);if(l)return l;let p=this.opts.to?i(this.opts.to):".";typeof this.mapOpts.annotation=="string"&&(p=i(n(p,this.mapOpts.annotation)));let m=e(p,o);return this.memoizedPaths.set(o,m),m}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(o=>{if(o.source&&o.source.input.map){let l=o.source.input.map;this.previousMaps.includes(l)||this.previousMaps.push(l)}});else{let o=new f(this.originalCSS,this.opts);o.map&&this.previousMaps.push(o.map)}return this.previousMaps}setSourcesContent(){let o={};if(this.root)this.root.walk(l=>{if(l.source){let p=l.source.input.from;if(p&&!o[p]){o[p]=!0;let m=this.usesFileUrls?this.toFileUrl(p):this.toUrl(this.path(p));this.map.setSourceContent(m,l.source.input.css)}}});else if(this.css){let l=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(l,this.css)}}sourcePath(o){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(o.source.input.from):this.toUrl(this.path(o.source.input.from))}toBase64(o){return Buffer?Buffer.from(o).toString("base64"):window.btoa(unescape(encodeURIComponent(o)))}toFileUrl(o){let l=this.memoizedFileURLs.get(o);if(l)return l;if(a){let p=a(o).toString();return this.memoizedFileURLs.set(o,p),p}else throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(o){let l=this.memoizedURLs.get(o);if(l)return l;r==="\\"&&(o=o.replace(/\\/g,"/"));let p=encodeURI(o).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(o,p),p}}return tn=s,tn}var nn,Ei;function eo(){if(Ei)return nn;Ei=1;const i=39,e=34,n=92,r=47,t=10,u=32,a=12,f=9,b=13,d=91,s=93,c=40,o=41,l=123,p=125,m=59,g=42,_=58,E=64,w=/[\t\n\f\r "#'()/;[\\\]{}]/g,v=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,y=/.[\r\n"'(/\\]/,S=/[\da-f]/i;return nn=function(I,U={}){let P=I.css.valueOf(),K=U.ignoreErrors,F,Ae,he,R,Le,W,te,le,ce,ve,ke=P.length,j=0,Fe=[],Ie=[];function kt(){return j}function He(we){throw I.error("Unclosed "+we,j)}function $t(){return Ie.length===0&&j>=ke}function Te(we){if(Ie.length)return Ie.pop();if(j>=ke)return;let We=we?we.ignoreUnclosed:!1;switch(F=P.charCodeAt(j),F){case t:case u:case f:case b:case a:{R=j;do R+=1,F=P.charCodeAt(R);while(F===u||F===t||F===f||F===b||F===a);W=["space",P.slice(j,R)],j=R-1;break}case d:case s:case l:case p:case _:case m:case o:{let it=String.fromCharCode(F);W=[it,it,j];break}case c:{if(ve=Fe.length?Fe.pop()[1]:"",ce=P.charCodeAt(j+1),ve==="url"&&ce!==i&&ce!==e&&ce!==u&&ce!==t&&ce!==f&&ce!==a&&ce!==b){R=j;do{if(te=!1,R=P.indexOf(")",R+1),R===-1)if(K||We){R=j;break}else He("bracket");for(le=R;P.charCodeAt(le-1)===n;)le-=1,te=!te}while(te);W=["brackets",P.slice(j,R+1),j,R],j=R}else R=P.indexOf(")",j+1),Ae=P.slice(j,R+1),R===-1||y.test(Ae)?W=["(","(",j]:(W=["brackets",Ae,j,R],j=R);break}case i:case e:{Le=F===i?"'":'"',R=j;do{if(te=!1,R=P.indexOf(Le,R+1),R===-1)if(K||We){R=j+1;break}else He("string");for(le=R;P.charCodeAt(le-1)===n;)le-=1,te=!te}while(te);W=["string",P.slice(j,R+1),j,R],j=R;break}case E:{w.lastIndex=j+1,w.test(P),w.lastIndex===0?R=P.length-1:R=w.lastIndex-2,W=["at-word",P.slice(j,R+1),j,R],j=R;break}case n:{for(R=j,he=!0;P.charCodeAt(R+1)===n;)R+=1,he=!he;if(F=P.charCodeAt(R+1),he&&F!==r&&F!==u&&F!==t&&F!==f&&F!==b&&F!==a&&(R+=1,S.test(P.charAt(R)))){for(;S.test(P.charAt(R+1));)R+=1;P.charCodeAt(R+1)===u&&(R+=1)}W=["word",P.slice(j,R+1),j,R],j=R;break}default:{F===r&&P.charCodeAt(j+1)===g?(R=P.indexOf("*/",j+2)+1,R===0&&(K||We?R=P.length:He("comment")),W=["comment",P.slice(j,R+1),j,R],j=R):(v.lastIndex=j+1,v.test(P),v.lastIndex===0?R=P.length-1:R=v.lastIndex-2,W=["word",P.slice(j,R+1),j,R],Fe.push(W),j=R);break}}return j++,W}function Ot(we){Ie.push(we)}return{back:Ot,endOfFile:$t,nextToken:Te,position:kt}},nn}var sn,Si;function to(){if(Si)return sn;Si=1;let i=An(),e=_t(),n=Et(),r=nt(),t=$n(),u=eo();const a={empty:!0,space:!0};function f(d){for(let s=d.length-1;s>=0;s--){let c=d[s],o=c[3]||c[2];if(o)return o}}class b{constructor(s){this.input=s,this.root=new r,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:s,start:{column:1,line:1,offset:0}}}atrule(s){let c=new i;c.name=s[1].slice(1),c.name===""&&this.unnamedAtrule(c,s),this.init(c,s[2]);let o,l,p,m=!1,g=!1,_=[],E=[];for(;!this.tokenizer.endOfFile();){if(s=this.tokenizer.nextToken(),o=s[0],o==="("||o==="["?E.push(o==="("?")":"]"):o==="{"&&E.length>0?E.push("}"):o===E[E.length-1]&&E.pop(),E.length===0)if(o===";"){c.source.end=this.getPosition(s[2]),c.source.end.offset++,this.semicolon=!0;break}else if(o==="{"){g=!0;break}else if(o==="}"){if(_.length>0){for(p=_.length-1,l=_[p];l&&l[0]==="space";)l=_[--p];l&&(c.source.end=this.getPosition(l[3]||l[2]),c.source.end.offset++)}this.end(s);break}else _.push(s);else _.push(s);if(this.tokenizer.endOfFile()){m=!0;break}}c.raws.between=this.spacesAndCommentsFromEnd(_),_.length?(c.raws.afterName=this.spacesAndCommentsFromStart(_),this.raw(c,"params",_),m&&(s=_[_.length-1],c.source.end=this.getPosition(s[3]||s[2]),c.source.end.offset++,this.spaces=c.raws.between,c.raws.between="")):(c.raws.afterName="",c.params=""),g&&(c.nodes=[],this.current=c)}checkMissedSemicolon(s){let c=this.colon(s);if(c===!1)return;let o=0,l;for(let p=c-1;p>=0&&(l=s[p],!(l[0]!=="space"&&(o+=1,o===2)));p--);throw this.input.error("Missed semicolon",l[0]==="word"?l[3]+1:l[2])}colon(s){let c=0,o,l,p;for(let[m,g]of s.entries()){if(l=g,p=l[0],p==="("&&(c+=1),p===")"&&(c-=1),c===0&&p===":")if(!o)this.doubleColon(l);else{if(o[0]==="word"&&o[1]==="progid")continue;return m}o=l}return!1}comment(s){let c=new e;this.init(c,s[2]),c.source.end=this.getPosition(s[3]||s[2]),c.source.end.offset++;let o=s[1].slice(2,-2);if(/^\s*$/.test(o))c.text="",c.raws.left=o,c.raws.right="";else{let l=o.match(/^(\s*)([^]*\S)(\s*)$/);c.text=l[2],c.raws.left=l[1],c.raws.right=l[3]}}createTokenizer(){this.tokenizer=u(this.input)}decl(s,c){let o=new n;this.init(o,s[0][2]);let l=s[s.length-1];for(l[0]===";"&&(this.semicolon=!0,s.pop()),o.source.end=this.getPosition(l[3]||l[2]||f(s)),o.source.end.offset++;s[0][0]!=="word";)s.length===1&&this.unknownWord(s),o.raws.before+=s.shift()[1];for(o.source.start=this.getPosition(s[0][2]),o.prop="";s.length;){let E=s[0][0];if(E===":"||E==="space"||E==="comment")break;o.prop+=s.shift()[1]}o.raws.between="";let p;for(;s.length;)if(p=s.shift(),p[0]===":"){o.raws.between+=p[1];break}else p[0]==="word"&&/\w/.test(p[1])&&this.unknownWord([p]),o.raws.between+=p[1];(o.prop[0]==="_"||o.prop[0]==="*")&&(o.raws.before+=o.prop[0],o.prop=o.prop.slice(1));let m=[],g;for(;s.length&&(g=s[0][0],!(g!=="space"&&g!=="comment"));)m.push(s.shift());this.precheckMissedSemicolon(s);for(let E=s.length-1;E>=0;E--){if(p=s[E],p[1].toLowerCase()==="!important"){o.important=!0;let w=this.stringFrom(s,E);w=this.spacesFromEnd(s)+w,w!==" !important"&&(o.raws.important=w);break}else if(p[1].toLowerCase()==="important"){let w=s.slice(0),v="";for(let y=E;y>0;y--){let S=w[y][0];if(v.trim().startsWith("!")&&S!=="space")break;v=w.pop()[1]+v}v.trim().startsWith("!")&&(o.important=!0,o.raws.important=v,s=w)}if(p[0]!=="space"&&p[0]!=="comment")break}s.some(E=>E[0]!=="space"&&E[0]!=="comment")&&(o.raws.between+=m.map(E=>E[1]).join(""),m=[]),this.raw(o,"value",m.concat(s),c),o.value.includes(":")&&!c&&this.checkMissedSemicolon(s)}doubleColon(s){throw this.input.error("Double colon",{offset:s[2]},{offset:s[2]+s[1].length})}emptyRule(s){let c=new t;this.init(c,s[2]),c.selector="",c.raws.between="",this.current=c}end(s){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(s[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(s)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(s){if(this.spaces+=s[1],this.current.nodes){let c=this.current.nodes[this.current.nodes.length-1];c&&c.type==="rule"&&!c.raws.ownSemicolon&&(c.raws.ownSemicolon=this.spaces,this.spaces="",c.source.end=this.getPosition(s[2]),c.source.end.offset+=c.raws.ownSemicolon.length)}}getPosition(s){let c=this.input.fromOffset(s);return{column:c.col,line:c.line,offset:s}}init(s,c){this.current.push(s),s.source={input:this.input,start:this.getPosition(c)},s.raws.before=this.spaces,this.spaces="",s.type!=="comment"&&(this.semicolon=!1)}other(s){let c=!1,o=null,l=!1,p=null,m=[],g=s[1].startsWith("--"),_=[],E=s;for(;E;){if(o=E[0],_.push(E),o==="("||o==="[")p||(p=E),m.push(o==="("?")":"]");else if(g&&l&&o==="{")p||(p=E),m.push("}");else if(m.length===0)if(o===";")if(l){this.decl(_,g);return}else break;else if(o==="{"){this.rule(_);return}else if(o==="}"){this.tokenizer.back(_.pop()),c=!0;break}else o===":"&&(l=!0);else o===m[m.length-1]&&(m.pop(),m.length===0&&(p=null));E=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(c=!0),m.length>0&&this.unclosedBracket(p),c&&l){if(!g)for(;_.length&&(E=_[_.length-1][0],!(E!=="space"&&E!=="comment"));)this.tokenizer.back(_.pop());this.decl(_,g)}else this.unknownWord(_)}parse(){let s;for(;!this.tokenizer.endOfFile();)switch(s=this.tokenizer.nextToken(),s[0]){case"space":this.spaces+=s[1];break;case";":this.freeSemicolon(s);break;case"}":this.end(s);break;case"comment":this.comment(s);break;case"at-word":this.atrule(s);break;case"{":this.emptyRule(s);break;default:this.other(s);break}this.endFile()}precheckMissedSemicolon(){}raw(s,c,o,l){let p,m,g=o.length,_="",E=!0,w,v;for(let y=0;y<g;y+=1)p=o[y],m=p[0],m==="space"&&y===g-1&&!l?E=!1:m==="comment"?(v=o[y-1]?o[y-1][0]:"empty",w=o[y+1]?o[y+1][0]:"empty",!a[v]&&!a[w]?_.slice(-1)===","?E=!1:_+=p[1]:E=!1):_+=p[1];if(!E){let y=o.reduce((S,O)=>S+O[1],"");s.raws[c]={raw:y,value:_}}s[c]=_}rule(s){s.pop();let c=new t;this.init(c,s[0][2]),c.raws.between=this.spacesAndCommentsFromEnd(s),this.raw(c,"selector",s),this.current=c}spacesAndCommentsFromEnd(s){let c,o="";for(;s.length&&(c=s[s.length-1][0],!(c!=="space"&&c!=="comment"));)o=s.pop()[1]+o;return o}spacesAndCommentsFromStart(s){let c,o="";for(;s.length&&(c=s[0][0],!(c!=="space"&&c!=="comment"));)o+=s.shift()[1];return o}spacesFromEnd(s){let c,o="";for(;s.length&&(c=s[s.length-1][0],c==="space");)o=s.pop()[1]+o;return o}stringFrom(s,c){let o="";for(let l=c;l<s.length;l++)o+=s[l][1];return s.splice(c,s.length-c),o}unclosedBlock(){let s=this.current.source.start;throw this.input.error("Unclosed block",s.line,s.column)}unclosedBracket(s){throw this.input.error("Unclosed bracket",{offset:s[2]},{offset:s[2]+1})}unexpectedClose(s){throw this.input.error("Unexpected }",{offset:s[2]},{offset:s[2]+1})}unknownWord(s){throw this.input.error("Unknown word "+s[0][1],{offset:s[0][2]},{offset:s[0][2]+s[0][1].length})}unnamedAtrule(s,c){throw this.input.error("At-rule without name",{offset:c[2]},{offset:c[2]+c[1].length})}}return sn=b,sn}var rn,Ai;function On(){if(Ai)return rn;Ai=1;let i=Pe(),e=St(),n=to();function r(t,u){let a=new e(t,u),f=new n(a);try{f.parse()}catch(b){throw b}return f.root}return rn=r,r.default=r,i.registerParse(r),rn}var on,ki;function Wi(){if(ki)return on;ki=1;class i{constructor(n,r={}){if(this.type="warning",this.text=n,r.node&&r.node.source){let t=r.node.rangeBy(r);this.line=t.start.line,this.column=t.start.column,this.endLine=t.end.line,this.endColumn=t.end.column}for(let t in r)this[t]=r[t]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}return on=i,i.default=i,on}var an,$i;function Cn(){if($i)return an;$i=1;let i=Wi();class e{get content(){return this.css}constructor(r,t,u){this.processor=r,this.messages=[],this.root=t,this.opts=u,this.css="",this.map=void 0}toString(){return this.css}warn(r,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let u=new i(r,t);return this.messages.push(u),u}warnings(){return this.messages.filter(r=>r.type==="warning")}}return an=e,e.default=e,an}var ln,Oi;function Vi(){if(Oi)return ln;Oi=1;let i=Pe(),e=kn(),n=Hi(),r=On(),t=Cn(),u=nt(),a=wt(),{isClean:f,my:b}=Sn();const d={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},s={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},c={Once:!0,postcssPlugin:!0,prepare:!0},o=0;function l(w){return typeof w=="object"&&typeof w.then=="function"}function p(w){let v=!1,y=d[w.type];return w.type==="decl"?v=w.prop.toLowerCase():w.type==="atrule"&&(v=w.name.toLowerCase()),v&&w.append?[y,y+"-"+v,o,y+"Exit",y+"Exit-"+v]:v?[y,y+"-"+v,y+"Exit",y+"Exit-"+v]:w.append?[y,o,y+"Exit"]:[y,y+"Exit"]}function m(w){let v;return w.type==="document"?v=["Document",o,"DocumentExit"]:w.type==="root"?v=["Root",o,"RootExit"]:v=p(w),{eventIndex:0,events:v,iterator:0,node:w,visitorIndex:0,visitors:[]}}function g(w){return w[f]=!1,w.nodes&&w.nodes.forEach(v=>g(v)),w}let _={};class E{get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}constructor(v,y,S){this.stringified=!1,this.processed=!1;let O;if(typeof y=="object"&&y!==null&&(y.type==="root"||y.type==="document"))O=g(y);else if(y instanceof E||y instanceof t)O=g(y.root),y.map&&(typeof S.map>"u"&&(S.map={}),S.map.inline||(S.map.inline=!1),S.map.prev=y.map);else{let I=r;S.syntax&&(I=S.syntax.parse),S.parser&&(I=S.parser),I.parse&&(I=I.parse);try{O=I(y,S)}catch(U){this.processed=!0,this.error=U}O&&!O[b]&&i.rebuild(O)}this.result=new t(v,O,S),this.helpers={..._,postcss:_,result:this.result},this.plugins=this.processor.plugins.map(I=>typeof I=="object"&&I.prepare?{...I,...I.prepare(this.result)}:I)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(v){return this.async().catch(v)}finally(v){return this.async().then(v,v)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(v,y){let S=this.result.lastPlugin;try{y&&y.addToError(v),this.error=v,v.name==="CssSyntaxError"&&!v.plugin?(v.plugin=S.postcssPlugin,v.setMessage()):S.postcssVersion}catch(O){console&&console.error&&console.error(O)}return v}prepareVisitors(){this.listeners={};let v=(y,S,O)=>{this.listeners[S]||(this.listeners[S]=[]),this.listeners[S].push([y,O])};for(let y of this.plugins)if(typeof y=="object")for(let S in y){if(!s[S]&&/^[A-Z]/.test(S))throw new Error(`Unknown event ${S} in ${y.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!c[S])if(typeof y[S]=="object")for(let O in y[S])O==="*"?v(y,S,y[S][O]):v(y,S+"-"+O.toLowerCase(),y[S][O]);else typeof y[S]=="function"&&v(y,S,y[S])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let v=0;v<this.plugins.length;v++){let y=this.plugins[v],S=this.runOnRoot(y);if(l(S))try{await S}catch(O){throw this.handleError(O)}}if(this.prepareVisitors(),this.hasListener){let v=this.result.root;for(;!v[f];){v[f]=!0;let y=[m(v)];for(;y.length>0;){let S=this.visitTick(y);if(l(S))try{await S}catch(O){let I=y[y.length-1].node;throw this.handleError(O,I)}}}if(this.listeners.OnceExit)for(let[y,S]of this.listeners.OnceExit){this.result.lastPlugin=y;try{if(v.type==="document"){let O=v.nodes.map(I=>S(I,this.helpers));await Promise.all(O)}else await S(v,this.helpers)}catch(O){throw this.handleError(O)}}}return this.processed=!0,this.stringify()}runOnRoot(v){this.result.lastPlugin=v;try{if(typeof v=="object"&&v.Once){if(this.result.root.type==="document"){let y=this.result.root.nodes.map(S=>v.Once(S,this.helpers));return l(y[0])?Promise.all(y):y}return v.Once(this.result.root,this.helpers)}else if(typeof v=="function")return v(this.result.root,this.result)}catch(y){throw this.handleError(y)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let v=this.result.opts,y=a;v.syntax&&(y=v.syntax.stringify),v.stringifier&&(y=v.stringifier),y.stringify&&(y=y.stringify);let O=new n(y,this.result.root,this.result.opts).generate();return this.result.css=O[0],this.result.map=O[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let v of this.plugins){let y=this.runOnRoot(v);if(l(y))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let v=this.result.root;for(;!v[f];)v[f]=!0,this.walkSync(v);if(this.listeners.OnceExit)if(v.type==="document")for(let y of v.nodes)this.visitSync(this.listeners.OnceExit,y);else this.visitSync(this.listeners.OnceExit,v)}return this.result}then(v,y){return this.async().then(v,y)}toString(){return this.css}visitSync(v,y){for(let[S,O]of v){this.result.lastPlugin=S;let I;try{I=O(y,this.helpers)}catch(U){throw this.handleError(U,y.proxyOf)}if(y.type!=="root"&&y.type!=="document"&&!y.parent)return!0;if(l(I))throw this.getAsyncError()}}visitTick(v){let y=v[v.length-1],{node:S,visitors:O}=y;if(S.type!=="root"&&S.type!=="document"&&!S.parent){v.pop();return}if(O.length>0&&y.visitorIndex<O.length){let[U,P]=O[y.visitorIndex];y.visitorIndex+=1,y.visitorIndex===O.length&&(y.visitors=[],y.visitorIndex=0),this.result.lastPlugin=U;try{return P(S.toProxy(),this.helpers)}catch(K){throw this.handleError(K,S)}}if(y.iterator!==0){let U=y.iterator,P;for(;P=S.nodes[S.indexes[U]];)if(S.indexes[U]+=1,!P[f]){P[f]=!0,v.push(m(P));return}y.iterator=0,delete S.indexes[U]}let I=y.events;for(;y.eventIndex<I.length;){let U=I[y.eventIndex];if(y.eventIndex+=1,U===o){S.nodes&&S.nodes.length&&(S[f]=!0,y.iterator=S.getIterator());return}else if(this.listeners[U]){y.visitors=this.listeners[U];return}}v.pop()}walkSync(v){v[f]=!0;let y=p(v);for(let S of y)if(S===o)v.nodes&&v.each(O=>{O[f]||this.walkSync(O)});else{let O=this.listeners[S];if(O&&this.visitSync(O,v.toProxy()))return}}warnings(){return this.sync().warnings()}}return E.registerPostcss=w=>{_=w},ln=E,E.default=E,u.registerLazyResult(E),e.registerLazyResult(E),ln}var cn,Ci;function no(){if(Ci)return cn;Ci=1;let i=Hi(),e=On();const n=Cn();let r=wt();class t{get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let a,f=e;try{a=f(this._css,this._opts)}catch(b){this.error=b}if(this.error)throw this.error;return this._root=a,a}get[Symbol.toStringTag](){return"NoWorkResult"}constructor(a,f,b){f=f.toString(),this.stringified=!1,this._processor=a,this._css=f,this._opts=b,this._map=void 0;let d,s=r;this.result=new n(this._processor,d,this._opts),this.result.css=f;let c=this;Object.defineProperty(this.result,"root",{get(){return c.root}});let o=new i(s,d,this._opts,f);if(o.isMap()){let[l,p]=o.generate();l&&(this.result.css=l),p&&(this.result.map=p)}else o.clearAnnotation(),this.result.css=o.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(a){return this.async().catch(a)}finally(a){return this.async().then(a,a)}sync(){if(this.error)throw this.error;return this.result}then(a,f){return this.async().then(a,f)}toString(){return this._css}warnings(){return[]}}return cn=t,t.default=t,cn}var un,Ri;function io(){if(Ri)return un;Ri=1;let i=kn(),e=Vi(),n=no(),r=nt();class t{constructor(a=[]){this.version="8.5.6",this.plugins=this.normalize(a)}normalize(a){let f=[];for(let b of a)if(b.postcss===!0?b=b():b.postcss&&(b=b.postcss),typeof b=="object"&&Array.isArray(b.plugins))f=f.concat(b.plugins);else if(typeof b=="object"&&b.postcssPlugin)f.push(b);else if(typeof b=="function")f.push(b);else if(!(typeof b=="object"&&(b.parse||b.stringify)))throw new Error(b+" is not a PostCSS plugin");return f}process(a,f={}){return!this.plugins.length&&!f.parser&&!f.stringifier&&!f.syntax?new n(this,a,f):new e(this,a,f)}use(a){return this.plugins=this.plugins.concat(this.normalize([a])),this}}return un=t,t.default=t,r.registerProcessor(t),i.registerProcessor(t),un}var dn,Mi;function so(){if(Mi)return dn;Mi=1;var i={};let e=An(),n=_t(),r=Pe(),t=En(),u=Et(),a=kn(),f=Yr(),b=St(),d=Vi(),s=Fi(),c=xt(),o=On(),l=io(),p=Cn(),m=nt(),g=$n(),_=wt(),E=Wi();function w(...v){return v.length===1&&Array.isArray(v[0])&&(v=v[0]),new l(v)}return w.plugin=function(y,S){let O=!1;function I(...P){console&&console.warn&&!O&&(O=!0,console.warn(y+`: postcss.plugin was deprecated. Migration guide:
497
+ https://evilmartians.com/chronicles/postcss-8-plugin-migration`),i.LANG&&i.LANG.startsWith("cn")&&console.warn(y+`: 里面 postcss.plugin 被弃用. 迁移指南:
498
+ https://www.w3ctech.com/topic/2226`));let K=S(...P);return K.postcssPlugin=y,K.postcssVersion=new l().version,K}let U;return Object.defineProperty(I,"postcss",{get(){return U||(U=I()),U}}),I.process=function(P,K,F){return w([I(F)]).process(P,K)},I},w.stringify=_,w.parse=o,w.fromJSON=f,w.list=s,w.comment=v=>new n(v),w.atRule=v=>new e(v),w.decl=v=>new u(v),w.rule=v=>new g(v),w.root=v=>new m(v),w.document=v=>new a(v),w.CssSyntaxError=t,w.Declaration=u,w.Container=r,w.Processor=l,w.Document=a,w.Comment=n,w.Warning=E,w.AtRule=e,w.Result=p,w.Input=b,w.Rule=g,w.Root=m,w.Node=c,d.registerPostcss(w),dn=w,w.default=w,dn}var ro=so();const J=Ui(ro);J.stringify;J.fromJSON;J.plugin;J.parse;J.list;J.document;J.comment;J.atRule;J.rule;J.decl;J.root;J.CssSyntaxError;J.Declaration;J.Container;J.Processor;J.Document;J.Comment;J.Warning;J.AtRule;J.Result;J.Input;J.Rule;J.Root;J.Node;var hn,Ni;function oo(){if(Ni)return hn;Ni=1;const i=(r={})=>{const t=r.prefix,u=/\s+$/.test(t)?t:`${t} `,a=r.ignoreFiles?[].concat(r.ignoreFiles):[],f=r.includeFiles?[].concat(r.includeFiles):[];return{postcssPlugin:"postcss-prefix-selector",prepare(b){const d=b.root,s=d.source.input.file;if(!(a.length&&s&&e(s,a))&&!(f.length&&s&&!e(s,f)))return{Rule(c,{result:o}){const l=["keyframes","-webkit-keyframes","-moz-keyframes","-o-keyframes","-ms-keyframes"];c.parent&&l.includes(c.parent.name)||(c.selectors=c.selectors.map(p=>r.exclude&&n(p,r.exclude)?p:r.transform?r.transform(t,p,u+p,d.source.input.file,c):[":root","body","html"].some(m=>p.startsWith(m))?r.skipGlobalSelectors?p:p.replace(/(html\s+body|:root\s+body|html|:root|body)/gm,t):u+p))}}}}};function e(r,t){return t.some(u=>u instanceof RegExp?u.test(r):r.includes(u))}function n(r,t){return t.some(u=>u instanceof RegExp?u.test(r):r===u)}return i.postcss=!0,hn=i,hn}var ao=oo();const lo=Ui(ao),co="code{white-space:pre}.example{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;gap:16px}.example>*{flex:1 1 500px}.example .tab-control{overflow:hidden}.example div[role=tab]{cursor:pointer;padding:8px 16px;display:inline-block;font-size:16px;border-bottom:2px solid transparent;background-clip:padding-box;-webkit-user-select:none;user-select:none}.example div[role=tab]:hover{background-color:#1467ba14}.example div[role=tab][selected]{background-color:#1467ba21;border-bottom:2px solid #1467ba}.tab-content{margin:16px 0}.tab-content>pre{padding-top:0}.tab-content.code{max-height:500px;overflow:auto}.tab-content.code pre{margin:0}",uo="pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#24292e;background:#fff}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#d73a49}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#6f42c1}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-variable,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id{color:#005cc5}.hljs-regexp,.hljs-string,.hljs-meta .hljs-string{color:#032f62}.hljs-built_in,.hljs-symbol{color:#e36209}.hljs-comment,.hljs-code,.hljs-formula{color:#6a737d}.hljs-name,.hljs-quote,.hljs-selector-tag,.hljs-selector-pseudo{color:#22863a}.hljs-subst{color:#24292e}.hljs-section{color:#005cc5;font-weight:700}.hljs-bullet{color:#735c0f}.hljs-emphasis{color:#24292e;font-style:italic}.hljs-strong{color:#24292e;font-weight:700}.hljs-addition{color:#22863a;background-color:#f0fff4}.hljs-deletion{color:#b31d28;background-color:#ffeef0}";function ho(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var pn,Pi;function po(){if(Pi)return pn;Pi=1;function i(h){return h instanceof Map?h.clear=h.delete=h.set=function(){throw new Error("map is read-only")}:h instanceof Set&&(h.add=h.clear=h.delete=function(){throw new Error("set is read-only")}),Object.freeze(h),Object.getOwnPropertyNames(h).forEach(x=>{const $=h[x],z=typeof $;(z==="object"||z==="function")&&!Object.isFrozen($)&&i($)}),h}class e{constructor(x){x.data===void 0&&(x.data={}),this.data=x.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function n(h){return h.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")}function r(h,...x){const $=Object.create(null);for(const z in h)$[z]=h[z];return x.forEach(function(z){for(const Y in z)$[Y]=z[Y]}),$}const t="</span>",u=h=>!!h.scope,a=(h,{prefix:x})=>{if(h.startsWith("language:"))return h.replace("language:","language-");if(h.includes(".")){const $=h.split(".");return[`${x}${$.shift()}`,...$.map((z,Y)=>`${z}${"_".repeat(Y+1)}`)].join(" ")}return`${x}${h}`};class f{constructor(x,$){this.buffer="",this.classPrefix=$.classPrefix,x.walk(this)}addText(x){this.buffer+=n(x)}openNode(x){if(!u(x))return;const $=a(x.scope,{prefix:this.classPrefix});this.span($)}closeNode(x){u(x)&&(this.buffer+=t)}value(){return this.buffer}span(x){this.buffer+=`<span class="${x}">`}}const b=(h={})=>{const x={children:[]};return Object.assign(x,h),x};class d{constructor(){this.rootNode=b(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(x){this.top.children.push(x)}openNode(x){const $=b({scope:x});this.add($),this.stack.push($)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(x){return this.constructor._walk(x,this.rootNode)}static _walk(x,$){return typeof $=="string"?x.addText($):$.children&&(x.openNode($),$.children.forEach(z=>this._walk(x,z)),x.closeNode($)),x}static _collapse(x){typeof x!="string"&&x.children&&(x.children.every($=>typeof $=="string")?x.children=[x.children.join("")]:x.children.forEach($=>{d._collapse($)}))}}class s extends d{constructor(x){super(),this.options=x}addText(x){x!==""&&this.add(x)}startScope(x){this.openNode(x)}endScope(){this.closeNode()}__addSublanguage(x,$){const z=x.root;$&&(z.scope=`language:${$}`),this.add(z)}toHTML(){return new f(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}}function c(h){return h?typeof h=="string"?h:h.source:null}function o(h){return m("(?=",h,")")}function l(h){return m("(?:",h,")*")}function p(h){return m("(?:",h,")?")}function m(...h){return h.map(x=>c(x)).join("")}function g(h){const x=h[h.length-1];return typeof x=="object"&&x.constructor===Object?(h.splice(h.length-1,1),x):{}}function _(...h){return"("+(g(h).capture?"":"?:")+h.map(x=>c(x)).join("|")+")"}function E(h){return new RegExp(h.toString()+"|").exec("").length-1}function w(h,x){const $=h&&h.exec(x);return $&&$.index===0}const v=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function y(h,{joinWith:x}){let $=0;return h.map(z=>{$+=1;const Y=$;let ee=c(z),M="";for(;ee.length>0;){const C=v.exec(ee);if(!C){M+=ee;break}M+=ee.substring(0,C.index),ee=ee.substring(C.index+C[0].length),C[0][0]==="\\"&&C[1]?M+="\\"+String(Number(C[1])+Y):(M+=C[0],C[0]==="("&&$++)}return M}).map(z=>`(${z})`).join(x)}const S=/\b\B/,O="[a-zA-Z]\\w*",I="[a-zA-Z_]\\w*",U="\\b\\d+(\\.\\d+)?",P="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",K="\\b(0b[01]+)",F="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",Ae=(h={})=>{const x=/^#![ ]*\//;return h.binary&&(h.begin=m(x,/.*\b/,h.binary,/\b.*/)),r({scope:"meta",begin:x,end:/$/,relevance:0,"on:begin":($,z)=>{$.index!==0&&z.ignoreMatch()}},h)},he={begin:"\\\\[\\s\\S]",relevance:0},R={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[he]},Le={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[he]},W={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},te=function(h,x,$={}){const z=r({scope:"comment",begin:h,end:x,contains:[]},$);z.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const Y=_("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return z.contains.push({begin:m(/[ ]+/,"(",Y,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),z},le=te("//","$"),ce=te("/\\*","\\*/"),ve=te("#","$"),ke={scope:"number",begin:U,relevance:0},j={scope:"number",begin:P,relevance:0},Fe={scope:"number",begin:K,relevance:0},Ie={scope:"regexp",begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[he,{begin:/\[/,end:/\]/,relevance:0,contains:[he]}]},kt={scope:"title",begin:O,relevance:0},He={scope:"title",begin:I,relevance:0},$t={begin:"\\.\\s*"+I,relevance:0};var Te=Object.freeze({__proto__:null,APOS_STRING_MODE:R,BACKSLASH_ESCAPE:he,BINARY_NUMBER_MODE:Fe,BINARY_NUMBER_RE:K,COMMENT:te,C_BLOCK_COMMENT_MODE:ce,C_LINE_COMMENT_MODE:le,C_NUMBER_MODE:j,C_NUMBER_RE:P,END_SAME_AS_BEGIN:function(h){return Object.assign(h,{"on:begin":(x,$)=>{$.data._beginMatch=x[1]},"on:end":(x,$)=>{$.data._beginMatch!==x[1]&&$.ignoreMatch()}})},HASH_COMMENT_MODE:ve,IDENT_RE:O,MATCH_NOTHING_RE:S,METHOD_GUARD:$t,NUMBER_MODE:ke,NUMBER_RE:U,PHRASAL_WORDS_MODE:W,QUOTE_STRING_MODE:Le,REGEXP_MODE:Ie,RE_STARTERS_RE:F,SHEBANG:Ae,TITLE_MODE:kt,UNDERSCORE_IDENT_RE:I,UNDERSCORE_TITLE_MODE:He});function Ot(h,x){h.input[h.index-1]==="."&&x.ignoreMatch()}function we(h,x){h.className!==void 0&&(h.scope=h.className,delete h.className)}function We(h,x){x&&h.beginKeywords&&(h.begin="\\b("+h.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",h.__beforeBegin=Ot,h.keywords=h.keywords||h.beginKeywords,delete h.beginKeywords,h.relevance===void 0&&(h.relevance=0))}function it(h,x){Array.isArray(h.illegal)&&(h.illegal=_(...h.illegal))}function ts(h,x){if(h.match){if(h.begin||h.end)throw new Error("begin & end are not supported with match");h.begin=h.match,delete h.match}}function ns(h,x){h.relevance===void 0&&(h.relevance=1)}const is=(h,x)=>{if(!h.beforeMatch)return;if(h.starts)throw new Error("beforeMatch cannot be used with starts");const $=Object.assign({},h);Object.keys(h).forEach(z=>{delete h[z]}),h.keywords=$.keywords,h.begin=m($.beforeMatch,o($.begin)),h.starts={relevance:0,contains:[Object.assign($,{endsParent:!0})]},h.relevance=0,delete $.beforeMatch},ss=["of","and","for","in","not","or","if","then","parent","list","value"],rs="keyword";function Rn(h,x,$=rs){const z=Object.create(null);return typeof h=="string"?Y($,h.split(" ")):Array.isArray(h)?Y($,h):Object.keys(h).forEach(function(ee){Object.assign(z,Rn(h[ee],x,ee))}),z;function Y(ee,M){x&&(M=M.map(C=>C.toLowerCase())),M.forEach(function(C){const T=C.split("|");z[T[0]]=[ee,os(T[0],T[1])]})}}function os(h,x){return x?Number(x):as(h)?0:1}function as(h){return ss.includes(h.toLowerCase())}const Mn={},$e=h=>{console.error(h)},Nn=(h,...x)=>{console.log(`WARN: ${h}`,...x)},je=(h,x)=>{Mn[`${h}/${x}`]||(console.log(`Deprecated as of ${h}. ${x}`),Mn[`${h}/${x}`]=!0)},st=new Error;function Pn(h,x,{key:$}){let z=0;const Y=h[$],ee={},M={};for(let C=1;C<=x.length;C++)M[C+z]=Y[C],ee[C+z]=!0,z+=E(x[C-1]);h[$]=M,h[$]._emit=ee,h[$]._multi=!0}function ls(h){if(Array.isArray(h.begin)){if(h.skip||h.excludeBegin||h.returnBegin)throw $e("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),st;if(typeof h.beginScope!="object"||h.beginScope===null)throw $e("beginScope must be object"),st;Pn(h,h.begin,{key:"beginScope"}),h.begin=y(h.begin,{joinWith:""})}}function cs(h){if(Array.isArray(h.end)){if(h.skip||h.excludeEnd||h.returnEnd)throw $e("skip, excludeEnd, returnEnd not compatible with endScope: {}"),st;if(typeof h.endScope!="object"||h.endScope===null)throw $e("endScope must be object"),st;Pn(h,h.end,{key:"endScope"}),h.end=y(h.end,{joinWith:""})}}function us(h){h.scope&&typeof h.scope=="object"&&h.scope!==null&&(h.beginScope=h.scope,delete h.scope)}function ds(h){us(h),typeof h.beginScope=="string"&&(h.beginScope={_wrap:h.beginScope}),typeof h.endScope=="string"&&(h.endScope={_wrap:h.endScope}),ls(h),cs(h)}function hs(h){function x(M,C){return new RegExp(c(M),"m"+(h.case_insensitive?"i":"")+(h.unicodeRegex?"u":"")+(C?"g":""))}class ${constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(C,T){T.position=this.position++,this.matchIndexes[this.matchAt]=T,this.regexes.push([T,C]),this.matchAt+=E(C)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);const C=this.regexes.map(T=>T[1]);this.matcherRe=x(y(C,{joinWith:"|"}),!0),this.lastIndex=0}exec(C){this.matcherRe.lastIndex=this.lastIndex;const T=this.matcherRe.exec(C);if(!T)return null;const re=T.findIndex((Ve,Rt)=>Rt>0&&Ve!==void 0),ne=this.matchIndexes[re];return T.splice(0,re),Object.assign(T,ne)}}class z{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(C){if(this.multiRegexes[C])return this.multiRegexes[C];const T=new $;return this.rules.slice(C).forEach(([re,ne])=>T.addRule(re,ne)),T.compile(),this.multiRegexes[C]=T,T}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(C,T){this.rules.push([C,T]),T.type==="begin"&&this.count++}exec(C){const T=this.getMatcher(this.regexIndex);T.lastIndex=this.lastIndex;let re=T.exec(C);if(this.resumingScanAtSamePosition()&&!(re&&re.index===this.lastIndex)){const ne=this.getMatcher(0);ne.lastIndex=this.lastIndex+1,re=ne.exec(C)}return re&&(this.regexIndex+=re.position+1,this.regexIndex===this.count&&this.considerAll()),re}}function Y(M){const C=new z;return M.contains.forEach(T=>C.addRule(T.begin,{rule:T,type:"begin"})),M.terminatorEnd&&C.addRule(M.terminatorEnd,{type:"end"}),M.illegal&&C.addRule(M.illegal,{type:"illegal"}),C}function ee(M,C){const T=M;if(M.isCompiled)return T;[we,ts,ds,is].forEach(ne=>ne(M,C)),h.compilerExtensions.forEach(ne=>ne(M,C)),M.__beforeBegin=null,[We,it,ns].forEach(ne=>ne(M,C)),M.isCompiled=!0;let re=null;return typeof M.keywords=="object"&&M.keywords.$pattern&&(M.keywords=Object.assign({},M.keywords),re=M.keywords.$pattern,delete M.keywords.$pattern),re=re||/\w+/,M.keywords&&(M.keywords=Rn(M.keywords,h.case_insensitive)),T.keywordPatternRe=x(re,!0),C&&(M.begin||(M.begin=/\B|\b/),T.beginRe=x(T.begin),!M.end&&!M.endsWithParent&&(M.end=/\B|\b/),M.end&&(T.endRe=x(T.end)),T.terminatorEnd=c(T.end)||"",M.endsWithParent&&C.terminatorEnd&&(T.terminatorEnd+=(M.end?"|":"")+C.terminatorEnd)),M.illegal&&(T.illegalRe=x(M.illegal)),M.contains||(M.contains=[]),M.contains=[].concat(...M.contains.map(function(ne){return ps(ne==="self"?M:ne)})),M.contains.forEach(function(ne){ee(ne,T)}),M.starts&&ee(M.starts,C),T.matcher=Y(T),T}if(h.compilerExtensions||(h.compilerExtensions=[]),h.contains&&h.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return h.classNameAliases=r(h.classNameAliases||{}),ee(h)}function Ln(h){return h?h.endsWithParent||Ln(h.starts):!1}function ps(h){return h.variants&&!h.cachedVariants&&(h.cachedVariants=h.variants.map(function(x){return r(h,{variants:null},x)})),h.cachedVariants?h.cachedVariants:Ln(h)?r(h,{starts:h.starts?r(h.starts):null}):Object.isFrozen(h)?r(h):h}var fs="11.11.1";class ms extends Error{constructor(x,$){super(x),this.name="HTMLInjectionError",this.html=$}}const Ct=n,In=r,Tn=Symbol("nomatch"),gs=7,jn=function(h){const x=Object.create(null),$=Object.create(null),z=[];let Y=!0;const ee="Could not find the language '{}', did you forget to load/include a language module?",M={disableAutodetect:!0,name:"Plain text",contains:[]};let C={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:s};function T(A){return C.noHighlightRe.test(A)}function re(A){let L=A.className+" ";L+=A.parentNode?A.parentNode.className:"";const q=C.languageDetectRe.exec(L);if(q){const V=xe(q[1]);return V||(Nn(ee.replace("{}",q[1])),Nn("Falling back to no-highlight mode for this block.",A)),V?q[1]:"no-highlight"}return L.split(/\s+/).find(V=>T(V)||xe(V))}function ne(A,L,q){let V="",se="";typeof L=="object"?(V=A,q=L.ignoreIllegals,se=L.language):(je("10.7.0","highlight(lang, code, ...args) has been deprecated."),je("10.7.0",`Please use highlight(code, options) instead.
499
+ https://github.com/highlightjs/highlight.js/issues/2277`),se=A,V=L),q===void 0&&(q=!0);const me={code:V,language:se};ot("before:highlight",me);const _e=me.result?me.result:Ve(me.language,me.code,q);return _e.code=me.code,ot("after:highlight",_e),_e}function Ve(A,L,q,V){const se=Object.create(null);function me(k,N){return k.keywords[N]}function _e(){if(!D.keywords){oe.addText(G);return}let k=0;D.keywordPatternRe.lastIndex=0;let N=D.keywordPatternRe.exec(G),B="";for(;N;){B+=G.substring(k,N.index);const H=be.case_insensitive?N[0].toLowerCase():N[0],ae=me(D,H);if(ae){const[ye,Ps]=ae;if(oe.addText(B),B="",se[H]=(se[H]||0)+1,se[H]<=gs&&(ct+=Ps),ye.startsWith("_"))B+=N[0];else{const Ls=be.classNameAliases[ye]||ye;ge(N[0],Ls)}}else B+=N[0];k=D.keywordPatternRe.lastIndex,N=D.keywordPatternRe.exec(G)}B+=G.substring(k),oe.addText(B)}function at(){if(G==="")return;let k=null;if(typeof D.subLanguage=="string"){if(!x[D.subLanguage]){oe.addText(G);return}k=Ve(D.subLanguage,G,!0,Wn[D.subLanguage]),Wn[D.subLanguage]=k._top}else k=Mt(G,D.subLanguage.length?D.subLanguage:null);D.relevance>0&&(ct+=k.relevance),oe.__addSublanguage(k._emitter,k.language)}function ue(){D.subLanguage!=null?at():_e(),G=""}function ge(k,N){k!==""&&(oe.startScope(N),oe.addText(k),oe.endScope())}function Bn(k,N){let B=1;const H=N.length-1;for(;B<=H;){if(!k._emit[B]){B++;continue}const ae=be.classNameAliases[k[B]]||k[B],ye=N[B];ae?ge(ye,ae):(G=ye,_e(),G=""),B++}}function qn(k,N){return k.scope&&typeof k.scope=="string"&&oe.openNode(be.classNameAliases[k.scope]||k.scope),k.beginScope&&(k.beginScope._wrap?(ge(G,be.classNameAliases[k.beginScope._wrap]||k.beginScope._wrap),G=""):k.beginScope._multi&&(Bn(k.beginScope,N),G="")),D=Object.create(k,{parent:{value:D}}),D}function Fn(k,N,B){let H=w(k.endRe,B);if(H){if(k["on:end"]){const ae=new e(k);k["on:end"](N,ae),ae.isMatchIgnored&&(H=!1)}if(H){for(;k.endsParent&&k.parent;)k=k.parent;return k}}if(k.endsWithParent)return Fn(k.parent,N,B)}function Os(k){return D.matcher.regexIndex===0?(G+=k[0],1):(It=!0,0)}function Cs(k){const N=k[0],B=k.rule,H=new e(B),ae=[B.__beforeBegin,B["on:begin"]];for(const ye of ae)if(ye&&(ye(k,H),H.isMatchIgnored))return Os(N);return B.skip?G+=N:(B.excludeBegin&&(G+=N),ue(),!B.returnBegin&&!B.excludeBegin&&(G=N)),qn(B,k),B.returnBegin?0:N.length}function Rs(k){const N=k[0],B=L.substring(k.index),H=Fn(D,k,B);if(!H)return Tn;const ae=D;D.endScope&&D.endScope._wrap?(ue(),ge(N,D.endScope._wrap)):D.endScope&&D.endScope._multi?(ue(),Bn(D.endScope,k)):ae.skip?G+=N:(ae.returnEnd||ae.excludeEnd||(G+=N),ue(),ae.excludeEnd&&(G=N));do D.scope&&oe.closeNode(),!D.skip&&!D.subLanguage&&(ct+=D.relevance),D=D.parent;while(D!==H.parent);return H.starts&&qn(H.starts,k),ae.returnEnd?0:N.length}function Ms(){const k=[];for(let N=D;N!==be;N=N.parent)N.scope&&k.unshift(N.scope);k.forEach(N=>oe.openNode(N))}let lt={};function Hn(k,N){const B=N&&N[0];if(G+=k,B==null)return ue(),0;if(lt.type==="begin"&&N.type==="end"&&lt.index===N.index&&B===""){if(G+=L.slice(N.index,N.index+1),!Y){const H=new Error(`0 width match regex (${A})`);throw H.languageName=A,H.badRule=lt.rule,H}return 1}if(lt=N,N.type==="begin")return Cs(N);if(N.type==="illegal"&&!q){const H=new Error('Illegal lexeme "'+B+'" for mode "'+(D.scope||"<unnamed>")+'"');throw H.mode=D,H}else if(N.type==="end"){const H=Rs(N);if(H!==Tn)return H}if(N.type==="illegal"&&B==="")return G+=`
500
+ `,1;if(Lt>1e5&&Lt>N.index*3)throw new Error("potential infinite loop, way more iterations than matches");return G+=B,B.length}const be=xe(A);if(!be)throw $e(ee.replace("{}",A)),new Error('Unknown language: "'+A+'"');const Ns=hs(be);let Pt="",D=V||Ns;const Wn={},oe=new C.__emitter(C);Ms();let G="",ct=0,Oe=0,Lt=0,It=!1;try{if(be.__emitTokens)be.__emitTokens(L,oe);else{for(D.matcher.considerAll();;){Lt++,It?It=!1:D.matcher.considerAll(),D.matcher.lastIndex=Oe;const k=D.matcher.exec(L);if(!k)break;const N=L.substring(Oe,k.index),B=Hn(N,k);Oe=k.index+B}Hn(L.substring(Oe))}return oe.finalize(),Pt=oe.toHTML(),{language:A,value:Pt,relevance:ct,illegal:!1,_emitter:oe,_top:D}}catch(k){if(k.message&&k.message.includes("Illegal"))return{language:A,value:Ct(L),illegal:!0,relevance:0,_illegalBy:{message:k.message,index:Oe,context:L.slice(Oe-100,Oe+100),mode:k.mode,resultSoFar:Pt},_emitter:oe};if(Y)return{language:A,value:Ct(L),illegal:!1,relevance:0,errorRaised:k,_emitter:oe,_top:D};throw k}}function Rt(A){const L={value:Ct(A),illegal:!1,relevance:0,_top:M,_emitter:new C.__emitter(C)};return L._emitter.addText(A),L}function Mt(A,L){L=L||C.languages||Object.keys(x);const q=Rt(A),V=L.filter(xe).filter(Un).map(ue=>Ve(ue,A,!1));V.unshift(q);const se=V.sort((ue,ge)=>{if(ue.relevance!==ge.relevance)return ge.relevance-ue.relevance;if(ue.language&&ge.language){if(xe(ue.language).supersetOf===ge.language)return 1;if(xe(ge.language).supersetOf===ue.language)return-1}return 0}),[me,_e]=se,at=me;return at.secondBest=_e,at}function bs(A,L,q){const V=L&&$[L]||q;A.classList.add("hljs"),A.classList.add(`language-${V}`)}function Nt(A){let L=null;const q=re(A);if(T(q))return;if(ot("before:highlightElement",{el:A,language:q}),A.dataset.highlighted){console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",A);return}if(A.children.length>0&&(C.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(A)),C.throwUnescapedHTML))throw new ms("One of your code blocks includes unescaped HTML.",A.innerHTML);L=A;const V=L.textContent,se=q?ne(V,{language:q,ignoreIllegals:!0}):Mt(V);A.innerHTML=se.value,A.dataset.highlighted="yes",bs(A,q,se.language),A.result={language:se.language,re:se.relevance,relevance:se.relevance},se.secondBest&&(A.secondBest={language:se.secondBest.language,relevance:se.secondBest.relevance}),ot("after:highlightElement",{el:A,result:se,text:V})}function ys(A){C=In(C,A)}const vs=()=>{rt(),je("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function ws(){rt(),je("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let Dn=!1;function rt(){function A(){rt()}if(document.readyState==="loading"){Dn||window.addEventListener("DOMContentLoaded",A,!1),Dn=!0;return}document.querySelectorAll(C.cssSelector).forEach(Nt)}function xs(A,L){let q=null;try{q=L(h)}catch(V){if($e("Language definition for '{}' could not be registered.".replace("{}",A)),Y)$e(V);else throw V;q=M}q.name||(q.name=A),x[A]=q,q.rawDefinition=L.bind(null,h),q.aliases&&zn(q.aliases,{languageName:A})}function _s(A){delete x[A];for(const L of Object.keys($))$[L]===A&&delete $[L]}function Es(){return Object.keys(x)}function xe(A){return A=(A||"").toLowerCase(),x[A]||x[$[A]]}function zn(A,{languageName:L}){typeof A=="string"&&(A=[A]),A.forEach(q=>{$[q.toLowerCase()]=L})}function Un(A){const L=xe(A);return L&&!L.disableAutodetect}function Ss(A){A["before:highlightBlock"]&&!A["before:highlightElement"]&&(A["before:highlightElement"]=L=>{A["before:highlightBlock"](Object.assign({block:L.el},L))}),A["after:highlightBlock"]&&!A["after:highlightElement"]&&(A["after:highlightElement"]=L=>{A["after:highlightBlock"](Object.assign({block:L.el},L))})}function As(A){Ss(A),z.push(A)}function ks(A){const L=z.indexOf(A);L!==-1&&z.splice(L,1)}function ot(A,L){const q=A;z.forEach(function(V){V[q]&&V[q](L)})}function $s(A){return je("10.7.0","highlightBlock will be removed entirely in v12.0"),je("10.7.0","Please use highlightElement now."),Nt(A)}Object.assign(h,{highlight:ne,highlightAuto:Mt,highlightAll:rt,highlightElement:Nt,highlightBlock:$s,configure:ys,initHighlighting:vs,initHighlightingOnLoad:ws,registerLanguage:xs,unregisterLanguage:_s,listLanguages:Es,getLanguage:xe,registerAliases:zn,autoDetection:Un,inherit:In,addPlugin:As,removePlugin:ks}),h.debugMode=function(){Y=!1},h.safeMode=function(){Y=!0},h.versionString=fs,h.regex={concat:m,lookahead:o,either:_,optional:p,anyNumberOfTimes:l};for(const A in Te)typeof Te[A]=="object"&&i(Te[A]);return Object.assign(h,Te),h},De=jn({});return De.newInstance=()=>jn({}),pn=De,De.HighlightJS=De,De.default=De,pn}var fo=po();const At=ho(fo),bt="[A-Za-z$_][0-9A-Za-z$_]*",Gi=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends","using"],Zi=["true","false","null","undefined","NaN","Infinity"],Ji=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],Ki=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Xi=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],Qi=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],Yi=[].concat(Xi,Ji,Ki);function mo(i){const e=i.regex,n=(W,{after:te})=>{const le="</"+W[0].slice(1);return W.input.indexOf(le,te)!==-1},r=bt,t={begin:"<>",end:"</>"},u=/<[A-Za-z0-9\\._:-]+\s*\/>/,a={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(W,te)=>{const le=W[0].length+W.index,ce=W.input[le];if(ce==="<"||ce===","){te.ignoreMatch();return}ce===">"&&(n(W,{after:le})||te.ignoreMatch());let ve;const ke=W.input.substring(le);if(ve=ke.match(/^\s*=/)){te.ignoreMatch();return}if((ve=ke.match(/^\s+extends\s+/))&&ve.index===0){te.ignoreMatch();return}}},f={$pattern:bt,keyword:Gi,literal:Zi,built_in:Yi,"variable.language":Qi},b="[0-9](_?[0-9])*",d=`\\.(${b})`,s="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",c={className:"number",variants:[{begin:`(\\b(${s})((${d})|\\.)?|(${d}))[eE][+-]?(${b})\\b`},{begin:`\\b(${s})\\b((${d})\\b|\\.)?|(${d})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},o={className:"subst",begin:"\\$\\{",end:"\\}",keywords:f,contains:[]},l={begin:".?html`",end:"",starts:{end:"`",returnEnd:!1,contains:[i.BACKSLASH_ESCAPE,o],subLanguage:"xml"}},p={begin:".?css`",end:"",starts:{end:"`",returnEnd:!1,contains:[i.BACKSLASH_ESCAPE,o],subLanguage:"css"}},m={begin:".?gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[i.BACKSLASH_ESCAPE,o],subLanguage:"graphql"}},g={className:"string",begin:"`",end:"`",contains:[i.BACKSLASH_ESCAPE,o]},_={className:"comment",variants:[i.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:r+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),i.C_BLOCK_COMMENT_MODE,i.C_LINE_COMMENT_MODE]},E=[i.APOS_STRING_MODE,i.QUOTE_STRING_MODE,l,p,m,g,{match:/\$\d+/},c];o.contains=E.concat({begin:/\{/,end:/\}/,keywords:f,contains:["self"].concat(E)});const w=[].concat(_,o.contains),v=w.concat([{begin:/(\s*)\(/,end:/\)/,keywords:f,contains:["self"].concat(w)}]),y={className:"params",begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:f,contains:v},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,e.concat(r,"(",e.concat(/\./,r),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,r],scope:{1:"keyword",3:"title.class"}}]},O={relevance:0,match:e.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Ji,...Ki]}},I={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},U={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[y],illegal:/%/},P={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function K(W){return e.concat("(?!",W.join("|"),")")}const F={match:e.concat(/\b/,K([...Xi,"super","import"].map(W=>`${W}\\s*\\(`)),r,e.lookahead(/\s*\(/)),className:"title.function",relevance:0},Ae={begin:e.concat(/\./,e.lookahead(e.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},he={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},y]},R="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+i.UNDERSCORE_IDENT_RE+")\\s*=>",Le={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,e.lookahead(R)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[y]};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:f,exports:{PARAMS_CONTAINS:v,CLASS_REFERENCE:O},illegal:/#(?![$_A-z])/,contains:[i.SHEBANG({label:"shebang",binary:"node",relevance:5}),I,i.APOS_STRING_MODE,i.QUOTE_STRING_MODE,l,p,m,g,_,{match:/\$\d+/},c,O,{scope:"attr",match:r+e.lookahead(":"),relevance:0},Le,{begin:"("+i.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[_,i.REGEXP_MODE,{className:"function",begin:R,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:i.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:f,contains:v}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:t.begin,end:t.end},{match:u},{begin:a.begin,"on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},U,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+i.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[y,i.inherit(i.TITLE_MODE,{begin:r,className:"title.function"})]},{match:/\.\.\./,relevance:0},Ae,{match:"\\$"+r,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[y]},F,P,S,he,{match:/\$[(.]/}]}}function go(i){const e=i.regex,n=mo(i),r=bt,t=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],u={begin:[/namespace/,/\s+/,i.IDENT_RE],beginScope:{1:"keyword",3:"title.class"}},a={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:t},contains:[n.exports.CLASS_REFERENCE]},f={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},b=["type","interface","public","private","protected","implements","declare","abstract","readonly","enum","override","satisfies"],d={$pattern:bt,keyword:Gi.concat(b),literal:Zi,built_in:Yi.concat(t),"variable.language":Qi},s={className:"meta",begin:"@"+r},c=(m,g,_)=>{const E=m.contains.findIndex(w=>w.label===g);if(E===-1)throw new Error("can not find mode to replace");m.contains.splice(E,1,_)};Object.assign(n.keywords,d),n.exports.PARAMS_CONTAINS.push(s);const o=n.contains.find(m=>m.scope==="attr"),l=Object.assign({},o,{match:e.concat(r,e.lookahead(/\s*\?:/))});n.exports.PARAMS_CONTAINS.push([n.exports.CLASS_REFERENCE,o,l]),n.contains=n.contains.concat([s,u,a,l]),c(n,"shebang",i.SHEBANG()),c(n,"use_strict",f);const p=n.contains.find(m=>m.label==="func.def");return p.relevance=0,Object.assign(n,{name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),n}function bo(i){const e=i.regex,n=e.concat(/[\p{L}_]/u,e.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),r=/[\p{L}0-9._:-]+/u,t={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},u={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},a=i.inherit(u,{begin:/\(/,end:/\)/}),f=i.inherit(i.APOS_STRING_MODE,{className:"string"}),b=i.inherit(i.QUOTE_STRING_MODE,{className:"string"}),d={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",begin:r,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[t]},{begin:/'/,end:/'/,contains:[t]},{begin:/[^\s"'=<>`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,relevance:10,contains:[u,b,f,a,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,contains:[u,a,b,f]}]}]},i.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},t,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[b]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[d],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[d],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:e.concat(/</,e.lookahead(e.concat(n,e.either(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:d}]},{className:"tag",begin:e.concat(/<\//,e.lookahead(e.concat(n,/>/))),contains:[{className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}const yo=i=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:i.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[i.APOS_STRING_MODE,i.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:i.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),vo=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],wo=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],xo=[...vo,...wo],_o=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),Eo=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),So=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),Ao=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse();function ko(i){const e=i.regex,n=yo(i),r={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},t="and or not only",u=/@-?\w[\w]*(-\w+)*/,a="[a-zA-Z-][a-zA-Z0-9_-]*",f=[i.APOS_STRING_MODE,i.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[n.BLOCK_COMMENT,r,n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+a,relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+Eo.join("|")+")"},{begin:":(:)?("+So.join("|")+")"}]},n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+Ao.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...f,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...f,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:e.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:u},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:t,attribute:_o.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...f,n.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+xo.join("|")+")\\b"}]}}const es=document.createElement("style");es.innerText=[co,uo].join(`
501
+ `);document.head.appendChild(es);At.registerLanguage("typescript",go);At.registerLanguage("html",bo);At.registerLanguage("css",ko);function $o(...i){const e=document.createElement("div"),n=document.createElement("div");n.classList.add("tab-control");const r=document.createElement("div");return i.forEach(t=>{e.appendChild(t),t.addEventListener("click",()=>{i.forEach(u=>u.removeAttribute("selected")),t.setAttribute("selected",""),r.innerHTML="",r.appendChild(t.content),r.className=t.className,r.classList.add("tab-content")})}),n.appendChild(e),n.appendChild(r),r.classList.add("tab-content"),i[0].setAttribute("selected",""),r.appendChild(i[0].content),n}function Ze(i,e){const n=document.createElement("div");return n.role="tab",n.tabIndex=0,n.innerText=i,n.content=e,e.tagName=="PRE"&&n.classList.add("code"),n}function Ke(i,e){const n=document.createElement(i);return typeof e=="string"?n.innerHTML=e:e.forEach(r=>{n.appendChild(r)}),n}async function Oo(i,e,n){const r=e.mainContent,t=Ke("div",r);t.id=`example-preview-${n}`;const u=typeof e.css=="string"?void 0:e.css?.label,a=typeof e.css=="string"?e.css:e.css?.content,f=$o(Ze("Preview",t),Ze("HTML",ht("html",r)),...a?[Ze(u??"CSS",ht("css",a))]:[],...e.initializer&&e.initializer.content?[Ze(e.initializer.label??"TS",ht("typescript",e.initializer.content))]:[],...(e.additionalSources||[]).map(d=>Ze(d.label,ht(d.language,d.content))));e.description&&i.appendChild(Ke("div",e.description));const b=Ke("div",[f]);b.classList.add("example"),i.appendChild(b),a&&Co(`#${t.id}`,a),e.initializer?.initialize&&await e.initializer.initialize(t)}function ht(i,e){let n=e.split(/\r?\n/).map(r=>{const t=r.indexOf("///");if(t>-1){const u=r.substring(t+3).trimStart();return u?r.replace(/^(\s*)([^\s].*)$/,`$1${u}`):void 0}return r}).filter(r=>typeof r<"u").join(`
502
+ `).trim();return i&&i!="raw"&&(n=At.highlight(n,{language:i}).value),Ke("pre",[Ke("code",n)])}function Co(i,e){const n=document.createElement("style");n.innerHTML=J().use(lo({prefix:i})).process(e).css,document.head.appendChild(n)}async function Ro(i,e=document.body){const n=No(e);let r=0;Object.keys(i).sort().forEach(async t=>{const u=document.createElement("div");u.className="example-container",n.appendChild(u);const a=i[t].default;Oo(u,a,r++)})}function Mo(i){const e=document.createElement("div");e.id="examples-container";const n=i.querySelector("#examples");return n?n.after(e):i.appendChild(e),e}function No(i){return i.children?Mo(i):i}const Po=`<h1 id="@cas-smartdesign/lit-input">@cas-smartdesign/lit-input</h1>
476
503
  <p>An input element based on LitElement &amp; material components.</p>
477
504
  <h2 id="requirements">Requirements</h2>
478
505
  <p>The main entry point requires ES6 &amp; support for Custom Elements v1</p>
@@ -553,10 +580,4 @@ https://github.com/highlightjs/highlight.js/issues/2277`),R=d,_=m),y===void 0&&(
553
580
  <li><code>validationIconSrc</code></li>
554
581
  <li><code>validationLevel</code></li>
555
582
  </ul>
556
- `,Gl=document.querySelector("#markdown-container");Gl.innerHTML=ql;Hl(Object.assign({"./examples/declarative/index.ts":Us,"./examples/form-validation/index.ts":Ws,"./examples/login-form/index.ts":Js,"./examples/misc-examples/index.ts":sr,"./examples/restrictions/index.ts":cr,"./examples/validation/index.ts":mr}),document.querySelector(".markdown-body"));export{ut as h};
557
- function __vite__mapDeps(indexes) {
558
- if (!__vite__mapDeps.viteFileDeps) {
559
- __vite__mapDeps.viteFileDeps = []
560
- }
561
- return indexes.map((i) => __vite__mapDeps.viteFileDeps[i])
562
- }
583
+ `,Lo=document.querySelector("#markdown-container");Lo.innerHTML=Po;Ro(Object.assign({"./examples/declarative/index.ts":zs,"./examples/form-validation/index.ts":Gs,"./examples/login-form/index.ts":Qs,"./examples/misc-examples/index.ts":sr,"./examples/restrictions/index.ts":cr,"./examples/validation/index.ts":mr}),document.querySelector(".markdown-body"));export{gt as a};