@e280/shiny 0.1.0-15 → 0.1.0-17
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 +34 -80
- package/package.json +18 -25
- package/s/_archive/demo/utils/lipsum.ts +19 -0
- package/s/_archive/demo/views/showcase/style.css.ts +53 -0
- package/s/_archive/demo/views/showcase/view.ts +54 -0
- package/s/_archive/index.html.ts +34 -0
- package/s/_archive/index.ts +19 -0
- package/s/_archive/utils/states.ts +15 -0
- package/s/demo/main.bundle.ts +16 -0
- package/s/demo/main.css +71 -0
- package/s/demo/parts/exhibit.ts +15 -0
- package/s/demo/utils/lipsum.ts +1 -1
- package/s/demo/views/codebox/style.css.ts +43 -0
- package/s/demo/views/codebox/use-prism-styles.ts +13 -0
- package/s/demo/views/codebox/view.ts +39 -0
- package/s/demo/views/showcase/style.css.ts +42 -11
- package/s/demo/views/showcase/view.ts +41 -45
- package/s/demo/views/stylebox/view.ts +21 -0
- package/s/index.html.ts +42 -29
- package/s/index.ts +1 -17
- package/s/test.ts +5 -0
- package/s/theme/parts/core.ts +34 -0
- package/s/theme/parts/reset.ts +20 -0
- package/s/theme/parts/vars.ts +41 -0
- package/s/theme/theme-string.ts +15 -0
- package/s/theme/theme.css.ts +7 -0
- package/s/views/button/showcase.ts +43 -0
- package/s/views/button/style.css.ts +110 -0
- package/s/views/button/view.ts +30 -0
- package/s/views/copy/parts/copy-status.ts +3 -0
- package/s/views/copy/parts/determine-base-status.ts +7 -0
- package/s/views/copy/parts/use-copier.ts +20 -0
- package/s/views/copy/showcase.ts +54 -0
- package/s/views/copy/style.css.ts +46 -0
- package/s/views/copy/view.ts +58 -0
- package/s/views/drawer/control.ts +31 -0
- package/s/views/drawer/showcase.ts +83 -0
- package/s/views/drawer/style.css.ts +128 -0
- package/s/views/drawer/view.ts +76 -0
- package/s/views/tabs/control.ts +31 -0
- package/s/views/tabs/showcase.ts +89 -0
- package/s/views/tabs/style.css.ts +46 -0
- package/s/views/tabs/view.ts +66 -0
- package/x/demo/main.bundle.js +13 -0
- package/x/demo/main.bundle.js.map +1 -0
- package/x/demo/main.bundle.min.js +794 -0
- package/x/demo/main.bundle.min.js.map +7 -0
- package/x/demo/main.css +71 -0
- package/x/demo/parts/exhibit.d.ts +11 -0
- package/x/demo/parts/exhibit.js +2 -0
- package/x/demo/parts/exhibit.js.map +1 -0
- package/x/demo/utils/lipsum.d.ts +1 -1
- package/x/demo/utils/lipsum.js +1 -1
- package/x/demo/utils/lipsum.js.map +1 -1
- package/x/demo/views/codebox/style.css.js +42 -0
- package/x/demo/views/codebox/style.css.js.map +1 -0
- package/x/demo/views/codebox/use-prism-styles.d.ts +1 -0
- package/x/demo/views/codebox/use-prism-styles.js +12 -0
- package/x/demo/views/codebox/use-prism-styles.js.map +1 -0
- package/x/demo/views/codebox/view.d.ts +2 -0
- package/x/demo/views/codebox/view.js +29 -0
- package/x/demo/views/codebox/view.js.map +1 -0
- package/x/demo/views/showcase/style.css.js +42 -11
- package/x/demo/views/showcase/style.css.js.map +1 -1
- package/x/demo/views/showcase/view.d.ts +2 -7
- package/x/demo/views/showcase/view.js +39 -35
- package/x/demo/views/showcase/view.js.map +1 -1
- package/x/demo/views/stylebox/view.d.ts +3 -0
- package/x/demo/views/stylebox/view.js +13 -0
- package/x/demo/views/stylebox/view.js.map +1 -0
- package/x/index.d.ts +1 -11
- package/x/index.html +212 -62
- package/x/index.html.js +40 -26
- package/x/index.html.js.map +1 -1
- package/x/index.js +1 -11
- package/x/index.js.map +1 -1
- package/x/test.js +3 -0
- package/x/test.js.map +1 -0
- package/x/theme/parts/core.d.ts +1 -0
- package/x/theme/parts/core.js +33 -0
- package/x/theme/parts/core.js.map +1 -0
- package/x/theme/parts/reset.d.ts +1 -0
- package/x/theme/parts/reset.js +19 -0
- package/x/theme/parts/reset.js.map +1 -0
- package/x/theme/parts/vars.d.ts +1 -0
- package/x/theme/parts/vars.js +34 -0
- package/x/theme/parts/vars.js.map +1 -0
- package/x/theme/theme-string.d.ts +1 -0
- package/x/theme/theme-string.js +14 -0
- package/x/theme/theme-string.js.map +1 -0
- package/x/theme/theme.css.d.ts +1 -0
- package/x/theme/theme.css.js +4 -0
- package/x/theme/theme.css.js.map +1 -0
- package/x/views/button/showcase.d.ts +1 -0
- package/x/views/button/showcase.js +41 -0
- package/x/views/button/showcase.js.map +1 -0
- package/x/views/button/style.css.js +109 -0
- package/x/views/button/style.css.js.map +1 -0
- package/x/views/button/view.d.ts +4 -0
- package/x/views/button/view.js +22 -0
- package/x/views/button/view.js.map +1 -0
- package/x/views/copy/parts/copy-status.d.ts +1 -0
- package/x/views/copy/parts/copy-status.js +2 -0
- package/x/views/copy/parts/copy-status.js.map +1 -0
- package/x/views/copy/parts/determine-base-status.d.ts +1 -0
- package/x/views/copy/parts/determine-base-status.js +6 -0
- package/x/views/copy/parts/determine-base-status.js.map +1 -0
- package/x/views/copy/parts/use-copier.d.ts +6 -0
- package/x/views/copy/parts/use-copier.js +13 -0
- package/x/views/copy/parts/use-copier.js.map +1 -0
- package/x/views/copy/showcase.d.ts +1 -0
- package/x/views/copy/showcase.js +51 -0
- package/x/views/copy/showcase.js.map +1 -0
- package/x/views/copy/style.css.js.map +1 -0
- package/x/views/copy/view.d.ts +4 -0
- package/x/views/copy/view.js +47 -0
- package/x/views/copy/view.js.map +1 -0
- package/x/{components → views}/drawer/control.d.ts +1 -1
- package/x/views/drawer/control.js.map +1 -0
- package/x/views/drawer/showcase.d.ts +1 -0
- package/x/views/drawer/showcase.js +75 -0
- package/x/views/drawer/showcase.js.map +1 -0
- package/x/{components → views}/drawer/style.css.js +1 -0
- package/x/views/drawer/style.css.js.map +1 -0
- package/x/views/drawer/view.d.ts +6 -0
- package/x/views/drawer/view.js +60 -0
- package/x/views/drawer/view.js.map +1 -0
- package/x/{components → views}/tabs/control.d.ts +2 -2
- package/x/{components → views}/tabs/control.js +3 -3
- package/x/views/tabs/control.js.map +1 -0
- package/x/views/tabs/showcase.d.ts +1 -0
- package/x/views/tabs/showcase.js +86 -0
- package/x/views/tabs/showcase.js.map +1 -0
- package/x/{components → views}/tabs/style.css.js +5 -5
- package/x/views/tabs/style.css.js.map +1 -0
- package/x/views/tabs/view.d.ts +5 -0
- package/x/views/tabs/view.js +52 -0
- package/x/views/tabs/view.js.map +1 -0
- package/x/components/button/component.d.ts +0 -6
- package/x/components/button/component.js +0 -25
- package/x/components/button/component.js.map +0 -1
- package/x/components/button/showcase.d.ts +0 -1
- package/x/components/button/showcase.js +0 -116
- package/x/components/button/showcase.js.map +0 -1
- package/x/components/button/style.css.js +0 -62
- package/x/components/button/style.css.js.map +0 -1
- package/x/components/copy/component.d.ts +0 -376
- package/x/components/copy/component.js +0 -63
- package/x/components/copy/component.js.map +0 -1
- package/x/components/copy/showcase.d.ts +0 -1
- package/x/components/copy/showcase.js +0 -48
- package/x/components/copy/showcase.js.map +0 -1
- package/x/components/copy/style.css.js.map +0 -1
- package/x/components/drawer/component.d.ts +0 -387
- package/x/components/drawer/component.js +0 -73
- package/x/components/drawer/component.js.map +0 -1
- package/x/components/drawer/control.js.map +0 -1
- package/x/components/drawer/showcase.d.ts +0 -1
- package/x/components/drawer/showcase.js +0 -105
- package/x/components/drawer/showcase.js.map +0 -1
- package/x/components/drawer/style.css.js.map +0 -1
- package/x/components/example/component.d.ts +0 -371
- package/x/components/example/component.js +0 -22
- package/x/components/example/component.js.map +0 -1
- package/x/components/example/showcase.d.ts +0 -1
- package/x/components/example/showcase.js +0 -30
- package/x/components/example/showcase.js.map +0 -1
- package/x/components/example/style.css.js +0 -10
- package/x/components/example/style.css.js.map +0 -1
- package/x/components/foundation.css.d.ts +0 -1
- package/x/components/foundation.css.js +0 -14
- package/x/components/foundation.css.js.map +0 -1
- package/x/components/framework.d.ts +0 -8
- package/x/components/framework.js +0 -5
- package/x/components/framework.js.map +0 -1
- package/x/components/raw-components.d.ts +0 -12
- package/x/components/raw-components.js +0 -13
- package/x/components/raw-components.js.map +0 -1
- package/x/components/tabs/component.d.ts +0 -374
- package/x/components/tabs/component.js +0 -60
- package/x/components/tabs/component.js.map +0 -1
- package/x/components/tabs/control.js.map +0 -1
- package/x/components/tabs/showcase.d.ts +0 -1
- package/x/components/tabs/showcase.js +0 -167
- package/x/components/tabs/showcase.js.map +0 -1
- package/x/components/tabs/style.css.js.map +0 -1
- package/x/demo/demo.bundle.js +0 -42
- package/x/demo/demo.bundle.js.map +0 -1
- package/x/demo/demo.bundle.min.js +0 -893
- package/x/demo/demo.bundle.min.js.map +0 -7
- package/x/demo/lipsum.d.ts +0 -2
- package/x/demo/lipsum.js +0 -4
- package/x/demo/lipsum.js.map +0 -1
- package/x/demo/views/exhibit/style.css.d.ts +0 -2
- package/x/demo/views/exhibit/style.css.js +0 -84
- package/x/demo/views/exhibit/style.css.js.map +0 -1
- package/x/demo/views/exhibit/view.d.ts +0 -29
- package/x/demo/views/exhibit/view.js +0 -40
- package/x/demo/views/exhibit/view.js.map +0 -1
- package/x/demo/viewsets.d.ts +0 -17
- package/x/demo/viewsets.js +0 -9
- package/x/demo/viewsets.js.map +0 -1
- package/x/install/aura.bundle.js +0 -5
- package/x/install/aura.bundle.js.map +0 -1
- package/x/install/aura.bundle.min.js +0 -471
- package/x/install/aura.bundle.min.js.map +0 -7
- package/x/install/plain.bundle.d.ts +0 -1
- package/x/install/plain.bundle.js +0 -5
- package/x/install/plain.bundle.js.map +0 -1
- package/x/install/plain.bundle.min.js +0 -398
- package/x/install/plain.bundle.min.js.map +0 -7
- package/x/shiny.d.ts +0 -47
- package/x/shiny.js +0 -8
- package/x/shiny.js.map +0 -1
- package/x/tests.test.d.ts +0 -1
- package/x/tests.test.js +0 -3
- package/x/tests.test.js.map +0 -1
- package/x/themes/aura.css.d.ts +0 -1
- package/x/themes/aura.css.js +0 -85
- package/x/themes/aura.css.js.map +0 -1
- package/x/themes/index.barrel.d.ts +0 -2
- package/x/themes/index.barrel.js +0 -3
- package/x/themes/index.barrel.js.map +0 -1
- package/x/themes/index.d.ts +0 -2
- package/x/themes/index.js +0 -2
- package/x/themes/index.js.map +0 -1
- package/x/themes/infra/css-vars.d.ts +0 -15
- package/x/themes/infra/css-vars.js +0 -22
- package/x/themes/infra/css-vars.js.map +0 -1
- package/x/themes/plain.css.d.ts +0 -1
- package/x/themes/plain.css.js +0 -10
- package/x/themes/plain.css.js.map +0 -1
- /package/s/{components → _archive/components}/button/component.ts +0 -0
- /package/s/{components → _archive/components}/button/showcase.ts +0 -0
- /package/s/{components → _archive/components}/button/style.css.ts +0 -0
- /package/s/{components → _archive/components}/copy/component.ts +0 -0
- /package/s/{components → _archive/components}/copy/showcase.ts +0 -0
- /package/s/{components → _archive/components}/copy/style.css.ts +0 -0
- /package/s/{components → _archive/components}/drawer/component.ts +0 -0
- /package/s/{components → _archive/components}/drawer/control.ts +0 -0
- /package/s/{components → _archive/components}/drawer/showcase.ts +0 -0
- /package/s/{components → _archive/components}/drawer/style.css.ts +0 -0
- /package/s/{components → _archive/components}/example/component.ts +0 -0
- /package/s/{components → _archive/components}/example/showcase.ts +0 -0
- /package/s/{components → _archive/components}/example/style.css.ts +0 -0
- /package/s/{components → _archive/components}/foundation.css.ts +0 -0
- /package/s/{components → _archive/components}/framework.ts +0 -0
- /package/s/{components → _archive/components}/raw-components.ts +0 -0
- /package/s/{components → _archive/components}/tabs/component.ts +0 -0
- /package/s/{components → _archive/components}/tabs/control.ts +0 -0
- /package/s/{components → _archive/components}/tabs/showcase.ts +0 -0
- /package/s/{components → _archive/components}/tabs/style.css.ts +0 -0
- /package/s/{demo → _archive/demo}/demo.bundle.ts +0 -0
- /package/s/{demo → _archive/demo}/demo.css +0 -0
- /package/s/{demo → _archive/demo}/lipsum.ts +0 -0
- /package/s/{demo → _archive/demo}/views/exhibit/style.css.ts +0 -0
- /package/s/{demo → _archive/demo}/views/exhibit/view.ts +0 -0
- /package/s/{demo → _archive/demo}/viewsets.ts +0 -0
- /package/s/{install → _archive/install}/aura.bundle.ts +0 -0
- /package/s/{install → _archive/install}/plain.bundle.ts +0 -0
- /package/s/{shiny.ts → _archive/shiny.ts} +0 -0
- /package/s/{tests.test.ts → _archive/tests.test.ts} +0 -0
- /package/s/{themes → _archive/themes}/aura.css.ts +0 -0
- /package/s/{themes → _archive/themes}/index.barrel.ts +0 -0
- /package/s/{themes → _archive/themes}/index.ts +0 -0
- /package/s/{themes → _archive/themes}/infra/css-vars.ts +0 -0
- /package/s/{themes → _archive/themes}/plain.css.ts +0 -0
- /package/x/{demo → _archive/demo}/demo.css +0 -0
- /package/x/demo/{demo.bundle.d.ts → main.bundle.d.ts} +0 -0
- /package/x/{components/button → demo/views/codebox}/style.css.d.ts +0 -0
- /package/x/{install/aura.bundle.d.ts → test.d.ts} +0 -0
- /package/x/{components/copy → views/button}/style.css.d.ts +0 -0
- /package/x/{components/drawer → views/copy}/style.css.d.ts +0 -0
- /package/x/{components → views}/copy/style.css.js +0 -0
- /package/x/{components → views}/drawer/control.js +0 -0
- /package/x/{components/example → views/drawer}/style.css.d.ts +0 -0
- /package/x/{components → views}/tabs/style.css.d.ts +0 -0
|
@@ -1,893 +0,0 @@
|
|
|
1
|
-
var $t=globalThis,_t=$t.ShadowRoot&&($t.ShadyCSS===void 0||$t.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,ie=Symbol(),Ee=new WeakMap,pt=class{constructor(t,e,o){if(this._$cssResult$=!0,o!==ie)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(_t&&t===void 0){let o=e!==void 0&&e.length===1;o&&(t=Ee.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),o&&Ee.set(e,t))}return t}toString(){return this.cssText}},At=r=>new pt(typeof r=="string"?r:r+"",void 0,ie),c=(r,...t)=>{let e=r.length===1?r[0]:t.reduce(((o,s,n)=>o+(i=>{if(i._$cssResult$===!0)return i.cssText;if(typeof i=="number")return i;throw Error("Value passed to 'css' function must be a 'css' function result: "+i+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(s)+r[n+1]),r[0]);return new pt(e,r,ie)},St=(r,t)=>{if(_t)r.adoptedStyleSheets=t.map((e=>e instanceof CSSStyleSheet?e:e.styleSheet));else for(let e of t){let o=document.createElement("style"),s=$t.litNonce;s!==void 0&&o.setAttribute("nonce",s),o.textContent=e.cssText,r.appendChild(o)}},F=_t?r=>r:r=>r instanceof CSSStyleSheet?(t=>{let e="";for(let o of t.cssRules)e+=o.cssText;return At(e)})(r):r;var{is:Mr,defineProperty:Br,getOwnPropertyDescriptor:Nr,getOwnPropertyNames:Hr,getOwnPropertySymbols:qr,getPrototypeOf:jr}=Object,kt=globalThis,Te=kt.trustedTypes,Ur=Te?Te.emptyScript:"",Dr=kt.reactiveElementPolyfillSupport,ct=(r,t)=>r,ae={toAttribute(r,t){switch(t){case Boolean:r=r?Ur: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}},Oe=(r,t)=>!Mr(r,t),ze={attribute:!0,type:String,converter:ae,reflect:!1,useDefault:!1,hasChanged:Oe};Symbol.metadata??=Symbol("metadata"),kt.litPropertyMetadata??=new WeakMap;var O=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=ze){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 o=Symbol(),s=this.getPropertyDescriptor(t,o,e);s!==void 0&&Br(this.prototype,t,s)}}static getPropertyDescriptor(t,e,o){let{get:s,set:n}=Nr(this.prototype,t)??{get(){return this[e]},set(i){this[e]=i}};return{get:s,set(i){let l=s?.call(this);n?.call(this,i),this.requestUpdate(t,l,o)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??ze}static _$Ei(){if(this.hasOwnProperty(ct("elementProperties")))return;let t=jr(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(ct("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(ct("properties"))){let e=this.properties,o=[...Hr(e),...qr(e)];for(let s of o)this.createProperty(s,e[s])}let t=this[Symbol.metadata];if(t!==null){let e=litPropertyMetadata.get(t);if(e!==void 0)for(let[o,s]of e)this.elementProperties.set(o,s)}this._$Eh=new Map;for(let[e,o]of this.elementProperties){let s=this._$Eu(e,o);s!==void 0&&this._$Eh.set(s,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){let e=[];if(Array.isArray(t)){let o=new Set(t.flat(1/0).reverse());for(let s of o)e.unshift(F(s))}else t!==void 0&&e.push(F(t));return e}static _$Eu(t,e){let o=e.attribute;return o===!1?void 0:typeof o=="string"?o: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 o of e.keys())this.hasOwnProperty(o)&&(t.set(o,this[o]),delete this[o]);t.size>0&&(this._$Ep=t)}createRenderRoot(){let t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return St(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,o){this._$AK(t,o)}_$ET(t,e){let o=this.constructor.elementProperties.get(t),s=this.constructor._$Eu(t,o);if(s!==void 0&&o.reflect===!0){let n=(o.converter?.toAttribute!==void 0?o.converter:ae).toAttribute(e,o.type);this._$Em=t,n==null?this.removeAttribute(s):this.setAttribute(s,n),this._$Em=null}}_$AK(t,e){let o=this.constructor,s=o._$Eh.get(t);if(s!==void 0&&this._$Em!==s){let n=o.getPropertyOptions(s),i=typeof n.converter=="function"?{fromAttribute:n.converter}:n.converter?.fromAttribute!==void 0?n.converter:ae;this._$Em=s;let l=i.fromAttribute(e,n.type);this[s]=l??this._$Ej?.get(s)??l,this._$Em=null}}requestUpdate(t,e,o){if(t!==void 0){let s=this.constructor,n=this[t];if(o??=s.getPropertyOptions(t),!((o.hasChanged??Oe)(n,e)||o.useDefault&&o.reflect&&n===this._$Ej?.get(t)&&!this.hasAttribute(s._$Eu(t,o))))return;this.C(t,e,o)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(t,e,{useDefault:o,reflect:s,wrapped:n},i){o&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,i??e??this[t]),n!==!0||i!==void 0)||(this._$AL.has(t)||(this.hasUpdated||o||(e=void 0),this._$AL.set(t,e)),s===!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[s,n]of this._$Ep)this[s]=n;this._$Ep=void 0}let o=this.constructor.elementProperties;if(o.size>0)for(let[s,n]of o){let{wrapped:i}=n,l=this[s];i!==!0||this._$AL.has(s)||l===void 0||this.C(s,void 0,n,l)}}let t=!1,e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$EO?.forEach((o=>o.hostUpdate?.())),this.update(e)):this._$EM()}catch(o){throw t=!1,this._$EM(),o}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){}};O.elementStyles=[],O.shadowRootOptions={mode:"open"},O[ct("elementProperties")]=new Map,O[ct("finalized")]=new Map,Dr?.({ReactiveElement:O}),(kt.reactiveElementVersions??=[]).push("2.1.1");var pe=globalThis,Ct=pe.trustedTypes,Pe=Ct?Ct.createPolicy("lit-html",{createHTML:r=>r}):void 0,ce="$lit$",P=`lit$${Math.random().toFixed(9).slice(2)}$`,he="?"+P,Lr=`<${he}>`,D=document,ut=()=>D.createComment(""),dt=r=>r===null||typeof r!="object"&&typeof r!="function",ue=Array.isArray,qe=r=>ue(r)||typeof r?.[Symbol.iterator]=="function",le=`[
|
|
2
|
-
\f\r]`,ht=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Re=/-->/g,Me=/>/g,j=RegExp(`>|${le}(?:([^\\s"'>=/]+)(${le}*=${le}*(?:[^
|
|
3
|
-
\f\r"'\`<>=]|("|')|))|$)`,"g"),Be=/'/g,Ne=/"/g,je=/^(?:script|style|textarea|title)$/i,de=r=>(t,...e)=>({_$litType$:r,strings:t,values:e}),h=de(1),C=de(2),bo=de(3),L=Symbol.for("lit-noChange"),x=Symbol.for("lit-nothing"),He=new WeakMap,U=D.createTreeWalker(D,129);function Ue(r,t){if(!ue(r)||!r.hasOwnProperty("raw"))throw Error("invalid template strings array");return Pe!==void 0?Pe.createHTML(t):t}var De=(r,t)=>{let e=r.length-1,o=[],s,n=t===2?"<svg>":t===3?"<math>":"",i=ht;for(let l=0;l<e;l++){let a=r[l],d,g,p=-1,b=0;for(;b<a.length&&(i.lastIndex=b,g=i.exec(a),g!==null);)b=i.lastIndex,i===ht?g[1]==="!--"?i=Re:g[1]!==void 0?i=Me:g[2]!==void 0?(je.test(g[2])&&(s=RegExp("</"+g[2],"g")),i=j):g[3]!==void 0&&(i=j):i===j?g[0]===">"?(i=s??ht,p=-1):g[1]===void 0?p=-2:(p=i.lastIndex-g[2].length,d=g[1],i=g[3]===void 0?j:g[3]==='"'?Ne:Be):i===Ne||i===Be?i=j:i===Re||i===Me?i=ht:(i=j,s=void 0);let $=i===j&&r[l+1].startsWith("/>")?" ":"";n+=i===ht?a+Lr:p>=0?(o.push(d),a.slice(0,p)+ce+a.slice(p)+P+$):a+P+(p===-2?l:$)}return[Ue(r,n+(r[e]||"<?>")+(t===2?"</svg>":t===3?"</math>":"")),o]},mt=class r{constructor({strings:t,_$litType$:e},o){let s;this.parts=[];let n=0,i=0,l=t.length-1,a=this.parts,[d,g]=De(t,e);if(this.el=r.createElement(d,o),U.currentNode=this.el.content,e===2||e===3){let p=this.el.content.firstChild;p.replaceWith(...p.childNodes)}for(;(s=U.nextNode())!==null&&a.length<l;){if(s.nodeType===1){if(s.hasAttributes())for(let p of s.getAttributeNames())if(p.endsWith(ce)){let b=g[i++],$=s.getAttribute(p).split(P),k=/([.?@])?(.*)/.exec(b);a.push({type:1,index:n,name:k[2],strings:$,ctor:k[1]==="."?Tt:k[1]==="?"?zt:k[1]==="@"?Ot:I}),s.removeAttribute(p)}else p.startsWith(P)&&(a.push({type:6,index:n}),s.removeAttribute(p));if(je.test(s.tagName)){let p=s.textContent.split(P),b=p.length-1;if(b>0){s.textContent=Ct?Ct.emptyScript:"";for(let $=0;$<b;$++)s.append(p[$],ut()),U.nextNode(),a.push({type:2,index:++n});s.append(p[b],ut())}}}else if(s.nodeType===8)if(s.data===he)a.push({type:2,index:n});else{let p=-1;for(;(p=s.data.indexOf(P,p+1))!==-1;)a.push({type:7,index:n}),p+=P.length-1}n++}}static createElement(t,e){let o=D.createElement("template");return o.innerHTML=t,o}};function V(r,t,e=r,o){if(t===L)return t;let s=o!==void 0?e._$Co?.[o]:e._$Cl,n=dt(t)?void 0:t._$litDirective$;return s?.constructor!==n&&(s?._$AO?.(!1),n===void 0?s=void 0:(s=new n(r),s._$AT(r,e,o)),o!==void 0?(e._$Co??=[])[o]=s:e._$Cl=s),s!==void 0&&(t=V(r,s._$AS(r,t.values),s,o)),t}var Et=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:o}=this._$AD,s=(t?.creationScope??D).importNode(e,!0);U.currentNode=s;let n=U.nextNode(),i=0,l=0,a=o[0];for(;a!==void 0;){if(i===a.index){let d;a.type===2?d=new X(n,n.nextSibling,this,t):a.type===1?d=new a.ctor(n,a.name,a.strings,this,t):a.type===6&&(d=new Pt(n,this,t)),this._$AV.push(d),a=o[++l]}i!==a?.index&&(n=U.nextNode(),i++)}return U.currentNode=D,s}p(t){let e=0;for(let o of this._$AV)o!==void 0&&(o.strings!==void 0?(o._$AI(t,o,e),e+=o.strings.length-2):o._$AI(t[e])),e++}},X=class r{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,o,s){this.type=2,this._$AH=x,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=o,this.options=s,this._$Cv=s?.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=V(this,t,e),dt(t)?t===x||t==null||t===""?(this._$AH!==x&&this._$AR(),this._$AH=x):t!==this._$AH&&t!==L&&this._(t):t._$litType$!==void 0?this.$(t):t.nodeType!==void 0?this.T(t):qe(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!==x&&dt(this._$AH)?this._$AA.nextSibling.data=t:this.T(D.createTextNode(t)),this._$AH=t}$(t){let{values:e,_$litType$:o}=t,s=typeof o=="number"?this._$AC(t):(o.el===void 0&&(o.el=mt.createElement(Ue(o.h,o.h[0]),this.options)),o);if(this._$AH?._$AD===s)this._$AH.p(e);else{let n=new Et(s,this),i=n.u(this.options);n.p(e),this.T(i),this._$AH=n}}_$AC(t){let e=He.get(t.strings);return e===void 0&&He.set(t.strings,e=new mt(t)),e}k(t){ue(this._$AH)||(this._$AH=[],this._$AR());let e=this._$AH,o,s=0;for(let n of t)s===e.length?e.push(o=new r(this.O(ut()),this.O(ut()),this,this.options)):o=e[s],o._$AI(n),s++;s<e.length&&(this._$AR(o&&o._$AB.nextSibling,s),e.length=s)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t!==this._$AB;){let o=t.nextSibling;t.remove(),t=o}}setConnected(t){this._$AM===void 0&&(this._$Cv=t,this._$AP?.(t))}},I=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,o,s,n){this.type=1,this._$AH=x,this._$AN=void 0,this.element=t,this.name=e,this._$AM=s,this.options=n,o.length>2||o[0]!==""||o[1]!==""?(this._$AH=Array(o.length-1).fill(new String),this.strings=o):this._$AH=x}_$AI(t,e=this,o,s){let n=this.strings,i=!1;if(n===void 0)t=V(this,t,e,0),i=!dt(t)||t!==this._$AH&&t!==L,i&&(this._$AH=t);else{let l=t,a,d;for(t=n[0],a=0;a<n.length-1;a++)d=V(this,l[o+a],e,a),d===L&&(d=this._$AH[a]),i||=!dt(d)||d!==this._$AH[a],d===x?t=x:t!==x&&(t+=(d??"")+n[a+1]),this._$AH[a]=d}i&&!s&&this.j(t)}j(t){t===x?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},Tt=class extends I{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===x?void 0:t}},zt=class extends I{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==x)}},Ot=class extends I{constructor(t,e,o,s,n){super(t,e,o,s,n),this.type=5}_$AI(t,e=this){if((t=V(this,t,e,0)??x)===L)return;let o=this._$AH,s=t===x&&o!==x||t.capture!==o.capture||t.once!==o.once||t.passive!==o.passive,n=t!==x&&(o===x||s);s&&this.element.removeEventListener(this.name,this,o),n&&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)}},Pt=class{constructor(t,e,o){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=o}get _$AU(){return this._$AM._$AU}_$AI(t){V(this,t)}},Le={M:ce,P,A:he,C:1,L:De,R:Et,D:qe,V,I:X,H:I,N:zt,U:Ot,B:Tt,F:Pt},Vr=pe.litHtmlPolyfillSupport;Vr?.(mt,X),(pe.litHtmlVersions??=[]).push("3.3.1");var R=(r,t,e)=>{let o=e?.renderBefore??t,s=o._$litPart$;if(s===void 0){let n=e?.renderBefore??null;o._$litPart$=s=new X(t.insertBefore(ut(),n),n,void 0,e??{})}return s._$AI(r),s};var me=globalThis,G=class extends O{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=R(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return L}};G._$litElement$=!0,G.finalized=!0,me.litElementHydrateSupport?.({LitElement:G});var Ir=me.litElementPolyfillSupport;Ir?.({LitElement:G});(me.litElementVersions??=[]).push("4.2.1");var Y=c`
|
|
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 M(r,t){let e,o,s=[];function n(){e=[],o&&clearTimeout(o),o=void 0,s=[]}return n(),((...i)=>{e=i,o&&clearTimeout(o);let l=new Promise((a,d)=>{s.push({resolve:a,reject:d})});return o=setTimeout(()=>{Promise.resolve().then(()=>t(...e)).then(a=>{for(let{resolve:d}of s)d(a);n()}).catch(a=>{for(let{reject:d}of s)d(a);n()})},r),l})}function Ve(r){let t,e=!1,o=()=>{e=!0,clearTimeout(t)},s=async()=>{e||(await r(o),!e&&(t=setTimeout(s,0)))};return s(),o}function ft(){let r,t,e=new Promise((s,n)=>{r=s,t=n});function o(s){return s.then(r).catch(t),e}return{promise:e,resolve:r,reject:t,entangle:o}}var Rt=class{getRefill;#t=[];constructor(t){this.getRefill=t,this.#e()}get currentStock(){return[...this.#t]}#e(){if(this.#t.length===0&&(this.#t=[...this.getRefill()]),this.#t.length===0)throw new Error("dispenser's getRefill returned an empty array")}takeAll(){let t=this.#t;return this.#t=[...this.getRefill()],t}takeRandom(){this.#e();let t=Math.floor(Math.random()*this.#t.length),[e]=this.#t.splice(t,1);return e}takeFirst(){return this.#e(),this.#t.shift()}takeLast(){return this.#e(),this.#t.pop()}shift=this.takeFirst.bind(this);pop=this.takeLast.bind(this)};var Z=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,o){if(t.has(e))return t.get(e);{let s=o();return t.set(e,s),s}}array(){return[...this]}require(t){return r.require(this,t)}guarantee(t,e){return r.guarantee(this,t,e)}};var Ie=(r=0)=>new Promise(t=>setTimeout(t,r));function Mt(r){return{map:t=>We(r,t),filter:t=>Fe(r,t)}}Mt.pipe=Object.freeze({map:r=>(t=>We(t,r)),filter:r=>(t=>Fe(t,r))});var We=(r,t)=>Object.fromEntries(Object.entries(r).map(([e,o])=>[e,t(o,e)])),Fe=(r,t)=>Object.fromEntries(Object.entries(r).filter(([e,o])=>t(o,e)));function Xe(){let r=new Set;async function t(...a){await Promise.all([...r].map(d=>d(...a)))}function e(a){return r.add(a),()=>{r.delete(a)}}async function o(...a){return t(...a)}function s(a){return e(a)}async function n(a){let{promise:d,resolve:g}=ft(),p=s(async(...b)=>{a&&await a(...b),g(b),p()});return d}function i(){r.clear()}let l={pub:o,sub:s,publish:t,subscribe:e,on:e,next:n,clear:i};return Object.assign(s,l),Object.assign(o,l),l}function Bt(r){let t=Xe();return r&&t.sub(r),t.sub}function fe(r){let t=Xe();return r&&t.sub(r),t.pub}function Ge(r){let t=r.split(/\r|\n/),e;for(let s of t)if(!/^\s+$/.test(s)){let i=s.match(/^(\t+).+/);if(i){let l=i[1].length;if(e=e===void 0||l<e?l:e,e===0)break}}let o=new RegExp(`^\\t{${e}}`);return t.map(s=>/^\s+$/.test(s)?"":s).map(s=>s.replace(o,"")).join(`
|
|
20
|
-
`)}var E={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},v={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),any:(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}"`)},entries:(r,t)=>{for(let[e,o]of t)v.any(r,e,o)},record:(r,t)=>v.entries(r,Object.entries(t))};function Ye(r,t={}){let e=document.createElement(r);return v.record(e,t),e}function Ze(r){let t=document.createDocumentFragment();return R(r,t),t.firstElementChild}function J(r,t){let e=[];for(let[o,s]of Object.entries(t))if(typeof s=="function")r.addEventListener(o,s),e.push(()=>r.removeEventListener(o,s));else{let[n,i]=s;r.addEventListener(o,i,n),e.push(()=>r.removeEventListener(o,i))}return()=>e.forEach(o=>o())}function Je(r,t){let e=new MutationObserver(t);return e.observe(r,{attributes:!0}),()=>e.disconnect()}var Ke=(r,t)=>new Proxy(t,{get:(e,o)=>{switch(t[o]){case String:return E.string(r,o);case Number:return E.number(r,o);case Boolean:return E.boolean(r,o);default:throw new Error(`invalid attribute type for "${o}"`)}},set:(e,o,s)=>{switch(t[o]){case String:return v.string(r,o,s);case Number:return v.number(r,o,s);case Boolean:return v.boolean(r,o,s);default:throw new Error(`invalid attribute type for "${o}"`)}}});var Nt=class{element;constructor(t){this.element=t}strings=new Proxy({},{get:(t,e)=>E.string(this.element,e),set:(t,e,o)=>v.string(this.element,e,o)});numbers=new Proxy({},{get:(t,e)=>E.number(this.element,e),set:(t,e,o)=>v.number(this.element,e,o)});booleans=new Proxy({},{get:(t,e)=>E.boolean(this.element,e),set:(t,e,o)=>v.boolean(this.element,e,o)})};function K(r){let t=new Nt(r);return{strings:t.strings,numbers:t.numbers,booleans:t.booleans,on:e=>Je(r,e),spec:e=>Ke(r,e)}}K.get=E;K.set=v;function Qe(r){return new be(r)}var be=class{tagName;#t=new Map;#e=[];constructor(t){this.tagName=t}attr(t,e=!0){return this.#t.set(t,e),this}attrs(t){for(let[e,o]of Object.entries(t))this.attr(e,o);return this}children(...t){return this.#e.push(...t),this}done(){let t=document.createElement(this.tagName);return v.entries(t,this.#t),t.append(...this.#e),t}};function Q(r,t=document){let e=t.querySelector(r);if(!e)throw new Error(`element not found (${r})`);return e}function Ht(r,t=document){return t.querySelector(r)}function qt(r,t=document){return Array.from(t.querySelectorAll(r))}var jt=class r{element;#t;constructor(t){this.element=t}in(t){return new r(typeof t=="string"?Q(t,this.element):t)}require(t){return Q(t,this.element)}maybe(t){return Ht(t,this.element)}all(t){return qt(t,this.element)}render(...t){return R(t,this.element)}get attrs(){return this.#t??=K(this.element)}events(t){return J(this.element,t)}};function tr(r){return r.replace(/([a-zA-Z])(?=[A-Z])/g,"$1-").toLowerCase()}function er(r,t={}){let{soft:e=!1,upgrade:o=!0}=t;for(let[s,n]of Object.entries(r)){let i=tr(s),l=customElements.get(i);e&&l||(customElements.define(i,n),o&&document.querySelectorAll(i).forEach(a=>{a.constructor===HTMLElement&&customElements.upgrade(a)}))}}function u(r,t=document){return Q(r,t)}u.in=(r,t=document)=>new jt(t).in(r);u.require=Q;u.maybe=Ht;u.all=qt;u.el=Ye;u.elmer=Qe;u.mk=Ze;u.events=J;u.attrs=K;u.register=er;u.render=(r,...t)=>R(t,r);var ge=class{#t=[];#e=new WeakMap;#r=[];#o=new Set;notifyRead(t){this.#t.at(-1)?.add(t)}async notifyWrite(t){if(this.#o.has(t))throw new Error("circularity forbidden");let e=this.#s(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.#s(t)(async()=>{let o=new Set;this.#r.push(o),this.#o.add(t),o.add(e()),this.#o.delete(t),await Promise.all(o),this.#r.pop()})}#s(t){let e=this.#e.get(t);return e||(e=Bt(),this.#e.set(t,e)),e}},_=globalThis[Symbol.for("e280.tracker")]??=new ge;var tt=class{sneak;constructor(t){this.sneak=t}get(){return _.notifyRead(this),this.sneak}get value(){return this.get()}};var et=class extends tt{on=Bt();dispose(){this.on.clear()}};function Ut(r,t=r){let{seen:e,result:o}=_.observe(r),s=M(0,t),n=[],i=()=>n.forEach(l=>l());for(let l of e){let a=_.subscribe(l,s);n.push(a)}return{result:o,dispose:i}}function rt(r,t){return r===t}var Dt=class extends et{#t;constructor(t,e){let o=e?.compare??rt,{result:s,dispose:n}=Ut(t,async()=>{let i=t();!o(this.sneak,i)&&(this.sneak=i,await Promise.all([_.notifyWrite(this),this.on.pub(i)]))});super(s),this.#t=n}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 Lt=class extends tt{#t;#e;#r=!1;#o;constructor(t,e){super(void 0),this.#t=t,this.#e=e?.compare??rt}toString(){return`($lazy "${String(this.get())}")`}get(){if(!this.#o){let{result:t,dispose:e}=Ut(this.#t,()=>this.#r=!0);this.#o=e,this.sneak=t}if(this.#r){this.#r=!1;let t=this.#t();!this.#e(this.sneak,t)&&(this.sneak=t,_.notifyWrite(this))}return super.get()}dispose(){this.#o&&this.#o()}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 Vt=class extends et{#t=!1;#e;constructor(t,e){super(t),this.#e=e?.compare??rt}toString(){return`($signal "${String(this.get())}")`}async set(t,e=!1){let o=this.sneak;return this.sneak=t,(e||!this.#e(o,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([_.notifyWrite(this),this.on.publish(t)])}finally{this.#t=!1}return await e,t}get core(){return this}fn(){let t=this;function e(o){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:o=>t.value=o}),Object.defineProperty(e,"sneak",{get:()=>t.sneak,set:o=>t.sneak=o}),e}};function Wr(r,t){return new Lt(r,t).fn()}function rr(r,t){return new Dt(r,t).fn()}function w(r,t){return new Vt(r,t).fn()}w.lazy=Wr;w.derived=rr;var B=class{#t=new Z;effect(t,e){let{seen:o,result:s}=_.observe(t);for(let n of o)this.#t.guarantee(n,()=>_.subscribe(n,e));for(let[n,i]of this.#t)o.has(n)||(i(),this.#t.delete(n));return s}clear(){for(let t of this.#t.values())t();this.#t.clear()}};var ot=class{element;response;#t;constructor(t,e){this.element=t,this.response=e}start(){this.#t||(this.#t=u.attrs(this.element).on(this.response))}stop(){this.#t&&this.#t(),this.#t=void 0}};function It(r,t){St(r,Xr(t))}function Xr(r){let t=[];if(Array.isArray(r)){let e=new Set(r.flat(1/0).reverse());for(let o of e)t.unshift(F(o))}else r!==void 0&&t.push(F(r));return t}var W={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)=>W.select(r,{loading:()=>["loading"],error:e=>["error",e],ready:e=>["ready",t(e)]}),all:(...r)=>{let t=[],e=[],o=0;for(let s of r)switch(s[0]){case"loading":o++;break;case"ready":t.push(s[1]);break;case"error":e.push(s[1]);break}return e.length>0?["error",e]:o===0?["ready",t]:["loading"]}};var st=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(o=>o.pod);return W.all(...e)}signal;#t=0;#e=fe();#r=fe();constructor(t=["loading"]){this.signal=w(t)}get wait(){return new Promise((t,e)=>{this.#e.next().then(([o])=>t(o)),this.#r.next().then(([o])=>e(o))})}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 o=await t;return e===this.#t&&await this.setReady(o),o}catch(o){console.error(o),e===this.#t&&await this.setError(o)}}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 W.value(this.signal.get())}get error(){return W.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 W.select(this.signal.get(),t)}morph(t){return W.morph(this.pod,t)}};var Wt=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())}};function or(r){let t=u.attrs(r.element);function e(o){return r.once(()=>t.spec(o))}return e.strings=t.strings,e.numbers=t.numbers,e.booleans=t.booleans,e.spec=o=>r.once(()=>t.spec(o)),e.on=o=>r.mount(()=>t.on(o)),e}var bt=Symbol(),gt=Symbol(),yt=Symbol(),nt=class{element;shadow;renderNow;render;attrs;#t=0;#e=0;#r=new Z;#o=ft();#s=new Wt;[bt](t){this.#t++,this.#e=0,this.#o=ft();let e=t();return this.#o.resolve(),e}[gt](){this.#s.unmountAll()}[yt](){this.#s.remountAll()}constructor(t,e,o,s){this.element=t,this.shadow=e,this.renderNow=o,this.render=s,this.attrs=or(this)}get renderCount(){return this.#t}get rendered(){return this.#o.promise}name(t){this.once(()=>this.element.setAttribute("view",t))}styles(...t){this.once(()=>It(this.shadow,t))}css(...t){return this.styles(...t)}once(t){return this.#r.guarantee(this.#e++,t)}mount(t){return this.once(()=>this.#s.mount(t))}life(t){let e;return this.mount(()=>{let[o,s]=t();return e=o,s}),e}wake(t){return this.life(()=>[t(),()=>{}])}events(t){return this.mount(()=>J(this.element,t))}op=(()=>{let t=this;function e(o){return t.once(()=>st.load(o))}return e.load=e,e.promise=o=>this.once(()=>st.promise(o)),e})();signal=(()=>{let t=this;function e(o,s){return t.once(()=>w(o,s))}return e.derived=function(s,n){return t.once(()=>w.derived(s,n))},e.lazy=function(s,n){return t.once(()=>w.lazy(s,n))},e})();derived(t,e){return this.once(()=>w.derived(t,e))}lazy(t,e){return this.once(()=>w.lazy(t,e))}};var N=class extends HTMLElement{static styles;shadow;#t;#e=0;#r=new B;#o=new ot(this,()=>this.update());createShadow(){return this.attachShadow({mode:"open"})}constructor(){super(),this.shadow=this.createShadow(),this.#t=new nt(this,this.shadow,this.updateNow,this.update)}render(t){}updateNow=()=>{this.#t[bt](()=>{u.render(this.shadow,this.#r.effect(()=>this.render(this.#t),this.update))})};update=M(0,this.updateNow);connectedCallback(){if(this.#e===0){let t=this.constructor.styles;t&&It(this.shadow,t),this.updateNow()}else this.#t[yt]();this.#o.start(),this.#e++}disconnectedCallback(){this.#t[gt](),this.#r.clear(),this.#o.stop()}};var Ft=class{#t;#e;constructor(t,e){this.#e=t,this.#t=e}attr(t,e=!0){return this.#e.attrs.set(t,e),this}attrs(t){for(let[e,o]of Object.entries(t))this.#e.attrs.set(e,o);return this}children(...t){return this.#e.children.push(...t),this}render(){return this.#t(this.#e)}};var xt=class{props;attrs=new Map;children=[];constructor(t){this.props=t}};function sr(r,t,e,o){return class extends t{static view=it(o,r);#t=new B;createShadow(){return this.attachShadow(r)}render(n){return o(n)(...this.#t.effect(()=>e(this),()=>this.update()))}}}var{I:Hi}=Le;var nr=r=>r.strings===void 0;var ir={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},ye=r=>(...t)=>({_$litDirective$:r,values:t}),Xt=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,o){this._$Ct=t,this._$AM=e,this._$Ci=o}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}};var vt=(r,t)=>{let e=r._$AN;if(e===void 0)return!1;for(let o of e)o._$AO?.(t,!1),vt(o,t);return!0},Gt=r=>{let t,e;do{if((t=r._$AM)===void 0)break;e=t._$AN,e.delete(r),r=t}while(e?.size===0)},ar=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),Zr(t)}};function Gr(r){this._$AN!==void 0?(Gt(this),this._$AM=r,ar(this)):this._$AM=r}function Yr(r,t=!1,e=0){let o=this._$AH,s=this._$AN;if(s!==void 0&&s.size!==0)if(t)if(Array.isArray(o))for(let n=e;n<o.length;n++)vt(o[n],!1),Gt(o[n]);else o!=null&&(vt(o,!1),Gt(o));else vt(this,r)}var Zr=r=>{r.type==ir.CHILD&&(r._$AP??=Yr,r._$AQ??=Gr)},Yt=class extends Xt{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,o){super._$AT(t,e,o),ar(this),this.isConnected=t._$AU}_$AO(t,e=!0){t!==this.isConnected&&(this.isConnected=t,t?this.reconnected?.():this.disconnected?.()),e&&(vt(this,t),Gt(this))}setValue(t){if(nr(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 Zt=class r extends HTMLElement{static#t=!1;static make(){return this.#t||(u.register({SlyView:r},{soft:!0,upgrade:!0}),this.#t=!0),document.createElement("sly-view")}};var Jt=class{viewFn;settings;#t=Zt.make();#e=new B;#r;#o;#s;#n=new ot(this.#t,()=>this.#a());constructor(t,e){this.viewFn=t,this.settings=e,this.#o=this.#t.attachShadow(this.settings),this.#r=new nt(this.#t,this.#o,this.#i,this.#a)}update(t){return this.#s=t,this.#i(),this.#t}#i=()=>{this.#r[bt](()=>{let t=this.#e.effect(()=>this.viewFn(this.#r)(...this.#s.props),()=>this.#a());v.entries(this.#t,this.#s.attrs),u.render(this.#o,t),u.render(this.#t,this.#s.children),this.#n.start()})};#a=M(0,this.#i);disconnected(){this.#r[gt](),this.#e.clear(),this.#n.stop()}reconnected(){this.#r[yt](),this.#n.start()}};function lr(r,t){return ye(class extends Yt{#t=new Jt(r,t);render(o){return this.#t.update(o)}disconnected(){this.#t.disconnected()}reconnected(){this.#t.reconnected()}})}function it(r,t){let e=lr(r,t);function o(...s){return e(new xt(s))}return o.props=(...s)=>new Ft(new xt(s),e),o.transmute=s=>it(i=>{let l=r(i);return(...a)=>l(...s(...a))},t),o.component=(s=N)=>({props:n=>sr(t,s,n,r)}),o}function f(r){return it(r,{mode:"open"})}f.settings=r=>({render:t=>it(t,r)});f.render=f;f.component=r=>f(t=>()=>r(t)).component(N).props(()=>[]);function m(r,t){return()=>Jr({hz:r,frames:t})}var Jr=f(r=>({hz:t,frames:e})=>{r.name("loading"),r.styles(Y,Kr);let o=r.signal(0);return r.mount(()=>Ve(async()=>{await Ie(1e3/t);let s=o.get()+1;o.set(s>=e.length?0:s)})),e.at(o.get())}),Kr=c`
|
|
21
|
-
:host {
|
|
22
|
-
font-family: monospace;
|
|
23
|
-
white-space: pre;
|
|
24
|
-
user-select: none;
|
|
25
|
-
}
|
|
26
|
-
`;var y=20,at=10,lt=4,wa=m(y,["|","/","-","\\"]),$a=m(y,["\u2808","\u2810","\u2820","\u2880","\u2840","\u2804","\u2802","\u2801"]),_a=m(y,["\u2B06\uFE0F","\u2197\uFE0F","\u27A1\uFE0F","\u2198\uFE0F","\u2B07\uFE0F","\u2199\uFE0F","\u2B05\uFE0F","\u2196\uFE0F"]),Aa=m(y,["\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"]),Sa=m(y,["\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"]),ka=m(y,["\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"]),Ca=m(y,["\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"]),Ea=m(y,["\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"]),Ta=m(y,["\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"]),za=m(lt,["\u{1F6B6}","\u{1F3C3}"]),Oa=m(at,["\u25F7","\u25F6","\u25F5","\u25F4"]),Pa=m(y,["=----","-=---","--=--","---=-","----=","----=","---=-","--=--","-=---","=----"]),Ra=m(y,["o----","-o---","--o--","---o-","----o","----o","---o-","--o--","-o---","o----"]),Ma=m(at,["[ ]","[ ]","[= ]","[== ]","[===]","[ ==]","[ =]"]),Ba=m(at,["[ ]","[ ]","[= ]","[== ]","[===]","[ ==]","[ =]","[ ]","[ ]","[ =]","[ ==]","[===]","[== ]","[= ]"]),Na=m(at,[" "," ",". ",".. ","..."," .."," ."]),Ha=m(y,[". ",". ",".. ","..."," .."," ."," ."," ..","...",".. "]),qa=m(y,[".....",".....",":....","::...",":::..","::::.",":::::",":::::",".::::","..:::","...::","....:"]),ja=m(y,[":....",":....","::...",".::..","..::.","...::","....:","....:","...::","..::.",".::..","::..."]),Ua=m(y,[".....",".....","..:..",".:::.",".:::.",":::::",":::::","::.::",":...:"]),Da=m(y,[".....",".....","..:..",".:::.",".:::.",":::::",":::::","::.::",":...:",".....",".....",":...:","::.::",":::::",":::::",".:::.",".:::.","..:.."]),La=m(y,["000","100","110","111","011","001"]),Va=m(y,["11111","01111","00111","10011","11001","01100","00110","10011","11001","11100","11110"]),Ia=m(y,["11111","01111","10111","11011","11101","11110","11111","11110","11101","11011","10111","01111"]),Wa=m(lt,["\u{1F539}","\u{1F535}"]),Fa=m(at,["\u{1F642}","\u{1F642}","\u{1F617}","\u{1F619}","\u{1F618}","\u{1F618}","\u{1F619}"]),Xa=m(y,["\u{1F550}","\u{1F551}","\u{1F552}","\u{1F553}","\u{1F554}","\u{1F555}","\u{1F556}","\u{1F557}","\u{1F558}","\u{1F559}","\u{1F55A}","\u{1F55B}"]),Ga=m(y,["\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}"]),Qr=m(lt,["\u{1F30E}","\u{1F30F}","\u{1F30D}"]),Ya=m(lt,["\u{1F513}","\u{1F512}"]),Za=m(lt,["\u{1F505}","\u{1F506}"]),Ja=m(lt,["\u{1F508}","\u{1F508}","\u{1F509}","\u{1F50A}","\u{1F50A}","\u{1F509}"]),Ka=m(at,["\u{1F311}","\u{1F311}","\u{1F311}","\u{1F318}","\u{1F317}","\u{1F316}","\u{1F315}","\u{1F314}","\u{1F313}","\u{1F312}"]);var eo=f(r=>t=>(r.name("error"),r.styles(Y,ro),typeof t=="string"?t:t instanceof Error?h`<strong>${t.name}:</strong> <span>${t.message}</span>`:"error")),ro=c`
|
|
27
|
-
:host {
|
|
28
|
-
font-family: monospace;
|
|
29
|
-
color: red;
|
|
30
|
-
}
|
|
31
|
-
`;function io(r,t){return t.transmute((...e)=>[r,...e])}function cr(r){return Mt(r).map(t=>t.view)}function hr(r,t){return Mt(t).map(e=>class extends e{context=r;static view=io(r,super.view)})}var ur=()=>new Rt(()=>["lorem kettlebell dolor sit amet, mountain squats consectetur trail-running. adipiscing deadlift elit, sed do 45lb turkish get-up eiusmod tempor incididunt ut hike magna aliqua. ut enim ad minim clean & press, quis nostrud exercitation lunges ullamco kettlebell snatch trailhead nisi ut aliquip ex dolore summit irure dolor.","lorem protein dolor sit amet, creatine scoop elit shaker bottle tempor. grilled steak magna keto-fasting culpa, carb-loading perspiciatis cheat day. whey isolate dolor sit macros elit, intermittent fasting tempor electrolyte magna; barefoot shoes culpa, liver perspiciatis ancestral squat rack gospel. lorem bulking dolor sit cut elit, tdee tracker tempor calorie deficit magna; chicken breast culpa gatorade perspiciatis meal prep.","lorem caffeine dolor sit amet, double espresso elit cold brew tempor jitter. adderall magna focus culpa, lion\u2019s mane perspiciatis nootropic. nicotine gum dolor sit vape elit, dopamine hit tempor buzz magna; lsd microdosing culpa, productivity perspiciatis agile sprint. lorem latte dolor sit drip elit, french press tempor aeropress magna; insomnia culpa, circadian rhythm perspiciatis blue light filter.","lorem arch dolor sit amet, pacman -Syu elit rolling release tempor breakage. i3-gaps commodo tiling, bspwm magna culpa xinitrc. alias neovim configs in .dotfiles forest, r/unixporn veniam rice showcase perspiciatis.","lorem authlocal dolor sit amet, user-sovereign identity elit, cryptographic tempor signatures. ed25519 magna keypair culpa, elliptic perspiciatis handshake ut zero-knowledge proof. decentralized login elit mnemonic seed tempor recovery phrase. did magna alias culpa federation, lorem oauth2 perspiciatis antiquated.","lorem webgpu dolor sit amet, fragment shader elit vertex buffer tempor pipeline; bindgroup magna sampler culpa, wgsl perspiciatis alignment bug. compute pass workgroup barrier magna, mipmap cascade culpa drawcall instancing overflow. spir-v dolor sit wasm elit, canvas context lost magna; fallback webgl2 perspiciatis, polyfill slowpath dolore, glsl antique culpa extension hell 144hz tearing. command encoder perspiciatis out-of-memory, chromium nightly.","lorem sedentary dolor sit amet, infinite scroll elit chair-bound tempor. commit marathon magna carpal tunnel culpa, caffeine perspiciatis heartbeat irregular. lorem backlog dolor sit ticket elit, jira sprint tempor sedentary slump magna; gym membership culpa expired, standing desk perspiciatis unused. lorem procrastination dolor sit youtube elit, keyboard crumbs tempor pizza box magna; cardio avoidant culpa, hike someday perspiciatis maybe."]);var xe=ur(),H=()=>xe.takeFirst();var dr=c`@layer view {
|
|
32
|
-
|
|
33
|
-
:host {
|
|
34
|
-
position: relative;
|
|
35
|
-
|
|
36
|
-
display: flex;
|
|
37
|
-
flex-direction: column;
|
|
38
|
-
|
|
39
|
-
padding: 1em;
|
|
40
|
-
border-radius: 0.5em;
|
|
41
|
-
gap: 1em;
|
|
42
|
-
|
|
43
|
-
background: linear-gradient(to right top, #252dd985, #aa6affbd);
|
|
44
|
-
backdrop-filter: blur(0.5em);
|
|
45
|
-
|
|
46
|
-
box-shadow: 0 0 5em #5d1fadaa;
|
|
47
|
-
border-top: 2px solid #fff4;
|
|
48
|
-
|
|
49
|
-
&::before {
|
|
50
|
-
content: "";
|
|
51
|
-
display: block;
|
|
52
|
-
position: absolute;
|
|
53
|
-
inset: 0;
|
|
54
|
-
border-radius: 0.5em;
|
|
55
|
-
background: #0007;
|
|
56
|
-
width: calc(100% - 0.3em);
|
|
57
|
-
height: calc(100% - 0.3em);
|
|
58
|
-
margin: auto;
|
|
59
|
-
z-index: 0;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
> * {
|
|
63
|
-
position: relative;
|
|
64
|
-
z-index: 1;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
header {
|
|
69
|
-
display: flex;
|
|
70
|
-
flex-wrap: wrap;
|
|
71
|
-
place-content: center center;
|
|
72
|
-
gap: 0.5em;
|
|
73
|
-
|
|
74
|
-
h2 {
|
|
75
|
-
flex: 1 1 auto;
|
|
76
|
-
color: var(--prime);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
}`;function Kt(){return{bg:"#111",alpha:"#def",lame:"#8888",angry:"#f50",zesty:"#cf0",happy:"#0fa",calm:"#0af",sad:"#74f",quirky:"#f49","inactive-opacity":"0.5","anim-duration":"300ms"}}function Qt(r){return At(Object.entries(r).map(([t,e])=>`--${t}: var(--shiny-${t}, ${e});`).join(`
|
|
81
|
-
`))}var mr=c`@layer overlay {
|
|
82
|
-
|
|
83
|
-
:host {
|
|
84
|
-
${Qt({...Kt()})}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
:host([view="shiny-button"]:not([plain])) {
|
|
88
|
-
position: relative;
|
|
89
|
-
|
|
90
|
-
--buttoncolor: var(--calm);
|
|
91
|
-
--padding: 0.3em 0.7em;
|
|
92
|
-
|
|
93
|
-
color: white;
|
|
94
|
-
border-radius: 2em;
|
|
95
|
-
background: var(--buttoncolor);
|
|
96
|
-
border: none;
|
|
97
|
-
|
|
98
|
-
font-weight: medium;
|
|
99
|
-
text-shadow: 0.1em 0.1em 0.1em #0004;
|
|
100
|
-
box-shadow: 0.1em 0.2em 0.3em #0002;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
:host([view="shiny-button"][lame]) { --buttoncolor: var(--lame); }
|
|
104
|
-
:host([view="shiny-button"][angry]) { --buttoncolor: var(--angry); }
|
|
105
|
-
:host([view="shiny-button"][zesty]) { --buttoncolor: var(--zesty); }
|
|
106
|
-
:host([view="shiny-button"][happy]) { --buttoncolor: var(--happy); }
|
|
107
|
-
:host([view="shiny-button"][calm]) { --buttoncolor: var(--calm); }
|
|
108
|
-
:host([view="shiny-button"][sad]) { --buttoncolor: var(--sad); }
|
|
109
|
-
:host([view="shiny-button"][quirky]) { --buttoncolor: var(--quirky); }
|
|
110
|
-
|
|
111
|
-
:host([view="shiny-button"][gradient]:not([plain])) {
|
|
112
|
-
border: none;
|
|
113
|
-
background: linear-gradient(
|
|
114
|
-
to bottom right,
|
|
115
|
-
color-mix(in oklab, var(--buttoncolor), white 40%),
|
|
116
|
-
color-mix(in oklab, var(--buttoncolor), black 20%)
|
|
117
|
-
);
|
|
118
|
-
|
|
119
|
-
&::before {
|
|
120
|
-
content: "";
|
|
121
|
-
display: block;
|
|
122
|
-
position: absolute;
|
|
123
|
-
z-index: 0;
|
|
124
|
-
inset: 0.15em;
|
|
125
|
-
border-radius: inherit;
|
|
126
|
-
background: color-mix(in oklab, var(--buttoncolor), #0004 50%);
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
> * {
|
|
130
|
-
position: relative;
|
|
131
|
-
z-index: 1;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
:host([view="shiny-drawer"]:not([plain])) {
|
|
136
|
-
display: block;
|
|
137
|
-
--slate-bg: linear-gradient(
|
|
138
|
-
to top right,
|
|
139
|
-
color-mix(in oklab, var(--calm), #222 50%),
|
|
140
|
-
color-mix(in oklab, var(--calm), #888 50%)
|
|
141
|
-
);
|
|
142
|
-
|
|
143
|
-
&::part(slate) {
|
|
144
|
-
padding: 1em;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
:host([view="shiny-drawer"]:state(left)) {
|
|
149
|
-
&::part(slate) {
|
|
150
|
-
border-bottom-right-radius: 0.5em;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
:host([view="shiny-drawer"]:state(right)) {
|
|
155
|
-
&::part(slate) {
|
|
156
|
-
border-bottom-left-radius: 0.5em;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
}`;var fr=c`@layer overlay {
|
|
161
|
-
|
|
162
|
-
:host {
|
|
163
|
-
${Qt(Kt())}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
}`;var br=c`@layer view {
|
|
167
|
-
|
|
168
|
-
:host {
|
|
169
|
-
opacity: 0.8;
|
|
170
|
-
display: inline-flex;
|
|
171
|
-
width: max-content;
|
|
172
|
-
height: max-content;
|
|
173
|
-
|
|
174
|
-
--padding: 0.3em;
|
|
175
|
-
border-radius: 0.2em;
|
|
176
|
-
border: 0.1em solid currentColor;
|
|
177
|
-
|
|
178
|
-
cursor: pointer;
|
|
179
|
-
background: transparent;
|
|
180
|
-
user-select: none;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
:host(:not([disabled]):is(:hover, :focus-visible)) { opacity: 1; }
|
|
184
|
-
:host(:not([disabled]):active) { opacity: 0.6; }
|
|
185
|
-
|
|
186
|
-
:host([disabled]) {
|
|
187
|
-
cursor: default;
|
|
188
|
-
color: var(--lame);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
:host([hidden]) {
|
|
192
|
-
display: none !important;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
:host([lame]) { color: var(--lame); }
|
|
196
|
-
:host([angry]) { color: var(--angry); }
|
|
197
|
-
:host([zesty]) { color: var(--zesty); }
|
|
198
|
-
:host([happy]) { color: var(--happy); }
|
|
199
|
-
:host([calm]) { color: var(--calm); }
|
|
200
|
-
:host([sad]) { color: var(--sad); }
|
|
201
|
-
:host([quirky]) { color: var(--quirky); }
|
|
202
|
-
|
|
203
|
-
button {
|
|
204
|
-
background: transparent;
|
|
205
|
-
border: none;
|
|
206
|
-
|
|
207
|
-
font: inherit;
|
|
208
|
-
color: inherit;
|
|
209
|
-
cursor: inherit;
|
|
210
|
-
text-shadow: inherit;
|
|
211
|
-
|
|
212
|
-
display: inline-flex;
|
|
213
|
-
justify-content: center;
|
|
214
|
-
align-items: center;
|
|
215
|
-
|
|
216
|
-
width: 100%;
|
|
217
|
-
height: 100%;
|
|
218
|
-
padding: var(--padding);
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
slot {
|
|
222
|
-
display: contents;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
}`;var A=c`
|
|
226
|
-
|
|
227
|
-
@layer reset, underlay, view, overlay;
|
|
228
|
-
|
|
229
|
-
${Y}
|
|
230
|
-
|
|
231
|
-
@layer overlay {
|
|
232
|
-
[hidden] { display: none !important; }
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
`;var S=class extends N{context};var te=class extends f(t=>(e,o)=>{t.name("shiny-button"),t.styles(A,e.theme,br);let s=t.attrs.spec({disabled:Boolean,hidden:Boolean});return h`
|
|
236
|
-
<button
|
|
237
|
-
part=button
|
|
238
|
-
?disabled="${s.disabled}"
|
|
239
|
-
?hidden="${s.hidden}">
|
|
240
|
-
<slot>${o}</slot>
|
|
241
|
-
</button>
|
|
242
|
-
`}).component(S).props(t=>[t.context]){};var gr=c`@layer view {
|
|
243
|
-
|
|
244
|
-
button {
|
|
245
|
-
background: transparent;
|
|
246
|
-
border: none;
|
|
247
|
-
font-size: inherit;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
button {
|
|
251
|
-
opacity: var(--inactive-opacity);
|
|
252
|
-
cursor: pointer;
|
|
253
|
-
cursor: copy;
|
|
254
|
-
|
|
255
|
-
color: inherit;
|
|
256
|
-
transition: all 300ms linear;
|
|
257
|
-
|
|
258
|
-
&:is(:hover, :focus-visible) {
|
|
259
|
-
opacity: 1;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
[data-status="invalid"] {
|
|
264
|
-
color: var(--lame);
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
[data-status="good"] {
|
|
268
|
-
opacity: 1;
|
|
269
|
-
color: var(--happy);
|
|
270
|
-
filter: drop-shadow(0 0 0.3em color-mix(in oklab, transparent, currentColor 50%));
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
[data-status="bad"] {
|
|
274
|
-
opacity: 1;
|
|
275
|
-
color: var(--angry);
|
|
276
|
-
filter: drop-shadow(0 0 0.3em color-mix(in oklab, transparent, currentColor 50%));
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
svg {
|
|
280
|
-
width: 1em;
|
|
281
|
-
height: 1em;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
}`;var ve=C`<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 yr=C`<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 xr=C`<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 ee=class extends f(t=>(e,o,s=1e3)=>{t.name("shiny-copy"),t.styles(A,e.theme,gr);let n=()=>o===void 0?"invalid":"neutral",i=t.signal(n()),l=t.once(()=>M(s,()=>i.set(n()))),a=t.once(()=>async p=>{await i.set(p),await l()});async function d(){if(o!==void 0)try{if(t.attrs.booleans.fail)throw new Error("copy failed on purpose for testing purposes");await navigator.clipboard.writeText(o),await a("good")}catch(p){console.error(p),await a("bad")}}let g=(()=>{switch(i.get()){case"neutral":return ve;case"invalid":return ve;case"good":return xr;case"bad":return yr;default:throw new Error("unknown copy status")}})();return h`
|
|
285
|
-
<button data-status="${i.get()}" @click="${d}">
|
|
286
|
-
${g}
|
|
287
|
-
</button>
|
|
288
|
-
`}).component(class extends S{#t=u.attrs(this).spec({text:String,ms:Number});get text(){return this.#t.text}set text(t){this.#t.text=t}get ms(){return this.#t.ms}set ms(t){this.#t.ms=t}}).props(t=>[t.context,t.text,t.ms]){};var vr=c`@layer view {
|
|
289
|
-
|
|
290
|
-
:host {
|
|
291
|
-
display: block;
|
|
292
|
-
width: 100%;
|
|
293
|
-
height: 100%;
|
|
294
|
-
--slate-bg: transparent;
|
|
295
|
-
--button-size: 2em;
|
|
296
|
-
--blanket-backdrop-filter: blur(0.5em);
|
|
297
|
-
--slate-hidden-opacity: 1;
|
|
298
|
-
--blanket-bg: color-mix(in oklab, transparent, var(--bg));
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.shell {
|
|
302
|
-
position: relative;
|
|
303
|
-
width: 100%;
|
|
304
|
-
height: 100%;
|
|
305
|
-
|
|
306
|
-
[part="blanket"] {
|
|
307
|
-
opacity: 0;
|
|
308
|
-
|
|
309
|
-
content: "";
|
|
310
|
-
display: block;
|
|
311
|
-
position: absolute;
|
|
312
|
-
inset: 0;
|
|
313
|
-
|
|
314
|
-
background: var(--blanket-bg);
|
|
315
|
-
backdrop-filter: var(--blanket-backdrop-filter);
|
|
316
|
-
|
|
317
|
-
will-change: opacity;
|
|
318
|
-
transition: all var(--anim-duration) ease;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.clipper {
|
|
322
|
-
pointer-events: none;
|
|
323
|
-
position: absolute;
|
|
324
|
-
inset: 0;
|
|
325
|
-
width: 100%;
|
|
326
|
-
height: 100%;
|
|
327
|
-
overflow: hidden;
|
|
328
|
-
> * { pointer-events: all; }
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
[part="tray"] {
|
|
332
|
-
position: absolute;
|
|
333
|
-
top: 0;
|
|
334
|
-
width: calc(100% - var(--button-size));
|
|
335
|
-
|
|
336
|
-
display: flex;
|
|
337
|
-
flex-direction: column;
|
|
338
|
-
height: auto;
|
|
339
|
-
max-height: 100%;
|
|
340
|
-
|
|
341
|
-
transform: translateX(-100%);
|
|
342
|
-
will-change: opacity, transform;
|
|
343
|
-
transition: all var(--anim-duration) ease;
|
|
344
|
-
|
|
345
|
-
> [part="slate"] {
|
|
346
|
-
opacity: var(--slate-hidden-opacity);
|
|
347
|
-
will-change: opacity;
|
|
348
|
-
transition: opacity var(--anim-duration) ease;
|
|
349
|
-
|
|
350
|
-
display: block;
|
|
351
|
-
height: 100%;
|
|
352
|
-
overflow-y: auto;
|
|
353
|
-
background: var(--slate-bg);
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
> button {
|
|
357
|
-
position: absolute;
|
|
358
|
-
top: 0;
|
|
359
|
-
left: 100%;
|
|
360
|
-
|
|
361
|
-
opacity: var(--inactive-opacity);
|
|
362
|
-
background: transparent;
|
|
363
|
-
border: none;
|
|
364
|
-
cursor: pointer;
|
|
365
|
-
|
|
366
|
-
&:is(:hover, :focus-visible) {
|
|
367
|
-
opacity: 1;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
> slot {
|
|
371
|
-
display: contents;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
svg {
|
|
375
|
-
width: var(--button-size);
|
|
376
|
-
height: var(--button-size);
|
|
377
|
-
}
|
|
378
|
-
}
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
&[data-side="right"] {
|
|
382
|
-
[part="tray"] {
|
|
383
|
-
right: 0;
|
|
384
|
-
transform: translateX(100%);
|
|
385
|
-
> button {
|
|
386
|
-
left: unset;
|
|
387
|
-
right: 100%;
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
slot[name="plate"] {
|
|
393
|
-
display: block;
|
|
394
|
-
width: 100%;
|
|
395
|
-
height: 100%;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
&[data-open] {
|
|
399
|
-
[part="blanket"] {
|
|
400
|
-
opacity: 1;
|
|
401
|
-
}
|
|
402
|
-
[part="tray"] {
|
|
403
|
-
transform: translateX(0%);
|
|
404
|
-
> [part="slate"] {
|
|
405
|
-
opacity: 1;
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
}`;var wt=class{$open=w(!1);constructor(t=!1){t&&this.$open.set(!0)}get isOpen(){return this.$open.get()}async setOpen(t){return this.$open.set(t)}open=async()=>{await this.setOpen(!0)};close=async()=>{await this.setOpen(!1)};toggle=async()=>this.setOpen(!this.isOpen)};var re=class{#t;constructor(t){this.#t=t.attachInternals().states}assign(...t){this.#t.forEach(e=>this.#t.delete(e));for(let e of t)this.#t.add(e);return this}};var wr=C`<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-x"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M18 6l-12 12" /><path d="M6 6l12 12" /></svg>`;var $r=C`<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-menu-2"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 6l16 0" /><path d="M4 12l16 0" /><path d="M4 18l16 0" /></svg>`;var oe=class extends f(t=>(e,o)=>{t.name("shiny-drawer"),t.styles(A,e.theme,vr);let s=t.once(()=>new re(t.element)),n=o.button??t.attrs.booleans.button,i=o.side??(t.attrs.strings.side==="right"?"right":"left"),l=t.once(()=>o.control??new wt);s.assign(i,l.isOpen?"opened":"closed"),t.mount(()=>u.events(window,{keydown:d=>{d.code==="Escape"&&l.close()}})),u.attrs(t.element).booleans.open=l.isOpen;function a(){return h`
|
|
412
|
-
<button part=button @click="${l.toggle}">
|
|
413
|
-
${l.isOpen?h`
|
|
414
|
-
<slot name=button-x>
|
|
415
|
-
${wr}
|
|
416
|
-
</slot>
|
|
417
|
-
`:h`
|
|
418
|
-
<slot name=button>
|
|
419
|
-
${$r}
|
|
420
|
-
</slot>
|
|
421
|
-
`}
|
|
422
|
-
</button>
|
|
423
|
-
`}return h`
|
|
424
|
-
<div class=shell ?data-open="${l.isOpen}" data-side="${i}">
|
|
425
|
-
<slot name=plate ?inert="${l.isOpen}"></slot>
|
|
426
|
-
|
|
427
|
-
<div class=clipper>
|
|
428
|
-
<div part=blanket @click="${l.close}" ?inert="${!l.isOpen}"></div>
|
|
429
|
-
|
|
430
|
-
<div part=tray>
|
|
431
|
-
<slot part=slate ?inert="${!l.isOpen}"></slot>
|
|
432
|
-
${n?a():null}
|
|
433
|
-
</div>
|
|
434
|
-
</div>
|
|
435
|
-
</div>
|
|
436
|
-
`}).component(class extends S{#t=u.attrs(this).spec({open:Boolean,button:Boolean,side:String});get button(){return this.#t.button}set button(t){this.#t.button=t}get side(){return this.#t.side==="right"?"right":"left"}set side(t){this.#t.side=t}control=new wt(this.#t.open);get isOpen(){return this.control.isOpen}get toggle(){return this.control.toggle}get open(){return this.control.open}get close(){return this.control.close}}).props(t=>[t.context,{control:t.control}]){};var _r=c`@layer view {
|
|
437
|
-
|
|
438
|
-
button {
|
|
439
|
-
padding: 1em;
|
|
440
|
-
min-width: 4em;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
}`;var se=class extends f(t=>(e,o=1)=>{t.name("shiny-example"),t.styles(A,e.theme,_r);let s=t.signal(o);return h`
|
|
444
|
-
<button @click="${()=>{s.value++}}">
|
|
445
|
-
${s()}
|
|
446
|
-
</button>
|
|
447
|
-
`}).component(class extends S{attrs=u.attrs(this).spec({start:Number})}).props(t=>[t.context,t.attrs.start]){};var Ar=c`@layer view {
|
|
448
|
-
|
|
449
|
-
:host {
|
|
450
|
-
display: inline-flex;
|
|
451
|
-
flex-direction: column;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
slot[part="tabs"] {
|
|
455
|
-
display: flex;
|
|
456
|
-
flex-wrap: wrap;
|
|
457
|
-
|
|
458
|
-
&::slotted([data-active]) {
|
|
459
|
-
opacity: 1;
|
|
460
|
-
color: currentColor;
|
|
461
|
-
text-decoration: underline;
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
:host([snug]) slot[part="tabs"] {
|
|
466
|
-
&::slotted(*) {
|
|
467
|
-
border-radius: 0.3em;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
&::slotted(:not([data-last], [data-next-is-active])) {
|
|
471
|
-
border-right: none;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
&::slotted([data-active]:not([data-first])) {
|
|
475
|
-
border-left: none;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
&::slotted(:not([data-last])) {
|
|
479
|
-
border-top-right-radius: 0;
|
|
480
|
-
border-bottom-right-radius: 0;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
&::slotted(:not([data-first])) {
|
|
484
|
-
border-top-left-radius: 0;
|
|
485
|
-
border-bottom-left-radius: 0;
|
|
486
|
-
}
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
} `;var T=class{length=1;$index=w(0);constructor(t=0){this.$index.value=t}clamp(t){return t=Math.min(t,this.length-1),t=Math.max(t,0),t}get index(){return this.clamp(this.$index.get())}async setIndex(t){return this.$index.set(t)}async shimmy(t){let e=this.clamp(this.index+t);return this.setIndex(e)}};var ne=class extends f(t=>(e,o)=>{t.name("shiny-tabs"),t.styles(A,e.theme,Ar);let s=t.attrs.spec({index:Number}),n=t.once(()=>o??new T(s.index??0)),i=t.signal([]),l=t.signal([]);async function a(p){let b=p.currentTarget;await i.set(b.assignedElements())}async function d(p){let b=p.currentTarget;await l.set(b.assignedElements())}s.index=n.$index(),n.length=i().length;function g(p,b){let $=n.clamp(p+b);return $===p?!1:$===n.index}for(let[p,b]of i().entries()){let $=p===n.index,k=u.attrs(b);k.booleans.disabled=$,k.booleans["data-active"]=$,k.booleans["data-first"]=p===0,k.booleans["data-last"]=p===n.length-1,k.booleans["data-next-is-active"]=g(p,1),k.booleans["data-previous-is-active"]=g(p,-1),b.onclick=()=>n.setIndex(p)}for(let[p,b]of l().entries()){let $=p===n.index;u.attrs(b).booleans.active=$,u.attrs(b).booleans.hidden=!$}return h`
|
|
490
|
-
<slot part=tabs @slotchange="${a}"></slot>
|
|
491
|
-
<slot part=panels name=panel @slotchange="${d}"></slot>
|
|
492
|
-
`}).component(class extends S{control=new T;get index(){return this.control.index}get length(){return this.control.length}setIndex=this.control.setIndex.bind(this.control);shimmy=this.control.shimmy.bind(this.control)}).props(t=>[t.context,t.control]){};var Sr={ShinyButton:te,ShinyCopy:ee,ShinyDrawer:oe,ShinyExample:se,ShinyTabs:ne};function we(r){let t=hr(r,Sr),e=cr(t);return{components:t,views:e}}var z=we({theme:mr}).views,$e=[["aura",z],["plain",we({theme:fr}).views]];var kr=c`@layer view {
|
|
493
|
-
|
|
494
|
-
:host {
|
|
495
|
-
display: flex;
|
|
496
|
-
flex-wrap: wrap;
|
|
497
|
-
gap: 0.5em;
|
|
498
|
-
|
|
499
|
-
> * {
|
|
500
|
-
flex: 1 1 10em;
|
|
501
|
-
min-width: 0;
|
|
502
|
-
}
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.meta {
|
|
506
|
-
display: flex;
|
|
507
|
-
flex-direction: column;
|
|
508
|
-
justify-content: space-between;
|
|
509
|
-
gap: 1em;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.snippet {
|
|
513
|
-
flex: 1 0 auto;
|
|
514
|
-
display: flex;
|
|
515
|
-
flex-direction: column;
|
|
516
|
-
gap: 0.5em;
|
|
517
|
-
padding: 0.5em;
|
|
518
|
-
max-height: 20em;
|
|
519
|
-
|
|
520
|
-
background: #0002;
|
|
521
|
-
box-shadow: inset 0.2em 0.3em 2em #0004;
|
|
522
|
-
border-radius: 0.5em;
|
|
523
|
-
|
|
524
|
-
> header {
|
|
525
|
-
display: flex;
|
|
526
|
-
flex-wrap: wrap;
|
|
527
|
-
align-items: center;
|
|
528
|
-
|
|
529
|
-
[view="shiny-copy"] { font-size: 1.5em; }
|
|
530
|
-
[view="shiny-tabs"] {
|
|
531
|
-
flex: 1 1 auto;
|
|
532
|
-
font-size: 0.8em;
|
|
533
|
-
color: color-mix(in oklab, transparent, currentColor 50%);
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
> code {
|
|
538
|
-
flex: 1 1 auto;
|
|
539
|
-
display: block;
|
|
540
|
-
|
|
541
|
-
white-space: pre;
|
|
542
|
-
text-wrap: wrap;
|
|
543
|
-
tab-size: 2;
|
|
544
|
-
word-break: keep-all;
|
|
545
|
-
overflow: auto;
|
|
546
|
-
|
|
547
|
-
color: var(--code);
|
|
548
|
-
font-size: 0.8em;
|
|
549
|
-
font-family: monospace;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.box {
|
|
554
|
-
display: flex;
|
|
555
|
-
flex-wrap: wrap;
|
|
556
|
-
justify-content: center;
|
|
557
|
-
align-items: center;
|
|
558
|
-
align-content: center;
|
|
559
|
-
|
|
560
|
-
gap: 0.5em;
|
|
561
|
-
padding: 1em;
|
|
562
|
-
|
|
563
|
-
border-radius: 0.5rem;
|
|
564
|
-
border: 1px dashed color-mix(in oklab, transparent, currentColor 30%);
|
|
565
|
-
|
|
566
|
-
p.lipsum {
|
|
567
|
-
opacity: 0.7;
|
|
568
|
-
font-family: serif;
|
|
569
|
-
font-style: italic;
|
|
570
|
-
}
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
}`;var Cr=f(r=>(t,e,o)=>{r.name(`exhibit-${t.label}`),r.styles(A,kr,o,t.style);let s=r.once(()=>new T),n=t.snippets.at(s.index),i=n?Ge(n.code).trim():"";return h`
|
|
574
|
-
<div class=meta>
|
|
575
|
-
${t.explain}
|
|
576
|
-
|
|
577
|
-
<div class=snippet>
|
|
578
|
-
<header>
|
|
579
|
-
${z.ShinyTabs.props(s).attr("snug").children(t.snippets.map(l=>z.ShinyButton.props().attr("plain").children(l.label).render())).render()}
|
|
580
|
-
${z.ShinyCopy(i)}
|
|
581
|
-
</header>
|
|
582
|
-
<code>${i}</code>
|
|
583
|
-
</div>
|
|
584
|
-
</div>
|
|
585
|
-
|
|
586
|
-
<div class=box>
|
|
587
|
-
${t.presentation(e)}
|
|
588
|
-
</div>
|
|
589
|
-
`});var q=f(r=>t=>{r.name(`showcase-${t.name}`),r.styles(A,dr);let e=r.once(()=>new T),o=r.once(()=>new T),s=$e.at(o.index)[1],n=t.exhibits.at(e.index);return h`
|
|
590
|
-
<header>
|
|
591
|
-
<h2>✨shiny-${t.name}✨</h2>
|
|
592
|
-
${z.ShinyTabs.props(e).attr("snug").children(t.exhibits.map(i=>z.ShinyButton.props().attr("sad").children(i.label).render())).render()}
|
|
593
|
-
${z.ShinyTabs.props(o).attr("snug").children($e.map(([i])=>z.ShinyButton.props().children(i).render())).render()}
|
|
594
|
-
</header>
|
|
595
|
-
|
|
596
|
-
${Cr(n,s,t.style)}
|
|
597
|
-
`});var Er=`
|
|
598
|
-
[view="shiny-copy"] {
|
|
599
|
-
font-size: 1em;
|
|
600
|
-
--happy: #0fa;
|
|
601
|
-
--angry: #f50;
|
|
602
|
-
--lame: #8888;
|
|
603
|
-
--inactive-opacity: 0.5;
|
|
604
|
-
}
|
|
605
|
-
`,Tr=()=>q({name:"copy",style:c`
|
|
606
|
-
.box {
|
|
607
|
-
> * { font-size: 4em; }
|
|
608
|
-
}
|
|
609
|
-
`,exhibits:[{label:"succeed",explain:h`<p>click-to-copy text button.</p>`,snippets:[{label:"html",code:'<shiny-copy text="hello world"></shiny-button>'},{label:"view",code:'ShinyCopy("hello world")'},{label:"css",code:Er}],style:c``,presentation:r=>h`
|
|
610
|
-
${r.ShinyCopy("hello world")}
|
|
611
|
-
`},{label:"fail",explain:h`<p>copy text button, deliberately fails so you can see.</p>`,snippets:[{label:"html",code:"<shiny-copy fail></shiny-button>"},{label:"view",code:'ShinyCopy.props("").attr("fail").render()'},{label:"css",code:Er}],style:c``,presentation:r=>h`
|
|
612
|
-
${r.ShinyCopy.props("").attr("fail").render()}
|
|
613
|
-
`}]});var _e=H(),Ae=H(),Se=H(),ke=`
|
|
614
|
-
[view="shiny-tabs"] {
|
|
615
|
-
&::part(tabs) {}
|
|
616
|
-
&::part(panels) {}
|
|
617
|
-
|
|
618
|
-
/* buttons */
|
|
619
|
-
> :not([slot="panel"]) {}
|
|
620
|
-
|
|
621
|
-
/* panels */
|
|
622
|
-
> [slot="panel"] {}
|
|
623
|
-
}
|
|
624
|
-
`,zr=()=>q({name:"tabs",style:c`
|
|
625
|
-
.box {
|
|
626
|
-
place-content: start start;
|
|
627
|
-
p { margin-top: 0.5em; }
|
|
628
|
-
button { padding: 1em; }
|
|
629
|
-
}
|
|
630
|
-
`,exhibits:[{label:"shiny snug",explain:h`<p>button bar. panels optional.</p>`,snippets:[{label:"html",code:`
|
|
631
|
-
<shiny-tabs snug>
|
|
632
|
-
<shiny-button>tab1</shiny-button>
|
|
633
|
-
<shiny-button>tab2</shiny-button>
|
|
634
|
-
<shiny-button>tab3</shiny-button>
|
|
635
|
-
<div slot=panel>panel1</div>
|
|
636
|
-
<div slot=panel>panel2</div>
|
|
637
|
-
<div slot=panel>panel3</div>
|
|
638
|
-
</shiny-tabs>
|
|
639
|
-
`},{label:"view",code:`
|
|
640
|
-
ShinyTabs
|
|
641
|
-
.props()
|
|
642
|
-
.attr("snug")
|
|
643
|
-
.children(html\`
|
|
644
|
-
\${ShinyButton.props().children("tab1").render()}
|
|
645
|
-
\${ShinyButton.props().children("tab2").render()}
|
|
646
|
-
\${ShinyButton.props().children("tab3").render()}
|
|
647
|
-
<div slot=panel>panel1</div>
|
|
648
|
-
<div slot=panel>panel2</div>
|
|
649
|
-
<div slot=panel>panel3</div>
|
|
650
|
-
\`)
|
|
651
|
-
.render()
|
|
652
|
-
`},{label:"css",code:ke}],style:c``,presentation:r=>h`
|
|
653
|
-
${r.ShinyTabs.props().attr("snug").children(h`
|
|
654
|
-
${r.ShinyButton.props().children("tab1").render()}
|
|
655
|
-
${r.ShinyButton.props().children("tab2").render()}
|
|
656
|
-
${r.ShinyButton.props().children("tab3").render()}
|
|
657
|
-
<p slot=panel class=lipsum>${_e}</p>
|
|
658
|
-
<p slot=panel class=lipsum>${Ae}</p>
|
|
659
|
-
<p slot=panel class=lipsum>${Se}</p>
|
|
660
|
-
`).render()}
|
|
661
|
-
`},{label:"regular",explain:h`<p>button bar. panels optional.</p>`,snippets:[{label:"html",code:`
|
|
662
|
-
<shiny-tabs>
|
|
663
|
-
<button>tab1</button>
|
|
664
|
-
<button>tab2</button>
|
|
665
|
-
<button>tab3</button>
|
|
666
|
-
<div slot=panel>panel1</div>
|
|
667
|
-
<div slot=panel>panel2</div>
|
|
668
|
-
<div slot=panel>panel3</div>
|
|
669
|
-
</shiny-tabs>
|
|
670
|
-
`},{label:"view",code:`
|
|
671
|
-
ShinyTabs
|
|
672
|
-
.props()
|
|
673
|
-
.children(html\`
|
|
674
|
-
<button>tab1</button>
|
|
675
|
-
<button>tab2</button>
|
|
676
|
-
<button>tab3</button>
|
|
677
|
-
<div slot=panel>panel1</div>
|
|
678
|
-
<div slot=panel>panel2</div>
|
|
679
|
-
<div slot=panel>panel3</div>
|
|
680
|
-
\`)
|
|
681
|
-
.render()
|
|
682
|
-
`},{label:"css",code:ke}],style:c``,presentation:r=>h`
|
|
683
|
-
${r.ShinyTabs.props().children(h`
|
|
684
|
-
<button>tab1</button>
|
|
685
|
-
<button>tab2</button>
|
|
686
|
-
<button>tab3</button>
|
|
687
|
-
<p slot=panel class=lipsum>${_e}</p>
|
|
688
|
-
<p slot=panel class=lipsum>${Ae}</p>
|
|
689
|
-
<p slot=panel class=lipsum>${Se}</p>
|
|
690
|
-
`).render()}
|
|
691
|
-
`},{label:"regular snug",explain:h`<p>button bar. panels optional.</p>`,snippets:[{label:"html",code:`
|
|
692
|
-
<shiny-tabs snug>
|
|
693
|
-
<button>tab1</button>
|
|
694
|
-
<button>tab2</button>
|
|
695
|
-
<button>tab3</button>
|
|
696
|
-
<div slot=panel>panel1</div>
|
|
697
|
-
<div slot=panel>panel2</div>
|
|
698
|
-
<div slot=panel>panel3</div>
|
|
699
|
-
</shiny-tabs>
|
|
700
|
-
`},{label:"view",code:`
|
|
701
|
-
ShinyTabs
|
|
702
|
-
.props()
|
|
703
|
-
.attr("snug")
|
|
704
|
-
.children(html\`
|
|
705
|
-
<button>tab1</button>
|
|
706
|
-
<button>tab2</button>
|
|
707
|
-
<button>tab3</button>
|
|
708
|
-
<div slot=panel>panel1</div>
|
|
709
|
-
<div slot=panel>panel2</div>
|
|
710
|
-
<div slot=panel>panel3</div>
|
|
711
|
-
\`)
|
|
712
|
-
.render()
|
|
713
|
-
`},{label:"css",code:ke}],style:c``,presentation:r=>h`
|
|
714
|
-
${r.ShinyTabs.props().attr("snug").children(h`
|
|
715
|
-
<button>tab1</button>
|
|
716
|
-
<button>tab2</button>
|
|
717
|
-
<button>tab3</button>
|
|
718
|
-
<p slot=panel class=lipsum>${_e}</p>
|
|
719
|
-
<p slot=panel class=lipsum>${Ae}</p>
|
|
720
|
-
<p slot=panel class=lipsum>${Se}</p>
|
|
721
|
-
`).render()}
|
|
722
|
-
`}]});var Ce=`
|
|
723
|
-
[view="shiny-button"] {
|
|
724
|
-
--padding: 0.3em;
|
|
725
|
-
font-size: 1em;
|
|
726
|
-
color: currentColor;
|
|
727
|
-
background: transparent;
|
|
728
|
-
}
|
|
729
|
-
`,Or=()=>q({name:"button",style:c`
|
|
730
|
-
.box {
|
|
731
|
-
> * { font-size: 1.5em; }
|
|
732
|
-
}
|
|
733
|
-
`,exhibits:[{label:"basic",explain:h`<p>clicky-clacky pressy button.</p>`,snippets:[{label:"html",code:"<shiny-button>button</shiny-button>"},{label:"view",code:'ShinyButton("button")'},{label:"css",code:Ce}],style:c``,presentation:r=>h`
|
|
734
|
-
${r.ShinyButton.props().children("button").render()}
|
|
735
|
-
`},{label:"gradient",explain:h`<p>added <code>gradient</code> attribute.</p>`,snippets:[{label:"html",code:"<shiny-button gradient>button</shiny-button>"},{label:"view",code:`
|
|
736
|
-
ShinyButton
|
|
737
|
-
.props("button")
|
|
738
|
-
.attr("gradient")
|
|
739
|
-
.render()
|
|
740
|
-
`},{label:"css",code:Ce}],style:c``,presentation:r=>h`
|
|
741
|
-
${r.ShinyButton.props().attr("gradient").children("button").render()}
|
|
742
|
-
`},{label:"catalog",explain:h`<p>clicky-clacky pressy buttons.</p>`,snippets:[{label:"html",code:`
|
|
743
|
-
<shiny-button calm gradient>calm</shiny-button>
|
|
744
|
-
<shiny-button angry gradient>angry</shiny-button>
|
|
745
|
-
<shiny-button happy gradient>happy</shiny-button>
|
|
746
|
-
<shiny-button zesty gradient>zesty</shiny-button>
|
|
747
|
-
<shiny-button sad gradient>sad</shiny-button>
|
|
748
|
-
<shiny-button quirky gradient>quirky</shiny-button>
|
|
749
|
-
<shiny-button plain gradient>plain</shiny-button>
|
|
750
|
-
`},{label:"view",code:`
|
|
751
|
-
[
|
|
752
|
-
ShinyButton.props().attr("calm").attr("gradient").children("calm").render(),
|
|
753
|
-
ShinyButton.props().attr("angry").attr("gradient").children("angry").render(),
|
|
754
|
-
ShinyButton.props().attr("happy").attr("gradient").children("happy").render(),
|
|
755
|
-
ShinyButton.props().attr("zesty").attr("gradient").children("zesty").render(),
|
|
756
|
-
ShinyButton.props().attr("sad").attr("gradient").children("sad").render(),
|
|
757
|
-
ShinyButton.props().attr("quirky").attr("gradient").children("quirky").render(),
|
|
758
|
-
ShinyButton.props().attr("plain").children("plain").render(),
|
|
759
|
-
]
|
|
760
|
-
`},{label:"css",code:Ce}],style:c``,presentation:r=>[r.ShinyButton.props().attr("calm").attr("gradient").children("calm").render(),r.ShinyButton.props().attr("angry").attr("gradient").children("angry").render(),r.ShinyButton.props().attr("happy").attr("gradient").children("happy").render(),r.ShinyButton.props().attr("zesty").attr("gradient").children("zesty").render(),r.ShinyButton.props().attr("sad").attr("gradient").children("sad").render(),r.ShinyButton.props().attr("quirky").attr("gradient").children("quirky").render(),r.ShinyButton.props().attr("plain").children("plain").render()]}]});var ao=H(),lo=H(),po=H(),co=`
|
|
761
|
-
[view="shiny-drawer"] {
|
|
762
|
-
--button-size: 2em;
|
|
763
|
-
--anim-duration: 200ms;
|
|
764
|
-
--slate-hidden-opacity: 1;
|
|
765
|
-
--blanket-backdrop-filter: blur(0.5em);
|
|
766
|
-
--blanket-bg: color-mix(
|
|
767
|
-
in oklab,
|
|
768
|
-
transparent,
|
|
769
|
-
var(--bg)
|
|
770
|
-
);
|
|
771
|
-
--slate-bg: linear-gradient(
|
|
772
|
-
to top right,
|
|
773
|
-
color-mix(in oklab, var(--calm), #222 50%),
|
|
774
|
-
color-mix(in oklab, var(--calm), #888 50%)
|
|
775
|
-
);
|
|
776
|
-
|
|
777
|
-
&:state(opened) {}
|
|
778
|
-
&:state(closed) {}
|
|
779
|
-
|
|
780
|
-
&:state(left) {}
|
|
781
|
-
&:state(right) {}
|
|
782
|
-
|
|
783
|
-
&::part(tray) {}
|
|
784
|
-
&::part(blanket) {}
|
|
785
|
-
&::part(button) {}
|
|
786
|
-
&::part(slate) {}
|
|
787
|
-
|
|
788
|
-
&::part(plate) {}
|
|
789
|
-
}
|
|
790
|
-
`,Pr=r=>({label:r,explain:h`<p>slide-out panel. button optional.</p>`,snippets:[{label:"html",code:`
|
|
791
|
-
<shiny-drawer button side=${r}>
|
|
792
|
-
<header>example</header>
|
|
793
|
-
<section slot=plate>lorem kettlebell..</section>
|
|
794
|
-
</shiny-drawer>
|
|
795
|
-
`},{label:"view",code:`
|
|
796
|
-
ShinyDrawer
|
|
797
|
-
.props({button: true, side: "${r}"})
|
|
798
|
-
.children(html\`
|
|
799
|
-
<header>example</header>
|
|
800
|
-
<section slot=plate>lorem kettlebell..</section>
|
|
801
|
-
\`)
|
|
802
|
-
.render()
|
|
803
|
-
`},{label:"css",code:co}],style:c``,presentation:t=>h`
|
|
804
|
-
${t.ShinyDrawer.props({button:!0,side:r}).children(h`
|
|
805
|
-
<header>
|
|
806
|
-
<h2>example drawer</h2>
|
|
807
|
-
<p>you can put any content in here.</p>
|
|
808
|
-
<p class=lipsum>${ao}</p>
|
|
809
|
-
</header>
|
|
810
|
-
<section slot=plate>
|
|
811
|
-
<p class=lipsum>${lo}</p>
|
|
812
|
-
<p class=lipsum>${po}</p>
|
|
813
|
-
</section>
|
|
814
|
-
`).render()}
|
|
815
|
-
`}),Rr=()=>q({name:"drawer",style:c`
|
|
816
|
-
.box sly-view {
|
|
817
|
-
border-radius: 0.5em;
|
|
818
|
-
overflow: hidden;
|
|
819
|
-
--button-size: 3em;
|
|
820
|
-
|
|
821
|
-
header {
|
|
822
|
-
> * + * { margin-top: 0.5em; }
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
section {
|
|
826
|
-
display: flex;
|
|
827
|
-
flex-direction: column;
|
|
828
|
-
justify-content: center;
|
|
829
|
-
min-height: 100%;
|
|
830
|
-
padding: 1em;
|
|
831
|
-
padding-top: 3em;
|
|
832
|
-
> * + * { margin-top: 0.5em; }
|
|
833
|
-
}
|
|
834
|
-
}
|
|
835
|
-
`,exhibits:[Pr("left"),Pr("right")]});u.register({ShinyDemo:f.component(r=>(r.styles(c`
|
|
836
|
-
:host {
|
|
837
|
-
display: flex;
|
|
838
|
-
flex-direction: column;
|
|
839
|
-
gap: 1em;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
.themes {
|
|
843
|
-
display: flex;
|
|
844
|
-
justify-content: end;
|
|
845
|
-
gap: 0.5em;
|
|
846
|
-
|
|
847
|
-
span {
|
|
848
|
-
font-size: 1.2em;
|
|
849
|
-
opacity: 0.5;
|
|
850
|
-
font-family: serif;
|
|
851
|
-
font-style: italic;
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
[view="demo-tabs"] {
|
|
855
|
-
display: flex;
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
`),xe.takeAll(),[Or(),Tr(),Rr(),zr()]))});console.log("\u2728shiny\u2728");
|
|
859
|
-
/*! Bundled license information:
|
|
860
|
-
|
|
861
|
-
@lit/reactive-element/css-tag.js:
|
|
862
|
-
(**
|
|
863
|
-
* @license
|
|
864
|
-
* Copyright 2019 Google LLC
|
|
865
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
866
|
-
*)
|
|
867
|
-
|
|
868
|
-
@lit/reactive-element/reactive-element.js:
|
|
869
|
-
lit-html/lit-html.js:
|
|
870
|
-
lit-element/lit-element.js:
|
|
871
|
-
lit-html/directive.js:
|
|
872
|
-
lit-html/async-directive.js:
|
|
873
|
-
(**
|
|
874
|
-
* @license
|
|
875
|
-
* Copyright 2017 Google LLC
|
|
876
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
877
|
-
*)
|
|
878
|
-
|
|
879
|
-
lit-html/is-server.js:
|
|
880
|
-
(**
|
|
881
|
-
* @license
|
|
882
|
-
* Copyright 2022 Google LLC
|
|
883
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
884
|
-
*)
|
|
885
|
-
|
|
886
|
-
lit-html/directive-helpers.js:
|
|
887
|
-
(**
|
|
888
|
-
* @license
|
|
889
|
-
* Copyright 2020 Google LLC
|
|
890
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
891
|
-
*)
|
|
892
|
-
*/
|
|
893
|
-
//# sourceMappingURL=demo.bundle.min.js.map
|