@maggioli-design-system/mds-input-range 2.5.4 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{index-37d5e60f.js → index-1f95f3de.js} +4 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/mds-input-range.cjs.entry.js +4 -3
- package/dist/cjs/mds-input-range.cjs.js +2 -2
- package/dist/collection/components/mds-input-range/mds-input-range.css +38 -22
- package/dist/collection/components/mds-input-range/mds-input-range.js +22 -1
- package/dist/collection/components/mds-input-range/test/mds-input-range.stories.js +1 -1
- package/dist/collection/dictionary/typography.js +5 -1
- package/dist/components/mds-input-range.js +4 -2
- package/dist/documentation.json +59 -5
- package/dist/esm/{index-e9d1fa7e.js → index-a1c32812.js} +4 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/mds-input-range.entry.js +4 -3
- package/dist/esm/mds-input-range.js +3 -3
- package/dist/esm-es5/index-a1c32812.js +1 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mds-input-range.entry.js +1 -1
- package/dist/esm-es5/mds-input-range.js +1 -1
- package/dist/mds-input-range/mds-input-range.esm.js +1 -1
- package/dist/mds-input-range/mds-input-range.js +1 -1
- package/dist/mds-input-range/{p-b6d99f83.system.js → p-032aeb78.system.js} +1 -1
- package/dist/mds-input-range/p-805599e2.js +2 -0
- package/dist/mds-input-range/p-ab2218cb.entry.js +1 -0
- package/dist/mds-input-range/p-b15e7f8e.system.entry.js +1 -0
- package/dist/mds-input-range/p-e5970baa.system.js +2 -0
- package/dist/stats.json +115 -39
- package/dist/types/components/mds-input-range/mds-input-range.d.ts +5 -0
- package/dist/types/components.d.ts +8 -0
- package/dist/types/dictionary/icon.d.ts +1 -1
- package/dist/types/dictionary/typography.d.ts +2 -1
- package/dist/types/type/typography.d.ts +1 -0
- package/documentation.json +75 -6
- package/package.json +1 -1
- package/readme.md +13 -7
- package/src/components/mds-input-range/mds-input-range.css +39 -23
- package/src/components/mds-input-range/mds-input-range.tsx +12 -2
- package/src/components/mds-input-range/readme.md +13 -7
- package/src/components/mds-input-range/test/mds-input-range.stories.tsx +3 -1
- package/src/components.d.ts +8 -0
- package/src/dictionary/typography.ts +6 -0
- package/src/type/typography.ts +4 -0
- package/www/build/mds-input-range.esm.js +1 -1
- package/www/build/mds-input-range.js +1 -1
- package/www/build/{p-b6d99f83.system.js → p-032aeb78.system.js} +1 -1
- package/www/build/p-805599e2.js +2 -0
- package/www/build/p-ab2218cb.entry.js +1 -0
- package/www/build/p-b15e7f8e.system.entry.js +1 -0
- package/www/build/p-e5970baa.system.js +2 -0
- package/dist/esm-es5/index-e9d1fa7e.js +0 -1
- package/dist/mds-input-range/p-155deafe.js +0 -2
- package/dist/mds-input-range/p-55273f42.entry.js +0 -1
- package/dist/mds-input-range/p-7315ada7.system.js +0 -2
- package/dist/mds-input-range/p-b3abfa80.system.entry.js +0 -1
- package/src/fixtures/icons.json +0 -473
- package/www/build/p-155deafe.js +0 -2
- package/www/build/p-55273f42.entry.js +0 -1
- package/www/build/p-7315ada7.system.js +0 -2
- package/www/build/p-b3abfa80.system.entry.js +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,c as a,h as e,H as r,g as d}from"./p-155deafe.js";const i=class{constructor(e){t(this,e),this.changeEvent=a(this,"mdsInputRangeChange",7),e.$hostElement$["s-ei"]?this.internals=e.$hostElement$["s-ei"]:(this.internals=e.$hostElement$.attachInternals(),e.$hostElement$["s-ei"]=this.internals),this.max=100,this.min=0,this.step=1,this.onInput=()=>{if(Number.isNaN(this.inputElement.value))throw Error(`Entered value ${this.inputElement.value} is not a Number`);this.value=Number(this.inputElement.value)}}calculateProgress(){let t=Number(this.inputElement.value);const a=Math.pow(10,this.decimalPlaces);t>this.max?t=this.max:t<this.min&&(t=this.min),(t-this.min)*a%(this.step*a)!=0&&(t=(Math.round((t*a-this.min*a)/(this.step*a))*(this.step*a)+this.min*a)/a),this.value=t,this.internals.setFormValue(this.value.toString()),this.progress=(this.value-this.min)/(this.max-this.min)*100}countDecimals(t){return Math.floor(t)===t?0:t.toString().split(".")[1].length||0}disabledChanged(t){t&&this.internals.setFormValue(null)}valueChanged(t,a){t!==a&&(this.inputElement.value=this.value.toString(),this.calculateProgress(),this.changeEvent.emit(this.value))}minChanged(){this.calculateProgress()}maxChanged(){this.calculateProgress()}stepChanged(){if(this.step<=0)throw Error("step cant be negative or zero");this.decimalPlaces=this.countDecimals(this.step),this.calculateProgress()}formResetCallback(){this.internals.setFormValue("")}componentDidLoad(){var t;this.decimalPlaces=this.countDecimals(this.step),this.onInput(),this.label=null!==(t=this.element.textContent)&&void 0!==t?t:"",this.calculateProgress()}render(){return e(r,{key:"c7f40ef34fa414e4f99881e815fa805dfc089667"},e("header",{key:"285c789e06277c9f0f2068b4a49036faf29dd70b",class:"header",part:"header"},e("mds-text",{key:"485ff525a7fbca6e7a7e121bde7f44ad193bd880",class:"label",typography:"label"},e("slot",{key:"3147cbc8b650bfa3fd87f69f6356687ccdc38024"})),e("mds-text",{key:"c1bafcdfb7d5beda33473240b95a9f733ed7c8b9",class:"value",typography:"label"},this.formatValue?this.formatValue(this.value):this.value)),e("div",{key:"26043966f0e431585aea5b453231591ebfec5dff",class:"range"},e("div",{key:"291fa31c69d3a2a34d4eb14aeab1a9cb51f7bcb3",class:"track"},e("div",{key:"8ee7c29eef91b226bbfe96abe62e95fad2094e7a",class:"contrast-area"}),e("div",{key:"d3e4433931276f474ebe24893826da680f17d541",class:"track-total"},e("div",{key:"87fa236d8538776e5a3372239307032de90e8e91",class:"track-progress",style:{width:`${this.progress}%`}}))),e("input",{key:"0eb811c18c9e9fe81d5df4e5ce019e800aad75e2",ref:t=>this.inputElement=t,class:"field","aria-label":this.label,disabled:this.disabled,max:this.max,min:this.min,onInput:this.onInput,step:this.step,type:"range",value:this.value})))}static get formAssociated(){return!0}get element(){return d(this)}static get watchers(){return{disabled:["disabledChanged"],value:["valueChanged"],min:["minChanged"],max:["maxChanged"],step:["stepChanged"]}}};i.style='@-webkit-keyframes focus-bounce{0%,75%,100%{outline-offset:var(--magma-outline-focus-offset, 6px)}50%{outline-offset:var(--magma-outline-blur-offset, 2px)}}@keyframes focus-bounce{0%,75%,100%{outline-offset:var(--magma-outline-focus-offset, 6px)}50%{outline-offset:var(--magma-outline-blur-offset, 2px)}}@tailwind components; :host{--mds-input-range-thumb-size:1rem;--mds-input-range-thumb-background:rgb(var(--variant-primary-04));--mds-input-range-thumb-shadow:0 0 0 2px rgb(var(--tone-neutral));--mds-input-range-track-background:rgb(var(--tone-neutral-08));--mds-input-range-track-size:0.5rem;--mds-input-range-track-progress-background:rgb(var(--variant-primary-03));--mds-input-range-thumb-background-disabled:rgb(var(--tone-neutral-06));--mds-input-range-track-background-disabled:rgb(var(--tone-neutral-08));--mds-input-range-track-progress-background-disabled:rgb(var(--tone-neutral-06));gap:0.25rem;-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);display:grid;-webkit-transition-property:color;transition-property:color}.header{gap:0.5rem;display:-ms-flexbox;display:flex}.label{min-width:0rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.value{margin-left:auto}.range{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:var(--mds-input-range-thumb-size);position:relative}.track{width:100%;--margin:calc(var(--mds-input-range-track-size) / 2);-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 var(--margin);position:absolute}.field{-webkit-animation-duration:var(--magma-outline-animation-duration, 1s);animation-duration:var(--magma-outline-animation-duration, 1s);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:focus-bounce;animation-name:focus-bounce;-webkit-animation-play-state:paused;animation-play-state:paused;-webkit-animation-timing-function:cubic-bezier(0, 0, 0.2, 1);animation-timing-function:cubic-bezier(0, 0, 0.2, 1);outline:var(--magma-outline-blur);-webkit-transition-duration:200ms;transition-duration:200ms;-webkit-transition-property:background-color, border-color, color, fill, outline, outline-offset, -webkit-box-shadow, -webkit-transform;transition-property:background-color, border-color, color, fill, outline, outline-offset, -webkit-box-shadow, -webkit-transform;transition-property:background-color, border-color, box-shadow, color, fill, outline, outline-offset, transform;transition-property:background-color, border-color, box-shadow, color, fill, outline, outline-offset, transform, -webkit-box-shadow, -webkit-transform;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.field:focus-visible{--magma-outline-blur:var(--magma-outline-focus);-webkit-animation-play-state:running;animation-play-state:running}.field{z-index:20;height:1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:1000px;-ms-flex-positive:1;flex-grow:1;margin:0}.field:focus-visible{--magma-outline-blur:var(--magma-outline-focus);-webkit-animation-play-state:running;animation-play-state:running}.field::-webkit-slider-thumb{-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-appearance:none;appearance:none;background-color:var(--mds-input-range-thumb-background);border:0;border-radius:var(--mds-input-range-thumb-size);-webkit-box-shadow:var(--mds-input-range-thumb-shadow);box-shadow:var(--mds-input-range-thumb-shadow);cursor:-webkit-grab;cursor:grab;height:var(--mds-input-range-thumb-size);line-height:0;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);-webkit-transition-property:background-color, box-shadow;-webkit-transition-property:background-color, -webkit-box-shadow;transition-property:background-color, -webkit-box-shadow;transition-property:background-color, box-shadow;transition-property:background-color, box-shadow, -webkit-box-shadow;width:var(--mds-input-range-thumb-size)}.field::-webkit-slider-runnable-track{-webkit-appearance:none;appearance:none;border:0;height:0;width:100%}.track-progress{-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mds-input-range-track-progress-background);display:-ms-flexbox;display:flex;height:var(--mds-input-range-track-size);-webkit-transition-property:background-color;transition-property:background-color}.track-total{-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mds-input-range-track-background);border-radius:var(--mds-input-range-track-size);display:-ms-flexbox;display:flex;height:var(--mds-input-range-track-size);overflow:hidden;-webkit-transition-property:background-color;transition-property:background-color;width:100%}.contrast-area{margin-left:0.25rem;margin-right:0.25rem;border-radius:var(--mds-input-range-track-size)}:host([disabled]:not([disabled="false"])){--mds-input-range-thumb-background:var(--mds-input-range-thumb-background-disabled);--mds-input-range-track-background:var(--mds-input-range-track-background-disabled);--mds-input-range-track-progress-background:var(--mds-input-range-track-progress-background-disabled)}:host([disabled]:not([disabled="false"])) .field::-webkit-slider-thumb{cursor:not-allowed}:host-context(.pref-animation-reduce),:host-context(.pref-animation-reduce) .field::-webkit-slider-thumb,:host-context(.pref-animation-reduce) .field::-webkit-slider-runnable-track,:host-context(.pref-animation-reduce) .track-progress,:host-context(.pref-animation-reduce) .track-total{-webkit-transition-duration:0s;transition-duration:0s}@media (prefers-reduced-motion){:host-context(.pref-animation-system),:host-context(.pref-animation-system) .field::-webkit-slider-thumb,:host-context(.pref-animation-system) .field::-webkit-slider-runnable-track,:host-context(.pref-animation-system) .track-progress,:host-context(.pref-animation-system) .track-total{-webkit-transition-duration:0s;transition-duration:0s}}:host-context(.pref-theme-dark){--mds-input-range-thumb-background:rgb(var(--variant-primary-04));--mds-input-range-track-background:rgb(var(--tone-neutral-07));--mds-input-range-track-progress-background:rgb(var(--variant-primary-05))}@media (prefers-color-scheme: dark){:host-context(.pref-theme-system){--mds-input-range-thumb-background:rgb(var(--variant-primary-04));--mds-input-range-track-background:rgb(var(--tone-neutral-07));--mds-input-range-track-progress-background:rgb(var(--variant-primary-05))}}:host-context(.pref-contrast-more){color:rgb(var(--tone-neutral-01))}@media (prefers-contrast: more){:host-context(.pref-contrast-system){color:rgb(var(--tone-neutral-01))}}:host(:not(:is([hydrated],.hydrated))){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}mds-accordion:not(:is([hydrated],.hydrated)),mds-accordion-item:not(:is([hydrated],.hydrated)),mds-accordion-timer:not(:is([hydrated],.hydrated)),mds-accordion-timer-item:not(:is([hydrated],.hydrated)),mds-author:not(:is([hydrated],.hydrated)),mds-avatar:not(:is([hydrated],.hydrated)),mds-badge:not(:is([hydrated],.hydrated)),mds-banner:not(:is([hydrated],.hydrated)),mds-benchmark-bar:not(:is([hydrated],.hydrated)),mds-bibliography:not(:is([hydrated],.hydrated)),mds-breadcrumb:not(:is([hydrated],.hydrated)),mds-breadcrumb-item:not(:is([hydrated],.hydrated)),mds-button:not(:is([hydrated],.hydrated)),mds-card:not(:is([hydrated],.hydrated)),mds-card-content:not(:is([hydrated],.hydrated)),mds-card-footer:not(:is([hydrated],.hydrated)),mds-card-header:not(:is([hydrated],.hydrated)),mds-card-media:not(:is([hydrated],.hydrated)),mds-chip:not(:is([hydrated],.hydrated)),mds-details:not(:is([hydrated],.hydrated)),mds-dropdown:not(:is([hydrated],.hydrated)),mds-entity:not(:is([hydrated],.hydrated)),mds-file:not(:is([hydrated],.hydrated)),mds-file-preview:not(:is([hydrated],.hydrated)),mds-filter:not(:is([hydrated],.hydrated)),mds-filter-item:not(:is([hydrated],.hydrated)),mds-header:not(:is([hydrated],.hydrated)),mds-header-bar:not(:is([hydrated],.hydrated)),mds-help:not(:is([hydrated],.hydrated)),mds-horizontal-scroll:not(:is([hydrated],.hydrated)),mds-hr:not(:is([hydrated],.hydrated)),mds-icon:not(:is([hydrated],.hydrated)),mds-img:not(:is([hydrated],.hydrated)),mds-input:not(:is([hydrated],.hydrated)),mds-input-field:not(:is([hydrated],.hydrated)),mds-input-range:not(:is([hydrated],.hydrated)),mds-input-select:not(:is([hydrated],.hydrated)),mds-input-switch:not(:is([hydrated],.hydrated)),mds-input-tip:not(:is([hydrated],.hydrated)),mds-input-tip-item:not(:is([hydrated],.hydrated)),mds-input-upload:not(:is([hydrated],.hydrated)),mds-keyboard:not(:is([hydrated],.hydrated)),mds-keyboard-key:not(:is([hydrated],.hydrated)),mds-kpi:not(:is([hydrated],.hydrated)),mds-kpi-item:not(:is([hydrated],.hydrated)),mds-label:not(:is([hydrated],.hydrated)),mds-list:not(:is([hydrated],.hydrated)),mds-list-item:not(:is([hydrated],.hydrated)),mds-modal:not(:is([hydrated],.hydrated)),mds-note:not(:is([hydrated],.hydrated)),mds-notification:not(:is([hydrated],.hydrated)),mds-paginator:not(:is([hydrated],.hydrated)),mds-paginator-item:not(:is([hydrated],.hydrated)),mds-pref:not(:is([hydrated],.hydrated)),mds-pref-animation:not(:is([hydrated],.hydrated)),mds-pref-consumption:not(:is([hydrated],.hydrated)),mds-pref-contrast:not(:is([hydrated],.hydrated)),mds-pref-language:not(:is([hydrated],.hydrated)),mds-pref-language-item:not(:is([hydrated],.hydrated)),mds-pref-theme:not(:is([hydrated],.hydrated)),mds-price-table:not(:is([hydrated],.hydrated)),mds-price-table-features:not(:is([hydrated],.hydrated)),mds-price-table-features-cell:not(:is([hydrated],.hydrated)),mds-price-table-features-row:not(:is([hydrated],.hydrated)),mds-price-table-header:not(:is([hydrated],.hydrated)),mds-price-table-list:not(:is([hydrated],.hydrated)),mds-price-table-list-item:not(:is([hydrated],.hydrated)),mds-progress:not(:is([hydrated],.hydrated)),mds-push-notification:not(:is([hydrated],.hydrated)),mds-push-notifications:not(:is([hydrated],.hydrated)),mds-quote:not(:is([hydrated],.hydrated)),mds-separator:not(:is([hydrated],.hydrated)),mds-spinner:not(:is([hydrated],.hydrated)),mds-stepper-bar:not(:is([hydrated],.hydrated)),mds-stepper-bar-item:not(:is([hydrated],.hydrated)),mds-tab:not(:is([hydrated],.hydrated)),mds-tab-bar:not(:is([hydrated],.hydrated)),mds-tab-bar-item:not(:is([hydrated],.hydrated)),mds-tab-item:not(:is([hydrated],.hydrated)),mds-table:not(:is([hydrated],.hydrated)),mds-table-body:not(:is([hydrated],.hydrated)),mds-table-cell:not(:is([hydrated],.hydrated)),mds-table-footer:not(:is([hydrated],.hydrated)),mds-table-header:not(:is([hydrated],.hydrated)),mds-table-header-cell:not(:is([hydrated],.hydrated)),mds-table-row:not(:is([hydrated],.hydrated)),mds-text:not(:is([hydrated],.hydrated)),mds-toast:not(:is([hydrated],.hydrated)),mds-tooltip:not(:is([hydrated],.hydrated)),mds-tree:not(:is([hydrated],.hydrated)),mds-tree-item:not(:is([hydrated],.hydrated)),mds-url-view:not(:is([hydrated],.hydrated)),mds-usage:not(:is([hydrated],.hydrated)),mds-video-wall:not(:is([hydrated],.hydrated)),mds-zero:not(:is([hydrated],.hydrated)){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}';export{i as mds_input_range}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
var __extends=this&&this.__extends||function(){var e=function(r,n){e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,r){e.__proto__=r}||function(e,r){for(var n in r)if(Object.prototype.hasOwnProperty.call(r,n))e[n]=r[n]};return e(r,n)};return function(r,n){if(typeof n!=="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(r,n);function t(){this.constructor=r}r.prototype=n===null?Object.create(n):(t.prototype=n.prototype,new t)}}();var __awaiter=this&&this.__awaiter||function(e,r,n,t){function i(e){return e instanceof n?e:new n((function(r){r(e)}))}return new(n||(n=Promise))((function(n,a){function o(e){try{u(t.next(e))}catch(e){a(e)}}function f(e){try{u(t["throw"](e))}catch(e){a(e)}}function u(e){e.done?n(e.value):i(e.value).then(o,f)}u((t=t.apply(e,r||[])).next())}))};var __generator=this&&this.__generator||function(e,r){var n={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},t,i,a,o;return o={next:f(0),throw:f(1),return:f(2)},typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function f(e){return function(r){return u([e,r])}}function u(f){if(t)throw new TypeError("Generator is already executing.");while(o&&(o=0,f[0]&&(n=0)),n)try{if(t=1,i&&(a=f[0]&2?i["return"]:f[0]?i["throw"]||((a=i["return"])&&a.call(i),0):i.next)&&!(a=a.call(i,f[1])).done)return a;if(i=0,a)f=[f[0]&2,a.value];switch(f[0]){case 0:case 1:a=f;break;case 4:n.label++;return{value:f[1],done:false};case 5:n.label++;i=f[1];f=[0];continue;case 7:f=n.ops.pop();n.trys.pop();continue;default:if(!(a=n.trys,a=a.length>0&&a[a.length-1])&&(f[0]===6||f[0]===2)){n=0;continue}if(f[0]===3&&(!a||f[1]>a[0]&&f[1]<a[3])){n.label=f[1];break}if(f[0]===6&&n.label<a[1]){n.label=a[1];a=f;break}if(a&&n.label<a[2]){n.label=a[2];n.ops.push(f);break}if(a[2])n.ops.pop();n.trys.pop();continue}f=r.call(e,n)}catch(e){f=[6,e];i=0}finally{t=a=0}if(f[0]&5)throw f[1];return{value:f[0]?f[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(e,r,n){if(n||arguments.length===2)for(var t=0,i=r.length,a;t<i;t++){if(a||!(t in r)){if(!a)a=Array.prototype.slice.call(r,0,t);a[t]=r[t]}}return e.concat(a||Array.prototype.slice.call(r))};System.register([],(function(e,r){"use strict";return{execute:function(){var n=this;var t="mds-input-range";var i={allRenderFn:true,appendChildSlotFix:false,asyncLoading:true,asyncQueue:false,attachStyles:true,cloneNodeFix:false,constructableCSS:true,cssAnnotations:true,devTools:false,element:false,event:true,experimentalScopedSlotChanges:false,experimentalSlotFixes:false,formAssociated:true,hasRenderFn:true,hostListener:false,hostListenerTarget:false,hostListenerTargetBody:false,hostListenerTargetDocument:false,hostListenerTargetParent:false,hostListenerTargetWindow:false,hotModuleReplacement:false,hydrateClientSide:false,hydrateServerSide:false,hydratedAttribute:true,hydratedClass:false,hydratedSelectorName:"hydrated",initializeNextTick:false,invisiblePrehydration:true,isDebug:false,isDev:false,isTesting:false,lazyLoad:true,lifecycle:true,lifecycleDOMEvents:false,member:true,method:false,mode:false,modernPropertyDecls:false,observeAttribute:true,profile:false,prop:true,propBoolean:true,propMutable:true,propNumber:true,propString:false,reflect:true,scoped:false,scopedSlotTextContentFix:false,scriptDataOpts:false,shadowDelegatesFocus:false,shadowDom:true,slot:true,slotChildNodesFix:false,slotRelocation:false,state:true,style:true,svg:false,taskQueue:true,transformTagName:false,updatable:true,vdomAttribute:true,vdomClass:true,vdomFunctional:false,vdomKey:true,vdomListener:true,vdomPropOrAttr:true,vdomRef:true,vdomRender:true,vdomStyle:true,vdomText:true,vdomXlink:false,watchCallback:true};var a=Object.defineProperty;var o=function(e,r){for(var n in r)a(e,n,{get:r[n],enumerable:true})};var f=function(e){if(e.__stencil__getHostRef){return e.__stencil__getHostRef()}return void 0};var u=e("r",(function(e,r){e.__stencil__getHostRef=function(){return r};r.t=e}));var l=function(e,r){var n={i:0,$hostElement$:e,o:r,u:new Map};{n.l=new Promise((function(e){return n.v=e}));e["s-p"]=[];e["s-rc"]=[]}var t=n;e.__stencil__getHostRef=function(){return t};return t};var s=function(e,r){return r in e};var c=function(e,r){return(0,console.error)(e,r)};var v=new Map;var d=function(e,n,t){var i=e.h.replace(/-/g,"_");var a=e.p;if(!a){return void 0}var o=v.get(a);if(o){return o[i]}
|
|
2
|
-
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(e){{v.set(a,e)}return e[i]}),(function(e){c(e,n.$hostElement$)}))};var h=new Map;var p="sty-id";var m="{visibility:hidden}[hydrated]{visibility:inherit}";var y="slot-fb{display:contents}slot-fb[hidden]{display:none}";var b=["formAssociatedCallback","formResetCallback","formDisabledCallback","formStateRestoreCallback"];var w=typeof window!=="undefined"?window:{};var S={i:0,m:"",jmp:function(e){return e()},raf:function(e){return requestAnimationFrame(e)},ael:function(e,r,n,t){return e.addEventListener(r,n,t)},rel:function(e,r,n,t){return e.removeEventListener(r,n,t)},ce:function(e,r){return new CustomEvent(e,r)}};var g=e("p",(function(e){return Promise.resolve(e)}));var _=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(e){}return false}();var $=false;var k=[];var j=[];var C=function(e,r){return function(n){e.push(n);if(!$){$=true;if(r&&S.i&4){x(O)}else{S.raf(O)}}}};var A=function(e){for(var r=0;r<e.length;r++){try{e[r](performance.now())}catch(e){c(e)}}e.length=0};var O=function(){A(k);{A(j);if($=k.length>0){S.raf(O)}}};var x=function(e){return g().then(e)};var E=C(j,true);var T=function(e){e=typeof e;return e==="object"||e==="function"};function D(e){var r,n,t;return(t=(n=(r=e.head)==null?void 0:r.querySelector('meta[name="csp-nonce"]'))==null?void 0:n.getAttribute("content"))!=null?t:void 0}var M={};o(M,{err:function(){return P},map:function(){return R},ok:function(){return L},unwrap:function(){return F},unwrapErr:function(){return N}});var L=function(e){return{isOk:true,isErr:false,value:e}};var P=function(e){return{isOk:false,isErr:true,value:e}};function R(e,r){if(e.isOk){var n=r(e.value);if(n instanceof Promise){return n.then((function(e){return L(e)}))}else{return L(n)}}if(e.isErr){var t=e.value;return P(t)}throw"should never get here"}var F=function(e){if(e.isOk){return e.value}else{throw e.value}};var N=function(e){if(e.isErr){return e.value}else{throw e.value}};var U=function(e,r){if(r===void 0){r=""}{return function(){return}}};var W=function(e,r){{return function(){return}}};var z=e("h",(function(e,r){var n=[];for(var t=2;t<arguments.length;t++){n[t-2]=arguments[t]}var i=null;var a=null;var o=false;var f=false;var u=[];var l=function(r){for(var n=0;n<r.length;n++){i=r[n];if(Array.isArray(i)){l(i)}else if(i!=null&&typeof i!=="boolean"){if(o=typeof e!=="function"&&!T(i)){i=String(i)}if(o&&f){u[u.length-1].S+=i}else{u.push(o?H(null,i):i)}f=o}}};l(n);if(r){if(r.key){a=r.key}{var s=r.className||r.class;if(s){r.class=typeof s!=="object"?s:Object.keys(s).filter((function(e){return s[e]})).join(" ")}}}var c=H(e,null);c._=r;if(u.length>0){c.$=u}{c.k=a}return c}));var H=function(e,r){var n={i:0,j:e,S:r,C:null,$:null};{n._=null}{n.k=null}return n};var B=e("H",{});var G=function(e){return e&&e.j===B};var I=function(e,r){if(e!=null&&!T(e)){if(r&4){return e==="false"?false:e===""||!!e}if(r&2){return parseFloat(e)}return e}return e};var Q=e("g",(function(e){return f(e).$hostElement$}));var V=e("c",(function(e,r,n){var t=Q(e);return{emit:function(e){return q(t,r,{bubbles:!!(n&4),composed:!!(n&2),cancelable:!!(n&1),detail:e})}}}));var q=function(e,r,n){var t=S.ce(r,n);e.dispatchEvent(t);return t};var K=new WeakMap;var X=function(e,r,n){var t=h.get(e);if(_&&n){t=t||new CSSStyleSheet;if(typeof t==="string"){t=r}else{t.replaceSync(r)}}else{t=r}h.set(e,t)};var Y=function(e,r,n){var t;var i=Z(r);var a=h.get(i);if(!w.document){return i}e=e.nodeType===11?e:w.document;if(a){if(typeof a==="string"){e=e.head||e;var o=K.get(e);var f=void 0;if(!o){K.set(e,o=new Set)}if(!o.has(i)){{f=document.querySelector("[".concat(p,'="').concat(i,'"]'))||w.document.createElement("style");f.innerHTML=a;var u=(t=S.A)!=null?t:D(w.document);if(u!=null){f.setAttribute("nonce",u)}if(!(r.i&1)){if(e.nodeName==="HEAD"){var l=e.querySelectorAll("link[rel=preconnect]");var s=l.length>0?l[l.length-1].nextSibling:e.querySelector("style");e.insertBefore(f,(s==null?void 0:s.parentNode)===e?s:null)}else if("host"in e){if(_){var c=new CSSStyleSheet;c.replaceSync(a);e.adoptedStyleSheets=__spreadArray([c],e.adoptedStyleSheets,true)}else{var v=e.querySelector("style");if(v){v.innerHTML=a+v.innerHTML}else{e.prepend(f)}}}else{e.append(f)}}if(r.i&1){e.insertBefore(f,null)}}if(r.i&4){f.innerHTML+=y}if(o){o.add(i)}}}else if(!e.adoptedStyleSheets.includes(a)){e.adoptedStyleSheets=__spreadArray(__spreadArray([],e.adoptedStyleSheets,true),[a],false)}}return i};var J=function(e){var r=e.o;var n=e.$hostElement$;var t=r.i;var i=U("attachStyles",r.h);var a=Y(n.shadowRoot?n.shadowRoot:n.getRootNode(),r);if(t&10&&t&2||t&128){n["s-sc"]=a;n.classList.add(a+"-h")}i()};var Z=function(e,r){return"sc-"+e.h};var ee=function(e,r,n,t,i,a,o){if(n===t){return}var f=s(e,r);var u=r.toLowerCase();if(r==="class"){var l=e.classList;var c=ne(n);var v=ne(t);{l.remove.apply(l,c.filter((function(e){return e&&!v.includes(e)})));l.add.apply(l,v.filter((function(e){return e&&!c.includes(e)})))}}else if(r==="style"){{for(var d in n){if(!t||t[d]==null){if(d.includes("-")){e.style.removeProperty(d)}else{e.style[d]=""}}}}for(var d in t){if(!n||t[d]!==n[d]){if(d.includes("-")){e.style.setProperty(d,t[d])}else{e.style[d]=t[d]}}}}else if(r==="key");else if(r==="ref"){if(t){t(e)}}else if(!f&&r[0]==="o"&&r[1]==="n"){if(r[2]==="-"){r=r.slice(3)}else if(s(w,u)){r=u.slice(2)}else{r=u[2]+r.slice(3)}if(n||t){var h=r.endsWith(te);r=r.replace(ie,"");if(n){S.rel(e,r,n,h)}if(t){S.ael(e,r,t,h)}}}else{var p=T(t);if((f||p&&t!==null)&&!i){try{if(!e.tagName.includes("-")){var m=t==null?"":t;if(r==="list"){f=false}else if(n==null||e[r]!=m){if(typeof e.__lookupSetter__(r)==="function"){e[r]=m}else{e.setAttribute(r,m)}}}else if(e[r]!==t){e[r]=t}}catch(e){}}if(t==null||t===false){if(t!==false||e.getAttribute(r)===""){{e.removeAttribute(r)}}}else if((!f||a&4||i)&&!p&&e.nodeType===1){t=t===true?"":t;{e.setAttribute(r,t)}}}};var re=/\s/;var ne=function(e){if(typeof e==="object"&&e&&"baseVal"in e){e=e.baseVal}if(!e||typeof e!=="string"){return[]}return e.split(re)};var te="Capture";var ie=new RegExp(te+"$");var ae=function(e,r,n,t){var i=r.C.nodeType===11&&r.C.host?r.C.host:r.C;var a=e&&e._||{};var o=r._||{};{for(var f=0,u=oe(Object.keys(a));f<u.length;f++){var l=u[f];if(!(l in o)){ee(i,l,a[l],void 0,n,r.i)}}}for(var s=0,c=oe(Object.keys(o));s<c.length;s++){var l=c[s];ee(i,l,a[l],o[l],n,r.i)}};function oe(e){return e.includes("ref")?__spreadArray(__spreadArray([],e.filter((function(e){return e!=="ref"})),true),["ref"],false):e}var fe;var ue=false;var le=false;var se=function(e,r,n){var t=r.$[n];var a=0;var o;var f;if(t.S!==null){o=t.C=w.document.createTextNode(t.S)}else{if(!w.document){throw new Error("You are trying to render a Stencil component in an environment that doesn't support the DOM. Make sure to populate the [`window`](https://developer.mozilla.org/en-US/docs/Web/API/Window/window) object before rendering a component.")}o=t.C=w.document.createElement(!ue&&i.slotRelocation&&t.i&2?"slot-fb":t.j);{ae(null,t,le)}if(t.$){for(a=0;a<t.$.length;++a){f=se(e,t,a);if(f){o.appendChild(f)}}}}o["s-hn"]=fe;return o};var ce=function(e,r,n,t,i,a){var o=e;var f;if(o.shadowRoot&&o.tagName===fe){o=o.shadowRoot}for(;i<=a;++i){if(t[i]){f=se(null,n,i);if(f){t[i].C=f;ye(o,f,r)}}}};var ve=function(e,r,n){for(var t=r;t<=n;++t){var i=e[t];if(i){var a=i.C;me(i);if(a){a.remove()}}}};var de=function(e,r,n,t,i){if(i===void 0){i=false}var a=0;var o=0;var f=0;var u=0;var l=r.length-1;var s=r[0];var c=r[l];var v=t.length-1;var d=t[0];var h=t[v];var p;var m;while(a<=l&&o<=v){if(s==null){s=r[++a]}else if(c==null){c=r[--l]}else if(d==null){d=t[++o]}else if(h==null){h=t[--v]}else if(he(s,d,i)){pe(s,d,i);s=r[++a];d=t[++o]}else if(he(c,h,i)){pe(c,h,i);c=r[--l];h=t[--v]}else if(he(s,h,i)){pe(s,h,i);ye(e,s.C,c.C.nextSibling);s=r[++a];h=t[--v]}else if(he(c,d,i)){pe(c,d,i);ye(e,c.C,s.C);c=r[--l];d=t[++o]}else{f=-1;{for(u=a;u<=l;++u){if(r[u]&&r[u].k!==null&&r[u].k===d.k){f=u;break}}}if(f>=0){m=r[f];if(m.j!==d.j){p=se(r&&r[o],n,f)}else{pe(m,d,i);r[f]=void 0;p=m.C}d=t[++o]}else{p=se(r&&r[o],n,o);d=t[++o]}if(p){{ye(s.C.parentNode,p,s.C)}}}}if(a>l){ce(e,t[v+1]==null?null:t[v+1].C,n,t,o,v)}else if(o>v){ve(r,a,l)}};var he=function(e,r,n){if(n===void 0){n=false}if(e.j===r.j){if(!n){return e.k===r.k}if(n&&!e.k&&r.k){e.k=r.k}return true}return false};var pe=function(e,r,n){if(n===void 0){n=false}var t=r.C=e.C;var a=e.$;var o=r.$;var f=r.S;if(f===null){{ae(e,r,le)}if(a!==null&&o!==null){de(t,a,r,o,n)}else if(o!==null){if(e.S!==null){t.textContent=""}ce(t,null,r,o,0,o.length-1)}else if(!n&&i.updatable&&a!==null){ve(a,0,a.length-1)}}else if(e.S!==f){t.data=f}};var me=function(e){{e._&&e._.ref&&e._.ref(null);e.$&&e.$.map(me)}};var ye=function(e,r,n){{return e==null?void 0:e.insertBefore(r,n)}};var be=function(e,r,n){if(n===void 0){n=false}var t=e.$hostElement$;var i=e.o;var a=e.O||H(null,null);var o=G(r)?r:z(null,null,r);fe=t.tagName;if(i.T){o._=o._||{};i.T.map((function(e){var r=e[0],n=e[1];return o._[n]=t[r]}))}if(n&&o._){for(var f=0,u=Object.keys(o._);f<u.length;f++){var l=u[f];if(t.hasAttribute(l)&&!["key","ref","style","class"].includes(l)){o._[l]=t[l]}}}o.j=null;o.i|=4;e.O=o;o.C=a.C=t.shadowRoot||t;ue=!!(i.i&1)&&!(i.i&128);pe(a,o,n)};var we=function(e,r){if(r&&!e.D&&r["s-p"]){var n=r["s-p"].push(new Promise((function(t){return e.D=function(){r["s-p"].splice(n-1,1);t()}})))}};var Se=function(e,r){{e.i|=16}if(e.i&4){e.i|=512;return}we(e,e.M);var n=function(){return ge(e,r)};return E(n)};var ge=function(e,r){var n=e.$hostElement$;var t=U("scheduleUpdate",e.o.h);var i=e.t;if(!i){throw new Error("Can't render component <".concat(n.tagName.toLowerCase()," /> with invalid Stencil runtime! Make sure this imported component is compiled with a `externalRuntime: true` flag. For more information, please refer to https://stenciljs.com/docs/custom-elements#externalruntime"))}var a;if(r){a=Oe(i,"componentWillLoad",void 0,n)}else{a=Oe(i,"componentWillUpdate",void 0,n)}a=_e(a,(function(){return Oe(i,"componentWillRender",void 0,n)}));t();return _e(a,(function(){return ke(e,i,r)}))};var _e=function(e,r){return $e(e)?e.then(r).catch((function(e){console.error(e);r()})):r()};var $e=function(e){return e instanceof Promise||e&&e.then&&typeof e.then==="function"};var ke=function(e,r,t){return __awaiter(n,void 0,void 0,(function(){var n,i,a,o,f,u,l;return __generator(this,(function(s){i=e.$hostElement$;a=U("update",e.o.h);o=i["s-rc"];if(t){J(e)}f=U("render",e.o.h);{je(e,r,i,t)}if(o){o.map((function(e){return e()}));i["s-rc"]=void 0}f();a();{u=(n=i["s-p"])!=null?n:[];l=function(){return Ce(e)};if(u.length===0){l()}else{Promise.all(u).then(l);e.i|=4;u.length=0}}return[2]}))}))};var je=function(e,r,n,t){try{r=r.render();{e.i&=~16}{e.i|=2}{{{be(e,r,t)}}}}catch(r){c(r,e.$hostElement$)}return null};var Ce=function(e){var r=e.o.h;var n=e.$hostElement$;var t=U("postUpdate",r);var i=e.t;var a=e.M;Oe(i,"componentDidRender",void 0,n);if(!(e.i&64)){e.i|=64;{xe(n)}Oe(i,"componentDidLoad",void 0,n);t();{e.v(n);if(!a){Ae()}}}else{Oe(i,"componentDidUpdate",void 0,n);t()}{if(e.D){e.D();e.D=void 0}if(e.i&512){x((function(){return Se(e,false)}))}e.i&=~(4|512)}};var Ae=function(e){x((function(){return q(w,"appload",{detail:{namespace:t}})}))};var Oe=function(e,r,n,t){if(e&&e[r]){try{return e[r](n)}catch(e){c(e,t)}}return void 0};var xe=function(e){var r;return e.setAttribute((r=i.hydratedSelectorName)!=null?r:"hydrated","")};var Ee=function(e,r){return f(e).u.get(r)};var Te=function(e,r,n,t){var i=f(e);if(!i){throw new Error("Couldn't find host element for \"".concat(t.h,'" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).'))}var a=i.$hostElement$;var o=i.u.get(r);var u=i.i;var l=i.t;n=I(n,t.L[r][0]);var s=Number.isNaN(o)&&Number.isNaN(n);var v=n!==o&&!s;if((!(u&8)||o===void 0)&&v){i.u.set(r,n);if(l){if(t.P&&u&128){var d=t.P[r];if(d){d.map((function(e){try{l[e](n,o,r)}catch(e){c(e,a)}}))}}if((u&(2|16))===2){if(l.componentShouldUpdate){if(l.componentShouldUpdate(n,o,r)===false){return}}Se(i,false)}}}};var De=function(e,r,n){var t,a;var o=e.prototype;if(r.i&64&&n&1){b.forEach((function(e){Object.defineProperty(o,e,{value:function(){var r=[];for(var n=0;n<arguments.length;n++){r[n]=arguments[n]}var t=f(this);var i=t.t;if(!i){t.l.then((function(n){var t=n[e];typeof t==="function"&&t.call.apply(t,__spreadArray([n],r,false))}))}else{var a=i[e];typeof a==="function"&&a.call.apply(a,__spreadArray([i],r,false))}}})}))}if(r.L||(r.P||e.watchers)){if(e.watchers&&!r.P){r.P=e.watchers}var u=Object.entries((t=r.L)!=null?t:{});u.map((function(e){var t=e[0],i=e[1][0];if(i&31||n&2&&i&32){var a=Object.getOwnPropertyDescriptor(o,t)||{},u=a.get,l=a.set;if(u)r.L[t][0]|=2048;if(l)r.L[t][0]|=4096;if(n&1||!u){Object.defineProperty(o,t,{get:function(){{if((r.L[t][0]&2048)===0){return Ee(this,t)}var e=f(this);var n=e?e.t:o;if(!n)return;return n[t]}},configurable:true,enumerable:true})}Object.defineProperty(o,t,{set:function(e){var a=this;var o=f(this);if(l){var u=i&32?this[t]:o.$hostElement$[t];if(typeof u==="undefined"&&o.u.get(t)){e=o.u.get(t)}else if(!o.u.get(t)&&u){o.u.set(t,u)}l.apply(this,[I(e,i)]);e=i&32?this[t]:o.$hostElement$[t];Te(this,t,e,r);return}{if((n&1)===0||(r.L[t][0]&4096)===0){Te(this,t,e,r);if(n&1&&!o.t){o.l.then((function(){if(r.L[t][0]&4096&&o.t[t]!==o.u.get(t)){o.t[t]=e}}))}return}var s=function(){var n=o.t[t];if(!o.u.get(t)&&n){o.u.set(t,n)}o.t[t]=I(e,i);Te(a,t,o.t[t],r)};if(o.t){s()}else{o.l.then((function(){return s()}))}}}})}}));if(n&1){var l=new Map;o.attributeChangedCallback=function(e,n,t){var a=this;S.jmp((function(){var u;var s=l.get(e);if(a.hasOwnProperty(s)&&i.lazyLoad){t=a[s];delete a[s]}else if(o.hasOwnProperty(s)&&typeof a[s]==="number"&&a[s]==t){return}else if(s==null){var c=f(a);var v=c==null?void 0:c.i;if(v&&!(v&8)&&v&128&&t!==n){var d=c.t;var h=(u=r.P)==null?void 0:u[e];h==null?void 0:h.forEach((function(r){if(d[r]!=null){d[r].call(d,t,n,e)}}))}return}var p=Object.getOwnPropertyDescriptor(o,s);t=t===null&&typeof a[s]==="boolean"?false:t;if(t!==a[s]&&(!p.get||!!p.set)){a[s]=t}}))};e.observedAttributes=Array.from(new Set(__spreadArray(__spreadArray([],Object.keys((a=r.P)!=null?a:{}),true),u.filter((function(e){var r=e[0],n=e[1];return n[0]&15})).map((function(e){var n=e[0],t=e[1];var i;var a=t[1]||n;l.set(a,n);if(t[0]&512){(i=r.T)==null?void 0:i.push([n,a])}return a})),true)))}}return e};var Me=function(e,r,t,i){return __awaiter(n,void 0,void 0,(function(){var n,i,a,o,f,u,l,s,v,p,m;return __generator(this,(function(y){switch(y.label){case 0:if(!((r.i&32)===0))return[3,6];r.i|=32;i=t.p;if(!i)return[3,4];a=d(t,r);if(!(a&&"then"in a))return[3,2];o=W();return[4,a];case 1:n=y.sent();o();return[3,3];case 2:n=a;y.label=3;case 3:if(!n){throw new Error('Constructor for "'.concat(t.h,"#").concat(r.R,'" was not found'))}if(!n.isProxied){{t.P=n.watchers}De(n,t,2);n.isProxied=true}f=U("createInstance",t.h);{r.i|=8}try{new n(r)}catch(r){c(r,e)}{r.i&=~8}{r.i|=128}f();Le(r.t,e);return[3,5];case 4:n=e.constructor;u=e.localName;customElements.whenDefined(u).then((function(){return r.i|=128}));y.label=5;case 5:if(n&&n.style){l=void 0;if(typeof n.style==="string"){l=n.style}s=Z(t);if(!h.has(s)){v=U("registerStyles",t.h);X(s,l,!!(t.i&1));v()}}y.label=6;case 6:p=r.M;m=function(){return Se(r,true)};if(p&&p["s-rc"]){p["s-rc"].push(m)}else{m()}return[2]}}))}))};var Le=function(e,r){{Oe(e,"connectedCallback",void 0,r)}};var Pe=function(e){if((S.i&1)===0){var r=f(e);var n=r.o;var t=U("connectedCallback",n.h);if(!(r.i&1)){r.i|=1;{var i=e;while(i=i.parentNode||i.host){if(i["s-p"]){we(r,r.M=i);break}}}if(n.L){Object.entries(n.L).map((function(r){var n=r[0],t=r[1][0];if(t&31&&e.hasOwnProperty(n)){var i=e[n];delete e[n];e[n]=i}}))}{Me(e,r,n)}}else{if(r==null?void 0:r.t){Le(r.t,e)}else if(r==null?void 0:r.l){r.l.then((function(){return Le(r.t,e)}))}}t()}};var Re=function(e,r){{Oe(e,"disconnectedCallback",void 0,r||e)}};var Fe=function(e){return __awaiter(n,void 0,void 0,(function(){var r;return __generator(this,(function(n){if((S.i&1)===0){r=f(e);if(r==null?void 0:r.t){Re(r.t,e)}else if(r==null?void 0:r.l){r.l.then((function(){return Re(r.t,e)}))}}if(K.has(e)){K.delete(e)}if(e.shadowRoot&&K.has(e.shadowRoot)){K.delete(e.shadowRoot)}return[2]}))}))};var Ne=e("b",(function(e,r){if(r===void 0){r={}}var n;if(!w.document){console.warn("Stencil: No document found. Skipping bootstrapping lazy components.");return}var t=U();var i=[];var a=r.exclude||[];var o=w.customElements;var u=w.document.head;var s=u.querySelector("meta[charset]");var c=w.document.createElement("style");var v=[];var d;var h=true;Object.assign(S,r);S.m=new URL(r.resourcesUrl||"./",w.document.baseURI).href;var p=false;e.map((function(e){e[1].map((function(r){var n;var t={i:r[0],h:r[1],L:r[2],F:r[3]};if(t.i&4){p=true}{t.L=r[2]}{t.T=[]}{t.P=(n=r[4])!=null?n:{}}var u=t.h;var s=function(e){__extends(r,e);function r(r){var n=e.call(this,r)||this;n.hasRegisteredEventListeners=false;r=n;l(r,t);if(t.i&1){{if(!r.shadowRoot){{r.attachShadow({mode:"open"})}}else{if(r.shadowRoot.mode!=="open"){throw new Error("Unable to re-use existing shadow root for ".concat(t.h,"! Mode is set to ").concat(r.shadowRoot.mode," but Stencil only supports open shadow roots."))}}}}return n}r.prototype.connectedCallback=function(){var e=this;f(this);if(!this.hasRegisteredEventListeners){this.hasRegisteredEventListeners=true}if(d){clearTimeout(d);d=null}if(h){v.push(this)}else{S.jmp((function(){return Pe(e)}))}};r.prototype.disconnectedCallback=function(){var e=this;S.jmp((function(){return Fe(e)}));S.raf((function(){var r;var n=f(e);var t=v.findIndex((function(r){return r===e}));if(t>-1){v.splice(t,1)}if(((r=n==null?void 0:n.O)==null?void 0:r.C)instanceof Node&&!n.O.C.isConnected){delete n.O.C}}))};r.prototype.componentOnReady=function(){return f(this).l};return r}(HTMLElement);if(t.i&64){s.formAssociated=true}t.p=e[0];if(!a.includes(u)&&!o.get(u)){i.push(u);o.define(u,De(s,t,1))}}))}));if(i.length>0){if(p){c.textContent+=y}{c.textContent+=i.sort()+m}if(c.innerHTML.length){c.setAttribute("data-styles","");var b=(n=S.A)!=null?n:D(w.document);if(b!=null){c.setAttribute("nonce",b)}u.insertBefore(c,s?s.nextSibling:u.firstChild)}}h=false;if(v.length){v.map((function(e){return e.connectedCallback()}))}else{{S.jmp((function(){return d=setTimeout(Ae,30)}))}}t()}));var Ue=e("s",(function(e){return S.A=e}))}}}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-7315ada7.system.js"],(function(t){"use strict";var e,a,r,i,d;return{setters:[function(t){e=t.r;a=t.c;r=t.h;i=t.H;d=t.g}],execute:function(){var n='@-webkit-keyframes focus-bounce{0%,75%,100%{outline-offset:var(--magma-outline-focus-offset, 6px)}50%{outline-offset:var(--magma-outline-blur-offset, 2px)}}@keyframes focus-bounce{0%,75%,100%{outline-offset:var(--magma-outline-focus-offset, 6px)}50%{outline-offset:var(--magma-outline-blur-offset, 2px)}}@tailwind components; :host{--mds-input-range-thumb-size:1rem;--mds-input-range-thumb-background:rgb(var(--variant-primary-04));--mds-input-range-thumb-shadow:0 0 0 2px rgb(var(--tone-neutral));--mds-input-range-track-background:rgb(var(--tone-neutral-08));--mds-input-range-track-size:0.5rem;--mds-input-range-track-progress-background:rgb(var(--variant-primary-03));--mds-input-range-thumb-background-disabled:rgb(var(--tone-neutral-06));--mds-input-range-track-background-disabled:rgb(var(--tone-neutral-08));--mds-input-range-track-progress-background-disabled:rgb(var(--tone-neutral-06));gap:0.25rem;-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);display:grid;-webkit-transition-property:color;transition-property:color}.header{gap:0.5rem;display:-ms-flexbox;display:flex}.label{min-width:0rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.value{margin-left:auto}.range{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:var(--mds-input-range-thumb-size);position:relative}.track{width:100%;--margin:calc(var(--mds-input-range-track-size) / 2);-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 var(--margin);position:absolute}.field{-webkit-animation-duration:var(--magma-outline-animation-duration, 1s);animation-duration:var(--magma-outline-animation-duration, 1s);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:focus-bounce;animation-name:focus-bounce;-webkit-animation-play-state:paused;animation-play-state:paused;-webkit-animation-timing-function:cubic-bezier(0, 0, 0.2, 1);animation-timing-function:cubic-bezier(0, 0, 0.2, 1);outline:var(--magma-outline-blur);-webkit-transition-duration:200ms;transition-duration:200ms;-webkit-transition-property:background-color, border-color, color, fill, outline, outline-offset, -webkit-box-shadow, -webkit-transform;transition-property:background-color, border-color, color, fill, outline, outline-offset, -webkit-box-shadow, -webkit-transform;transition-property:background-color, border-color, box-shadow, color, fill, outline, outline-offset, transform;transition-property:background-color, border-color, box-shadow, color, fill, outline, outline-offset, transform, -webkit-box-shadow, -webkit-transform;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.field:focus-visible{--magma-outline-blur:var(--magma-outline-focus);-webkit-animation-play-state:running;animation-play-state:running}.field{z-index:20;height:1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:1000px;-ms-flex-positive:1;flex-grow:1;margin:0}.field:focus-visible{--magma-outline-blur:var(--magma-outline-focus);-webkit-animation-play-state:running;animation-play-state:running}.field::-webkit-slider-thumb{-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-appearance:none;appearance:none;background-color:var(--mds-input-range-thumb-background);border:0;border-radius:var(--mds-input-range-thumb-size);-webkit-box-shadow:var(--mds-input-range-thumb-shadow);box-shadow:var(--mds-input-range-thumb-shadow);cursor:-webkit-grab;cursor:grab;height:var(--mds-input-range-thumb-size);line-height:0;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);-webkit-transition-property:background-color, box-shadow;-webkit-transition-property:background-color, -webkit-box-shadow;transition-property:background-color, -webkit-box-shadow;transition-property:background-color, box-shadow;transition-property:background-color, box-shadow, -webkit-box-shadow;width:var(--mds-input-range-thumb-size)}.field::-webkit-slider-runnable-track{-webkit-appearance:none;appearance:none;border:0;height:0;width:100%}.track-progress{-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mds-input-range-track-progress-background);display:-ms-flexbox;display:flex;height:var(--mds-input-range-track-size);-webkit-transition-property:background-color;transition-property:background-color}.track-total{-webkit-transition-duration:300ms;transition-duration:300ms;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mds-input-range-track-background);border-radius:var(--mds-input-range-track-size);display:-ms-flexbox;display:flex;height:var(--mds-input-range-track-size);overflow:hidden;-webkit-transition-property:background-color;transition-property:background-color;width:100%}.contrast-area{margin-left:0.25rem;margin-right:0.25rem;border-radius:var(--mds-input-range-track-size)}:host([disabled]:not([disabled="false"])){--mds-input-range-thumb-background:var(--mds-input-range-thumb-background-disabled);--mds-input-range-track-background:var(--mds-input-range-track-background-disabled);--mds-input-range-track-progress-background:var(--mds-input-range-track-progress-background-disabled)}:host([disabled]:not([disabled="false"])) .field::-webkit-slider-thumb{cursor:not-allowed}:host-context(.pref-animation-reduce),:host-context(.pref-animation-reduce) .field::-webkit-slider-thumb,:host-context(.pref-animation-reduce) .field::-webkit-slider-runnable-track,:host-context(.pref-animation-reduce) .track-progress,:host-context(.pref-animation-reduce) .track-total{-webkit-transition-duration:0s;transition-duration:0s}@media (prefers-reduced-motion){:host-context(.pref-animation-system),:host-context(.pref-animation-system) .field::-webkit-slider-thumb,:host-context(.pref-animation-system) .field::-webkit-slider-runnable-track,:host-context(.pref-animation-system) .track-progress,:host-context(.pref-animation-system) .track-total{-webkit-transition-duration:0s;transition-duration:0s}}:host-context(.pref-theme-dark){--mds-input-range-thumb-background:rgb(var(--variant-primary-04));--mds-input-range-track-background:rgb(var(--tone-neutral-07));--mds-input-range-track-progress-background:rgb(var(--variant-primary-05))}@media (prefers-color-scheme: dark){:host-context(.pref-theme-system){--mds-input-range-thumb-background:rgb(var(--variant-primary-04));--mds-input-range-track-background:rgb(var(--tone-neutral-07));--mds-input-range-track-progress-background:rgb(var(--variant-primary-05))}}:host-context(.pref-contrast-more){color:rgb(var(--tone-neutral-01))}@media (prefers-contrast: more){:host-context(.pref-contrast-system){color:rgb(var(--tone-neutral-01))}}:host(:not(:is([hydrated],.hydrated))){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}mds-accordion:not(:is([hydrated],.hydrated)),mds-accordion-item:not(:is([hydrated],.hydrated)),mds-accordion-timer:not(:is([hydrated],.hydrated)),mds-accordion-timer-item:not(:is([hydrated],.hydrated)),mds-author:not(:is([hydrated],.hydrated)),mds-avatar:not(:is([hydrated],.hydrated)),mds-badge:not(:is([hydrated],.hydrated)),mds-banner:not(:is([hydrated],.hydrated)),mds-benchmark-bar:not(:is([hydrated],.hydrated)),mds-bibliography:not(:is([hydrated],.hydrated)),mds-breadcrumb:not(:is([hydrated],.hydrated)),mds-breadcrumb-item:not(:is([hydrated],.hydrated)),mds-button:not(:is([hydrated],.hydrated)),mds-card:not(:is([hydrated],.hydrated)),mds-card-content:not(:is([hydrated],.hydrated)),mds-card-footer:not(:is([hydrated],.hydrated)),mds-card-header:not(:is([hydrated],.hydrated)),mds-card-media:not(:is([hydrated],.hydrated)),mds-chip:not(:is([hydrated],.hydrated)),mds-details:not(:is([hydrated],.hydrated)),mds-dropdown:not(:is([hydrated],.hydrated)),mds-entity:not(:is([hydrated],.hydrated)),mds-file:not(:is([hydrated],.hydrated)),mds-file-preview:not(:is([hydrated],.hydrated)),mds-filter:not(:is([hydrated],.hydrated)),mds-filter-item:not(:is([hydrated],.hydrated)),mds-header:not(:is([hydrated],.hydrated)),mds-header-bar:not(:is([hydrated],.hydrated)),mds-help:not(:is([hydrated],.hydrated)),mds-horizontal-scroll:not(:is([hydrated],.hydrated)),mds-hr:not(:is([hydrated],.hydrated)),mds-icon:not(:is([hydrated],.hydrated)),mds-img:not(:is([hydrated],.hydrated)),mds-input:not(:is([hydrated],.hydrated)),mds-input-field:not(:is([hydrated],.hydrated)),mds-input-range:not(:is([hydrated],.hydrated)),mds-input-select:not(:is([hydrated],.hydrated)),mds-input-switch:not(:is([hydrated],.hydrated)),mds-input-tip:not(:is([hydrated],.hydrated)),mds-input-tip-item:not(:is([hydrated],.hydrated)),mds-input-upload:not(:is([hydrated],.hydrated)),mds-keyboard:not(:is([hydrated],.hydrated)),mds-keyboard-key:not(:is([hydrated],.hydrated)),mds-kpi:not(:is([hydrated],.hydrated)),mds-kpi-item:not(:is([hydrated],.hydrated)),mds-label:not(:is([hydrated],.hydrated)),mds-list:not(:is([hydrated],.hydrated)),mds-list-item:not(:is([hydrated],.hydrated)),mds-modal:not(:is([hydrated],.hydrated)),mds-note:not(:is([hydrated],.hydrated)),mds-notification:not(:is([hydrated],.hydrated)),mds-paginator:not(:is([hydrated],.hydrated)),mds-paginator-item:not(:is([hydrated],.hydrated)),mds-pref:not(:is([hydrated],.hydrated)),mds-pref-animation:not(:is([hydrated],.hydrated)),mds-pref-consumption:not(:is([hydrated],.hydrated)),mds-pref-contrast:not(:is([hydrated],.hydrated)),mds-pref-language:not(:is([hydrated],.hydrated)),mds-pref-language-item:not(:is([hydrated],.hydrated)),mds-pref-theme:not(:is([hydrated],.hydrated)),mds-price-table:not(:is([hydrated],.hydrated)),mds-price-table-features:not(:is([hydrated],.hydrated)),mds-price-table-features-cell:not(:is([hydrated],.hydrated)),mds-price-table-features-row:not(:is([hydrated],.hydrated)),mds-price-table-header:not(:is([hydrated],.hydrated)),mds-price-table-list:not(:is([hydrated],.hydrated)),mds-price-table-list-item:not(:is([hydrated],.hydrated)),mds-progress:not(:is([hydrated],.hydrated)),mds-push-notification:not(:is([hydrated],.hydrated)),mds-push-notifications:not(:is([hydrated],.hydrated)),mds-quote:not(:is([hydrated],.hydrated)),mds-separator:not(:is([hydrated],.hydrated)),mds-spinner:not(:is([hydrated],.hydrated)),mds-stepper-bar:not(:is([hydrated],.hydrated)),mds-stepper-bar-item:not(:is([hydrated],.hydrated)),mds-tab:not(:is([hydrated],.hydrated)),mds-tab-bar:not(:is([hydrated],.hydrated)),mds-tab-bar-item:not(:is([hydrated],.hydrated)),mds-tab-item:not(:is([hydrated],.hydrated)),mds-table:not(:is([hydrated],.hydrated)),mds-table-body:not(:is([hydrated],.hydrated)),mds-table-cell:not(:is([hydrated],.hydrated)),mds-table-footer:not(:is([hydrated],.hydrated)),mds-table-header:not(:is([hydrated],.hydrated)),mds-table-header-cell:not(:is([hydrated],.hydrated)),mds-table-row:not(:is([hydrated],.hydrated)),mds-text:not(:is([hydrated],.hydrated)),mds-toast:not(:is([hydrated],.hydrated)),mds-tooltip:not(:is([hydrated],.hydrated)),mds-tree:not(:is([hydrated],.hydrated)),mds-tree-item:not(:is([hydrated],.hydrated)),mds-url-view:not(:is([hydrated],.hydrated)),mds-usage:not(:is([hydrated],.hydrated)),mds-video-wall:not(:is([hydrated],.hydrated)),mds-zero:not(:is([hydrated],.hydrated)){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}';var o=n;var s=t("mds_input_range",function(){function t(t){var r=this;e(this,t);this.changeEvent=a(this,"mdsInputRangeChange",7);if(t.$hostElement$["s-ei"]){this.internals=t.$hostElement$["s-ei"]}else{this.internals=t.$hostElement$.attachInternals();t.$hostElement$["s-ei"]=this.internals}this.max=100;this.min=0;this.step=1;this.onInput=function(){if(Number.isNaN(r.inputElement.value))throw Error("Entered value ".concat(r.inputElement.value," is not a Number"));r.value=Number(r.inputElement.value)}}t.prototype.calculateProgress=function(){var t=Number(this.inputElement.value);var e=Math.pow(10,this.decimalPlaces);if(t>this.max)t=this.max;else if(t<this.min)t=this.min;if((t-this.min)*e%(this.step*e)!==0){t=(Math.round((t*e-this.min*e)/(this.step*e))*(this.step*e)+this.min*e)/e}this.value=t;this.internals.setFormValue(this.value.toString());var a=this.max-this.min;var r=this.value-this.min;this.progress=r/a*100};t.prototype.countDecimals=function(t){if(Math.floor(t)===t)return 0;return t.toString().split(".")[1].length||0};t.prototype.disabledChanged=function(t){if(t){this.internals.setFormValue(null)}};t.prototype.valueChanged=function(t,e){if(t===e)return;this.inputElement.value=this.value.toString();this.calculateProgress();this.changeEvent.emit(this.value)};t.prototype.minChanged=function(){this.calculateProgress()};t.prototype.maxChanged=function(){this.calculateProgress()};t.prototype.stepChanged=function(){if(this.step<=0)throw Error("step cant be negative or zero");this.decimalPlaces=this.countDecimals(this.step);this.calculateProgress()};t.prototype.formResetCallback=function(){this.internals.setFormValue("")};t.prototype.componentDidLoad=function(){var t;this.decimalPlaces=this.countDecimals(this.step);this.onInput();this.label=(t=this.element.textContent)!==null&&t!==void 0?t:"";this.calculateProgress()};t.prototype.render=function(){var t=this;return r(i,{key:"c7f40ef34fa414e4f99881e815fa805dfc089667"},r("header",{key:"285c789e06277c9f0f2068b4a49036faf29dd70b",class:"header",part:"header"},r("mds-text",{key:"485ff525a7fbca6e7a7e121bde7f44ad193bd880",class:"label",typography:"label"},r("slot",{key:"3147cbc8b650bfa3fd87f69f6356687ccdc38024"})),r("mds-text",{key:"c1bafcdfb7d5beda33473240b95a9f733ed7c8b9",class:"value",typography:"label"},this.formatValue?this.formatValue(this.value):this.value)),r("div",{key:"26043966f0e431585aea5b453231591ebfec5dff",class:"range"},r("div",{key:"291fa31c69d3a2a34d4eb14aeab1a9cb51f7bcb3",class:"track"},r("div",{key:"8ee7c29eef91b226bbfe96abe62e95fad2094e7a",class:"contrast-area"}),r("div",{key:"d3e4433931276f474ebe24893826da680f17d541",class:"track-total"},r("div",{key:"87fa236d8538776e5a3372239307032de90e8e91",class:"track-progress",style:{width:"".concat(this.progress,"%")}}))),r("input",{key:"0eb811c18c9e9fe81d5df4e5ce019e800aad75e2",ref:function(e){return t.inputElement=e},class:"field","aria-label":this.label,disabled:this.disabled,max:this.max,min:this.min,onInput:this.onInput,step:this.step,type:"range",value:this.value})))};Object.defineProperty(t,"formAssociated",{get:function(){return true},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"element",{get:function(){return d(this)},enumerable:false,configurable:true});Object.defineProperty(t,"watchers",{get:function(){return{disabled:["disabledChanged"],value:["valueChanged"],min:["minChanged"],max:["maxChanged"],step:["stepChanged"]}},enumerable:false,configurable:true});return t}());s.style=o}}}));
|
package/src/fixtures/icons.json
DELETED
|
@@ -1,473 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
"mdi/alien",
|
|
3
|
-
"mdi/apple",
|
|
4
|
-
"mdi/apple-keyboard-shift",
|
|
5
|
-
"mdi/barley",
|
|
6
|
-
"mdi/baseball",
|
|
7
|
-
"mdi/crown",
|
|
8
|
-
"mdi/delete",
|
|
9
|
-
"mdi/email",
|
|
10
|
-
"mdi/eye-off-outline",
|
|
11
|
-
"mdi/file-document-remove-outline",
|
|
12
|
-
"mdi/file-download-outline",
|
|
13
|
-
"mdi/file-upload-outline",
|
|
14
|
-
"mdi/folder-open",
|
|
15
|
-
"mdi/handshake",
|
|
16
|
-
"mdi/harddisk",
|
|
17
|
-
"mdi/keyboard-space",
|
|
18
|
-
"mdi/license",
|
|
19
|
-
"mdi/map-marker",
|
|
20
|
-
"mdi/npm",
|
|
21
|
-
"mdi/numeric-1",
|
|
22
|
-
"mdi/numeric-2",
|
|
23
|
-
"mdi/numeric-3",
|
|
24
|
-
"mdi/numeric-4",
|
|
25
|
-
"mdi/numeric-5",
|
|
26
|
-
"mdi/numeric-6",
|
|
27
|
-
"mdi/numeric-7",
|
|
28
|
-
"mdi/numeric-8",
|
|
29
|
-
"mdi/replay",
|
|
30
|
-
"mdi/vector-curve",
|
|
31
|
-
"mgg/abitazione-principale",
|
|
32
|
-
"mgg/action-email-overlay-progress-10",
|
|
33
|
-
"mgg/action-email-overlay-progress-90",
|
|
34
|
-
"mgg/action-email-send-wait",
|
|
35
|
-
"mgg/action-email-send-warning",
|
|
36
|
-
"mgg/action-hide-down-side",
|
|
37
|
-
"mgg/action-hide-left-side",
|
|
38
|
-
"mgg/action-hide-right-side",
|
|
39
|
-
"mgg/action-hide-sidebar-left",
|
|
40
|
-
"mgg/action-hide-sidebar-right",
|
|
41
|
-
"mgg/action-show-down-side",
|
|
42
|
-
"mgg/action-show-left-side",
|
|
43
|
-
"mgg/action-show-right-side",
|
|
44
|
-
"mgg/action-show-sidebar-left",
|
|
45
|
-
"mgg/action-show-sidebar-right",
|
|
46
|
-
"mgg/activation-key",
|
|
47
|
-
"mgg/activity-list",
|
|
48
|
-
"mgg/add-document-settings",
|
|
49
|
-
"mgg/additional-contents",
|
|
50
|
-
"mgg/address-book-off",
|
|
51
|
-
"mgg/address-book-on",
|
|
52
|
-
"mgg/adv-denied",
|
|
53
|
-
"mgg/ai-brain",
|
|
54
|
-
"mgg/ai-brain-outline",
|
|
55
|
-
"mgg/ai-chatbot",
|
|
56
|
-
"mgg/ai-chatbot-outline",
|
|
57
|
-
"mgg/ai-human",
|
|
58
|
-
"mgg/ai-message",
|
|
59
|
-
"mgg/ai-outline",
|
|
60
|
-
"mgg/ai-status-completed",
|
|
61
|
-
"mgg/ai-status-error",
|
|
62
|
-
"mgg/ai-status-processing",
|
|
63
|
-
"mgg/ai-status-suspended",
|
|
64
|
-
"mgg/alerts-pagopa",
|
|
65
|
-
"mgg/anagrafe-nazionale",
|
|
66
|
-
"mgg/anist",
|
|
67
|
-
"mgg/anpr",
|
|
68
|
-
"mgg/ansc",
|
|
69
|
-
"mgg/area-edificabile",
|
|
70
|
-
"mgg/area-weather",
|
|
71
|
-
"mgg/assignments-accept-rejection",
|
|
72
|
-
"mgg/assignments-acceptance-accepted",
|
|
73
|
-
"mgg/assignments-assignment",
|
|
74
|
-
"mgg/assignments-competence",
|
|
75
|
-
"mgg/assignments-completed",
|
|
76
|
-
"mgg/assignments-rejected",
|
|
77
|
-
"mgg/assignments-sorted",
|
|
78
|
-
"mgg/auto-awesome-motion",
|
|
79
|
-
"mgg/back-to-document",
|
|
80
|
-
"mgg/balance",
|
|
81
|
-
"mgg/bill",
|
|
82
|
-
"mgg/box-multiple",
|
|
83
|
-
"mgg/breadcrumb",
|
|
84
|
-
"mgg/bus-stops",
|
|
85
|
-
"mgg/calendar-euro",
|
|
86
|
-
"mgg/calendar-multiple",
|
|
87
|
-
"mgg/calendar-schedule",
|
|
88
|
-
"mgg/cancelled-sheet",
|
|
89
|
-
"mgg/car-license",
|
|
90
|
-
"mgg/card-stamping",
|
|
91
|
-
"mgg/cash-register-settings",
|
|
92
|
-
"mgg/check-small",
|
|
93
|
-
"mgg/checklist",
|
|
94
|
-
"mgg/checklist-settings",
|
|
95
|
-
"mgg/citizenship",
|
|
96
|
-
"mgg/city-bin",
|
|
97
|
-
"mgg/classic-permission",
|
|
98
|
-
"mgg/consumption-high",
|
|
99
|
-
"mgg/consumption-low",
|
|
100
|
-
"mgg/consumption-medium",
|
|
101
|
-
"mgg/copy-paste",
|
|
102
|
-
"mgg/d-instrumental-buildings",
|
|
103
|
-
"mgg/data-analytics-alt",
|
|
104
|
-
"mgg/data-analytics-search",
|
|
105
|
-
"mgg/data-analytics-time",
|
|
106
|
-
"mgg/data-category-alt",
|
|
107
|
-
"mgg/data-civil-union",
|
|
108
|
-
"mgg/data-cleaning",
|
|
109
|
-
"mgg/data-death-civil-union",
|
|
110
|
-
"mgg/data-death-marriage",
|
|
111
|
-
"mgg/data-end-civil-union",
|
|
112
|
-
"mgg/data-end-marriage",
|
|
113
|
-
"mgg/dataset",
|
|
114
|
-
"mgg/delivered-to-the-recipient",
|
|
115
|
-
"mgg/document-euro",
|
|
116
|
-
"mgg/document-less",
|
|
117
|
-
"mgg/document-magic",
|
|
118
|
-
"mgg/document-rename",
|
|
119
|
-
"mgg/download-csv",
|
|
120
|
-
"mgg/download-html",
|
|
121
|
-
"mgg/download-json",
|
|
122
|
-
"mgg/edit-article",
|
|
123
|
-
"mgg/electronic-document",
|
|
124
|
-
"mgg/email-assigned",
|
|
125
|
-
"mgg/email-open-blocked",
|
|
126
|
-
"mgg/email-open-check",
|
|
127
|
-
"mgg/email-open-lock",
|
|
128
|
-
"mgg/email-open-off",
|
|
129
|
-
"mgg/email-open-play",
|
|
130
|
-
"mgg/email-open-stop",
|
|
131
|
-
"mgg/email-open-user",
|
|
132
|
-
"mgg/email-open-view",
|
|
133
|
-
"mgg/email-to-assign",
|
|
134
|
-
"mgg/face-to-face-meeting",
|
|
135
|
-
"mgg/factory",
|
|
136
|
-
"mgg/farmer",
|
|
137
|
-
"mgg/field",
|
|
138
|
-
"mgg/file-certificate",
|
|
139
|
-
"mgg/file-clock",
|
|
140
|
-
"mgg/file-download",
|
|
141
|
-
"mgg/file-folder-tree",
|
|
142
|
-
"mgg/file-folder-tree-open",
|
|
143
|
-
"mgg/file-html",
|
|
144
|
-
"mgg/file-import",
|
|
145
|
-
"mgg/file-odt",
|
|
146
|
-
"mgg/file-rtf",
|
|
147
|
-
"mgg/file-settings-alt",
|
|
148
|
-
"mgg/file-stack",
|
|
149
|
-
"mgg/file-stack-alt",
|
|
150
|
-
"mgg/file-sub",
|
|
151
|
-
"mgg/file-type-document-attachment",
|
|
152
|
-
"mgg/file-type-document-multiple-attachment",
|
|
153
|
-
"mgg/file-type-document-rubber-stamp",
|
|
154
|
-
"mgg/file-type-home",
|
|
155
|
-
"mgg/file-type-pdf",
|
|
156
|
-
"mgg/file-type-success",
|
|
157
|
-
"mgg/file-type-warning",
|
|
158
|
-
"mgg/file-xml",
|
|
159
|
-
"mgg/finance-euro-cashback",
|
|
160
|
-
"mgg/fit-horizontal",
|
|
161
|
-
"mgg/fit-vertical",
|
|
162
|
-
"mgg/fontawesome-torii-gate",
|
|
163
|
-
"mgg/forwarded-with-a-single-sending",
|
|
164
|
-
"mgg/fullscreen-on-alt",
|
|
165
|
-
"mgg/google-book-closed",
|
|
166
|
-
"mgg/google-book-closed-outline",
|
|
167
|
-
"mgg/google-book-large",
|
|
168
|
-
"mgg/google-book-large-outline",
|
|
169
|
-
"mgg/google-book-opening",
|
|
170
|
-
"mgg/google-book-opening-outline",
|
|
171
|
-
"mgg/google-check-small",
|
|
172
|
-
"mgg/google-drag-pan",
|
|
173
|
-
"mgg/google-experiment",
|
|
174
|
-
"mgg/google-face-retouching-off",
|
|
175
|
-
"mgg/google-hub",
|
|
176
|
-
"mgg/google-keyboard-double-arrow-down",
|
|
177
|
-
"mgg/google-keyboard-double-arrow-up",
|
|
178
|
-
"mgg/google-newsstand",
|
|
179
|
-
"mgg/google-place-item",
|
|
180
|
-
"mgg/group-assigned-automatically-system",
|
|
181
|
-
"mgg/group-ceased",
|
|
182
|
-
"mgg/group-inherited",
|
|
183
|
-
"mgg/heart",
|
|
184
|
-
"mgg/heart-outline",
|
|
185
|
-
"mgg/historic-building",
|
|
186
|
-
"mgg/historic-building-unusable",
|
|
187
|
-
"mgg/home-hammer",
|
|
188
|
-
"mgg/home-link",
|
|
189
|
-
"mgg/home-number",
|
|
190
|
-
"mgg/inad",
|
|
191
|
-
"mgg/inagibile",
|
|
192
|
-
"mgg/inps",
|
|
193
|
-
"mgg/input-calendar-costs",
|
|
194
|
-
"mgg/input-calendar-period",
|
|
195
|
-
"mgg/input-calendar-time",
|
|
196
|
-
"mgg/instrumental-buildings",
|
|
197
|
-
"mgg/internationalization-add",
|
|
198
|
-
"mgg/internationalization-check",
|
|
199
|
-
"mgg/internationalization-delete",
|
|
200
|
-
"mgg/isbn",
|
|
201
|
-
"mgg/judge-hammer",
|
|
202
|
-
"mgg/land-registry",
|
|
203
|
-
"mgg/layers",
|
|
204
|
-
"mgg/liquidated-document",
|
|
205
|
-
"mgg/list-dot",
|
|
206
|
-
"mgg/logo-girasole-camuno",
|
|
207
|
-
"mgg/logo-gpl",
|
|
208
|
-
"mgg/logo-ilibro",
|
|
209
|
-
"mgg/map-marker-settings",
|
|
210
|
-
"mgg/masks-office",
|
|
211
|
-
"mgg/mdi-binoculars",
|
|
212
|
-
"mgg/mdi-graph-outline",
|
|
213
|
-
"mgg/mdi-microscope",
|
|
214
|
-
"mgg/mdi-telescope",
|
|
215
|
-
"mgg/military-draft",
|
|
216
|
-
"mgg/money-bag-settings",
|
|
217
|
-
"mgg/money-on-hand",
|
|
218
|
-
"mgg/money-paid",
|
|
219
|
-
"mgg/move-down",
|
|
220
|
-
"mgg/move-left",
|
|
221
|
-
"mgg/move-right",
|
|
222
|
-
"mgg/move-row-down",
|
|
223
|
-
"mgg/move-row-up",
|
|
224
|
-
"mgg/move-up",
|
|
225
|
-
"mgg/multiple-payments",
|
|
226
|
-
"mgg/national-document",
|
|
227
|
-
"mgg/national-document-off",
|
|
228
|
-
"mgg/not-instrumental-d-buildings",
|
|
229
|
-
"mgg/not-sent-yet",
|
|
230
|
-
"mgg/office-off",
|
|
231
|
-
"mgg/order-return-down-left-to-right",
|
|
232
|
-
"mgg/order-return-down-left-to-up",
|
|
233
|
-
"mgg/order-return-down-right-to-left",
|
|
234
|
-
"mgg/order-return-down-right-to-up",
|
|
235
|
-
"mgg/order-return-up-left-to-down",
|
|
236
|
-
"mgg/order-return-up-left-to-right",
|
|
237
|
-
"mgg/order-return-up-right-to-down",
|
|
238
|
-
"mgg/order-return-up-right-to-left",
|
|
239
|
-
"mgg/order-zigzag-down-left-to-right",
|
|
240
|
-
"mgg/order-zigzag-down-left-to-up",
|
|
241
|
-
"mgg/order-zigzag-down-right-to-left",
|
|
242
|
-
"mgg/order-zigzag-down-right-to-up",
|
|
243
|
-
"mgg/order-zigzag-up-left-to-down",
|
|
244
|
-
"mgg/order-zigzag-up-left-to-right",
|
|
245
|
-
"mgg/order-zigzag-up-right-to-down",
|
|
246
|
-
"mgg/order-zigzag-up-right-to-left",
|
|
247
|
-
"mgg/other-properties",
|
|
248
|
-
"mgg/other-properties-off",
|
|
249
|
-
"mgg/other-residential-buildings",
|
|
250
|
-
"mgg/pagopa",
|
|
251
|
-
"mgg/partial-wall",
|
|
252
|
-
"mgg/payment-settings",
|
|
253
|
-
"mgg/pec-handshake",
|
|
254
|
-
"mgg/pec-ok",
|
|
255
|
-
"mgg/pec-sent-to-the-not-pec-recipient",
|
|
256
|
-
"mgg/places-green",
|
|
257
|
-
"mgg/places-green-doc",
|
|
258
|
-
"mgg/places-green-history",
|
|
259
|
-
"mgg/places-green-info",
|
|
260
|
-
"mgg/places-holiday-beach",
|
|
261
|
-
"mgg/places-market",
|
|
262
|
-
"mgg/places-park",
|
|
263
|
-
"mgg/places-park-alt",
|
|
264
|
-
"mgg/places-store-access-denied",
|
|
265
|
-
"mgg/pos",
|
|
266
|
-
"mgg/property-owner",
|
|
267
|
-
"mgg/registro-imprese",
|
|
268
|
-
"mgg/relevance",
|
|
269
|
-
"mgg/reporting-abuse",
|
|
270
|
-
"mgg/residency-permit",
|
|
271
|
-
"mgg/robot",
|
|
272
|
-
"mgg/roles-permission",
|
|
273
|
-
"mgg/rubber-stamp",
|
|
274
|
-
"mgg/rurale",
|
|
275
|
-
"mgg/search-maggioli",
|
|
276
|
-
"mgg/send-progress",
|
|
277
|
-
"mgg/sending-error",
|
|
278
|
-
"mgg/session",
|
|
279
|
-
"mgg/settings-attachment",
|
|
280
|
-
"mgg/sign-shop",
|
|
281
|
-
"mgg/square-viewfinder",
|
|
282
|
-
"mgg/stacked-documents",
|
|
283
|
-
"mgg/stamp",
|
|
284
|
-
"mgg/status-progress-a-quarter",
|
|
285
|
-
"mgg/status-progress-complete",
|
|
286
|
-
"mgg/status-progress-half",
|
|
287
|
-
"mgg/status-progress-three-quarter",
|
|
288
|
-
"mgg/stuck-codes",
|
|
289
|
-
"mgg/subtractive-permission",
|
|
290
|
-
"mgg/tea-light",
|
|
291
|
-
"mgg/terminal",
|
|
292
|
-
"mgg/tie",
|
|
293
|
-
"mgg/to-single-document",
|
|
294
|
-
"mgg/to-stacked-documents",
|
|
295
|
-
"mgg/todo",
|
|
296
|
-
"mgg/todo-action-businessman-view",
|
|
297
|
-
"mgg/todo-action-certificate",
|
|
298
|
-
"mgg/todo-action-contract",
|
|
299
|
-
"mgg/todo-action-currency-euro",
|
|
300
|
-
"mgg/todo-action-graduate",
|
|
301
|
-
"mgg/todo-action-graduation-hat",
|
|
302
|
-
"mgg/todo-action-judge",
|
|
303
|
-
"mgg/todo-action-money",
|
|
304
|
-
"mgg/todo-action-protocol",
|
|
305
|
-
"mgg/todo-action-upload",
|
|
306
|
-
"mgg/todo-action-wkf-document-checked",
|
|
307
|
-
"mgg/todo-action-wkf-people-checked",
|
|
308
|
-
"mgg/todo-action-wkf-set-pub-date",
|
|
309
|
-
"mgg/todo-completed",
|
|
310
|
-
"mgg/todo-completed-re-executable",
|
|
311
|
-
"mgg/todo-in-charge-by-me",
|
|
312
|
-
"mgg/todo-in-charge-by-others",
|
|
313
|
-
"mgg/todo-in-evaluation",
|
|
314
|
-
"mgg/todo-in-evaluation-by-others",
|
|
315
|
-
"mgg/todo-incoming-in-charge",
|
|
316
|
-
"mgg/todo-incoming-rejected",
|
|
317
|
-
"mgg/todo-pause",
|
|
318
|
-
"mgg/todo-running-completed",
|
|
319
|
-
"mgg/todo-suspended",
|
|
320
|
-
"mgg/touchpoint-laptop-info",
|
|
321
|
-
"mgg/touchpoint-laptop-search",
|
|
322
|
-
"mgg/traffic-cone",
|
|
323
|
-
"mgg/trending-down",
|
|
324
|
-
"mgg/tribute",
|
|
325
|
-
"mgg/tributes",
|
|
326
|
-
"mgg/urban-city",
|
|
327
|
-
"mgg/user-dead",
|
|
328
|
-
"mgg/user-family",
|
|
329
|
-
"mgg/user-location",
|
|
330
|
-
"mgg/user-location-off",
|
|
331
|
-
"mgg/user-signed-out",
|
|
332
|
-
"mgg/user-substitution",
|
|
333
|
-
"mgg/view-chart-gantt",
|
|
334
|
-
"mgg/view-side-by-side",
|
|
335
|
-
"mgg/vote",
|
|
336
|
-
"mgg/warning-superscript",
|
|
337
|
-
"mgg/web-app-ansc",
|
|
338
|
-
"mgg/work-book",
|
|
339
|
-
"mi/baseline/account-balance",
|
|
340
|
-
"mi/baseline/account-balance-wallet",
|
|
341
|
-
"mi/baseline/add",
|
|
342
|
-
"mi/baseline/add-circle",
|
|
343
|
-
"mi/baseline/adobe",
|
|
344
|
-
"mi/baseline/agriculture",
|
|
345
|
-
"mi/baseline/alternate-email",
|
|
346
|
-
"mi/baseline/animation",
|
|
347
|
-
"mi/baseline/arrow-back",
|
|
348
|
-
"mi/baseline/arrow-back-ios-new",
|
|
349
|
-
"mi/baseline/arrow-forward",
|
|
350
|
-
"mi/baseline/arrow-forward-ios",
|
|
351
|
-
"mi/baseline/attach-file",
|
|
352
|
-
"mi/baseline/attachment",
|
|
353
|
-
"mi/baseline/audiotrack",
|
|
354
|
-
"mi/baseline/auto-awesome",
|
|
355
|
-
"mi/baseline/badge",
|
|
356
|
-
"mi/baseline/block",
|
|
357
|
-
"mi/baseline/book",
|
|
358
|
-
"mi/baseline/border-all",
|
|
359
|
-
"mi/baseline/broken-image",
|
|
360
|
-
"mi/baseline/calendar-today",
|
|
361
|
-
"mi/baseline/call",
|
|
362
|
-
"mi/baseline/cancel",
|
|
363
|
-
"mi/baseline/category",
|
|
364
|
-
"mi/baseline/check",
|
|
365
|
-
"mi/baseline/check-box",
|
|
366
|
-
"mi/baseline/check-box-outline-blank",
|
|
367
|
-
"mi/baseline/check-circle",
|
|
368
|
-
"mi/baseline/chevron-right",
|
|
369
|
-
"mi/baseline/close",
|
|
370
|
-
"mi/baseline/contrast",
|
|
371
|
-
"mi/baseline/css",
|
|
372
|
-
"mi/baseline/dark-mode",
|
|
373
|
-
"mi/baseline/delete",
|
|
374
|
-
"mi/baseline/description",
|
|
375
|
-
"mi/baseline/desk",
|
|
376
|
-
"mi/baseline/directions-run",
|
|
377
|
-
"mi/baseline/directions-walk",
|
|
378
|
-
"mi/baseline/done",
|
|
379
|
-
"mi/baseline/done-all",
|
|
380
|
-
"mi/baseline/downhill-skiing",
|
|
381
|
-
"mi/baseline/draw",
|
|
382
|
-
"mi/baseline/eco",
|
|
383
|
-
"mi/baseline/edit",
|
|
384
|
-
"mi/baseline/email",
|
|
385
|
-
"mi/baseline/error",
|
|
386
|
-
"mi/baseline/expand-more",
|
|
387
|
-
"mi/baseline/explore",
|
|
388
|
-
"mi/baseline/favorite",
|
|
389
|
-
"mi/baseline/favorite-border",
|
|
390
|
-
"mi/baseline/file-download-done",
|
|
391
|
-
"mi/baseline/folder",
|
|
392
|
-
"mi/baseline/folder-zip",
|
|
393
|
-
"mi/baseline/horizontal-rule",
|
|
394
|
-
"mi/baseline/indeterminate-check-box",
|
|
395
|
-
"mi/baseline/info",
|
|
396
|
-
"mi/baseline/insert-drive-file",
|
|
397
|
-
"mi/baseline/ios-share",
|
|
398
|
-
"mi/baseline/keyboard",
|
|
399
|
-
"mi/baseline/keyboard-arrow-down",
|
|
400
|
-
"mi/baseline/keyboard-arrow-left",
|
|
401
|
-
"mi/baseline/keyboard-arrow-right",
|
|
402
|
-
"mi/baseline/keyboard-arrow-up",
|
|
403
|
-
"mi/baseline/keyboard-capslock",
|
|
404
|
-
"mi/baseline/keyboard-command-key",
|
|
405
|
-
"mi/baseline/keyboard-option-key",
|
|
406
|
-
"mi/baseline/keyboard-return",
|
|
407
|
-
"mi/baseline/keyboard-tab",
|
|
408
|
-
"mi/baseline/light-mode",
|
|
409
|
-
"mi/baseline/list-alt",
|
|
410
|
-
"mi/baseline/local-activity",
|
|
411
|
-
"mi/baseline/location-city",
|
|
412
|
-
"mi/baseline/lock-open",
|
|
413
|
-
"mi/baseline/login",
|
|
414
|
-
"mi/baseline/logout",
|
|
415
|
-
"mi/baseline/meeting-room",
|
|
416
|
-
"mi/baseline/more-vert",
|
|
417
|
-
"mi/baseline/navigate-next",
|
|
418
|
-
"mi/baseline/north",
|
|
419
|
-
"mi/baseline/panorama",
|
|
420
|
-
"mi/baseline/person",
|
|
421
|
-
"mi/baseline/pets",
|
|
422
|
-
"mi/baseline/print",
|
|
423
|
-
"mi/baseline/privacy-tip",
|
|
424
|
-
"mi/baseline/radio-button-checked",
|
|
425
|
-
"mi/baseline/radio-button-unchecked",
|
|
426
|
-
"mi/baseline/remove",
|
|
427
|
-
"mi/baseline/remove-circle",
|
|
428
|
-
"mi/baseline/remove-red-eye",
|
|
429
|
-
"mi/baseline/route",
|
|
430
|
-
"mi/baseline/search",
|
|
431
|
-
"mi/baseline/send",
|
|
432
|
-
"mi/baseline/settings",
|
|
433
|
-
"mi/baseline/south",
|
|
434
|
-
"mi/baseline/sports",
|
|
435
|
-
"mi/baseline/sports-soccer",
|
|
436
|
-
"mi/baseline/stadium",
|
|
437
|
-
"mi/baseline/terminal",
|
|
438
|
-
"mi/baseline/text-format",
|
|
439
|
-
"mi/baseline/text-rotate-up",
|
|
440
|
-
"mi/baseline/timer",
|
|
441
|
-
"mi/baseline/tv",
|
|
442
|
-
"mi/baseline/undo",
|
|
443
|
-
"mi/baseline/unfold-less",
|
|
444
|
-
"mi/baseline/unfold-more",
|
|
445
|
-
"mi/baseline/vertical-align-bottom",
|
|
446
|
-
"mi/baseline/vertical-align-top",
|
|
447
|
-
"mi/baseline/videocam",
|
|
448
|
-
"mi/baseline/visibility",
|
|
449
|
-
"mi/baseline/visibility-off",
|
|
450
|
-
"mi/baseline/warning",
|
|
451
|
-
"mi/baseline/warning-amber",
|
|
452
|
-
"mi/baseline/web",
|
|
453
|
-
"mi/baseline/wrap-text",
|
|
454
|
-
"mi/baseline/wysiwyg",
|
|
455
|
-
"mi/outline/auto-awesome",
|
|
456
|
-
"mi/outline/backspace",
|
|
457
|
-
"mi/outline/circle",
|
|
458
|
-
"mi/outline/dark-mode",
|
|
459
|
-
"mi/outline/help-outline",
|
|
460
|
-
"mi/outline/ios-share",
|
|
461
|
-
"mi/outline/mic",
|
|
462
|
-
"mi/outline/mic-off",
|
|
463
|
-
"mi/outline/policy",
|
|
464
|
-
"mi/outline/schedule",
|
|
465
|
-
"mi/outline/thumb-down",
|
|
466
|
-
"mi/outline/thumb-up",
|
|
467
|
-
"mi/round/arrow-circle-down",
|
|
468
|
-
"mi/round/email",
|
|
469
|
-
"mi/round/menu",
|
|
470
|
-
"mi/round/more-vert",
|
|
471
|
-
"mi/round/person",
|
|
472
|
-
"mi/sharp/window"
|
|
473
|
-
]
|
package/www/build/p-155deafe.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
var e=Object.defineProperty,t=e=>{if(e.__stencil__getHostRef)return e.__stencil__getHostRef()},n=(e,t)=>{e.__stencil__getHostRef=()=>t,t.t=e},o=(e,t)=>t in e,l=(e,t)=>(0,console.error)(e,t),s=new Map,i=new Map,r="slot-fb{display:contents}slot-fb[hidden]{display:none}",c=["formAssociatedCallback","formResetCallback","formDisabledCallback","formStateRestoreCallback"],u="undefined"!=typeof window?window:{},a={o:0,l:"",jmp:e=>e(),raf:e=>requestAnimationFrame(e),ael:(e,t,n,o)=>e.addEventListener(t,n,o),rel:(e,t,n,o)=>e.removeEventListener(t,n,o),ce:(e,t)=>new CustomEvent(e,t)},f=e=>Promise.resolve(e),d=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(e){}return!1})(),p=!1,h=[],m=[],y=(e,t)=>n=>{e.push(n),p||(p=!0,t&&4&a.o?w(v):a.raf(v))},b=e=>{for(let t=0;t<e.length;t++)try{e[t](performance.now())}catch(e){l(e)}e.length=0},v=()=>{b(h),b(m),(p=h.length>0)&&a.raf(v)},w=e=>f().then(e),$=y(m,!0),S=e=>"object"==(e=typeof e)||"function"===e;function g(e){var t,n,o;return null!=(o=null==(n=null==(t=e.head)?void 0:t.querySelector('meta[name="csp-nonce"]'))?void 0:n.getAttribute("content"))?o:void 0}((t,n)=>{for(var o in n)e(t,o,{get:n[o],enumerable:!0})})({},{err:()=>k,map:()=>O,ok:()=>j,unwrap:()=>E,unwrapErr:()=>M});var j=e=>({isOk:!0,isErr:!1,value:e}),k=e=>({isOk:!1,isErr:!0,value:e});function O(e,t){if(e.isOk){const n=t(e.value);return n instanceof Promise?n.then((e=>j(e))):j(n)}if(e.isErr)return k(e.value);throw"should never get here"}var C,E=e=>{if(e.isOk)return e.value;throw e.value},M=e=>{if(e.isErr)return e.value;throw e.value},P=(e,t,...n)=>{let o=null,l=null,s=!1,i=!1;const r=[],c=t=>{for(let n=0;n<t.length;n++)o=t[n],Array.isArray(o)?c(o):null!=o&&"boolean"!=typeof o&&((s="function"!=typeof e&&!S(o))&&(o+=""),s&&i?r[r.length-1].i+=o:r.push(s?R(null,o):o),i=s)};if(c(n),t){t.key&&(l=t.key);{const e=t.className||t.class;e&&(t.class="object"!=typeof e?e:Object.keys(e).filter((t=>e[t])).join(" "))}}const u=R(e,null);return u.u=t,r.length>0&&(u.p=r),u.h=l,u},R=(e,t)=>({o:0,m:e,i:t,v:null,p:null,u:null,h:null}),x={},D=(e,t)=>null==e||S(e)?e:4&t?"false"!==e&&(""===e||!!e):2&t?parseFloat(e):e,A=e=>t(e).$hostElement$,U=(e,t,n)=>{const o=A(e);return{emit:e=>W(o,t,{bubbles:!!(4&n),composed:!!(2&n),cancelable:!!(1&n),detail:e})}},W=(e,t,n)=>{const o=a.ce(t,n);return e.dispatchEvent(o),o},N=new WeakMap,H=e=>"sc-"+e.$,L=(e,t,n,l,s,i)=>{if(n===l)return;let r=o(e,t),c=t.toLowerCase();if("class"===t){const t=e.classList,o=F(n);let s=F(l);t.remove(...o.filter((e=>e&&!s.includes(e)))),t.add(...s.filter((e=>e&&!o.includes(e))))}else if("style"===t){for(const t in n)l&&null!=l[t]||(t.includes("-")?e.style.removeProperty(t):e.style[t]="");for(const t in l)n&&l[t]===n[t]||(t.includes("-")?e.style.setProperty(t,l[t]):e.style[t]=l[t])}else if("key"===t);else if("ref"===t)l&&l(e);else if(r||"o"!==t[0]||"n"!==t[1]){const o=S(l);if((r||o&&null!==l)&&!s)try{if(e.tagName.includes("-"))e[t]!==l&&(e[t]=l);else{const o=null==l?"":l;"list"===t?r=!1:null!=n&&e[t]==o||("function"==typeof e.__lookupSetter__(t)?e[t]=o:e.setAttribute(t,o))}}catch(e){}null==l||!1===l?!1===l&&""!==e.getAttribute(t)||e.removeAttribute(t):(!r||4&i||s)&&!o&&1===e.nodeType&&e.setAttribute(t,l=!0===l?"":l)}else if(t="-"===t[2]?t.slice(3):o(u,c)?c.slice(2):c[2]+t.slice(3),n||l){const o=t.endsWith(z);t=t.replace(V,""),n&&a.rel(e,t,n,o),l&&a.ael(e,t,l,o)}},T=/\s/,F=e=>("object"==typeof e&&e&&"baseVal"in e&&(e=e.baseVal),e&&"string"==typeof e?e.split(T):[]),z="Capture",V=RegExp(z+"$"),q=(e,t,n)=>{const o=11===t.v.nodeType&&t.v.host?t.v.host:t.v,l=e&&e.u||{},s=t.u||{};for(const e of G(Object.keys(l)))e in s||L(o,e,l[e],void 0,n,t.o);for(const e of G(Object.keys(s)))L(o,e,l[e],s[e],n,t.o)};function G(e){return e.includes("ref")?[...e.filter((e=>"ref"!==e)),"ref"]:e}var I=!1,Y=(e,t,n)=>{const o=t.p[n];let l,s,i=0;if(null!==o.i)l=o.v=u.document.createTextNode(o.i);else{if(!u.document)throw Error("You are trying to render a Stencil component in an environment that doesn't support the DOM. Make sure to populate the [`window`](https://developer.mozilla.org/en-US/docs/Web/API/Window/window) object before rendering a component.");if(l=o.v=u.document.createElement(o.m),q(null,o,I),o.p)for(i=0;i<o.p.length;++i)s=Y(e,o,i),s&&l.appendChild(s)}return l["s-hn"]=C,l},_=(e,t,n,o,l,s)=>{let i,r=e;for(r.shadowRoot&&r.tagName===C&&(r=r.shadowRoot);l<=s;++l)o[l]&&(i=Y(null,n,l),i&&(o[l].v=i,X(r,i,t)))},B=(e,t,n)=>{for(let o=t;o<=n;++o){const t=e[o];if(t){const e=t.v;Q(t),e&&e.remove()}}},J=(e,t,n=!1)=>e.m===t.m&&(n?(n&&!e.h&&t.h&&(e.h=t.h),!0):e.h===t.h),K=(e,t,n=!1)=>{const o=t.v=e.v,l=e.p,s=t.p,i=t.i;null===i?(q(e,t,I),null!==l&&null!==s?((e,t,n,o,l=!1)=>{let s,i,r=0,c=0,u=0,a=0,f=t.length-1,d=t[0],p=t[f],h=o.length-1,m=o[0],y=o[h];for(;r<=f&&c<=h;)if(null==d)d=t[++r];else if(null==p)p=t[--f];else if(null==m)m=o[++c];else if(null==y)y=o[--h];else if(J(d,m,l))K(d,m,l),d=t[++r],m=o[++c];else if(J(p,y,l))K(p,y,l),p=t[--f],y=o[--h];else if(J(d,y,l))K(d,y,l),X(e,d.v,p.v.nextSibling),d=t[++r],y=o[--h];else if(J(p,m,l))K(p,m,l),X(e,p.v,d.v),p=t[--f],m=o[++c];else{for(u=-1,a=r;a<=f;++a)if(t[a]&&null!==t[a].h&&t[a].h===m.h){u=a;break}u>=0?(i=t[u],i.m!==m.m?s=Y(t&&t[c],n,u):(K(i,m,l),t[u]=void 0,s=i.v),m=o[++c]):(s=Y(t&&t[c],n,c),m=o[++c]),s&&X(d.v.parentNode,s,d.v)}r>f?_(e,null==o[h+1]?null:o[h+1].v,n,o,c,h):c>h&&B(t,r,f)})(o,l,t,s,n):null!==s?(null!==e.i&&(o.textContent=""),_(o,null,t,s,0,s.length-1)):!n&&null!==l&&B(l,0,l.length-1)):e.i!==i&&(o.data=i)},Q=e=>{e.u&&e.u.ref&&e.u.ref(null),e.p&&e.p.map(Q)},X=(e,t,n)=>null==e?void 0:e.insertBefore(t,n),Z=(e,t)=>{if(t&&!e.S&&t["s-p"]){const n=t["s-p"].push(new Promise((o=>e.S=()=>{t["s-p"].splice(n-1,1),o()})))}},ee=(e,t)=>{if(e.o|=16,!(4&e.o))return Z(e,e.j),$((()=>te(e,t)));e.o|=512},te=(e,t)=>{const n=e.$hostElement$,o=e.t;if(!o)throw Error(`Can't render component <${n.tagName.toLowerCase()} /> with invalid Stencil runtime! Make sure this imported component is compiled with a \`externalRuntime: true\` flag. For more information, please refer to https://stenciljs.com/docs/custom-elements#externalruntime`);let l;return l=ce(o,t?"componentWillLoad":"componentWillUpdate",void 0,n),l=ne(l,(()=>ce(o,"componentWillRender",void 0,n))),ne(l,(()=>le(e,o,t)))},ne=(e,t)=>oe(e)?e.then(t).catch((e=>{console.error(e),t()})):t(),oe=e=>e instanceof Promise||e&&e.then&&"function"==typeof e.then,le=async(e,t,n)=>{var o;const l=e.$hostElement$,s=l["s-rc"];n&&(e=>{const t=e.k,n=e.$hostElement$,o=t.o,l=((e,t)=>{var n;const o=H(t),l=i.get(o);if(!u.document)return o;if(e=11===e.nodeType?e:u.document,l)if("string"==typeof l){let s,i=N.get(e=e.head||e);if(i||N.set(e,i=new Set),!i.has(o)){{s=document.querySelector(`[sty-id="${o}"]`)||u.document.createElement("style"),s.innerHTML=l;const i=null!=(n=a.O)?n:g(u.document);if(null!=i&&s.setAttribute("nonce",i),!(1&t.o))if("HEAD"===e.nodeName){const t=e.querySelectorAll("link[rel=preconnect]"),n=t.length>0?t[t.length-1].nextSibling:e.querySelector("style");e.insertBefore(s,(null==n?void 0:n.parentNode)===e?n:null)}else if("host"in e)if(d){const t=new CSSStyleSheet;t.replaceSync(l),e.adoptedStyleSheets=[t,...e.adoptedStyleSheets]}else{const t=e.querySelector("style");t?t.innerHTML=l+t.innerHTML:e.prepend(s)}else e.append(s);1&t.o&&e.insertBefore(s,null)}4&t.o&&(s.innerHTML+=r),i&&i.add(o)}}else e.adoptedStyleSheets.includes(l)||(e.adoptedStyleSheets=[...e.adoptedStyleSheets,l]);return o})(n.shadowRoot?n.shadowRoot:n.getRootNode(),t);(10&o&&2&o||128&o)&&(n["s-sc"]=l,n.classList.add(l+"-h"))})(e);se(e,t,l,n),s&&(s.map((e=>e())),l["s-rc"]=void 0);{const t=null!=(o=l["s-p"])?o:[],n=()=>ie(e);0===t.length?n():(Promise.all(t).then(n),e.o|=4,t.length=0)}},se=(e,t,n,o)=>{try{t=t.render(),e.o&=-17,e.o|=2,((e,t,n=!1)=>{const o=e.$hostElement$,l=e.k,s=e.C||R(null,null),i=(e=>e&&e.m===x)(t)?t:P(null,null,t);if(C=o.tagName,l.M&&(i.u=i.u||{},l.M.map((([e,t])=>i.u[t]=o[e]))),n&&i.u)for(const e of Object.keys(i.u))o.hasAttribute(e)&&!["key","ref","style","class"].includes(e)&&(i.u[e]=o[e]);i.m=null,i.o|=4,e.C=i,i.v=s.v=o.shadowRoot||o,K(s,i,n)})(e,t,o)}catch(t){l(t,e.$hostElement$)}return null},ie=e=>{const t=e.$hostElement$,n=e.t,o=e.j;ce(n,"componentDidRender",void 0,t),64&e.o?ce(n,"componentDidUpdate",void 0,t):(e.o|=64,ue(t),ce(n,"componentDidLoad",void 0,t),e.P(t),o||re()),e.S&&(e.S(),e.S=void 0),512&e.o&&w((()=>ee(e,!1))),e.o&=-517},re=()=>{w((()=>W(u,"appload",{detail:{namespace:"mds-input-range"}})))},ce=(e,t,n,o)=>{if(e&&e[t])try{return e[t](n)}catch(e){l(e,o)}},ue=e=>e.setAttribute("hydrated",""),ae=(e,n,o,s)=>{const i=t(e);if(!i)throw Error(`Couldn't find host element for "${s.$}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).`);const r=i.$hostElement$,c=i.R.get(n),u=i.o,a=i.t;if(o=D(o,s.D[n][0]),(!(8&u)||void 0===c)&&o!==c&&(!Number.isNaN(c)||!Number.isNaN(o))&&(i.R.set(n,o),a)){if(s.A&&128&u){const e=s.A[n];e&&e.map((e=>{try{a[e](o,c,n)}catch(e){l(e,r)}}))}if(2==(18&u)){if(a.componentShouldUpdate&&!1===a.componentShouldUpdate(o,c,n))return;ee(i,!1)}}},fe=(e,n,o)=>{var l,s;const i=e.prototype;if(64&n.o&&1&o&&c.forEach((e=>{Object.defineProperty(i,e,{value(...n){const o=t(this),l=o.t;if(l){const t=l[e];"function"==typeof t&&t.call(l,...n)}else o.U.then((t=>{const o=t[e];"function"==typeof o&&o.call(t,...n)}))}})})),n.D||n.A||e.watchers){e.watchers&&!n.A&&(n.A=e.watchers);const r=Object.entries(null!=(l=n.D)?l:{});if(r.map((([e,[l]])=>{if(31&l||2&o&&32&l){const{get:s,set:r}=Object.getOwnPropertyDescriptor(i,e)||{};s&&(n.D[e][0]|=2048),r&&(n.D[e][0]|=4096),(1&o||!s)&&Object.defineProperty(i,e,{get(){{if(!(2048&n.D[e][0]))return((e,n)=>t(this).R.get(n))(0,e);const o=t(this),l=o?o.t:i;if(!l)return;return l[e]}},configurable:!0,enumerable:!0}),Object.defineProperty(i,e,{set(s){const i=t(this);if(r){const t=32&l?this[e]:i.$hostElement$[e];return void 0===t&&i.R.get(e)?s=i.R.get(e):!i.R.get(e)&&t&&i.R.set(e,t),r.call(this,D(s,l)),void ae(this,e,s=32&l?this[e]:i.$hostElement$[e],n)}{if(!(1&o&&4096&n.D[e][0]))return ae(this,e,s,n),void(1&o&&!i.t&&i.U.then((()=>{4096&n.D[e][0]&&i.t[e]!==i.R.get(e)&&(i.t[e]=s)})));const t=()=>{const t=i.t[e];!i.R.get(e)&&t&&i.R.set(e,t),i.t[e]=D(s,l),ae(this,e,i.t[e],n)};i.t?t():i.U.then((()=>t()))}}})}})),1&o){const o=new Map;i.attributeChangedCallback=function(e,l,s){a.jmp((()=>{var r;const c=o.get(e);if(this.hasOwnProperty(c))s=this[c],delete this[c];else{if(i.hasOwnProperty(c)&&"number"==typeof this[c]&&this[c]==s)return;if(null==c){const o=t(this),i=null==o?void 0:o.o;if(i&&!(8&i)&&128&i&&s!==l){const t=o.t,i=null==(r=n.A)?void 0:r[e];null==i||i.forEach((n=>{null!=t[n]&&t[n].call(t,s,l,e)}))}return}}const u=Object.getOwnPropertyDescriptor(i,c);(s=(null!==s||"boolean"!=typeof this[c])&&s)===this[c]||u.get&&!u.set||(this[c]=s)}))},e.observedAttributes=Array.from(new Set([...Object.keys(null!=(s=n.A)?s:{}),...r.filter((([e,t])=>15&t[0])).map((([e,t])=>{var l;const s=t[1]||e;return o.set(s,e),512&t[0]&&(null==(l=n.M)||l.push([e,s])),s}))]))}}return e},de=(e,t)=>{ce(e,"connectedCallback",void 0,t)},pe=(e,t)=>{ce(e,"disconnectedCallback",void 0,t||e)},he=(e,n={})=>{var o;if(!u.document)return void console.warn("Stencil: No document found. Skipping bootstrapping lazy components.");const c=[],f=n.exclude||[],p=u.customElements,h=u.document.head,m=h.querySelector("meta[charset]"),y=u.document.createElement("style"),b=[];let v,w=!0;Object.assign(a,n),a.l=new URL(n.resourcesUrl||"./",u.document.baseURI).href;let $=!1;if(e.map((e=>{e[1].map((n=>{var o;const r={o:n[0],$:n[1],D:n[2],W:n[3]};4&r.o&&($=!0),r.D=n[2],r.M=[],r.A=null!=(o=n[4])?o:{};const u=r.$,h=class extends HTMLElement{constructor(e){if(super(e),this.hasRegisteredEventListeners=!1,((e,t)=>{const n={o:0,$hostElement$:e,k:t,R:new Map};n.U=new Promise((e=>n.P=e)),e["s-p"]=[],e["s-rc"]=[];const o=n;e.__stencil__getHostRef=()=>o})(e=this,r),1&r.o)if(e.shadowRoot){if("open"!==e.shadowRoot.mode)throw Error(`Unable to re-use existing shadow root for ${r.$}! Mode is set to ${e.shadowRoot.mode} but Stencil only supports open shadow roots.`)}else e.attachShadow({mode:"open"})}connectedCallback(){this.hasRegisteredEventListeners||(this.hasRegisteredEventListeners=!0),v&&(clearTimeout(v),v=null),w?b.push(this):a.jmp((()=>(e=>{if(!(1&a.o)){const n=t(e),o=n.k,r=()=>{};if(1&n.o)(null==n?void 0:n.t)?de(n.t,e):(null==n?void 0:n.U)&&n.U.then((()=>de(n.t,e)));else{n.o|=1;{let t=e;for(;t=t.parentNode||t.host;)if(t["s-p"]){Z(n,n.j=t);break}}o.D&&Object.entries(o.D).map((([t,[n]])=>{if(31&n&&e.hasOwnProperty(t)){const n=e[t];delete e[t],e[t]=n}})),(async(e,t,n)=>{let o;if(!(32&t.o)){if(t.o|=32,n.N){const i=((e,t)=>{const n=e.$.replace(/-/g,"_"),o=e.N;if(!o)return;const i=s.get(o);return i?i[n]:import(`./${o}.entry.js`).then((e=>(s.set(o,e),e[n])),(e=>{l(e,t.$hostElement$)}))
|
|
2
|
-
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/})(n,t);if(i&&"then"in i){const e=()=>{};o=await i,e()}else o=i;if(!o)throw Error(`Constructor for "${n.$}#${t.H}" was not found`);o.isProxied||(n.A=o.watchers,fe(o,n,2),o.isProxied=!0);const r=()=>{};t.o|=8;try{new o(t)}catch(t){l(t,e)}t.o&=-9,t.o|=128,r(),de(t.t,e)}else o=e.constructor,customElements.whenDefined(e.localName).then((()=>t.o|=128));if(o&&o.style){let e;"string"==typeof o.style&&(e=o.style);const t=H(n);if(!i.has(t)){const o=()=>{};((e,t,n)=>{let o=i.get(e);d&&n?(o=o||new CSSStyleSheet,"string"==typeof o?o=t:o.replaceSync(t)):o=t,i.set(e,o)})(t,e,!!(1&n.o)),o()}}}const r=t.j,c=()=>ee(t,!0);r&&r["s-rc"]?r["s-rc"].push(c):c()})(e,n,o)}r()}})(this)))}disconnectedCallback(){a.jmp((()=>(async e=>{if(!(1&a.o)){const n=t(e);(null==n?void 0:n.t)?pe(n.t,e):(null==n?void 0:n.U)&&n.U.then((()=>pe(n.t,e)))}N.has(e)&&N.delete(e),e.shadowRoot&&N.has(e.shadowRoot)&&N.delete(e.shadowRoot)})(this))),a.raf((()=>{var e;const n=t(this),o=b.findIndex((e=>e===this));o>-1&&b.splice(o,1),(null==(e=null==n?void 0:n.C)?void 0:e.v)instanceof Node&&!n.C.v.isConnected&&delete n.C.v}))}componentOnReady(){return t(this).U}};64&r.o&&(h.formAssociated=!0),r.N=e[0],f.includes(u)||p.get(u)||(c.push(u),p.define(u,fe(h,r,1)))}))})),c.length>0&&($&&(y.textContent+=r),y.textContent+=c.sort()+"{visibility:hidden}[hydrated]{visibility:inherit}",y.innerHTML.length)){y.setAttribute("data-styles","");const e=null!=(o=a.O)?o:g(u.document);null!=e&&y.setAttribute("nonce",e),h.insertBefore(y,m?m.nextSibling:h.firstChild)}w=!1,b.length?b.map((e=>e.connectedCallback())):a.jmp((()=>v=setTimeout(re,30)))},me=e=>a.O=e;export{x as H,he as b,U as c,A as g,P as h,f as p,n as r,me as s}
|