@descope/web-components-ui 1.0.378 → 1.0.379

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. package/dist/cjs/index.cjs.js +3166 -1257
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.d.ts +2 -0
  4. package/dist/index.esm.js +4738 -2826
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/umd/1224.js +1 -1
  7. package/dist/umd/1438.js +3 -3
  8. package/dist/umd/1612.js +1 -1
  9. package/dist/umd/2773.js +4 -4
  10. package/dist/umd/3830.js +1 -1
  11. package/dist/umd/3951.js +1 -1
  12. package/dist/umd/3966.js +319 -0
  13. package/dist/umd/4024.js +1 -1
  14. package/dist/umd/4052.js +1 -1
  15. package/dist/umd/4392.js +1 -1
  16. package/dist/umd/4525.js +1 -1
  17. package/dist/umd/4978.js +1 -1
  18. package/dist/umd/5135.js +2 -2
  19. package/dist/umd/5517.js +1 -1
  20. package/dist/umd/5778.js +275 -0
  21. package/dist/umd/5806.js +1 -1
  22. package/dist/umd/5977.js +140 -0
  23. package/dist/umd/5977.js.LICENSE.txt +29 -0
  24. package/dist/umd/63.js +4 -4
  25. package/dist/umd/6770.js +1 -1
  26. package/dist/umd/7056.js +3 -3
  27. package/dist/umd/7284.js +1 -1
  28. package/dist/umd/7541.js +449 -0
  29. package/dist/umd/7541.js.LICENSE.txt +17 -0
  30. package/dist/umd/7911.js +2 -2
  31. package/dist/umd/{4028.js → 8060.js} +3 -3
  32. package/dist/umd/8137.js +1 -1
  33. package/dist/umd/8191.js +2 -2
  34. package/dist/umd/8655.js +123 -0
  35. package/dist/umd/9314.js +2 -2
  36. package/dist/umd/9423.js +6 -6
  37. package/dist/umd/9562.js +1 -1
  38. package/dist/umd/DescopeDev.js +1 -1
  39. package/dist/umd/descope-apps-list-index-js.js +1 -1
  40. package/dist/umd/descope-avatar-index-js.js +1 -1
  41. package/dist/umd/descope-button-index-js.js +1 -1
  42. package/dist/umd/descope-combo-box-index-js.js +5 -5
  43. package/dist/umd/descope-date-field-descope-calendar-index-js.js +1 -0
  44. package/dist/umd/descope-date-field-index-js.js +1 -0
  45. package/dist/umd/descope-email-field-index-js.js +1 -1
  46. package/dist/umd/descope-grid-descope-grid-custom-column-index-js.js +2 -2
  47. package/dist/umd/descope-grid-descope-grid-item-details-column-index-js.js +2 -2
  48. package/dist/umd/descope-grid-descope-grid-selection-column-index-js.js +1 -1
  49. package/dist/umd/descope-grid-descope-grid-text-column-index-js.js +4 -4
  50. package/dist/umd/descope-new-password-index-js.js +1 -1
  51. package/dist/umd/descope-number-field-index-js.js +1 -1
  52. package/dist/umd/descope-passcode-index-js.js +1 -1
  53. package/dist/umd/descope-radio-group-index-js.js +1 -1
  54. package/dist/umd/descope-text-field-index-js.js +1 -1
  55. package/dist/umd/index.js +1 -1
  56. package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
  57. package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
  58. package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
  59. package/dist/umd/phone-fields-descope-phone-input-box-field-descope-phone-input-box-internal-index-js.js +1 -1
  60. package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +1 -1
  61. package/package.json +11 -5
  62. package/src/components/descope-combo-box/ComboBoxClass.js +7 -1
  63. package/src/components/descope-date-field/DateCounterClass.js +83 -0
  64. package/src/components/descope-date-field/DateFieldClass.js +675 -0
  65. package/src/components/descope-date-field/consts.js +55 -0
  66. package/src/components/descope-date-field/descope-calendar/CalendarClass.js +666 -0
  67. package/src/components/descope-date-field/descope-calendar/helpers.js +186 -0
  68. package/src/components/descope-date-field/descope-calendar/index.js +9 -0
  69. package/src/components/descope-date-field/formats.js +49 -0
  70. package/src/components/descope-date-field/helpers.js +72 -0
  71. package/src/components/descope-date-field/icons.js +14 -0
  72. package/src/components/descope-date-field/index.js +10 -0
  73. package/src/components/descope-text-field/textFieldMappings.js +2 -0
  74. package/src/index.cjs.js +2 -0
  75. package/src/index.d.ts +2 -0
  76. package/src/index.js +2 -1
  77. package/src/mixins/inputValidationMixin.js +8 -2
  78. package/src/mixins/portalMixin.js +6 -3
  79. package/src/theme/components/calendar.js +94 -0
  80. package/src/theme/components/dateField.js +63 -0
  81. package/src/theme/components/index.js +4 -0
  82. package/src/theme/components/inputWrapper.js +6 -0
  83. package/src/theme/components/textField.js +1 -0
  84. package/dist/umd/4746.js +0 -124
  85. package/dist/umd/7531.js +0 -319
  86. package/dist/umd/8866.js +0 -275
  87. package/dist/umd/9092.js +0 -1086
  88. package/dist/umd/9092.js.LICENSE.txt +0 -27
  89. package/dist/umd/descope-date-picker-index-js.js +0 -1
  90. package/src/components/descope-date-picker/index.js +0 -20
  91. /package/dist/umd/{7531.js.LICENSE.txt → 3966.js.LICENSE.txt} +0 -0
  92. /package/dist/umd/{8866.js.LICENSE.txt → 5778.js.LICENSE.txt} +0 -0
  93. /package/dist/umd/{4028.js.LICENSE.txt → 8060.js.LICENSE.txt} +0 -0
  94. /package/dist/umd/{4746.js.LICENSE.txt → 8655.js.LICENSE.txt} +0 -0
