{"version":3,"file":"static/npm.lit-element.e4b3a70b.js","mappings":"2VAkHaA,EAAA,SAAAC,IAAAC,EAAAA,EAAAA,GAAAF,EAAAC,GAAA,IAAAE,GAAAC,EAAAA,EAAAA,GAAAJ,GAAb,SAAAA,IAAA,IAAAK,EAgHC,OAhHDC,EAAAA,EAAAA,GAAA,KAAAN,IAAAK,EAAAF,EAAAI,MAAA,KAAAC,YAgBWC,cAA+B,CAACC,MAAAC,EAAAA,EAAAA,GAAAN,IAEjCA,EAAWO,UAAA,EA8FpBP,CAAA,CADE,OAxFkBQ,EAAAA,EAAAA,GAAAb,EAAA,EAAAc,IAAA,mBAAAC,MAAA,eAAAC,EAAAC,EACXC,GAAAC,EAAAA,EAAAA,IAAAC,EAAAA,EAAAA,GAAApB,EAAAqB,WAAA,yBAAAC,KAAA,MAON,OADmB,QAAnBN,GAAAC,EAAAM,KAAKd,eAAce,oBAAA,IAAAR,IAAAC,EAAAO,aAAiBN,EAAYO,YACzCP,CACR,GASkB,CAAAJ,IAAA,SAAAC,MAAA,SAAOC,GAIxB,IAAME,EAAQK,KAAKG,SACdH,KAAKI,aACRJ,KAAKd,cAAcmB,YAAcL,KAAKK,cAAAT,EAAAA,EAAAA,IAAAC,EAAAA,EAAAA,GAAApB,EAAAqB,WAAA,eAAAC,KAAA,KAE3BN,GACbO,KAAKX,MAAcK,EAAAA,EAAAA,IAAOC,EAAOK,KAAKM,WAAYN,KAAKd,cACxD,GAsBQ,CAAAK,IAAA,oBAAAC,MAAA,eAAAC,GACPG,EAAAA,EAAAA,IAAAC,EAAAA,EAAAA,GAAApB,EAAAqB,WAAA,0BAAAC,KAAA,MACgB,QAAhBN,EAAAO,KAAKX,YAAA,IAAWI,GAAAA,EAAEc,cAAA,EACnB,GAqBQ,CAAAhB,IAAA,uBAAAC,MAAA,eAAAC,GACPG,EAAAA,EAAAA,IAAAC,EAAAA,EAAAA,GAAApB,EAAAqB,WAAA,6BAAAC,KAAA,MACgB,QAAhBN,EAAAO,KAAKX,YAAA,IAAWI,GAAAA,EAAEc,cAAA,EACnB,GASS,CAAAhB,IAAA,SAAAC,MAAA,WACR,OAAOG,EAAAA,EACR,KAAAlB,CAAA,CA/GU,CAAmBgB,EAAAA,IAQJhB,EAAY+B,WAAA,EAG/B/B,EAAgBgC,eAAA,EAwGU,QAAnCC,EAAAC,WAAWC,gCAAA,IAAwBF,GAAAA,EAAAX,KAAAY,WAAG,CAACE,WAAApC,IAGvC,IAAMqC,EAEFH,WAAWI,0BACf,MAAAD,GAAAA,EAAkB,CAACD,WAAApC,KAiEW,QAA9BuC,EAACL,WAAWM,0BAAA,IAAkBD,EAAAA,EAA7BL,WAAWM,mBAAuB,IAAIC,KAAK,Q","sources":["../node_modules/lit-element/src/lit-element.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\n\n/**\n * The main LitElement module, which defines the {@linkcode LitElement} base\n * class and related APIs.\n *\n * LitElement components can define a template and a set of observed\n * properties. Changing an observed property triggers a re-render of the\n * element.\n *\n * Import {@linkcode LitElement} and {@linkcode html} from this module to\n * create a component:\n *\n * ```js\n * import {LitElement, html} from 'lit-element';\n *\n * class MyElement extends LitElement {\n *\n * // Declare observed properties\n * static get properties() {\n * return {\n * adjective: {}\n * }\n * }\n *\n * constructor() {\n * this.adjective = 'awesome';\n * }\n *\n * // Define the element's template\n * render() {\n * return html`
your ${adjective} template here
`;\n * }\n * }\n *\n * customElements.define('my-element', MyElement);\n * ```\n *\n * `LitElement` extends {@linkcode ReactiveElement} and adds lit-html\n * templating. The `ReactiveElement` class is provided for users that want to\n * build their own custom element base classes that don't use lit-html.\n *\n * @packageDocumentation\n */\nimport {PropertyValues, ReactiveElement} from '@lit/reactive-element';\nimport {render, RenderOptions, noChange, RootPart} from 'lit-html';\nexport * from '@lit/reactive-element';\nexport * from 'lit-html';\n\nimport {LitUnstable} from 'lit-html';\nimport {ReactiveUnstable} from '@lit/reactive-element';\n\n/**\n * Contains types that are part of the unstable debug API.\n *\n * Everything in this API is not stable and may change or be removed in the future,\n * even on patch releases.\n */\n// eslint-disable-next-line @typescript-eslint/no-namespace\nexport namespace Unstable {\n /**\n * When Lit is running in dev mode and `window.emitLitDebugLogEvents` is true,\n * we will emit 'lit-debug' events to window, with live details about the update and render\n * lifecycle. These can be useful for writing debug tooling and visualizations.\n *\n * Please be aware that running with window.emitLitDebugLogEvents has performance overhead,\n * making certain operations that are normally very cheap (like a no-op render) much slower,\n * because we must copy data and dispatch events.\n */\n // eslint-disable-next-line @typescript-eslint/no-namespace\n export namespace DebugLog {\n export type Entry =\n | LitUnstable.DebugLog.Entry\n | ReactiveUnstable.DebugLog.Entry;\n }\n}\n\n// For backwards compatibility export ReactiveElement as UpdatingElement. Note,\n// IE transpilation requires exporting like this.\nexport const UpdatingElement = ReactiveElement;\n\nconst DEV_MODE = true;\n\nlet issueWarning: (code: string, warning: string) => void;\n\nif (DEV_MODE) {\n // Ensure warnings are issued only 1x, even if multiple versions of Lit\n // are loaded.\n const issuedWarnings: Set