@e280/shiny 0.1.0-1 → 0.1.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +85 -3
- package/package.json +3 -3
- package/s/demo/demo.bundle.ts +7 -7
- package/s/demo/demo.css +3 -1
- package/s/demo/views/demonstration/view.ts +4 -4
- package/s/index.html.ts +1 -1
- package/s/index.ts +4 -2
- package/s/install.bundle.ts +9 -0
- package/s/shiny.ts +15 -0
- package/s/ui/copy/component.ts +5 -5
- package/s/ui/example/component.ts +5 -5
- package/s/ui/framework.ts +4 -1
- package/s/ui/{components.ts → raw-components.ts} +1 -1
- package/x/demo/demo.bundle.js +7 -7
- package/x/demo/demo.bundle.js.map +1 -1
- package/x/demo/demo.bundle.min.js +31 -31
- package/x/demo/demo.bundle.min.js.map +4 -4
- package/x/demo/demo.css +3 -1
- package/x/demo/views/demonstration/view.d.ts +2 -2
- package/x/demo/views/demonstration/view.js +2 -2
- package/x/demo/views/demonstration/view.js.map +1 -1
- package/x/index.d.ts +2 -2
- package/x/index.html +6 -4
- package/x/index.html.js +1 -1
- package/x/index.js +2 -2
- package/x/index.js.map +1 -1
- package/x/install.bundle.d.ts +1 -0
- package/x/install.bundle.js +5 -0
- package/x/install.bundle.js.map +1 -0
- package/x/install.bundle.min.js +135 -0
- package/x/install.bundle.min.js.map +7 -0
- package/x/shiny.d.ts +14 -0
- package/x/shiny.js +8 -0
- package/x/shiny.js.map +1 -0
- package/x/ui/copy/component.d.ts +3 -3
- package/x/ui/copy/component.js +3 -3
- package/x/ui/copy/component.js.map +1 -1
- package/x/ui/example/component.d.ts +3 -3
- package/x/ui/example/component.js +3 -3
- package/x/ui/example/component.js.map +1 -1
- package/x/ui/framework.d.ts +5 -1
- package/x/ui/framework.js +1 -1
- package/x/ui/framework.js.map +1 -1
- package/x/ui/{components.d.ts → raw-components.d.ts} +1 -1
- package/x/ui/{components.js → raw-components.js} +2 -2
- package/x/ui/raw-components.js.map +1 -0
- package/s/tools/untab.ts +0 -30
- package/s/ui/themers.ts +0 -28
- package/x/tools/untab.d.ts +0 -1
- package/x/tools/untab.js +0 -26
- package/x/tools/untab.js.map +0 -1
- package/x/ui/components.js.map +0 -1
- package/x/ui/themers.d.ts +0 -8
- package/x/ui/themers.js +0 -12
- package/x/ui/themers.js.map +0 -1
package/x/demo/demo.css
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
--tint: #070429aa;
|
|
72
72
|
background:
|
|
73
73
|
linear-gradient(0deg, var(--tint), var(--tint)),
|
|
74
|
-
#141519 url("/assets/bg.webp") center
|
|
74
|
+
#141519 url("/assets/bg.webp") center 80% / cover no-repeat;
|
|
75
75
|
|
|
76
76
|
background-attachment: fixed, fixed;
|
|
77
77
|
|
|
@@ -100,6 +100,8 @@
|
|
|
100
100
|
strong {
|
|
101
101
|
font-size: 1.5em;
|
|
102
102
|
color: var(--prime);
|
|
103
|
+
color: color-mix(in oklab, white, var(--prime) 20%);
|
|
104
|
+
text-shadow: 0 0 0.8em color-mix(in oklab, white, var(--prime) 50%);
|
|
103
105
|
}
|
|
104
106
|
|
|
105
107
|
small {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Content } from "@e280/sly";
|
|
2
|
-
import { ShinyViews } from "../../../
|
|
2
|
+
import { ShinyViews } from "../../../shiny.js";
|
|
3
3
|
export declare const Demonstration: import("@e280/sly").View<[options: {
|
|
4
4
|
name: string;
|
|
5
5
|
explain: Content;
|
|
6
6
|
views: ShinyViews;
|
|
7
|
-
exampleView: string;
|
|
8
7
|
exampleComponent: string;
|
|
8
|
+
exampleView: string;
|
|
9
9
|
content: Content;
|
|
10
10
|
}]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { html } from "lit";
|
|
2
|
+
import { untab } from "@e280/stz";
|
|
2
3
|
import { view } from "@e280/sly";
|
|
3
4
|
import styleCss from "./style.css.js";
|
|
4
|
-
import { untab } from "../../../tools/untab.js";
|
|
5
5
|
import { basic } from "../../../themes/basic.css.js";
|
|
6
6
|
export const Demonstration = view(use => (options) => {
|
|
7
7
|
use.name(options.name);
|
|
@@ -23,8 +23,8 @@ export const Demonstration = view(use => (options) => {
|
|
|
23
23
|
<h2>✨ ${options.name}</h2>
|
|
24
24
|
<div class=explain>${options.explain}</div>
|
|
25
25
|
<div class=codes>
|
|
26
|
-
${codeblock("sly view", options.exampleView)}
|
|
27
26
|
${codeblock("html web component", options.exampleComponent)}
|
|
27
|
+
${codeblock("sly view", options.exampleView)}
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../../../s/demo/views/demonstration/view.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAA;AACxB,OAAO,
|
|
1
|
+
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../../../s/demo/views/demonstration/view.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAA;AACxB,OAAO,EAAC,KAAK,EAAC,MAAM,WAAW,CAAA;AAC/B,OAAO,EAAU,IAAI,EAAC,MAAM,WAAW,CAAA;AACvC,OAAO,QAAQ,MAAM,gBAAgB,CAAA;AAErC,OAAO,EAAC,KAAK,EAAC,MAAM,8BAA8B,CAAA;AAElD,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,OAOxC,EAAE,EAAE;IAEL,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IACtB,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;IAE3B,SAAS,SAAS,CAAC,OAAe,EAAE,IAAY;QAC/C,MAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAA;QACpC,OAAO,IAAI,CAAA;;;WAGF,OAAO;aACL,SAAS;;MAEhB,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,SAAS,CAAC;;GAErC,CAAA;IACF,CAAC;IAED,OAAO,IAAI,CAAA;;WAED,OAAO,CAAC,IAAI;wBACC,OAAO,CAAC,OAAO;;MAEjC,SAAS,CAAC,oBAAoB,EAAE,OAAO,CAAC,gBAAgB,CAAC;MACzD,SAAS,CAAC,UAAU,EAAE,OAAO,CAAC,WAAW,CAAC;;;;;KAK3C,OAAO,CAAC,OAAO;;EAElB,CAAA;AACF,CAAC,CAAC,CAAA"}
|
package/x/index.d.ts
CHANGED
package/x/index.html
CHANGED
|
@@ -78,7 +78,7 @@ a {
|
|
|
78
78
|
--tint: #070429aa;
|
|
79
79
|
background:
|
|
80
80
|
linear-gradient(0deg, var(--tint), var(--tint)),
|
|
81
|
-
#141519 url("/assets/bg.webp") center
|
|
81
|
+
#141519 url("/assets/bg.webp") center 80% / cover no-repeat;
|
|
82
82
|
|
|
83
83
|
background-attachment: fixed, fixed;
|
|
84
84
|
|
|
@@ -107,6 +107,8 @@ h1 {
|
|
|
107
107
|
strong {
|
|
108
108
|
font-size: 1.5em;
|
|
109
109
|
color: var(--prime);
|
|
110
|
+
color: color-mix(in oklab, white, var(--prime) 20%);
|
|
111
|
+
text-shadow: 0 0 0.8em color-mix(in oklab, white, var(--prime) 50%);
|
|
110
112
|
}
|
|
111
113
|
|
|
112
114
|
small {
|
|
@@ -126,7 +128,7 @@ body > section {
|
|
|
126
128
|
}
|
|
127
129
|
|
|
128
130
|
</style>
|
|
129
|
-
<script type=module src="demo/demo.bundle.min.js?v=
|
|
131
|
+
<script type=module src="demo/demo.bundle.min.js?v=b0dc5fb52cc5"></script>
|
|
130
132
|
<link rel="icon" href="assets/favicon.png?v=0414eeb5fcc2"/>
|
|
131
133
|
|
|
132
134
|
<meta name="theme-color" content="#d068ff">
|
|
@@ -142,8 +144,8 @@ body > section {
|
|
|
142
144
|
<body>
|
|
143
145
|
|
|
144
146
|
<h1>
|
|
145
|
-
<strong>✨
|
|
146
|
-
<small>v0.1.0-
|
|
147
|
+
<strong>✨shiny✨</strong>
|
|
148
|
+
<small>v0.1.0-2</small>
|
|
147
149
|
</h1>
|
|
148
150
|
|
|
149
151
|
<section>
|
package/x/index.html.js
CHANGED
package/x/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from "./themes/index.js";
|
|
2
2
|
export * from "./ui/example/component.js";
|
|
3
3
|
export * from "./ui/copy/component.js";
|
|
4
|
-
export * from "./ui/
|
|
5
|
-
export * from "./
|
|
4
|
+
export * from "./ui/framework.js";
|
|
5
|
+
export * from "./shiny.js";
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/x/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../s/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../s/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAA;AAEjC,cAAc,2BAA2B,CAAA;AACzC,cAAc,wBAAwB,CAAA;AACtC,cAAc,mBAAmB,CAAA;AAEjC,cAAc,YAAY,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"install.bundle.js","sourceRoot":"","sources":["../s/install.bundle.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,GAAG,EAAC,MAAM,WAAW,CAAA;AAC7B,OAAO,EAAC,KAAK,EAAC,MAAM,YAAY,CAAA;AAChC,OAAO,EAAC,KAAK,EAAC,MAAM,uBAAuB,CAAA;AAE3C,GAAG,CAAC,QAAQ,CACX,KAAK,CAAC,EAAC,KAAK,EAAE,KAAK,EAAC,CAAC,CAAC,UAAU,CAChC,CAAA"}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
var mt=globalThis,ft=mt.ShadowRoot&&(mt.ShadyCSS===void 0||mt.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,Wt=Symbol(),ie=new WeakMap,G=class{constructor(t,e,s){if(this._$cssResult$=!0,s!==Wt)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o,e=this.t;if(ft&&t===void 0){let s=e!==void 0&&e.length===1;s&&(t=ie.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),s&&ie.set(e,t))}return t}toString(){return this.cssText}},ne=r=>new G(typeof r=="string"?r:r+"",void 0,Wt),$=(r,...t)=>{let e=r.length===1?r[0]:t.reduce(((s,o,i)=>s+(n=>{if(n._$cssResult$===!0)return n.cssText;if(typeof n=="number")return n;throw Error("Value passed to 'css' function must be a 'css' function result: "+n+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(o)+r[i+1]),r[0]);return new G(e,r,Wt)},gt=(r,t)=>{if(ft)r.adoptedStyleSheets=t.map((e=>e instanceof CSSStyleSheet?e:e.styleSheet));else for(let e of t){let s=document.createElement("style"),o=mt.litNonce;o!==void 0&&s.setAttribute("nonce",o),s.textContent=e.cssText,r.appendChild(s)}},U=ft?r=>r:r=>r instanceof CSSStyleSheet?(t=>{let e="";for(let s of t.cssRules)e+=s.cssText;return ne(e)})(r):r;var{is:Xe,defineProperty:Ye,getOwnPropertyDescriptor:Ze,getOwnPropertyNames:Je,getOwnPropertySymbols:Ke,getPrototypeOf:Qe}=Object,bt=globalThis,ae=bt.trustedTypes,Ge=ae?ae.emptyScript:"",tr=bt.reactiveElementPolyfillSupport,tt=(r,t)=>r,Ft={toAttribute(r,t){switch(t){case Boolean:r=r?Ge:null;break;case Object:case Array:r=r==null?r:JSON.stringify(r)}return r},fromAttribute(r,t){let e=r;switch(t){case Boolean:e=r!==null;break;case Number:e=r===null?null:Number(r);break;case Object:case Array:try{e=JSON.parse(r)}catch{e=null}}return e}},he=(r,t)=>!Xe(r,t),ce={attribute:!0,type:String,converter:Ft,reflect:!1,useDefault:!1,hasChanged:he};Symbol.metadata??=Symbol("metadata"),bt.litPropertyMetadata??=new WeakMap;var v=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=ce){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(t,e),!e.noAccessor){let s=Symbol(),o=this.getPropertyDescriptor(t,s,e);o!==void 0&&Ye(this.prototype,t,o)}}static getPropertyDescriptor(t,e,s){let{get:o,set:i}=Ze(this.prototype,t)??{get(){return this[e]},set(n){this[e]=n}};return{get:o,set(n){let c=o?.call(this);i?.call(this,n),this.requestUpdate(t,c,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??ce}static _$Ei(){if(this.hasOwnProperty(tt("elementProperties")))return;let t=Qe(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(tt("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(tt("properties"))){let e=this.properties,s=[...Je(e),...Ke(e)];for(let o of s)this.createProperty(o,e[o])}let t=this[Symbol.metadata];if(t!==null){let e=litPropertyMetadata.get(t);if(e!==void 0)for(let[s,o]of e)this.elementProperties.set(s,o)}this._$Eh=new Map;for(let[e,s]of this.elementProperties){let o=this._$Eu(e,s);o!==void 0&&this._$Eh.set(o,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){let e=[];if(Array.isArray(t)){let s=new Set(t.flat(1/0).reverse());for(let o of s)e.unshift(U(o))}else t!==void 0&&e.push(U(t));return e}static _$Eu(t,e){let s=e.attribute;return s===!1?void 0:typeof s=="string"?s:typeof t=="string"?t.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((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$EO??=new Set).add(t),this.renderRoot!==void 0&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){let t=new Map,e=this.constructor.elementProperties;for(let s of e.keys())this.hasOwnProperty(s)&&(t.set(s,this[s]),delete this[s]);t.size>0&&(this._$Ep=t)}createRenderRoot(){let t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return gt(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,e,s){this._$AK(t,s)}_$ET(t,e){let s=this.constructor.elementProperties.get(t),o=this.constructor._$Eu(t,s);if(o!==void 0&&s.reflect===!0){let i=(s.converter?.toAttribute!==void 0?s.converter:Ft).toAttribute(e,s.type);this._$Em=t,i==null?this.removeAttribute(o):this.setAttribute(o,i),this._$Em=null}}_$AK(t,e){let s=this.constructor,o=s._$Eh.get(t);if(o!==void 0&&this._$Em!==o){let i=s.getPropertyOptions(o),n=typeof i.converter=="function"?{fromAttribute:i.converter}:i.converter?.fromAttribute!==void 0?i.converter:Ft;this._$Em=o;let c=n.fromAttribute(e,i.type);this[o]=c??this._$Ej?.get(o)??c,this._$Em=null}}requestUpdate(t,e,s){if(t!==void 0){let o=this.constructor,i=this[t];if(s??=o.getPropertyOptions(t),!((s.hasChanged??he)(i,e)||s.useDefault&&s.reflect&&i===this._$Ej?.get(t)&&!this.hasAttribute(o._$Eu(t,s))))return;this.C(t,e,s)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(t,e,{useDefault:s,reflect:o,wrapped:i},n){s&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,n??e??this[t]),i!==!0||n!==void 0)||(this._$AL.has(t)||(this.hasUpdated||s||(e=void 0),this._$AL.set(t,e)),o===!0&&this._$Em!==t&&(this._$Eq??=new Set).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(e){Promise.reject(e)}let t=this.scheduleUpdate();return t!=null&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(let[o,i]of this._$Ep)this[o]=i;this._$Ep=void 0}let s=this.constructor.elementProperties;if(s.size>0)for(let[o,i]of s){let{wrapped:n}=i,c=this[o];n!==!0||this._$AL.has(o)||c===void 0||this.C(o,void 0,i,c)}}let t=!1,e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$EO?.forEach((s=>s.hostUpdate?.())),this.update(e)):this._$EM()}catch(s){throw t=!1,this._$EM(),s}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$EO?.forEach((e=>e.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&=this._$Eq.forEach((e=>this._$ET(e,this[e]))),this._$EM()}updated(t){}firstUpdated(t){}};v.elementStyles=[],v.shadowRootOptions={mode:"open"},v[tt("elementProperties")]=new Map,v[tt("finalized")]=new Map,tr?.({ReactiveElement:v}),(bt.reactiveElementVersions??=[]).push("2.1.1");var Yt=globalThis,yt=Yt.trustedTypes,pe=yt?yt.createPolicy("lit-html",{createHTML:r=>r}):void 0,Zt="$lit$",_=`lit$${Math.random().toFixed(9).slice(2)}$`,Jt="?"+_,er=`<${Jt}>`,R=document,rt=()=>R.createComment(""),st=r=>r===null||typeof r!="object"&&typeof r!="function",Kt=Array.isArray,ge=r=>Kt(r)||typeof r?.[Symbol.iterator]=="function",Xt=`[
|
|
2
|
+
\f\r]`,et=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,ue=/-->/g,le=/>/g,P=RegExp(`>|${Xt}(?:([^\\s"'>=/]+)(${Xt}*=${Xt}*(?:[^
|
|
3
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),de=/'/g,me=/"/g,be=/^(?:script|style|textarea|title)$/i,Qt=r=>(t,...e)=>({_$litType$:r,strings:t,values:e}),D=Qt(1),L=Qt(2),Sr=Qt(3),O=Symbol.for("lit-noChange"),f=Symbol.for("lit-nothing"),fe=new WeakMap,T=R.createTreeWalker(R,129);function ye(r,t){if(!Kt(r)||!r.hasOwnProperty("raw"))throw Error("invalid template strings array");return pe!==void 0?pe.createHTML(t):t}var $e=(r,t)=>{let e=r.length-1,s=[],o,i=t===2?"<svg>":t===3?"<math>":"",n=et;for(let c=0;c<e;c++){let a=r[c],p,m,u=-1,w=0;for(;w<a.length&&(n.lastIndex=w,m=n.exec(a),m!==null);)w=n.lastIndex,n===et?m[1]==="!--"?n=ue:m[1]!==void 0?n=le:m[2]!==void 0?(be.test(m[2])&&(o=RegExp("</"+m[2],"g")),n=P):m[3]!==void 0&&(n=P):n===P?m[0]===">"?(n=o??et,u=-1):m[1]===void 0?u=-2:(u=n.lastIndex-m[2].length,p=m[1],n=m[3]===void 0?P:m[3]==='"'?me:de):n===me||n===de?n=P:n===ue||n===le?n=et:(n=P,o=void 0);let A=n===P&&r[c+1].startsWith("/>")?" ":"";i+=n===et?a+er:u>=0?(s.push(p),a.slice(0,u)+Zt+a.slice(u)+_+A):a+_+(u===-2?c:A)}return[ye(r,i+(r[e]||"<?>")+(t===2?"</svg>":t===3?"</math>":"")),s]},ot=class r{constructor({strings:t,_$litType$:e},s){let o;this.parts=[];let i=0,n=0,c=t.length-1,a=this.parts,[p,m]=$e(t,e);if(this.el=r.createElement(p,s),T.currentNode=this.el.content,e===2||e===3){let u=this.el.content.firstChild;u.replaceWith(...u.childNodes)}for(;(o=T.nextNode())!==null&&a.length<c;){if(o.nodeType===1){if(o.hasAttributes())for(let u of o.getAttributeNames())if(u.endsWith(Zt)){let w=m[n++],A=o.getAttribute(u).split(_),dt=/([.?@])?(.*)/.exec(w);a.push({type:1,index:i,name:dt[2],strings:A,ctor:dt[1]==="."?xt:dt[1]==="?"?wt:dt[1]==="@"?vt:N}),o.removeAttribute(u)}else u.startsWith(_)&&(a.push({type:6,index:i}),o.removeAttribute(u));if(be.test(o.tagName)){let u=o.textContent.split(_),w=u.length-1;if(w>0){o.textContent=yt?yt.emptyScript:"";for(let A=0;A<w;A++)o.append(u[A],rt()),T.nextNode(),a.push({type:2,index:++i});o.append(u[w],rt())}}}else if(o.nodeType===8)if(o.data===Jt)a.push({type:2,index:i});else{let u=-1;for(;(u=o.data.indexOf(_,u+1))!==-1;)a.push({type:7,index:i}),u+=_.length-1}i++}}static createElement(t,e){let s=R.createElement("template");return s.innerHTML=t,s}};function M(r,t,e=r,s){if(t===O)return t;let o=s!==void 0?e._$Co?.[s]:e._$Cl,i=st(t)?void 0:t._$litDirective$;return o?.constructor!==i&&(o?._$AO?.(!1),i===void 0?o=void 0:(o=new i(r),o._$AT(r,e,s)),s!==void 0?(e._$Co??=[])[s]=o:e._$Cl=o),o!==void 0&&(t=M(r,o._$AS(r,t.values),o,s)),t}var $t=class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){let{el:{content:e},parts:s}=this._$AD,o=(t?.creationScope??R).importNode(e,!0);T.currentNode=o;let i=T.nextNode(),n=0,c=0,a=s[0];for(;a!==void 0;){if(n===a.index){let p;a.type===2?p=new z(i,i.nextSibling,this,t):a.type===1?p=new a.ctor(i,a.name,a.strings,this,t):a.type===6&&(p=new _t(i,this,t)),this._$AV.push(p),a=s[++c]}n!==a?.index&&(i=T.nextNode(),n++)}return T.currentNode=R,o}p(t){let e=0;for(let s of this._$AV)s!==void 0&&(s.strings!==void 0?(s._$AI(t,s,e),e+=s.strings.length-2):s._$AI(t[e])),e++}},z=class r{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,s,o){this.type=2,this._$AH=f,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=s,this.options=o,this._$Cv=o?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode,e=this._$AM;return e!==void 0&&t?.nodeType===11&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=M(this,t,e),st(t)?t===f||t==null||t===""?(this._$AH!==f&&this._$AR(),this._$AH=f):t!==this._$AH&&t!==O&&this._(t):t._$litType$!==void 0?this.$(t):t.nodeType!==void 0?this.T(t):ge(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==f&&st(this._$AH)?this._$AA.nextSibling.data=t:this.T(R.createTextNode(t)),this._$AH=t}$(t){let{values:e,_$litType$:s}=t,o=typeof s=="number"?this._$AC(t):(s.el===void 0&&(s.el=ot.createElement(ye(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===o)this._$AH.p(e);else{let i=new $t(o,this),n=i.u(this.options);i.p(e),this.T(n),this._$AH=i}}_$AC(t){let e=fe.get(t.strings);return e===void 0&&fe.set(t.strings,e=new ot(t)),e}k(t){Kt(this._$AH)||(this._$AH=[],this._$AR());let e=this._$AH,s,o=0;for(let i of t)o===e.length?e.push(s=new r(this.O(rt()),this.O(rt()),this,this.options)):s=e[o],s._$AI(i),o++;o<e.length&&(this._$AR(s&&s._$AB.nextSibling,o),e.length=o)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t!==this._$AB;){let s=t.nextSibling;t.remove(),t=s}}setConnected(t){this._$AM===void 0&&(this._$Cv=t,this._$AP?.(t))}},N=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,s,o,i){this.type=1,this._$AH=f,this._$AN=void 0,this.element=t,this.name=e,this._$AM=o,this.options=i,s.length>2||s[0]!==""||s[1]!==""?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=f}_$AI(t,e=this,s,o){let i=this.strings,n=!1;if(i===void 0)t=M(this,t,e,0),n=!st(t)||t!==this._$AH&&t!==O,n&&(this._$AH=t);else{let c=t,a,p;for(t=i[0],a=0;a<i.length-1;a++)p=M(this,c[s+a],e,a),p===O&&(p=this._$AH[a]),n||=!st(p)||p!==this._$AH[a],p===f?t=f:t!==f&&(t+=(p??"")+i[a+1]),this._$AH[a]=p}n&&!o&&this.j(t)}j(t){t===f?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},xt=class extends N{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===f?void 0:t}},wt=class extends N{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==f)}},vt=class extends N{constructor(t,e,s,o,i){super(t,e,s,o,i),this.type=5}_$AI(t,e=this){if((t=M(this,t,e,0)??f)===O)return;let s=this._$AH,o=t===f&&s!==f||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,i=t!==f&&(s===f||o);o&&this.element.removeEventListener(this.name,this,s),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}},_t=class{constructor(t,e,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){M(this,t)}},xe={M:Zt,P:_,A:Jt,C:1,L:$e,R:$t,D:ge,V:M,I:z,H:N,N:wt,U:vt,B:xt,F:_t},rr=Yt.litHtmlPolyfillSupport;rr?.(ot,z),(Yt.litHtmlVersions??=[]).push("3.3.1");var it=(r,t,e)=>{let s=e?.renderBefore??t,o=s._$litPart$;if(o===void 0){let i=e?.renderBefore??null;s._$litPart$=o=new z(t.insertBefore(rt(),i),i,void 0,e??{})}return o._$AI(r),o};var Gt=globalThis,j=class extends v{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){let t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){let e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=it(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return O}};j._$litElement$=!0,j.finalized=!0,Gt.litElementHydrateSupport?.({LitElement:j});var sr=Gt.litElementPolyfillSupport;sr?.({LitElement:j});(Gt.litElementVersions??=[]).push("4.2.1");var B=$`
|
|
4
|
+
@layer reset {
|
|
5
|
+
* {
|
|
6
|
+
margin: 0;
|
|
7
|
+
padding: 0;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
|
|
10
|
+
scrollbar-width: thin;
|
|
11
|
+
scrollbar-color: #888 transparent;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
::-webkit-scrollbar { width: 8px; }
|
|
15
|
+
::-webkit-scrollbar-track { background: transparent; }
|
|
16
|
+
::-webkit-scrollbar-thumb { background: #333; border-radius: 1em; }
|
|
17
|
+
::-webkit-scrollbar-thumb:hover { background: #444; }
|
|
18
|
+
}
|
|
19
|
+
`;function S(r,t){let e,s,o=[];function i(){e=[],s&&clearTimeout(s),s=void 0,o=[]}return i(),((...n)=>{e=n,s&&clearTimeout(s);let c=new Promise((a,p)=>{o.push({resolve:a,reject:p})});return s=setTimeout(()=>{Promise.resolve().then(()=>t(...e)).then(a=>{for(let{resolve:p}of o)p(a);i()}).catch(a=>{for(let{reject:p}of o)p(a);i()})},r),c})}function nt(){let r,t,e=new Promise((o,i)=>{r=o,t=i});function s(o){return o.then(r).catch(t),e}return{promise:e,resolve:r,reject:t,entangle:s}}var q=class r extends Map{static require(t,e){if(t.has(e))return t.get(e);throw new Error(`required key not found: "${e}"`)}static guarantee(t,e,s){if(t.has(e))return t.get(e);{let o=s();return t.set(e,o),o}}array(){return[...this]}require(t){return r.require(this,t)}guarantee(t,e){return r.guarantee(this,t,e)}};var we=(r=0)=>new Promise(t=>setTimeout(t,r));function At(r){return{map:t=>ve(r,t),filter:t=>_e(r,t)}}At.pipe=Object.freeze({map:r=>(t=>ve(t,r)),filter:r=>(t=>_e(t,r))});var ve=(r,t)=>Object.fromEntries(Object.entries(r).map(([e,s])=>[e,t(s,e)])),_e=(r,t)=>Object.fromEntries(Object.entries(r).filter(([e,s])=>t(s,e)));function Ae(){let r=new Set;async function t(...a){await Promise.all([...r].map(p=>p(...a)))}function e(a){return r.add(a),()=>{r.delete(a)}}async function s(...a){return t(...a)}function o(a){return e(a)}async function i(a){let{promise:p,resolve:m}=nt(),u=o(async(...w)=>{a&&await a(...w),m(w),u()});return p}function n(){r.clear()}let c={pub:s,sub:o,publish:t,subscribe:e,on:e,next:i,clear:n};return Object.assign(o,c),Object.assign(s,c),c}function St(r){let t=Ae();return r&&t.sub(r),t.sub}function te(r){let t=Ae();return r&&t.sub(r),t.pub}function Se(r){let t,e=!1,s=()=>{e=!0,clearTimeout(t)},o=async()=>{e||(await r(s),!e&&(t=setTimeout(o,0)))};return o(),s}function or(r,t,e){e==null?r.removeAttribute(t):typeof e=="string"?r.setAttribute(t,e):typeof e=="number"?r.setAttribute(t,e.toString()):typeof e=="boolean"?e===!0?r.setAttribute(t,""):r.removeAttribute(t):console.warn(`invalid attribute "${t}" type is "${typeof e}"`)}function Et(r,t){for(let[e,s]of t)or(r,e,s)}function Ee(r,t){let e=document.createElement(r);return Et(e,Object.entries(t)),e}function Ce(r,t){let e=new MutationObserver(t);return e.observe(r,{attributes:!0}),()=>e.disconnect()}var g={get:{string:(r,t)=>r.getAttribute(t)??void 0,number:(r,t)=>{let e=r.getAttribute(t);return e===null||!e?void 0:Number(e)},boolean:(r,t)=>r.getAttribute(t)!==null},set:{string:(r,t,e)=>(e===void 0?r.removeAttribute(t):r.setAttribute(t,e),!0),number:(r,t,e)=>(e===void 0?r.removeAttribute(t):r.setAttribute(t,e.toString()),!0),boolean:(r,t,e)=>(e?r.setAttribute(t,""):r.removeAttribute(t),!0)}};var ke=(r,t)=>new Proxy(t,{get:(e,s)=>{switch(t[s]){case String:return g.get.string(r,s);case Number:return g.get.number(r,s);case Boolean:return g.get.boolean(r,s);default:throw new Error(`invalid attribute type for "${s}"`)}},set:(e,s,o)=>{switch(t[s]){case String:return g.set.string(r,s,o);case Number:return g.set.number(r,s,o);case Boolean:return g.set.boolean(r,s,o);default:throw new Error(`invalid attribute type for "${s}"`)}}});var Ct=class{element;constructor(t){this.element=t}strings=new Proxy({},{get:(t,e)=>g.get.string(this.element,e),set:(t,e,s)=>g.set.string(this.element,e,s)});numbers=new Proxy({},{get:(t,e)=>g.get.number(this.element,e),set:(t,e,s)=>g.set.number(this.element,e,s)});booleans=new Proxy({},{get:(t,e)=>g.get.boolean(this.element,e),set:(t,e,s)=>g.set.boolean(this.element,e,s)})};function at(r){let t=new Ct(r);return{strings:t.strings,numbers:t.numbers,booleans:t.booleans,on:e=>Ce(r,e),spec:e=>ke(r,e)}}at.get=g.get;at.set=g.set;function ee(r,t){let e=[];for(let[s,o]of Object.entries(t))if(typeof o=="function")r.addEventListener(s,o),e.push(()=>r.removeEventListener(s,o));else{let[i,n]=o;r.addEventListener(s,n,i),e.push(()=>r.removeEventListener(s,n))}return()=>e.forEach(s=>s())}function Pe(r){return r.replace(/([a-zA-Z])(?=[A-Z])/g,"$1-").toLowerCase()}function Te(r,t={}){let{soft:e=!1,upgrade:s=!0}=t;for(let[o,i]of Object.entries(r)){let n=Pe(o),c=customElements.get(n);e&&c||(customElements.define(n,i),s&&document.querySelectorAll(n).forEach(a=>{a.constructor===HTMLElement&&customElements.upgrade(a)}))}}function Re(r,t){let e=r.querySelector(t);if(!e)throw new Error(`element not found (${t})`);return e}var kt=class r{element;constructor(t){this.element=t}in(t){return new r(typeof t=="string"?Re(this.element,t):t)}require(t){let e=this.element.querySelector(t);if(!e)throw new Error(`element not found (${t})`);return e}maybe(t){return this.element.querySelector(t)}all(t){return Array.from(this.element.querySelectorAll(t))}render(...t){return it(t,this.element)}attrs(){return at(this.element)}events(t){return ee(this.element,t)}};function l(r){return typeof r=="string"?Re(document,r):new kt(r)}var E=new kt(document);l.in=E.in.bind(E);l.require=E.require.bind(E);l.maybe=E.maybe.bind(E);l.all=E.all.bind(E);l.el=Ee;l.events=ee;l.attrs=at;l.register=Te;l.render=(r,...t)=>it(t,r);var re=class{#t=[];#e=new WeakMap;#r=[];#s=new Set;notifyRead(t){this.#t.at(-1)?.add(t)}async notifyWrite(t){if(this.#s.has(t))throw new Error("circularity forbidden");let e=this.#o(t).pub();return this.#r.at(-1)?.add(e),e}observe(t){this.#t.push(new Set);let e=t();return{seen:this.#t.pop(),result:e}}subscribe(t,e){return this.#o(t)(async()=>{let s=new Set;this.#r.push(s),this.#s.add(t),s.add(e()),this.#s.delete(t),await Promise.all(s),this.#r.pop()})}#o(t){let e=this.#e.get(t);return e||(e=St(),this.#e.set(t,e)),e}},b=globalThis[Symbol.for("e280.tracker")]??=new re;var V=class{sneak;constructor(t){this.sneak=t}get(){return b.notifyRead(this),this.sneak}get value(){return this.get()}};var I=class extends V{on=St();dispose(){this.on.clear()}};function Pt(r,t=r){let{seen:e,result:s}=b.observe(r),o=S(0,t),i=[],n=()=>i.forEach(c=>c());for(let c of e){let a=b.subscribe(c,o);i.push(a)}return{result:s,dispose:n}}function W(r,t){return r===t}var Tt=class extends I{#t;constructor(t,e){let s=e?.compare??W,{result:o,dispose:i}=Pt(t,async()=>{let n=t();!s(this.sneak,n)&&(this.sneak=n,await Promise.all([b.notifyWrite(this),this.on.pub(n)]))});super(o),this.#t=i}toString(){return`(derived "${String(this.get())}")`}dispose(){super.dispose(),this.#t()}get core(){return this}fn(){let t=this;function e(){return t.get()}return e.core=t,e.get=t.get.bind(t),e.on=t.on,e.dispose=t.dispose.bind(t),e.fn=t.fn.bind(t),Object.defineProperty(e,"value",{get:()=>t.value}),Object.defineProperty(e,"sneak",{get:()=>t.sneak}),e}};var Rt=class extends V{#t;#e;#r=!1;#s;constructor(t,e){super(void 0),this.#t=t,this.#e=e?.compare??W}toString(){return`($lazy "${String(this.get())}")`}get(){if(!this.#s){let{result:t,dispose:e}=Pt(this.#t,()=>this.#r=!0);this.#s=e,this.sneak=t}if(this.#r){this.#r=!1;let t=this.#t();!this.#e(this.sneak,t)&&(this.sneak=t,b.notifyWrite(this))}return super.get()}dispose(){this.#s&&this.#s()}get core(){return this}fn(){let t=this;function e(){return t.get()}return e.core=t,e.get=t.get.bind(t),e.dispose=t.dispose.bind(t),e.fn=t.fn.bind(t),Object.defineProperty(e,"value",{get:()=>t.value}),Object.defineProperty(e,"sneak",{get:()=>t.sneak}),e}};var Ot=class extends I{#t=!1;#e;constructor(t,e){super(t),this.#e=e?.compare??W}toString(){return`($signal "${String(this.get())}")`}async set(t,e=!1){let s=this.sneak;return this.sneak=t,(e||!this.#e(s,t))&&await this.publish(),t}get value(){return this.get()}set value(t){this.set(t)}async publish(){if(this.#t)throw new Error("forbid circularity");let t=this.sneak,e=Promise.resolve();try{this.#t=!0,e=Promise.all([b.notifyWrite(this),this.on.publish(t)])}finally{this.#t=!1}return await e,t}get core(){return this}fn(){let t=this;function e(s){return arguments.length===0?t.get():t.set(arguments[0])}return e.core=t,e.get=t.get.bind(t),e.set=t.set.bind(t),e.on=t.on,e.dispose=t.dispose.bind(t),e.publish=t.publish.bind(t),e.fn=t.fn.bind(t),Object.defineProperty(e,"value",{get:()=>t.value,set:s=>t.value=s}),Object.defineProperty(e,"sneak",{get:()=>t.sneak,set:s=>t.sneak=s}),e}};function ir(r,t){return new Rt(r,t).fn()}function Oe(r,t){return new Tt(r,t).fn()}function y(r,t){return new Ot(r,t).fn()}y.lazy=ir;y.derived=Oe;var C=class{#t=new q;effect(t,e){let{seen:s,result:o}=b.observe(t);for(let i of s)this.#t.guarantee(i,()=>b.subscribe(i,e));for(let[i,n]of this.#t)s.has(i)||(n(),this.#t.delete(i));return o}clear(){for(let t of this.#t.values())t();this.#t.clear()}};var F=class{element;response;#t;constructor(t,e){this.element=t,this.response=e}start(){this.#t||(this.#t=l.attrs(this.element).on(this.response))}stop(){this.#t&&this.#t(),this.#t=void 0}};function Mt(r,t){gt(r,ar(t))}function ar(r){let t=[];if(Array.isArray(r)){let e=new Set(r.flat(1/0).reverse());for(let s of e)t.unshift(U(s))}else r!==void 0&&t.push(U(r));return t}var H={status:r=>r[0],value:r=>r[0]==="ready"?r[1]:void 0,error:r=>r[0]==="error"?r[1]:void 0,select:(r,t)=>{switch(r[0]){case"loading":return t.loading();case"error":return t.error(r[1]);case"ready":return t.ready(r[1]);default:throw new Error("unknown op status")}},morph:(r,t)=>H.select(r,{loading:()=>["loading"],error:e=>["error",e],ready:e=>["ready",t(e)]}),all:(...r)=>{let t=[],e=[],s=0;for(let o of r)switch(o[0]){case"loading":s++;break;case"ready":t.push(o[1]);break;case"error":e.push(o[1]);break}return e.length>0?["error",e]:s===0?["ready",t]:["loading"]}};var X=class{static loading(){return new this}static ready(t){return new this(["ready",t])}static error(t){return new this(["error",t])}static promise(t){let e=new this;return e.promise(t),e}static load(t){return this.promise(t())}static all(...t){let e=t.map(s=>s.pod);return H.all(...e)}signal;#t=0;#e=te();#r=te();constructor(t=["loading"]){this.signal=y(t)}get wait(){return new Promise((t,e)=>{this.#e.next().then(([s])=>t(s)),this.#r.next().then(([s])=>e(s))})}get then(){return this.wait.then.bind(this.wait)}get catch(){return this.wait.catch.bind(this.wait)}get finally(){return this.wait.finally.bind(this.wait)}async setLoading(){await this.signal.set(["loading"])}async setReady(t){await this.signal.set(["ready",t]),await this.#e(t)}async setError(t){await this.signal.set(["error",t]),await this.#r(t)}async promise(t){let e=++this.#t;await this.setLoading();try{let s=await t;return e===this.#t&&await this.setReady(s),s}catch(s){console.error(s),e===this.#t&&await this.setError(s)}}async load(t){return this.promise(t())}get pod(){return this.signal.get()}set pod(t){this.signal.set(t)}get status(){return this.signal.get()[0]}get value(){return H.value(this.signal.get())}get error(){return H.error(this.signal.get())}get isLoading(){return this.status==="loading"}get isReady(){return this.status==="ready"}get isError(){return this.status==="error"}require(){let t=this.signal.get();if(t[0]!=="ready")throw new Error("required value not ready");return t[1]}select(t){return H.select(this.signal.get(),t)}morph(t){return H.morph(this.pod,t)}};var Nt=class{#t=[];#e=[];mount(t){this.#t.push(t),this.#e.push(t())}unmountAll(){for(let t of this.#e)t();this.#e=[]}remountAll(){for(let t of this.#t)this.#e.push(t())}};var Ht=class{#t;#e;constructor(t){this.#t=t,this.#e=l.attrs(t.element)}get strings(){return this.#e.strings}get numbers(){return this.#e.numbers}get booleans(){return this.#e.booleans}spec(t){return this.#t.once(()=>this.#e.spec(t))}on(t){return this.#t.mount(()=>this.#e.on(t))}};var ct=Symbol(),ht=Symbol(),pt=Symbol(),Y=class{element;shadow;renderNow;render;attrs;#t=0;#e=0;#r=new q;#s=nt();#o=new Nt;[ct](t){this.#t++,this.#e=0,this.#s=nt();let e=t();return this.#s.resolve(),e}[ht](){this.#o.unmountAll()}[pt](){this.#o.remountAll()}constructor(t,e,s,o){this.element=t,this.shadow=e,this.renderNow=s,this.render=o,this.attrs=new Ht(this)}get renderCount(){return this.#t}get rendered(){return this.#s.promise}name(t){this.once(()=>this.element.setAttribute("view",t))}styles(...t){this.once(()=>Mt(this.shadow,t))}css(...t){return this.styles(...t)}once(t){return this.#r.guarantee(this.#e++,t)}mount(t){return this.once(()=>this.#o.mount(t))}life(t){let e;return this.mount(()=>{let[s,o]=t();return e=s,o}),e}wake(t){return this.life(()=>[t(),()=>{}])}op=(()=>{let t=this;function e(s){return t.once(()=>X.load(s))}return e.load=e,e.promise=s=>this.once(()=>X.promise(s)),e})();signal=(()=>{let t=this;function e(s,o){return t.once(()=>y(s,o))}return e.derived=function(o,i){return t.once(()=>y.derived(o,i))},e.lazy=function(o,i){return t.once(()=>y.lazy(o,i))},e})();derived(t,e){return this.once(()=>y.derived(t,e))}lazy(t,e){return this.once(()=>y.lazy(t,e))}};var k=class extends HTMLElement{static styles;shadow;#t;#e=0;#r=new C;#s=new F(this,()=>this.update());createShadow(){return this.attachShadow({mode:"open"})}constructor(){super(),this.shadow=this.createShadow(),this.#t=new Y(this,this.shadow,this.updateNow,this.update)}render(t){}updateNow=()=>{this.#t[ct](()=>{l.render(this.shadow,this.#r.effect(()=>this.render(this.#t),this.update))})};update=S(0,this.updateNow);connectedCallback(){if(this.#e===0){let t=this.constructor.styles;t&&Mt(this.shadow,t),this.updateNow()}else this.#t[pt]();this.#s.start(),this.#e++}disconnectedCallback(){this.#t[ht](),this.#r.clear(),this.#s.stop()}};var Ut=class{#t;#e;constructor(t,e){this.#e=t,this.#t=e}attr(t,e){return this.#e.attrs.set(t,e),this}children(...t){return this.#e.children.push(...t),this}render(){return this.#t(this.#e)}};var ut=class{props;attrs=new Map;children=[];constructor(t){this.props=t}};function Me(r,t,e,s){return class extends t{static view=Z(s,r);#t=new C;createShadow(){return this.attachShadow(r)}render(i){return s(i)(...this.#t.effect(()=>e(this),()=>this.update()))}}}var{I:Ti}=xe;var Ne=r=>r.strings===void 0;var He={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},se=r=>(...t)=>({_$litDirective$:r,values:t}),zt=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,s){this._$Ct=t,this._$AM=e,this._$Ci=s}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}};var lt=(r,t)=>{let e=r._$AN;if(e===void 0)return!1;for(let s of e)s._$AO?.(t,!1),lt(s,t);return!0},Dt=r=>{let t,e;do{if((t=r._$AM)===void 0)break;e=t._$AN,e.delete(r),r=t}while(e?.size===0)},Ue=r=>{for(let t;t=r._$AM;r=t){let e=t._$AN;if(e===void 0)t._$AN=e=new Set;else if(e.has(r))break;e.add(r),pr(t)}};function cr(r){this._$AN!==void 0?(Dt(this),this._$AM=r,Ue(this)):this._$AM=r}function hr(r,t=!1,e=0){let s=this._$AH,o=this._$AN;if(o!==void 0&&o.size!==0)if(t)if(Array.isArray(s))for(let i=e;i<s.length;i++)lt(s[i],!1),Dt(s[i]);else s!=null&&(lt(s,!1),Dt(s));else lt(this,r)}var pr=r=>{r.type==He.CHILD&&(r._$AP??=hr,r._$AQ??=cr)},Lt=class extends zt{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,s){super._$AT(t,e,s),Ue(this),this.isConnected=t._$AU}_$AO(t,e=!0){t!==this.isConnected&&(this.isConnected=t,t?this.reconnected?.():this.disconnected?.()),e&&(lt(this,t),Dt(this))}setValue(t){if(Ne(this._$Ct))this._$Ct._$AI(t,this);else{let e=[...this._$Ct._$AH];e[this._$Ci]=t,this._$Ct._$AI(e,this,0)}}disconnected(){}reconnected(){}};var jt=class r extends HTMLElement{static#t=!1;static make(){return this.#t||(l.register({SlyView:r},{soft:!0,upgrade:!0}),this.#t=!0),document.createElement("sly-view")}};var Bt=class{viewFn;settings;#t=jt.make();#e=new C;#r;#s;#o;#i=new F(this.#t,()=>this.#a());constructor(t,e){this.viewFn=t,this.settings=e,this.#s=this.#t.attachShadow(this.settings),this.#r=new Y(this.#t,this.#s,this.#n,this.#a)}update(t){return this.#o=t,this.#n(),this.#t}#n=()=>{this.#r[ct](()=>{let t=this.#e.effect(()=>this.viewFn(this.#r)(...this.#o.props),()=>this.#a());Et(this.#t,[...this.#o.attrs]),l.render(this.#s,t),l.render(this.#t,this.#o.children),this.#i.start()})};#a=S(0,this.#n);disconnected(){this.#r[ht](),this.#e.clear(),this.#i.stop()}reconnected(){this.#r[pt](),this.#i.start()}};function ze(r,t){return se(class extends Lt{#t=new Bt(r,t);render(s){return this.#t.update(s)}disconnected(){this.#t.disconnected()}reconnected(){this.#t.reconnected()}})}function Z(r,t){let e=ze(r,t);function s(...o){return e(new ut(o))}return s.props=(...o)=>new Ut(new ut(o),e),s.transmute=o=>Z(n=>{let c=r(n);return(...a)=>c(...o(...a))},t),s.component=(o=k)=>({props:i=>Me(t,o,i,r)}),s}function x(r){return Z(r,{mode:"open"})}x.settings=r=>({render:t=>Z(t,r)});x.render=x;x.component=r=>x(t=>()=>r(t)).component(k).props(()=>[]);function h(r,t){return()=>ur({hz:r,frames:t})}var ur=x(r=>({hz:t,frames:e})=>{r.name("loading"),r.styles(B,lr);let s=r.signal(0);return r.mount(()=>Se(async()=>{await we(1e3/t);let o=s.get()+1;s.set(o>=e.length?0:o)})),e.at(s.get())}),lr=$`
|
|
20
|
+
:host {
|
|
21
|
+
font-family: monospace;
|
|
22
|
+
white-space: pre;
|
|
23
|
+
user-select: none;
|
|
24
|
+
}
|
|
25
|
+
`;var d=20,J=10,K=4,fn=h(d,["|","/","-","\\"]),gn=h(d,["\u2808","\u2810","\u2820","\u2880","\u2840","\u2804","\u2802","\u2801"]),bn=h(d,["\u2B06\uFE0F","\u2197\uFE0F","\u27A1\uFE0F","\u2198\uFE0F","\u2B07\uFE0F","\u2199\uFE0F","\u2B05\uFE0F","\u2196\uFE0F"]),yn=h(d,["\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B1\u25B0\u25B1\u25B1\u25B1","\u25B1\u25B1\u25B0\u25B1\u25B1","\u25B1\u25B1\u25B1\u25B0\u25B1","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B1","\u25B1\u25B1\u25B0\u25B1\u25B1","\u25B1\u25B0\u25B1\u25B1\u25B1"]),$n=h(d,["\u25B1\u25B1\u25B0\u25B1\u25B1","\u25B1\u25B1\u25B1\u25B0\u25B1","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B1","\u25B1\u25B1\u25B0\u25B1\u25B1","\u25B1\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B1\u25B0\u25B1\u25B1\u25B1"]),xn=h(d,["\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B1\u25B1","\u25B1\u25B0\u25B0\u25B0\u25B1","\u25B1\u25B1\u25B0\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B0\u25B0\u25B0","\u25B1\u25B0\u25B0\u25B0\u25B1","\u25B0\u25B0\u25B0\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1"]),wn=h(d,["\u25B1\u25B1\u25B1\u25B1\u25B1","\u25B1\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B1\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B1\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B1\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B1","\u25B0\u25B0\u25B0\u25B0\u25B0","\u25B0\u25B0\u25B0\u25B0\u25B0","\u25B1\u25B0\u25B0\u25B0\u25B0","\u25B1\u25B1\u25B0\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B0\u25B0","\u25B1\u25B1\u25B1\u25B1\u25B0"]),vn=h(d,["\u2581\u2581\u2581\u2581\u2581","\u2581\u2581\u2581\u2581\u2581","\u2588\u2581\u2581\u2581\u2581","\u2588\u2588\u2581\u2581\u2581","\u2588\u2588\u2588\u2581\u2581","\u2588\u2588\u2588\u2588\u2581","\u2588\u2588\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2588","\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2588\u2588\u2588","\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2588"]),_n=h(d,["\u2588\u2581\u2581\u2581\u2581","\u2588\u2581\u2581\u2581\u2581","\u2588\u2588\u2581\u2581\u2581","\u2588\u2588\u2588\u2581\u2581","\u2588\u2588\u2588\u2588\u2581","\u2588\u2588\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2588","\u2581\u2588\u2588\u2588\u2588","\u2581\u2581\u2588\u2588\u2588","\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2581\u2588","\u2581\u2581\u2581\u2588\u2588","\u2581\u2581\u2588\u2588\u2588","\u2581\u2588\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2588","\u2588\u2588\u2588\u2588\u2581","\u2588\u2588\u2588\u2581\u2581","\u2588\u2588\u2581\u2581\u2581"]),An=h(K,["\u{1F6B6}","\u{1F3C3}"]),Sn=h(J,["\u25F7","\u25F6","\u25F5","\u25F4"]),En=h(d,["=----","-=---","--=--","---=-","----=","----=","---=-","--=--","-=---","=----"]),Cn=h(d,["o----","-o---","--o--","---o-","----o","----o","---o-","--o--","-o---","o----"]),kn=h(J,["[ ]","[ ]","[= ]","[== ]","[===]","[ ==]","[ =]"]),Pn=h(J,["[ ]","[ ]","[= ]","[== ]","[===]","[ ==]","[ =]","[ ]","[ ]","[ =]","[ ==]","[===]","[== ]","[= ]"]),Tn=h(J,[" "," ",". ",".. ","..."," .."," ."]),Rn=h(d,[". ",". ",".. ","..."," .."," ."," ."," ..","...",".. "]),On=h(d,[".....",".....",":....","::...",":::..","::::.",":::::",":::::",".::::","..:::","...::","....:"]),Mn=h(d,[":....",":....","::...",".::..","..::.","...::","....:","....:","...::","..::.",".::..","::..."]),Nn=h(d,[".....",".....","..:..",".:::.",".:::.",":::::",":::::","::.::",":...:"]),Hn=h(d,[".....",".....","..:..",".:::.",".:::.",":::::",":::::","::.::",":...:",".....",".....",":...:","::.::",":::::",":::::",".:::.",".:::.","..:.."]),Un=h(d,["000","100","110","111","011","001"]),zn=h(d,["11111","01111","00111","10011","11001","01100","00110","10011","11001","11100","11110"]),Dn=h(d,["11111","01111","10111","11011","11101","11110","11111","11110","11101","11011","10111","01111"]),Ln=h(K,["\u{1F539}","\u{1F535}"]),jn=h(J,["\u{1F642}","\u{1F642}","\u{1F617}","\u{1F619}","\u{1F618}","\u{1F618}","\u{1F619}"]),Bn=h(d,["\u{1F550}","\u{1F551}","\u{1F552}","\u{1F553}","\u{1F554}","\u{1F555}","\u{1F556}","\u{1F557}","\u{1F558}","\u{1F559}","\u{1F55A}","\u{1F55B}"]),qn=h(d,["\u{1F91C} \u{1F91B}","\u{1F91C} \u{1F91B}","\u{1F91C} \u{1F91B}"," \u{1F91C} \u{1F91B} "," \u{1F91C}\u{1F91B} "," \u{1F91C}\u{1F91B} "," \u{1F91C}\u{1F4A5}\u{1F91B} ","\u{1F91C} \u{1F4A5} \u{1F91B}","\u{1F91C} \u2728 \u{1F91B}","\u{1F91C} \u2728 \u{1F91B}"]),dr=h(K,["\u{1F30E}","\u{1F30F}","\u{1F30D}"]),Vn=h(K,["\u{1F513}","\u{1F512}"]),In=h(K,["\u{1F505}","\u{1F506}"]),Wn=h(K,["\u{1F508}","\u{1F508}","\u{1F509}","\u{1F50A}","\u{1F50A}","\u{1F509}"]),Fn=h(J,["\u{1F311}","\u{1F311}","\u{1F311}","\u{1F318}","\u{1F317}","\u{1F316}","\u{1F315}","\u{1F314}","\u{1F313}","\u{1F312}"]);var fr=x(r=>t=>(r.name("error"),r.styles(B,gr),typeof t=="string"?t:t instanceof Error?D`<strong>${t.name}:</strong> <span>${t.message}</span>`:"error")),gr=$`
|
|
26
|
+
:host {
|
|
27
|
+
font-family: monospace;
|
|
28
|
+
color: red;
|
|
29
|
+
}
|
|
30
|
+
`;function xr(r,t){return t.transmute((...e)=>[r,...e])}function Le(r){return At(r).map(t=>t.view)}function je(r,t){return At(t).map(e=>class extends e{context=r;static view=xr(r,super.view)})}var Be=$`
|
|
31
|
+
|
|
32
|
+
button {
|
|
33
|
+
background: transparent;
|
|
34
|
+
border: none;
|
|
35
|
+
font-size: inherit;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
button {
|
|
39
|
+
opacity: 0.5;
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
cursor: copy;
|
|
42
|
+
|
|
43
|
+
color: inherit;
|
|
44
|
+
transition: all 300ms linear;
|
|
45
|
+
|
|
46
|
+
&:is(:hover, :focus-visible) {
|
|
47
|
+
opacity: 1;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
[data-status="invalid"] {
|
|
52
|
+
color: var(--invalid);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
[data-status="good"] {
|
|
56
|
+
opacity: 1;
|
|
57
|
+
color: var(--good);
|
|
58
|
+
filter: drop-shadow(0 0 0.3em color-mix(in oklab, transparent, currentColor 50%));
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
[data-status="bad"] {
|
|
62
|
+
opacity: 1;
|
|
63
|
+
color: var(--bad);
|
|
64
|
+
filter: drop-shadow(0 0 0.3em color-mix(in oklab, transparent, currentColor 50%));
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
svg {
|
|
68
|
+
width: 1em;
|
|
69
|
+
height: 1em;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
`;var qt=$`
|
|
73
|
+
|
|
74
|
+
${B}
|
|
75
|
+
|
|
76
|
+
:host {
|
|
77
|
+
display: block;
|
|
78
|
+
--bg: var(--shiny-bg, #111);
|
|
79
|
+
--alpha: var(--shiny-alpha, #afa);
|
|
80
|
+
--good: var(--shiny-good, #0f4);
|
|
81
|
+
--bad: var(--shiny-bad, #f40);
|
|
82
|
+
--invalid: var(--shiny-invalid, #8888);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
`;var Q=class extends k{context={theme:qt}};var oe=L`<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-clipboard"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" /><path d="M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /></svg>`;var qe=L`<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" class="icon icon-tabler icons-tabler-filled icon-tabler-clipboard-x"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M17.997 4.17a3 3 0 0 1 2.003 2.83v12a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 2.003 -2.83a4 4 0 0 0 3.997 3.83h4a4 4 0 0 0 3.98 -3.597zm-7.29 7.123a1 1 0 0 0 -1.414 0l-.083 .094a1 1 0 0 0 .083 1.32l1.292 1.293l-1.292 1.293a1 1 0 0 0 0 1.414l.094 .083a1 1 0 0 0 1.32 -.083l1.293 -1.293l1.293 1.293a1 1 0 0 0 1.414 0l.083 -.094a1 1 0 0 0 -.083 -1.32l-1.293 -1.293l1.293 -1.293a1 1 0 0 0 0 -1.414l-.094 -.083a1 1 0 0 0 -1.32 .083l-1.293 1.292zm3.293 -9.293a2 2 0 1 1 0 4h-4a2 2 0 1 1 0 -4z" /></svg>`;var Ve=L`<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" class="icon icon-tabler icons-tabler-filled icon-tabler-clipboard-check"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M17.997 4.17a3 3 0 0 1 2.003 2.83v12a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 2.003 -2.83a4 4 0 0 0 3.997 3.83h4a4 4 0 0 0 3.98 -3.597zm-3.704 7.123l-3.293 3.292l-1.293 -1.292a1 1 0 1 0 -1.414 1.414l2 2a1 1 0 0 0 1.414 0l4 -4a1 1 0 0 0 -1.414 -1.414m-.293 -9.293a2 2 0 1 1 0 4h-4a2 2 0 1 1 0 -4z" /></svg>`;var Vt=class extends x(t=>(e,s,o=1e3)=>{t.name("shiny-copy"),t.styles(e.theme,Be);let i=()=>s===void 0?"invalid":"neutral",n=t.signal(i()),c=t.once(()=>S(o,()=>n.set(i()))),a=t.once(()=>async u=>{await n.set(u),await c()});async function p(){if(s!==void 0)try{await navigator.clipboard.writeText(s),await a("good")}catch(u){console.error(u),await a("bad")}}let m=(()=>{switch(n.get()){case"neutral":return oe;case"invalid":return oe;case"good":return Ve;case"bad":return qe;default:throw new Error("invalid copy status")}})();return D`
|
|
86
|
+
<button data-status="${n.get()}" @click="${p}">
|
|
87
|
+
${m}
|
|
88
|
+
</button>
|
|
89
|
+
`}).component(class extends Q{attrs=l.attrs(this).spec({text:String,ms:Number})}).props(t=>[t.context,t.attrs.text,t.attrs.ms]){};var Ie=$`
|
|
90
|
+
|
|
91
|
+
button {
|
|
92
|
+
padding: 1em;
|
|
93
|
+
min-width: 4em;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
`;var It=class extends x(t=>(e,s)=>{t.styles(e.theme,Ie);let o=t.signal(s);return D`
|
|
97
|
+
<button @click="${()=>{o.value++}}">
|
|
98
|
+
${o()}
|
|
99
|
+
</button>
|
|
100
|
+
`}).component(class extends Q{attrs=l.attrs(this).spec({start:Number})}).props(t=>[t.context,t.attrs.start??1]){};var We={ShinyCopy:Vt,ShinyExample:It};function Fe(r){let t=je(r,We),e=Le(t);return{components:t,views:e}}l.register(Fe({theme:qt}).components);
|
|
101
|
+
/*! Bundled license information:
|
|
102
|
+
|
|
103
|
+
@lit/reactive-element/css-tag.js:
|
|
104
|
+
(**
|
|
105
|
+
* @license
|
|
106
|
+
* Copyright 2019 Google LLC
|
|
107
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
108
|
+
*)
|
|
109
|
+
|
|
110
|
+
@lit/reactive-element/reactive-element.js:
|
|
111
|
+
lit-html/lit-html.js:
|
|
112
|
+
lit-element/lit-element.js:
|
|
113
|
+
lit-html/directive.js:
|
|
114
|
+
lit-html/async-directive.js:
|
|
115
|
+
(**
|
|
116
|
+
* @license
|
|
117
|
+
* Copyright 2017 Google LLC
|
|
118
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
119
|
+
*)
|
|
120
|
+
|
|
121
|
+
lit-html/is-server.js:
|
|
122
|
+
(**
|
|
123
|
+
* @license
|
|
124
|
+
* Copyright 2022 Google LLC
|
|
125
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
126
|
+
*)
|
|
127
|
+
|
|
128
|
+
lit-html/directive-helpers.js:
|
|
129
|
+
(**
|
|
130
|
+
* @license
|
|
131
|
+
* Copyright 2020 Google LLC
|
|
132
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
133
|
+
*)
|
|
134
|
+
*/
|
|
135
|
+
//# sourceMappingURL=install.bundle.min.js.map
|