package/dist/umd/4746.js DELETED
@@ -1,124 +0,0 @@
1
- /*! For license information please see 4746.js.LICENSE.txt */
2
- "use strict";(self.webpackChunk_descope_web_components_ui=self.webpackChunk_descope_web_components_ui||[]).push([[4746],{52223:(e,t,o)=>{o.d(t,{T8:()=>l}),o(7894);let s=!1,n=[],i=[];function r(){s=!0,requestAnimationFrame((function(){s=!1,function(e){for(;e.length;)a(e.shift())}(n),setTimeout((function(){!function(e){for(let t=0,o=e.length;t<o;t++)a(e.shift())}(i)}))}))}function a(e){const t=e[0],o=e[1],s=e[2];try{o.apply(t,s)}catch(e){setTimeout((()=>{throw e}))}}function l(e,t,o){s||r(),i.push([e,t,o])}},80962:(e,t,o)=>{o.d(t,{Ry:()=>d});let s=new WeakMap,n=new WeakMap,i={},r=0;const a=e=>e&&e.nodeType===Node.ELEMENT_NODE,l=(...e)=>{console.error(`Error: ${e.join(" ")}. Skip setting aria-hidden.`)},d=(e,t=document.body,o="data-aria-hidden")=>{const d=Array.from(Array.isArray(e)?e:[e]);return t&&d.push(...Array.from(t.querySelectorAll("[aria-live]"))),((e,t,o,d)=>{const h=((e,t)=>a(e)?t.map((t=>{if(!a(t))return l(t,"is not a valid element"),null;let o=t;for(;o&&o!==e;){if(e.contains(o))return t;o=o.getRootNode().host}return l(t,"is not contained inside",e),null})).filter((e=>Boolean(e))):(l(e,"is not a valid element"),[]))(t,Array.isArray(e)?e:[e]);i[o]||(i[o]=new WeakMap);const c=i[o],u=[],p=new Set,_=new Set(h),m=e=>{if(!e||p.has(e))return;p.add(e);const t=e.assignedSlot;t&&m(t),m(e.parentNode||e.host)};h.forEach(m);const v=e=>{if(!e||_.has(e))return;const t=e.shadowRoot;(t?[...e.children,...t.children]:[...e.children]).forEach((e=>{if(!["template","script","style"].includes(e.localName))if(p.has(e))v(e);else{const t=e.getAttribute(d),i=null!==t&&"false"!==t,r=(s.get(e)||0)+1,a=(c.get(e)||0)+1;s.set(e,r),c.set(e,a),u.push(e),1===r&&i&&n.set(e,!0),1===a&&e.setAttribute(o,"true"),i||e.setAttribute(d,"true")}}))};return v(t),p.clear(),r+=1,()=>{u.forEach((e=>{const t=s.get(e)-1,i=c.get(e)-1;s.set(e,t),c.set(e,i),t||(n.has(e)?n.delete(e):e.removeAttribute(d)),i||e.removeAttribute(o)})),r-=1,r||(s=new WeakMap,s=new WeakMap,n=new WeakMap,i={})}})(d,t,o,"aria-hidden")};HTMLElement.prototype},33392:(e,t,o)=>{o.d(t,{G:()=>n});var s=o(3550);class n{saveFocus(e){this.focusNode=e||(0,s.Gf)()}restoreFocus(){const e=this.focusNode;e&&((0,s.Gf)()===document.body?setTimeout((()=>e.focus())):e.focus(),this.focusNode=null)}}},91486:(e,t,o)=>{o.d(t,{f:()=>i});var s=o(3550);const n=[];class i{constructor(e){this.host=e,this.__trapNode=null,this.__onKeyDown=this.__onKeyDown.bind(this)}get __focusableElements(){return(0,s.GO)(this.__trapNode)}get __focusedElementIndex(){const e=this.__focusableElements;return e.indexOf(e.filter(s.Qw).pop())}hostConnected(){document.addEventListener("keydown",this.__onKeyDown)}hostDisconnected(){document.removeEventListener("keydown",this.__onKeyDown)}trapFocus(e){if(this.__trapNode=e,0===this.__focusableElements.length)throw this.__trapNode=null,new Error("The trap node should have at least one focusable descendant or be focusable itself.");n.push(this),-1===this.__focusedElementIndex&&this.__focusableElements[0].focus()}releaseFocus(){this.__trapNode=null,n.pop()}__onKeyDown(e){if(this.__trapNode&&this===Array.from(n).pop()&&"Tab"===e.key){e.preventDefault();const t=e.shiftKey;this.__focusNextElement(t)}}__focusNextElement(e=!1){const t=this.__focusableElements,o=e?-1:1,s=this.__focusedElementIndex,n=t[(t.length+s+o)%t.length];n.focus(),"input"===n.localName&&n.select()}}},39320:(e,t,o)=>{o.d(t,{u:()=>s});const s=e=>class extends e{static get properties(){return{overlayClass:{type:String},_overlayElement:{type:Object}}}static get observers(){return["__updateOverlayClassNames(overlayClass, _overlayElement)"]}__updateOverlayClassNames(e,t){if(!t)return;if(void 0===e)return;const{classList:o}=t;if(this.__initialClasses||(this.__initialClasses=new Set(o)),Array.isArray(this.__previousClasses)){const e=this.__previousClasses.filter((e=>!this.__initialClasses.has(e)));e.length>0&&o.remove(...e)}const s="string"==typeof e?e.split(" "):[];s.length>0&&o.add(...s),this.__previousClasses=s}}},44457:(e,t,o)=>{o.d(t,{F:()=>_});var s=o(52223),n=o(61037),i=o(80962);class r{constructor(e,t){this.host=e,this.callback="function"==typeof t?t:()=>e}showModal(){const e=this.callback();this.__showOthers=(0,i.Ry)(e)}close(){this.__showOthers&&(this.__showOthers(),this.__showOthers=null)}}var a=o(33392),l=o(91486),d=o(3550),h=o(16155);const c=e=>class extends((0,h.k)(e)){static get properties(){return{focusTrap:{type:Boolean,value:!1},restoreFocusOnClose:{type:Boolean,value:!1},restoreFocusNode:{type:HTMLElement}}}constructor(){super(),this.__ariaModalController=new r(this),this.__focusTrapController=new l.f(this),this.__focusRestorationController=new a.G}ready(){super.ready(),this.addController(this.__ariaModalController),this.addController(this.__focusTrapController),this.addController(this.__focusRestorationController)}_resetFocus(){this.focusTrap&&(this.__ariaModalController.close(),this.__focusTrapController.releaseFocus()),this.restoreFocusOnClose&&this._shouldRestoreFocus()&&this.__focusRestorationController.restoreFocus()}_saveFocus(){this.restoreFocusOnClose&&this.__focusRestorationController.saveFocus(this.restoreFocusNode)}_trapFocus(){this.focusTrap&&(this.__ariaModalController.showModal(),this.__focusTrapController.trapFocus(this.$.overlay))}_shouldRestoreFocus(){const e=(0,d.Gf)();return e===document.body||this._deepContains(e)}_deepContains(e){if(this.contains(e))return!0;let t=e;const o=e.ownerDocument;for(;t&&t!==o&&t!==this;)t=t.parentNode||t.host;return t===this}},u=()=>Array.from(document.body.children).filter((e=>e instanceof HTMLElement&&e._hasOverlayStackMixin&&!e.hasAttribute("closing"))).sort(((e,t)=>e.__zIndex-t.__zIndex||0)),p=e=>class extends e{constructor(){super(),this._hasOverlayStackMixin=!0}get _last(){return this===u().pop()}bringToFront(){let e="";const t=u().filter((e=>e!==this)).pop();t&&(e=t.__zIndex+1),this.style.zIndex=e,this.__zIndex=e||parseFloat(getComputedStyle(this).zIndex)}_enterModalState(){"none"!==document.body.style.pointerEvents&&(this._previousDocumentPointerEvents=document.body.style.pointerEvents,document.body.style.pointerEvents="none"),u().forEach((e=>{e!==this&&(e.$.overlay.style.pointerEvents="none")}))}_exitModalState(){void 0!==this._previousDocumentPointerEvents&&(document.body.style.pointerEvents=this._previousDocumentPointerEvents,delete this._previousDocumentPointerEvents);const e=u();let t;for(;(t=e.pop())&&(t===this||(t.$.overlay.style.removeProperty("pointer-events"),t.modeless)););}},_=e=>class extends(c(p(e))){static get properties(){return{opened:{type:Boolean,notify:!0,observer:"_openedChanged",reflectToAttribute:!0},owner:{type:Object},model:{type:Object},renderer:{type:Object},modeless:{type:Boolean,value:!1,reflectToAttribute:!0,observer:"_modelessChanged"},hidden:{type:Boolean,reflectToAttribute:!0,observer:"_hiddenChanged"},withBackdrop:{type:Boolean,value:!1,reflectToAttribute:!0}}}static get observers(){return["_rendererOrDataChanged(renderer, owner, model, opened)"]}constructor(){super(),this._boundMouseDownListener=this._mouseDownListener.bind(this),this._boundMouseUpListener=this._mouseUpListener.bind(this),this._boundOutsideClickListener=this._outsideClickListener.bind(this),this._boundKeydownListener=this._keydownListener.bind(this),n.gn&&(this._boundIosResizeListener=()=>this._detectIosNavbar())}ready(){super.ready(),this.addEventListener("click",(()=>{})),this.$.backdrop.addEventListener("click",(()=>{})),this.addEventListener("mouseup",(()=>{document.activeElement===document.body&&"0"===this.$.overlay.getAttribute("tabindex")&&this.$.overlay.focus()}))}connectedCallback(){super.connectedCallback(),this._boundIosResizeListener&&(this._detectIosNavbar(),window.addEventListener("resize",this._boundIosResizeListener))}disconnectedCallback(){super.disconnectedCallback(),this._boundIosResizeListener&&window.removeEventListener("resize",this._boundIosResizeListener)}requestContentUpdate(){this.renderer&&this.renderer.call(this.owner,this,this.owner,this.model)}close(e){const t=new CustomEvent("vaadin-overlay-close",{bubbles:!0,cancelable:!0,detail:{sourceEvent:e}});this.dispatchEvent(t),t.defaultPrevented||(this.opened=!1)}_detectIosNavbar(){if(!this.opened)return;const e=window.innerHeight,t=window.innerWidth>e,o=document.documentElement.clientHeight;t&&o>e?this.style.setProperty("--vaadin-overlay-viewport-bottom",o-e+"px"):this.style.setProperty("--vaadin-overlay-viewport-bottom","0")}_addGlobalListeners(){document.addEventListener("mousedown",this._boundMouseDownListener),document.addEventListener("mouseup",this._boundMouseUpListener),document.documentElement.addEventListener("click",this._boundOutsideClickListener,!0)}_removeGlobalListeners(){document.removeEventListener("mousedown",this._boundMouseDownListener),document.removeEventListener("mouseup",this._boundMouseUpListener),document.documentElement.removeEventListener("click",this._boundOutsideClickListener,!0)}_rendererOrDataChanged(e,t,o,s){const n=this._oldOwner!==t||this._oldModel!==o;this._oldModel=o,this._oldOwner=t;const i=this._oldRenderer!==e;this._oldRenderer=e;const r=this._oldOpened!==s;this._oldOpened=s,i&&(this.innerHTML="",delete this._$litPart$),s&&e&&(i||r||n)&&this.requestContentUpdate()}_modelessChanged(e){e?(this._removeGlobalListeners(),this._exitModalState()):this.opened&&(this._addGlobalListeners(),this._enterModalState())}_openedChanged(e,t){e?(this._saveFocus(),this._animatedOpening(),(0,s.T8)(this,(()=>{this._trapFocus();const e=new CustomEvent("vaadin-overlay-open",{bubbles:!0});this.dispatchEvent(e)})),document.addEventListener("keydown",this._boundKeydownListener),this.modeless||this._addGlobalListeners()):t&&(this._resetFocus(),this._animatedClosing(),document.removeEventListener("keydown",this._boundKeydownListener),this.modeless||this._removeGlobalListeners())}_hiddenChanged(e){e&&this.hasAttribute("closing")&&this._flushAnimation("closing")}_shouldAnimate(){const e=getComputedStyle(this),t=e.getPropertyValue("animation-name");return!("none"===e.getPropertyValue("display"))&&t&&"none"!==t}_enqueueAnimation(e,t){const o=`__${e}Handler`,s=e=>{e&&e.target!==this||(t(),this.removeEventListener("animationend",s),delete this[o])};this[o]=s,this.addEventListener("animationend",s)}_flushAnimation(e){const t=`__${e}Handler`;"function"==typeof this[t]&&this[t]()}_animatedOpening(){this.parentNode===document.body&&this.hasAttribute("closing")&&this._flushAnimation("closing"),this._attachOverlay(),this.modeless||this._enterModalState(),this.setAttribute("opening",""),this._shouldAnimate()?this._enqueueAnimation("opening",(()=>{this._finishOpening()})):this._finishOpening()}_attachOverlay(){this._placeholder=document.createComment("vaadin-overlay-placeholder"),this.parentNode.insertBefore(this._placeholder,this),document.body.appendChild(this),this.bringToFront()}_finishOpening(){this.removeAttribute("opening")}_finishClosing(){this._detachOverlay(),this.$.overlay.style.removeProperty("pointer-events"),this.removeAttribute("closing"),this.dispatchEvent(new CustomEvent("vaadin-overlay-closed"))}_animatedClosing(){this.hasAttribute("opening")&&this._flushAnimation("opening"),this._placeholder&&(this._exitModalState(),this.setAttribute("closing",""),this.dispatchEvent(new CustomEvent("vaadin-overlay-closing")),this._shouldAnimate()?this._enqueueAnimation("closing",(()=>{this._finishClosing()})):this._finishClosing())}_detachOverlay(){this._placeholder.parentNode.insertBefore(this,this._placeholder),this._placeholder.parentNode.removeChild(this._placeholder)}_mouseDownListener(e){this._mouseDownInside=e.composedPath().indexOf(this.$.overlay)>=0}_mouseUpListener(e){this._mouseUpInside=e.composedPath().indexOf(this.$.overlay)>=0}_shouldCloseOnOutsideClick(e){return this._last}_outsideClickListener(e){if(e.composedPath().includes(this.$.overlay)||this._mouseDownInside||this._mouseUpInside)return this._mouseDownInside=!1,void(this._mouseUpInside=!1);if(!this._shouldCloseOnOutsideClick(e))return;const t=new CustomEvent("vaadin-overlay-outside-click",{bubbles:!0,cancelable:!0,detail:{sourceEvent:e}});this.dispatchEvent(t),this.opened&&!t.defaultPrevented&&this.close(e)}_keydownListener(e){if(this._last&&(!this.modeless||e.composedPath().includes(this.$.overlay))&&"Escape"===e.key){const t=new CustomEvent("vaadin-overlay-escape-press",{bubbles:!0,cancelable:!0,detail:{sourceEvent:e}});this.dispatchEvent(t),this.opened&&!t.defaultPrevented&&this.close(e)}}}},6196:(e,t,o)=>{o.d(t,{r:()=>s});const s=o(9392).iv`
3
- :host {
4
- z-index: 200;
5
- position: fixed;
6
-
7
- /* Despite of what the names say, <vaadin-overlay> is just a container
8
- for position/sizing/alignment. The actual overlay is the overlay part. */
9
-
10
- /* Default position constraints: the entire viewport. Note: themes can
11
- override this to introduce gaps between the overlay and the viewport. */
12
- inset: 0;
13
- bottom: var(--vaadin-overlay-viewport-bottom);
14
-
15
- /* Use flexbox alignment for the overlay part. */
16
- display: flex;
17
- flex-direction: column; /* makes dropdowns sizing easier */
18
- /* Align to center by default. */
19
- align-items: center;
20
- justify-content: center;
21
-
22
- /* Allow centering when max-width/max-height applies. */
23
- margin: auto;
24
-
25
- /* The host is not clickable, only the overlay part is. */
26
- pointer-events: none;
27
-
28
- /* Remove tap highlight on touch devices. */
29
- -webkit-tap-highlight-color: transparent;
30
-
31
- /* CSS API for host */
32
- --vaadin-overlay-viewport-bottom: 0;
33
- }
34
-
35
- :host([hidden]),
36
- :host(:not([opened]):not([closing])),
37
- :host(:not([opened]):not([closing])) [part='overlay'] {
38
- display: none !important;
39
- }
40
-
41
- [part='overlay'] {
42
- -webkit-overflow-scrolling: touch;
43
- overflow: auto;
44
- pointer-events: auto;
45
-
46
- /* Prevent overflowing the host */
47
- max-width: 100%;
48
- box-sizing: border-box;
49
-
50
- -webkit-tap-highlight-color: initial; /* reenable tap highlight inside */
51
- }
52
-
53
- [part='backdrop'] {
54
- z-index: -1;
55
- content: '';
56
- background: rgba(0, 0, 0, 0.5);
57
- position: fixed;
58
- inset: 0;
59
- pointer-events: auto;
60
- }
61
- `},90510:(e,t,o)=>{o.d(t,{I:()=>n}),o(51195),o(29416),o(29849),o(34173);var s=o(46570);const n=s.iv`
62
- :host {
63
- top: var(--lumo-space-m);
64
- right: var(--lumo-space-m);
65
- bottom: var(--lumo-space-m);
66
- left: var(--lumo-space-m);
67
- /* Workaround for Edge issue (only on Surface), where an overflowing vaadin-list-box inside vaadin-select-overlay makes the overlay transparent */
68
- /* stylelint-disable-next-line */
69
- outline: 0px solid transparent;
70
- }
71
-
72
- [part='overlay'] {
73
- background-color: var(--lumo-base-color);
74
- background-image: linear-gradient(var(--lumo-tint-5pct), var(--lumo-tint-5pct));
75
- border-radius: var(--lumo-border-radius-m);
76
- box-shadow: 0 0 0 1px var(--lumo-shade-5pct), var(--lumo-box-shadow-m);
77
- color: var(--lumo-body-text-color);
78
- font-family: var(--lumo-font-family);
79
- font-size: var(--lumo-font-size-m);
80
- font-weight: 400;
81
- line-height: var(--lumo-line-height-m);
82
- letter-spacing: 0;
83
- text-transform: none;
84
- -webkit-text-size-adjust: 100%;
85
- -webkit-font-smoothing: antialiased;
86
- -moz-osx-font-smoothing: grayscale;
87
- }
88
-
89
- [part='content'] {
90
- padding: var(--lumo-space-xs);
91
- }
92
-
93
- [part='backdrop'] {
94
- background-color: var(--lumo-shade-20pct);
95
- animation: 0.2s lumo-overlay-backdrop-enter both;
96
- will-change: opacity;
97
- }
98
-
99
- @keyframes lumo-overlay-backdrop-enter {
100
- 0% {
101
- opacity: 0;
102
- }
103
- }
104
-
105
- :host([closing]) [part='backdrop'] {
106
- animation: 0.2s lumo-overlay-backdrop-exit both;
107
- }
108
-
109
- @keyframes lumo-overlay-backdrop-exit {
110
- 100% {
111
- opacity: 0;
112
- }
113
- }
114
-
115
- @keyframes lumo-overlay-dummy-animation {
116
- 0% {
117
- opacity: 1;
118
- }
119
-
120
- 100% {
121
- opacity: 1;
122
- }
123
- }
124
- `;(0,s.hC)("",n,{moduleId:"lumo-overlay"})}}]);
package/dist/umd/7531.js DELETED
@@ -1,319 +0,0 @@
1
- /*! For license information please see 7531.js.LICENSE.txt */
2
- "use strict";(self.webpackChunk_descope_web_components_ui=self.webpackChunk_descope_web_components_ui||[]).push([[7531],{77221:(t,e,r)=>{r.d(e,{e:()=>a}),r(7894);var o=r(91014),s=r(2224),i=r(31342);const n=s.YA,a=(0,o.o)((t=>class extends t{static createProperties(t){const e=this.prototype;for(let r in t)r in e||e._createPropertyAccessor(r)}static attributeNameForProperty(t){return t.toLowerCase()}static typeForProperty(t){}_createPropertyAccessor(t,e){this._addPropertyToAttributeMap(t),this.hasOwnProperty(JSCompiler_renameProperty("__dataHasAccessor",this))||(this.__dataHasAccessor=Object.assign({},this.__dataHasAccessor)),this.__dataHasAccessor[t]||(this.__dataHasAccessor[t]=!0,this._definePropertyAccessor(t,e))}_addPropertyToAttributeMap(t){this.hasOwnProperty(JSCompiler_renameProperty("__dataAttributes",this))||(this.__dataAttributes=Object.assign({},this.__dataAttributes));let e=this.__dataAttributes[t];return e||(e=this.constructor.attributeNameForProperty(t),this.__dataAttributes[e]=t),e}_definePropertyAccessor(t,e){Object.defineProperty(this,t,{get(){return this.__data[t]},set:e?function(){}:function(e){this._setPendingProperty(t,e,!0)&&this._invalidateProperties()}})}constructor(){super(),this.__dataEnabled=!1,this.__dataReady=!1,this.__dataInvalid=!1,this.__data={},this.__dataPending=null,this.__dataOld=null,this.__dataInstanceProps=null,this.__dataCounter=0,this.__serializing=!1,this._initializeProperties()}ready(){this.__dataReady=!0,this._flushProperties()}_initializeProperties(){for(let t in this.__dataHasAccessor)this.hasOwnProperty(t)&&(this.__dataInstanceProps=this.__dataInstanceProps||{},this.__dataInstanceProps[t]=this[t],delete this[t])}_initializeInstanceProperties(t){Object.assign(this,t)}_setProperty(t,e){this._setPendingProperty(t,e)&&this._invalidateProperties()}_getProperty(t){return this.__data[t]}_setPendingProperty(t,e,r){let o=this.__data[t],s=this._shouldPropertyChange(t,e,o);return s&&(this.__dataPending||(this.__dataPending={},this.__dataOld={}),this.__dataOld&&!(t in this.__dataOld)&&(this.__dataOld[t]=o),this.__data[t]=e,this.__dataPending[t]=e),s}_isPropertyPending(t){return!(!this.__dataPending||!this.__dataPending.hasOwnProperty(t))}_invalidateProperties(){!this.__dataInvalid&&this.__dataReady&&(this.__dataInvalid=!0,n.run((()=>{this.__dataInvalid&&(this.__dataInvalid=!1,this._flushProperties())})))}_enableProperties(){this.__dataEnabled||(this.__dataEnabled=!0,this.__dataInstanceProps&&(this._initializeInstanceProperties(this.__dataInstanceProps),this.__dataInstanceProps=null),this.ready())}_flushProperties(){this.__dataCounter++;const t=this.__data,e=this.__dataPending,r=this.__dataOld;this._shouldPropertiesChange(t,e,r)&&(this.__dataPending=null,this.__dataOld=null,this._propertiesChanged(t,e,r)),this.__dataCounter--}_shouldPropertiesChange(t,e,r){return Boolean(e)}_propertiesChanged(t,e,r){}_shouldPropertyChange(t,e,r){return r!==e&&(r==r||e==e)}attributeChangedCallback(t,e,r,o){e!==r&&this._attributeToProperty(t,r),super.attributeChangedCallback&&super.attributeChangedCallback(t,e,r,o)}_attributeToProperty(t,e,r){if(!this.__serializing){const o=this.__dataAttributes,s=o&&o[t]||t;this[s]=this._deserializeValue(e,r||this.constructor.typeForProperty(s))}}_propertyToAttribute(t,e,r){this.__serializing=!0,r=arguments.length<3?this[t]:r,this._valueToNodeAttribute(this,r,e||this.constructor.attributeNameForProperty(t)),this.__serializing=!1}_valueToNodeAttribute(t,e,r){const o=this._serializeValue(e);"class"!==r&&"name"!==r&&"slot"!==r||(t=(0,i.r)(t)),void 0===o?t.removeAttribute(r):t.setAttribute(r,""===o&&window.trustedTypes?window.trustedTypes.emptyScript:o)}_serializeValue(t){return"boolean"==typeof t?t?"":void 0:null!=t?t.toString():void 0}_deserializeValue(t,e){switch(e){case Boolean:return null!==t;case Number:return Number(t);default:return t}}}))},74933:(t,e,r)=>{r.d(e,{q:()=>at}),r(7894);var o=r(31342),s=r(91014),i=r(81446);const n={},a=/-[a-z]/g,l=/([A-Z])/g;function c(t){return n[t]||(n[t]=t.indexOf("-")<0?t:t.replace(a,(t=>t[1].toUpperCase())))}function d(t){return n[t]||(n[t]=t.replace(l,"-$1").toLowerCase())}var h=r(77221);const u={};let p=HTMLElement.prototype;for(;p;){let t=Object.getOwnPropertyNames(p);for(let e=0;e<t.length;e++)u[t[e]]=!0;p=Object.getPrototypeOf(p)}const _=window.trustedTypes?t=>trustedTypes.isHTML(t)||trustedTypes.isScript(t)||trustedTypes.isScriptURL(t):()=>!1,m=(0,s.o)((t=>{const e=(0,h.e)(t);return class extends e{static createPropertiesForAttributes(){let t=this.observedAttributes;for(let e=0;e<t.length;e++)this.prototype._createPropertyAccessor(c(t[e]))}static attributeNameForProperty(t){return d(t)}_initializeProperties(){this.__dataProto&&(this._initializeProtoProperties(this.__dataProto),this.__dataProto=null),super._initializeProperties()}_initializeProtoProperties(t){for(let e in t)this._setProperty(e,t[e])}_ensureAttribute(t,e){this.hasAttribute(t)||this._valueToNodeAttribute(this,e,t)}_serializeValue(t){if("object"==typeof t){if(t instanceof Date)return t.toString();if(t){if(_(t))return t;try{return JSON.stringify(t)}catch(t){return""}}}return super._serializeValue(t)}_deserializeValue(t,e){let r;switch(e){case Object:try{r=JSON.parse(t)}catch(e){r=t}break;case Array:try{r=JSON.parse(t)}catch(e){r=null,console.warn(`Polymer::Attributes: couldn't decode Array as JSON: ${t}`)}break;case Date:r=isNaN(t)?String(t):Number(t),r=new Date(r);break;default:r=super._deserializeValue(t,e)}return r}_definePropertyAccessor(t,e){!function(t,e){if(!u[e]){let r=t[e];void 0!==r&&(t.__data?t._setPendingProperty(e,r):(t.__dataProto?t.hasOwnProperty(JSCompiler_renameProperty("__dataProto",t))||(t.__dataProto=Object.create(t.__dataProto)):t.__dataProto={},t.__dataProto[e]=r))}}(this,t),super._definePropertyAccessor(t,e)}_hasAccessor(t){return this.__dataHasAccessor&&this.__dataHasAccessor[t]}_isPropertyPending(t){return Boolean(this.__dataPending&&t in this.__dataPending)}}})),f={"dom-if":!0,"dom-repeat":!0};let y=!1,g=!1;const v=(()=>{const t=window.trustedTypes&&window.trustedTypes.createPolicy("polymer-template-event-attribute-policy",{createScript:t=>t});return(e,r,o)=>{const s=r.getAttribute(o);t&&o.startsWith("on-")?e.setAttribute(o,t.createScript(s,o)):e.setAttribute(o,s)}})();function b(t){let e=t.getAttribute("is");if(e&&f[e]){let r=t;for(r.removeAttribute("is"),t=r.ownerDocument.createElement(e),r.parentNode.replaceChild(t,r),t.appendChild(r);r.attributes.length;){const{name:e}=r.attributes[0];v(t,r,e),r.removeAttribute(e)}}return t}function P(t,e){let r=e.parentInfo&&P(t,e.parentInfo);if(!r)return t;for(let t=r.firstChild,o=0;t;t=t.nextSibling)if(e.parentIndex===o++)return t}function w(t,e,r,o){o.id&&(e[o.id]=r)}function A(t,e,r){if(r.events&&r.events.length)for(let o,s=0,i=r.events;s<i.length&&(o=i[s]);s++)t._addMethodEventListenerToNode(e,o.name,o.value,t)}function C(t,e,r,o){r.templateInfo&&(e._templateInfo=r.templateInfo,e._parentTemplateInfo=o)}const S=(0,s.o)((t=>class extends t{static _parseTemplate(t,e){if(!t._templateInfo){let r=t._templateInfo={};r.nodeInfoList=[],r.nestedTemplate=Boolean(e),r.stripWhiteSpace=e&&e.stripWhiteSpace||t.hasAttribute&&t.hasAttribute("strip-whitespace"),this._parseTemplateContent(t,r,{parent:null})}return t._templateInfo}static _parseTemplateContent(t,e,r){return this._parseTemplateNode(t.content,e,r)}static _parseTemplateNode(t,e,r){let o=!1,s=t;return"template"!=s.localName||s.hasAttribute("preserve-content")?"slot"===s.localName&&(e.hasInsertionPoint=!0):o=this._parseTemplateNestedTemplate(s,e,r)||o,function(t){(function(){if(!y){y=!0;const t=document.createElement("textarea");t.placeholder="a",g=t.placeholder===t.textContent}return g})()&&"textarea"===t.localName&&t.placeholder&&t.placeholder===t.textContent&&(t.textContent=null)}(s),s.firstChild&&this._parseTemplateChildNodes(s,e,r),s.hasAttributes&&s.hasAttributes()&&(o=this._parseTemplateNodeAttributes(s,e,r)||o),o||r.noted}static _parseTemplateChildNodes(t,e,r){if("script"!==t.localName&&"style"!==t.localName)for(let o,s=t.firstChild,i=0;s;s=o){if("template"==s.localName&&(s=b(s)),o=s.nextSibling,s.nodeType===Node.TEXT_NODE){let r=o;for(;r&&r.nodeType===Node.TEXT_NODE;)s.textContent+=r.textContent,o=r.nextSibling,t.removeChild(r),r=o;if(e.stripWhiteSpace&&!s.textContent.trim()){t.removeChild(s);continue}}let n={parentIndex:i,parentInfo:r};this._parseTemplateNode(s,e,n)&&(n.infoIndex=e.nodeInfoList.push(n)-1),s.parentNode&&i++}}static _parseTemplateNestedTemplate(t,e,r){let o=t,s=this._parseTemplate(o,e);return(s.content=o.content.ownerDocument.createDocumentFragment()).appendChild(o.content),r.templateInfo=s,!0}static _parseTemplateNodeAttributes(t,e,r){let o=!1,s=Array.from(t.attributes);for(let i,n=s.length-1;i=s[n];n--)o=this._parseTemplateNodeAttribute(t,e,r,i.name,i.value)||o;return o}static _parseTemplateNodeAttribute(t,e,r,o,s){return"on-"===o.slice(0,3)?(t.removeAttribute(o),r.events=r.events||[],r.events.push({name:o.slice(3),value:s}),!0):"id"===o&&(r.id=s,!0)}static _contentForTemplate(t){let e=t._templateInfo;return e&&e.content||t.content}_stampTemplate(t,e){t&&!t.content&&window.HTMLTemplateElement&&HTMLTemplateElement.decorate&&HTMLTemplateElement.decorate(t);let r=(e=e||this.constructor._parseTemplate(t)).nodeInfoList,o=e.content||t.content,s=document.importNode(o,!0);s.__noInsertionPoint=!e.hasInsertionPoint;let i=s.nodeList=new Array(r.length);s.$={};for(let t,o=0,n=r.length;o<n&&(t=r[o]);o++){let r=i[o]=P(s,t);w(0,s.$,r,t),C(0,r,t,e),A(this,r,t)}return s}_addMethodEventListenerToNode(t,e,r,o){let s=function(t,e,r){return t=t._methodHost||t,function(e){t[r]?t[r](e,e.detail):console.warn("listener method `"+r+"` not defined")}}(o=o||t,0,r);return this._addEventListenerToNode(t,e,s),s}_addEventListenerToNode(t,e,r){t.addEventListener(e,r)}_removeEventListenerFromNode(t,e,r){t.removeEventListener(e,r)}}));var E=r(89387);let x=0;const T=[],$={COMPUTE:"__computeEffects",REFLECT:"__reflectEffects",NOTIFY:"__notifyEffects",PROPAGATE:"__propagateEffects",OBSERVE:"__observeEffects",READ_ONLY:"__readOnly"},O="__computeInfo",N=/[A-Z]/;function k(t,e,r){let o=t[e];if(o){if(!t.hasOwnProperty(e)&&(o=t[e]=Object.create(t[e]),r))for(let t in o){let e=o[t],r=o[t]=Array(e.length);for(let t=0;t<e.length;t++)r[t]=e[t]}}else o=t[e]={};return o}function I(t,e,r,o,s,n){if(e){let a=!1;const l=x++;for(let c in r){let d=e[s?(0,i.Jz)(c):c];if(d)for(let e,i=0,h=d.length;i<h&&(e=d[i]);i++)e.info&&e.info.lastRun===l||s&&!z(c,e.trigger)||(e.info&&(e.info.lastRun=l),e.fn(t,c,r,o,e.info,s,n),a=!0)}return a}return!1}function R(t,e,r,o,s,n,a,l){let c=!1,d=e[a?(0,i.Jz)(o):o];if(d)for(let e,i=0,h=d.length;i<h&&(e=d[i]);i++)e.info&&e.info.lastRun===r||a&&!z(o,e.trigger)||(e.info&&(e.info.lastRun=r),e.fn(t,o,s,n,e.info,a,l),c=!0);return c}function z(t,e){if(e){let r=e.name;return r==t||!(!e.structured||!(0,i.jg)(r,t))||!(!e.wildcard||!(0,i.SG)(r,t))}return!0}function M(t,e,r,o,s){let i="string"==typeof s.method?t[s.method]:s.method,n=s.property;i?i.call(t,t.__data[n],o[n]):s.dynamicFn||console.warn("observer method `"+s.method+"` not defined")}function L(t,e,r){let o=(0,i.Jz)(e);return o!==e&&(H(t,d(o)+"-changed",r[e],e),!0)}function H(t,e,r,s){let i={value:r,queueProperty:!0};s&&(i.path=s),(0,o.r)(t).dispatchEvent(new CustomEvent(e,{detail:i}))}function U(t,e,r,o,s,n){let a=(n?(0,i.Jz)(e):e)!=e?e:null,l=a?(0,i.U2)(t,a):t.__data[e];a&&void 0===l&&(l=r[e]),H(t,s.eventName,l,a)}function D(t,e,r,o,s){let i=t.__data[e];E.v1&&(i=(0,E.v1)(i,s.attrName,"attribute",t)),t._propertyToAttribute(e,s.attrName,i)}const F=(t,e,r)=>{let o=0,s=e.length-1,i=-1;for(;o<=s;){const n=o+s>>1,a=r.get(e[n].methodInfo)-r.get(t.methodInfo);if(a<0)o=n+1;else{if(!(a>0)){i=n;break}s=n-1}}i<0&&(i=s+1),e.splice(i,0,t)},j=(t,e,r,o,s)=>{const n=e[s?(0,i.Jz)(t):t];if(n)for(let e=0;e<n.length;e++){const i=n[e];i.info.lastRun===x||s&&!z(t,i.trigger)||(i.info.lastRun=x,F(i.info,r,o))}};function B(t,e,r,o,s){let i=Z(t,e,r,0,s);if(i===T)return!1;let n=s.methodInfo;return t.__dataHasAccessor&&t.__dataHasAccessor[n]?t._setPendingProperty(n,i,!0):(t[n]=i,!1)}function Y(t,e,r,o,s,i,n){r.bindings=r.bindings||[];let a={kind:o,target:s,parts:i,literal:n,isCompound:1!==i.length};if(r.bindings.push(a),function(t){return Boolean(t.target)&&"attribute"!=t.kind&&"text"!=t.kind&&!t.isCompound&&"{"===t.parts[0].mode}(a)){let{event:t,negate:e}=a.parts[0];a.listenerEvent=t||d(s)+"-changed",a.listenerNegate=e}let l=e.nodeInfoList.length;for(let r=0;r<a.parts.length;r++){let o=a.parts[r];o.compoundIndex=r,J(t,e,a,o,l)}}function J(t,e,r,o,s){if(!o.literal)if("attribute"===r.kind&&"-"===r.target[0])console.warn("Cannot set attribute "+r.target+' because "-" is not a valid attribute starting character');else{let i=o.dependencies,n={index:s,binding:r,part:o,evaluator:t};for(let r=0;r<i.length;r++){let o=i[r];"string"==typeof o&&(o=ot(o),o.wildcard=!0),t._addTemplatePropertyEffect(e,o.rootProperty,{fn:V,info:n,trigger:o})}}}function V(t,e,r,o,s,n,a){let l=a[s.index],c=s.binding,d=s.part;if(n&&d.source&&e.length>d.source.length&&"property"==c.kind&&!c.isCompound&&l.__isPropertyEffectsClient&&l.__dataHasAccessor&&l.__dataHasAccessor[c.target]){let o=r[e];e=(0,i.Iu)(d.source,c.target,e),l._setPendingPropertyOrPath(e,o,!1,!0)&&t._enqueueClient(l)}else{let i=s.evaluator._evaluateBinding(t,d,e,r,o,n);i!==T&&function(t,e,r,o,s){if(s=function(t,e,r,o){if(r.isCompound){let s=t.__dataCompoundStorage[r.target];s[o.compoundIndex]=e,e=s.join("")}return"attribute"!==r.kind&&("textContent"!==r.target&&("value"!==r.target||"input"!==t.localName&&"textarea"!==t.localName)||(e=null==e?"":e)),e}(e,s,r,o),E.v1&&(s=(0,E.v1)(s,r.target,r.kind,e)),"attribute"==r.kind)t._valueToNodeAttribute(e,s,r.target);else{let o=r.target;e.__isPropertyEffectsClient&&e.__dataHasAccessor&&e.__dataHasAccessor[o]?e[$.READ_ONLY]&&e[$.READ_ONLY][o]||e._setPendingProperty(o,s)&&t._enqueueClient(e):t._setUnmanagedPropertyToNode(e,o,s)}}(t,l,c,d,i)}}function q(t,e){if(e.isCompound){let r=t.__dataCompoundStorage||(t.__dataCompoundStorage={}),s=e.parts,i=new Array(s.length);for(let t=0;t<s.length;t++)i[t]=s[t].literal;let n=e.target;r[n]=i,e.literal&&"property"==e.kind&&("className"===n&&(t=(0,o.r)(t)),t[n]=e.literal)}}function W(t,e,r){if(r.listenerEvent){let o=r.parts[0];t.addEventListener(r.listenerEvent,(function(t){!function(t,e,r,o,s){let n,a=t.detail,l=a&&a.path;l?(o=(0,i.Iu)(r,o,l),n=a&&a.value):n=t.currentTarget[r],n=s?!n:n,e[$.READ_ONLY]&&e[$.READ_ONLY][o]||!e._setPendingPropertyOrPath(o,n,!0,Boolean(l))||a&&a.queueProperty||e._invalidateProperties()}(t,e,r.target,o.source,o.negate)}))}}function K(t,e,r,o,s,i){i=e.static||i&&("object"!=typeof i||i[e.methodName]);let n={methodName:e.methodName,args:e.args,methodInfo:s,dynamicFn:i};for(let s,i=0;i<e.args.length&&(s=e.args[i]);i++)s.literal||t._addPropertyEffect(s.rootProperty,r,{fn:o,info:n,trigger:s});return i&&t._addPropertyEffect(e.methodName,r,{fn:o,info:n}),n}function Z(t,e,r,o,s){let i=t._methodHost||t,n=i[s.methodName];if(n){let o=t._marshalArgs(s.args,e,r);return o===T?T:n.apply(i,o)}s.dynamicFn||console.warn("method `"+s.methodName+"` not defined")}const G=[],X="(?:[a-zA-Z_$][\\w.:$\\-*]*)",Q="(?:("+X+"|(?:[-+]?[0-9]*\\.?[0-9]+(?:[eE][-+]?[0-9]+)?)|(?:(?:'(?:[^'\\\\]|\\\\.)*')|(?:\"(?:[^\"\\\\]|\\\\.)*\")))\\s*)",tt=new RegExp("(\\[\\[|{{)\\s*(?:(!)\\s*)?("+X+"\\s*(?:\\(\\s*(?:(?:"+Q+"(?:,\\s*"+Q+")*)?)\\)\\s*)?)(?:]]|}})","g");function et(t){let e="";for(let r=0;r<t.length;r++)e+=t[r].literal||"";return e}function rt(t){let e=t.match(/([^\s]+?)\(([\s\S]*)\)/);if(e){let t={methodName:e[1],static:!0,args:G};return e[2].trim()?function(t,e){return e.args=t.map((function(t){let r=ot(t);return r.literal||(e.static=!1),r}),this),e}(e[2].replace(/\\,/g,"&comma;").split(","),t):t}return null}function ot(t){let e=t.trim().replace(/&comma;/g,",").replace(/\\(.)/g,"$1"),r={name:e,value:"",literal:!1},o=e[0];switch("-"===o&&(o=e[1]),o>="0"&&o<="9"&&(o="#"),o){case"'":case'"':r.value=e.slice(1,-1),r.literal=!0;break;case"#":r.value=Number(e),r.literal=!0}return r.literal||(r.rootProperty=(0,i.Jz)(e),r.structured=(0,i.AZ)(e),r.structured&&(r.wildcard=".*"==e.slice(-2),r.wildcard&&(r.name=e.slice(0,-2)))),r}function st(t,e,r){let o=(0,i.U2)(t,r);return void 0===o&&(o=e[r]),o}function it(t,e,r,o){const s={indexSplices:o};E.HY&&!t._overrideLegacyUndefined&&(e.splices=s),t.notifyPath(r+".splices",s),t.notifyPath(r+".length",e.length),E.HY&&!t._overrideLegacyUndefined&&(s.indexSplices=[])}function nt(t,e,r,o,s,i){it(t,e,r,[{index:o,addedCount:s,removed:i,object:e,type:"splice"}])}const at=(0,s.o)((t=>{const e=S(m(t));return class extends e{constructor(){super(),this.__isPropertyEffectsClient=!0,this.__dataClientsReady,this.__dataPendingClients,this.__dataToNotify,this.__dataLinkedPaths,this.__dataHasPaths,this.__dataCompoundStorage,this.__dataHost,this.__dataTemp,this.__dataClientsInitialized,this.__data,this.__dataPending,this.__dataOld,this.__computeEffects,this.__computeInfo,this.__reflectEffects,this.__notifyEffects,this.__propagateEffects,this.__observeEffects,this.__readOnly,this.__templateInfo,this._overrideLegacyUndefined}get PROPERTY_EFFECT_TYPES(){return $}_initializeProperties(){super._initializeProperties(),this._registerHost(),this.__dataClientsReady=!1,this.__dataPendingClients=null,this.__dataToNotify=null,this.__dataLinkedPaths=null,this.__dataHasPaths=!1,this.__dataCompoundStorage=this.__dataCompoundStorage||null,this.__dataHost=this.__dataHost||null,this.__dataTemp={},this.__dataClientsInitialized=!1}_registerHost(){if(lt.length){let t=lt[lt.length-1];t._enqueueClient(this),this.__dataHost=t}}_initializeProtoProperties(t){this.__data=Object.create(t),this.__dataPending=Object.create(t),this.__dataOld={}}_initializeInstanceProperties(t){let e=this[$.READ_ONLY];for(let r in t)e&&e[r]||(this.__dataPending=this.__dataPending||{},this.__dataOld=this.__dataOld||{},this.__data[r]=this.__dataPending[r]=t[r])}_addPropertyEffect(t,e,r){this._createPropertyAccessor(t,e==$.READ_ONLY);let o=k(this,e,!0)[t];o||(o=this[e][t]=[]),o.push(r)}_removePropertyEffect(t,e,r){let o=k(this,e,!0)[t],s=o.indexOf(r);s>=0&&o.splice(s,1)}_hasPropertyEffect(t,e){let r=this[e];return Boolean(r&&r[t])}_hasReadOnlyEffect(t){return this._hasPropertyEffect(t,$.READ_ONLY)}_hasNotifyEffect(t){return this._hasPropertyEffect(t,$.NOTIFY)}_hasReflectEffect(t){return this._hasPropertyEffect(t,$.REFLECT)}_hasComputedEffect(t){return this._hasPropertyEffect(t,$.COMPUTE)}_setPendingPropertyOrPath(t,e,r,o){if(o||(0,i.Jz)(Array.isArray(t)?t[0]:t)!==t){if(!o){let r=(0,i.U2)(this,t);if(!(t=(0,i.t8)(this,t,e))||!super._shouldPropertyChange(t,e,r))return!1}if(this.__dataHasPaths=!0,this._setPendingProperty(t,e,r))return function(t,e,r){let o=t.__dataLinkedPaths;if(o){let s;for(let n in o){let a=o[n];(0,i.SG)(n,e)?(s=(0,i.Iu)(n,a,e),t._setPendingPropertyOrPath(s,r,!0,!0)):(0,i.SG)(a,e)&&(s=(0,i.Iu)(a,n,e),t._setPendingPropertyOrPath(s,r,!0,!0))}}}(this,t,e),!0}else{if(this.__dataHasAccessor&&this.__dataHasAccessor[t])return this._setPendingProperty(t,e,r);this[t]=e}return!1}_setUnmanagedPropertyToNode(t,e,r){r===t[e]&&"object"!=typeof r||("className"===e&&(t=(0,o.r)(t)),t[e]=r)}_setPendingProperty(t,e,r){let o=this.__dataHasPaths&&(0,i.AZ)(t),s=o?this.__dataTemp:this.__data;return!!this._shouldPropertyChange(t,e,s[t])&&(this.__dataPending||(this.__dataPending={},this.__dataOld={}),t in this.__dataOld||(this.__dataOld[t]=this.__data[t]),o?this.__dataTemp[t]=e:this.__data[t]=e,this.__dataPending[t]=e,(o||this[$.NOTIFY]&&this[$.NOTIFY][t])&&(this.__dataToNotify=this.__dataToNotify||{},this.__dataToNotify[t]=r),!0)}_setProperty(t,e){this._setPendingProperty(t,e,!0)&&this._invalidateProperties()}_invalidateProperties(){this.__dataReady&&this._flushProperties()}_enqueueClient(t){this.__dataPendingClients=this.__dataPendingClients||[],t!==this&&this.__dataPendingClients.push(t)}_flushClients(){this.__dataClientsReady?this.__enableOrFlushClients():(this.__dataClientsReady=!0,this._readyClients(),this.__dataReady=!0)}__enableOrFlushClients(){let t=this.__dataPendingClients;if(t){this.__dataPendingClients=null;for(let e=0;e<t.length;e++){let r=t[e];r.__dataEnabled?r.__dataPending&&r._flushProperties():r._enableProperties()}}}_readyClients(){this.__enableOrFlushClients()}setProperties(t,e){for(let r in t)!e&&this[$.READ_ONLY]&&this[$.READ_ONLY][r]||this._setPendingPropertyOrPath(r,t[r],!0);this._invalidateProperties()}ready(){this._flushProperties(),this.__dataClientsReady||this._flushClients(),this.__dataPending&&this._flushProperties()}_propertiesChanged(t,e,r){let o,s=this.__dataHasPaths;this.__dataHasPaths=!1,function(t,e,r,o){let s=t[$.COMPUTE];if(s)if(E.ls){x++;const i=function(t){let e=t.constructor.__orderedComputedDeps;if(!e){e=new Map;const r=t[$.COMPUTE];let o,{counts:s,ready:i,total:n}=function(t){const e=t[O],r={},o=t[$.COMPUTE],s=[];let i=0;for(let t in e){const o=e[t];i+=r[t]=o.args.filter((t=>!t.literal)).length+(o.dynamicFn?1:0)}for(let t in o)e[t]||s.push(t);return{counts:r,ready:s,total:i}}(t);for(;o=i.shift();){e.set(o,e.size);const t=r[o];t&&t.forEach((t=>{const e=t.info.methodInfo;--n,0==--s[e]&&i.push(e)}))}if(0!==n){const e=t;console.warn(`Computed graph for ${e.localName} incomplete; circular?`)}t.constructor.__orderedComputedDeps=e}return e}(t),n=[];for(let t in e)j(t,s,n,i,o);let a;for(;a=n.shift();)B(t,"",e,0,a)&&j(a.methodInfo,s,n,i,o);Object.assign(r,t.__dataOld),Object.assign(e,t.__dataPending),t.__dataPending=null}else{let i=e;for(;I(t,s,i,r,o);)Object.assign(r,t.__dataOld),Object.assign(e,t.__dataPending),i=t.__dataPending,t.__dataPending=null}}(this,e,r,s),o=this.__dataToNotify,this.__dataToNotify=null,this._propagatePropertyChanges(e,r,s),this._flushClients(),I(this,this[$.REFLECT],e,r,s),I(this,this[$.OBSERVE],e,r,s),o&&function(t,e,r,o,s){let i,n,a=t[$.NOTIFY],l=x++;for(let n in e)e[n]&&(a&&R(t,a,l,n,r,o,s)||s&&L(t,n,r))&&(i=!0);i&&(n=t.__dataHost)&&n._invalidateProperties&&n._invalidateProperties()}(this,o,e,r,s),1==this.__dataCounter&&(this.__dataTemp={})}_propagatePropertyChanges(t,e,r){this[$.PROPAGATE]&&I(this,this[$.PROPAGATE],t,e,r),this.__templateInfo&&this._runEffectsForTemplate(this.__templateInfo,t,e,r)}_runEffectsForTemplate(t,e,r,o){const s=(e,o)=>{I(this,t.propertyEffects,e,r,o,t.nodeList);for(let s=t.firstChild;s;s=s.nextSibling)this._runEffectsForTemplate(s,e,r,o)};t.runEffects?t.runEffects(s,e,o):s(e,o)}linkPaths(t,e){t=(0,i.Fv)(t),e=(0,i.Fv)(e),this.__dataLinkedPaths=this.__dataLinkedPaths||{},this.__dataLinkedPaths[t]=e}unlinkPaths(t){t=(0,i.Fv)(t),this.__dataLinkedPaths&&delete this.__dataLinkedPaths[t]}notifySplices(t,e){let r={path:""};it(this,(0,i.U2)(this,t,r),r.path,e)}get(t,e){return(0,i.U2)(e||this,t)}set(t,e,r){r?(0,i.t8)(r,t,e):this[$.READ_ONLY]&&this[$.READ_ONLY][t]||this._setPendingPropertyOrPath(t,e,!0)&&this._invalidateProperties()}push(t,...e){let r={path:""},o=(0,i.U2)(this,t,r),s=o.length,n=o.push(...e);return e.length&&nt(this,o,r.path,s,e.length,[]),n}pop(t){let e={path:""},r=(0,i.U2)(this,t,e),o=Boolean(r.length),s=r.pop();return o&&nt(this,r,e.path,r.length,0,[s]),s}splice(t,e,r,...o){let s,n={path:""},a=(0,i.U2)(this,t,n);return e<0?e=a.length-Math.floor(-e):e&&(e=Math.floor(e)),s=2===arguments.length?a.splice(e):a.splice(e,r,...o),(o.length||s.length)&&nt(this,a,n.path,e,o.length,s),s}shift(t){let e={path:""},r=(0,i.U2)(this,t,e),o=Boolean(r.length),s=r.shift();return o&&nt(this,r,e.path,0,0,[s]),s}unshift(t,...e){let r={path:""},o=(0,i.U2)(this,t,r),s=o.unshift(...e);return e.length&&nt(this,o,r.path,0,e.length,[]),s}notifyPath(t,e){let r;if(1==arguments.length){let o={path:""};e=(0,i.U2)(this,t,o),r=o.path}else r=Array.isArray(t)?(0,i.Fv)(t):t;this._setPendingPropertyOrPath(r,e,!0,!0)&&this._invalidateProperties()}_createReadOnlyProperty(t,e){var r;this._addPropertyEffect(t,$.READ_ONLY),e&&(this["_set"+(r=t,r[0].toUpperCase()+r.substring(1))]=function(e){this._setProperty(t,e)})}_createPropertyObserver(t,e,r){let o={property:t,method:e,dynamicFn:Boolean(r)};this._addPropertyEffect(t,$.OBSERVE,{fn:M,info:o,trigger:{name:t}}),r&&this._addPropertyEffect(e,$.OBSERVE,{fn:M,info:o,trigger:{name:e}})}_createMethodObserver(t,e){let r=rt(t);if(!r)throw new Error("Malformed observer expression '"+t+"'");K(this,r,$.OBSERVE,Z,null,e)}_createNotifyingProperty(t){this._addPropertyEffect(t,$.NOTIFY,{fn:U,info:{eventName:d(t)+"-changed",property:t}})}_createReflectedProperty(t){let e=this.constructor.attributeNameForProperty(t);"-"===e[0]?console.warn("Property "+t+" cannot be reflected to attribute "+e+' because "-" is not a valid starting attribute name. Use a lowercase first letter for the property instead.'):this._addPropertyEffect(t,$.REFLECT,{fn:D,info:{attrName:e}})}_createComputedProperty(t,e,r){let o=rt(e);if(!o)throw new Error("Malformed computed expression '"+e+"'");const s=K(this,o,$.COMPUTE,B,t,r);k(this,O)[t]=s}_marshalArgs(t,e,r){const o=this.__data,s=[];for(let n=0,a=t.length;n<a;n++){let{name:a,structured:l,wildcard:c,value:d,literal:h}=t[n];if(!h)if(c){const t=(0,i.SG)(a,e),s=st(o,r,t?e:a);d={path:t?e:a,value:s,base:t?(0,i.U2)(o,a):s}}else d=l?st(o,r,a):o[a];if(E.HY&&!this._overrideLegacyUndefined&&void 0===d&&t.length>1)return T;s[n]=d}return s}static addPropertyEffect(t,e,r){this.prototype._addPropertyEffect(t,e,r)}static createPropertyObserver(t,e,r){this.prototype._createPropertyObserver(t,e,r)}static createMethodObserver(t,e){this.prototype._createMethodObserver(t,e)}static createNotifyingProperty(t){this.prototype._createNotifyingProperty(t)}static createReadOnlyProperty(t,e){this.prototype._createReadOnlyProperty(t,e)}static createReflectedProperty(t){this.prototype._createReflectedProperty(t)}static createComputedProperty(t,e,r){this.prototype._createComputedProperty(t,e,r)}static bindTemplate(t){return this.prototype._bindTemplate(t)}_bindTemplate(t,e){let r=this.constructor._parseTemplate(t),o=this.__preBoundTemplateInfo==r;if(!o)for(let t in r.propertyEffects)this._createPropertyAccessor(t);if(e)if(r=Object.create(r),r.wasPreBound=o,this.__templateInfo){const e=t._parentTemplateInfo||this.__templateInfo,o=e.lastChild;r.parent=e,e.lastChild=r,r.previousSibling=o,o?o.nextSibling=r:e.firstChild=r}else this.__templateInfo=r;else this.__preBoundTemplateInfo=r;return r}static _addTemplatePropertyEffect(t,e,r){(t.hostProps=t.hostProps||{})[e]=!0;let o=t.propertyEffects=t.propertyEffects||{};(o[e]=o[e]||[]).push(r)}_stampTemplate(t,e){e=e||this._bindTemplate(t,!0),lt.push(this);let r=super._stampTemplate(t,e);if(lt.pop(),e.nodeList=r.nodeList,!e.wasPreBound){let t=e.childNodes=[];for(let e=r.firstChild;e;e=e.nextSibling)t.push(e)}return r.templateInfo=e,function(t,e){let{nodeList:r,nodeInfoList:o}=e;if(o.length)for(let e=0;e<o.length;e++){let s=o[e],i=r[e],n=s.bindings;if(n)for(let e=0;e<n.length;e++){let r=n[e];q(i,r),W(i,t,r)}i.__dataHost=t}}(this,e),this.__dataClientsReady&&(this._runEffectsForTemplate(e,this.__data,null,!1),this._flushClients()),r}_removeBoundDom(t){const e=t.templateInfo,{previousSibling:r,nextSibling:s,parent:i}=e;r?r.nextSibling=s:i&&(i.firstChild=s),s?s.previousSibling=r:i&&(i.lastChild=r),e.nextSibling=e.previousSibling=null;let n=e.childNodes;for(let t=0;t<n.length;t++){let e=n[t];(0,o.r)((0,o.r)(e).parentNode).removeChild(e)}}static _parseTemplateNode(t,r,o){let s=e._parseTemplateNode.call(this,t,r,o);if(t.nodeType===Node.TEXT_NODE){let e=this._parseBindings(t.textContent,r);e&&(t.textContent=et(e)||" ",Y(this,r,o,"text","textContent",e),s=!0)}return s}static _parseTemplateNodeAttribute(t,r,o,s,i){let n=this._parseBindings(i,r);if(n){let e=s,i="property";N.test(s)?i="attribute":"$"==s[s.length-1]&&(s=s.slice(0,-1),i="attribute");let a=et(n);return a&&"attribute"==i&&("class"==s&&t.hasAttribute("class")&&(a+=" "+t.getAttribute(s)),t.setAttribute(s,a)),"attribute"==i&&"disable-upgrade$"==e&&t.setAttribute(s,""),"input"===t.localName&&"value"===e&&t.setAttribute(e,""),t.removeAttribute(e),"property"===i&&(s=c(s)),Y(this,r,o,i,s,n,a),!0}return e._parseTemplateNodeAttribute.call(this,t,r,o,s,i)}static _parseTemplateNestedTemplate(t,r,o){let s=e._parseTemplateNestedTemplate.call(this,t,r,o);const i=t.parentNode,n=o.templateInfo,a="dom-if"===i.localName,l="dom-repeat"===i.localName;E.gx&&(a||l)&&(i.removeChild(t),(o=o.parentInfo).templateInfo=n,o.noted=!0,s=!1);let c=n.hostProps;if(E.ew&&a)c&&(r.hostProps=Object.assign(r.hostProps||{},c),E.gx||(o.parentInfo.noted=!0));else{let t="{";for(let e in c)Y(this,r,o,"property","_host_"+e,[{mode:t,source:e,dependencies:[e],hostProp:!0}])}return s}static _parseBindings(t,e){let r,o=[],s=0;for(;null!==(r=tt.exec(t));){r.index>s&&o.push({literal:t.slice(s,r.index)});let i=r[1][0],n=Boolean(r[2]),a=r[3].trim(),l=!1,c="",d=-1;"{"==i&&(d=a.indexOf("::"))>0&&(c=a.substring(d+2),a=a.substring(0,d),l=!0);let h=rt(a),u=[];if(h){let{args:t,methodName:r}=h;for(let e=0;e<t.length;e++){let r=t[e];r.literal||u.push(r)}let o=e.dynamicFns;(o&&o[r]||h.static)&&(u.push(r),h.dynamicFn=!0)}else u.push(a);o.push({source:a,mode:i,negate:n,customEvent:l,signature:h,dependencies:u,event:c}),s=tt.lastIndex}if(s&&s<t.length){let e=t.substring(s);e&&o.push({literal:e})}return o.length?o:null}static _evaluateBinding(t,e,r,o,s,n){let a;return a=e.signature?Z(t,r,o,0,e.signature):r!=e.source?(0,i.U2)(t,e.source):n&&(0,i.AZ)(r)?(0,i.U2)(t,r):t.__data[r],e.negate&&(a=!a),a}}})),lt=[]},2224:(t,e,r)=>{r.d(e,{Wc:()=>c,YA:()=>d}),r(7894);let o=0,s=0,i=[],n=0,a=!1,l=document.createTextNode("");new window.MutationObserver((function(){a=!1;const t=i.length;for(let e=0;e<t;e++){let t=i[e];if(t)try{t()}catch(t){setTimeout((()=>{throw t}))}}i.splice(0,t),s+=t})).observe(l,{characterData:!0});const c={after:t=>({run:e=>window.setTimeout(e,t),cancel(t){window.clearTimeout(t)}}),run:(t,e)=>window.setTimeout(t,e),cancel(t){window.clearTimeout(t)}},d={run:t=>(a||(a=!0,l.textContent=n++),i.push(t),o++),cancel(t){const e=t-s;if(e>=0){if(!i[e])throw new Error("invalid async handle: "+t);i[e]=null}}}},7894:()=>{window.JSCompiler_renameProperty=function(t,e){return t}},91121:(t,e,r)=>{r.d(e,{d:()=>n}),r(7894);const o=window.trustedTypes&&trustedTypes.createPolicy("polymer-html-literal",{createHTML:t=>t});class s{constructor(t,e){a(t,e);const r=e.reduce(((e,r,o)=>e+i(r)+t[o+1]),t[0]);this.value=r.toString()}toString(){return this.value}}function i(t){if(t instanceof s)return t.value;throw new Error(`non-literal value passed to Polymer's htmlLiteral function: ${t}`)}const n=function(t,...e){a(t,e);const r=document.createElement("template");let n=e.reduce(((e,r,o)=>e+function(t){if(t instanceof HTMLTemplateElement)return t.innerHTML;if(t instanceof s)return i(t);throw new Error(`non-template value passed to Polymer's html function: ${t}`)}(r)+t[o+1]),t[0]);return o&&(n=o.createHTML(n)),r.innerHTML=n,r},a=(t,e)=>{if(!Array.isArray(t)||!Array.isArray(t.raw)||e.length!==t.length-1)throw new TypeError("Invalid call to the html template tag")}},91014:(t,e,r)=>{r.d(e,{o:()=>i}),r(7894);let o=0;function s(){}s.prototype.__mixinApplications,s.prototype.__mixinSet;const i=function(t){let e=t.__mixinApplications;e||(e=new WeakMap,t.__mixinApplications=e);let r=o++;return function(o){let s=o.__mixinSet;if(s&&s[r])return o;let i=e,n=i.get(o);if(!n){n=t(o),i.set(o,n);let e=Object.create(n.__mixinSet||s||null);e[r]=!0,n.__mixinSet=e}return n}}},81446:(t,e,r)=>{function o(t){return t.indexOf(".")>=0}function s(t){let e=t.indexOf(".");return-1===e?t:t.slice(0,e)}function i(t,e){return 0===t.indexOf(e+".")}function n(t,e){return 0===e.indexOf(t+".")}function a(t,e,r){return e+r.slice(t.length)}function l(t,e){return t===e||i(t,e)||n(t,e)}function c(t){if(Array.isArray(t)){let e=[];for(let r=0;r<t.length;r++){let o=t[r].toString().split(".");for(let t=0;t<o.length;t++)e.push(o[t])}return e.join(".")}return t}function d(t){return Array.isArray(t)?c(t).split("."):t.toString().split(".")}function h(t,e,r){let o=t,s=d(e);for(let t=0;t<s.length;t++){if(!o)return;o=o[s[t]]}return r&&(r.path=s.join(".")),o}function u(t,e,r){let o=t,s=d(e),i=s[s.length-1];if(s.length>1){for(let t=0;t<s.length-1;t++)if(o=o[s[t]],!o)return;o[i]=r}else o[e]=r;return s.join(".")}r.d(e,{AZ:()=>o,Fv:()=>c,Iu:()=>a,Jz:()=>s,SG:()=>n,U2:()=>h,jg:()=>i,t8:()=>u,wB:()=>l}),r(7894)},79967:(t,e,r)=>{r.d(e,{Kk:()=>a,Rq:()=>l,iY:()=>c}),r(7894);let o,s,i=/(url\()([^)]*)(\))/g,n=/(^\/[^\/])|(^#)|(^[\w-\d]*:)/;function a(t,e){if(t&&n.test(t))return t;if("//"===t)return t;if(void 0===o){o=!1;try{const t=new URL("b","http://a");t.pathname="c%20d",o="http://a/c%20d"===t.href}catch(t){}}if(e||(e=document.baseURI||window.location.href),o)try{return new URL(t,e).href}catch(e){return t}return s||(s=document.implementation.createHTMLDocument("temp"),s.base=s.createElement("base"),s.head.appendChild(s.base),s.anchor=s.createElement("a"),s.body.appendChild(s.anchor)),s.base.href=e,s.anchor.href=t,s.anchor.href||t}function l(t,e){return t.replace(i,(function(t,r,o,s){return r+"'"+a(o.replace(/["']/g,""),e)+"'"+s}))}function c(t){return t.substring(0,t.lastIndexOf("/")+1)}},89387:(t,e,r)=>{r.d(e,{FV:()=>i,HY:()=>p,Hr:()=>u,XN:()=>l,ZN:()=>c,a2:()=>h,dJ:()=>v,ew:()=>g,gx:()=>y,ls:()=>_,md:()=>b,my:()=>s,nL:()=>d,sM:()=>n,v1:()=>a,xj:()=>f}),r(7894);var o=r(79967);const s=!window.ShadyDOM||!window.ShadyDOM.inUse,i=(Boolean(!window.ShadyCSS||window.ShadyCSS.nativeCss),window.customElements.polyfillWrapFlushCallback,s&&"adoptedStyleSheets"in Document.prototype&&"replaceSync"in CSSStyleSheet.prototype&&(()=>{try{const t=new CSSStyleSheet;t.replaceSync("");const e=document.createElement("div");return e.attachShadow({mode:"open"}),e.shadowRoot.adoptedStyleSheets=[t],e.shadowRoot.adoptedStyleSheets[0]===t}catch(t){return!1}})());let n=window.Polymer&&window.Polymer.rootPath||(0,o.iY)(document.baseURI||window.location.href),a=window.Polymer&&window.Polymer.sanitizeDOMValue||void 0;window.Polymer&&window.Polymer.setPassiveTouchGestures;let l=window.Polymer&&window.Polymer.strictTemplatePolicy||!1,c=window.Polymer&&window.Polymer.allowTemplateFromDomModule||!1,d=window.Polymer&&window.Polymer.legacyOptimizations||!1,h=window.Polymer&&window.Polymer.legacyWarnings||!1,u=window.Polymer&&window.Polymer.syncInitialRender||!1,p=window.Polymer&&window.Polymer.legacyUndefined||!1,_=window.Polymer&&window.Polymer.orderedComputed||!1,m=!0;const f=function(t){m=t};let y=window.Polymer&&window.Polymer.removeNestedTemplates||!1,g=window.Polymer&&window.Polymer.fastDomIf||!1,v=window.Polymer&&window.Polymer.suppressTemplateNotifications||!1;window.Polymer&&window.Polymer.legacyNoObservedAttributes;let b=window.Polymer&&window.Polymer.useAdoptedStyleSheetsWithBuiltCSS||!1},31342:(t,e,r)=>{r.d(e,{r:()=>o});const o=window.ShadyDOM&&window.ShadyDOM.noPatch&&window.ShadyDOM.wrap?window.ShadyDOM.wrap:window.ShadyDOM?t=>ShadyDOM.patch(t):t=>t},74241:(t,e,r)=>{r.d(e,{H3:()=>T,dy:()=>x.d}),r(7894);var o=r(89387),s=r(91014),i=r(79967);let n={},a={};function l(t,e){n[t]=a[t.toLowerCase()]=e}function c(t){return n[t]||a[t.toLowerCase()]}class d extends HTMLElement{static get observedAttributes(){return["id"]}static import(t,e){if(t){let r=c(t);return r&&e?r.querySelector(e):r}return null}attributeChangedCallback(t,e,r,o){e!==r&&this.register()}get assetpath(){if(!this.__assetpath){const t=window.HTMLImports&&HTMLImports.importForElement?HTMLImports.importForElement(this)||document:this.ownerDocument,e=(0,i.Kk)(this.getAttribute("assetpath")||"",t.baseURI);this.__assetpath=(0,i.iY)(e)}return this.__assetpath}register(t){if(t=t||this.id){if(o.XN&&void 0!==c(t))throw l(t,null),new Error(`strictTemplatePolicy: dom-module ${t} re-registered`);this.id=t,l(t,this),(e=this).querySelector("style")&&console.warn("dom-module %s has style outside template",e.id)}var e}}d.prototype.modules=n,customElements.define("dom-module",d);const h="link[rel=import][type~=css]",u="include",p="shady-unscoped";function _(t){return d.import(t)}function m(t){let e=t.body?t.body:t;const r=(0,i.Rq)(e.textContent,t.baseURI),o=document.createElement("style");return o.textContent=r,o}function f(t){const e=t.trim().split(/\s+/),r=[];for(let t=0;t<e.length;t++)r.push(...y(e[t]));return r}function y(t){const e=_(t);if(!e)return console.warn("Could not find style data in module named",t),[];if(void 0===e._styles){const t=[];t.push(...v(e));const r=e.querySelector("template");r&&t.push(...g(r,e.assetpath)),e._styles=t}return e._styles}function g(t,e){if(!t._styles){const r=[],o=t.content.querySelectorAll("style");for(let t=0;t<o.length;t++){let s=o[t],n=s.getAttribute(u);n&&r.push(...f(n).filter((function(t,e,r){return r.indexOf(t)===e}))),e&&(s.textContent=(0,i.Rq)(s.textContent,e)),r.push(s)}t._styles=r}return t._styles}function v(t){const e=[],r=t.querySelectorAll(h);for(let t=0;t<r.length;t++){let o=r[t];if(o.import){const t=o.import,r=o.hasAttribute(p);if(r&&!t._unscopedStyle){const e=m(t);e.setAttribute(p,""),t._unscopedStyle=e}else t._style||(t._style=m(t));e.push(r?t._unscopedStyle:t._style)}}return e}var b=r(74933);const P=[];var w=r(77221);const A=(0,s.o)((t=>{const e=(0,w.e)(t);function r(t){const e=Object.getPrototypeOf(t);return e.prototype instanceof s?e:null}function o(t){if(!t.hasOwnProperty(JSCompiler_renameProperty("__ownProperties",t))){let e=null;if(t.hasOwnProperty(JSCompiler_renameProperty("properties",t))){const r=t.properties;r&&(e=function(t){const e={};for(let r in t){const o=t[r];e[r]="function"==typeof o?{type:o}:o}return e}(r))}t.__ownProperties=e}return t.__ownProperties}class s extends e{static get observedAttributes(){if(!this.hasOwnProperty(JSCompiler_renameProperty("__observedAttributes",this))){t=this.prototype,P.push(t);const e=this._properties;this.__observedAttributes=e?Object.keys(e).map((t=>this.prototype._addPropertyToAttributeMap(t))):[]}var t;return this.__observedAttributes}static finalize(){if(!this.hasOwnProperty(JSCompiler_renameProperty("__finalized",this))){const t=r(this);t&&t.finalize(),this.__finalized=!0,this._finalizeClass()}}static _finalizeClass(){const t=o(this);t&&this.createProperties(t)}static get _properties(){if(!this.hasOwnProperty(JSCompiler_renameProperty("__properties",this))){const t=r(this);this.__properties=Object.assign({},t&&t._properties,o(this))}return this.__properties}static typeForProperty(t){const e=this._properties[t];return e&&e.type}_initializeProperties(){this.constructor.finalize(),super._initializeProperties()}connectedCallback(){super.connectedCallback&&super.connectedCallback(),this._enableProperties()}disconnectedCallback(){super.disconnectedCallback&&super.disconnectedCallback()}}return s}));var C=r(31342);const S=window.ShadyCSS&&window.ShadyCSS.cssBuild,E=(0,s.o)((t=>{const e=A((0,b.q)(t));return class extends e{static get polymerElementVersion(){return"3.5.1"}static _finalizeClass(){e._finalizeClass.call(this);const t=((r=this).hasOwnProperty(JSCompiler_renameProperty("__ownObservers",r))||(r.__ownObservers=r.hasOwnProperty(JSCompiler_renameProperty("observers",r))?r.observers:null),r.__ownObservers);var r;t&&this.createObservers(t,this._properties),this._prepareTemplate()}static _prepareTemplate(){let t=this.template;t&&("string"==typeof t?(console.error("template getter must return HTMLTemplateElement"),t=null):o.nL||(t=t.cloneNode(!0))),this.prototype._template=t}static createProperties(t){for(let i in t)e=this.prototype,r=i,s=t,(o=t[i]).computed&&(o.readOnly=!0),o.computed&&(e._hasReadOnlyEffect(r)?console.warn(`Cannot redefine computed property '${r}'.`):e._createComputedProperty(r,o.computed,s)),o.readOnly&&!e._hasReadOnlyEffect(r)?e._createReadOnlyProperty(r,!o.computed):!1===o.readOnly&&e._hasReadOnlyEffect(r)&&console.warn(`Cannot make readOnly property '${r}' non-readOnly.`),o.reflectToAttribute&&!e._hasReflectEffect(r)?e._createReflectedProperty(r):!1===o.reflectToAttribute&&e._hasReflectEffect(r)&&console.warn(`Cannot make reflected property '${r}' non-reflected.`),o.notify&&!e._hasNotifyEffect(r)?e._createNotifyingProperty(r):!1===o.notify&&e._hasNotifyEffect(r)&&console.warn(`Cannot make notify property '${r}' non-notify.`),o.observer&&e._createPropertyObserver(r,o.observer,s[o.observer]),e._addPropertyToAttributeMap(r);var e,r,o,s}static createObservers(t,e){const r=this.prototype;for(let o=0;o<t.length;o++)r._createMethodObserver(t[o],e)}static get template(){if(!this.hasOwnProperty(JSCompiler_renameProperty("_template",this))){let t=this.prototype.hasOwnProperty(JSCompiler_renameProperty("_template",this.prototype))?this.prototype._template:void 0;"function"==typeof t&&(t=t()),this._template=void 0!==t?t:this.hasOwnProperty(JSCompiler_renameProperty("is",this))&&function(t){let e=null;if(t&&(!o.XN||o.ZN)&&(e=d.import(t,"template"),o.XN&&!e))throw new Error(`strictTemplatePolicy: expecting dom-module or null template for ${t}`);return e}(this.is)||Object.getPrototypeOf(this.prototype).constructor.template}return this._template}static set template(t){this._template=t}static get importPath(){if(!this.hasOwnProperty(JSCompiler_renameProperty("_importPath",this))){const t=this.importMeta;if(t)this._importPath=(0,i.iY)(t.url);else{const t=d.import(this.is);this._importPath=t&&t.assetpath||Object.getPrototypeOf(this.prototype).constructor.importPath}}return this._importPath}constructor(){super(),this._template,this._importPath,this.rootPath,this.importPath,this.root,this.$}_initializeProperties(){this.constructor.finalize(),this.constructor._finalizeTemplate(this.localName),super._initializeProperties(),this.rootPath=o.sM,this.importPath=this.constructor.importPath;let t=function(t){if(!t.hasOwnProperty(JSCompiler_renameProperty("__propertyDefaults",t))){t.__propertyDefaults=null;let e=t._properties;for(let r in e){let o=e[r];"value"in o&&(t.__propertyDefaults=t.__propertyDefaults||{},t.__propertyDefaults[r]=o)}}return t.__propertyDefaults}(this.constructor);if(t)for(let e in t){let r=t[e];if(this._canApplyPropertyDefault(e)){let t="function"==typeof r.value?r.value.call(this):r.value;this._hasAccessor(e)?this._setPendingProperty(e,t,!0):this[e]=t}}}_canApplyPropertyDefault(t){return!this.hasOwnProperty(t)}static _processStyleText(t,e){return(0,i.Rq)(t,e)}static _finalizeTemplate(t){const e=this.prototype._template;if(e&&!e.__polymerFinalized){e.__polymerFinalized=!0;const r=this.importPath;(function(t,e,r,s){if(!S){const o=e.content.querySelectorAll("style"),i=g(e),n=function(t){let e=_(t);return e?v(e):[]}(r),a=e.content.firstElementChild;for(let r=0;r<n.length;r++){let o=n[r];o.textContent=t._processStyleText(o.textContent,s),e.content.insertBefore(o,a)}let l=0;for(let e=0;e<i.length;e++){let r=i[e],n=o[l];n!==r?(r=r.cloneNode(!0),n.parentNode.insertBefore(r,n)):l++,r.textContent=t._processStyleText(r.textContent,s)}}if(window.ShadyCSS&&window.ShadyCSS.prepareTemplate(e,r),o.md&&S&&o.FV){const r=e.content.querySelectorAll("style");if(r){let e="";Array.from(r).forEach((t=>{e+=t.textContent,t.parentNode.removeChild(t)})),t._styleSheet=new CSSStyleSheet,t._styleSheet.replaceSync(e)}}})(this,e,t,r?(0,i.Kk)(r):""),this.prototype._bindTemplate(e)}}connectedCallback(){window.ShadyCSS&&this._template&&window.ShadyCSS.styleElement(this),super.connectedCallback()}ready(){this._template&&(this.root=this._stampTemplate(this._template),this.$=this.root.$),super.ready()}_readyClients(){this._template&&(this.root=this._attachDom(this.root)),super._readyClients()}_attachDom(t){const e=(0,C.r)(this);if(e.attachShadow)return t?(e.shadowRoot||(e.attachShadow({mode:"open",shadyUpgradeFragment:t}),e.shadowRoot.appendChild(t),this.constructor._styleSheet&&(e.shadowRoot.adoptedStyleSheets=[this.constructor._styleSheet])),o.Hr&&window.ShadyDOM&&window.ShadyDOM.flushInitial(e.shadowRoot),e.shadowRoot):null;throw new Error("ShadowDOM not available. PolymerElement can create dom as children instead of in ShadowDOM by setting `this.root = this;` before `ready`.")}updateStyles(t){window.ShadyCSS&&window.ShadyCSS.styleSubtree(this,t)}resolveUrl(t,e){return!e&&this.importPath&&(e=(0,i.Kk)(this.importPath)),(0,i.Kk)(t,e)}static _parseTemplateContent(t,r,o){return r.dynamicFns=r.dynamicFns||this._properties,e._parseTemplateContent.call(this,t,r,o)}static _addTemplatePropertyEffect(t,r,s){return!o.a2||r in this._properties||s.info.part.signature&&s.info.part.signature.static||s.info.part.hostProp||t.nestedTemplate||console.warn(`Property '${r}' used in template but not declared in 'properties'; attribute will not be observed.`),e._addTemplatePropertyEffect.call(this,t,r,s)}}}));var x=r(91121);const T=E(HTMLElement)},87913:(t,e,r)=>{r.d(e,{Wc:()=>a,YA:()=>d,rs:()=>l,t$:()=>c});let o=0,s=0;const i=[];let n=!1;const a={after:t=>({run:e=>window.setTimeout(e,t),cancel(t){window.clearTimeout(t)}}),run:(t,e)=>window.setTimeout(t,e),cancel(t){window.clearTimeout(t)}},l={run:t=>window.requestAnimationFrame(t),cancel(t){window.cancelAnimationFrame(t)}},c={run:t=>window.requestIdleCallback?window.requestIdleCallback(t):window.setTimeout(t,16),cancel(t){window.cancelIdleCallback?window.cancelIdleCallback(t):window.clearTimeout(t)}},d={run(t){n||(n=!0,queueMicrotask((()=>function(){n=!1;const t=i.length;for(let e=0;e<t;e++){const t=i[e];if(t)try{t()}catch(t){setTimeout((()=>{throw t}))}}i.splice(0,t),s+=t}()))),i.push(t);const e=o;return o+=1,e},cancel(t){const e=t-s;if(e>=0){if(!i[e])throw new Error(`invalid async handle: ${t}`);i[e]=null}}}},36139:(t,e,r)=>{r.d(e,{Ex:()=>i,dx:()=>s,yl:()=>a});const o=new Set;class s{static debounce(t,e,r){return t instanceof s?t._cancelAsync():t=new s,t.setConfig(e,r),t}constructor(){this._asyncModule=null,this._callback=null,this._timer=null}setConfig(t,e){this._asyncModule=t,this._callback=e,this._timer=this._asyncModule.run((()=>{this._timer=null,o.delete(this),this._callback()}))}cancel(){this.isActive()&&(this._cancelAsync(),o.delete(this))}_cancelAsync(){this.isActive()&&(this._asyncModule.cancel(this._timer),this._timer=null)}flush(){this.isActive()&&(this.cancel(),this._callback())}isActive(){return null!=this._timer}}function i(t){o.add(t)}function n(){const t=Boolean(o.size);return o.forEach((t=>{try{t.flush()}catch(t){setTimeout((()=>{throw t}))}})),t}const a=()=>{let t;do{t=n()}while(t)}},52807:(t,e,r)=>{function o(t){const e=customElements.get(t.is);if(e){const r=e.version;r&&t.version&&r===t.version?console.warn(`The component ${t.is} has been loaded twice`):console.error(`Tried to define ${t.is} version ${t.version} when version ${e.version} is already in use. Something will probably break.`)}else Object.defineProperty(t,"version",{get:()=>"24.3.10"}),customElements.define(t.is,t)}r.d(e,{M:()=>o})},51914:(t,e,r)=>{r.d(e,{U:()=>n});const o=[];function s(t,e,r=t.getAttribute("dir")){e?t.setAttribute("dir",e):null!=r&&t.removeAttribute("dir")}function i(){return document.documentElement.getAttribute("dir")}new MutationObserver((function(){const t=i();o.forEach((e=>{s(e,t)}))})).observe(document.documentElement,{attributes:!0,attributeFilter:["dir"]});const n=t=>class extends t{static get properties(){return{dir:{type:String,value:"",reflectToAttribute:!0,converter:{fromAttribute:t=>t||"",toAttribute:t=>""===t?null:t}}}}get __isRTL(){return"rtl"===this.getAttribute("dir")}connectedCallback(){super.connectedCallback(),this.hasAttribute("dir")&&!this.__restoreSubscription||(this.__subscribe(),s(this,i(),null))}attributeChangedCallback(t,e,r){if(super.attributeChangedCallback(t,e,r),"dir"!==t)return;const n=i(),a=r===n&&-1===o.indexOf(this),l=!r&&e&&-1===o.indexOf(this),c=r!==n&&e===n;a||l?(this.__subscribe(),s(this,n,r)):c&&this.__unsubscribe()}disconnectedCallback(){super.disconnectedCallback(),this.__restoreSubscription=o.includes(this),this.__unsubscribe()}_valueToNodeAttribute(t,e,r){("dir"!==r||""!==e||t.hasAttribute("dir"))&&super._valueToNodeAttribute(t,e,r)}_attributeToProperty(t,e,r){"dir"!==t||e?super._attributeToProperty(t,e,r):this.dir=""}__subscribe(){o.includes(this)||o.push(this)}__unsubscribe(){o.includes(this)&&o.splice(o.indexOf(this),1)}}},51195:(t,e,r)=>{r(24407);var o=r(46570),s=r(32463);const i=o.iv`
3
- :host {
4
- /* Base (background) */
5
- --lumo-base-color: #fff;
6
-
7
- /* Tint */
8
- --lumo-tint-5pct: hsla(0, 0%, 100%, 0.3);
9
- --lumo-tint-10pct: hsla(0, 0%, 100%, 0.37);
10
- --lumo-tint-20pct: hsla(0, 0%, 100%, 0.44);
11
- --lumo-tint-30pct: hsla(0, 0%, 100%, 0.5);
12
- --lumo-tint-40pct: hsla(0, 0%, 100%, 0.57);
13
- --lumo-tint-50pct: hsla(0, 0%, 100%, 0.64);
14
- --lumo-tint-60pct: hsla(0, 0%, 100%, 0.7);
15
- --lumo-tint-70pct: hsla(0, 0%, 100%, 0.77);
16
- --lumo-tint-80pct: hsla(0, 0%, 100%, 0.84);
17
- --lumo-tint-90pct: hsla(0, 0%, 100%, 0.9);
18
- --lumo-tint: #fff;
19
-
20
- /* Shade */
21
- --lumo-shade-5pct: hsla(214, 61%, 25%, 0.05);
22
- --lumo-shade-10pct: hsla(214, 57%, 24%, 0.1);
23
- --lumo-shade-20pct: hsla(214, 53%, 23%, 0.16);
24
- --lumo-shade-30pct: hsla(214, 50%, 22%, 0.26);
25
- --lumo-shade-40pct: hsla(214, 47%, 21%, 0.38);
26
- --lumo-shade-50pct: hsla(214, 45%, 20%, 0.52);
27
- --lumo-shade-60pct: hsla(214, 43%, 19%, 0.6);
28
- --lumo-shade-70pct: hsla(214, 42%, 18%, 0.69);
29
- --lumo-shade-80pct: hsla(214, 41%, 17%, 0.83);
30
- --lumo-shade-90pct: hsla(214, 40%, 16%, 0.94);
31
- --lumo-shade: hsl(214, 35%, 15%);
32
-
33
- /* Contrast */
34
- --lumo-contrast-5pct: var(--lumo-shade-5pct);
35
- --lumo-contrast-10pct: var(--lumo-shade-10pct);
36
- --lumo-contrast-20pct: var(--lumo-shade-20pct);
37
- --lumo-contrast-30pct: var(--lumo-shade-30pct);
38
- --lumo-contrast-40pct: var(--lumo-shade-40pct);
39
- --lumo-contrast-50pct: var(--lumo-shade-50pct);
40
- --lumo-contrast-60pct: var(--lumo-shade-60pct);
41
- --lumo-contrast-70pct: var(--lumo-shade-70pct);
42
- --lumo-contrast-80pct: var(--lumo-shade-80pct);
43
- --lumo-contrast-90pct: var(--lumo-shade-90pct);
44
- --lumo-contrast: var(--lumo-shade);
45
-
46
- /* Text */
47
- --lumo-header-text-color: var(--lumo-contrast);
48
- --lumo-body-text-color: var(--lumo-contrast-90pct);
49
- --lumo-secondary-text-color: var(--lumo-contrast-70pct);
50
- --lumo-tertiary-text-color: var(--lumo-contrast-50pct);
51
- --lumo-disabled-text-color: var(--lumo-contrast-30pct);
52
-
53
- /* Primary */
54
- --lumo-primary-color: hsl(214, 100%, 48%);
55
- --lumo-primary-color-50pct: hsla(214, 100%, 49%, 0.76);
56
- --lumo-primary-color-10pct: hsla(214, 100%, 60%, 0.13);
57
- --lumo-primary-text-color: hsl(214, 100%, 43%);
58
- --lumo-primary-contrast-color: #fff;
59
-
60
- /* Error */
61
- --lumo-error-color: hsl(3, 85%, 48%);
62
- --lumo-error-color-50pct: hsla(3, 85%, 49%, 0.5);
63
- --lumo-error-color-10pct: hsla(3, 85%, 49%, 0.1);
64
- --lumo-error-text-color: hsl(3, 89%, 42%);
65
- --lumo-error-contrast-color: #fff;
66
-
67
- /* Success */
68
- --lumo-success-color: hsl(145, 72%, 30%);
69
- --lumo-success-color-50pct: hsla(145, 72%, 31%, 0.5);
70
- --lumo-success-color-10pct: hsla(145, 72%, 31%, 0.1);
71
- --lumo-success-text-color: hsl(145, 85%, 25%);
72
- --lumo-success-contrast-color: #fff;
73
-
74
- /* Warning */
75
- --lumo-warning-color: hsl(48, 100%, 50%);
76
- --lumo-warning-color-10pct: hsla(48, 100%, 50%, 0.25);
77
- --lumo-warning-text-color: hsl(32, 100%, 30%);
78
- --lumo-warning-contrast-color: var(--lumo-shade-90pct);
79
- }
80
-
81
- /* forced-colors mode adjustments */
82
- @media (forced-colors: active) {
83
- html {
84
- --lumo-disabled-text-color: GrayText;
85
- }
86
- }
87
- `;(0,s.K)("color-props",i);const n=o.iv`
88
- [theme~='dark'] {
89
- /* Base (background) */
90
- --lumo-base-color: hsl(214, 35%, 21%);
91
-
92
- /* Tint */
93
- --lumo-tint-5pct: hsla(214, 65%, 85%, 0.06);
94
- --lumo-tint-10pct: hsla(214, 60%, 80%, 0.14);
95
- --lumo-tint-20pct: hsla(214, 64%, 82%, 0.23);
96
- --lumo-tint-30pct: hsla(214, 69%, 84%, 0.32);
97
- --lumo-tint-40pct: hsla(214, 73%, 86%, 0.41);
98
- --lumo-tint-50pct: hsla(214, 78%, 88%, 0.5);
99
- --lumo-tint-60pct: hsla(214, 82%, 90%, 0.58);
100
- --lumo-tint-70pct: hsla(214, 87%, 92%, 0.69);
101
- --lumo-tint-80pct: hsla(214, 91%, 94%, 0.8);
102
- --lumo-tint-90pct: hsla(214, 96%, 96%, 0.9);
103
- --lumo-tint: hsl(214, 100%, 98%);
104
-
105
- /* Shade */
106
- --lumo-shade-5pct: hsla(214, 0%, 0%, 0.07);
107
- --lumo-shade-10pct: hsla(214, 4%, 2%, 0.15);
108
- --lumo-shade-20pct: hsla(214, 8%, 4%, 0.23);
109
- --lumo-shade-30pct: hsla(214, 12%, 6%, 0.32);
110
- --lumo-shade-40pct: hsla(214, 16%, 8%, 0.41);
111
- --lumo-shade-50pct: hsla(214, 20%, 10%, 0.5);
112
- --lumo-shade-60pct: hsla(214, 24%, 12%, 0.6);
113
- --lumo-shade-70pct: hsla(214, 28%, 13%, 0.7);
114
- --lumo-shade-80pct: hsla(214, 32%, 13%, 0.8);
115
- --lumo-shade-90pct: hsla(214, 33%, 13%, 0.9);
116
- --lumo-shade: hsl(214, 33%, 13%);
117
-
118
- /* Contrast */
119
- --lumo-contrast-5pct: var(--lumo-tint-5pct);
120
- --lumo-contrast-10pct: var(--lumo-tint-10pct);
121
- --lumo-contrast-20pct: var(--lumo-tint-20pct);
122
- --lumo-contrast-30pct: var(--lumo-tint-30pct);
123
- --lumo-contrast-40pct: var(--lumo-tint-40pct);
124
- --lumo-contrast-50pct: var(--lumo-tint-50pct);
125
- --lumo-contrast-60pct: var(--lumo-tint-60pct);
126
- --lumo-contrast-70pct: var(--lumo-tint-70pct);
127
- --lumo-contrast-80pct: var(--lumo-tint-80pct);
128
- --lumo-contrast-90pct: var(--lumo-tint-90pct);
129
- --lumo-contrast: var(--lumo-tint);
130
-
131
- /* Text */
132
- --lumo-header-text-color: var(--lumo-contrast);
133
- --lumo-body-text-color: var(--lumo-contrast-90pct);
134
- --lumo-secondary-text-color: var(--lumo-contrast-70pct);
135
- --lumo-tertiary-text-color: var(--lumo-contrast-50pct);
136
- --lumo-disabled-text-color: var(--lumo-contrast-30pct);
137
-
138
- /* Primary */
139
- --lumo-primary-color: hsl(214, 90%, 48%);
140
- --lumo-primary-color-50pct: hsla(214, 90%, 70%, 0.69);
141
- --lumo-primary-color-10pct: hsla(214, 90%, 55%, 0.13);
142
- --lumo-primary-text-color: hsl(214, 90%, 77%);
143
- --lumo-primary-contrast-color: #fff;
144
-
145
- /* Error */
146
- --lumo-error-color: hsl(3, 79%, 49%);
147
- --lumo-error-color-50pct: hsla(3, 75%, 62%, 0.5);
148
- --lumo-error-color-10pct: hsla(3, 75%, 62%, 0.14);
149
- --lumo-error-text-color: hsl(3, 100%, 80%);
150
-
151
- /* Success */
152
- --lumo-success-color: hsl(145, 72%, 30%);
153
- --lumo-success-color-50pct: hsla(145, 92%, 51%, 0.5);
154
- --lumo-success-color-10pct: hsla(145, 92%, 51%, 0.1);
155
- --lumo-success-text-color: hsl(145, 85%, 46%);
156
-
157
- /* Warning */
158
- --lumo-warning-color: hsl(43, 100%, 48%);
159
- --lumo-warning-color-10pct: hsla(40, 100%, 50%, 0.2);
160
- --lumo-warning-text-color: hsl(45, 100%, 60%);
161
- --lumo-warning-contrast-color: var(--lumo-shade-90pct);
162
- }
163
-
164
- html {
165
- color: var(--lumo-body-text-color);
166
- background-color: var(--lumo-base-color);
167
- color-scheme: light;
168
- }
169
-
170
- [theme~='dark'] {
171
- color: var(--lumo-body-text-color);
172
- background-color: var(--lumo-base-color);
173
- color-scheme: dark;
174
- }
175
-
176
- h1,
177
- h2,
178
- h3,
179
- h4,
180
- h5,
181
- h6 {
182
- color: var(--lumo-header-text-color);
183
- }
184
-
185
- a:where(:any-link) {
186
- color: var(--lumo-primary-text-color);
187
- }
188
-
189
- a:not(:any-link) {
190
- color: var(--lumo-disabled-text-color);
191
- }
192
-
193
- blockquote {
194
- color: var(--lumo-secondary-text-color);
195
- }
196
-
197
- code,
198
- pre {
199
- background-color: var(--lumo-contrast-10pct);
200
- border-radius: var(--lumo-border-radius-m);
201
- }
202
- `;(0,o.hC)("",n,{moduleId:"lumo-color"})},32463:(t,e,r)=>{r.d(e,{K:()=>o}),r(46570);const o=(t,...e)=>{((t,...e)=>{const r=document.createElement("style");r.id=t,r.textContent=e.map((t=>t.toString())).join("\n").replace(":host","html"),document.head.insertAdjacentElement("afterbegin",r)})(`lumo-${t}`,e)}},29416:(t,e,r)=>{r(24407);var o=r(46570),s=r(32463);const i=o.iv`
203
- :host {
204
- /* Square */
205
- --lumo-space-xs: 0.25rem;
206
- --lumo-space-s: 0.5rem;
207
- --lumo-space-m: 1rem;
208
- --lumo-space-l: 1.5rem;
209
- --lumo-space-xl: 2.5rem;
210
-
211
- /* Wide */
212
- --lumo-space-wide-xs: calc(var(--lumo-space-xs) / 2) var(--lumo-space-xs);
213
- --lumo-space-wide-s: calc(var(--lumo-space-s) / 2) var(--lumo-space-s);
214
- --lumo-space-wide-m: calc(var(--lumo-space-m) / 2) var(--lumo-space-m);
215
- --lumo-space-wide-l: calc(var(--lumo-space-l) / 2) var(--lumo-space-l);
216
- --lumo-space-wide-xl: calc(var(--lumo-space-xl) / 2) var(--lumo-space-xl);
217
-
218
- /* Tall */
219
- --lumo-space-tall-xs: var(--lumo-space-xs) calc(var(--lumo-space-xs) / 2);
220
- --lumo-space-tall-s: var(--lumo-space-s) calc(var(--lumo-space-s) / 2);
221
- --lumo-space-tall-m: var(--lumo-space-m) calc(var(--lumo-space-m) / 2);
222
- --lumo-space-tall-l: var(--lumo-space-l) calc(var(--lumo-space-l) / 2);
223
- --lumo-space-tall-xl: var(--lumo-space-xl) calc(var(--lumo-space-xl) / 2);
224
- }
225
- `;(0,s.K)("spacing-props",i)},29849:(t,e,r)=>{r(24407);var o=r(46570),s=r(32463);const i=o.iv`
226
- :host {
227
- /* Border radius */
228
- --lumo-border-radius-s: 0.25em; /* Checkbox, badge, date-picker year indicator, etc */
229
- --lumo-border-radius-m: var(--lumo-border-radius, 0.25em); /* Button, text field, menu overlay, etc */
230
- --lumo-border-radius-l: 0.5em; /* Dialog, notification, etc */
231
-
232
- /* Shadow */
233
- --lumo-box-shadow-xs: 0 1px 4px -1px var(--lumo-shade-50pct);
234
- --lumo-box-shadow-s: 0 2px 4px -1px var(--lumo-shade-20pct), 0 3px 12px -1px var(--lumo-shade-30pct);
235
- --lumo-box-shadow-m: 0 2px 6px -1px var(--lumo-shade-20pct), 0 8px 24px -4px var(--lumo-shade-40pct);
236
- --lumo-box-shadow-l: 0 3px 18px -2px var(--lumo-shade-20pct), 0 12px 48px -6px var(--lumo-shade-40pct);
237
- --lumo-box-shadow-xl: 0 4px 24px -3px var(--lumo-shade-20pct), 0 18px 64px -8px var(--lumo-shade-40pct);
238
-
239
- /* Clickable element cursor */
240
- --lumo-clickable-cursor: default;
241
- }
242
- `;o.iv`
243
- html {
244
- /* Button */
245
- --vaadin-button-background: var(--lumo-contrast-5pct);
246
- --vaadin-button-border: none;
247
- --vaadin-button-border-radius: var(--lumo-border-radius-m);
248
- --vaadin-button-font-size: var(--lumo-font-size-m);
249
- --vaadin-button-font-weight: 500;
250
- --vaadin-button-height: var(--lumo-size-m);
251
- --vaadin-button-margin: var(--lumo-space-xs) 0;
252
- --vaadin-button-min-width: calc(var(--vaadin-button-height) * 2);
253
- --vaadin-button-padding: 0 calc(var(--vaadin-button-height) / 3 + var(--lumo-border-radius-m) / 2);
254
- --vaadin-button-text-color: var(--lumo-primary-text-color);
255
- --vaadin-button-primary-background: var(--lumo-primary-color);
256
- --vaadin-button-primary-border: none;
257
- --vaadin-button-primary-font-weight: 600;
258
- --vaadin-button-primary-text-color: var(--lumo-primary-contrast-color);
259
- --vaadin-button-tertiary-background: transparent !important;
260
- --vaadin-button-tertiary-text-color: var(--lumo-primary-text-color);
261
- --vaadin-button-tertiary-font-weight: 500;
262
- --vaadin-button-tertiary-padding: 0 calc(var(--vaadin-button-height) / 6);
263
- /* Checkbox */
264
- --vaadin-checkbox-background: var(--lumo-contrast-20pct);
265
- --vaadin-checkbox-background-hover: var(--lumo-contrast-30pct);
266
- --vaadin-checkbox-border-radius: var(--lumo-border-radius-s);
267
- --vaadin-checkbox-checkmark-char: var(--lumo-icons-checkmark);
268
- --vaadin-checkbox-checkmark-char-indeterminate: '';
269
- --vaadin-checkbox-checkmark-color: var(--lumo-primary-contrast-color);
270
- --vaadin-checkbox-checkmark-size: calc(var(--vaadin-checkbox-size) + 2px);
271
- --vaadin-checkbox-label-color: var(--lumo-body-text-color);
272
- --vaadin-checkbox-label-font-size: var(--lumo-font-size-m);
273
- --vaadin-checkbox-label-padding: var(--lumo-space-xs) var(--lumo-space-s) var(--lumo-space-xs) var(--lumo-space-xs);
274
- --vaadin-checkbox-size: calc(var(--lumo-size-m) / 2);
275
- /* Radio button */
276
- --vaadin-radio-button-background: var(--lumo-contrast-20pct);
277
- --vaadin-radio-button-background-hover: var(--lumo-contrast-30pct);
278
- --vaadin-radio-button-dot-color: var(--lumo-primary-contrast-color);
279
- --vaadin-radio-button-dot-size: 3px;
280
- --vaadin-radio-button-label-color: var(--lumo-body-text-color);
281
- --vaadin-radio-button-label-font-size: var(--lumo-font-size-m);
282
- --vaadin-radio-button-label-padding: var(--lumo-space-xs) var(--lumo-space-s) var(--lumo-space-xs)
283
- var(--lumo-space-xs);
284
- --vaadin-radio-button-size: calc(var(--lumo-size-m) / 2);
285
- --vaadin-selection-color: var(--lumo-primary-color);
286
- --vaadin-selection-color-text: var(--lumo-primary-text-color);
287
- --vaadin-input-field-border-radius: var(--lumo-border-radius-m);
288
- --vaadin-focus-ring-color: var(--lumo-primary-color-50pct);
289
- --vaadin-focus-ring-width: 2px;
290
- /* Label */
291
- --vaadin-input-field-label-color: var(--lumo-secondary-text-color);
292
- --vaadin-input-field-focused-label-color: var(--lumo-primary-text-color);
293
- --vaadin-input-field-hovered-label-color: var(--lumo-body-text-color);
294
- --vaadin-input-field-label-font-size: var(--lumo-font-size-s);
295
- --vaadin-input-field-label-font-weight: 500;
296
- /* Helper */
297
- --vaadin-input-field-helper-color: var(--lumo-secondary-text-color);
298
- --vaadin-input-field-helper-font-size: var(--lumo-font-size-xs);
299
- --vaadin-input-field-helper-font-weight: 400;
300
- --vaadin-input-field-helper-spacing: 0.4em;
301
- /* Error message */
302
- --vaadin-input-field-error-color: var(--lumo-error-text-color);
303
- --vaadin-input-field-error-font-size: var(--lumo-font-size-xs);
304
- --vaadin-input-field-error-font-weight: 400;
305
- /* Input field */
306
- --vaadin-input-field-background: var(--lumo-contrast-10pct);
307
- --vaadin-input-field-icon-color: var(--lumo-contrast-60pct);
308
- --vaadin-input-field-icon-size: var(--lumo-icon-size-m);
309
- --vaadin-input-field-invalid-background: var(--lumo-error-color-10pct);
310
- --vaadin-input-field-invalid-hover-highlight: var(--lumo-error-color-50pct);
311
- --vaadin-input-field-height: var(--lumo-size-m);
312
- --vaadin-input-field-hover-highlight: var(--lumo-contrast-50pct);
313
- --vaadin-input-field-placeholder-color: var(--lumo-secondary-text-color);
314
- --vaadin-input-field-readonly-border: 1px dashed var(--lumo-contrast-30pct);
315
- --vaadin-input-field-value-color: var(--lumo-body-text-color);
316
- --vaadin-input-field-value-font-size: var(--lumo-font-size-m);
317
- --vaadin-input-field-value-font-weight: 400;
318
- }
319
- `,(0,s.K)("style-props",i)},24407:(t,e,r)=>{var o=r(52807);class s extends HTMLElement{static get is(){return"vaadin-lumo-styles"}}(0,o.M)(s)},46570:(t,e,r)=>{r.d(e,{$m:()=>o.$m,Tb:()=>u,hC:()=>a,iv:()=>o.iv});var o=r(9392),s=r(61462);const i=[];function n(t){return t&&Object.prototype.hasOwnProperty.call(t,"__themes")}function a(t,e,r={}){var s;t&&(s=t,n(customElements.get(s))&&console.warn(`The custom element definition for "${t}"\n was finalized before a style module was registered.\n Make sure to add component specific style modules before\n importing the corresponding custom element.`)),e=function(t=[]){return[t].flat(1/0).filter((t=>t instanceof o.c3||(console.warn("An item in styles is not of type CSSResult. Use `unsafeCSS` or `css`."),!1)))}(e),window.Vaadin&&window.Vaadin.styleModules?window.Vaadin.styleModules.registerStyles(t,e,r):i.push({themeFor:t,styles:e,include:r.include,moduleId:r.moduleId})}function l(){return window.Vaadin&&window.Vaadin.styleModules?window.Vaadin.styleModules.getAllThemes():i}function c(t=""){let e=0;return t.startsWith("lumo-")||t.startsWith("material-")?e=1:t.startsWith("vaadin-")&&(e=2),e}function d(t){const e=[];return t.include&&[].concat(t.include).forEach((t=>{const r=l().find((e=>e.moduleId===t));r?e.push(...d(r),...r.styles):console.warn(`Included moduleId ${t} not found in style registry`)}),t.styles),e}function h(t){const e=`${t}-default-theme`,r=l().filter((r=>r.moduleId!==e&&function(t,e){return(t||"").split(" ").some((t=>new RegExp(`^${t.split("*").join(".*")}$`,"u").test(e)))}(r.themeFor,t))).map((t=>({...t,styles:[...d(t),...t.styles],includePriority:c(t.moduleId)}))).sort(((t,e)=>e.includePriority-t.includePriority));return r.length>0?r:l().filter((t=>t.moduleId===e))}const u=t=>class extends((0,s.I)(t)){static finalize(){if(super.finalize(),this.elementStyles)return;const t=this.prototype._template;t&&!n(this)&&function(t,e){const r=document.createElement("style");r.innerHTML=t.map((t=>t.cssText)).join("\n"),e.content.appendChild(r)}(this.getStylesForThis(),t)}static finalizeStyles(t){const e=this.getStylesForThis();return t?[...super.finalizeStyles(t),...e]:e}static getStylesForThis(){const t=Object.getPrototypeOf(this.prototype),e=(t?t.constructor.__themes:[])||[];this.__themes=[...e,...h(this.is)];const r=this.__themes.flatMap((t=>t.styles));return r.filter(((t,e)=>e===r.lastIndexOf(t)))}}},61462:(t,e,r)=>{r.d(e,{I:()=>o});const o=t=>class extends t{static get properties(){return{_theme:{type:String,readOnly:!0}}}static get observedAttributes(){return[...super.observedAttributes,"theme"]}attributeChangedCallback(t,e,r){super.attributeChangedCallback(t,e,r),"theme"===t&&this._set_theme(r)}}},33692:(t,e,r)=>{r.d(e,{Jb:()=>S,Ld:()=>E,YP:()=>C,_$LH:()=>D,sY:()=>j});const o=globalThis,s=o.trustedTypes,i=s?s.createPolicy("lit-html",{createHTML:t=>t}):void 0,n="$lit$",a=`lit$${(Math.random()+"").slice(9)}$`,l="?"+a,c=`<${l}>`,d=document,h=()=>d.createComment(""),u=t=>null===t||"object"!=typeof t&&"function"!=typeof t,p=Array.isArray,_=t=>p(t)||"function"==typeof t?.[Symbol.iterator],m="[ \t\n\f\r]",f=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,y=/-->/g,g=/>/g,v=RegExp(`>|${m}(?:([^\\s"'>=/]+)(${m}*=${m}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),b=/'/g,P=/"/g,w=/^(?:script|style|textarea|title)$/i,A=t=>(e,...r)=>({_$litType$:t,strings:e,values:r}),C=(A(1),A(2)),S=Symbol.for("lit-noChange"),E=Symbol.for("lit-nothing"),x=new WeakMap,T=d.createTreeWalker(d,129);function $(t,e){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==i?i.createHTML(e):e}const O=(t,e)=>{const r=t.length-1,o=[];let s,i=2===e?"<svg>":"",l=f;for(let e=0;e<r;e++){const r=t[e];let d,h,u=-1,p=0;for(;p<r.length&&(l.lastIndex=p,h=l.exec(r),null!==h);)p=l.lastIndex,l===f?"!--"===h[1]?l=y:void 0!==h[1]?l=g:void 0!==h[2]?(w.test(h[2])&&(s=RegExp("</"+h[2],"g")),l=v):void 0!==h[3]&&(l=v):l===v?">"===h[0]?(l=s??f,u=-1):void 0===h[1]?u=-2:(u=l.lastIndex-h[2].length,d=h[1],l=void 0===h[3]?v:'"'===h[3]?P:b):l===P||l===b?l=v:l===y||l===g?l=f:(l=v,s=void 0);const _=l===v&&t[e+1].startsWith("/>")?" ":"";i+=l===f?r+c:u>=0?(o.push(d),r.slice(0,u)+n+r.slice(u)+a+_):r+a+(-2===u?e:_)}return[$(t,i+(t[r]||"<?>")+(2===e?"</svg>":"")),o]};class N{constructor({strings:t,_$litType$:e},r){let o;this.parts=[];let i=0,c=0;const d=t.length-1,u=this.parts,[p,_]=O(t,e);if(this.el=N.createElement(p,r),T.currentNode=this.el.content,2===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(o=T.nextNode())&&u.length<d;){if(1===o.nodeType){if(o.hasAttributes())for(const t of o.getAttributeNames())if(t.endsWith(n)){const e=_[c++],r=o.getAttribute(t).split(a),s=/([.?@])?(.*)/.exec(e);u.push({type:1,index:i,name:s[2],strings:r,ctor:"."===s[1]?M:"?"===s[1]?L:"@"===s[1]?H:z}),o.removeAttribute(t)}else t.startsWith(a)&&(u.push({type:6,index:i}),o.removeAttribute(t));if(w.test(o.tagName)){const t=o.textContent.split(a),e=t.length-1;if(e>0){o.textContent=s?s.emptyScript:"";for(let r=0;r<e;r++)o.append(t[r],h()),T.nextNode(),u.push({type:2,index:++i});o.append(t[e],h())}}}else if(8===o.nodeType)if(o.data===l)u.push({type:2,index:i});else{let t=-1;for(;-1!==(t=o.data.indexOf(a,t+1));)u.push({type:7,index:i}),t+=a.length-1}i++}}static createElement(t,e){const r=d.createElement("template");return r.innerHTML=t,r}}function k(t,e,r=t,o){if(e===S)return e;let s=void 0!==o?r._$Co?.[o]:r._$Cl;const i=u(e)?void 0:e._$litDirective$;return s?.constructor!==i&&(s?._$AO?.(!1),void 0===i?s=void 0:(s=new i(t),s._$AT(t,r,o)),void 0!==o?(r._$Co??=[])[o]=s:r._$Cl=s),void 0!==s&&(e=k(t,s._$AS(t,e.values),s,o)),e}class I{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){const{el:{content:e},parts:r}=this._$AD,o=(t?.creationScope??d).importNode(e,!0);T.currentNode=o;let s=T.nextNode(),i=0,n=0,a=r[0];for(;void 0!==a;){if(i===a.index){let e;2===a.type?e=new R(s,s.nextSibling,this,t):1===a.type?e=new a.ctor(s,a.name,a.strings,this,t):6===a.type&&(e=new U(s,this,t)),this._$AV.push(e),a=r[++n]}i!==a?.index&&(s=T.nextNode(),i++)}return T.currentNode=d,o}p(t){let e=0;for(const r of this._$AV)void 0!==r&&(void 0!==r.strings?(r._$AI(t,r,e),e+=r.strings.length-2):r._$AI(t[e])),e++}}class R{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,r,o){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=r,this.options=o,this._$Cv=o?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t?.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=k(this,t,e),u(t)?t===E||null==t||""===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==S&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):_(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==E&&u(this._$AH)?this._$AA.nextSibling.data=t:this.$(d.createTextNode(t)),this._$AH=t}g(t){const{values:e,_$litType$:r}=t,o="number"==typeof r?this._$AC(t):(void 0===r.el&&(r.el=N.createElement($(r.h,r.h[0]),this.options)),r);if(this._$AH?._$AD===o)this._$AH.p(e);else{const t=new I(o,this),r=t.u(this.options);t.p(e),this.$(r),this._$AH=t}}_$AC(t){let e=x.get(t.strings);return void 0===e&&x.set(t.strings,e=new N(t)),e}T(t){p(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let r,o=0;for(const s of t)o===e.length?e.push(r=new R(this.k(h()),this.k(h()),this,this.options)):r=e[o],r._$AI(s),o++;o<e.length&&(this._$AR(r&&r._$AB.nextSibling,o),e.length=o)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class z{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,r,o,s){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=e,this._$AM=o,this.options=s,r.length>2||""!==r[0]||""!==r[1]?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=E}_$AI(t,e=this,r,o){const s=this.strings;let i=!1;if(void 0===s)t=k(this,t,e,0),i=!u(t)||t!==this._$AH&&t!==S,i&&(this._$AH=t);else{const o=t;let n,a;for(t=s[0],n=0;n<s.length-1;n++)a=k(this,o[r+n],e,n),a===S&&(a=this._$AH[n]),i||=!u(a)||a!==this._$AH[n],a===E?t=E:t!==E&&(t+=(a??"")+s[n+1]),this._$AH[n]=a}i&&!o&&this.O(t)}O(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class M extends z{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===E?void 0:t}}class L extends z{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class H extends z{constructor(t,e,r,o,s){super(t,e,r,o,s),this.type=5}_$AI(t,e=this){if((t=k(this,t,e,0)??E)===S)return;const r=this._$AH,o=t===E&&r!==E||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,s=t!==E&&(r===E||o);o&&this.element.removeEventListener(this.name,this,r),s&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class U{constructor(t,e,r){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(t){k(this,t)}}const D={j:n,P:a,A:l,C:1,M:O,L:I,R:_,V:k,D:R,I:z,H:L,N:H,U:M,B:U},F=o.litHtmlPolyfillSupport;F?.(N,R),(o.litHtmlVersions??=[]).push("3.1.1");const j=(t,e,r)=>{const o=r?.renderBefore??e;let s=o._$litPart$;if(void 0===s){const t=r?.renderBefore??null;o._$litPart$=s=new R(e.insertBefore(h(),t),t,void 0,r??{})}return s._$AI(t),s}},9392:(t,e,r)=>{r.d(e,{c3:()=>a,iv:()=>c,Ld:()=>x.Ld,sY:()=>x.sY,YP:()=>x.YP,$m:()=>l});const o=globalThis,s=o.ShadowRoot&&(void 0===o.ShadyCSS||o.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,i=Symbol(),n=new WeakMap;class a{constructor(t,e,r){if(this._$cssResult$=!0,r!==i)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(s&&void 0===t){const r=void 0!==e&&1===e.length;r&&(t=n.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),r&&n.set(e,t))}return t}toString(){return this.cssText}}const l=t=>new a("string"==typeof t?t:t+"",void 0,i),c=(t,...e)=>{const r=1===t.length?t[0]:e.reduce(((e,r,o)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(r)+t[o+1]),t[0]);return new a(r,t,i)},d=(t,e)=>{if(s)t.adoptedStyleSheets=e.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const r of e){const e=document.createElement("style"),s=o.litNonce;void 0!==s&&e.setAttribute("nonce",s),e.textContent=r.cssText,t.appendChild(e)}},h=s?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const r of t.cssRules)e+=r.cssText;return l(e)})(t):t,{is:u,defineProperty:p,getOwnPropertyDescriptor:_,getOwnPropertyNames:m,getOwnPropertySymbols:f,getPrototypeOf:y}=Object,g=globalThis,v=g.trustedTypes,b=v?v.emptyScript:"",P=g.reactiveElementPolyfillSupport,w=(t,e)=>t,A={toAttribute(t,e){switch(e){case Boolean:t=t?b:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let r=t;switch(e){case Boolean:r=null!==t;break;case Number:r=null===t?null:Number(t);break;case Object:case Array:try{r=JSON.parse(t)}catch(t){r=null}}return r}},C=(t,e)=>!u(t,e),S={attribute:!0,type:String,converter:A,reflect:!1,hasChanged:C};Symbol.metadata??=Symbol("metadata"),g.litPropertyMetadata??=new WeakMap;class E 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=S){if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){const r=Symbol(),o=this.getPropertyDescriptor(t,r,e);void 0!==o&&p(this.prototype,t,o)}}static getPropertyDescriptor(t,e,r){const{get:o,set:s}=_(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get(){return o?.call(this)},set(e){const i=o?.call(this);s.call(this,e),this.requestUpdate(t,i,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??S}static _$Ei(){if(this.hasOwnProperty(w("elementProperties")))return;const t=y(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(w("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(w("properties"))){const t=this.properties,e=[...m(t),...f(t)];for(const r of e)this.createProperty(r,t[r])}const t=this[Symbol.metadata];if(null!==t){const e=litPropertyMetadata.get(t);if(void 0!==e)for(const[t,r]of e)this.elementProperties.set(t,r)}this._$Eh=new Map;for(const[t,e]of this.elementProperties){const r=this._$Eu(t,e);void 0!==r&&this._$Eh.set(r,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const r=new Set(t.flat(1/0).reverse());for(const t of r)e.unshift(h(t))}else void 0!==t&&e.push(h(t));return e}static _$Eu(t,e){const r=e.attribute;return!1===r?void 0:"string"==typeof r?r:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$Eg=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$ES(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$E_??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$E_?.delete(t)}_$ES(){const t=new Map,e=this.constructor.elementProperties;for(const r of e.keys())this.hasOwnProperty(r)&&(t.set(r,this[r]),delete this[r]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return d(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$E_?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$E_?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,e,r){this._$AK(t,r)}_$EO(t,e){const r=this.constructor.elementProperties.get(t),o=this.constructor._$Eu(t,r);if(void 0!==o&&!0===r.reflect){const s=(void 0!==r.converter?.toAttribute?r.converter:A).toAttribute(e,r.type);this._$Em=t,null==s?this.removeAttribute(o):this.setAttribute(o,s),this._$Em=null}}_$AK(t,e){const r=this.constructor,o=r._$Eh.get(t);if(void 0!==o&&this._$Em!==o){const t=r.getPropertyOptions(o),s="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:A;this._$Em=o,this[o]=s.fromAttribute(e,t.type),this._$Em=null}}requestUpdate(t,e,r){if(void 0!==t){if(r??=this.constructor.getPropertyOptions(t),!(r.hasChanged??C)(this[t],e))return;this.C(t,e,r)}!1===this.isUpdatePending&&(this._$Eg=this._$EP())}C(t,e,r){this._$AL.has(t)||this._$AL.set(t,e),!0===r.reflect&&this._$Em!==t&&(this._$ET??=new Set).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,e]of this._$Ep)this[t]=e;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[e,r]of t)!0!==r.wrapped||this._$AL.has(e)||void 0===this[e]||this.C(e,this[e],r)}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$E_?.forEach((t=>t.hostUpdate?.())),this.update(e)):this._$Ej()}catch(e){throw t=!1,this._$Ej(),e}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$E_?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$Ej(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$ET&&=this._$ET.forEach((t=>this._$EO(t,this[t]))),this._$Ej()}updated(t){}firstUpdated(t){}}E.elementStyles=[],E.shadowRootOptions={mode:"open"},E[w("elementProperties")]=new Map,E[w("finalized")]=new Map,P?.({ReactiveElement:E}),(g.reactiveElementVersions??=[]).push("2.0.3");var x=r(33692);class T extends E{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=(0,x.sY)(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return x.Jb}}T._$litElement$=!0,T.finalized=!0,globalThis.litElementHydrateSupport?.({LitElement:T});const $=globalThis.litElementPolyfillSupport;$?.({LitElement:T}),(globalThis.litElementVersions??=[]).push("4.0.3")}}]);