web-input-material 0.0.382 → 0.0.386

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.
@@ -96,4 +96,4 @@ var c={animation:{prefixed:"-webkit-animation",standard:"animation"},transform:{
96
96
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
97
97
  * THE SOFTWARE.
98
98
  */
99
- var d=function(){function e(e){void 0===e&&(e={}),this.adapter=e}return Object.defineProperty(e,"cssClasses",{get:function(){return{}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"strings",{get:function(){return{}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"numbers",{get:function(){return{}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"defaultAdapter",{get:function(){return{}},enumerable:!0,configurable:!0}),e.prototype.init=function(){},e.prototype.destroy=function(){},e}(),h={ACTIVE:"mdc-slider--active",DISABLED:"mdc-slider--disabled",DISCRETE:"mdc-slider--discrete",FOCUS:"mdc-slider--focus",HAS_TRACK_MARKER:"mdc-slider--display-markers",IN_TRANSIT:"mdc-slider--in-transit",IS_DISCRETE:"mdc-slider--discrete",DISABLE_TOUCH_ACTION:"mdc-slider--disable-touch-action"},v={ARIA_DISABLED:"aria-disabled",ARIA_VALUEMAX:"aria-valuemax",ARIA_VALUEMIN:"aria-valuemin",ARIA_VALUENOW:"aria-valuenow",CHANGE_EVENT:"MDCSlider:change",INPUT_EVENT:"MDCSlider:input",PIN_VALUE_MARKER_SELECTOR:".mdc-slider__pin-value-marker",STEP_DATA_ATTR:"data-step",THUMB_CONTAINER_SELECTOR:".mdc-slider__thumb-container",TRACK_MARKER_CONTAINER_SELECTOR:".mdc-slider__track-marker-container",TRACK_SELECTOR:".mdc-slider__track"},m={PAGE_FACTOR:4},_=void 0!==window,y=_&&!!window.PointerEvent,g=y?["pointerdown"]:["mousedown","touchstart"],b=y?["pointerup"]:["mouseup","touchend"],w={mousedown:"mousemove",pointerdown:"pointermove",touchstart:"touchmove"},T="ArrowDown",E="ArrowLeft",k="ArrowRight",x="ArrowUp",O="End",P="Home",S="PageDown",C="PageUp",A=function(e){function t(n){var r=e.call(this,u(u({},t.defaultAdapter),n))||this;return r.savedTabIndex_=NaN,r.active_=!1,r.inTransit_=!1,r.isDiscrete_=!1,r.hasTrackMarker_=!1,r.handlingThumbTargetEvt_=!1,r.min_=0,r.max_=100,r.step_=0,r.value_=0,r.disabled_=!1,r.preventFocusState_=!1,r.thumbContainerPointerHandler_=function(){return r.handlingThumbTargetEvt_=!0},r.interactionStartHandler_=function(e){return r.handleDown_(e)},r.keydownHandler_=function(e){return r.handleKeydown_(e)},r.focusHandler_=function(){return r.handleFocus_()},r.blurHandler_=function(){return r.handleBlur_()},r.resizeHandler_=function(){return r.layout()},r}return function(e,t){function n(){this.constructor=e}s(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}(t,e),Object.defineProperty(t,"cssClasses",{get:function(){return h},enumerable:!0,configurable:!0}),Object.defineProperty(t,"strings",{get:function(){return v},enumerable:!0,configurable:!0}),Object.defineProperty(t,"numbers",{get:function(){return m},enumerable:!0,configurable:!0}),Object.defineProperty(t,"defaultAdapter",{get:function(){return{hasClass:function(){return!1},addClass:function(){},removeClass:function(){},getAttribute:function(){return null},setAttribute:function(){},removeAttribute:function(){},computeBoundingRect:function(){return{top:0,right:0,bottom:0,left:0,width:0,height:0}},getTabIndex:function(){return 0},registerInteractionHandler:function(){},deregisterInteractionHandler:function(){},registerThumbContainerInteractionHandler:function(){},deregisterThumbContainerInteractionHandler:function(){},registerBodyInteractionHandler:function(){},deregisterBodyInteractionHandler:function(){},registerResizeHandler:function(){},deregisterResizeHandler:function(){},notifyInput:function(){},notifyChange:function(){},setThumbContainerStyleProperty:function(){},setTrackStyleProperty:function(){},setMarkerValue:function(){},setTrackMarkers:function(){},isRTL:function(){return!1}}},enumerable:!0,configurable:!0}),t.prototype.init=function(){var e=this;this.isDiscrete_=this.adapter.hasClass(h.IS_DISCRETE),this.hasTrackMarker_=this.adapter.hasClass(h.HAS_TRACK_MARKER),g.forEach((function(t){e.adapter.registerInteractionHandler(t,e.interactionStartHandler_),e.adapter.registerThumbContainerInteractionHandler(t,e.thumbContainerPointerHandler_)})),y&&this.adapter.addClass(h.DISABLE_TOUCH_ACTION),this.adapter.registerInteractionHandler("keydown",this.keydownHandler_),this.adapter.registerInteractionHandler("focus",this.focusHandler_),this.adapter.registerInteractionHandler("blur",this.blurHandler_),this.adapter.registerResizeHandler(this.resizeHandler_),this.layout(),this.isDiscrete_&&0===this.getStep()&&(this.step_=1)},t.prototype.destroy=function(){var e=this;g.forEach((function(t){e.adapter.deregisterInteractionHandler(t,e.interactionStartHandler_),e.adapter.deregisterThumbContainerInteractionHandler(t,e.thumbContainerPointerHandler_)})),this.adapter.deregisterInteractionHandler("keydown",this.keydownHandler_),this.adapter.deregisterInteractionHandler("focus",this.focusHandler_),this.adapter.deregisterInteractionHandler("blur",this.blurHandler_),this.adapter.deregisterResizeHandler(this.resizeHandler_)},t.prototype.setupTrackMarker=function(){this.isDiscrete_&&this.hasTrackMarker_&&0!==this.getStep()&&this.adapter.setTrackMarkers(this.getStep(),this.getMax(),this.getMin())},t.prototype.layout=function(){this.rect_=this.adapter.computeBoundingRect(),this.updateUIForCurrentValue_()},t.prototype.getValue=function(){return this.value_},t.prototype.setValue=function(e){this.setValue_(e,!1)},t.prototype.getMax=function(){return this.max_},t.prototype.setMax=function(e){if(e<this.min_)throw new Error("Cannot set max to be less than the slider's minimum value");this.max_=e,this.setValue_(this.value_,!1,!0),this.adapter.setAttribute(v.ARIA_VALUEMAX,String(this.max_)),this.setupTrackMarker()},t.prototype.getMin=function(){return this.min_},t.prototype.setMin=function(e){if(e>this.max_)throw new Error("Cannot set min to be greater than the slider's maximum value");this.min_=e,this.setValue_(this.value_,!1,!0),this.adapter.setAttribute(v.ARIA_VALUEMIN,String(this.min_)),this.setupTrackMarker()},t.prototype.getStep=function(){return this.step_},t.prototype.setStep=function(e){if(e<0)throw new Error("Step cannot be set to a negative number");this.isDiscrete_&&("number"!=typeof e||e<1)&&(e=1),this.step_=e,this.setValue_(this.value_,!1,!0),this.setupTrackMarker()},t.prototype.isDisabled=function(){return this.disabled_},t.prototype.setDisabled=function(e){this.disabled_=e,this.toggleClass_(h.DISABLED,this.disabled_),this.disabled_?(this.savedTabIndex_=this.adapter.getTabIndex(),this.adapter.setAttribute(v.ARIA_DISABLED,"true"),this.adapter.removeAttribute("tabindex")):(this.adapter.removeAttribute(v.ARIA_DISABLED),isNaN(this.savedTabIndex_)||this.adapter.setAttribute("tabindex",String(this.savedTabIndex_)))},t.prototype.handleDown_=function(e){var t=this;if(!this.disabled_){this.preventFocusState_=!0,this.setInTransit_(!this.handlingThumbTargetEvt_),this.handlingThumbTargetEvt_=!1,this.setActive_(!0);var n=function(e){t.handleMove_(e)},r=w[e.type],o=function(){t.handleUp_(),t.adapter.deregisterBodyInteractionHandler(r,n),b.forEach((function(e){return t.adapter.deregisterBodyInteractionHandler(e,o)}))};this.adapter.registerBodyInteractionHandler(r,n),b.forEach((function(e){return t.adapter.registerBodyInteractionHandler(e,o)})),this.setValueFromEvt_(e)}},t.prototype.handleMove_=function(e){e.preventDefault(),this.setValueFromEvt_(e)},t.prototype.handleUp_=function(){this.setActive_(!1),this.adapter.notifyChange()},t.prototype.getClientX_=function(e){return e.targetTouches&&e.targetTouches.length>0?e.targetTouches[0].clientX:e.clientX},t.prototype.setValueFromEvt_=function(e){var t=this.getClientX_(e),n=this.computeValueFromClientX_(t);this.setValue_(n,!0)},t.prototype.computeValueFromClientX_=function(e){var t=this.max_,n=this.min_,r=(e-this.rect_.left)/this.rect_.width;return this.adapter.isRTL()&&(r=1-r),n+r*(t-n)},t.prototype.handleKeydown_=function(e){var t=this.getKeyId_(e),n=this.getValueForKeyId_(t);isNaN(n)||(e.preventDefault(),this.adapter.addClass(h.FOCUS),this.setValue_(n,!0),this.adapter.notifyChange())},t.prototype.getKeyId_=function(e){return e.key===E||37===e.keyCode?E:e.key===k||39===e.keyCode?k:e.key===x||38===e.keyCode?x:e.key===T||40===e.keyCode?T:e.key===P||36===e.keyCode?P:e.key===O||35===e.keyCode?O:e.key===C||33===e.keyCode?C:e.key===S||34===e.keyCode?S:""},t.prototype.getValueForKeyId_=function(e){var t=this,n=t.max_,r=t.min_,o=t.step_||(n-r)/100;switch(this.adapter.isRTL()&&(e===E||e===k)&&(o=-o),e){case E:case T:return this.value_-o;case k:case x:return this.value_+o;case P:return this.min_;case O:return this.max_;case C:return this.value_+o*m.PAGE_FACTOR;case S:return this.value_-o*m.PAGE_FACTOR;default:return NaN}},t.prototype.handleFocus_=function(){this.preventFocusState_||this.adapter.addClass(h.FOCUS)},t.prototype.handleBlur_=function(){this.preventFocusState_=!1,this.adapter.removeClass(h.FOCUS)},t.prototype.setValue_=function(e,t,n){if(void 0===n&&(n=!1),e!==this.value_||n){var r=this.min_,o=this.max_,i=e===r||e===o;this.step_&&!i&&(e=this.quantize_(e)),e<r?e=r:e>o&&(e=o),e=e||0,this.value_=e,this.adapter.setAttribute(v.ARIA_VALUENOW,String(this.value_)),this.updateUIForCurrentValue_(),t&&(this.adapter.notifyInput(),this.isDiscrete_&&this.adapter.setMarkerValue(e))}},t.prototype.quantize_=function(e){return Math.round(e/this.step_)*this.step_},t.prototype.updateUIForCurrentValue_=function(){var e=this,t=this,n=t.max_,r=t.min_,o=(t.value_-r)/(n-r),i=o*this.rect_.width;this.adapter.isRTL()&&(i=this.rect_.width-i);var a=_?function(e,t){if(p(e)&&t in c){var n=e.document.createElement("div"),r=c[t],o=r.standard,i=r.prefixed;return o in n.style?o:i}return t}(window,"transform"):"transform",l=_?function(e,t){if(p(e)&&t in f){var n=e.document.createElement("div"),r=f[t],o=r.standard,i=r.prefixed;return r.cssProperty in n.style?o:i}return t}(window,"transitionend"):"transitionend";if(this.inTransit_){var s=function(){e.setInTransit_(!1),e.adapter.deregisterThumbContainerInteractionHandler(l,s)};this.adapter.registerThumbContainerInteractionHandler(l,s)}requestAnimationFrame((function(){e.adapter.setThumbContainerStyleProperty(a,"translateX("+i+"px) translateX(-50%)"),e.adapter.setTrackStyleProperty(a,"scaleX("+o+")")}))},t.prototype.setActive_=function(e){this.active_=e,this.toggleClass_(h.ACTIVE,this.active_)},t.prototype.setInTransit_=function(e){this.inTransit_=e,this.toggleClass_(h.IN_TRANSIT,this.inTransit_)},t.prototype.toggleClass_=function(e,t){t?this.adapter.addClass(e):this.adapter.removeClass(e)},t}(d),M=o.memo(o.forwardRef((function(e,t){return o.createElement("div",{ref:t,className:"mdc-slider__track"})}))),N=o.memo(o.forwardRef((function(e,t){return o.createElement("div",{ref:t,className:"mdc-slider__track-marker-container"})}))),L=o.memo((function(e){var t=e.value;return o.createElement("div",{className:"mdc-slider__pin"},o.createElement("span",{className:"mdc-slider__pin-value-marker"},t))})),D=o.memo((function(){return o.createElement("svg",{className:"mdc-slider__thumb",width:"21",height:"21"},o.createElement("circle",{cx:"10.5",cy:"10.5",r:"7.875"}))})),R=o.memo((function(){return o.createElement("div",{className:"mdc-slider__focus-ring"})})),j=(0,i.LM)((function(e,t){var n=function(e){var t=(0,o.useRef)(),n=(0,o.useRef)(),i=(0,a.j)({props:e,elements:{rootEl:!0,thumbContainerEl:!0,sliderPinEl:!0},foundation:function(e){var r,o,i,a=e.rootEl,u=e.thumbContainerEl,c=e.sliderPinEl,f=e.emit;return new A({hasClass:function(e){return a.hasClass(e)},addClass:function(e){return a.addClass(e)},removeClass:function(e){return a.removeClass(e)},getAttribute:function(e){return a.getProp(e)},setAttribute:(r=function(e,t){return a.setProp(e,t)},o=300,function(){var e=this,t=arguments;null!==i&&clearTimeout(i),i=setTimeout((function(){i=null,r.apply(e,t)}),o)}),removeAttribute:function(e){return a.removeProp(e)},computeBoundingRect:function(){return a.ref?a.ref.getBoundingClientRect():l.B},getTabIndex:function(){return a.ref?a.ref.tabIndex:0},registerInteractionHandler:function(e,t){a.addEventListener(e,t)},deregisterInteractionHandler:function(e,t){a.removeEventListener(e,t)},registerThumbContainerInteractionHandler:function(e,t){u.addEventListener(e,t)},deregisterThumbContainerInteractionHandler:function(e,t){u.removeEventListener(e,t)},registerBodyInteractionHandler:function(e,t){document.body&&document.body.addEventListener(e,t)},deregisterBodyInteractionHandler:function(e,t){document.body&&document.body.removeEventListener(e,t)},registerResizeHandler:function(e){window.addEventListener("resize",e)},deregisterResizeHandler:function(e){window.removeEventListener("resize",e)},notifyInput:function(){f("onInput",{value:s.getValue()})},notifyChange:function(){f("onChange",{value:s.getValue()})},setThumbContainerStyleProperty:function(e,t){u.setStyle(e,t)},setTrackStyleProperty:function(e,n){var r;null===(r=t.current)||void 0===r||r.style.setProperty(e,n)},setMarkerValue:function(e){c.setProp("value",e)},setTrackMarkers:function(e,t,r){var o,i=e.toLocaleString(),a="linear-gradient(to right, currentColor 2px, transparent 0) 0 center / calc((100% - 2px) / (("+t.toLocaleString()+" - "+r.toLocaleString()+") / "+i+")) 100% repeat-x";null===(o=n.current)||void 0===o||o.style.setProperty("background",a)},isRTL:function(){return!!a.ref&&"rtl"===getComputedStyle(a.ref).direction}})}}),s=i.foundation,u=(0,r._T)(i,["foundation"]);return(0,o.useEffect)((function(){void 0!==e.max&&s.setMax(+e.max)}),[e.max,s]),(0,o.useEffect)((function(){void 0!==e.min&&s.setMin(+e.min)}),[e.min,s]),(0,o.useEffect)((function(){var t=void 0!==e.value?Number(e.value):s.getValue(),n=s.getMin(),r=s.getMax();t<n&&(console.warn("Attempted to set slider to "+t+" which is less than min: "+n),t=n),t>r&&(console.warn("Attempted to set slider to "+t+" which is greater than max: "+r),t=r),s.setValue(t)}),[e.value,s]),(0,o.useEffect)((function(){void 0!==e.step&&s.setStep(+e.step)}),[e.step,s]),(0,o.useEffect)((function(){void 0!==e.disabled&&s.setDisabled(e.disabled)}),[e.disabled,s]),(0,o.useEffect)((function(){void 0!==e.discrete&&(s.isDiscrete_=e.discrete),e.discrete&&0===s.getStep()&&s.setStep(1)}),[e.discrete,s]),(0,o.useEffect)((function(){var t=s.hasTrackMarker_;void 0!==e.displayMarkers&&e.displayMarkers!==t&&(s.hasTrackMarker_=e.displayMarkers,window.requestAnimationFrame((function(){return s.setupTrackMarker()})))}),[e.displayMarkers,s]),(0,o.useEffect)((function(){var e=s.handleDown_.bind(s);s.handleDown_=function(t){t.persist(),e(t)}}),[s]),(0,r.pi)({setTrackRef:function(e){return t.current=e},setTrackMarkerContainerRef:function(e){return n.current=e}},u)}(e),s=n.rootEl,u=n.thumbContainerEl,c=n.sliderPinEl,f=n.setTrackRef,p=n.setTrackMarkerContainerRef,d=e.value,h=(e.min,e.max),v=e.discrete,m=e.displayMarkers,_=e.step,y=e.disabled,g=(e.onChange,e.onInput,e.children),b=(e.foundationRef,(0,r._T)(e,["value","min","max","discrete","displayMarkers","step","disabled","onChange","onInput","children","foundationRef"])),w=(0,i.oC)(e,["mdc-slider",{"mdc-slider--discrete":v,"mdc-slider--display-markers":m&&v}]),T=_?{"data-step":_}:{};return m&&!v&&console.warn("The 'displayMarkers' prop on rmwc Slider will\n only work in conjunction with the 'discrete' prop"),o.createElement(i.Vp,(0,r.pi)({tabIndex:0,role:"slider","aria-valuemax":h,"aria-valuenow":d,"aria-label":"Select Value"},y?{"aria-disabled":y}:{},T,b,{ref:t,element:s,className:w}),o.createElement("div",{className:"mdc-slider__track-container"},o.createElement(M,{ref:f}),m&&o.createElement(N,{ref:p})),o.createElement(i.Vp,{element:u,className:"mdc-slider__thumb-container"},v&&o.createElement(L,{value:c.getProp("value")}),o.createElement(D,null),o.createElement(R,null)),g)}))},,,,,,,,,function(module,__unused_webpack_exports,__webpack_require__){var __dirname="/",t;if(module=__webpack_require__.nmd(module),null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&null!=__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window=void 0===__webpack_require__.g||null===__webpack_require__.g?{}:__webpack_require__.g;t=function(__WEBPACK_EXTERNAL_MODULE__2__,__WEBPACK_EXTERNAL_MODULE__0__,__WEBPACK_EXTERNAL_MODULE__52__,__WEBPACK_EXTERNAL_MODULE__12__,__WEBPACK_EXTERNAL_MODULE__4__,__WEBPACK_EXTERNAL_MODULE__3__,__WEBPACK_EXTERNAL_MODULE__13__,__WEBPACK_EXTERNAL_MODULE__14__,__WEBPACK_EXTERNAL_MODULE__5__,__WEBPACK_EXTERNAL_MODULE__15__,__WEBPACK_EXTERNAL_MODULE__16__,__WEBPACK_EXTERNAL_MODULE__17__,__WEBPACK_EXTERNAL_MODULE__18__,__WEBPACK_EXTERNAL_MODULE__6__,__WEBPACK_EXTERNAL_MODULE__7__,__WEBPACK_EXTERNAL_MODULE__8__,__WEBPACK_EXTERNAL_MODULE__9__,__WEBPACK_EXTERNAL_MODULE__10__,__WEBPACK_EXTERNAL_MODULE__11__){return function(){var __webpack_modules__=[function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__0__},function(module,__unused_webpack_exports,__nested_webpack_require_4225__){var __dirname="/",e,t,r,n,i,o,s,a,l,p,c,u,d;if(module=__nested_webpack_require_4225__.nmd(module),null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&null!=__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window=void 0===__nested_webpack_require_4225__.g||null===__nested_webpack_require_4225__.g?{}:__nested_webpack_require_4225__.g;module.exports=(e=__nested_webpack_require_4225__(2),t=__nested_webpack_require_4225__(12),r=__nested_webpack_require_4225__(4),n=__nested_webpack_require_4225__(0),i=__nested_webpack_require_4225__(3),o=__nested_webpack_require_4225__(13),s=__nested_webpack_require_4225__(14),a=__nested_webpack_require_4225__(5),l=__nested_webpack_require_4225__(15),p=__nested_webpack_require_4225__(16),c=__nested_webpack_require_4225__(17),u=__nested_webpack_require_4225__(18),d=__nested_webpack_require_4225__(6),function(){var f=[function(t){t.exports=e},function(e){e.exports=r},function(e){e.exports=n},function(e){e.exports=t},function(e,t,n){var r=n(0),o=n.n(r),i=n(1),a=n.n(i),l=n(2);t.default=function(e){return void 0===e&&(e={}),e=o()({readAttribute:!0,type:l.string},e),function(t,n){if("string"==typeof n){var r,i=t.self||t.constructor;if(e.readAttribute){Object.prototype.hasOwnProperty.call(i,"observedAttributes")||(i.observedAttributes=i.observedAttributes?[].concat(i.observedAttributes):[]);var l=a().stringCamelCaseToDelimited(n);i.observedAttributes.includes(l)||i.observedAttributes.push(l)}e.type&&(Object.prototype.hasOwnProperty.call(i,"propertyTypes")||(i.propertyTypes=i.propertyTypes?o()({},i.propertyTypes):{}),!e.update&&Object.prototype.hasOwnProperty.call(i,n)||(i.propertyTypes[n]=e.type)),e.writeAttribute&&(Object.prototype.hasOwnProperty.call(i,"propertiesToReflectAsAttributes")||(i.propertiesToReflectAsAttributes=i.propertiesToReflectAsAttributes?a().copy(i.propertiesToReflectAsAttributes):[]),(e.update||i.propertiesToReflectAsAttributes instanceof Map&&!i.propertiesToReflectAsAttributes.has(n)||Array.isArray(i.propertiesToReflectAsAttributes)&&!i.propertiesToReflectAsAttributes.includes(n)||null!==i.propertiesToReflectAsAttributes&&"object"==typeof i.propertiesToReflectAsAttributes&&!Object.prototype.hasOwnProperty.call(i.propertiesToReflectAsAttributes,n))&&("boolean"==typeof e.writeAttribute?!0===e.writeAttribute&&i.propertyTypes&&Object.prototype.hasOwnProperty.call(i.propertyTypes,n)&&(r=i.propertyTypes[n]):r=e.writeAttribute,void 0!==r&&(Array.isArray(i.propertiesToReflectAsAttributes)&&(!0===e.writeAttribute?i.propertiesToReflectAsAttributes.push(n):i.propertiesToReflectAsAttributes=i.normalizePropertyTypeList(i.propertiesToReflectAsAttributes)),i.propertiesToReflectAsAttributes instanceof Map&&i.propertiesToReflectAsAttributes.set(n,r),null!==i.propertiesToReflectAsAttributes&&"object"==typeof i.propertiesToReflectAsAttributes&&(i.propertiesToReflectAsAttributes[n]=r)))),e.alias&&(Object.prototype.hasOwnProperty.call(i,"propertyAliases")||(i.propertyAliases=i.propertyAliases?o()({},i.propertyAliases):{}),!e.update&&Object.prototype.hasOwnProperty.call(i,n)||(i.propertyAliases[n]=e.alias))}}}},function(e,t,n){n.d(t,{api:function(){return C}});var r,o,i,a,l=n(6),s=n.n(l),u=n(0),c=n.n(u),f=n(7),p=n.n(f),d=n(8),h=n.n(d),v=n(3),m=n.n(v),_=n(9),y=n.n(_),g=(n(10),n(11)),b=n.n(g),w=n(1),T=n.n(w),E=n(2),k=n(4);function x(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?O(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var P="undefined"==typeof HTMLElement?function(){}:HTMLElement,S=(r=(0,k.default)({type:E.boolean,writeAttribute:!0}),a=function(e){function t(){var n;return(n=e.call(this)||this).batchAttributeUpdates=!0,n.batchPropertyUpdates=!0,n.batchUpdates=!0,n.batchedAttributeUpdateRunning=!0,n.batchedPropertyUpdateRunning=!0,n.batchedUpdateRunning=!0,n.parent=null,n.rootInstance=null,n.scope={Tools:T()},n.domNodeEventBindings=new Map,n.domNodeTemplateCache=new Map,n.externalProperties={},n.ignoreAttributeUpdateObservations=!1,n.internalProperties={},n.outputEventNames=new Set,n.instance=null,p()(n,"isRoot",i,h()(n)),n.root=void 0,n.runDomConnectionAndRenderingInSameEventQueue=!1,n.self=t,n.slots={},n.self=n.constructor,n.self._propertiesToReflectAsAttributes||(n.self._propertiesToReflectAsAttributes=n.self.normalizePropertyTypeList(n.self.propertiesToReflectAsAttributes)),n.generateAliasIndex(),n.root=h()(n),n.defineGetterAndSetterInterface(),n}m()(t,e);var n=t.prototype;return n.attributeChangedCallback=function(e,t,n){this.ignoreAttributeUpdateObservations||t===n||this.updateAttribute(e,n)},n.updateAttribute=function(e,t){var n=this;this.evaluateStringOrNullAndSetAsProperty(e,t),this.batchAttributeUpdates?this.batchedAttributeUpdateRunning||this.batchedUpdateRunning||(this.batchedAttributeUpdateRunning=!0,this.batchedUpdateRunning=!0,T().timeout((function(){n.batchedAttributeUpdateRunning=!1,n.batchedUpdateRunning=!1,n.render("attributeChanged")}))):this.render("attributeChanged")},n.connectedCallback=function(){var e=this;try{this.isConnected=!0}catch(e){}this.parent=this,this.rootInstance=this,this.attachEventHandler(),this.self.determineRootBinding&&this.determineRootBinding(),this.self.applyRootBinding&&this.isRoot&&(this.determineRenderScope(),this.applyBinding(this,this.scope)),this.batchedAttributeUpdateRunning=!1,this.batchedPropertyUpdateRunning=!1,this.batchedUpdateRunning=!1,this.grabGivenSlots(),this.reflectExternalProperties(this.externalProperties),this.runDomConnectionAndRenderingInSameEventQueue?this.render("connected"):T().timeout((function(){return e.render("connected")}))},n.disconnectedCallback=function(){try{this.isConnected=!1}catch(e){}for(var e,t=x(this.domNodeEventBindings.values());!(e=t()).done;)for(var n,r=x(e.value.values());!(n=r()).done;)(0,n.value)();this.slots={}},n.defineGetterAndSetterInterface=function(){for(var e,t=this,n=function(){var n=e.value;Object.prototype.hasOwnProperty.call(t,n)&&t.setPropertyValue(n,t[n]),Object.defineProperty(t,n,{configurable:!0,get:function(){return t.getPropertyValue(n)},set:function(e){t.setPropertyValue(n,e),t.triggerPropertySpecificRendering(n,e)}})},r=x(T().arrayUnique(Object.keys(this.self.propertyTypes).concat(Object.keys(this.self._propertyAliasIndex))));!(e=r()).done;)n()},n.getPropertyAlias=function(e){return Object.prototype.hasOwnProperty.call(this.self._propertyAliasIndex,e)?this.self._propertyAliasIndex[e]:null},n.getPropertyValue=function(e){var n,r,o,i,a=null!=(n=this.instance)&&null!=(r=n.current)&&r.properties&&(Object.prototype.hasOwnProperty.call(!t.propertyTypes,e)||Object.prototype.hasOwnProperty.call(this.instance.current.properties,e))?this.instance.current.properties[e]:this.externalProperties[e];return null!=(o=this.instance)&&null!=(i=o.current)&&i.state&&Object.prototype.hasOwnProperty.call(this.instance.current.state,e)?this.instance.current.state[e]:a},n.setExternalPropertyValue=function(e,t){this.externalProperties[e]=t;var n=this.getPropertyAlias(e);n&&(this.externalProperties[n]=t)},n.setInternalPropertyValue=function(e,t){this.internalProperties[e]=t;var n=this.getPropertyAlias(e);n&&(this.internalProperties[n]=t)},n.setPropertyValue=function(e,t){var n;this.reflectProperties(((n={})[e]=t,n)),this.setInternalPropertyValue(e,t)},n.triggerPropertySpecificRendering=function(e,t){var n=this;if(this.batchPropertyUpdates)this.batchedPropertyUpdateRunning||this.batchedUpdateRunning||(this.batchedPropertyUpdateRunning=!0,this.batchedUpdateRunning=!0,T().timeout((function(){void 0!==t&&n.isStateProperty(e)?(n.render("preStatePropertyChanged"),T().timeout((function(){n.setInternalPropertyValue(e,void 0),n.batchedPropertyUpdateRunning=!1,n.batchedUpdateRunning=!1,n.render("postStatePropertyChanged"),n.triggerOutputEvents()})).then(T().noop,T().noop)):(n.batchedPropertyUpdateRunning=!1,n.batchedUpdateRunning=!1,n.render("propertyChanged"),n.triggerOutputEvents())})));else{var r=this.isStateProperty(e);this.render(r?"preStatePropertyChanged":"propertyChanged"),void 0!==t&&r&&(this.setInternalPropertyValue(e,void 0),this.render("postStatePropertyChanged")),this.triggerOutputEvents()}},n.applyBinding=function(e,t){var n=this;if(e.getAttributeNames)for(var r,o=function(){var o=r.value,i="";if(o.startsWith("data-bind-")?i=o.substring(10):o.startsWith("bind-")&&(i=o.substring(5)),i){var a=e.getAttribute(o);if(null===a)return"continue";if(i.startsWith("attribute-")||i.startsWith("property-")){var l=T().stringEvaluate(a,t,!1,e);if(l.error)return console.warn('Error occurred during processing given attribute binding "'+o+'" on node:',e,l.error),"continue";i.startsWith("attribute-")?e.setAttribute(i.substring(10),l.result):e[T().stringDelimitedToCamelCase(i.substring(9))]=l.result}else if(i.startsWith("on-")){n.domNodeEventBindings.has(e)||n.domNodeEventBindings.set(e,new Map);var s=n.domNodeEventBindings.get(e);i=T().stringDelimitedToCamelCase(i.substring(3)),s.has(i)&&s.get(i)(),t=c()({event:void 0,parameters:void 0},t);var u=T().stringCompile(a,t,!0);if(u.error)console.warn('Error occurred during compiling given event binding "'+o+'" on node:',e,u.error);else{var f=u.templateFunction.bind(e),p=function(){for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];t.event=r[0],t.parameters=r;try{f.apply(void 0,u.originalScopeNames.map((function(e){return t[e]})))}catch(t){console.warn('Error occurred during processing given event binding "'+o+'" on node:',e,'Given expression "'+a+'" could not be evaluated with given scope names "'+u.scopeNames.join('", "')+'": '+T().represent(t))}};e.addEventListener(i,p),s.set(i,(function(){e.removeEventListener(i,p),s.delete(i),0===s.size&&n.domNodeEventBindings.delete(e)}))}}}},i=x(e.getAttributeNames());!(r=i()).done;)o()},n.applyBindings=function(e,t,n){for(void 0===n&&(n=!0);e;){var r;null==(r=e.attributes)||!r.length||!n&&e.getAttribute("slot")||this.applyBinding(e,t),e.nodeName.toLowerCase().includes("-")||this.applyBindings(e.firstChild,t),e=e.nextSibling}},n.compileDomNodeTemplate=function(e,t,n){var r;if(void 0===t&&(t=[]),void 0===n&&(n={}),(n=c()({ignoreComponents:!0,ignoreNestedComponents:!0,map:this.domNodeTemplateCache,unsafe:this.self.renderUnsafe},n)).ignoreComponents&&null!=(r=e.nodeName)&&r.toLowerCase().includes("-"))return n.map;if(n.unsafe){var o=e.innerHTML;if(!o&&e.template&&(o=e.template),this.self.hasCode(o)){var i=T().stringCompile("`"+o+"`",t);n.map.set(e,{children:[],error:i.error,scopeNames:i.scopeNames,template:o,templateFunction:i.templateFunction})}}else{var a,l=e.nodeName.toLowerCase();if(["a","#text"].includes(l)){var s="a"===l?e.getAttribute("href"):e.textContent;this.self.hasCode(s)&&(a=s.replace(/&nbsp;/g," ").trim())}var u=[];if(a){var f=T().stringCompile("`"+a+"`",t);n.map.set(e,{children:u,error:f.error,scopeNames:f.scopeNames,template:a,templateFunction:f.templateFunction})}for(var p=e.firstChild;p;)n.filter&&!n.filter(p)||u.push(this.compileDomNodeTemplate(p,t,c()({},n,{ignoreComponents:n.ignoreNestedComponents}))),p=p.nextSibling}return n.map},n.evaluateDomNodeTemplate=function(e,t,n){var r;if(void 0===t&&(t={}),void 0===n&&(n={}),(n=c()({applyBindings:!0,ignoreComponents:!0,ignoreNestedComponents:!0,map:this.domNodeTemplateCache,unsafe:this.self.renderUnsafe},n)).map.has(e)||this.compileDomNodeTemplate(e,t,n),n.map.has(e)){var o=n.map.get(e),i=o.error,a=o.scopeNames,l=o.templateFunction;if(i)console.warn("Error occurred during compiling node content: "+i);else{var s=null;try{s=l.apply(void 0,a.map((function(e){return t[e]})))}catch(i){console.warn('Error occurred when "'+this.self._name+'" is running "'+l+'": with bound names "'+a.join('", "')+'": "'+i+'". Rendering node:',e)}null!==s&&(n.unsafe?e.innerHTML=s:"a"===e.nodeName.toLowerCase()?e.setAttribute("href",s):e.textContent=s)}}if(!(n.unsafe||n.ignoreComponents&&null!=(r=e.nodeName)&&r.toLowerCase().includes("-")))for(var u=e.firstChild;u;)n.filter&&!n.filter(u)||this.evaluateDomNodeTemplate(u,t,c()({},n,{applyBindings:!1,ignoreComponents:n.ignoreNestedComponents})),u=u.nextSibling;return n.applyBindings&&this.applyBindings(e,t),n.map},t.replaceDomNodes=function(e,n){for(var r,o=x([].concat(n).reverse());!(r=o()).done;){var i,a=r.value;t.trimSlots&&a.nodeType===Node.TEXT_NODE&&""===(null==(i=a.nodeValue)?void 0:i.trim())||e.after(a)}e.remove()},t.unwrapDomNode=function(e){for(var t=e.parentNode,n=[];e.firstChild;)n.push(e.firstChild),t.insertBefore(e.firstChild,e);return t.removeChild(e),n},n.determineRootBinding=function(){for(var e=this.parentNode;e;){var n;(e instanceof t||null!=(n=e.nodeName)&&n.includes("-")||null===e.parentNode&&"[object ShadowRoot]"===e.toString())&&(this.rootInstance===this?(this.parent=e,this.rootInstance=e,this.setPropertyValue("isRoot",!1)):this.rootInstance=e),e=e.parentNode}},t.hasCode=function(e){return"string"==typeof e&&e.includes("${")&&e.includes("}")&&/\${[\s\S]+}/.test(e)},t.normalizePropertyTypeList=function(e){if("string"==typeof e&&(e=[e]),Array.isArray(e)){for(var n,r=e,o=new Map,i=x(r);!(n=i()).done;){var a=n.value;Object.prototype.hasOwnProperty.call(t.propertyTypes,a)&&o.set(a,t.propertyTypes[a])}return o}return T().convertPlainObjectToMap(e)},n.attachEventHandler=function(){if(null!==this.self.eventToPropertyMapping){var e=this.attachExplicitDefinedOutputEventHandler();this.attachImplicitDefinedOutputEventHandler(!e)}},n.attachExplicitDefinedOutputEventHandler=function(){for(var e=this,t=!1,n=function(){var n=o[r];Object.prototype.hasOwnProperty.call(e.internalProperties,n)||(t=!0,e.outputEventNames.add(n),e.setInternalPropertyValue(n,s()(b().mark((function t(){var r,o,i,a,l=arguments;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=l.length,o=new Array(r),i=0;i<r;i++)o[i]=l[i];return t.next=3,e.reflectEventToProperties(n,o);case 3:(a=t.sent)&&(o[0]=a),e.forwardEvent(n,o);case 6:case"end":return t.stop()}}),t)})))))},r=0,o=Object.keys(this.self.eventToPropertyMapping);r<o.length;r++)n();return t},n.attachImplicitDefinedOutputEventHandler=function(e){var t=this;void 0===e&&(e=!0);for(var n=function(){var n=o[r],i=n[0],a=n[1];Object.prototype.hasOwnProperty.call(t.internalProperties,i)||![E.func,"function"].includes(a)||t.self.renderProperties.includes(i)||(t.outputEventNames.add(i),t.setInternalPropertyValue(i,(function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];e&&t.reflectEventToProperties(i,r),t.forwardEvent(i,r)})))},r=0,o=Object.entries(this.self.propertyTypes);r<o.length;r++)n()},n.triggerOutputEvents=function(){for(var e,t=x(this.outputEventNames);!(e=t()).done;){var n=e.value;this.forwardEvent(n,[this.externalProperties])}},n.forwardEvent=function(e,t){return e.length>3&&e.startsWith("on")&&(e=T().stringLowerCase(e.substring(2))),this.dispatchEvent(new CustomEvent(e,{detail:{parameters:t}}))},n.applySlots=function(e,t){for(var n=this,r=0,o=Array.from(e.querySelectorAll("slot"));r<o.length;r++){var i=o[r],a=i.getAttribute("name");if(null===a||"default"===a)if(this.slots.default){if(this.self.renderSlots){if(this.self.evaluateSlots)for(var l,s=x(this.slots.default);!(l=s()).done;){var u=l.value;this.evaluateDomNodeTemplate(u,t)}this.self.replaceDomNodes(i,this.slots.default)}}else this.slots.default=this.self.unwrapDomNode(i).map((function(e){return n.grabSlotContent(e)}));else Object.prototype.hasOwnProperty.call(this.slots,a)?this.self.renderSlots&&(this.self.evaluateSlots&&this.evaluateDomNodeTemplate(this.slots[a],t),this.self.replaceDomNodes(i,this.slots[a])):this.slots[a]=this.grabSlotContent(this.self.unwrapDomNode(i).filter((function(e){return"#text"!==e.nodeName.toLowerCase()}))[0])}},n.grabSlotContent=function(e){var t;if("textarea"===(null==(t=e.firstElementChild)?void 0:t.nodeName.toLowerCase())&&(!e.firstElementChild.hasAttribute("data-no-template")||"false"===e.firstElementChild.getAttribute("data-no-template"))){var n,r,o=e.firstElementChild.value;null==(n=e.classList)||n.remove("web-component-template");var i=e.cloneNode();return null==(r=e.classList)||r.add("web-component-template"),i.innerHTML="",i.template=o,i}return this.self.cloneSlots?e.cloneNode(!0):e},n.grabGivenSlots=function(){var e=this;this.slots={};for(var t=0,n=Array.from(this.querySelectorAll("[slot]"));t<n.length;t++){for(var r=n[t],o=r.parentNode,i=!0;o;){if(o.nodeName.includes("-")){o===this&&(i=!1);break}o=o.parentNode}i||(this.slots[r.getAttribute&&r.getAttribute("slot")&&r.getAttribute("slot").trim()?r.getAttribute("slot").trim():r.nodeName.toLowerCase()]=this.grabSlotContent(r))}this.slots.default?this.slots.default=[this.slots.default]:this.childNodes.length>0?this.slots.default=Array.from(this.childNodes).map((function(t){return e.grabSlotContent(t)})):this.slots.default=[]},n.isStateProperty=function(e){var t,n,r,o;return Boolean((null==(t=this.instance)||null==(n=t.current)?void 0:n.state)&&(Object.prototype.hasOwnProperty.call(null==(r=this.instance)||null==(o=r.current)?void 0:o.state,e)||this.instance.current.state.modelState&&Object.prototype.hasOwnProperty.call(this.instance.current.state.modelState,e)))},n.generateAliasIndex=function(){if(!this.self._propertyAliasIndex){this.self._propertyAliasIndex=c()({},this.self.propertyAliases);for(var e=0,t=Object.entries(this.self._propertyAliasIndex);e<t.length;e++){var n=t[e],r=n[0],o=n[1];Object.prototype.hasOwnProperty.call(this.self._propertyAliasIndex,o)||(this.self._propertyAliasIndex[o]=r)}}},n.reflectExternalProperties=function(e){this.ignoreAttributeUpdateObservations=!0;for(var t=0,n=Object.entries(e);t<n.length;t++){var r=n[t],o=r[0],i=r[1];if(this.setExternalPropertyValue(o,i),this.isConnected){var a=T().stringCamelCaseToDelimited(o);if(this.self._propertiesToReflectAsAttributes.has(o))switch(this.self._propertiesToReflectAsAttributes.get(o)){case E.boolean:case"boolean":i?""!==this.getAttribute(a)&&this.setAttribute(a,""):this.hasAttribute(a)&&this.removeAttribute(a);break;case E.func:case"function":break;case"json":if(i){var l=JSON.stringify(i);if(l&&this.getAttribute(a)!==l){this.setAttribute(a,l);break}}this.hasAttribute(a)&&this.removeAttribute(a);break;case E.number:case"number":if("number"!=typeof i||isNaN(i))this.hasAttribute(a)&&this.removeAttribute(a);else{var s=""+i;this.getAttribute(a)!==s&&this.setAttribute(a,s)}break;case E.string:case"string":i?this.getAttribute(a)!==i&&this.setAttribute(a,i):this.hasAttribute(a)&&this.removeAttribute(a);break;case E.any:case E.array:case E.arrayOf:case E.element:case E.elementType:case E.instanceOf:case E.node:case E.object:case"object":case E.objectOf:case E.shape:case E.exact:case E.symbol:default:if(i){var u=T().represent(i);if(u&&this.getAttribute(a)!==u){this.setAttribute(a,u);break}}this.hasAttribute(a)&&this.removeAttribute(a)}}}this.ignoreAttributeUpdateObservations=!1},n.reflectProperties=function(e){var t,n,r,o;if(this.reflectExternalProperties(e),null!=(t=this.instance)&&null!=(n=t.current)&&n.state&&"object"==typeof this.instance.current.state)for(var i,a=x(Object.keys(this.instance.current.state).concat(this.instance.current.state.modelState?Object.keys(this.instance.current.state.modelState):[]));!(i=a()).done;){var l=i.value;Object.prototype.hasOwnProperty.call(this.internalProperties,l)&&this.setInternalPropertyValue(l,void 0)}null!=(r=this.internalProperties.model)&&r.state&&(null==(o=this.internalProperties.model)||delete o.state,this.setInternalPropertyValue("model",this.internalProperties.model));for(var s,u=x(this.self.controllableProperties);!(s=u()).done;){var c=s.value;Object.prototype.hasOwnProperty.call(e,c)&&this.setInternalPropertyValue(c,e[c])}},n.triggerRender=function(e){var t=this;this.batchUpdates?this.batchedUpdateRunning||(this.batchedUpdateRunning=!0,T().timeout((function(){t.batchedUpdateRunning=!1,t.render(e)}))):this.render(e)},n.reflectEventToProperties=function(){var e=s()(b().mark((function e(t,n){var r,o,i,a,l,s,u,f,p,d,h,v,m,_,y,g;return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=this.batchUpdates,this.batchUpdates=!1,o=null,i=!1,!(this.self.eventToPropertyMapping&&Object.prototype.hasOwnProperty.call(this.self.eventToPropertyMapping,t)&&T().isFunction(this.self.eventToPropertyMapping[t]))){e.next=16;break}if(!((l=(a=this.self.eventToPropertyMapping)[t].apply(a,n.concat([this])))&&"then"in l&&T().isFunction(l.then))){e.next=12;break}return e.next=9,l;case 9:e.t0=e.sent,e.next=13;break;case 12:e.t0=l;case 13:s=e.t0,i=!0,Array.isArray(s)?(o=s[0],this.reflectProperties(o),T().extend(!0,this.internalProperties,s[1])):null===s?i=!1:"object"==typeof s&&(o=s,this.reflectProperties(s));case 16:if(!i&&n.length>0&&null!==n[0]&&"object"==typeof n[0]){if(f=n[0],"persist"in n[0]&&T().isFunction(n[0].persist))for(f={},p=0,d=Object.keys(this.self.propertyTypes);p<d.length;p++)for(h=d[p],v=x([h].concat(null!==(_=this.getPropertyAlias(h))&&void 0!==_?_:[]));!(m=v()).done;)y=m.value,(g=n[0].currentTarget&&Object.prototype.hasOwnProperty.call(n[0].currentTarget,y)?n[0].currentTarget[y]:this.getPropertyValue(y))!==this.externalProperties[y]&&(f[y]=g);else[null,void 0].includes(null==(u=f.detail)?void 0:u.value)||(f=c()({},f.detail));o=f,this.reflectProperties(f)}return this.triggerRender("propertyReflected"),this.batchUpdates=r,e.abrupt("return",o);case 20:case"end":return e.stop()}}),e,this)})));return function(t,n){return e.apply(this,arguments)}}(),n.evaluateStringOrNullAndSetAsProperty=function(e,t){var n=this,r=e.startsWith("-"),o=r?e.substring(1):e,i=T().stringDelimitedToCamelCase(o),a=this.getPropertyAlias(i);if(a&&Object.prototype.hasOwnProperty.call(this.self.propertyTypes,a)&&(i=a),Object.prototype.hasOwnProperty.call(this.self.propertyTypes,i)){var l=this.self.propertyTypes[i];if(r){if(t){var s=T().stringEvaluate(t,{Tools:T()},!1,this);s.error?(console.warn('Faild to process pre-evaluation attribute "'+e+'": '+s.error+'. Will be set to "undefined".'),this.setInternalPropertyValue(i,void 0)):(this.setInternalPropertyValue(i,s.result),this.setExternalPropertyValue(i,s.result))}}else switch(l){case E.boolean:case"boolean":var u=![null,"false"].includes(t);this.setInternalPropertyValue(i,u),this.setExternalPropertyValue(i,u);break;case E.func:case"function":var c,f=null,p=["data","event","firstArgument","firstParameter","options","scope","parameters","Tools"];if(t){var d=T().stringCompile(t,p);f=d.error,c=d.templateFunction,f&&console.warn('Failed to compile given handler "'+e+'": '+f+".")}this.setInternalPropertyValue(i,(function(){for(var r=arguments.length,o=new Array(r),a=0;a<r;a++)o[a]=arguments[a];n.outputEventNames.has(i)&&n.reflectEventToProperties(i,o);var l=void 0;if(!f)try{l=c.call(n,o[0],o[0],o[0],o[0],o[0],o[0],o,T())}catch(n){console.warn('Failed to evaluate function "'+e+'" with expression "'+t+'" and scope variables "'+p.join('", "')+'" set to "'+T().represent(o)+'": '+n+'. Set property to "undedefined".')}return n.self.renderProperties.includes(i)||n.forwardEvent(i,o),l})),f||this.setExternalPropertyValue(i,c);break;case"json":if(t){var h;try{h=JSON.parse(t)}catch(f){console.warn('Error occurred during parsing given json attribute "'+e+'": '+T().represent(f));break}this.setInternalPropertyValue(i,h),this.setExternalPropertyValue(i,T().copy(h,1))}else this.setInternalPropertyValue(i,null),this.setExternalPropertyValue(i,null);break;case E.number:case"number":if(null===t){this.setInternalPropertyValue(i,t),this.setExternalPropertyValue(i,t);break}var v=parseFloat(t);isNaN(v)&&(v=void 0),this.setInternalPropertyValue(i,v),this.setExternalPropertyValue(i,v);break;case E.string:case"string":this.setInternalPropertyValue(i,t),this.setExternalPropertyValue(i,t);break;case E.any:case E.array:case E.arrayOf:case E.element:case E.elementType:case E.instanceOf:case E.node:case E.object:case"object":case E.objectOf:case E.oneOf:case E.oneOfType:case E.shape:case E.exact:case E.symbol:default:if(t){var m=T().stringEvaluate(t,{},!1,this);if(m.error){console.warn('Error occurred during processing given attribute configuration "'+e+'":',m.error);break}this.setInternalPropertyValue(i,m.result),this.setExternalPropertyValue(i,T().copy(m.result,1))}else this.hasAttribute(e)?(this.setInternalPropertyValue(i,!0),this.setExternalPropertyValue(i,!0)):(this.setInternalPropertyValue(i,null),this.setExternalPropertyValue(i,null))}}},n.determineRenderScope=function(e){var t,n;void 0===e&&(e={}),this.scope=c()({},(null==(t=this.parent)?void 0:t.scope)||{},this.scope,this.internalProperties,((n={parent:this.parent,root:this.rootInstance,self:this})[T().stringLowerCase(this.self._name)||"instance"]=this,n),e),this.scope.scope=this.scope},n.applyShadowRootIfNotExisting=function(){this.self.shadowDOM&&this.root===this&&(this.root=(!("attachShadow"in this)&&"ShadyDOM"in window?window.ShadyDOM.wrap(this):this).attachShadow(null!==this.self.shadowDOM&&"object"==typeof this.self.shadowDOM?this.self.shadowDOM:{mode:"open"}))},n.render=function(e){if(void 0===e&&(e="unknown"),this.determineRenderScope(),this.dispatchEvent(new CustomEvent("render",{detail:{reason:e,scope:this.scope}}))){var t=T().stringEvaluate("`"+this.self.content+"`",this.scope);if(t.error)console.warn("Faild to process template: "+t.error);else{this.applyShadowRootIfNotExisting();var n=document.createElement("div");n.innerHTML=t.result,this.applySlots(n,c()({},this.scope,{parent:this})),this.root.innerHTML=n.innerHTML,this.applyBindings(this.root.firstChild,this.scope,this.self.renderSlots)}}},t}(P),a.applyRootBinding=!0,a.content="<slot>Please provide a template to transclude.</slot>",a.determineRootBinding=!0,a.shadowDOM=null,a.observedAttributes=[],a.controllableProperties=[],a.eventToPropertyMapping={},a.propertyAliases={},a.propertyTypes={onClick:E.func},a.propertiesToReflectAsAttributes=[],a.renderProperties=["children"],a.cloneSlots=!1,a.evaluateSlots=!1,a.renderSlots=!0,a.trimSlots=!0,a.renderUnsafe=!1,a._name="BaseWeb",a._propertyAliasIndex=void 0,a._propertiesToReflectAsAttributes=void 0,o=a,i=y()(o.prototype,"isRoot",[r],{configurable:!0,enumerable:!0,writable:!0,initializer:function(){return!0}}),o),C={component:S,register:function(e){return void 0===e&&(e=T().stringCamelCaseToDelimited(S._name)),customElements.define(e,S)}};t.default=S},function(e){e.exports=a},function(e){e.exports=l},function(e){e.exports=p},function(e){e.exports=c},function(e){e.exports=u},function(e){e.exports=d},function(e){e.exports=i},function(e){e.exports=o},function(e){e.exports=s},function(e,t,n){n.d(t,{api:function(){return _}});var r=n(0),o=n.n(r),i=n(3),a=n.n(i),l=n(1),s=n.n(l),u=n(2),c=n(12),f=n.n(c),p=n(13),d=n(14);function h(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return v(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?v(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var m=function(e){function t(){for(var n,r=arguments.length,o=new Array(r),i=0;i<r;i++)o[i]=arguments[i];return(n=e.call.apply(e,[this].concat(o))||this).compiledSlots={},n.preparedSlots={},n.reactRoot=null,n.rootReactInstance=null,n.self=t,n.wrapMemorizingWrapper=null,n.isWrapped=!1,n.reflectInstanceProperties=function(){var e;null!=(e=n.instance)&&e.current&&n.instance.current.properties&&n.reflectProperties(n.instance.current.properties)},n}a()(t,e);var n=t.prototype;return n.connectedCallback=function(){this.applyComponentWrapper(),this.rootReactInstance=this,e.prototype.connectedCallback.call(this)},n.disconnectedCallback=function(){e.prototype.disconnectedCallback.call(this)},n.reflectExternalProperties=function(t){this.isRoot&&e.prototype.reflectExternalProperties.call(this,t)},n.render=function(e){var t,n=this;if(void 0===e&&(e="unknown"),this.rootReactInstance===this&&this.dispatchEvent(new CustomEvent("render",{detail:{reason:e,scope:this.scope}}))){if(this.determineRenderScope(),0===Object.keys(this.compiledSlots).length&&this.preCompileSlots(),this.evaluateSlots(o()({},this.scope,{parent:this})),this.prepareProperties(this.internalProperties),this.applyShadowRootIfNotExisting(),this.root!==this)for(var r=this.firstChild;r;){var i=r.nextSibling;this.removeChild(r),r=i}this.reactRoot||(this.reactRoot=(0,d.createRoot)(this.root,{identifierPrefix:String(this.id||this.internalProperties.id||this.externalProperties.id||this.name||this.internalProperties.name||this.externalProperties.name)})),(0,p.flushSync)((function(){return n.reactRoot.render((0,c.createElement)(n.self.content,n.internalProperties))})),null!=(t=this.instance)&&t.current?this.reflectInstanceProperties():s().timeout(this.reflectInstanceProperties)}},n.setPropertyValue=function(e,t){var n;this.reflectProperties(((n={})[e]=s().copy(t,1),n)),this.setInternalPropertyValue(e,s().copy(t,1))},n.setInternalPropertyValue=function(t,n){null===n?n=u.NullSymbol:void 0===n&&(n=u.UndefinedSymbol),e.prototype.setInternalPropertyValue.call(this,t,n)},n.preCompileDomNodes=function(e,t,n){if(void 0===t&&(t={}),void 0===n&&(n=!1),1===(e=e.filter((function(e){return e.nodeType!==Node.TEXT_NODE||"string"==typeof e.nodeValue&&""!==e.nodeValue.trim()}))).length)return this.preCompileDomNode(e[0],t,n);for(var r,o=1,i=[],a=h(e);!(r=a()).done;){var l=r.value,s=this.preCompileDomNode(l,t,n,o.toString());s&&(i.push(s),o+=1)}return n?function(e){return function(){for(var t,n=[],r=h(i);!(t=r()).done;){var o=(0,t.value)(e);"function"==typeof o&&n.push(o.apply(void 0,arguments))}return(0,c.createElement)(c.Fragment,{children:n})}}:i},n.preCompileDomNode=function(e,t,n,r){var i,a,l=this;if(void 0===t&&(t={}),void 0===n&&(n=!1),n){var u=this.preCompileDomNode(e,o()({},t,{data:void 0,firstArgument:void 0,firstParameter:void 0,options:void 0,scope:void 0,parameters:void 0}),!1,r);return function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var i=n.length>0?n[0]:null;return u(o()({},e,{data:i,firstArgument:i,firstParameter:i,options:i,scope:i,parameters:n}))}}}if(e.nodeType===Node.TEXT_NODE){var f="string"==typeof e.nodeValue?e.nodeValue.trim():"",p=r&&f?(0,c.createElement)(c.Fragment,{children:f,key:r}):f||null;return function(){return p}}if(!e.getAttributeNames)return function(){return null};var d=this.self.isReactComponent(e);d?(e.determineRenderScope(),0===Object.keys(this.compiledSlots).length&&e.preCompileSlots(),i=e.internalProperties,r&&!Object.prototype.hasOwnProperty.call(i,"key")&&(i.key=r),a=e.constructor.content):(i={key:r},a=e.tagName.toLowerCase());for(var v,m=Object.keys(t),_={},y=function(){var n,r=v.value,o=e.getAttribute(r);if(null===o)return"continue";var a=!1,u="";if(r.startsWith("data-bind-")?u=r.substring(10):r.startsWith("bind-")&&(u=r.substring(5)),u.startsWith("attribute-")||"attributes"===u||u.startsWith("property-")||"properties"===u){var c=s().stringCompile(o,m),f=c.error,p=c.originalScopeNames,d=c.templateFunction;if(f)return console.warn('Error occurred during compiling given attribute binding "'+r+'" on node:',e,f),"continue";"attributes"===u||"properties"===u?a=!0:u=u.startsWith("attribute-")?u.substring(10):u.substring(9),o={originalScopeNames:p,templateFunction:d.bind(l)}}else if(u.startsWith("on-")){u=s().stringDelimitedToCamelCase(u),Object.prototype.hasOwnProperty.call(t,"event")||(m=[].concat(m,["event"])),Object.prototype.hasOwnProperty.call(t,"parameters")||(m=[].concat(m,["parameters"]));var h=s().stringCompile(o,m,!0),y=h.error,g=h.originalScopeNames,b=h.scopeNames,w=h.templateFunction;if(y)return console.warn('Error occurred during compiling given event binding "'+r+'" on node:',e,y),"continue";var T=w.bind(l);o=function(){for(var n=arguments.length,i=new Array(n),a=0;a<n;a++)i[a]=arguments[a];t.event=i[0],t.parameters=i;try{T.apply(void 0,g.map((function(e){return t[e]})))}catch(t){console.warn('Error occurred during processing given event binding "'+r+'" on node: ',e,'Given expression "'+o+'" could not be evaluated with given scope names "'+b.join('", "')+'": '+s().represent(t))}}}else u=r;var E={class:"className",for:"htmlFor"};Object.prototype.hasOwnProperty.call(E,u)&&(u=E[u]),u=s().stringDelimitedToCamelCase(u),null!=(n=o)&&n.originalScopeNames?_[a?"":u]=o:i[u]=o},g=h(e.getAttributeNames());!(v=g()).done;)y();if(!d){var b=Array.from(e.childNodes);b.length&&(i.children=this.preCompileDomNodes(b,t))}return function(n){(n=o()({},t,n)).scope=n;for(var r=o()({},i),s=0,u=Object.entries(_);s<u.length;s++){var f=u[s],p=f[0],h=f[1],v=h.originalScopeNames,m=h.templateFunction.apply(void 0,v.map((function(e){return n[e]})));""===p?r=o()({},r,m):r[p]=m}return Object.prototype.hasOwnProperty.call(r,"innerHTML")&&(r.dangerouslySetInnerHTML={__html:r.innerHTML},delete r.children,delete r.innerHTML),Object.prototype.hasOwnProperty.call(r,"textContent")?(r.children=r.textContent,delete r.textContent):d?(e.evaluateSlots(o()({},r,n,{parent:e})),e.prepareProperties(r),n=o()({},r,n,{parent:e})):r.children&&(r.children=l.evaluatePreCompiledDomNodes(r.children,n)),(0,c.createElement)(a,r)}},n.evaluatePreCompiledDomNodes=function(e,t){if(void 0===t&&(t={}),!Array.isArray(e))return e(t);if(1===e.length)return e[0](t);for(var n,r=[],o=h(e);!(n=o()).done;){var i=(0,n.value)(t);i&&r.push(i)}return r},n.preCompileSlots=function(){var e;for(var t in this.slots)Object.prototype.hasOwnProperty.call(this.slots,t)&&"default"!==t&&(this.compiledSlots[t]=this.preCompileDomNode(this.slots[t],o()({},this.scope,{parent:this}),[u.func,"function"].includes(this.self.propertyTypes&&this.self.propertyTypes[t])));this.slots.default&&this.slots.default.length>0&&(this.compiledSlots.children=this.preCompileDomNodes(this.slots.default,o()({},this.scope,{parent:this}),[u.func,"function"].includes(null==(e=this.self.propertyTypes)?void 0:e.children)))},n.evaluateSlots=function(e){for(var t in this.preparedSlots={},this.compiledSlots)Object.prototype.hasOwnProperty.call(this.compiledSlots,t)&&("children"===t?this.preparedSlots.children=this.evaluatePreCompiledDomNodes(this.compiledSlots[t],e):this.preparedSlots[t]=this.compiledSlots[t](e))},t.isReactComponent=function(e){var t=e.constructor;return"object"==typeof t.content&&(!1===t.attachWebComponentAdapterIfNotExists||"react"===t.content.webComponentAdapterWrapped)},n.determineRootBinding=function(){e.prototype.determineRootBinding.call(this);for(var t=this.parentNode;t;){if(this.self.isReactComponent(t)){this.rootReactInstance=t;break}t=t.parentNode}},n.applyComponentWrapper=function(){if("string"!=typeof this.self.content&&!this.isWrapped){this.isWrapped=!0;var e=this.self.content.wrapped||this.self.content;this.self.content.webComponentAdapterWrapped?this.wrapMemorizingWrapper&&(this.self.content=(0,c.memo)(this.self.content),this.self.content.wrapped=e):this.self.attachWebComponentAdapterIfNotExists?(this.self.content.displayName||(this.self.content.displayName=this.self._name),this.self.content=(0,c.forwardRef)((function(t,n){return(0,c.useImperativeHandle)(n,(function(){return{properties:t}})),(0,c.createElement)(e,t)})),(this.wrapMemorizingWrapper||null===this.wrapMemorizingWrapper)&&(this.self.content=(0,c.memo)(this.self.content)),this.self.content.wrapped=e,this.self.content.webComponentAdapterWrapped="react"):this.wrapMemorizingWrapper&&(this.self.content=(0,c.memo)(this.self.content),this.self.content.wrapped=e)}},n.prepareProperties=function(e){s().extend(e,this.preparedSlots),this.self.removeKnownUnwantedPropertyKeys(this.self,e),e.ref||(this.instance=(0,c.createRef)(),e.ref=this.instance)},t.removeKnownUnwantedPropertyKeys=function(e,t){if("string"!=typeof e.content)for(var n,r=h(["isRoot","isTrusted","__composed"]);!(n=r()).done;){var o=n.value;Object.prototype.hasOwnProperty.call(t,o)&&(Object.prototype.hasOwnProperty.call(e.content,"propTypes")&&!Object.prototype.hasOwnProperty.call(e.content.propTypes,o)||Object.prototype.hasOwnProperty.call(e.content,"wrapped")&&Object.prototype.hasOwnProperty.call(e.content.wrapped,"propTypes")&&!Object.prototype.hasOwnProperty.call(e.content.wrapped.propTypes,o))&&delete t[o]}},t}(n(5).default);m.attachWebComponentAdapterIfNotExists=!0,m.content="div",m.react=f(),m._name="ReactWebComponent";var _={component:m,register:function(e){return void 0===e&&(e=s().stringCamelCaseToDelimited(m._name)),customElements.define(e,m)}};t.default=m}],h={};function v(e){var t=h[e];if(void 0!==t)return t.exports;var n=h[e]={exports:{}};return f[e](n,n.exports,v),n.exports}v.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return v.d(t,{a:t}),t},v.d=function(e,t){for(var n in t)v.o(t,n)&&!v.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},v.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},v.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var m={};return function(){v.r(m),v.d(m,{ReactWeb:function(){return s},Web:function(){return f},reactWebAPI:function(){return u},webAPI:function(){return c},wrapAsWebComponent:function(){return p}});var e=v(0),t=v.n(e),n=v(3),r=v.n(n),o=v(1),i=v.n(o),a=v(15),l=v(5),s=a.default,u=a.api,c=l.api,f=l.default,p=function(e,n,o){var a,l,u,c;void 0===n&&(n="NoName"),void 0===o&&(o={});var f=e._name||(null==(a=e.___types)||null==(l=a.name)?void 0:l.name)||n.replace(/^(.*\/+)?([^/]+)\.tsx$/,"$2");o.propTypes&&(e.propTypes=o.propTypes);var p=e.propTypes||{},d=o.propertyAliases||e.propertyAliases||{},h=i().arrayUnique(Object.keys(p).concat(Object.keys(d)).concat(Object.values(d))),v=o.propertiesToReflectAsAttributes||e.propertiesToReflectAsAttributes||[];if(s.propertiesToReflectAsAttributes)if(Array.isArray(v))v=[].concat(s.propertiesToReflectAsAttributes,v);else if(v instanceof Map)for(var m=0,_=s.propertiesToReflectAsAttributes;m<_.length;m++){var y=_[m];v.set(y,s.propertyTypes[y])}else if(null!==v&&"object"==typeof v)for(var g=0,b=s.propertiesToReflectAsAttributes;g<b.length;g++){var w=b[g];v[w]=s.propertyTypes[w]}var T=h.map((function(e){return i().stringCamelCaseToDelimited(e)})),E=function(n){function i(){for(var r,a=arguments.length,l=new Array(a),s=0;s<a;s++)l[s]=arguments[s];return(r=n.call.apply(n,[this].concat(l))||this).self=i,r.internalProperties=o.internalProperties?t()({},o.internalProperties):e.internalProperties?t()({},e.internalProperties):{},r}return r()(i,n),i}(s);return E.attachWebComponentAdapterIfNotExists="boolean"!=typeof o.attachWebComponentAdapterIfNotExists||o.attachWebComponentAdapterIfNotExists,E.content=e,E.observedAttributes=s.observedAttributes.concat(T).concat(T.map((function(e){return"-"+e}))),E.controllableProperties=e.controllableProperties||o.controllableProperties||[],E.eventToPropertyMapping=null===o.eventToPropertyMapping?o.eventToPropertyMapping:o.eventToPropertyMapping?t()({},o.eventToPropertyMapping):null===e.eventToPropertyMapping?e.eventToPropertyMapping:e.eventToPropertyMapping?t()({},e.eventToPropertyMapping):{},E.propertyAliases=t()({},s.propertyAliases,d),E.propertiesToReflectAsAttributes=v,E.propertyTypes=t()({},s.propertyTypes,p),E.renderProperties=null!==(u=null!==(c=o.renderProperties)&&void 0!==c?c:e.renderProperties)&&void 0!==u?u:s.renderProperties,E._name=f,{component:E,register:function(e){return void 0===e&&(e=i().stringCamelCaseToDelimited(f)),customElements.define(e,E)}}};m.default=p}(),m}())},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__2__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__3__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__4__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__5__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__6__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__7__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__8__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__9__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__10__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__11__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__12__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__13__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__14__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__15__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__16__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__17__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__18__},function(module,__unused_webpack_exports,__nested_webpack_require_45995__){var __dirname="/",e,r,t,n,i,o,u;if(module=__nested_webpack_require_45995__.nmd(module),null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&null!=__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window=void 0===__nested_webpack_require_45995__.g||null===__nested_webpack_require_45995__.g?{}:__nested_webpack_require_45995__.g;module.exports=(e=__nested_webpack_require_45995__(2),r=__nested_webpack_require_45995__(7),t=__nested_webpack_require_45995__(8),n=__nested_webpack_require_45995__(9),i=__nested_webpack_require_45995__(10),o=__nested_webpack_require_45995__(3),u=__nested_webpack_require_45995__(11),function(){var a=[function(e){e.exports=u},function(t){t.exports=e},,function(e){e.exports=o},function(e){e.exports=t},,function(e,t,n){n.d(t,{WrapTooltip:function(){return u}});var r=n(1),o=n.n(r),i=n(10),a=n(12),l=n(0),s=!a.Tooltip||a.Tooltip.isDummy,u=function(e){var t=e.children,n=e.options;if("string"==typeof n)return s?(0,l.jsx)("div",{className:"generic-tooltip",title:n,children:t}):(0,l.jsx)(a.Tooltip,{content:(0,l.jsx)(i.Typography,{use:"caption",children:n}),children:(0,l.jsx)("div",{className:"generic-tooltip",children:t})});if(null!==n&&"object"==typeof n){if("string"==typeof n.content){if(s)return(0,l.jsx)("div",{className:"generic-tooltip",title:n.content,children:t});n=o()({},n,{content:(0,l.jsx)(i.Typography,{use:"caption",children:n.content})})}return s?(0,l.jsx)("div",{className:"generic-tooltip",children:t}):(0,l.jsx)(a.Tooltip,o()({},n,{children:(0,l.jsx)("div",{className:"generic-tooltip",children:t})}))}return(0,l.jsx)(l.Fragment,{children:t})}},,,,function(e){e.exports=i},function(e,t,n){n.d(t,{WrapThemeProvider:function(){return i}});var r=n(4),o=n(0),i=function(e){var t=e.children,n=e.configuration,i=e.wrap;return n?(0,o.jsx)(r.ThemeProvider,{options:n,wrap:!1!==i,children:t}):t}},function(e){e.exports=n},function(e,t,n){n.d(t,{x:function(){return i}});var r=n(3),o=n(0),i=function(e){var t=e.children;return e.strict?(0,o.jsx)(r.StrictMode,{children:t}):(0,o.jsx)(o.Fragment,{children:t})}},function(e){e.exports=r}],l={};function s(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={exports:{}};return a[e](n,n.exports,s),n.exports}s.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return s.d(t,{a:t}),t},s.d=function(e,t){for(var n in t)s.o(t,n)&&!s.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var c={};return function(){s.r(c),s.d(c,{WrapConfigurations:function(){return d},createWrapConfigurationsComponent:function(){return h}});var e=s(1),t=s.n(e),n=s(14),r=s.n(n),o=s(3),i=s(4),a=s(13),l=s(11),u=s(6),f=s(0),p=["strict","theme","themeConfiguration","tooltip","wrap"],d=function(e){var t=e.children,n=e.strict,r=e.themeConfiguration,o=e.tooltip,i=e.wrap;return(0,f.jsx)(a.x,{strict:Boolean(n),children:(0,f.jsx)(u.WrapTooltip,{options:o,children:(0,f.jsx)(l.WrapThemeProvider,{configuration:r,wrap:i,children:t})})})};function h(e,n){void 0===n&&(n={});var a=function(o,a){var l=o.strict,s=o.theme,u=o.themeConfiguration,c=o.tooltip,h=o.wrap,v=r()(o,p),m=(0,f.jsx)(e,t()({},t()({},v,!1===n.withReference?{}:a?{ref:a}:{},n.withThemeWrapper&&s?{theme:s}:{})));return(0,f.jsx)(d,{strict:l,themeConfiguration:u,tooltip:c,wrap:h,children:n.withThemeWrapper&&s?(0,f.jsx)(i.Theme,{use:s,wrap:h,children:m}):m})};return n.withReference?(0,o.forwardRef)(a):a}c.default=d}(),c}())},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__52__}],__webpack_module_cache__={};function __nested_webpack_require_50079__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__nested_webpack_require_50079__),n.loaded=!0,n.exports}__nested_webpack_require_50079__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __nested_webpack_require_50079__.d(t,{a:t}),t},__nested_webpack_require_50079__.d=function(e,t){for(var n in t)__nested_webpack_require_50079__.o(t,n)&&!__nested_webpack_require_50079__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__nested_webpack_require_50079__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__nested_webpack_require_50079__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__nested_webpack_require_50079__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__nested_webpack_require_50079__.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e};var __nested_webpack_exports__={};return function(){__nested_webpack_require_50079__.r(__nested_webpack_exports__),__nested_webpack_require_50079__.d(__nested_webpack_exports__,{SliderInput:function(){return l}});var e=__nested_webpack_require_50079__(2),t=__nested_webpack_require_50079__.n(e),n=__nested_webpack_require_50079__(0),r=__nested_webpack_require_50079__(19),o=__nested_webpack_require_50079__(1),i=__nested_webpack_require_50079__.n(o),a=__nested_webpack_require_50079__(52),l=i()((0,r.createWrapConfigurationsComponent)(a.Slider),"SliderInput",{eventToPropertyMapping:{onChange:function(e,n){return t()({},n.externalProperties,{value:e.detail.value})},onInput:function(e){return[{value:e.detail.value},{value:e.detail.value}]}},propTypes:{disabled:n.boolean,discrete:n.boolean,displayMarkers:n.boolean,max:n.number,min:n.number,step:n.number,theme:n.string,themeConfiguration:n.object,onChange:n.func,onInput:n.func,value:n.number}});__nested_webpack_exports__.default=l}(),__nested_webpack_exports__}()},module.exports=t(__webpack_require__(26),__webpack_require__(44),__webpack_require__(176),__webpack_require__(23),__webpack_require__(58),__webpack_require__(0),__webpack_require__(18),__webpack_require__(116),__webpack_require__(40),__webpack_require__(66),__webpack_require__(67),__webpack_require__(68),__webpack_require__(69),__webpack_require__(41),__webpack_require__(75),__webpack_require__(124),__webpack_require__(125),__webpack_require__(141),__webpack_require__(73))}],__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.loaded=!0,n.exports}__webpack_require__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=function(e,t){for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e};var __webpack_exports__=__webpack_require__(185);return __webpack_exports__}()}));
99
+ var d=function(){function e(e){void 0===e&&(e={}),this.adapter=e}return Object.defineProperty(e,"cssClasses",{get:function(){return{}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"strings",{get:function(){return{}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"numbers",{get:function(){return{}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"defaultAdapter",{get:function(){return{}},enumerable:!0,configurable:!0}),e.prototype.init=function(){},e.prototype.destroy=function(){},e}(),h={ACTIVE:"mdc-slider--active",DISABLED:"mdc-slider--disabled",DISCRETE:"mdc-slider--discrete",FOCUS:"mdc-slider--focus",HAS_TRACK_MARKER:"mdc-slider--display-markers",IN_TRANSIT:"mdc-slider--in-transit",IS_DISCRETE:"mdc-slider--discrete",DISABLE_TOUCH_ACTION:"mdc-slider--disable-touch-action"},v={ARIA_DISABLED:"aria-disabled",ARIA_VALUEMAX:"aria-valuemax",ARIA_VALUEMIN:"aria-valuemin",ARIA_VALUENOW:"aria-valuenow",CHANGE_EVENT:"MDCSlider:change",INPUT_EVENT:"MDCSlider:input",PIN_VALUE_MARKER_SELECTOR:".mdc-slider__pin-value-marker",STEP_DATA_ATTR:"data-step",THUMB_CONTAINER_SELECTOR:".mdc-slider__thumb-container",TRACK_MARKER_CONTAINER_SELECTOR:".mdc-slider__track-marker-container",TRACK_SELECTOR:".mdc-slider__track"},m={PAGE_FACTOR:4},_=void 0!==window,y=_&&!!window.PointerEvent,g=y?["pointerdown"]:["mousedown","touchstart"],b=y?["pointerup"]:["mouseup","touchend"],w={mousedown:"mousemove",pointerdown:"pointermove",touchstart:"touchmove"},T="ArrowDown",E="ArrowLeft",k="ArrowRight",x="ArrowUp",O="End",P="Home",S="PageDown",C="PageUp",A=function(e){function t(n){var r=e.call(this,u(u({},t.defaultAdapter),n))||this;return r.savedTabIndex_=NaN,r.active_=!1,r.inTransit_=!1,r.isDiscrete_=!1,r.hasTrackMarker_=!1,r.handlingThumbTargetEvt_=!1,r.min_=0,r.max_=100,r.step_=0,r.value_=0,r.disabled_=!1,r.preventFocusState_=!1,r.thumbContainerPointerHandler_=function(){return r.handlingThumbTargetEvt_=!0},r.interactionStartHandler_=function(e){return r.handleDown_(e)},r.keydownHandler_=function(e){return r.handleKeydown_(e)},r.focusHandler_=function(){return r.handleFocus_()},r.blurHandler_=function(){return r.handleBlur_()},r.resizeHandler_=function(){return r.layout()},r}return function(e,t){function n(){this.constructor=e}s(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}(t,e),Object.defineProperty(t,"cssClasses",{get:function(){return h},enumerable:!0,configurable:!0}),Object.defineProperty(t,"strings",{get:function(){return v},enumerable:!0,configurable:!0}),Object.defineProperty(t,"numbers",{get:function(){return m},enumerable:!0,configurable:!0}),Object.defineProperty(t,"defaultAdapter",{get:function(){return{hasClass:function(){return!1},addClass:function(){},removeClass:function(){},getAttribute:function(){return null},setAttribute:function(){},removeAttribute:function(){},computeBoundingRect:function(){return{top:0,right:0,bottom:0,left:0,width:0,height:0}},getTabIndex:function(){return 0},registerInteractionHandler:function(){},deregisterInteractionHandler:function(){},registerThumbContainerInteractionHandler:function(){},deregisterThumbContainerInteractionHandler:function(){},registerBodyInteractionHandler:function(){},deregisterBodyInteractionHandler:function(){},registerResizeHandler:function(){},deregisterResizeHandler:function(){},notifyInput:function(){},notifyChange:function(){},setThumbContainerStyleProperty:function(){},setTrackStyleProperty:function(){},setMarkerValue:function(){},setTrackMarkers:function(){},isRTL:function(){return!1}}},enumerable:!0,configurable:!0}),t.prototype.init=function(){var e=this;this.isDiscrete_=this.adapter.hasClass(h.IS_DISCRETE),this.hasTrackMarker_=this.adapter.hasClass(h.HAS_TRACK_MARKER),g.forEach((function(t){e.adapter.registerInteractionHandler(t,e.interactionStartHandler_),e.adapter.registerThumbContainerInteractionHandler(t,e.thumbContainerPointerHandler_)})),y&&this.adapter.addClass(h.DISABLE_TOUCH_ACTION),this.adapter.registerInteractionHandler("keydown",this.keydownHandler_),this.adapter.registerInteractionHandler("focus",this.focusHandler_),this.adapter.registerInteractionHandler("blur",this.blurHandler_),this.adapter.registerResizeHandler(this.resizeHandler_),this.layout(),this.isDiscrete_&&0===this.getStep()&&(this.step_=1)},t.prototype.destroy=function(){var e=this;g.forEach((function(t){e.adapter.deregisterInteractionHandler(t,e.interactionStartHandler_),e.adapter.deregisterThumbContainerInteractionHandler(t,e.thumbContainerPointerHandler_)})),this.adapter.deregisterInteractionHandler("keydown",this.keydownHandler_),this.adapter.deregisterInteractionHandler("focus",this.focusHandler_),this.adapter.deregisterInteractionHandler("blur",this.blurHandler_),this.adapter.deregisterResizeHandler(this.resizeHandler_)},t.prototype.setupTrackMarker=function(){this.isDiscrete_&&this.hasTrackMarker_&&0!==this.getStep()&&this.adapter.setTrackMarkers(this.getStep(),this.getMax(),this.getMin())},t.prototype.layout=function(){this.rect_=this.adapter.computeBoundingRect(),this.updateUIForCurrentValue_()},t.prototype.getValue=function(){return this.value_},t.prototype.setValue=function(e){this.setValue_(e,!1)},t.prototype.getMax=function(){return this.max_},t.prototype.setMax=function(e){if(e<this.min_)throw new Error("Cannot set max to be less than the slider's minimum value");this.max_=e,this.setValue_(this.value_,!1,!0),this.adapter.setAttribute(v.ARIA_VALUEMAX,String(this.max_)),this.setupTrackMarker()},t.prototype.getMin=function(){return this.min_},t.prototype.setMin=function(e){if(e>this.max_)throw new Error("Cannot set min to be greater than the slider's maximum value");this.min_=e,this.setValue_(this.value_,!1,!0),this.adapter.setAttribute(v.ARIA_VALUEMIN,String(this.min_)),this.setupTrackMarker()},t.prototype.getStep=function(){return this.step_},t.prototype.setStep=function(e){if(e<0)throw new Error("Step cannot be set to a negative number");this.isDiscrete_&&("number"!=typeof e||e<1)&&(e=1),this.step_=e,this.setValue_(this.value_,!1,!0),this.setupTrackMarker()},t.prototype.isDisabled=function(){return this.disabled_},t.prototype.setDisabled=function(e){this.disabled_=e,this.toggleClass_(h.DISABLED,this.disabled_),this.disabled_?(this.savedTabIndex_=this.adapter.getTabIndex(),this.adapter.setAttribute(v.ARIA_DISABLED,"true"),this.adapter.removeAttribute("tabindex")):(this.adapter.removeAttribute(v.ARIA_DISABLED),isNaN(this.savedTabIndex_)||this.adapter.setAttribute("tabindex",String(this.savedTabIndex_)))},t.prototype.handleDown_=function(e){var t=this;if(!this.disabled_){this.preventFocusState_=!0,this.setInTransit_(!this.handlingThumbTargetEvt_),this.handlingThumbTargetEvt_=!1,this.setActive_(!0);var n=function(e){t.handleMove_(e)},r=w[e.type],o=function(){t.handleUp_(),t.adapter.deregisterBodyInteractionHandler(r,n),b.forEach((function(e){return t.adapter.deregisterBodyInteractionHandler(e,o)}))};this.adapter.registerBodyInteractionHandler(r,n),b.forEach((function(e){return t.adapter.registerBodyInteractionHandler(e,o)})),this.setValueFromEvt_(e)}},t.prototype.handleMove_=function(e){e.preventDefault(),this.setValueFromEvt_(e)},t.prototype.handleUp_=function(){this.setActive_(!1),this.adapter.notifyChange()},t.prototype.getClientX_=function(e){return e.targetTouches&&e.targetTouches.length>0?e.targetTouches[0].clientX:e.clientX},t.prototype.setValueFromEvt_=function(e){var t=this.getClientX_(e),n=this.computeValueFromClientX_(t);this.setValue_(n,!0)},t.prototype.computeValueFromClientX_=function(e){var t=this.max_,n=this.min_,r=(e-this.rect_.left)/this.rect_.width;return this.adapter.isRTL()&&(r=1-r),n+r*(t-n)},t.prototype.handleKeydown_=function(e){var t=this.getKeyId_(e),n=this.getValueForKeyId_(t);isNaN(n)||(e.preventDefault(),this.adapter.addClass(h.FOCUS),this.setValue_(n,!0),this.adapter.notifyChange())},t.prototype.getKeyId_=function(e){return e.key===E||37===e.keyCode?E:e.key===k||39===e.keyCode?k:e.key===x||38===e.keyCode?x:e.key===T||40===e.keyCode?T:e.key===P||36===e.keyCode?P:e.key===O||35===e.keyCode?O:e.key===C||33===e.keyCode?C:e.key===S||34===e.keyCode?S:""},t.prototype.getValueForKeyId_=function(e){var t=this,n=t.max_,r=t.min_,o=t.step_||(n-r)/100;switch(this.adapter.isRTL()&&(e===E||e===k)&&(o=-o),e){case E:case T:return this.value_-o;case k:case x:return this.value_+o;case P:return this.min_;case O:return this.max_;case C:return this.value_+o*m.PAGE_FACTOR;case S:return this.value_-o*m.PAGE_FACTOR;default:return NaN}},t.prototype.handleFocus_=function(){this.preventFocusState_||this.adapter.addClass(h.FOCUS)},t.prototype.handleBlur_=function(){this.preventFocusState_=!1,this.adapter.removeClass(h.FOCUS)},t.prototype.setValue_=function(e,t,n){if(void 0===n&&(n=!1),e!==this.value_||n){var r=this.min_,o=this.max_,i=e===r||e===o;this.step_&&!i&&(e=this.quantize_(e)),e<r?e=r:e>o&&(e=o),e=e||0,this.value_=e,this.adapter.setAttribute(v.ARIA_VALUENOW,String(this.value_)),this.updateUIForCurrentValue_(),t&&(this.adapter.notifyInput(),this.isDiscrete_&&this.adapter.setMarkerValue(e))}},t.prototype.quantize_=function(e){return Math.round(e/this.step_)*this.step_},t.prototype.updateUIForCurrentValue_=function(){var e=this,t=this,n=t.max_,r=t.min_,o=(t.value_-r)/(n-r),i=o*this.rect_.width;this.adapter.isRTL()&&(i=this.rect_.width-i);var a=_?function(e,t){if(p(e)&&t in c){var n=e.document.createElement("div"),r=c[t],o=r.standard,i=r.prefixed;return o in n.style?o:i}return t}(window,"transform"):"transform",l=_?function(e,t){if(p(e)&&t in f){var n=e.document.createElement("div"),r=f[t],o=r.standard,i=r.prefixed;return r.cssProperty in n.style?o:i}return t}(window,"transitionend"):"transitionend";if(this.inTransit_){var s=function(){e.setInTransit_(!1),e.adapter.deregisterThumbContainerInteractionHandler(l,s)};this.adapter.registerThumbContainerInteractionHandler(l,s)}requestAnimationFrame((function(){e.adapter.setThumbContainerStyleProperty(a,"translateX("+i+"px) translateX(-50%)"),e.adapter.setTrackStyleProperty(a,"scaleX("+o+")")}))},t.prototype.setActive_=function(e){this.active_=e,this.toggleClass_(h.ACTIVE,this.active_)},t.prototype.setInTransit_=function(e){this.inTransit_=e,this.toggleClass_(h.IN_TRANSIT,this.inTransit_)},t.prototype.toggleClass_=function(e,t){t?this.adapter.addClass(e):this.adapter.removeClass(e)},t}(d),M=o.memo(o.forwardRef((function(e,t){return o.createElement("div",{ref:t,className:"mdc-slider__track"})}))),N=o.memo(o.forwardRef((function(e,t){return o.createElement("div",{ref:t,className:"mdc-slider__track-marker-container"})}))),L=o.memo((function(e){var t=e.value;return o.createElement("div",{className:"mdc-slider__pin"},o.createElement("span",{className:"mdc-slider__pin-value-marker"},t))})),D=o.memo((function(){return o.createElement("svg",{className:"mdc-slider__thumb",width:"21",height:"21"},o.createElement("circle",{cx:"10.5",cy:"10.5",r:"7.875"}))})),R=o.memo((function(){return o.createElement("div",{className:"mdc-slider__focus-ring"})})),j=(0,i.LM)((function(e,t){var n=function(e){var t=(0,o.useRef)(),n=(0,o.useRef)(),i=(0,a.j)({props:e,elements:{rootEl:!0,thumbContainerEl:!0,sliderPinEl:!0},foundation:function(e){var r,o,i,a=e.rootEl,u=e.thumbContainerEl,c=e.sliderPinEl,f=e.emit;return new A({hasClass:function(e){return a.hasClass(e)},addClass:function(e){return a.addClass(e)},removeClass:function(e){return a.removeClass(e)},getAttribute:function(e){return a.getProp(e)},setAttribute:(r=function(e,t){return a.setProp(e,t)},o=300,function(){var e=this,t=arguments;null!==i&&clearTimeout(i),i=setTimeout((function(){i=null,r.apply(e,t)}),o)}),removeAttribute:function(e){return a.removeProp(e)},computeBoundingRect:function(){return a.ref?a.ref.getBoundingClientRect():l.B},getTabIndex:function(){return a.ref?a.ref.tabIndex:0},registerInteractionHandler:function(e,t){a.addEventListener(e,t)},deregisterInteractionHandler:function(e,t){a.removeEventListener(e,t)},registerThumbContainerInteractionHandler:function(e,t){u.addEventListener(e,t)},deregisterThumbContainerInteractionHandler:function(e,t){u.removeEventListener(e,t)},registerBodyInteractionHandler:function(e,t){document.body&&document.body.addEventListener(e,t)},deregisterBodyInteractionHandler:function(e,t){document.body&&document.body.removeEventListener(e,t)},registerResizeHandler:function(e){window.addEventListener("resize",e)},deregisterResizeHandler:function(e){window.removeEventListener("resize",e)},notifyInput:function(){f("onInput",{value:s.getValue()})},notifyChange:function(){f("onChange",{value:s.getValue()})},setThumbContainerStyleProperty:function(e,t){u.setStyle(e,t)},setTrackStyleProperty:function(e,n){var r;null===(r=t.current)||void 0===r||r.style.setProperty(e,n)},setMarkerValue:function(e){c.setProp("value",e)},setTrackMarkers:function(e,t,r){var o,i=e.toLocaleString(),a="linear-gradient(to right, currentColor 2px, transparent 0) 0 center / calc((100% - 2px) / (("+t.toLocaleString()+" - "+r.toLocaleString()+") / "+i+")) 100% repeat-x";null===(o=n.current)||void 0===o||o.style.setProperty("background",a)},isRTL:function(){return!!a.ref&&"rtl"===getComputedStyle(a.ref).direction}})}}),s=i.foundation,u=(0,r._T)(i,["foundation"]);return(0,o.useEffect)((function(){void 0!==e.max&&s.setMax(+e.max)}),[e.max,s]),(0,o.useEffect)((function(){void 0!==e.min&&s.setMin(+e.min)}),[e.min,s]),(0,o.useEffect)((function(){var t=void 0!==e.value?Number(e.value):s.getValue(),n=s.getMin(),r=s.getMax();t<n&&(console.warn("Attempted to set slider to "+t+" which is less than min: "+n),t=n),t>r&&(console.warn("Attempted to set slider to "+t+" which is greater than max: "+r),t=r),s.setValue(t)}),[e.value,s]),(0,o.useEffect)((function(){void 0!==e.step&&s.setStep(+e.step)}),[e.step,s]),(0,o.useEffect)((function(){void 0!==e.disabled&&s.setDisabled(e.disabled)}),[e.disabled,s]),(0,o.useEffect)((function(){void 0!==e.discrete&&(s.isDiscrete_=e.discrete),e.discrete&&0===s.getStep()&&s.setStep(1)}),[e.discrete,s]),(0,o.useEffect)((function(){var t=s.hasTrackMarker_;void 0!==e.displayMarkers&&e.displayMarkers!==t&&(s.hasTrackMarker_=e.displayMarkers,window.requestAnimationFrame((function(){return s.setupTrackMarker()})))}),[e.displayMarkers,s]),(0,o.useEffect)((function(){var e=s.handleDown_.bind(s);s.handleDown_=function(t){t.persist(),e(t)}}),[s]),(0,r.pi)({setTrackRef:function(e){return t.current=e},setTrackMarkerContainerRef:function(e){return n.current=e}},u)}(e),s=n.rootEl,u=n.thumbContainerEl,c=n.sliderPinEl,f=n.setTrackRef,p=n.setTrackMarkerContainerRef,d=e.value,h=(e.min,e.max),v=e.discrete,m=e.displayMarkers,_=e.step,y=e.disabled,g=(e.onChange,e.onInput,e.children),b=(e.foundationRef,(0,r._T)(e,["value","min","max","discrete","displayMarkers","step","disabled","onChange","onInput","children","foundationRef"])),w=(0,i.oC)(e,["mdc-slider",{"mdc-slider--discrete":v,"mdc-slider--display-markers":m&&v}]),T=_?{"data-step":_}:{};return m&&!v&&console.warn("The 'displayMarkers' prop on rmwc Slider will\n only work in conjunction with the 'discrete' prop"),o.createElement(i.Vp,(0,r.pi)({tabIndex:0,role:"slider","aria-valuemax":h,"aria-valuenow":d,"aria-label":"Select Value"},y?{"aria-disabled":y}:{},T,b,{ref:t,element:s,className:w}),o.createElement("div",{className:"mdc-slider__track-container"},o.createElement(M,{ref:f}),m&&o.createElement(N,{ref:p})),o.createElement(i.Vp,{element:u,className:"mdc-slider__thumb-container"},v&&o.createElement(L,{value:c.getProp("value")}),o.createElement(D,null),o.createElement(R,null)),g)}))},,,,,,,,,function(module,__unused_webpack_exports,__webpack_require__){var __dirname="/",t;if(module=__webpack_require__.nmd(module),null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&null!=__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window=void 0===__webpack_require__.g||null===__webpack_require__.g?{}:__webpack_require__.g;t=function(__WEBPACK_EXTERNAL_MODULE__2__,__WEBPACK_EXTERNAL_MODULE__0__,__WEBPACK_EXTERNAL_MODULE__52__,__WEBPACK_EXTERNAL_MODULE__12__,__WEBPACK_EXTERNAL_MODULE__4__,__WEBPACK_EXTERNAL_MODULE__3__,__WEBPACK_EXTERNAL_MODULE__13__,__WEBPACK_EXTERNAL_MODULE__14__,__WEBPACK_EXTERNAL_MODULE__5__,__WEBPACK_EXTERNAL_MODULE__15__,__WEBPACK_EXTERNAL_MODULE__16__,__WEBPACK_EXTERNAL_MODULE__17__,__WEBPACK_EXTERNAL_MODULE__18__,__WEBPACK_EXTERNAL_MODULE__6__,__WEBPACK_EXTERNAL_MODULE__7__,__WEBPACK_EXTERNAL_MODULE__8__,__WEBPACK_EXTERNAL_MODULE__9__,__WEBPACK_EXTERNAL_MODULE__10__,__WEBPACK_EXTERNAL_MODULE__11__){return function(){var __webpack_modules__=[function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__0__},function(module,__unused_webpack_exports,__nested_webpack_require_4225__){var __dirname="/",e,t,r,n,i,o,s,a,l,p,c,u,d;if(module=__nested_webpack_require_4225__.nmd(module),null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&null!=__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window=void 0===__nested_webpack_require_4225__.g||null===__nested_webpack_require_4225__.g?{}:__nested_webpack_require_4225__.g;module.exports=(e=__nested_webpack_require_4225__(2),t=__nested_webpack_require_4225__(12),r=__nested_webpack_require_4225__(4),n=__nested_webpack_require_4225__(0),i=__nested_webpack_require_4225__(3),o=__nested_webpack_require_4225__(13),s=__nested_webpack_require_4225__(14),a=__nested_webpack_require_4225__(5),l=__nested_webpack_require_4225__(15),p=__nested_webpack_require_4225__(16),c=__nested_webpack_require_4225__(17),u=__nested_webpack_require_4225__(18),d=__nested_webpack_require_4225__(6),function(){var f=[function(t){t.exports=e},function(e){e.exports=r},function(e){e.exports=n},function(e){e.exports=t},function(e,t,n){var r=n(0),o=n.n(r),i=n(1),a=n.n(i),l=n(2);t.default=function(e){return void 0===e&&(e={}),e=o()({readAttribute:!0,type:l.string},e),function(t,n){if("string"==typeof n){var r,i=t.self||t.constructor;if(e.readAttribute){Object.prototype.hasOwnProperty.call(i,"observedAttributes")||(i.observedAttributes=i.observedAttributes?[].concat(i.observedAttributes):[]);var l=a().stringCamelCaseToDelimited(n);i.observedAttributes.includes(l)||i.observedAttributes.push(l)}e.type&&(Object.prototype.hasOwnProperty.call(i,"propertyTypes")||(i.propertyTypes=i.propertyTypes?o()({},i.propertyTypes):{}),!e.update&&Object.prototype.hasOwnProperty.call(i,n)||(i.propertyTypes[n]=e.type)),e.writeAttribute&&(Object.prototype.hasOwnProperty.call(i,"propertiesToReflectAsAttributes")||(i.propertiesToReflectAsAttributes=i.propertiesToReflectAsAttributes?a().copy(i.propertiesToReflectAsAttributes):[]),(e.update||i.propertiesToReflectAsAttributes instanceof Map&&!i.propertiesToReflectAsAttributes.has(n)||Array.isArray(i.propertiesToReflectAsAttributes)&&!i.propertiesToReflectAsAttributes.includes(n)||null!==i.propertiesToReflectAsAttributes&&"object"==typeof i.propertiesToReflectAsAttributes&&!Object.prototype.hasOwnProperty.call(i.propertiesToReflectAsAttributes,n))&&("boolean"==typeof e.writeAttribute?!0===e.writeAttribute&&i.propertyTypes&&Object.prototype.hasOwnProperty.call(i.propertyTypes,n)&&(r=i.propertyTypes[n]):r=e.writeAttribute,void 0!==r&&(Array.isArray(i.propertiesToReflectAsAttributes)&&(!0===e.writeAttribute?i.propertiesToReflectAsAttributes.push(n):i.propertiesToReflectAsAttributes=i.normalizePropertyTypeList(i.propertiesToReflectAsAttributes)),i.propertiesToReflectAsAttributes instanceof Map&&i.propertiesToReflectAsAttributes.set(n,r),null!==i.propertiesToReflectAsAttributes&&"object"==typeof i.propertiesToReflectAsAttributes&&(i.propertiesToReflectAsAttributes[n]=r)))),e.alias&&(Object.prototype.hasOwnProperty.call(i,"propertyAliases")||(i.propertyAliases=i.propertyAliases?o()({},i.propertyAliases):{}),!e.update&&Object.prototype.hasOwnProperty.call(i,n)||(i.propertyAliases[n]=e.alias))}}}},function(e,t,n){n.d(t,{api:function(){return C}});var r,o,i,a,l=n(6),s=n.n(l),u=n(0),c=n.n(u),f=n(7),p=n.n(f),d=n(8),h=n.n(d),v=n(3),m=n.n(v),_=n(9),y=n.n(_),g=(n(10),n(11)),b=n.n(g),w=n(1),T=n.n(w),E=n(2),k=n(4);function x(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?O(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var P="undefined"==typeof HTMLElement?function(){}:HTMLElement,S=(r=(0,k.default)({type:E.boolean,writeAttribute:!0}),a=function(e){function t(){var n;return(n=e.call(this)||this).batchAttributeUpdates=!0,n.batchPropertyUpdates=!0,n.batchUpdates=!0,n.batchedAttributeUpdateRunning=!0,n.batchedPropertyUpdateRunning=!0,n.batchedUpdateRunning=!0,n.parent=null,n.rootInstance=null,n.scope={Tools:T()},n.domNodeEventBindings=new Map,n.domNodeTemplateCache=new Map,n.externalProperties={},n.ignoreAttributeUpdateObservations=!1,n.internalProperties={},n.outputEventNames=new Set,n.instance=null,p()(n,"isRoot",i,h()(n)),n.root=void 0,n.runDomConnectionAndRenderingInSameEventQueue=!1,n.self=t,n.slots={},n.self=n.constructor,n.self._propertiesToReflectAsAttributes||(n.self._propertiesToReflectAsAttributes=n.self.normalizePropertyTypeList(n.self.propertiesToReflectAsAttributes)),n.generateAliasIndex(),n.root=h()(n),n.defineGetterAndSetterInterface(),n}m()(t,e);var n=t.prototype;return n.attributeChangedCallback=function(e,t,n){this.ignoreAttributeUpdateObservations||t===n||this.updateAttribute(e,n)},n.updateAttribute=function(e,t){var n=this;this.evaluateStringOrNullAndSetAsProperty(e,t),this.batchAttributeUpdates?this.batchedAttributeUpdateRunning||this.batchedUpdateRunning||(this.batchedAttributeUpdateRunning=!0,this.batchedUpdateRunning=!0,T().timeout((function(){n.batchedAttributeUpdateRunning=!1,n.batchedUpdateRunning=!1,n.render("attributeChanged")}))):this.render("attributeChanged")},n.connectedCallback=function(){var e=this;try{this.isConnected=!0}catch(e){}this.parent=this,this.rootInstance=this,this.attachEventHandler(),this.self.determineRootBinding&&this.determineRootBinding(),this.self.applyRootBinding&&this.isRoot&&(this.determineRenderScope(),this.applyBinding(this,this.scope)),this.batchedAttributeUpdateRunning=!1,this.batchedPropertyUpdateRunning=!1,this.batchedUpdateRunning=!1,this.grabGivenSlots(),this.reflectExternalProperties(this.externalProperties),this.runDomConnectionAndRenderingInSameEventQueue?this.render("connected"):T().timeout((function(){return e.render("connected")}))},n.disconnectedCallback=function(){try{this.isConnected=!1}catch(e){}for(var e,t=x(this.domNodeEventBindings.values());!(e=t()).done;)for(var n,r=x(e.value.values());!(n=r()).done;)(0,n.value)();this.slots={}},n.defineGetterAndSetterInterface=function(){for(var e,t=this,n=function(){var n=e.value;Object.prototype.hasOwnProperty.call(t,n)&&t.setPropertyValue(n,t[n]),Object.defineProperty(t,n,{configurable:!0,get:function(){return t.getPropertyValue(n)},set:function(e){t.setPropertyValue(n,e),t.triggerPropertySpecificRendering(n,e)}})},r=x(T().arrayUnique(Object.keys(this.self.propertyTypes).concat(Object.keys(this.self._propertyAliasIndex))));!(e=r()).done;)n()},n.getPropertyAlias=function(e){return Object.prototype.hasOwnProperty.call(this.self._propertyAliasIndex,e)?this.self._propertyAliasIndex[e]:null},n.getPropertyValue=function(e){var n,r,o=null!=(n=this.instance)&&null!=(n=n.current)&&n.properties&&(Object.prototype.hasOwnProperty.call(!t.propertyTypes,e)||Object.prototype.hasOwnProperty.call(this.instance.current.properties,e))?this.instance.current.properties[e]:this.externalProperties[e];return null!=(r=this.instance)&&null!=(r=r.current)&&r.state&&Object.prototype.hasOwnProperty.call(this.instance.current.state,e)?this.instance.current.state[e]:o},n.setExternalPropertyValue=function(e,t){this.externalProperties[e]=t;var n=this.getPropertyAlias(e);n&&(this.externalProperties[n]=t)},n.setInternalPropertyValue=function(e,t){this.internalProperties[e]=t;var n=this.getPropertyAlias(e);n&&(this.internalProperties[n]=t)},n.setPropertyValue=function(e,t){var n;this.reflectProperties(((n={})[e]=t,n)),this.setInternalPropertyValue(e,t)},n.triggerPropertySpecificRendering=function(e,t){var n=this;if(this.batchPropertyUpdates)this.batchedPropertyUpdateRunning||this.batchedUpdateRunning||(this.batchedPropertyUpdateRunning=!0,this.batchedUpdateRunning=!0,T().timeout((function(){void 0!==t&&n.isStateProperty(e)?(n.render("preStatePropertyChanged"),T().timeout((function(){n.setInternalPropertyValue(e,void 0),n.batchedPropertyUpdateRunning=!1,n.batchedUpdateRunning=!1,n.render("postStatePropertyChanged"),n.triggerOutputEvents()})).then(T().noop,T().noop)):(n.batchedPropertyUpdateRunning=!1,n.batchedUpdateRunning=!1,n.render("propertyChanged"),n.triggerOutputEvents())})));else{var r=this.isStateProperty(e);this.render(r?"preStatePropertyChanged":"propertyChanged"),void 0!==t&&r&&(this.setInternalPropertyValue(e,void 0),this.render("postStatePropertyChanged")),this.triggerOutputEvents()}},n.applyBinding=function(e,t){var n=this;if(e.getAttributeNames)for(var r,o=function(){var o=r.value,i="";if(o.startsWith("data-bind-")?i=o.substring(10):o.startsWith("bind-")&&(i=o.substring(5)),i){var a=e.getAttribute(o);if(null===a)return"continue";if(i.startsWith("attribute-")||i.startsWith("property-")){var l=T().stringEvaluate(a,t,!1,e);if(l.error)return console.warn('Error occurred during processing given attribute binding "'+o+'" on node:',e,l.error),"continue";i.startsWith("attribute-")?e.setAttribute(i.substring(10),l.result):e[T().stringDelimitedToCamelCase(i.substring(9))]=l.result}else if(i.startsWith("on-")){n.domNodeEventBindings.has(e)||n.domNodeEventBindings.set(e,new Map);var s=n.domNodeEventBindings.get(e);i=T().stringDelimitedToCamelCase(i.substring(3)),s.has(i)&&s.get(i)(),t=c()({event:void 0,parameters:void 0},t);var u=T().stringCompile(a,t,!0);if(u.error)console.warn('Error occurred during compiling given event binding "'+o+'" on node:',e,u.error);else{var f=u.templateFunction.bind(e),p=function(){for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];t.event=r[0],t.parameters=r;try{f.apply(void 0,u.originalScopeNames.map((function(e){return t[e]})))}catch(t){console.warn('Error occurred during processing given event binding "'+o+'" on node:',e,'Given expression "'+a+'" could not be evaluated with given scope names "'+u.scopeNames.join('", "')+'": '+T().represent(t))}};e.addEventListener(i,p),s.set(i,(function(){e.removeEventListener(i,p),s.delete(i),0===s.size&&n.domNodeEventBindings.delete(e)}))}}}},i=x(e.getAttributeNames());!(r=i()).done;)o()},n.applyBindings=function(e,t,n){for(void 0===n&&(n=!0);e;){var r;null==(r=e.attributes)||!r.length||!n&&e.getAttribute("slot")||this.applyBinding(e,t),e.nodeName.toLowerCase().includes("-")||this.applyBindings(e.firstChild,t),e=e.nextSibling}},n.compileDomNodeTemplate=function(e,t,n){var r;if(void 0===t&&(t=[]),void 0===n&&(n={}),(n=c()({ignoreComponents:!0,ignoreNestedComponents:!0,map:this.domNodeTemplateCache,unsafe:this.self.renderUnsafe},n)).ignoreComponents&&null!=(r=e.nodeName)&&r.toLowerCase().includes("-"))return n.map;if(n.unsafe){var o=e.innerHTML;if(!o&&e.template&&(o=e.template),this.self.hasCode(o)){var i=T().stringCompile("`"+o+"`",t);n.map.set(e,{children:[],error:i.error,scopeNames:i.scopeNames,template:o,templateFunction:i.templateFunction})}}else{var a,l=e.nodeName.toLowerCase();if(["a","#text"].includes(l)){var s="a"===l?e.getAttribute("href"):e.textContent;this.self.hasCode(s)&&(a=s.replace(/&nbsp;/g," ").trim())}var u=[];if(a){var f=T().stringCompile("`"+a+"`",t);n.map.set(e,{children:u,error:f.error,scopeNames:f.scopeNames,template:a,templateFunction:f.templateFunction})}for(var p=e.firstChild;p;)n.filter&&!n.filter(p)||u.push(this.compileDomNodeTemplate(p,t,c()({},n,{ignoreComponents:n.ignoreNestedComponents}))),p=p.nextSibling}return n.map},n.evaluateDomNodeTemplate=function(e,t,n){var r;if(void 0===t&&(t={}),void 0===n&&(n={}),(n=c()({applyBindings:!0,ignoreComponents:!0,ignoreNestedComponents:!0,map:this.domNodeTemplateCache,unsafe:this.self.renderUnsafe},n)).map.has(e)||this.compileDomNodeTemplate(e,t,n),n.map.has(e)){var o=n.map.get(e),i=o.error,a=o.scopeNames,l=o.templateFunction;if(i)console.warn("Error occurred during compiling node content: "+i);else{var s=null;try{s=l.apply(void 0,a.map((function(e){return t[e]})))}catch(i){console.warn('Error occurred when "'+this.self._name+'" is running "'+l+'": with bound names "'+a.join('", "')+'": "'+i+'". Rendering node:',e)}null!==s&&(n.unsafe?e.innerHTML=s:"a"===e.nodeName.toLowerCase()?e.setAttribute("href",s):e.textContent=s)}}if(!(n.unsafe||n.ignoreComponents&&null!=(r=e.nodeName)&&r.toLowerCase().includes("-")))for(var u=e.firstChild;u;)n.filter&&!n.filter(u)||this.evaluateDomNodeTemplate(u,t,c()({},n,{applyBindings:!1,ignoreComponents:n.ignoreNestedComponents})),u=u.nextSibling;return n.applyBindings&&this.applyBindings(e,t),n.map},t.replaceDomNodes=function(e,n){for(var r,o=x([].concat(n).reverse());!(r=o()).done;){var i,a=r.value;t.trimSlots&&a.nodeType===Node.TEXT_NODE&&""===(null==(i=a.nodeValue)?void 0:i.trim())||e.after(a)}e.remove()},t.unwrapDomNode=function(e){for(var t=e.parentNode,n=[];e.firstChild;)n.push(e.firstChild),t.insertBefore(e.firstChild,e);return t.removeChild(e),n},n.determineRootBinding=function(){for(var e=this.parentNode;e;){var n;(e instanceof t||null!=(n=e.nodeName)&&n.includes("-")||null===e.parentNode&&"[object ShadowRoot]"===e.toString())&&(this.rootInstance===this?(this.parent=e,this.rootInstance=e,this.setPropertyValue("isRoot",!1)):this.rootInstance=e),e=e.parentNode}},t.hasCode=function(e){return"string"==typeof e&&e.includes("${")&&e.includes("}")&&/\${[\s\S]+}/.test(e)},t.normalizePropertyTypeList=function(e){if("string"==typeof e&&(e=[e]),Array.isArray(e)){for(var n,r=e,o=new Map,i=x(r);!(n=i()).done;){var a=n.value;Object.prototype.hasOwnProperty.call(t.propertyTypes,a)&&o.set(a,t.propertyTypes[a])}return o}return T().convertPlainObjectToMap(e)},n.attachEventHandler=function(){if(null!==this.self.eventToPropertyMapping){var e=this.attachExplicitDefinedOutputEventHandler();this.attachImplicitDefinedOutputEventHandler(!e)}},n.attachExplicitDefinedOutputEventHandler=function(){for(var e=this,t=!1,n=function(){var n=o[r];Object.prototype.hasOwnProperty.call(e.internalProperties,n)||(t=!0,e.outputEventNames.add(n),e.setInternalPropertyValue(n,s()(b().mark((function t(){var r,o,i,a,l=arguments;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=l.length,o=new Array(r),i=0;i<r;i++)o[i]=l[i];return t.next=3,e.reflectEventToProperties(n,o);case 3:(a=t.sent)&&(o[0]=a),e.forwardEvent(n,o);case 6:case"end":return t.stop()}}),t)})))))},r=0,o=Object.keys(this.self.eventToPropertyMapping);r<o.length;r++)n();return t},n.attachImplicitDefinedOutputEventHandler=function(e){var t=this;void 0===e&&(e=!0);for(var n=function(){var n=o[r],i=n[0],a=n[1];Object.prototype.hasOwnProperty.call(t.internalProperties,i)||![E.func,"function"].includes(a)||t.self.renderProperties.includes(i)||(t.outputEventNames.add(i),t.setInternalPropertyValue(i,(function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];e&&t.reflectEventToProperties(i,r),t.forwardEvent(i,r)})))},r=0,o=Object.entries(this.self.propertyTypes);r<o.length;r++)n()},n.triggerOutputEvents=function(){for(var e,t=x(this.outputEventNames);!(e=t()).done;){var n=e.value;this.forwardEvent(n,[this.externalProperties])}},n.forwardEvent=function(e,t){return e.length>3&&e.startsWith("on")&&(e=T().stringLowerCase(e.substring(2))),this.dispatchEvent(new CustomEvent(e,{detail:{parameters:t}}))},n.applySlots=function(e,t){for(var n=this,r=0,o=Array.from(e.querySelectorAll("slot"));r<o.length;r++){var i=o[r],a=i.getAttribute("name");if(null===a||"default"===a)if(this.slots.default){if(this.self.renderSlots){if(this.self.evaluateSlots)for(var l,s=x(this.slots.default);!(l=s()).done;){var u=l.value;this.evaluateDomNodeTemplate(u,t)}this.self.replaceDomNodes(i,this.slots.default)}}else this.slots.default=this.self.unwrapDomNode(i).map((function(e){return n.grabSlotContent(e)}));else Object.prototype.hasOwnProperty.call(this.slots,a)?this.self.renderSlots&&(this.self.evaluateSlots&&this.evaluateDomNodeTemplate(this.slots[a],t),this.self.replaceDomNodes(i,this.slots[a])):this.slots[a]=this.grabSlotContent(this.self.unwrapDomNode(i).filter((function(e){return"#text"!==e.nodeName.toLowerCase()}))[0])}},n.grabSlotContent=function(e){var t;if("textarea"===(null==(t=e.firstElementChild)?void 0:t.nodeName.toLowerCase())&&(!e.firstElementChild.hasAttribute("data-no-template")||"false"===e.firstElementChild.getAttribute("data-no-template"))){var n,r,o=e.firstElementChild.value;null==(n=e.classList)||n.remove("web-component-template");var i=e.cloneNode();return null==(r=e.classList)||r.add("web-component-template"),i.innerHTML="",i.template=o,i}return this.self.cloneSlots?e.cloneNode(!0):e},n.grabGivenSlots=function(){var e=this;this.slots={};for(var t=0,n=Array.from(this.querySelectorAll("[slot]"));t<n.length;t++){for(var r=n[t],o=r.parentNode,i=!0;o;){if(o.nodeName.includes("-")){o===this&&(i=!1);break}o=o.parentNode}i||(this.slots[r.getAttribute&&r.getAttribute("slot")&&r.getAttribute("slot").trim()?r.getAttribute("slot").trim():r.nodeName.toLowerCase()]=this.grabSlotContent(r))}this.slots.default?this.slots.default=[this.slots.default]:this.childNodes.length>0?this.slots.default=Array.from(this.childNodes).map((function(t){return e.grabSlotContent(t)})):this.slots.default=[]},n.isStateProperty=function(e){var t,n;return Boolean((null==(t=this.instance)||null==(t=t.current)?void 0:t.state)&&(Object.prototype.hasOwnProperty.call(null==(n=this.instance)||null==(n=n.current)?void 0:n.state,e)||this.instance.current.state.modelState&&Object.prototype.hasOwnProperty.call(this.instance.current.state.modelState,e)))},n.generateAliasIndex=function(){if(!this.self._propertyAliasIndex){this.self._propertyAliasIndex=c()({},this.self.propertyAliases);for(var e=0,t=Object.entries(this.self._propertyAliasIndex);e<t.length;e++){var n=t[e],r=n[0],o=n[1];Object.prototype.hasOwnProperty.call(this.self._propertyAliasIndex,o)||(this.self._propertyAliasIndex[o]=r)}}},n.reflectExternalProperties=function(e){this.ignoreAttributeUpdateObservations=!0;for(var t=0,n=Object.entries(e);t<n.length;t++){var r=n[t],o=r[0],i=r[1];if(this.setExternalPropertyValue(o,i),this.isConnected){var a=T().stringCamelCaseToDelimited(o);if(this.self._propertiesToReflectAsAttributes.has(o))switch(this.self._propertiesToReflectAsAttributes.get(o)){case E.boolean:case"boolean":i?""!==this.getAttribute(a)&&this.setAttribute(a,""):this.hasAttribute(a)&&this.removeAttribute(a);break;case E.func:case"function":break;case"json":if(i){var l=JSON.stringify(i);if(l&&this.getAttribute(a)!==l){this.setAttribute(a,l);break}}this.hasAttribute(a)&&this.removeAttribute(a);break;case E.number:case"number":if("number"!=typeof i||isNaN(i))this.hasAttribute(a)&&this.removeAttribute(a);else{var s=""+i;this.getAttribute(a)!==s&&this.setAttribute(a,s)}break;case E.string:case"string":i?this.getAttribute(a)!==i&&this.setAttribute(a,i):this.hasAttribute(a)&&this.removeAttribute(a);break;case E.any:case E.array:case E.arrayOf:case E.element:case E.elementType:case E.instanceOf:case E.node:case E.object:case"object":case E.objectOf:case E.shape:case E.exact:case E.symbol:default:if(i){var u=T().represent(i);if(u&&this.getAttribute(a)!==u){this.setAttribute(a,u);break}}this.hasAttribute(a)&&this.removeAttribute(a)}}}this.ignoreAttributeUpdateObservations=!1},n.reflectProperties=function(e){var t,n,r;if(this.reflectExternalProperties(e),null!=(t=this.instance)&&null!=(t=t.current)&&t.state&&"object"==typeof this.instance.current.state)for(var o,i=x(Object.keys(this.instance.current.state).concat(this.instance.current.state.modelState?Object.keys(this.instance.current.state.modelState):[]));!(o=i()).done;){var a=o.value;Object.prototype.hasOwnProperty.call(this.internalProperties,a)&&this.setInternalPropertyValue(a,void 0)}null!=(n=this.internalProperties.model)&&n.state&&(null==(r=this.internalProperties.model)||delete r.state,this.setInternalPropertyValue("model",this.internalProperties.model));for(var l,s=x(this.self.controllableProperties);!(l=s()).done;){var u=l.value;Object.prototype.hasOwnProperty.call(e,u)&&this.setInternalPropertyValue(u,e[u])}},n.triggerRender=function(e){var t=this;this.batchUpdates?this.batchedUpdateRunning||(this.batchedUpdateRunning=!0,T().timeout((function(){t.batchedUpdateRunning=!1,t.render(e)}))):this.render(e)},n.reflectEventToProperties=function(){var e=s()(b().mark((function e(t,n){var r,o,i,a,l,s,u,f,p,d,h,v,m,_,y,g;return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=this.batchUpdates,this.batchUpdates=!1,o=null,i=!1,!(this.self.eventToPropertyMapping&&Object.prototype.hasOwnProperty.call(this.self.eventToPropertyMapping,t)&&T().isFunction(this.self.eventToPropertyMapping[t]))){e.next=16;break}if(!((l=(a=this.self.eventToPropertyMapping)[t].apply(a,n.concat([this])))&&"then"in l&&T().isFunction(l.then))){e.next=12;break}return e.next=9,l;case 9:e.t0=e.sent,e.next=13;break;case 12:e.t0=l;case 13:s=e.t0,i=!0,Array.isArray(s)?(o=s[0],this.reflectProperties(o),T().extend(!0,this.internalProperties,s[1])):null===s?i=!1:"object"==typeof s&&(o=s,this.reflectProperties(s));case 16:if(!i&&n.length>0&&null!==n[0]&&"object"==typeof n[0]){if(f=n[0],"persist"in n[0]&&T().isFunction(n[0].persist))for(f={},p=0,d=Object.keys(this.self.propertyTypes);p<d.length;p++)for(h=d[p],v=x([h].concat(null!==(_=this.getPropertyAlias(h))&&void 0!==_?_:[]));!(m=v()).done;)y=m.value,(g=n[0].currentTarget&&Object.prototype.hasOwnProperty.call(n[0].currentTarget,y)?n[0].currentTarget[y]:this.getPropertyValue(y))!==this.externalProperties[y]&&(f[y]=g);else[null,void 0].includes(null==(u=f.detail)?void 0:u.value)||(f=c()({},f.detail));o=f,this.reflectProperties(f)}return this.triggerRender("propertyReflected"),this.batchUpdates=r,e.abrupt("return",o);case 20:case"end":return e.stop()}}),e,this)})));return function(t,n){return e.apply(this,arguments)}}(),n.evaluateStringOrNullAndSetAsProperty=function(e,t){var n=this,r=e.startsWith("-"),o=r?e.substring(1):e,i=T().stringDelimitedToCamelCase(o),a=this.getPropertyAlias(i);if(a&&Object.prototype.hasOwnProperty.call(this.self.propertyTypes,a)&&(i=a),Object.prototype.hasOwnProperty.call(this.self.propertyTypes,i)){var l=this.self.propertyTypes[i];if(r){if(t){var s=T().stringEvaluate(t,{Tools:T()},!1,this);s.error?(console.warn('Faild to process pre-evaluation attribute "'+e+'": '+s.error+'. Will be set to "undefined".'),this.setInternalPropertyValue(i,void 0)):(this.setInternalPropertyValue(i,s.result),this.setExternalPropertyValue(i,s.result))}}else switch(l){case E.boolean:case"boolean":var u=![null,"false"].includes(t);this.setInternalPropertyValue(i,u),this.setExternalPropertyValue(i,u);break;case E.func:case"function":var c,f=null,p=["data","event","firstArgument","firstParameter","options","scope","parameters","Tools"];if(t){var d=T().stringCompile(t,p);f=d.error,c=d.templateFunction,f&&console.warn('Failed to compile given handler "'+e+'": '+f+".")}this.setInternalPropertyValue(i,(function(){for(var r=arguments.length,o=new Array(r),a=0;a<r;a++)o[a]=arguments[a];n.outputEventNames.has(i)&&n.reflectEventToProperties(i,o);var l=void 0;if(!f)try{l=c.call(n,o[0],o[0],o[0],o[0],o[0],o[0],o,T())}catch(n){console.warn('Failed to evaluate function "'+e+'" with expression "'+t+'" and scope variables "'+p.join('", "')+'" set to "'+T().represent(o)+'": '+n+'. Set property to "undedefined".')}return n.self.renderProperties.includes(i)||n.forwardEvent(i,o),l})),f||this.setExternalPropertyValue(i,c);break;case"json":if(t){var h;try{h=JSON.parse(t)}catch(f){console.warn('Error occurred during parsing given json attribute "'+e+'": '+T().represent(f));break}this.setInternalPropertyValue(i,h),this.setExternalPropertyValue(i,T().copy(h,1))}else this.setInternalPropertyValue(i,null),this.setExternalPropertyValue(i,null);break;case E.number:case"number":if(null===t){this.setInternalPropertyValue(i,t),this.setExternalPropertyValue(i,t);break}var v=parseFloat(t);isNaN(v)&&(v=void 0),this.setInternalPropertyValue(i,v),this.setExternalPropertyValue(i,v);break;case E.string:case"string":this.setInternalPropertyValue(i,t),this.setExternalPropertyValue(i,t);break;case E.any:case E.array:case E.arrayOf:case E.element:case E.elementType:case E.instanceOf:case E.node:case E.object:case"object":case E.objectOf:case E.oneOf:case E.oneOfType:case E.shape:case E.exact:case E.symbol:default:if(t){var m=T().stringEvaluate(t,{},!1,this);if(m.error){console.warn('Error occurred during processing given attribute configuration "'+e+'":',m.error);break}this.setInternalPropertyValue(i,m.result),this.setExternalPropertyValue(i,T().copy(m.result,1))}else this.hasAttribute(e)?(this.setInternalPropertyValue(i,!0),this.setExternalPropertyValue(i,!0)):(this.setInternalPropertyValue(i,null),this.setExternalPropertyValue(i,null))}}},n.determineRenderScope=function(e){var t,n;void 0===e&&(e={}),this.scope=c()({},(null==(t=this.parent)?void 0:t.scope)||{},this.scope,this.internalProperties,((n={parent:this.parent,root:this.rootInstance,self:this})[T().stringLowerCase(this.self._name)||"instance"]=this,n),e),this.scope.scope=this.scope},n.applyShadowRootIfNotExisting=function(){this.self.shadowDOM&&this.root===this&&(this.root=(!("attachShadow"in this)&&"ShadyDOM"in window?window.ShadyDOM.wrap(this):this).attachShadow(null!==this.self.shadowDOM&&"object"==typeof this.self.shadowDOM?this.self.shadowDOM:{mode:"open"}))},n.render=function(e){if(void 0===e&&(e="unknown"),this.determineRenderScope(),this.dispatchEvent(new CustomEvent("render",{detail:{reason:e,scope:this.scope}}))){var t=T().stringEvaluate("`"+this.self.content+"`",this.scope);if(t.error)console.warn("Faild to process template: "+t.error);else{this.applyShadowRootIfNotExisting();var n=document.createElement("div");n.innerHTML=t.result,this.applySlots(n,c()({},this.scope,{parent:this})),this.root.innerHTML=n.innerHTML,this.applyBindings(this.root.firstChild,this.scope,this.self.renderSlots)}}},t}(P),a.applyRootBinding=!0,a.content="<slot>Please provide a template to transclude.</slot>",a.determineRootBinding=!0,a.shadowDOM=null,a.observedAttributes=[],a.controllableProperties=[],a.eventToPropertyMapping={},a.propertyAliases={},a.propertyTypes={onClick:E.func},a.propertiesToReflectAsAttributes=[],a.renderProperties=["children"],a.cloneSlots=!1,a.evaluateSlots=!1,a.renderSlots=!0,a.trimSlots=!0,a.renderUnsafe=!1,a._name="BaseWeb",a._propertyAliasIndex=void 0,a._propertiesToReflectAsAttributes=void 0,o=a,i=y()(o.prototype,"isRoot",[r],{configurable:!0,enumerable:!0,writable:!0,initializer:function(){return!0}}),o),C={component:S,register:function(e){return void 0===e&&(e=T().stringCamelCaseToDelimited(S._name)),customElements.define(e,S)}};t.default=S},function(e){e.exports=a},function(e){e.exports=l},function(e){e.exports=p},function(e){e.exports=c},function(e){e.exports=u},function(e){e.exports=d},function(e){e.exports=i},function(e){e.exports=o},function(e){e.exports=s},function(e,t,n){n.d(t,{api:function(){return _}});var r=n(0),o=n.n(r),i=n(3),a=n.n(i),l=n(1),s=n.n(l),u=n(2),c=n(12),f=n.n(c),p=n(13),d=n(14);function h(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return v(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?v(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var m=function(e){function t(){for(var n,r=arguments.length,o=new Array(r),i=0;i<r;i++)o[i]=arguments[i];return(n=e.call.apply(e,[this].concat(o))||this).compiledSlots={},n.preparedSlots={},n.reactRoot=null,n.rootReactInstance=null,n.self=t,n.wrapMemorizingWrapper=null,n.isWrapped=!1,n.reflectInstanceProperties=function(){var e;null!=(e=n.instance)&&e.current&&n.instance.current.properties&&n.reflectProperties(n.instance.current.properties)},n}a()(t,e);var n=t.prototype;return n.connectedCallback=function(){this.applyComponentWrapper(),this.rootReactInstance=this,e.prototype.connectedCallback.call(this)},n.disconnectedCallback=function(){e.prototype.disconnectedCallback.call(this)},n.reflectExternalProperties=function(t){this.isRoot&&e.prototype.reflectExternalProperties.call(this,t)},n.render=function(e){var t,n=this;if(void 0===e&&(e="unknown"),this.rootReactInstance===this&&this.dispatchEvent(new CustomEvent("render",{detail:{reason:e,scope:this.scope}}))){if(this.determineRenderScope(),0===Object.keys(this.compiledSlots).length&&this.preCompileSlots(),this.evaluateSlots(o()({},this.scope,{parent:this})),this.prepareProperties(this.internalProperties),this.applyShadowRootIfNotExisting(),this.root!==this)for(var r=this.firstChild;r;){var i=r.nextSibling;this.removeChild(r),r=i}this.reactRoot||(this.reactRoot=(0,d.createRoot)(this.root,{identifierPrefix:String(this.id||this.internalProperties.id||this.externalProperties.id||this.name||this.internalProperties.name||this.externalProperties.name)})),(0,p.flushSync)((function(){return n.reactRoot.render((0,c.createElement)(n.self.content,n.internalProperties))})),null!=(t=this.instance)&&t.current?this.reflectInstanceProperties():s().timeout(this.reflectInstanceProperties)}},n.setPropertyValue=function(e,t){var n;this.reflectProperties(((n={})[e]=s().copy(t,1),n)),this.setInternalPropertyValue(e,s().copy(t,1))},n.setInternalPropertyValue=function(t,n){null===n?n=u.NullSymbol:void 0===n&&(n=u.UndefinedSymbol),e.prototype.setInternalPropertyValue.call(this,t,n)},n.preCompileDomNodes=function(e,t,n){if(void 0===t&&(t={}),void 0===n&&(n=!1),1===(e=e.filter((function(e){return e.nodeType!==Node.TEXT_NODE||"string"==typeof e.nodeValue&&""!==e.nodeValue.trim()}))).length)return this.preCompileDomNode(e[0],t,n);for(var r,o=1,i=[],a=h(e);!(r=a()).done;){var l=r.value,s=this.preCompileDomNode(l,t,n,o.toString());s&&(i.push(s),o+=1)}return n?function(e){return function(){for(var t,n=[],r=h(i);!(t=r()).done;){var o=(0,t.value)(e);"function"==typeof o&&n.push(o.apply(void 0,arguments))}return(0,c.createElement)(c.Fragment,{children:n})}}:i},n.preCompileDomNode=function(e,t,n,r){var i,a,l=this;if(void 0===t&&(t={}),void 0===n&&(n=!1),n){var u=this.preCompileDomNode(e,o()({},t,{data:void 0,firstArgument:void 0,firstParameter:void 0,options:void 0,scope:void 0,parameters:void 0}),!1,r);return function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var i=n.length>0?n[0]:null;return u(o()({},e,{data:i,firstArgument:i,firstParameter:i,options:i,scope:i,parameters:n}))}}}if(e.nodeType===Node.TEXT_NODE){var f="string"==typeof e.nodeValue?e.nodeValue.trim():"",p=r&&f?(0,c.createElement)(c.Fragment,{children:f,key:r}):f||null;return function(){return p}}if(!e.getAttributeNames)return function(){return null};var d=this.self.isReactComponent(e);d?(e.determineRenderScope(),0===Object.keys(this.compiledSlots).length&&e.preCompileSlots(),i=e.internalProperties,r&&!Object.prototype.hasOwnProperty.call(i,"key")&&(i.key=r),a=e.constructor.content):(i={key:r},a=e.tagName.toLowerCase());for(var v,m=Object.keys(t),_={},y=function(){var n,r=v.value,o=e.getAttribute(r);if(null===o)return"continue";var a=!1,u="";if(r.startsWith("data-bind-")?u=r.substring(10):r.startsWith("bind-")&&(u=r.substring(5)),u.startsWith("attribute-")||"attributes"===u||u.startsWith("property-")||"properties"===u){var c=s().stringCompile(o,m),f=c.error,p=c.originalScopeNames,d=c.templateFunction;if(f)return console.warn('Error occurred during compiling given attribute binding "'+r+'" on node:',e,f),"continue";"attributes"===u||"properties"===u?a=!0:u=u.startsWith("attribute-")?u.substring(10):u.substring(9),o={originalScopeNames:p,templateFunction:d.bind(l)}}else if(u.startsWith("on-")){u=s().stringDelimitedToCamelCase(u),Object.prototype.hasOwnProperty.call(t,"event")||(m=[].concat(m,["event"])),Object.prototype.hasOwnProperty.call(t,"parameters")||(m=[].concat(m,["parameters"]));var h=s().stringCompile(o,m,!0),y=h.error,g=h.originalScopeNames,b=h.scopeNames,w=h.templateFunction;if(y)return console.warn('Error occurred during compiling given event binding "'+r+'" on node:',e,y),"continue";var T=w.bind(l);o=function(){for(var n=arguments.length,i=new Array(n),a=0;a<n;a++)i[a]=arguments[a];t.event=i[0],t.parameters=i;try{T.apply(void 0,g.map((function(e){return t[e]})))}catch(t){console.warn('Error occurred during processing given event binding "'+r+'" on node: ',e,'Given expression "'+o+'" could not be evaluated with given scope names "'+b.join('", "')+'": '+s().represent(t))}}}else u=r;var E={class:"className",for:"htmlFor"};Object.prototype.hasOwnProperty.call(E,u)&&(u=E[u]),u=s().stringDelimitedToCamelCase(u),null!=(n=o)&&n.originalScopeNames?_[a?"":u]=o:i[u]=o},g=h(e.getAttributeNames());!(v=g()).done;)y();if(!d){var b=Array.from(e.childNodes);b.length&&(i.children=this.preCompileDomNodes(b,t))}return function(n){(n=o()({},t,n)).scope=n;for(var r=o()({},i),s=0,u=Object.entries(_);s<u.length;s++){var f=u[s],p=f[0],h=f[1],v=h.originalScopeNames,m=h.templateFunction.apply(void 0,v.map((function(e){return n[e]})));""===p?r=o()({},r,m):r[p]=m}return Object.prototype.hasOwnProperty.call(r,"innerHTML")&&(r.dangerouslySetInnerHTML={__html:r.innerHTML},delete r.children,delete r.innerHTML),Object.prototype.hasOwnProperty.call(r,"textContent")?(r.children=r.textContent,delete r.textContent):d?(e.evaluateSlots(o()({},r,n,{parent:e})),e.prepareProperties(r),n=o()({},r,n,{parent:e})):r.children&&(r.children=l.evaluatePreCompiledDomNodes(r.children,n)),(0,c.createElement)(a,r)}},n.evaluatePreCompiledDomNodes=function(e,t){if(void 0===t&&(t={}),!Array.isArray(e))return e(t);if(1===e.length)return e[0](t);for(var n,r=[],o=h(e);!(n=o()).done;){var i=(0,n.value)(t);i&&r.push(i)}return r},n.preCompileSlots=function(){var e;for(var t in this.slots)Object.prototype.hasOwnProperty.call(this.slots,t)&&"default"!==t&&(this.compiledSlots[t]=this.preCompileDomNode(this.slots[t],o()({},this.scope,{parent:this}),[u.func,"function"].includes(this.self.propertyTypes&&this.self.propertyTypes[t])));this.slots.default&&this.slots.default.length>0&&(this.compiledSlots.children=this.preCompileDomNodes(this.slots.default,o()({},this.scope,{parent:this}),[u.func,"function"].includes(null==(e=this.self.propertyTypes)?void 0:e.children)))},n.evaluateSlots=function(e){for(var t in this.preparedSlots={},this.compiledSlots)Object.prototype.hasOwnProperty.call(this.compiledSlots,t)&&("children"===t?this.preparedSlots.children=this.evaluatePreCompiledDomNodes(this.compiledSlots[t],e):this.preparedSlots[t]=this.compiledSlots[t](e))},t.isReactComponent=function(e){var t=e.constructor;return"object"==typeof t.content&&(!1===t.attachWebComponentAdapterIfNotExists||"react"===t.content.webComponentAdapterWrapped)},n.determineRootBinding=function(){e.prototype.determineRootBinding.call(this);for(var t=this.parentNode;t;){if(this.self.isReactComponent(t)){this.rootReactInstance=t;break}t=t.parentNode}},n.applyComponentWrapper=function(){if("string"!=typeof this.self.content&&!this.isWrapped){this.isWrapped=!0;var e=this.self.content.wrapped||this.self.content;this.self.content.webComponentAdapterWrapped?this.wrapMemorizingWrapper&&(this.self.content=(0,c.memo)(this.self.content),this.self.content.wrapped=e):this.self.attachWebComponentAdapterIfNotExists?(this.self.content.displayName||(this.self.content.displayName=this.self._name),this.self.content=(0,c.forwardRef)((function(t,n){return(0,c.useImperativeHandle)(n,(function(){return{properties:t}})),(0,c.createElement)(e,t)})),(this.wrapMemorizingWrapper||null===this.wrapMemorizingWrapper)&&(this.self.content=(0,c.memo)(this.self.content)),this.self.content.wrapped=e,this.self.content.webComponentAdapterWrapped="react"):this.wrapMemorizingWrapper&&(this.self.content=(0,c.memo)(this.self.content),this.self.content.wrapped=e)}},n.prepareProperties=function(e){s().extend(e,this.preparedSlots),this.self.removeKnownUnwantedPropertyKeys(this.self,e),e.ref||(this.instance=(0,c.createRef)(),e.ref=this.instance)},t.removeKnownUnwantedPropertyKeys=function(e,t){if("string"!=typeof e.content)for(var n,r=h(["isRoot","isTrusted","__composed"]);!(n=r()).done;){var o=n.value;Object.prototype.hasOwnProperty.call(t,o)&&(Object.prototype.hasOwnProperty.call(e.content,"propTypes")&&!Object.prototype.hasOwnProperty.call(e.content.propTypes,o)||Object.prototype.hasOwnProperty.call(e.content,"wrapped")&&Object.prototype.hasOwnProperty.call(e.content.wrapped,"propTypes")&&!Object.prototype.hasOwnProperty.call(e.content.wrapped.propTypes,o))&&delete t[o]}},t}(n(5).default);m.attachWebComponentAdapterIfNotExists=!0,m.content="div",m.react=f(),m._name="ReactWebComponent";var _={component:m,register:function(e){return void 0===e&&(e=s().stringCamelCaseToDelimited(m._name)),customElements.define(e,m)}};t.default=m}],h={};function v(e){var t=h[e];if(void 0!==t)return t.exports;var n=h[e]={exports:{}};return f[e](n,n.exports,v),n.exports}v.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return v.d(t,{a:t}),t},v.d=function(e,t){for(var n in t)v.o(t,n)&&!v.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},v.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},v.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var m={};return function(){v.r(m),v.d(m,{ReactWeb:function(){return s},Web:function(){return f},reactWebAPI:function(){return u},webAPI:function(){return c},wrapAsWebComponent:function(){return p}});var e=v(0),t=v.n(e),n=v(3),r=v.n(n),o=v(1),i=v.n(o),a=v(15),l=v(5),s=a.default,u=a.api,c=l.api,f=l.default,p=function(e,n,o){var a,l,u;void 0===n&&(n="NoName"),void 0===o&&(o={});var c=e._name||(null==(a=e.___types)||null==(a=a.name)?void 0:a.name)||n.replace(/^(.*\/+)?([^/]+)\.tsx$/,"$2");o.propTypes&&(e.propTypes=o.propTypes);var f=e.propTypes||{},p=o.propertyAliases||e.propertyAliases||{},d=i().arrayUnique(Object.keys(f).concat(Object.keys(p)).concat(Object.values(p))),h=o.propertiesToReflectAsAttributes||e.propertiesToReflectAsAttributes||[];if(s.propertiesToReflectAsAttributes)if(Array.isArray(h))h=[].concat(s.propertiesToReflectAsAttributes,h);else if(h instanceof Map)for(var v=0,m=s.propertiesToReflectAsAttributes;v<m.length;v++){var _=m[v];h.set(_,s.propertyTypes[_])}else if(null!==h&&"object"==typeof h)for(var y=0,g=s.propertiesToReflectAsAttributes;y<g.length;y++){var b=g[y];h[b]=s.propertyTypes[b]}var w=d.map((function(e){return i().stringCamelCaseToDelimited(e)})),T=function(n){function i(){for(var r,a=arguments.length,l=new Array(a),s=0;s<a;s++)l[s]=arguments[s];return(r=n.call.apply(n,[this].concat(l))||this).self=i,r.internalProperties=o.internalProperties?t()({},o.internalProperties):e.internalProperties?t()({},e.internalProperties):{},r}return r()(i,n),i}(s);return T.attachWebComponentAdapterIfNotExists="boolean"!=typeof o.attachWebComponentAdapterIfNotExists||o.attachWebComponentAdapterIfNotExists,T.content=e,T.observedAttributes=s.observedAttributes.concat(w).concat(w.map((function(e){return"-"+e}))),T.controllableProperties=e.controllableProperties||o.controllableProperties||[],T.eventToPropertyMapping=null===o.eventToPropertyMapping?o.eventToPropertyMapping:o.eventToPropertyMapping?t()({},o.eventToPropertyMapping):null===e.eventToPropertyMapping?e.eventToPropertyMapping:e.eventToPropertyMapping?t()({},e.eventToPropertyMapping):{},T.propertyAliases=t()({},s.propertyAliases,p),T.propertiesToReflectAsAttributes=h,T.propertyTypes=t()({},s.propertyTypes,f),T.renderProperties=null!==(l=null!==(u=o.renderProperties)&&void 0!==u?u:e.renderProperties)&&void 0!==l?l:s.renderProperties,T._name=c,{component:T,register:function(e){return void 0===e&&(e=i().stringCamelCaseToDelimited(c)),customElements.define(e,T)}}};m.default=p}(),m}())},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__2__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__3__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__4__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__5__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__6__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__7__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__8__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__9__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__10__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__11__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__12__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__13__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__14__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__15__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__16__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__17__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__18__},function(module,__unused_webpack_exports,__nested_webpack_require_45983__){var __dirname="/",e,r,t,n,i,o,u;if(module=__nested_webpack_require_45983__.nmd(module),null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&null!=__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window=void 0===__nested_webpack_require_45983__.g||null===__nested_webpack_require_45983__.g?{}:__nested_webpack_require_45983__.g;module.exports=(e=__nested_webpack_require_45983__(2),r=__nested_webpack_require_45983__(7),t=__nested_webpack_require_45983__(8),n=__nested_webpack_require_45983__(9),i=__nested_webpack_require_45983__(10),o=__nested_webpack_require_45983__(3),u=__nested_webpack_require_45983__(11),function(){var a=[function(e){e.exports=u},function(t){t.exports=e},,function(e){e.exports=o},function(e){e.exports=t},,function(e,t,n){n.d(t,{WrapTooltip:function(){return u}});var r=n(1),o=n.n(r),i=n(10),a=n(12),l=n(0),s=!a.Tooltip||a.Tooltip.isDummy,u=function(e){var t=e.children,n=e.options;if("string"==typeof n)return s?(0,l.jsx)("div",{className:"generic-tooltip",title:n,children:t}):(0,l.jsx)(a.Tooltip,{content:(0,l.jsx)(i.Typography,{use:"caption",children:n}),children:(0,l.jsx)("div",{className:"generic-tooltip",children:t})});if(null!==n&&"object"==typeof n){if("string"==typeof n.content){if(s)return(0,l.jsx)("div",{className:"generic-tooltip",title:n.content,children:t});n=o()({},n,{content:(0,l.jsx)(i.Typography,{use:"caption",children:n.content})})}return s?(0,l.jsx)("div",{className:"generic-tooltip",children:t}):(0,l.jsx)(a.Tooltip,o()({},n,{children:(0,l.jsx)("div",{className:"generic-tooltip",children:t})}))}return(0,l.jsx)(l.Fragment,{children:t})}},,,,function(e){e.exports=i},function(e,t,n){n.d(t,{WrapThemeProvider:function(){return i}});var r=n(4),o=n(0),i=function(e){var t=e.children,n=e.configuration,i=e.wrap;return n?(0,o.jsx)(r.ThemeProvider,{options:n,wrap:!1!==i,children:t}):t}},function(e){e.exports=n},function(e,t,n){n.d(t,{x:function(){return i}});var r=n(3),o=n(0),i=function(e){var t=e.children;return e.strict?(0,o.jsx)(r.StrictMode,{children:t}):(0,o.jsx)(o.Fragment,{children:t})}},function(e){e.exports=r}],l={};function s(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={exports:{}};return a[e](n,n.exports,s),n.exports}s.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return s.d(t,{a:t}),t},s.d=function(e,t){for(var n in t)s.o(t,n)&&!s.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var c={};return function(){s.r(c),s.d(c,{WrapConfigurations:function(){return d},createWrapConfigurationsComponent:function(){return h}});var e=s(1),t=s.n(e),n=s(14),r=s.n(n),o=s(3),i=s(4),a=s(13),l=s(11),u=s(6),f=s(0),p=["strict","theme","themeConfiguration","tooltip","wrap"],d=function(e){var t=e.children,n=e.strict,r=e.themeConfiguration,o=e.tooltip,i=e.wrap;return(0,f.jsx)(a.x,{strict:Boolean(n),children:(0,f.jsx)(u.WrapTooltip,{options:o,children:(0,f.jsx)(l.WrapThemeProvider,{configuration:r,wrap:i,children:t})})})};function h(e,n){void 0===n&&(n={});var a=function(o,a){var l=o.strict,s=o.theme,u=o.themeConfiguration,c=o.tooltip,h=o.wrap,v=r()(o,p),m=(0,f.jsx)(e,t()({},t()({},v,!1===n.withReference?{}:a?{ref:a}:{},n.withThemeWrapper&&s?{theme:s}:{})));return(0,f.jsx)(d,{strict:l,themeConfiguration:u,tooltip:c,wrap:h,children:n.withThemeWrapper&&s?(0,f.jsx)(i.Theme,{use:s,wrap:h,children:m}):m})};return n.withReference?(0,o.forwardRef)(a):a}c.default=d}(),c}())},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__52__}],__webpack_module_cache__={};function __nested_webpack_require_50067__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__nested_webpack_require_50067__),n.loaded=!0,n.exports}__nested_webpack_require_50067__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __nested_webpack_require_50067__.d(t,{a:t}),t},__nested_webpack_require_50067__.d=function(e,t){for(var n in t)__nested_webpack_require_50067__.o(t,n)&&!__nested_webpack_require_50067__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__nested_webpack_require_50067__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__nested_webpack_require_50067__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__nested_webpack_require_50067__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__nested_webpack_require_50067__.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e};var __nested_webpack_exports__={};return function(){__nested_webpack_require_50067__.r(__nested_webpack_exports__),__nested_webpack_require_50067__.d(__nested_webpack_exports__,{SliderInput:function(){return l}});var e=__nested_webpack_require_50067__(2),t=__nested_webpack_require_50067__.n(e),n=__nested_webpack_require_50067__(0),r=__nested_webpack_require_50067__(19),o=__nested_webpack_require_50067__(1),i=__nested_webpack_require_50067__.n(o),a=__nested_webpack_require_50067__(52),l=i()((0,r.createWrapConfigurationsComponent)(a.Slider),"SliderInput",{eventToPropertyMapping:{onChange:function(e,n){return t()({},n.externalProperties,{value:e.detail.value})},onInput:function(e){return[{value:e.detail.value},{value:e.detail.value}]}},propTypes:{disabled:n.boolean,discrete:n.boolean,displayMarkers:n.boolean,max:n.number,min:n.number,step:n.number,theme:n.string,themeConfiguration:n.object,onChange:n.func,onInput:n.func,value:n.number}});__nested_webpack_exports__.default=l}(),__nested_webpack_exports__}()},module.exports=t(__webpack_require__(26),__webpack_require__(44),__webpack_require__(176),__webpack_require__(23),__webpack_require__(58),__webpack_require__(0),__webpack_require__(18),__webpack_require__(116),__webpack_require__(40),__webpack_require__(66),__webpack_require__(67),__webpack_require__(68),__webpack_require__(69),__webpack_require__(41),__webpack_require__(75),__webpack_require__(124),__webpack_require__(125),__webpack_require__(141),__webpack_require__(73))}],__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.loaded=!0,n.exports}__webpack_require__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=function(e,t){for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e};var __webpack_exports__=__webpack_require__(185);return __webpack_exports__}()}));