@fluentui/web-components 3.0.0-alpha.5 → 3.0.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +43 -1
- package/CHANGELOG.md +22 -2
- package/dist/dts/avatar/avatar.d.ts +97 -0
- package/dist/dts/avatar/avatar.definition.d.ts +9 -0
- package/dist/dts/avatar/avatar.options.d.ts +142 -0
- package/dist/dts/avatar/avatar.styles.d.ts +4 -0
- package/dist/dts/avatar/avatar.template.d.ts +8 -0
- package/dist/dts/avatar/define.d.ts +1 -0
- package/dist/dts/avatar/index.d.ts +5 -0
- package/dist/dts/divider/define.d.ts +1 -0
- package/dist/dts/divider/divider.d.ts +31 -0
- package/dist/dts/divider/divider.definition.d.ts +9 -0
- package/dist/dts/divider/divider.options.d.ts +40 -0
- package/dist/dts/divider/divider.styles.d.ts +4 -0
- package/dist/dts/divider/divider.template.d.ts +7 -0
- package/dist/dts/divider/index.d.ts +5 -0
- package/dist/dts/image/define.d.ts +1 -0
- package/dist/dts/image/image.d.ts +48 -0
- package/dist/dts/image/image.definition.d.ts +9 -0
- package/dist/dts/image/image.options.d.ts +27 -0
- package/dist/dts/image/image.styles.d.ts +5 -0
- package/dist/dts/image/image.template.d.ts +7 -0
- package/dist/dts/image/index.d.ts +5 -0
- package/dist/dts/index.d.ts +4 -0
- package/dist/dts/switch/define.d.ts +1 -0
- package/dist/dts/switch/index.d.ts +5 -0
- package/dist/dts/switch/switch.d.ts +13 -0
- package/dist/dts/switch/switch.definition.d.ts +9 -0
- package/dist/dts/switch/switch.options.d.ts +15 -0
- package/dist/dts/switch/switch.styles.d.ts +1 -0
- package/dist/dts/switch/switch.template.d.ts +3 -0
- package/dist/dts/utils/get-initials.d.ts +18 -0
- package/dist/esm/avatar/avatar.definition.js +17 -0
- package/dist/esm/avatar/avatar.definition.js.map +1 -0
- package/dist/esm/avatar/avatar.js +92 -0
- package/dist/esm/avatar/avatar.js.map +1 -0
- package/dist/esm/avatar/avatar.options.js +87 -0
- package/dist/esm/avatar/avatar.options.js.map +1 -0
- package/dist/esm/avatar/avatar.styles.js +476 -0
- package/dist/esm/avatar/avatar.styles.js.map +1 -0
- package/dist/esm/avatar/avatar.template.js +28 -0
- package/dist/esm/avatar/avatar.template.js.map +1 -0
- package/dist/esm/avatar/define.js +4 -0
- package/dist/esm/avatar/define.js.map +1 -0
- package/dist/esm/avatar/index.js +6 -0
- package/dist/esm/avatar/index.js.map +1 -0
- package/dist/esm/divider/define.js +4 -0
- package/dist/esm/divider/define.js.map +1 -0
- package/dist/esm/divider/divider.definition.js +17 -0
- package/dist/esm/divider/divider.definition.js.map +1 -0
- package/dist/esm/divider/divider.js +21 -0
- package/dist/esm/divider/divider.js.map +1 -0
- package/dist/esm/divider/divider.options.js +31 -0
- package/dist/esm/divider/divider.options.js.map +1 -0
- package/dist/esm/divider/divider.styles.js +111 -0
- package/dist/esm/divider/divider.styles.js.map +1 -0
- package/dist/esm/divider/divider.template.js +7 -0
- package/dist/esm/divider/divider.template.js.map +1 -0
- package/dist/esm/divider/index.js +6 -0
- package/dist/esm/divider/index.js.map +1 -0
- package/dist/esm/image/define.js +4 -0
- package/dist/esm/image/define.js.map +1 -0
- package/dist/esm/image/image.definition.js +17 -0
- package/dist/esm/image/image.definition.js.map +1 -0
- package/dist/esm/image/image.js +24 -0
- package/dist/esm/image/image.js.map +1 -0
- package/dist/esm/image/image.options.js +21 -0
- package/dist/esm/image/image.options.js.map +1 -0
- package/dist/esm/image/image.styles.js +52 -0
- package/dist/esm/image/image.styles.js.map +1 -0
- package/dist/esm/image/image.template.js +7 -0
- package/dist/esm/image/image.template.js.map +1 -0
- package/dist/esm/image/index.js +6 -0
- package/dist/esm/image/index.js.map +1 -0
- package/dist/esm/index.js +4 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/switch/define.js +4 -0
- package/dist/esm/switch/define.js.map +1 -0
- package/dist/esm/switch/index.js +6 -0
- package/dist/esm/switch/index.js.map +1 -0
- package/dist/esm/switch/switch.definition.js +17 -0
- package/dist/esm/switch/switch.definition.js.map +1 -0
- package/dist/esm/switch/switch.js +9 -0
- package/dist/esm/switch/switch.js.map +1 -0
- package/dist/esm/switch/switch.options.js +10 -0
- package/dist/esm/switch/switch.options.js.map +1 -0
- package/dist/esm/switch/switch.styles.js +114 -0
- package/dist/esm/switch/switch.styles.js.map +1 -0
- package/dist/esm/switch/switch.template.js +5 -0
- package/dist/esm/switch/switch.template.js.map +1 -0
- package/dist/esm/utils/get-initials.js +83 -0
- package/dist/esm/utils/get-initials.js.map +1 -0
- package/dist/fluent-web-components.api.json +3517 -1757
- package/dist/web-components.d.ts +496 -0
- package/dist/web-components.js +1095 -29
- package/dist/web-components.min.js +123 -115
- package/docs/api-report.md +262 -0
- package/package.json +17 -1
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import{composedContains as e,composedParent as t}from"@microsoft/fast-element/utilities";var o="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};!function(){if("undefined"==typeof globalThis)if(void 0!==o)o.globalThis=o;else if("undefined"!=typeof self)self.globalThis=self;else if("undefined"!=typeof window)window.globalThis=window;else{const e=new Function("return this")();e.globalThis=e}}();const r={configurable:!1,enumerable:!1,writable:!1};void 0===globalThis.FAST&&Reflect.defineProperty(globalThis,"FAST",Object.assign({value:Object.create(null)},r));const n=globalThis.FAST;if(void 0===n.getById){const e=Object.create(null);Reflect.defineProperty(n,"getById",Object.assign({value(t,o){let r=e[t];return void 0===r&&(r=o?e[t]=o():null),r}},r))}void 0===n.error&&Object.assign(n,{warn(){},error:e=>new Error("Error "+e),addMessages(){}});const s=Object.freeze([]);function i(){const e=new Map;return Object.freeze({register:t=>!e.has(t.type)&&(e.set(t.type,t),!0),getByType:t=>e.get(t),getForInstance(t){if(null!=t)return e.get(t.constructor)}})}function a(){const e=new WeakMap;return function(t){let o=e.get(t);if(void 0===o){let r=Reflect.getPrototypeOf(t);for(;void 0===o&&null!==r;)o=e.get(r),r=Reflect.getPrototypeOf(r);o=void 0===o?[]:o.slice(0),e.set(t,o)}return o}}let l;try{if(document.currentScript)l=document.currentScript.getAttribute("fast-kernel");else{const e=document.getElementsByTagName("script");l=e[e.length-1].getAttribute("fast-kernel")}}catch(e){l="isolate"}let c;switch(l){case"share":c=Object.freeze({updateQueue:1,observable:2,contextEvent:3,elementRegistry:4});break;case"share-v2":c=Object.freeze({updateQueue:1.2,observable:2.2,contextEvent:3.2,elementRegistry:4.2});break;default:const e="-"+Math.random().toString(36).substring(2,8);c=Object.freeze({updateQueue:"1.2"+e,observable:"2.2"+e,contextEvent:"3.2"+e,elementRegistry:"4.2"+e})}const d=e=>"function"==typeof e,u=e=>"string"==typeof e,h=()=>{},g=Object.freeze({none:0,attribute:1,booleanAttribute:2,property:3,content:4,tokenList:5,event:6}),p=e=>e,f=globalThis.trustedTypes?globalThis.trustedTypes.createPolicy("fast-html",{createHTML:p}):{createHTML:p};let v=Object.freeze({createHTML:e=>f.createHTML(e),protect:(e,t,o,r)=>r});const m=v,b=Object.freeze({get policy(){return v},setPolicy(e){if(v!==m)throw n.error(1201);v=e},setAttribute(e,t,o){null==o?e.removeAttribute(t):e.setAttribute(t,o)},setBooleanAttribute(e,t,o){o?e.setAttribute(t,""):e.removeAttribute(t)}}),B=n.getById(c.updateQueue,()=>{const e=[],t=[],o=globalThis.requestAnimationFrame;let r=!0;function n(){if(t.length)throw t.shift()}function s(o){try{o.call()}catch(o){if(!r)throw e.length=0,o;t.push(o),setTimeout(n,0)}}function i(){let t=0;for(;t<e.length;)if(s(e[t]),t++,t>1024){for(let o=0,r=e.length-t;o<r;o++)e[o]=e[o+t];e.length-=t,t=0}e.length=0}function a(t){e.push(t),e.length<2&&(r?o(i):i())}return Object.freeze({enqueue:a,next:()=>new Promise(a),process:i,setMode:e=>r=e})});class y{constructor(e,t){this.sub1=void 0,this.sub2=void 0,this.spillover=void 0,this.subject=e,this.sub1=t}has(e){return void 0===this.spillover?this.sub1===e||this.sub2===e:-1!==this.spillover.indexOf(e)}subscribe(e){const t=this.spillover;if(void 0===t){if(this.has(e))return;if(void 0===this.sub1)return void(this.sub1=e);if(void 0===this.sub2)return void(this.sub2=e);this.spillover=[this.sub1,this.sub2,e],this.sub1=void 0,this.sub2=void 0}else{-1===t.indexOf(e)&&t.push(e)}}unsubscribe(e){const t=this.spillover;if(void 0===t)this.sub1===e?this.sub1=void 0:this.sub2===e&&(this.sub2=void 0);else{const o=t.indexOf(e);-1!==o&&t.splice(o,1)}}notify(e){const t=this.spillover,o=this.subject;if(void 0===t){const t=this.sub1,r=this.sub2;void 0!==t&&t.handleChange(o,e),void 0!==r&&r.handleChange(o,e)}else for(let r=0,n=t.length;r<n;++r)t[r].handleChange(o,e)}}class k{constructor(e){this.subscribers={},this.subjectSubscribers=null,this.subject=e}notify(e){var t,o;null===(t=this.subscribers[e])||void 0===t||t.notify(e),null===(o=this.subjectSubscribers)||void 0===o||o.notify(e)}subscribe(e,t){var o,r;let n;n=t?null!==(o=this.subscribers[t])&&void 0!==o?o:this.subscribers[t]=new y(this.subject):null!==(r=this.subjectSubscribers)&&void 0!==r?r:this.subjectSubscribers=new y(this.subject),n.subscribe(e)}unsubscribe(e,t){var o,r;t?null===(o=this.subscribers[t])||void 0===o||o.unsubscribe(e):null===(r=this.subjectSubscribers)||void 0===r||r.unsubscribe(e)}}const P=Object.freeze({unknown:void 0,coupled:1}),S=n.getById(c.observable,()=>{const e=B.enqueue,t=/(:|&&|\|\||if)/,o=new WeakMap;let r=void 0,s=e=>{throw n.error(1101)};function i(e){var t;let r=null!==(t=e.$fastController)&&void 0!==t?t:o.get(e);return void 0===r&&(Array.isArray(e)?r=s(e):o.set(e,r=new k(e))),r}const l=a();class c{constructor(e){this.name=e,this.field="_"+e,this.callback=e+"Changed"}getValue(e){return void 0!==r&&r.watch(e,this.name),e[this.field]}setValue(e,t){const o=this.field,r=e[o];if(r!==t){e[o]=t;const n=e[this.callback];d(n)&&n.call(e,r,t),i(e).notify(this.name)}}}class g extends y{constructor(e,t,o=!1){super(e,t),this.expression=e,this.isVolatileBinding=o,this.needsRefresh=!0,this.needsQueue=!0,this.isAsync=!0,this.first=this,this.last=null,this.propertySource=void 0,this.propertyName=void 0,this.notifier=void 0,this.next=void 0,this.toJSON=h}setMode(e){this.isAsync=this.needsQueue=e}bind(e){this.controller=e;const t=this.observe(e.source,e.context);return!e.isBound&&this.requiresUnbind(e)&&e.onUnbind(this),t}requiresUnbind(e){return e.sourceLifetime!==P.coupled||this.first!==this.last||this.first.propertySource!==e.source}unbind(e){this.dispose()}observe(e,t){this.needsRefresh&&null!==this.last&&this.dispose();const o=r;let n;r=this.needsRefresh?this:void 0,this.needsRefresh=this.isVolatileBinding;try{n=this.expression(e,t)}finally{r=o}return n}disconnect(){this.dispose()}dispose(){if(null!==this.last){let e=this.first;for(;void 0!==e;)e.notifier.unsubscribe(this,e.propertyName),e=e.next;this.last=null,this.needsRefresh=this.needsQueue=this.isAsync}}watch(e,t){const o=this.last,n=i(e),s=null===o?this.first:{};if(s.propertySource=e,s.propertyName=t,s.notifier=n,n.subscribe(this,t),null!==o){if(!this.needsRefresh){let t;r=void 0,t=o.propertySource[o.propertyName],r=this,e===t&&(this.needsRefresh=!0)}o.next=s}this.last=s}handleChange(){this.needsQueue?(this.needsQueue=!1,e(this)):this.isAsync||this.call()}call(){null!==this.last&&(this.needsQueue=this.isAsync,this.notify(this))}*records(){let e=this.first;for(;void 0!==e;)yield e,e=e.next}}return Object.freeze({setArrayObserverFactory(e){s=e},getNotifier:i,track(e,t){r&&r.watch(e,t)},trackVolatile(){r&&(r.needsRefresh=!0)},notify(e,t){i(e).notify(t)},defineProperty(e,t){u(t)&&(t=new c(t)),l(e).push(t),Reflect.defineProperty(e,t.name,{enumerable:!0,get(){return t.getValue(this)},set(e){t.setValue(this,e)}})},getAccessors:l,binding(e,t,o=this.isVolatileBinding(e)){return new g(e,t,o)},isVolatileBinding:e=>t.test(e.toString())})});function w(e,t){S.defineProperty(e,t)}const x=n.getById(c.contextEvent,()=>{let e=null;return{get:()=>e,set(t){e=t}}}),N=Object.freeze({default:{index:0,length:0,get event(){return N.getEvent()},eventDetail(){return this.event.detail},eventTarget(){return this.event.target}},getEvent:()=>x.get(),setEvent(e){x.set(e)}});let F;class ${constructor(e){this.styles=e,this.targets=new WeakSet,this._strategy=null,this.behaviors=e.map(e=>e instanceof $?e.behaviors:null).reduce((e,t)=>null===t?e:null===e?t:e.concat(t),null)}get strategy(){return null===this._strategy&&this.withStrategy(F),this._strategy}addStylesTo(e){this.strategy.addStylesTo(e),this.targets.add(e)}removeStylesFrom(e){this.strategy.removeStylesFrom(e),this.targets.delete(e)}isAttachedTo(e){return this.targets.has(e)}withBehaviors(...e){return this.behaviors=null===this.behaviors?e:this.behaviors.concat(e),this}withStrategy(e){return this._strategy=new e(function e(t){return t.map(t=>t instanceof $?e(t.styles):[t]).reduce((e,t)=>e.concat(t),[])}(this.styles)),this}static setDefaultStrategy(e){F=e}static normalize(e){return void 0===e?void 0:Array.isArray(e)?new $(e):e instanceof $?e:new $([e])}}$.supportsAdoptedStyleSheets=Array.isArray(document.adoptedStyleSheets)&&"replace"in CSSStyleSheet.prototype;const C=i(),A=Object.freeze({getForInstance:C.getForInstance,getByType:C.getByType,define:e=>(C.register({type:e}),e)});function T(e,t){const o=[];let r="";const n=[],s=e=>{n.push(e)};for(let n=0,i=e.length-1;n<i;++n){r+=e[n];let i=t[n];void 0!==A.getForInstance(i)&&(i=i.createCSS(s)),i instanceof $||i instanceof CSSStyleSheet?(""!==r.trim()&&(o.push(r),r=""),o.push(i)):r+=i}return r+=e[e.length-1],""!==r.trim()&&o.push(r),{styles:o,behaviors:n}}const I=(e,...t)=>{const{styles:o,behaviors:r}=T(e,t),n=new $(o);return r.length?n.withBehaviors(...r):n};class L{constructor(e,t){this.behaviors=t,this.css="";const o=e.reduce((e,t)=>(u(t)?this.css+=t:e.push(t),e),[]);o.length&&(this.styles=new $(o))}createCSS(e){return this.behaviors.forEach(e),this.styles&&e(this),this.css}addedCallback(e){e.addStyles(this.styles)}removedCallback(e){e.removeStyles(this.styles)}}A.define(L),I.partial=(e,...t)=>{const{styles:o,behaviors:r}=T(e,t);return new L(o,r)};const z="fast-"+Math.random().toString(36).substring(2,8),O=z+"{",H="}"+z,D=H.length;let M=0;const V=()=>`${z}-${++M}`,R=Object.freeze({interpolation:e=>`${O}${e}${H}`,attribute:e=>`${V()}="${O}${e}${H}"`,comment:e=>`\x3c!--${O}${e}${H}--\x3e`}),E=Object.freeze({parse(e,t){const o=e.split(O);if(1===o.length)return null;const r=[];for(let e=0,n=o.length;e<n;++e){const n=o[e],s=n.indexOf(H);let i;if(-1===s)i=n;else{const e=n.substring(0,s);r.push(t[e]),i=n.substring(s+D)}""!==i&&r.push(i)}return r}}),_=i(),j=Object.freeze({getForInstance:_.getForInstance,getByType:_.getByType,define:(e,t)=>((t=t||{}).type=e,_.register(t),e),assignAspect(e,t){if(t)switch(e.sourceAspect=t,t[0]){case":":e.targetAspect=t.substring(1),e.aspectType="classList"===e.targetAspect?g.tokenList:g.property;break;case"?":e.targetAspect=t.substring(1),e.aspectType=g.booleanAttribute;break;case"@":e.targetAspect=t.substring(1),e.aspectType=g.event;break;default:e.targetAspect=t,e.aspectType=g.attribute}else e.aspectType=g.content}});class G{constructor(e,t,o=!1){this.evaluate=e,this.policy=t,this.isVolatile=o}}class X{constructor(e){this.options=e,this.toJSON=h}createHTML(e){return R.attribute(e(this))}createBehavior(){return this}}class q extends G{createObserver(e,t){return S.binding(this.evaluate,t,this.isVolatile)}}class W extends G{constructor(){super(...arguments),this.toJSON=h}createObserver(){return this}bind(e){return this.evaluate(e.source,e.context)}}const Y={[g.attribute]:b.setAttribute,[g.booleanAttribute]:b.setBooleanAttribute,[g.property]:(e,t,o)=>e[t]=o,[g.content]:function(e,t,o,r){if(null==o&&(o=""),o.create){e.textContent="";let t=e.$fastView;void 0===t?t=o.create():e.$fastTemplate!==o&&(t.isComposed&&(t.remove(),t.unbind()),t=o.create()),t.isComposed?t.needsBindOnly&&(t.needsBindOnly=!1,t.bind(r.source,r.context)):(t.isComposed=!0,t.bind(r.source,r.context),t.insertBefore(e),e.$fastView=t,e.$fastTemplate=o)}else{const t=e.$fastView;void 0!==t&&t.isComposed&&(t.isComposed=!1,t.remove(),t.needsBindOnly?t.needsBindOnly=!1:t.unbind()),e.textContent=o}},[g.tokenList]:function(e,t,o){var r;const n=this.id+"-t",s=null!==(r=e[n])&&void 0!==r?r:e[n]={v:0,cv:Object.create(null)},i=s.cv;let a=s.v;const l=e[t];if(null!=o&&o.length){const e=o.split(/\s+/);for(let t=0,o=e.length;t<o;++t){const o=e[t];""!==o&&(i[o]=a,l.add(o))}}if(s.v=a+1,0!==a){a-=1;for(const e in i)i[e]===a&&l.remove(e)}},[g.event]:()=>{}};class U{constructor(e){this.dataBinding=e,this.updateTarget=null,this.aspectType=g.content}createHTML(e){return R.interpolation(e(this))}createBehavior(){var e;if(null===this.updateTarget){const t=Y[this.aspectType],o=null!==(e=this.dataBinding.policy)&&void 0!==e?e:this.policy;if(!t)throw n.error(1205);this.data=this.id+"-d",this.updateTarget=o.protect(this.targetTagName,this.aspectType,this.targetAspect,t)}return this}bind(e){var t;const o=e.targets[this.targetNodeId];switch(this.aspectType){case g.event:o[this.data]=e,o.addEventListener(this.targetAspect,this,this.dataBinding.options);break;case g.content:e.onUnbind(this);default:const r=null!==(t=o[this.data])&&void 0!==t?t:o[this.data]=this.dataBinding.createObserver(this,this);r.target=o,r.controller=e,this.updateTarget(o,this.targetAspect,r.bind(e),e)}}unbind(e){const t=e.targets[this.targetNodeId].$fastView;void 0!==t&&t.isComposed&&(t.unbind(),t.needsBindOnly=!0)}handleEvent(e){const t=e.currentTarget[this.data];if(t.isBound){N.setEvent(e);const o=this.dataBinding.evaluate(t.source,t.context);N.setEvent(null),!0!==o&&e.preventDefault()}}handleChange(e,t){const o=t.target,r=t.controller;this.updateTarget(o,this.targetAspect,t.bind(r),r)}}function K(e,t,o=S.isVolatileBinding(e)){return new q(e,t,o)}function Q(e,t){return new W(e,t)}function J(e,t){const o=e.parentNode;let r,n=e;for(;n!==t;)r=n.nextSibling,o.removeChild(n),n=r;o.removeChild(t)}j.define(U,{aspected:!0});class Z{constructor(e,t,o){this.fragment=e,this.factories=t,this.targets=o,this.behaviors=null,this.unbindables=[],this.source=null,this.isBound=!1,this.sourceLifetime=P.unknown,this.context=this,this.index=0,this.length=0,this.toJSON=h,this.firstChild=e.firstChild,this.lastChild=e.lastChild}get event(){return N.getEvent()}get isEven(){return this.index%2==0}get isOdd(){return this.index%2!=0}get isFirst(){return 0===this.index}get isInMiddle(){return!this.isFirst&&!this.isLast}get isLast(){return this.index===this.length-1}eventDetail(){return this.event.detail}eventTarget(){return this.event.target}appendTo(e){e.appendChild(this.fragment)}insertBefore(e){if(this.fragment.hasChildNodes())e.parentNode.insertBefore(this.fragment,e);else{const t=this.lastChild;if(e.previousSibling===t)return;const o=e.parentNode;let r,n=this.firstChild;for(;n!==t;)r=n.nextSibling,o.insertBefore(n,e),n=r;o.insertBefore(t,e)}}remove(){const e=this.fragment,t=this.lastChild;let o,r=this.firstChild;for(;r!==t;)o=r.nextSibling,e.appendChild(r),r=o;e.appendChild(t)}dispose(){J(this.firstChild,this.lastChild),this.unbind()}onUnbind(e){this.unbindables.push(e)}bind(e,t=this){if(this.source===e)return;let o=this.behaviors;if(null===o){this.source=e,this.context=t,this.behaviors=o=new Array(this.factories.length);const r=this.factories;for(let e=0,t=r.length;e<t;++e){const t=r[e].createBehavior();t.bind(this),o[e]=t}}else{null!==this.source&&this.evaluateUnbindables(),this.isBound=!1,this.source=e,this.context=t;for(let e=0,t=o.length;e<t;++e)o[e].bind(this)}this.isBound=!0}unbind(){this.isBound&&null!==this.source&&(this.evaluateUnbindables(),this.source=null,this.context=this,this.isBound=!1)}evaluateUnbindables(){const e=this.unbindables;for(let t=0,o=e.length;t<o;++t)e[t].unbind(this);e.length=0}static disposeContiguousBatch(e){if(0!==e.length){J(e[0].firstChild,e[e.length-1].lastChild);for(let t=0,o=e.length;t<o;++t)e[t].unbind()}}}S.defineProperty(Z.prototype,"index"),S.defineProperty(Z.prototype,"length");const ee=(e,t)=>`${e}.${t}`,te={},oe={index:0,node:null};function re(e){e.startsWith("fast-")||n.warn(1204,{name:e})}const ne=new Proxy(document.createElement("div"),{get(e,t){re(t);const o=Reflect.get(e,t);return d(o)?o.bind(e):o},set:(e,t,o)=>(re(t),Reflect.set(e,t,o))});class se{constructor(e,t,o){this.fragment=e,this.directives=t,this.policy=o,this.proto=null,this.nodeIds=new Set,this.descriptors={},this.factories=[]}addFactory(e,t,o,r,n){var s,i;this.nodeIds.has(o)||(this.nodeIds.add(o),this.addTargetDescriptor(t,o,r)),e.id=null!==(s=e.id)&&void 0!==s?s:V(),e.targetNodeId=o,e.targetTagName=n,e.policy=null!==(i=e.policy)&&void 0!==i?i:this.policy,this.factories.push(e)}freeze(){return this.proto=Object.create(null,this.descriptors),this}addTargetDescriptor(e,t,o){const r=this.descriptors;if("r"===t||"h"===t||r[t])return;if(!r[e]){const t=e.lastIndexOf("."),o=e.substring(0,t),r=parseInt(e.substring(t+1));this.addTargetDescriptor(o,e,r)}let n=te[t];if(!n){const r="_"+t;te[t]=n={get(){var t;return null!==(t=this[r])&&void 0!==t?t:this[r]=this[e].childNodes[o]}}}r[t]=n}createView(e){const t=this.fragment.cloneNode(!0),o=Object.create(this.proto);o.r=t,o.h=null!=e?e:ne;for(const e of this.nodeIds)o[e];return new Z(t,this.factories,o)}}function ie(e,t,o,r,n,s=!1){const i=o.attributes,a=e.directives;for(let l=0,c=i.length;l<c;++l){const d=i[l],u=d.value,h=E.parse(u,a);let g=null;null===h?s&&(g=new U(Q(()=>u,e.policy)),j.assignAspect(g,d.name)):g=ce.aggregate(h,e.policy),null!==g&&(o.removeAttributeNode(d),l--,c--,e.addFactory(g,t,r,n,o.tagName))}}function ae(e,t,o){let r=0,n=t.firstChild;for(;n;){const t=le(e,o,n,r);n=t.node,r=t.index}}function le(e,t,o,r){const n=ee(t,r);switch(o.nodeType){case 1:ie(e,t,o,n,r),ae(e,o,n);break;case 3:return function(e,t,o,r,n){const s=E.parse(t.textContent,e.directives);if(null===s)return oe.node=t.nextSibling,oe.index=n+1,oe;let i,a=i=t;for(let t=0,l=s.length;t<l;++t){const l=s[t];0!==t&&(n++,r=ee(o,n),i=a.parentNode.insertBefore(document.createTextNode(""),a.nextSibling)),u(l)?i.textContent=l:(i.textContent=" ",j.assignAspect(l),e.addFactory(l,o,r,n,null)),a=i}return oe.index=n+1,oe.node=a.nextSibling,oe}(e,o,t,n,r);case 8:const s=E.parse(o.data,e.directives);null!==s&&e.addFactory(ce.aggregate(s),t,n,r,null)}return oe.index=r+1,oe.node=o.nextSibling,oe}const ce={compile(e,t,o=b.policy){let r;if(u(e)){r=document.createElement("TEMPLATE"),r.innerHTML=o.createHTML(e);const t=r.content.firstElementChild;null!==t&&"TEMPLATE"===t.tagName&&(r=t)}else r=e;const n=document.adoptNode(r.content),s=new se(n,t,o);var i,a;return ie(s,"",r,"h",0,!0),i=n.firstChild,a=t,(i&&8==i.nodeType&&null!==E.parse(i.data,a)||1===n.childNodes.length&&Object.keys(t).length>0)&&n.insertBefore(document.createComment(""),n.firstChild),ae(s,n,"r"),oe.node=null,s.freeze()},setDefaultStrategy(e){this.compile=e},aggregate(e,t=b.policy){if(1===e.length)return e[0];let o,r,n=!1,s=void 0;const i=e.length,a=e.map(e=>u(e)?()=>e:(o=e.sourceAspect||o,r=e.dataBinding||r,n=n||e.dataBinding.isVolatile,s=s||e.dataBinding.policy,e.dataBinding.evaluate));r.evaluate=(e,t)=>{let o="";for(let r=0;r<i;++r)o+=a[r](e,t);return o},r.isVolatile=n,r.policy=null!=s?s:t;const l=new U(r);return j.assignAspect(l,o),l}},de=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/,ue=Object.create(null);class he{constructor(e,t=ue){this.html=e,this.factories=t}createHTML(e){const t=this.factories;for(const o in t)e(t[o]);return this.html}}function ge(e,t,o,r=j.getForInstance(e)){if(r.aspected){const o=de.exec(t);null!==o&&j.assignAspect(e,o[2])}return e.createHTML(o)}he.empty=new he(""),j.define(he);class pe{constructor(e,t={},o){this.policy=o,this.result=null,this.toJSON=h,this.html=e,this.factories=t}create(e){return null===this.result&&(this.result=ce.compile(this.html,this.factories,this.policy)),this.result.createView(e)}inline(){return new he(u(this.html)?this.html:this.html.innerHTML,this.factories)}withPolicy(e){if(this.result)throw n.error(1208);if(this.policy)throw n.error(1207);return this.policy=e,this}render(e,t,o){const r=this.create(o);return r.bind(e),r.appendTo(t),r}static create(e,t,o){let r="";const n=Object.create(null),s=e=>{var t;const o=null!==(t=e.id)&&void 0!==t?t:e.id=V();return n[o]=e,o};for(let o=0,n=e.length-1;o<n;++o){const n=e[o];let i,a=t[o];if(r+=n,d(a))a=new U(K(a));else if(a instanceof G)a=new U(a);else if(!(i=j.getForInstance(a))){const e=a;a=new U(Q(()=>e))}r+=ge(a,n,s,i)}return new pe(r+e[e.length-1],n,o)}}const fe=(e,...t)=>{if(Array.isArray(e)&&Array.isArray(e.raw))return pe.create(e,t);throw n.error(1206)};fe.partial=e=>new he(e);class ve extends X{bind(e){e.source[this.options]=e.targets[this.targetNodeId]}}j.define(ve);const me=e=>new ve(e);function be(e,t){const o=d(e)?e:()=>e,r=d(t)?t:()=>t;return(e,t)=>o(e,t)?r(e,t):null}const Be=e=>1===e.nodeType;class ye extends X{get id(){return this._id}set id(e){this._id=e,this._controllerProperty=e+"-c"}bind(e){const t=e.targets[this.targetNodeId];t[this._controllerProperty]=e,this.updateTarget(e.source,this.computeNodes(t)),this.observe(t),e.onUnbind(this)}unbind(e){const t=e.targets[this.targetNodeId];this.updateTarget(e.source,s),this.disconnect(t),t[this._controllerProperty]=null}getSource(e){return e[this._controllerProperty].source}updateTarget(e,t){e[this.options.property]=t}computeNodes(e){let t=this.getNodes(e);return"filter"in this.options&&(t=t.filter(this.options.filter)),t}}class ke extends ye{observe(e){e.addEventListener("slotchange",this)}disconnect(e){e.removeEventListener("slotchange",this)}getNodes(e){return e.assignedNodes(this.options)}handleEvent(e){const t=e.currentTarget;this.updateTarget(this.getSource(t),this.computeNodes(t))}}j.define(ke);const Pe=Object.freeze({locate:a()}),Se={toView:e=>e?"true":"false",fromView:e=>null!=e&&"false"!==e&&!1!==e&&0!==e};function we(e){if(null==e)return null;const t=1*e;return isNaN(t)?null:t}const xe={toView(e){const t=we(e);return t?t.toString():t},fromView:we};class Ne{constructor(e,t,o=t.toLowerCase(),r="reflect",n){this.guards=new Set,this.Owner=e,this.name=t,this.attribute=o,this.mode=r,this.converter=n,this.fieldName="_"+t,this.callbackName=t+"Changed",this.hasCallback=this.callbackName in e.prototype,"boolean"===r&&void 0===n&&(this.converter=Se)}setValue(e,t){const o=e[this.fieldName],r=this.converter;void 0!==r&&(t=r.fromView(t)),o!==t&&(e[this.fieldName]=t,this.tryReflectToAttribute(e),this.hasCallback&&e[this.callbackName](o,t),e.$fastController.notify(this.name))}getValue(e){return S.track(e,this.name),e[this.fieldName]}onAttributeChangedCallback(e,t){this.guards.has(e)||(this.guards.add(e),this.setValue(e,t),this.guards.delete(e))}tryReflectToAttribute(e){const t=this.mode,o=this.guards;o.has(e)||"fromView"===t||B.enqueue(()=>{o.add(e);const r=e[this.fieldName];switch(t){case"reflect":const t=this.converter;b.setAttribute(e,this.attribute,void 0!==t?t.toView(r):r);break;case"boolean":b.setBooleanAttribute(e,this.attribute,r)}o.delete(e)})}static collect(e,...t){const o=[];t.push(Pe.locate(e));for(let r=0,n=t.length;r<n;++r){const n=t[r];if(void 0!==n)for(let t=0,r=n.length;t<r;++t){const r=n[t];u(r)?o.push(new Ne(e,r)):o.push(new Ne(e,r.property,r.attribute,r.mode,r.converter))}}return o}}function Fe(e,t){let o;function r(e,t){arguments.length>1&&(o.property=t),Pe.locate(e.constructor).push(o)}return arguments.length>1?(o={},void r(e,t)):(o=void 0===e?{}:e,r)}const $e={mode:"open"},Ce={},Ae=new Set,Te=n.getById(c.elementRegistry,()=>i());class Ie{constructor(e,t=e.definition){var o;this.platformDefined=!1,u(t)&&(t={name:t}),this.type=e,this.name=t.name,this.template=t.template,this.registry=null!==(o=t.registry)&&void 0!==o?o:customElements;const r=e.prototype,n=Ne.collect(e,t.attributes),s=new Array(n.length),i={},a={};for(let e=0,t=n.length;e<t;++e){const t=n[e];s[e]=t.attribute,i[t.name]=t,a[t.attribute]=t,S.defineProperty(r,t)}Reflect.defineProperty(e,"observedAttributes",{value:s,enumerable:!0}),this.attributes=n,this.propertyLookup=i,this.attributeLookup=a,this.shadowOptions=void 0===t.shadowOptions?$e:null===t.shadowOptions?void 0:Object.assign(Object.assign({},$e),t.shadowOptions),this.elementOptions=void 0===t.elementOptions?Ce:Object.assign(Object.assign({},Ce),t.elementOptions),this.styles=$.normalize(t.styles),Te.register(this)}get isDefined(){return this.platformDefined}define(e=this.registry){const t=this.type;return e.get(this.name)||(this.platformDefined=!0,e.define(this.name,t,this.elementOptions)),this}static compose(e,t){return Ae.has(e)||Te.getByType(e)?new Ie(class extends e{},t):new Ie(e,t)}static registerBaseType(e){Ae.add(e)}}Ie.getByType=Te.getByType,Ie.getForInstance=Te.getForInstance;const Le={bubbles:!0,composed:!0,cancelable:!0},ze=new WeakMap;function Oe(e){var t,o;return null!==(o=null!==(t=e.shadowRoot)&&void 0!==t?t:ze.get(e))&&void 0!==o?o:null}let He;class De extends k{constructor(e,t){super(e),this.boundObservables=null,this.needsInitialization=!0,this.hasExistingShadowRoot=!1,this._template=null,this.stage=3,this.guardBehaviorConnection=!1,this.behaviors=null,this._mainStyles=null,this.$fastController=this,this.view=null,this.toJSON=h,this.source=e,this.definition=t;const o=t.shadowOptions;if(void 0!==o){let t=e.shadowRoot;t?this.hasExistingShadowRoot=!0:(t=e.attachShadow(o),"closed"===o.mode&&ze.set(e,t))}const r=S.getAccessors(e);if(r.length>0){const t=this.boundObservables=Object.create(null);for(let o=0,n=r.length;o<n;++o){const n=r[o].name,s=e[n];void 0!==s&&(delete e[n],t[n]=s)}}}get isConnected(){return S.track(this,"isConnected"),1===this.stage}get template(){var e;if(null===this._template){const t=this.definition;this.source.resolveTemplate?this._template=this.source.resolveTemplate():t.template&&(this._template=null!==(e=t.template)&&void 0!==e?e:null)}return this._template}set template(e){this._template!==e&&(this._template=e,this.needsInitialization||this.renderTemplate(e))}get mainStyles(){var e;if(null===this._mainStyles){const t=this.definition;this.source.resolveStyles?this._mainStyles=this.source.resolveStyles():t.styles&&(this._mainStyles=null!==(e=t.styles)&&void 0!==e?e:null)}return this._mainStyles}set mainStyles(e){this._mainStyles!==e&&(null!==this._mainStyles&&this.removeStyles(this._mainStyles),this._mainStyles=e,this.needsInitialization||this.addStyles(e))}addBehavior(e){var t,o;const r=null!==(t=this.behaviors)&&void 0!==t?t:this.behaviors=new Map,n=null!==(o=r.get(e))&&void 0!==o?o:0;0===n?(r.set(e,1),e.addedCallback&&e.addedCallback(this),!e.connectedCallback||this.guardBehaviorConnection||1!==this.stage&&0!==this.stage||e.connectedCallback(this)):r.set(e,n+1)}removeBehavior(e,t=!1){const o=this.behaviors;if(null===o)return;const r=o.get(e);void 0!==r&&(1===r||t?(o.delete(e),e.disconnectedCallback&&3!==this.stage&&e.disconnectedCallback(this),e.removedCallback&&e.removedCallback(this)):o.set(e,r-1))}addStyles(e){var t;if(!e)return;const o=this.source;if(e instanceof HTMLElement){(null!==(t=Oe(o))&&void 0!==t?t:this.source).append(e)}else if(!e.isAttachedTo(o)){const t=e.behaviors;if(e.addStylesTo(o),null!==t)for(let e=0,o=t.length;e<o;++e)this.addBehavior(t[e])}}removeStyles(e){var t;if(!e)return;const o=this.source;if(e instanceof HTMLElement){(null!==(t=Oe(o))&&void 0!==t?t:o).removeChild(e)}else if(e.isAttachedTo(o)){const t=e.behaviors;if(e.removeStylesFrom(o),null!==t)for(let e=0,o=t.length;e<o;++e)this.addBehavior(t[e])}}connect(){if(3!==this.stage)return;if(this.stage=0,null!==this.boundObservables){const e=this.source,t=this.boundObservables,o=Object.keys(t);for(let r=0,n=o.length;r<n;++r){const n=o[r];e[n]=t[n]}this.boundObservables=null}const e=this.behaviors;if(null!==e){this.guardBehaviorConnection=!0;for(const t of e.keys())t.connectedCallback&&t.connectedCallback(this);this.guardBehaviorConnection=!1}this.needsInitialization?(this.renderTemplate(this.template),this.addStyles(this.mainStyles),this.needsInitialization=!1):null!==this.view&&this.view.bind(this.source),this.stage=1,S.notify(this,"isConnected")}disconnect(){if(1!==this.stage)return;this.stage=2,S.notify(this,"isConnected"),null!==this.view&&this.view.unbind();const e=this.behaviors;if(null!==e)for(const t of e.keys())t.disconnectedCallback&&t.disconnectedCallback(this);this.stage=3}onAttributeChangedCallback(e,t,o){const r=this.definition.attributeLookup[e];void 0!==r&&r.onAttributeChangedCallback(this.source,o)}emit(e,t,o){return 1===this.stage&&this.source.dispatchEvent(new CustomEvent(e,Object.assign(Object.assign({detail:t},Le),o)))}renderTemplate(e){var t;const o=this.source,r=null!==(t=Oe(o))&&void 0!==t?t:o;if(null!==this.view)this.view.dispose(),this.view=null;else if(!this.needsInitialization||this.hasExistingShadowRoot){this.hasExistingShadowRoot=!1;for(let e=r.firstChild;null!==e;e=r.firstChild)r.removeChild(e)}e&&(this.view=e.render(o,r,o),this.view.sourceLifetime=P.coupled)}static forCustomElement(e){const t=e.$fastController;if(void 0!==t)return t;const o=Ie.getForInstance(e);if(void 0===o)throw n.error(1401);return e.$fastController=new He(e,o)}static setStrategy(e){He=e}}function Me(e){var t;return"adoptedStyleSheets"in e?e:null!==(t=Oe(e))&&void 0!==t?t:e.getRootNode()}De.setStrategy(De);class Ve{constructor(e){const t=Ve.styleSheetCache;this.sheets=e.map(e=>{if(e instanceof CSSStyleSheet)return e;let o=t.get(e);return void 0===o&&(o=new CSSStyleSheet,o.replaceSync(e),t.set(e,o)),o})}addStylesTo(e){const t=Me(e);t.adoptedStyleSheets=[...t.adoptedStyleSheets,...this.sheets]}removeStylesFrom(e){const t=Me(e),o=this.sheets;t.adoptedStyleSheets=t.adoptedStyleSheets.filter(e=>-1===o.indexOf(e))}}Ve.styleSheetCache=new Map;let Re=0;function Ee(e){return e===document?document.body:e}function _e(e){const t=class extends e{constructor(){super(),De.forCustomElement(this)}$emit(e,t,o){return this.$fastController.emit(e,t,o)}connectedCallback(){this.$fastController.connect()}disconnectedCallback(){this.$fastController.disconnect()}attributeChangedCallback(e,t,o){this.$fastController.onAttributeChangedCallback(e,t,o)}};return Ie.registerBaseType(t),t}$.setDefaultStrategy($.supportsAdoptedStyleSheets?Ve:class{constructor(e){this.styles=e,this.styleClass="fast-"+ ++Re}addStylesTo(e){e=Ee(Me(e));const t=this.styles,o=this.styleClass;for(let r=0;r<t.length;r++){const n=document.createElement("style");n.innerHTML=t[r],n.className=o,e.append(n)}}removeStylesFrom(e){const t=(e=Ee(Me(e))).querySelectorAll("."+this.styleClass);for(let o=0,r=t.length;o<r;++o)e.removeChild(t[o])}});const je=Object.assign(_e(HTMLElement),{from:function(e){return _e(e)},define:function(e,t){return d(e)?Ie.compose(e,t).define().type:Ie.compose(this,e).define().type},compose:function(e,t){return d(e)?Ie.compose(e,t):Ie.compose(this,e)}});function Ge(e){return e?"string"==typeof e?new he(e):"inline"in e?e.inline():e:he.empty}function Xe(e,t,o,r){var n,s=arguments.length,i=s<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,o):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,o,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(i=(s<3?n(i):s>3?n(t,o,i):n(t,o))||i);return s>3&&i&&Object.defineProperty(t,o,i),i}class qe{}function We(e){return fe`<slot name="end" ${me("end")}>${Ge(e.end)}</slot>`.inline()}function Ye(e){return fe`<slot name="start" ${me("start")}>${Ge(e.start)}</slot>`.inline()}let Ue=0;function Ke(e,...t){const o=Pe.locate(e);t.forEach(t=>{Object.getOwnPropertyNames(t.prototype).forEach(o=>{"constructor"!==o&&Object.defineProperty(e.prototype,o,Object.getOwnPropertyDescriptor(t.prototype,o))});Pe.locate(t).forEach(e=>o.push(e))})}class Qe extends je{constructor(){super(...arguments),this.headinglevel=2,this.expanded=!1,this.disabled=!1,this.id=function(e=""){return`${e}${Ue++}`}("accordion-"),this.clickHandler=e=>{this.disabled||this.$emit("click",e)}}}Xe([Fe({attribute:"heading-level",mode:"fromView",converter:xe})],Qe.prototype,"headinglevel",void 0),Xe([Fe({mode:"boolean"})],Qe.prototype,"expanded",void 0),Xe([Fe({mode:"boolean"})],Qe.prototype,"disabled",void 0),Xe([Fe],Qe.prototype,"id",void 0),Ke(Qe,qe);const Je="single",Ze="multi";class et extends je{constructor(){super(...arguments),this.expandmode=Ze,this.activeItemIndex=0,this.change=()=>{this.$emit("change",this.activeid)},this.setItems=()=>{if(0===this.slottedAccordionItems.length)return;const e=Array.from(this.children);if(this.removeItemListeners(e),e.forEach(e=>S.getNotifier(e).subscribe(this,"disabled")),this.accordionItems=e.filter(e=>!e.hasAttribute("disabled")),this.accordionIds=this.getItemIds(),this.accordionItems.forEach((e,t)=>{e instanceof Qe&&(e.addEventListener("click",this.activeItemChange),S.getNotifier(e).subscribe(this,"expanded"));const o=this.accordionIds[t];e.setAttribute("id","string"!=typeof o?"accordion-"+(t+1):o),this.activeid=this.accordionIds[this.activeItemIndex],e.addEventListener("keydown",this.handleItemKeyDown),e.addEventListener("focus",this.handleItemFocus)}),this.isSingleExpandMode()){const e=this.findExpandedItem();this.setSingleExpandMode(e)}},this.removeItemListeners=e=>{e.forEach((e,t)=>{S.getNotifier(e).unsubscribe(this,"disabled"),S.getNotifier(e).unsubscribe(this,"expanded"),e.removeEventListener("click",this.activeItemChange),e.removeEventListener("keydown",this.handleItemKeyDown),e.removeEventListener("focus",this.handleItemFocus)})},this.activeItemChange=e=>{e.defaultPrevented||e.target!==e.currentTarget||(e.preventDefault(),this.handleExpandedChange(e.target))},this.handleExpandedChange=e=>{e instanceof Qe&&(this.activeid=e.getAttribute("id"),this.isSingleExpandMode()?this.setSingleExpandMode(e):(e.expanded=!e.expanded,this.activeItemIndex=this.accordionItems.indexOf(e)),this.change())},this.handleItemKeyDown=e=>{if(e.target===e.currentTarget)switch(this.accordionIds=this.getItemIds(),e.key){case"ArrowUp":e.preventDefault(),this.adjust(-1);break;case"ArrowDown":e.preventDefault(),this.adjust(1);break;case"Home":this.activeItemIndex=0,this.focusItem();break;case"End":this.activeItemIndex=this.accordionItems.length-1,this.focusItem()}},this.handleItemFocus=e=>{if(e.target===e.currentTarget){const t=e.target,o=this.activeItemIndex=Array.from(this.accordionItems).indexOf(t);this.activeItemIndex!==o&&-1!==o&&(this.activeItemIndex=o,this.activeid=this.accordionIds[this.activeItemIndex])}}}expandmodeChanged(e,t){if(!this.$fastController.isConnected)return;const o=this.findExpandedItem();o&&(t!==Je?null==o||o.expandbutton.removeAttribute("aria-disabled"):this.setSingleExpandMode(o))}slottedAccordionItemsChanged(e,t){this.$fastController.isConnected&&this.setItems()}handleChange(e,t){"disabled"===t?this.setItems():"expanded"===t&&e.expanded&&this.isSingleExpandMode()&&this.setSingleExpandMode(e)}findExpandedItem(){var e;return 0===this.accordionItems.length?null:null!==(e=this.accordionItems.find(e=>e instanceof Qe&&e.expanded))&&void 0!==e?e:this.accordionItems[0]}setSingleExpandMode(e){if(0===this.accordionItems.length)return;const t=Array.from(this.accordionItems);this.activeItemIndex=t.indexOf(e),t.forEach((e,t)=>{this.activeItemIndex===t?(e.expanded=!0,e.expandbutton.setAttribute("aria-disabled","true")):(e.expanded=!1,e.hasAttribute("disabled")||e.expandbutton.removeAttribute("aria-disabled"))})}getItemIds(){return this.slottedAccordionItems.map(e=>e.id)}isSingleExpandMode(){return this.expandmode===Je}adjust(e){var t,o,r;this.activeItemIndex=(t=0,o=this.accordionItems.length-1,(r=this.activeItemIndex+e)<t?o:r>o?t:r),this.focusItem()}focusItem(){const e=this.accordionItems[this.activeItemIndex];e instanceof Qe&&e.expandbutton.focus()}}Xe([Fe({attribute:"expand-mode"})],et.prototype,"expandmode",void 0),Xe([w],et.prototype,"slottedAccordionItems",void 0);class tt{constructor(e){this.value=e,this.notifier=S.getNotifier(this),this.dependencies=new Set,this.binding=S.binding(e,this),this.binding.setMode(!1)}static getOrCreate(e){let t=tt.cache.get(e);return t||(t=new tt(e),tt.cache.set(e,t),t)}evaluate(e,t){return this.binding.observe(o=>{if(this.dependencies.add(o),t===o){if(e.parent)return e.parent.getTokenValue(o);throw new Error("DesignTokenNode has encountered a circular token reference. Avoid this by setting the token value for an ancestor node.")}return e.getTokenValue(o)})}handleChange(){this.notifier.notify(void 0)}}tt.cache=new WeakMap;class ot{constructor(e,t,o,r){this.token=e,this.evaluator=t,this.node=o,this.subscriber=r,this.value=t.evaluate(o,e),this.subscriber&&S.getNotifier(this.evaluator).subscribe(this.subscriber)}dispose(){this.subscriber&&S.getNotifier(this.evaluator).unsubscribe(this.subscriber)}update(){return this.value=this.evaluator.evaluate(this.node,this.token),this}}class rt{constructor(e,t,o,r){this.target=e,this.type=t,this.token=o,this.value=r}notify(){S.getNotifier(this.token).notify(this)}}class nt{constructor(){this._parent=null,this._children=new Set,this._values=new Map,this._derived=new Map,this.dependencyGraph=new Map}static isDerivedTokenValue(e){return"function"==typeof e}static isDerivedFor(e,t){return e._derived.has(t)}static collectDerivedContext(e){const t=new Map;if(null===e.parent)return t;let o=nt.getAssignedTokensForNode(e),r=e.parent;do{const e=nt.getAssignedTokensForNode(r);for(let n=0,s=e.length;n<s;n++){const s=e[n];!o.includes(s)&&nt.isDerivedFor(r,s)&&t.set(s,r._derived.get(s))}o=Array.from(new Set(o.concat(e))),r=r.parent}while(null!==r);return t}static getLocalTokenValue(e,t){return nt.isAssigned(e,t)?nt.isDerivedFor(e,t)?e._derived.get(t).value:e._values.get(t):void 0}static getOrCreateDependencyGraph(e,t){let o=e.dependencyGraph.get(t);return o||(o=new Set,e.dependencyGraph.set(t,o),o)}static notify(){const e=this._notifications;this._notifications=[];for(const t of e)t.notify()}static queueNotification(...e){this._notifications.push(...e)}static getAssignedTokensForNode(e){return Array.from(e._values.keys())}static composeAssignedTokensForNode(e){const t=new Set(nt.getAssignedTokensForNode(e));let o=e.parent;for(;null!==o;){const e=nt.getAssignedTokensForNode(o);for(const o of e)t.add(o);o=o.parent}return Array.from(t)}static isAssigned(e,t){return e._values.has(t)}get parent(){return this._parent}get children(){return Array.from(this._children)}appendChild(e){var t,o;let r=null;null!==e.parent&&(r=nt.composeAssignedTokensForNode(e.parent),e.parent._children.delete(e));const n=nt.composeAssignedTokensForNode(this),s=nt.collectDerivedContext(this);e._parent=this,this._children.add(e);for(const o of n){let n=0;if(null!==r){const e=r.indexOf(o);-1!==e&&(n=1,r.splice(e,1))}e.dispatch(new rt(this,n,o,null===(t=s.get(o))||void 0===t?void 0:t.evaluator.value))}if(null!==r&&r.length>0)for(const t of r)e.dispatch(new rt(this,2,t,null===(o=s.get(t))||void 0===o?void 0:o.evaluator.value));nt.notify()}removeChild(e){if(e.parent===this){const t=nt.composeAssignedTokensForNode(this);e._parent=null,this._children.delete(e);for(const o of t)e.dispatch(new rt(this,2,o));nt.notify()}}dispose(){this.parent&&(this.parent._children.delete(this),this._parent=null);for(const[,e]of this._derived)e.dispose()}setTokenValue(e,t){const o=nt.isAssigned(this,e)||nt.isDerivedFor(this,e)?1:0,r=nt.getLocalTokenValue(this,e);this._values.set(e,t),nt.isDerivedFor(this,e)&&this.tearDownDerivedTokenValue(e);const n=nt.isDerivedTokenValue(t),s=nt.collectDerivedContext(this);let i;if(n){i=this.setupDerivedTokenValue(e,t,!0).value}else i=t;r!==i&&nt.queueNotification(new rt(this,o,e,t)),this.dispatch(new rt(this,o,e,t)),s.forEach((e,t)=>{if(!nt.isDerivedFor(this,t)){nt.getLocalTokenValue(this,t)!==(e=this.setupDerivedTokenValue(t,e.evaluator.value)).value&&nt.queueNotification(new rt(this,1,t,e.evaluator.value)),this.dispatch(new rt(this,0,t,e.evaluator.value))}}),nt.notify()}getTokenValue(e){let t,o=this;for(;null!==o;){if(nt.isDerivedFor(o,e)){t=o._derived.get(e).value;break}if(nt.isAssigned(o,e)){t=o._values.get(e);break}o=o._parent}if(void 0!==t)return t;throw new Error(`No value set for token ${e} in node tree.`)}deleteTokenValue(e){if(nt.isAssigned(this,e)){const t=nt.getLocalTokenValue(this,e);let o;this._values.delete(e),this.tearDownDerivedTokenValue(e);try{o=this.getTokenValue(e)}catch(e){o=void 0}nt.queueNotification(new rt(this,2,e)),t!==o&&this.dispatch(new rt(this,2,e)),nt.notify()}}dispatch(e){var t,o,r;if(this!==e.target){const{token:n}=e,s=nt.isAssigned(this,n),i=s&&(null===(t=this._derived.get(n))||void 0===t?void 0:t.evaluator.dependencies.has(n));if(s&&!i)return;2===e.type&&!s&&nt.isDerivedFor(this,n)&&(this.tearDownDerivedTokenValue(n),nt.queueNotification(new rt(this,2,n))),i&&(e=new rt(this,1,n,null===(o=this._derived.get(n))||void 0===o?void 0:o.evaluator.value));const{value:a}=e;if(a&&nt.isDerivedTokenValue(a)){const t=tt.getOrCreate(a).dependencies;let o=!1;for(const e of t)if(nt.isAssigned(this,e)){o=!0;break}if(o){const t=null===(r=this._derived.get(n))||void 0===r?void 0:r.value,o=this.setupDerivedTokenValue(n,a);if(t!==o.value){const r=new rt(this,void 0===t?0:1,n,o.evaluator.value);nt.queueNotification(r),e=r}}}}this.collectLocalChangeRecords(e).forEach(e=>{nt.queueNotification(e),this.dispatch(e)}),this.notifyChildren(e)}collectLocalChangeRecords(e){const t=new Map;for(const o of nt.getOrCreateDependencyGraph(this,e.token))o.value!==o.update().value&&t.set(o.token,new rt(this,1,o.token,o.evaluator.value));return t}notifyChildren(...e){if(this.children.length)for(let t=0,o=this.children.length;t<o;t++)for(let o=0;o<e.length;o++)this.children[t].dispatch(e[o])}tearDownDerivedTokenValue(e){if(nt.isDerivedFor(this,e)){const t=this._derived.get(e);t.dispose(),this._derived.delete(e),t.evaluator.dependencies.forEach(e=>{nt.getOrCreateDependencyGraph(this,e).delete(t)})}}setupDerivedTokenValue(e,t,o=!1){const r=new ot(e,tt.getOrCreate(t),this,o?{handleChange:()=>{if(r.value!==r.update().value){const e=new rt(this,1,r.token,r.evaluator.value);nt.queueNotification(e),this.dispatch(e),nt.notify()}}}:void 0);return this._derived.set(e,r),r.evaluator.dependencies.forEach(t=>{t!==e&&nt.getOrCreateDependencyGraph(this,t).add(r)}),r}}nt._notifications=[];class st{setProperty(e,t){B.enqueue(()=>this.target.setProperty(e,t))}removeProperty(e){B.enqueue(()=>this.target.removeProperty(e))}}class it extends st{constructor(){super();const e=new CSSStyleSheet;this.target=e.cssRules[e.insertRule(":root{}")].style,document.adoptedStyleSheets=[...document.adoptedStyleSheets,e]}}class at extends st{constructor(){super(),this.style=document.createElement("style"),document.head.appendChild(this.style);const{sheet:e}=this.style;if(e){const t=e.insertRule(":root{}",e.cssRules.length);this.target=e.cssRules[t].style}}}class lt{constructor(e){this.store=new Map,this.target=null;const t=e.$fastController;this.style=document.createElement("style"),t.addStyles(this.style),S.getNotifier(t).subscribe(this,"isConnected"),this.handleChange(t,"isConnected")}targetChanged(){if(null!==this.target)for(const[e,t]of this.store.entries())this.target.setProperty(e,t)}setProperty(e,t){this.store.set(e,t),B.enqueue(()=>{null!==this.target&&this.target.setProperty(e,t)})}removeProperty(e){this.store.delete(e),B.enqueue(()=>{null!==this.target&&this.target.removeProperty(e)})}handleChange(e,t){const{sheet:o}=this.style;if(o){const e=o.insertRule(":host{}",o.cssRules.length);this.target=o.cssRules[e].style}else this.target=null}}Xe([w],lt.prototype,"target",void 0);class ct{setProperty(e,t){ct.properties[e]=t;for(const o of ct.roots.values())o.setProperty(e,t)}removeProperty(e){delete ct.properties[e];for(const t of ct.roots.values())t.removeProperty(e)}static registerRoot(e){const{roots:t}=ct;if(!t.has(e)){t.add(e);for(const t in ct.properties)e.setProperty(t,ct.properties[t])}}static unregisterRoot(e){const{roots:t}=ct;if(t.has(e)){t.delete(e);for(const t in ct.properties)e.removeProperty(t)}}}ct.roots=new Set,ct.properties={};const dt=new WeakMap,ut=$.supportsAdoptedStyleSheets?class extends st{constructor(e){super();const t=new CSSStyleSheet;this.target=t.cssRules[t.insertRule(":host{}")].style,e.$fastController.addStyles(new $([t]))}}:lt,ht=Object.freeze({getOrCreate(e){if(dt.has(e))return dt.get(e);let t;return t=e instanceof Document?$.supportsAdoptedStyleSheets?new it:new at:new ut(e),dt.set(e,t),t}});class gt{constructor(e){this.subscriberNotifier={handleChange:(e,t)=>{const o={target:t.target===mt.defaultNode?"default":t.target.target,token:this};this.subscribers.notify(o)}},this.name=e.name,S.getNotifier(this).subscribe(this.subscriberNotifier)}get $value(){return this.default}get default(){return mt.defaultNode.getTokenValue(this)}get subscribers(){return this._subscribers||(this._subscribers=new y(this)),this._subscribers}static isCSSDesignTokenConfiguration(e){return"string"==typeof e.cssCustomPropertyName}static create(e){return"string"==typeof e?new pt({name:e,cssCustomPropertyName:e}):gt.isCSSDesignTokenConfiguration(e)?new pt(e):new gt(e)}static withStrategy(e){mt.withStrategy(e)}static registerDefaultStyleTarget(e=document){(e instanceof je||e instanceof Document)&&(e=ht.getOrCreate(e)),ct.registerRoot(e)}static unregisterDefaultStyleTarget(e=document){(e instanceof je||e instanceof Document)&&(e=ht.getOrCreate(e)),ct.unregisterRoot(e)}getValueFor(e){return mt.getOrCreate(e).getTokenValue(this)}setValueFor(e,t){mt.getOrCreate(e).setTokenValue(this,this.normalizeValue(t))}deleteValueFor(e){return mt.getOrCreate(e).deleteTokenValue(this),this}withDefault(e){return mt.defaultNode.setTokenValue(this,this.normalizeValue(e)),this}subscribe(e){this.subscribers.subscribe(e)}unsubscribe(e){this.subscribers.unsubscribe(e)}alias(e){return t=>t(e)}normalizeValue(e){return e instanceof gt&&(e=this.alias(e)),e}}let pt=class extends gt{constructor(e){super(e),this.cssReflector={handleChange:(e,t)=>{const o=t.target===mt.defaultNode?mt.rootStyleSheetTarget:t.target instanceof mt?ht.getOrCreate(t.target.target):null;o&&(2===t.type?o.removeProperty(this.cssCustomProperty):o.setProperty(this.cssCustomProperty,this.resolveCSSValue(t.target.getTokenValue(this))))}},this.cssCustomProperty="--"+e.cssCustomPropertyName,this.cssVar=`var(${this.cssCustomProperty})`,S.getNotifier(this).subscribe(this.cssReflector)}createCSS(){return this.cssVar}createHTML(){return this.cssVar}resolveCSSValue(e){return e&&"function"==typeof e.createCSS?e.createCSS():e}};var ft;pt=Xe([function(e){A.define(e)},function(e){j.define(e,ft)}],pt);const vt={contains:e,parent(e){let o=t(e);for(;null!==o;){if(o instanceof je)return o;o=t(o)}return null}};class mt extends nt{constructor(e){super(),this.target=e,this.setTokenValue=this.lazyAttachToDefault(super.setTokenValue),this.getTokenValue=this.lazyAttachToDefault(super.getTokenValue),this.deleteTokenValue=this.lazyAttachToDefault(super.deleteTokenValue)}static get strategy(){return void 0===this._strategy&&mt.withStrategy(vt),this._strategy}connectedCallback(e){let t=mt.findParent(e.source);if(null===t&&(t=mt.defaultNode),t!==this.parent){const o=[];for(const r of t.children)r instanceof mt&&mt.strategy.contains(e.source,r.target)&&o.push(r);t.appendChild(this);for(const e of o)this.appendChild(e)}}disconnectedCallback(e){mt.cache.delete(this.target),this.dispose()}static getOrCreate(e){let t=mt.cache.get(e);return t||(t=new mt(e),mt.cache.set(e,t),e.$fastController.addBehavior(mt.strategy),e.$fastController.addBehavior(t),t)}static withStrategy(e){this._strategy=e}static findParent(e){let t=mt.strategy.parent(e);for(;null!==t;){const e=mt.cache.get(t);if(e)return e;t=mt.strategy.parent(t)}return null}lazyAttachToDefault(e){return(...t)=>(null===this.parent&&mt.defaultNode.appendChild(this),e.apply(this,t))}}mt.defaultNode=new nt,mt.rootStyleSheetTarget=new ct,mt.cache=new WeakMap;class bt extends je{constructor(){super(...arguments),this.percentComplete=0}valueChanged(){this.updatePercentComplete()}minChanged(){this.$fastController.isConnected&&this.updatePercentComplete()}maxChanged(){this.$fastController.isConnected&&this.updatePercentComplete()}connectedCallback(){super.connectedCallback(),this.updatePercentComplete()}updatePercentComplete(){const e="number"==typeof this.min?this.min:0,t="number"==typeof this.max?this.max:100,o="number"==typeof this.value?this.value:0,r=t-e;this.percentComplete=0===r?0:Math.fround((o-e)/r*100)}}Xe([Fe({converter:xe})],bt.prototype,"value",void 0),Xe([Fe({converter:xe})],bt.prototype,"min",void 0),Xe([Fe({converter:xe})],bt.prototype,"max",void 0),Xe([w],bt.prototype,"percentComplete",void 0);class Bt extends bt{}class yt extends bt{}function kt(e){return`:host([hidden]){display:none}:host{display:${e}}`}class Pt extends et{}const St=fe`<template><slot ${wt={property:"slottedAccordionItems",filter:xt?e=>1===e.nodeType&&e.matches(xt):Be},u(wt)&&(wt={property:wt}),new ke(wt)}></slot></template>`;var wt,xt;const Nt=I`
|
|
2
|
-
${
|
|
1
|
+
import{composedContains as e,composedParent as t}from"@microsoft/fast-element/utilities";var o="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};!function(){if("undefined"==typeof globalThis)if(void 0!==o)o.globalThis=o;else if("undefined"!=typeof self)self.globalThis=self;else if("undefined"!=typeof window)window.globalThis=window;else{const e=new Function("return this")();e.globalThis=e}}();const r={configurable:!1,enumerable:!1,writable:!1};void 0===globalThis.FAST&&Reflect.defineProperty(globalThis,"FAST",Object.assign({value:Object.create(null)},r));const n=globalThis.FAST;if(void 0===n.getById){const e=Object.create(null);Reflect.defineProperty(n,"getById",Object.assign({value(t,o){let r=e[t];return void 0===r&&(r=o?e[t]=o():null),r}},r))}void 0===n.error&&Object.assign(n,{warn(){},error:e=>new Error("Error "+e),addMessages(){}});const i=Object.freeze([]);function s(){const e=new Map;return Object.freeze({register:t=>!e.has(t.type)&&(e.set(t.type,t),!0),getByType:t=>e.get(t),getForInstance(t){if(null!=t)return e.get(t.constructor)}})}function a(){const e=new WeakMap;return function(t){let o=e.get(t);if(void 0===o){let r=Reflect.getPrototypeOf(t);for(;void 0===o&&null!==r;)o=e.get(r),r=Reflect.getPrototypeOf(r);o=void 0===o?[]:o.slice(0),e.set(t,o)}return o}}let l;try{if(document.currentScript)l=document.currentScript.getAttribute("fast-kernel");else{const e=document.getElementsByTagName("script");l=e[e.length-1].getAttribute("fast-kernel")}}catch(e){l="isolate"}let c;switch(l){case"share":c=Object.freeze({updateQueue:1,observable:2,contextEvent:3,elementRegistry:4});break;case"share-v2":c=Object.freeze({updateQueue:1.2,observable:2.2,contextEvent:3.2,elementRegistry:4.2});break;default:const e="-"+Math.random().toString(36).substring(2,8);c=Object.freeze({updateQueue:"1.2"+e,observable:"2.2"+e,contextEvent:"3.2"+e,elementRegistry:"4.2"+e})}const d=e=>"function"==typeof e,h=e=>"string"==typeof e,u=()=>{},g=Object.freeze({none:0,attribute:1,booleanAttribute:2,property:3,content:4,tokenList:5,event:6}),p=e=>e,f=globalThis.trustedTypes?globalThis.trustedTypes.createPolicy("fast-html",{createHTML:p}):{createHTML:p};let v=Object.freeze({createHTML:e=>f.createHTML(e),protect:(e,t,o,r)=>r});const b=v,m=Object.freeze({get policy(){return v},setPolicy(e){if(v!==b)throw n.error(1201);v=e},setAttribute(e,t,o){null==o?e.removeAttribute(t):e.setAttribute(t,o)},setBooleanAttribute(e,t,o){o?e.setAttribute(t,""):e.removeAttribute(t)}}),y=n.getById(c.updateQueue,()=>{const e=[],t=[],o=globalThis.requestAnimationFrame;let r=!0;function n(){if(t.length)throw t.shift()}function i(o){try{o.call()}catch(o){if(!r)throw e.length=0,o;t.push(o),setTimeout(n,0)}}function s(){let t=0;for(;t<e.length;)if(i(e[t]),t++,t>1024){for(let o=0,r=e.length-t;o<r;o++)e[o]=e[o+t];e.length-=t,t=0}e.length=0}function a(t){e.push(t),e.length<2&&(r?o(s):s())}return Object.freeze({enqueue:a,next:()=>new Promise(a),process:s,setMode:e=>r=e})});class k{constructor(e,t){this.sub1=void 0,this.sub2=void 0,this.spillover=void 0,this.subject=e,this.sub1=t}has(e){return void 0===this.spillover?this.sub1===e||this.sub2===e:-1!==this.spillover.indexOf(e)}subscribe(e){const t=this.spillover;if(void 0===t){if(this.has(e))return;if(void 0===this.sub1)return void(this.sub1=e);if(void 0===this.sub2)return void(this.sub2=e);this.spillover=[this.sub1,this.sub2,e],this.sub1=void 0,this.sub2=void 0}else{-1===t.indexOf(e)&&t.push(e)}}unsubscribe(e){const t=this.spillover;if(void 0===t)this.sub1===e?this.sub1=void 0:this.sub2===e&&(this.sub2=void 0);else{const o=t.indexOf(e);-1!==o&&t.splice(o,1)}}notify(e){const t=this.spillover,o=this.subject;if(void 0===t){const t=this.sub1,r=this.sub2;void 0!==t&&t.handleChange(o,e),void 0!==r&&r.handleChange(o,e)}else for(let r=0,n=t.length;r<n;++r)t[r].handleChange(o,e)}}class B{constructor(e){this.subscribers={},this.subjectSubscribers=null,this.subject=e}notify(e){var t,o;null===(t=this.subscribers[e])||void 0===t||t.notify(e),null===(o=this.subjectSubscribers)||void 0===o||o.notify(e)}subscribe(e,t){var o,r;let n;n=t?null!==(o=this.subscribers[t])&&void 0!==o?o:this.subscribers[t]=new k(this.subject):null!==(r=this.subjectSubscribers)&&void 0!==r?r:this.subjectSubscribers=new k(this.subject),n.subscribe(e)}unsubscribe(e,t){var o,r;t?null===(o=this.subscribers[t])||void 0===o||o.unsubscribe(e):null===(r=this.subjectSubscribers)||void 0===r||r.unsubscribe(e)}}const x=Object.freeze({unknown:void 0,coupled:1}),w=n.getById(c.observable,()=>{const e=y.enqueue,t=/(:|&&|\|\||if)/,o=new WeakMap;let r=void 0,i=e=>{throw n.error(1101)};function s(e){var t;let r=null!==(t=e.$fastController)&&void 0!==t?t:o.get(e);return void 0===r&&(Array.isArray(e)?r=i(e):o.set(e,r=new B(e))),r}const l=a();class c{constructor(e){this.name=e,this.field="_"+e,this.callback=e+"Changed"}getValue(e){return void 0!==r&&r.watch(e,this.name),e[this.field]}setValue(e,t){const o=this.field,r=e[o];if(r!==t){e[o]=t;const n=e[this.callback];d(n)&&n.call(e,r,t),s(e).notify(this.name)}}}class g extends k{constructor(e,t,o=!1){super(e,t),this.expression=e,this.isVolatileBinding=o,this.needsRefresh=!0,this.needsQueue=!0,this.isAsync=!0,this.first=this,this.last=null,this.propertySource=void 0,this.propertyName=void 0,this.notifier=void 0,this.next=void 0,this.toJSON=u}setMode(e){this.isAsync=this.needsQueue=e}bind(e){this.controller=e;const t=this.observe(e.source,e.context);return!e.isBound&&this.requiresUnbind(e)&&e.onUnbind(this),t}requiresUnbind(e){return e.sourceLifetime!==x.coupled||this.first!==this.last||this.first.propertySource!==e.source}unbind(e){this.dispose()}observe(e,t){this.needsRefresh&&null!==this.last&&this.dispose();const o=r;let n;r=this.needsRefresh?this:void 0,this.needsRefresh=this.isVolatileBinding;try{n=this.expression(e,t)}finally{r=o}return n}disconnect(){this.dispose()}dispose(){if(null!==this.last){let e=this.first;for(;void 0!==e;)e.notifier.unsubscribe(this,e.propertyName),e=e.next;this.last=null,this.needsRefresh=this.needsQueue=this.isAsync}}watch(e,t){const o=this.last,n=s(e),i=null===o?this.first:{};if(i.propertySource=e,i.propertyName=t,i.notifier=n,n.subscribe(this,t),null!==o){if(!this.needsRefresh){let t;r=void 0,t=o.propertySource[o.propertyName],r=this,e===t&&(this.needsRefresh=!0)}o.next=i}this.last=i}handleChange(){this.needsQueue?(this.needsQueue=!1,e(this)):this.isAsync||this.call()}call(){null!==this.last&&(this.needsQueue=this.isAsync,this.notify(this))}*records(){let e=this.first;for(;void 0!==e;)yield e,e=e.next}}return Object.freeze({setArrayObserverFactory(e){i=e},getNotifier:s,track(e,t){r&&r.watch(e,t)},trackVolatile(){r&&(r.needsRefresh=!0)},notify(e,t){s(e).notify(t)},defineProperty(e,t){h(t)&&(t=new c(t)),l(e).push(t),Reflect.defineProperty(e,t.name,{enumerable:!0,get(){return t.getValue(this)},set(e){t.setValue(this,e)}})},getAccessors:l,binding(e,t,o=this.isVolatileBinding(e)){return new g(e,t,o)},isVolatileBinding:e=>t.test(e.toString())})});function P(e,t){w.defineProperty(e,t)}const $=n.getById(c.contextEvent,()=>{let e=null;return{get:()=>e,set(t){e=t}}}),S=Object.freeze({default:{index:0,length:0,get event(){return S.getEvent()},eventDetail(){return this.event.detail},eventTarget(){return this.event.target}},getEvent:()=>$.get(),setEvent(e){$.set(e)}});let F;class C{constructor(e){this.styles=e,this.targets=new WeakSet,this._strategy=null,this.behaviors=e.map(e=>e instanceof C?e.behaviors:null).reduce((e,t)=>null===t?e:null===e?t:e.concat(t),null)}get strategy(){return null===this._strategy&&this.withStrategy(F),this._strategy}addStylesTo(e){this.strategy.addStylesTo(e),this.targets.add(e)}removeStylesFrom(e){this.strategy.removeStylesFrom(e),this.targets.delete(e)}isAttachedTo(e){return this.targets.has(e)}withBehaviors(...e){return this.behaviors=null===this.behaviors?e:this.behaviors.concat(e),this}withStrategy(e){return this._strategy=new e(function e(t){return t.map(t=>t instanceof C?e(t.styles):[t]).reduce((e,t)=>e.concat(t),[])}(this.styles)),this}static setDefaultStrategy(e){F=e}static normalize(e){return void 0===e?void 0:Array.isArray(e)?new C(e):e instanceof C?e:new C([e])}}C.supportsAdoptedStyleSheets=Array.isArray(document.adoptedStyleSheets)&&"replace"in CSSStyleSheet.prototype;const N=s(),z=Object.freeze({getForInstance:N.getForInstance,getByType:N.getByType,define:e=>(N.register({type:e}),e)});function A(e,t){const o=[];let r="";const n=[],i=e=>{n.push(e)};for(let n=0,s=e.length-1;n<s;++n){r+=e[n];let s=t[n];void 0!==z.getForInstance(s)&&(s=s.createCSS(i)),s instanceof C||s instanceof CSSStyleSheet?(""!==r.trim()&&(o.push(r),r=""),o.push(s)):r+=s}return r+=e[e.length-1],""!==r.trim()&&o.push(r),{styles:o,behaviors:n}}const I=(e,...t)=>{const{styles:o,behaviors:r}=A(e,t),n=new C(o);return r.length?n.withBehaviors(...r):n};class T{constructor(e,t){this.behaviors=t,this.css="";const o=e.reduce((e,t)=>(h(t)?this.css+=t:e.push(t),e),[]);o.length&&(this.styles=new C(o))}createCSS(e){return this.behaviors.forEach(e),this.styles&&e(this),this.css}addedCallback(e){e.addStyles(this.styles)}removedCallback(e){e.removeStyles(this.styles)}}z.define(T),I.partial=(e,...t)=>{const{styles:o,behaviors:r}=A(e,t);return new T(o,r)};const L="fast-"+Math.random().toString(36).substring(2,8),O=L+"{",H="}"+L,D=H.length;let V=0;const M=()=>`${L}-${++V}`,E=Object.freeze({interpolation:e=>`${O}${e}${H}`,attribute:e=>`${M()}="${O}${e}${H}"`,comment:e=>`\x3c!--${O}${e}${H}--\x3e`}),R=Object.freeze({parse(e,t){const o=e.split(O);if(1===o.length)return null;const r=[];for(let e=0,n=o.length;e<n;++e){const n=o[e],i=n.indexOf(H);let s;if(-1===i)s=n;else{const e=n.substring(0,i);r.push(t[e]),s=n.substring(i+D)}""!==s&&r.push(s)}return r}}),_=s(),j=Object.freeze({getForInstance:_.getForInstance,getByType:_.getByType,define:(e,t)=>((t=t||{}).type=e,_.register(t),e),assignAspect(e,t){if(t)switch(e.sourceAspect=t,t[0]){case":":e.targetAspect=t.substring(1),e.aspectType="classList"===e.targetAspect?g.tokenList:g.property;break;case"?":e.targetAspect=t.substring(1),e.aspectType=g.booleanAttribute;break;case"@":e.targetAspect=t.substring(1),e.aspectType=g.event;break;default:e.targetAspect=t,e.aspectType=g.attribute}else e.aspectType=g.content}});class G{constructor(e,t,o=!1){this.evaluate=e,this.policy=t,this.isVolatile=o}}class q{constructor(e){this.options=e,this.toJSON=u}createHTML(e){return E.attribute(e(this))}createBehavior(){return this}}class X extends G{createObserver(e,t){return w.binding(this.evaluate,t,this.isVolatile)}}class W extends G{constructor(){super(...arguments),this.toJSON=u}createObserver(){return this}bind(e){return this.evaluate(e.source,e.context)}}const Y={[g.attribute]:m.setAttribute,[g.booleanAttribute]:m.setBooleanAttribute,[g.property]:(e,t,o)=>e[t]=o,[g.content]:function(e,t,o,r){if(null==o&&(o=""),o.create){e.textContent="";let t=e.$fastView;void 0===t?t=o.create():e.$fastTemplate!==o&&(t.isComposed&&(t.remove(),t.unbind()),t=o.create()),t.isComposed?t.needsBindOnly&&(t.needsBindOnly=!1,t.bind(r.source,r.context)):(t.isComposed=!0,t.bind(r.source,r.context),t.insertBefore(e),e.$fastView=t,e.$fastTemplate=o)}else{const t=e.$fastView;void 0!==t&&t.isComposed&&(t.isComposed=!1,t.remove(),t.needsBindOnly?t.needsBindOnly=!1:t.unbind()),e.textContent=o}},[g.tokenList]:function(e,t,o){var r;const n=this.id+"-t",i=null!==(r=e[n])&&void 0!==r?r:e[n]={v:0,cv:Object.create(null)},s=i.cv;let a=i.v;const l=e[t];if(null!=o&&o.length){const e=o.split(/\s+/);for(let t=0,o=e.length;t<o;++t){const o=e[t];""!==o&&(s[o]=a,l.add(o))}}if(i.v=a+1,0!==a){a-=1;for(const e in s)s[e]===a&&l.remove(e)}},[g.event]:()=>{}};class U{constructor(e){this.dataBinding=e,this.updateTarget=null,this.aspectType=g.content}createHTML(e){return E.interpolation(e(this))}createBehavior(){var e;if(null===this.updateTarget){const t=Y[this.aspectType],o=null!==(e=this.dataBinding.policy)&&void 0!==e?e:this.policy;if(!t)throw n.error(1205);this.data=this.id+"-d",this.updateTarget=o.protect(this.targetTagName,this.aspectType,this.targetAspect,t)}return this}bind(e){var t;const o=e.targets[this.targetNodeId];switch(this.aspectType){case g.event:o[this.data]=e,o.addEventListener(this.targetAspect,this,this.dataBinding.options);break;case g.content:e.onUnbind(this);default:const r=null!==(t=o[this.data])&&void 0!==t?t:o[this.data]=this.dataBinding.createObserver(this,this);r.target=o,r.controller=e,this.updateTarget(o,this.targetAspect,r.bind(e),e)}}unbind(e){const t=e.targets[this.targetNodeId].$fastView;void 0!==t&&t.isComposed&&(t.unbind(),t.needsBindOnly=!0)}handleEvent(e){const t=e.currentTarget[this.data];if(t.isBound){S.setEvent(e);const o=this.dataBinding.evaluate(t.source,t.context);S.setEvent(null),!0!==o&&e.preventDefault()}}handleChange(e,t){const o=t.target,r=t.controller;this.updateTarget(o,this.targetAspect,t.bind(r),r)}}function K(e,t,o=w.isVolatileBinding(e)){return new X(e,t,o)}function Q(e,t){return new W(e,t)}function J(e,t){const o=e.parentNode;let r,n=e;for(;n!==t;)r=n.nextSibling,o.removeChild(n),n=r;o.removeChild(t)}j.define(U,{aspected:!0});class Z{constructor(e,t,o){this.fragment=e,this.factories=t,this.targets=o,this.behaviors=null,this.unbindables=[],this.source=null,this.isBound=!1,this.sourceLifetime=x.unknown,this.context=this,this.index=0,this.length=0,this.toJSON=u,this.firstChild=e.firstChild,this.lastChild=e.lastChild}get event(){return S.getEvent()}get isEven(){return this.index%2==0}get isOdd(){return this.index%2!=0}get isFirst(){return 0===this.index}get isInMiddle(){return!this.isFirst&&!this.isLast}get isLast(){return this.index===this.length-1}eventDetail(){return this.event.detail}eventTarget(){return this.event.target}appendTo(e){e.appendChild(this.fragment)}insertBefore(e){if(this.fragment.hasChildNodes())e.parentNode.insertBefore(this.fragment,e);else{const t=this.lastChild;if(e.previousSibling===t)return;const o=e.parentNode;let r,n=this.firstChild;for(;n!==t;)r=n.nextSibling,o.insertBefore(n,e),n=r;o.insertBefore(t,e)}}remove(){const e=this.fragment,t=this.lastChild;let o,r=this.firstChild;for(;r!==t;)o=r.nextSibling,e.appendChild(r),r=o;e.appendChild(t)}dispose(){J(this.firstChild,this.lastChild),this.unbind()}onUnbind(e){this.unbindables.push(e)}bind(e,t=this){if(this.source===e)return;let o=this.behaviors;if(null===o){this.source=e,this.context=t,this.behaviors=o=new Array(this.factories.length);const r=this.factories;for(let e=0,t=r.length;e<t;++e){const t=r[e].createBehavior();t.bind(this),o[e]=t}}else{null!==this.source&&this.evaluateUnbindables(),this.isBound=!1,this.source=e,this.context=t;for(let e=0,t=o.length;e<t;++e)o[e].bind(this)}this.isBound=!0}unbind(){this.isBound&&null!==this.source&&(this.evaluateUnbindables(),this.source=null,this.context=this,this.isBound=!1)}evaluateUnbindables(){const e=this.unbindables;for(let t=0,o=e.length;t<o;++t)e[t].unbind(this);e.length=0}static disposeContiguousBatch(e){if(0!==e.length){J(e[0].firstChild,e[e.length-1].lastChild);for(let t=0,o=e.length;t<o;++t)e[t].unbind()}}}w.defineProperty(Z.prototype,"index"),w.defineProperty(Z.prototype,"length");const ee=(e,t)=>`${e}.${t}`,te={},oe={index:0,node:null};function re(e){e.startsWith("fast-")||n.warn(1204,{name:e})}const ne=new Proxy(document.createElement("div"),{get(e,t){re(t);const o=Reflect.get(e,t);return d(o)?o.bind(e):o},set:(e,t,o)=>(re(t),Reflect.set(e,t,o))});class ie{constructor(e,t,o){this.fragment=e,this.directives=t,this.policy=o,this.proto=null,this.nodeIds=new Set,this.descriptors={},this.factories=[]}addFactory(e,t,o,r,n){var i,s;this.nodeIds.has(o)||(this.nodeIds.add(o),this.addTargetDescriptor(t,o,r)),e.id=null!==(i=e.id)&&void 0!==i?i:M(),e.targetNodeId=o,e.targetTagName=n,e.policy=null!==(s=e.policy)&&void 0!==s?s:this.policy,this.factories.push(e)}freeze(){return this.proto=Object.create(null,this.descriptors),this}addTargetDescriptor(e,t,o){const r=this.descriptors;if("r"===t||"h"===t||r[t])return;if(!r[e]){const t=e.lastIndexOf("."),o=e.substring(0,t),r=parseInt(e.substring(t+1));this.addTargetDescriptor(o,e,r)}let n=te[t];if(!n){const r="_"+t;te[t]=n={get(){var t;return null!==(t=this[r])&&void 0!==t?t:this[r]=this[e].childNodes[o]}}}r[t]=n}createView(e){const t=this.fragment.cloneNode(!0),o=Object.create(this.proto);o.r=t,o.h=null!=e?e:ne;for(const e of this.nodeIds)o[e];return new Z(t,this.factories,o)}}function se(e,t,o,r,n,i=!1){const s=o.attributes,a=e.directives;for(let l=0,c=s.length;l<c;++l){const d=s[l],h=d.value,u=R.parse(h,a);let g=null;null===u?i&&(g=new U(Q(()=>h,e.policy)),j.assignAspect(g,d.name)):g=ce.aggregate(u,e.policy),null!==g&&(o.removeAttributeNode(d),l--,c--,e.addFactory(g,t,r,n,o.tagName))}}function ae(e,t,o){let r=0,n=t.firstChild;for(;n;){const t=le(e,o,n,r);n=t.node,r=t.index}}function le(e,t,o,r){const n=ee(t,r);switch(o.nodeType){case 1:se(e,t,o,n,r),ae(e,o,n);break;case 3:return function(e,t,o,r,n){const i=R.parse(t.textContent,e.directives);if(null===i)return oe.node=t.nextSibling,oe.index=n+1,oe;let s,a=s=t;for(let t=0,l=i.length;t<l;++t){const l=i[t];0!==t&&(n++,r=ee(o,n),s=a.parentNode.insertBefore(document.createTextNode(""),a.nextSibling)),h(l)?s.textContent=l:(s.textContent=" ",j.assignAspect(l),e.addFactory(l,o,r,n,null)),a=s}return oe.index=n+1,oe.node=a.nextSibling,oe}(e,o,t,n,r);case 8:const i=R.parse(o.data,e.directives);null!==i&&e.addFactory(ce.aggregate(i),t,n,r,null)}return oe.index=r+1,oe.node=o.nextSibling,oe}const ce={compile(e,t,o=m.policy){let r;if(h(e)){r=document.createElement("TEMPLATE"),r.innerHTML=o.createHTML(e);const t=r.content.firstElementChild;null!==t&&"TEMPLATE"===t.tagName&&(r=t)}else r=e;const n=document.adoptNode(r.content),i=new ie(n,t,o);var s,a;return se(i,"",r,"h",0,!0),s=n.firstChild,a=t,(s&&8==s.nodeType&&null!==R.parse(s.data,a)||1===n.childNodes.length&&Object.keys(t).length>0)&&n.insertBefore(document.createComment(""),n.firstChild),ae(i,n,"r"),oe.node=null,i.freeze()},setDefaultStrategy(e){this.compile=e},aggregate(e,t=m.policy){if(1===e.length)return e[0];let o,r,n=!1,i=void 0;const s=e.length,a=e.map(e=>h(e)?()=>e:(o=e.sourceAspect||o,r=e.dataBinding||r,n=n||e.dataBinding.isVolatile,i=i||e.dataBinding.policy,e.dataBinding.evaluate));r.evaluate=(e,t)=>{let o="";for(let r=0;r<s;++r)o+=a[r](e,t);return o},r.isVolatile=n,r.policy=null!=i?i:t;const l=new U(r);return j.assignAspect(l,o),l}},de=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/,he=Object.create(null);class ue{constructor(e,t=he){this.html=e,this.factories=t}createHTML(e){const t=this.factories;for(const o in t)e(t[o]);return this.html}}function ge(e,t,o,r=j.getForInstance(e)){if(r.aspected){const o=de.exec(t);null!==o&&j.assignAspect(e,o[2])}return e.createHTML(o)}ue.empty=new ue(""),j.define(ue);class pe{constructor(e,t={},o){this.policy=o,this.result=null,this.toJSON=u,this.html=e,this.factories=t}create(e){return null===this.result&&(this.result=ce.compile(this.html,this.factories,this.policy)),this.result.createView(e)}inline(){return new ue(h(this.html)?this.html:this.html.innerHTML,this.factories)}withPolicy(e){if(this.result)throw n.error(1208);if(this.policy)throw n.error(1207);return this.policy=e,this}render(e,t,o){const r=this.create(o);return r.bind(e),r.appendTo(t),r}static create(e,t,o){let r="";const n=Object.create(null),i=e=>{var t;const o=null!==(t=e.id)&&void 0!==t?t:e.id=M();return n[o]=e,o};for(let o=0,n=e.length-1;o<n;++o){const n=e[o];let s,a=t[o];if(r+=n,d(a))a=new U(K(a));else if(a instanceof G)a=new U(a);else if(!(s=j.getForInstance(a))){const e=a;a=new U(Q(()=>e))}r+=ge(a,n,i,s)}return new pe(r+e[e.length-1],n,o)}}const fe=(e,...t)=>{if(Array.isArray(e)&&Array.isArray(e.raw))return pe.create(e,t);throw n.error(1206)};fe.partial=e=>new ue(e);class ve extends q{bind(e){e.source[this.options]=e.targets[this.targetNodeId]}}j.define(ve);const be=e=>new ve(e);function me(e,t){const o=d(e)?e:()=>e,r=d(t)?t:()=>t;return(e,t)=>o(e,t)?r(e,t):null}const ye=e=>1===e.nodeType;class ke extends q{get id(){return this._id}set id(e){this._id=e,this._controllerProperty=e+"-c"}bind(e){const t=e.targets[this.targetNodeId];t[this._controllerProperty]=e,this.updateTarget(e.source,this.computeNodes(t)),this.observe(t),e.onUnbind(this)}unbind(e){const t=e.targets[this.targetNodeId];this.updateTarget(e.source,i),this.disconnect(t),t[this._controllerProperty]=null}getSource(e){return e[this._controllerProperty].source}updateTarget(e,t){e[this.options.property]=t}computeNodes(e){let t=this.getNodes(e);return"filter"in this.options&&(t=t.filter(this.options.filter)),t}}class Be extends ke{observe(e){e.addEventListener("slotchange",this)}disconnect(e){e.removeEventListener("slotchange",this)}getNodes(e){return e.assignedNodes(this.options)}handleEvent(e){const t=e.currentTarget;this.updateTarget(this.getSource(t),this.computeNodes(t))}}function xe(e){return h(e)&&(e={property:e}),new Be(e)}j.define(Be);const we=Object.freeze({locate:a()}),Pe={toView:e=>e?"true":"false",fromView:e=>null!=e&&"false"!==e&&!1!==e&&0!==e};function $e(e){if(null==e)return null;const t=1*e;return isNaN(t)?null:t}const Se={toView(e){const t=$e(e);return t?t.toString():t},fromView:$e};class Fe{constructor(e,t,o=t.toLowerCase(),r="reflect",n){this.guards=new Set,this.Owner=e,this.name=t,this.attribute=o,this.mode=r,this.converter=n,this.fieldName="_"+t,this.callbackName=t+"Changed",this.hasCallback=this.callbackName in e.prototype,"boolean"===r&&void 0===n&&(this.converter=Pe)}setValue(e,t){const o=e[this.fieldName],r=this.converter;void 0!==r&&(t=r.fromView(t)),o!==t&&(e[this.fieldName]=t,this.tryReflectToAttribute(e),this.hasCallback&&e[this.callbackName](o,t),e.$fastController.notify(this.name))}getValue(e){return w.track(e,this.name),e[this.fieldName]}onAttributeChangedCallback(e,t){this.guards.has(e)||(this.guards.add(e),this.setValue(e,t),this.guards.delete(e))}tryReflectToAttribute(e){const t=this.mode,o=this.guards;o.has(e)||"fromView"===t||y.enqueue(()=>{o.add(e);const r=e[this.fieldName];switch(t){case"reflect":const t=this.converter;m.setAttribute(e,this.attribute,void 0!==t?t.toView(r):r);break;case"boolean":m.setBooleanAttribute(e,this.attribute,r)}o.delete(e)})}static collect(e,...t){const o=[];t.push(we.locate(e));for(let r=0,n=t.length;r<n;++r){const n=t[r];if(void 0!==n)for(let t=0,r=n.length;t<r;++t){const r=n[t];h(r)?o.push(new Fe(e,r)):o.push(new Fe(e,r.property,r.attribute,r.mode,r.converter))}}return o}}function Ce(e,t){let o;function r(e,t){arguments.length>1&&(o.property=t),we.locate(e.constructor).push(o)}return arguments.length>1?(o={},void r(e,t)):(o=void 0===e?{}:e,r)}const Ne={mode:"open"},ze={},Ae=new Set,Ie=n.getById(c.elementRegistry,()=>s());class Te{constructor(e,t=e.definition){var o;this.platformDefined=!1,h(t)&&(t={name:t}),this.type=e,this.name=t.name,this.template=t.template,this.registry=null!==(o=t.registry)&&void 0!==o?o:customElements;const r=e.prototype,n=Fe.collect(e,t.attributes),i=new Array(n.length),s={},a={};for(let e=0,t=n.length;e<t;++e){const t=n[e];i[e]=t.attribute,s[t.name]=t,a[t.attribute]=t,w.defineProperty(r,t)}Reflect.defineProperty(e,"observedAttributes",{value:i,enumerable:!0}),this.attributes=n,this.propertyLookup=s,this.attributeLookup=a,this.shadowOptions=void 0===t.shadowOptions?Ne:null===t.shadowOptions?void 0:Object.assign(Object.assign({},Ne),t.shadowOptions),this.elementOptions=void 0===t.elementOptions?ze:Object.assign(Object.assign({},ze),t.elementOptions),this.styles=C.normalize(t.styles),Ie.register(this)}get isDefined(){return this.platformDefined}define(e=this.registry){const t=this.type;return e.get(this.name)||(this.platformDefined=!0,e.define(this.name,t,this.elementOptions)),this}static compose(e,t){return Ae.has(e)||Ie.getByType(e)?new Te(class extends e{},t):new Te(e,t)}static registerBaseType(e){Ae.add(e)}}Te.getByType=Ie.getByType,Te.getForInstance=Ie.getForInstance;const Le={bubbles:!0,composed:!0,cancelable:!0},Oe=new WeakMap;function He(e){var t,o;return null!==(o=null!==(t=e.shadowRoot)&&void 0!==t?t:Oe.get(e))&&void 0!==o?o:null}let De;class Ve extends B{constructor(e,t){super(e),this.boundObservables=null,this.needsInitialization=!0,this.hasExistingShadowRoot=!1,this._template=null,this.stage=3,this.guardBehaviorConnection=!1,this.behaviors=null,this._mainStyles=null,this.$fastController=this,this.view=null,this.toJSON=u,this.source=e,this.definition=t;const o=t.shadowOptions;if(void 0!==o){let t=e.shadowRoot;t?this.hasExistingShadowRoot=!0:(t=e.attachShadow(o),"closed"===o.mode&&Oe.set(e,t))}const r=w.getAccessors(e);if(r.length>0){const t=this.boundObservables=Object.create(null);for(let o=0,n=r.length;o<n;++o){const n=r[o].name,i=e[n];void 0!==i&&(delete e[n],t[n]=i)}}}get isConnected(){return w.track(this,"isConnected"),1===this.stage}get template(){var e;if(null===this._template){const t=this.definition;this.source.resolveTemplate?this._template=this.source.resolveTemplate():t.template&&(this._template=null!==(e=t.template)&&void 0!==e?e:null)}return this._template}set template(e){this._template!==e&&(this._template=e,this.needsInitialization||this.renderTemplate(e))}get mainStyles(){var e;if(null===this._mainStyles){const t=this.definition;this.source.resolveStyles?this._mainStyles=this.source.resolveStyles():t.styles&&(this._mainStyles=null!==(e=t.styles)&&void 0!==e?e:null)}return this._mainStyles}set mainStyles(e){this._mainStyles!==e&&(null!==this._mainStyles&&this.removeStyles(this._mainStyles),this._mainStyles=e,this.needsInitialization||this.addStyles(e))}addBehavior(e){var t,o;const r=null!==(t=this.behaviors)&&void 0!==t?t:this.behaviors=new Map,n=null!==(o=r.get(e))&&void 0!==o?o:0;0===n?(r.set(e,1),e.addedCallback&&e.addedCallback(this),!e.connectedCallback||this.guardBehaviorConnection||1!==this.stage&&0!==this.stage||e.connectedCallback(this)):r.set(e,n+1)}removeBehavior(e,t=!1){const o=this.behaviors;if(null===o)return;const r=o.get(e);void 0!==r&&(1===r||t?(o.delete(e),e.disconnectedCallback&&3!==this.stage&&e.disconnectedCallback(this),e.removedCallback&&e.removedCallback(this)):o.set(e,r-1))}addStyles(e){var t;if(!e)return;const o=this.source;if(e instanceof HTMLElement){(null!==(t=He(o))&&void 0!==t?t:this.source).append(e)}else if(!e.isAttachedTo(o)){const t=e.behaviors;if(e.addStylesTo(o),null!==t)for(let e=0,o=t.length;e<o;++e)this.addBehavior(t[e])}}removeStyles(e){var t;if(!e)return;const o=this.source;if(e instanceof HTMLElement){(null!==(t=He(o))&&void 0!==t?t:o).removeChild(e)}else if(e.isAttachedTo(o)){const t=e.behaviors;if(e.removeStylesFrom(o),null!==t)for(let e=0,o=t.length;e<o;++e)this.addBehavior(t[e])}}connect(){if(3!==this.stage)return;if(this.stage=0,null!==this.boundObservables){const e=this.source,t=this.boundObservables,o=Object.keys(t);for(let r=0,n=o.length;r<n;++r){const n=o[r];e[n]=t[n]}this.boundObservables=null}const e=this.behaviors;if(null!==e){this.guardBehaviorConnection=!0;for(const t of e.keys())t.connectedCallback&&t.connectedCallback(this);this.guardBehaviorConnection=!1}this.needsInitialization?(this.renderTemplate(this.template),this.addStyles(this.mainStyles),this.needsInitialization=!1):null!==this.view&&this.view.bind(this.source),this.stage=1,w.notify(this,"isConnected")}disconnect(){if(1!==this.stage)return;this.stage=2,w.notify(this,"isConnected"),null!==this.view&&this.view.unbind();const e=this.behaviors;if(null!==e)for(const t of e.keys())t.disconnectedCallback&&t.disconnectedCallback(this);this.stage=3}onAttributeChangedCallback(e,t,o){const r=this.definition.attributeLookup[e];void 0!==r&&r.onAttributeChangedCallback(this.source,o)}emit(e,t,o){return 1===this.stage&&this.source.dispatchEvent(new CustomEvent(e,Object.assign(Object.assign({detail:t},Le),o)))}renderTemplate(e){var t;const o=this.source,r=null!==(t=He(o))&&void 0!==t?t:o;if(null!==this.view)this.view.dispose(),this.view=null;else if(!this.needsInitialization||this.hasExistingShadowRoot){this.hasExistingShadowRoot=!1;for(let e=r.firstChild;null!==e;e=r.firstChild)r.removeChild(e)}e&&(this.view=e.render(o,r,o),this.view.sourceLifetime=x.coupled)}static forCustomElement(e){const t=e.$fastController;if(void 0!==t)return t;const o=Te.getForInstance(e);if(void 0===o)throw n.error(1401);return e.$fastController=new De(e,o)}static setStrategy(e){De=e}}function Me(e){var t;return"adoptedStyleSheets"in e?e:null!==(t=He(e))&&void 0!==t?t:e.getRootNode()}Ve.setStrategy(Ve);class Ee{constructor(e){const t=Ee.styleSheetCache;this.sheets=e.map(e=>{if(e instanceof CSSStyleSheet)return e;let o=t.get(e);return void 0===o&&(o=new CSSStyleSheet,o.replaceSync(e),t.set(e,o)),o})}addStylesTo(e){const t=Me(e);t.adoptedStyleSheets=[...t.adoptedStyleSheets,...this.sheets]}removeStylesFrom(e){const t=Me(e),o=this.sheets;t.adoptedStyleSheets=t.adoptedStyleSheets.filter(e=>-1===o.indexOf(e))}}Ee.styleSheetCache=new Map;let Re=0;function _e(e){return e===document?document.body:e}function je(e){const t=class extends e{constructor(){super(),Ve.forCustomElement(this)}$emit(e,t,o){return this.$fastController.emit(e,t,o)}connectedCallback(){this.$fastController.connect()}disconnectedCallback(){this.$fastController.disconnect()}attributeChangedCallback(e,t,o){this.$fastController.onAttributeChangedCallback(e,t,o)}};return Te.registerBaseType(t),t}C.setDefaultStrategy(C.supportsAdoptedStyleSheets?Ee:class{constructor(e){this.styles=e,this.styleClass="fast-"+ ++Re}addStylesTo(e){e=_e(Me(e));const t=this.styles,o=this.styleClass;for(let r=0;r<t.length;r++){const n=document.createElement("style");n.innerHTML=t[r],n.className=o,e.append(n)}}removeStylesFrom(e){const t=(e=_e(Me(e))).querySelectorAll("."+this.styleClass);for(let o=0,r=t.length;o<r;++o)e.removeChild(t[o])}});const Ge=Object.assign(je(HTMLElement),{from:function(e){return je(e)},define:function(e,t){return d(e)?Te.compose(e,t).define().type:Te.compose(this,e).define().type},compose:function(e,t){return d(e)?Te.compose(e,t):Te.compose(this,e)}});function qe(e){return e?"string"==typeof e?new ue(e):"inline"in e?e.inline():e:ue.empty}function Xe(e,t,o,r){var n,i=arguments.length,s=i<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,o):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,o,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(i<3?n(s):i>3?n(t,o,s):n(t,o))||s);return i>3&&s&&Object.defineProperty(t,o,s),s}class We{}function Ye(e){return fe`<slot name="end" ${be("end")}>${qe(e.end)}</slot>`.inline()}function Ue(e){return fe`<slot name="start" ${be("start")}>${qe(e.start)}</slot>`.inline()}let Ke=0;function Qe(e,...t){const o=we.locate(e);t.forEach(t=>{Object.getOwnPropertyNames(t.prototype).forEach(o=>{"constructor"!==o&&Object.defineProperty(e.prototype,o,Object.getOwnPropertyDescriptor(t.prototype,o))});we.locate(t).forEach(e=>o.push(e))})}class Je extends Ge{constructor(){super(...arguments),this.headinglevel=2,this.expanded=!1,this.disabled=!1,this.id=function(e=""){return`${e}${Ke++}`}("accordion-"),this.clickHandler=e=>{this.disabled||this.$emit("click",e)}}}Xe([Ce({attribute:"heading-level",mode:"fromView",converter:Se})],Je.prototype,"headinglevel",void 0),Xe([Ce({mode:"boolean"})],Je.prototype,"expanded",void 0),Xe([Ce({mode:"boolean"})],Je.prototype,"disabled",void 0),Xe([Ce],Je.prototype,"id",void 0),Qe(Je,We);const Ze="single",et="multi";class tt extends Ge{constructor(){super(...arguments),this.expandmode=et,this.activeItemIndex=0,this.change=()=>{this.$emit("change",this.activeid)},this.setItems=()=>{if(0===this.slottedAccordionItems.length)return;const e=Array.from(this.children);if(this.removeItemListeners(e),e.forEach(e=>w.getNotifier(e).subscribe(this,"disabled")),this.accordionItems=e.filter(e=>!e.hasAttribute("disabled")),this.accordionIds=this.getItemIds(),this.accordionItems.forEach((e,t)=>{e instanceof Je&&(e.addEventListener("click",this.activeItemChange),w.getNotifier(e).subscribe(this,"expanded"));const o=this.accordionIds[t];e.setAttribute("id","string"!=typeof o?"accordion-"+(t+1):o),this.activeid=this.accordionIds[this.activeItemIndex],e.addEventListener("keydown",this.handleItemKeyDown),e.addEventListener("focus",this.handleItemFocus)}),this.isSingleExpandMode()){const e=this.findExpandedItem();this.setSingleExpandMode(e)}},this.removeItemListeners=e=>{e.forEach((e,t)=>{w.getNotifier(e).unsubscribe(this,"disabled"),w.getNotifier(e).unsubscribe(this,"expanded"),e.removeEventListener("click",this.activeItemChange),e.removeEventListener("keydown",this.handleItemKeyDown),e.removeEventListener("focus",this.handleItemFocus)})},this.activeItemChange=e=>{e.defaultPrevented||e.target!==e.currentTarget||(e.preventDefault(),this.handleExpandedChange(e.target))},this.handleExpandedChange=e=>{e instanceof Je&&(this.activeid=e.getAttribute("id"),this.isSingleExpandMode()?this.setSingleExpandMode(e):(e.expanded=!e.expanded,this.activeItemIndex=this.accordionItems.indexOf(e)),this.change())},this.handleItemKeyDown=e=>{if(e.target===e.currentTarget)switch(this.accordionIds=this.getItemIds(),e.key){case"ArrowUp":e.preventDefault(),this.adjust(-1);break;case"ArrowDown":e.preventDefault(),this.adjust(1);break;case"Home":this.activeItemIndex=0,this.focusItem();break;case"End":this.activeItemIndex=this.accordionItems.length-1,this.focusItem()}},this.handleItemFocus=e=>{if(e.target===e.currentTarget){const t=e.target,o=this.activeItemIndex=Array.from(this.accordionItems).indexOf(t);this.activeItemIndex!==o&&-1!==o&&(this.activeItemIndex=o,this.activeid=this.accordionIds[this.activeItemIndex])}}}expandmodeChanged(e,t){if(!this.$fastController.isConnected)return;const o=this.findExpandedItem();o&&(t!==Ze?null==o||o.expandbutton.removeAttribute("aria-disabled"):this.setSingleExpandMode(o))}slottedAccordionItemsChanged(e,t){this.$fastController.isConnected&&this.setItems()}handleChange(e,t){"disabled"===t?this.setItems():"expanded"===t&&e.expanded&&this.isSingleExpandMode()&&this.setSingleExpandMode(e)}findExpandedItem(){var e;return 0===this.accordionItems.length?null:null!==(e=this.accordionItems.find(e=>e instanceof Je&&e.expanded))&&void 0!==e?e:this.accordionItems[0]}setSingleExpandMode(e){if(0===this.accordionItems.length)return;const t=Array.from(this.accordionItems);this.activeItemIndex=t.indexOf(e),t.forEach((e,t)=>{this.activeItemIndex===t?(e.expanded=!0,e.expandbutton.setAttribute("aria-disabled","true")):(e.expanded=!1,e.hasAttribute("disabled")||e.expandbutton.removeAttribute("aria-disabled"))})}getItemIds(){return this.slottedAccordionItems.map(e=>e.id)}isSingleExpandMode(){return this.expandmode===Ze}adjust(e){var t,o,r;this.activeItemIndex=(t=0,o=this.accordionItems.length-1,(r=this.activeItemIndex+e)<t?o:r>o?t:r),this.focusItem()}focusItem(){const e=this.accordionItems[this.activeItemIndex];e instanceof Je&&e.expandbutton.focus()}}Xe([Ce({attribute:"expand-mode"})],tt.prototype,"expandmode",void 0),Xe([P],tt.prototype,"slottedAccordionItems",void 0);const ot="ElementInternals"in window&&"setFormValue"in window.ElementInternals.prototype,rt=new WeakMap;function nt(e){class t extends(function(e){const t=class extends e{constructor(...e){super(...e),this.dirtyValue=!1,this.disabled=!1,this.proxyEventsToBlock=["change","click"],this.proxyInitialized=!1,this.required=!1,this.initialValue=this.initialValue||"",this.elementInternals||(this.formResetCallback=this.formResetCallback.bind(this))}static get formAssociated(){return ot}get validity(){return this.elementInternals?this.elementInternals.validity:this.proxy.validity}get form(){return this.elementInternals?this.elementInternals.form:this.proxy.form}get validationMessage(){return this.elementInternals?this.elementInternals.validationMessage:this.proxy.validationMessage}get willValidate(){return this.elementInternals?this.elementInternals.willValidate:this.proxy.willValidate}get labels(){if(this.elementInternals)return Object.freeze(Array.from(this.elementInternals.labels));if(this.proxy instanceof HTMLElement&&this.proxy.ownerDocument&&this.id){const e=this.proxy.labels,t=Array.from(this.proxy.getRootNode().querySelectorAll(`[for='${this.id}']`)),o=e?t.concat(Array.from(e)):t;return Object.freeze(o)}return i}valueChanged(e,t){this.dirtyValue=!0,this.proxy instanceof HTMLElement&&(this.proxy.value=this.value),this.currentValue=this.value,this.setFormValue(this.value),this.validate()}currentValueChanged(){this.value=this.currentValue}initialValueChanged(e,t){this.dirtyValue||(this.value=this.initialValue,this.dirtyValue=!1)}disabledChanged(e,t){this.proxy instanceof HTMLElement&&(this.proxy.disabled=this.disabled),y.enqueue(()=>this.classList.toggle("disabled",this.disabled))}nameChanged(e,t){this.proxy instanceof HTMLElement&&(this.proxy.name=this.name)}requiredChanged(e,t){this.proxy instanceof HTMLElement&&(this.proxy.required=this.required),y.enqueue(()=>this.classList.toggle("required",this.required)),this.validate()}get elementInternals(){if(!ot)return null;let e=rt.get(this);return e||(e=this.attachInternals(),rt.set(this,e)),e}connectedCallback(){super.connectedCallback(),this.addEventListener("keypress",this._keypressHandler),this.value||(this.value=this.initialValue,this.dirtyValue=!1),this.elementInternals||(this.attachProxy(),this.form&&this.form.addEventListener("reset",this.formResetCallback))}disconnectedCallback(){this.proxyEventsToBlock.forEach(e=>this.proxy.removeEventListener(e,this.stopPropagation)),!this.elementInternals&&this.form&&this.form.removeEventListener("reset",this.formResetCallback)}checkValidity(){return this.elementInternals?this.elementInternals.checkValidity():this.proxy.checkValidity()}reportValidity(){return this.elementInternals?this.elementInternals.reportValidity():this.proxy.reportValidity()}setValidity(e,t,o){this.elementInternals?this.elementInternals.setValidity(e,t,o):"string"==typeof t&&this.proxy.setCustomValidity(t)}formDisabledCallback(e){this.disabled=e}formResetCallback(){this.value=this.initialValue,this.dirtyValue=!1}attachProxy(){var e;this.proxyInitialized||(this.proxyInitialized=!0,this.proxy.style.display="none",this.proxyEventsToBlock.forEach(e=>this.proxy.addEventListener(e,this.stopPropagation)),this.proxy.disabled=this.disabled,this.proxy.required=this.required,"string"==typeof this.name&&(this.proxy.name=this.name),"string"==typeof this.value&&(this.proxy.value=this.value),this.proxy.setAttribute("slot","form-associated-proxy"),this.proxySlot=document.createElement("slot"),this.proxySlot.setAttribute("name","form-associated-proxy")),null===(e=this.shadowRoot)||void 0===e||e.appendChild(this.proxySlot),this.appendChild(this.proxy)}detachProxy(){var e;this.removeChild(this.proxy),null===(e=this.shadowRoot)||void 0===e||e.removeChild(this.proxySlot)}validate(e){this.proxy instanceof HTMLElement&&this.setValidity(this.proxy.validity,this.proxy.validationMessage,e)}setFormValue(e,t){this.elementInternals&&this.elementInternals.setFormValue(e,t||e)}_keypressHandler(e){switch(e.key){case"Enter":if(this.form instanceof HTMLFormElement){const e=this.form.querySelector("[type=submit]");null==e||e.click()}}}stopPropagation(e){e.stopPropagation()}};return Ce({mode:"boolean"})(t.prototype,"disabled"),Ce({mode:"fromView",attribute:"value"})(t.prototype,"initialValue"),Ce({attribute:"current-value"})(t.prototype,"currentValue"),Ce(t.prototype,"name"),Ce({mode:"boolean"})(t.prototype,"required"),P(t.prototype,"value"),t}(e)){}class o extends t{constructor(...e){super(e),this.dirtyChecked=!1,this.checkedAttribute=!1,this.checked=!1,this.dirtyChecked=!1}checkedAttributeChanged(){this.defaultChecked=this.checkedAttribute}defaultCheckedChanged(){this.dirtyChecked||(this.checked=this.defaultChecked,this.dirtyChecked=!1)}checkedChanged(e,t){this.dirtyChecked||(this.dirtyChecked=!0),this.currentChecked=this.checked,this.updateForm(),this.proxy instanceof HTMLInputElement&&(this.proxy.checked=this.checked),void 0!==e&&this.$emit("change"),this.validate()}currentCheckedChanged(e,t){this.checked=this.currentChecked}updateForm(){const e=this.checked?this.value:null;this.setFormValue(e,e)}connectedCallback(){super.connectedCallback(),this.updateForm()}formResetCallback(){super.formResetCallback(),this.checked=!!this.checkedAttribute,this.dirtyChecked=!1}}return Ce({attribute:"checked",mode:"boolean"})(o.prototype,"checkedAttribute"),Ce({attribute:"current-checked",converter:Pe})(o.prototype,"currentChecked"),P(o.prototype,"defaultChecked"),P(o.prototype,"checked"),o}class it{constructor(e){this.value=e,this.notifier=w.getNotifier(this),this.dependencies=new Set,this.binding=w.binding(e,this),this.binding.setMode(!1)}static getOrCreate(e){let t=it.cache.get(e);return t||(t=new it(e),it.cache.set(e,t),t)}evaluate(e,t){return this.binding.observe(o=>{if(this.dependencies.add(o),t===o){if(e.parent)return e.parent.getTokenValue(o);throw new Error("DesignTokenNode has encountered a circular token reference. Avoid this by setting the token value for an ancestor node.")}return e.getTokenValue(o)})}handleChange(){this.notifier.notify(void 0)}}it.cache=new WeakMap;class st{constructor(e,t,o,r){this.token=e,this.evaluator=t,this.node=o,this.subscriber=r,this.value=t.evaluate(o,e),this.subscriber&&w.getNotifier(this.evaluator).subscribe(this.subscriber)}dispose(){this.subscriber&&w.getNotifier(this.evaluator).unsubscribe(this.subscriber)}update(){return this.value=this.evaluator.evaluate(this.node,this.token),this}}class at{constructor(e,t,o,r){this.target=e,this.type=t,this.token=o,this.value=r}notify(){w.getNotifier(this.token).notify(this)}}class lt{constructor(){this._parent=null,this._children=new Set,this._values=new Map,this._derived=new Map,this.dependencyGraph=new Map}static isDerivedTokenValue(e){return"function"==typeof e}static isDerivedFor(e,t){return e._derived.has(t)}static collectDerivedContext(e){const t=new Map;if(null===e.parent)return t;let o=lt.getAssignedTokensForNode(e),r=e.parent;do{const e=lt.getAssignedTokensForNode(r);for(let n=0,i=e.length;n<i;n++){const i=e[n];!o.includes(i)&<.isDerivedFor(r,i)&&t.set(i,r._derived.get(i))}o=Array.from(new Set(o.concat(e))),r=r.parent}while(null!==r);return t}static getLocalTokenValue(e,t){return lt.isAssigned(e,t)?lt.isDerivedFor(e,t)?e._derived.get(t).value:e._values.get(t):void 0}static getOrCreateDependencyGraph(e,t){let o=e.dependencyGraph.get(t);return o||(o=new Set,e.dependencyGraph.set(t,o),o)}static notify(){const e=this._notifications;this._notifications=[];for(const t of e)t.notify()}static queueNotification(...e){this._notifications.push(...e)}static getAssignedTokensForNode(e){return Array.from(e._values.keys())}static composeAssignedTokensForNode(e){const t=new Set(lt.getAssignedTokensForNode(e));let o=e.parent;for(;null!==o;){const e=lt.getAssignedTokensForNode(o);for(const o of e)t.add(o);o=o.parent}return Array.from(t)}static isAssigned(e,t){return e._values.has(t)}get parent(){return this._parent}get children(){return Array.from(this._children)}appendChild(e){var t,o;let r=null;null!==e.parent&&(r=lt.composeAssignedTokensForNode(e.parent),e.parent._children.delete(e));const n=lt.composeAssignedTokensForNode(this),i=lt.collectDerivedContext(this);e._parent=this,this._children.add(e);for(const o of n){let n=0;if(null!==r){const e=r.indexOf(o);-1!==e&&(n=1,r.splice(e,1))}e.dispatch(new at(this,n,o,null===(t=i.get(o))||void 0===t?void 0:t.evaluator.value))}if(null!==r&&r.length>0)for(const t of r)e.dispatch(new at(this,2,t,null===(o=i.get(t))||void 0===o?void 0:o.evaluator.value));lt.notify()}removeChild(e){if(e.parent===this){const t=lt.composeAssignedTokensForNode(this);e._parent=null,this._children.delete(e);for(const o of t)e.dispatch(new at(this,2,o));lt.notify()}}dispose(){this.parent&&(this.parent._children.delete(this),this._parent=null);for(const[,e]of this._derived)e.dispose()}setTokenValue(e,t){const o=lt.isAssigned(this,e)||lt.isDerivedFor(this,e)?1:0,r=lt.getLocalTokenValue(this,e);this._values.set(e,t),lt.isDerivedFor(this,e)&&this.tearDownDerivedTokenValue(e);const n=lt.isDerivedTokenValue(t),i=lt.collectDerivedContext(this);let s;if(n){s=this.setupDerivedTokenValue(e,t,!0).value}else s=t;r!==s&<.queueNotification(new at(this,o,e,t)),this.dispatch(new at(this,o,e,t)),i.forEach((e,t)=>{if(!lt.isDerivedFor(this,t)){lt.getLocalTokenValue(this,t)!==(e=this.setupDerivedTokenValue(t,e.evaluator.value)).value&<.queueNotification(new at(this,1,t,e.evaluator.value)),this.dispatch(new at(this,0,t,e.evaluator.value))}}),lt.notify()}getTokenValue(e){let t,o=this;for(;null!==o;){if(lt.isDerivedFor(o,e)){t=o._derived.get(e).value;break}if(lt.isAssigned(o,e)){t=o._values.get(e);break}o=o._parent}if(void 0!==t)return t;throw new Error(`No value set for token ${e} in node tree.`)}deleteTokenValue(e){if(lt.isAssigned(this,e)){const t=lt.getLocalTokenValue(this,e);let o;this._values.delete(e),this.tearDownDerivedTokenValue(e);try{o=this.getTokenValue(e)}catch(e){o=void 0}lt.queueNotification(new at(this,2,e)),t!==o&&this.dispatch(new at(this,2,e)),lt.notify()}}dispatch(e){var t,o,r;if(this!==e.target){const{token:n}=e,i=lt.isAssigned(this,n),s=i&&(null===(t=this._derived.get(n))||void 0===t?void 0:t.evaluator.dependencies.has(n));if(i&&!s)return;2===e.type&&!i&<.isDerivedFor(this,n)&&(this.tearDownDerivedTokenValue(n),lt.queueNotification(new at(this,2,n))),s&&(e=new at(this,1,n,null===(o=this._derived.get(n))||void 0===o?void 0:o.evaluator.value));const{value:a}=e;if(a&<.isDerivedTokenValue(a)){const t=it.getOrCreate(a).dependencies;let o=!1;for(const e of t)if(lt.isAssigned(this,e)){o=!0;break}if(o){const t=null===(r=this._derived.get(n))||void 0===r?void 0:r.value,o=this.setupDerivedTokenValue(n,a);if(t!==o.value){const r=new at(this,void 0===t?0:1,n,o.evaluator.value);lt.queueNotification(r),e=r}}}}this.collectLocalChangeRecords(e).forEach(e=>{lt.queueNotification(e),this.dispatch(e)}),this.notifyChildren(e)}collectLocalChangeRecords(e){const t=new Map;for(const o of lt.getOrCreateDependencyGraph(this,e.token))o.value!==o.update().value&&t.set(o.token,new at(this,1,o.token,o.evaluator.value));return t}notifyChildren(...e){if(this.children.length)for(let t=0,o=this.children.length;t<o;t++)for(let o=0;o<e.length;o++)this.children[t].dispatch(e[o])}tearDownDerivedTokenValue(e){if(lt.isDerivedFor(this,e)){const t=this._derived.get(e);t.dispose(),this._derived.delete(e),t.evaluator.dependencies.forEach(e=>{lt.getOrCreateDependencyGraph(this,e).delete(t)})}}setupDerivedTokenValue(e,t,o=!1){const r=new st(e,it.getOrCreate(t),this,o?{handleChange:()=>{if(r.value!==r.update().value){const e=new at(this,1,r.token,r.evaluator.value);lt.queueNotification(e),this.dispatch(e),lt.notify()}}}:void 0);return this._derived.set(e,r),r.evaluator.dependencies.forEach(t=>{t!==e&<.getOrCreateDependencyGraph(this,t).add(r)}),r}}lt._notifications=[];class ct{setProperty(e,t){y.enqueue(()=>this.target.setProperty(e,t))}removeProperty(e){y.enqueue(()=>this.target.removeProperty(e))}}class dt extends ct{constructor(){super();const e=new CSSStyleSheet;this.target=e.cssRules[e.insertRule(":root{}")].style,document.adoptedStyleSheets=[...document.adoptedStyleSheets,e]}}class ht extends ct{constructor(){super(),this.style=document.createElement("style"),document.head.appendChild(this.style);const{sheet:e}=this.style;if(e){const t=e.insertRule(":root{}",e.cssRules.length);this.target=e.cssRules[t].style}}}class ut{constructor(e){this.store=new Map,this.target=null;const t=e.$fastController;this.style=document.createElement("style"),t.addStyles(this.style),w.getNotifier(t).subscribe(this,"isConnected"),this.handleChange(t,"isConnected")}targetChanged(){if(null!==this.target)for(const[e,t]of this.store.entries())this.target.setProperty(e,t)}setProperty(e,t){this.store.set(e,t),y.enqueue(()=>{null!==this.target&&this.target.setProperty(e,t)})}removeProperty(e){this.store.delete(e),y.enqueue(()=>{null!==this.target&&this.target.removeProperty(e)})}handleChange(e,t){const{sheet:o}=this.style;if(o){const e=o.insertRule(":host{}",o.cssRules.length);this.target=o.cssRules[e].style}else this.target=null}}Xe([P],ut.prototype,"target",void 0);class gt{setProperty(e,t){gt.properties[e]=t;for(const o of gt.roots.values())o.setProperty(e,t)}removeProperty(e){delete gt.properties[e];for(const t of gt.roots.values())t.removeProperty(e)}static registerRoot(e){const{roots:t}=gt;if(!t.has(e)){t.add(e);for(const t in gt.properties)e.setProperty(t,gt.properties[t])}}static unregisterRoot(e){const{roots:t}=gt;if(t.has(e)){t.delete(e);for(const t in gt.properties)e.removeProperty(t)}}}gt.roots=new Set,gt.properties={};const pt=new WeakMap,ft=C.supportsAdoptedStyleSheets?class extends ct{constructor(e){super();const t=new CSSStyleSheet;this.target=t.cssRules[t.insertRule(":host{}")].style,e.$fastController.addStyles(new C([t]))}}:ut,vt=Object.freeze({getOrCreate(e){if(pt.has(e))return pt.get(e);let t;return t=e instanceof Document?C.supportsAdoptedStyleSheets?new dt:new ht:new ft(e),pt.set(e,t),t}});class bt{constructor(e){this.subscriberNotifier={handleChange:(e,t)=>{const o={target:t.target===Bt.defaultNode?"default":t.target.target,token:this};this.subscribers.notify(o)}},this.name=e.name,w.getNotifier(this).subscribe(this.subscriberNotifier)}get $value(){return this.default}get default(){return Bt.defaultNode.getTokenValue(this)}get subscribers(){return this._subscribers||(this._subscribers=new k(this)),this._subscribers}static isCSSDesignTokenConfiguration(e){return"string"==typeof e.cssCustomPropertyName}static create(e){return"string"==typeof e?new mt({name:e,cssCustomPropertyName:e}):bt.isCSSDesignTokenConfiguration(e)?new mt(e):new bt(e)}static withStrategy(e){Bt.withStrategy(e)}static registerDefaultStyleTarget(e=document){(e instanceof Ge||e instanceof Document)&&(e=vt.getOrCreate(e)),gt.registerRoot(e)}static unregisterDefaultStyleTarget(e=document){(e instanceof Ge||e instanceof Document)&&(e=vt.getOrCreate(e)),gt.unregisterRoot(e)}getValueFor(e){return Bt.getOrCreate(e).getTokenValue(this)}setValueFor(e,t){Bt.getOrCreate(e).setTokenValue(this,this.normalizeValue(t))}deleteValueFor(e){return Bt.getOrCreate(e).deleteTokenValue(this),this}withDefault(e){return Bt.defaultNode.setTokenValue(this,this.normalizeValue(e)),this}subscribe(e){this.subscribers.subscribe(e)}unsubscribe(e){this.subscribers.unsubscribe(e)}alias(e){return t=>t(e)}normalizeValue(e){return e instanceof bt&&(e=this.alias(e)),e}}let mt=class extends bt{constructor(e){super(e),this.cssReflector={handleChange:(e,t)=>{const o=t.target===Bt.defaultNode?Bt.rootStyleSheetTarget:t.target instanceof Bt?vt.getOrCreate(t.target.target):null;o&&(2===t.type?o.removeProperty(this.cssCustomProperty):o.setProperty(this.cssCustomProperty,this.resolveCSSValue(t.target.getTokenValue(this))))}},this.cssCustomProperty="--"+e.cssCustomPropertyName,this.cssVar=`var(${this.cssCustomProperty})`,w.getNotifier(this).subscribe(this.cssReflector)}createCSS(){return this.cssVar}createHTML(){return this.cssVar}resolveCSSValue(e){return e&&"function"==typeof e.createCSS?e.createCSS():e}};var yt;mt=Xe([function(e){z.define(e)},function(e){j.define(e,yt)}],mt);const kt={contains:e,parent(e){let o=t(e);for(;null!==o;){if(o instanceof Ge)return o;o=t(o)}return null}};class Bt extends lt{constructor(e){super(),this.target=e,this.setTokenValue=this.lazyAttachToDefault(super.setTokenValue),this.getTokenValue=this.lazyAttachToDefault(super.getTokenValue),this.deleteTokenValue=this.lazyAttachToDefault(super.deleteTokenValue)}static get strategy(){return void 0===this._strategy&&Bt.withStrategy(kt),this._strategy}connectedCallback(e){let t=Bt.findParent(e.source);if(null===t&&(t=Bt.defaultNode),t!==this.parent){const o=[];for(const r of t.children)r instanceof Bt&&Bt.strategy.contains(e.source,r.target)&&o.push(r);t.appendChild(this);for(const e of o)this.appendChild(e)}}disconnectedCallback(e){Bt.cache.delete(this.target),this.dispose()}static getOrCreate(e){let t=Bt.cache.get(e);return t||(t=new Bt(e),Bt.cache.set(e,t),e.$fastController.addBehavior(Bt.strategy),e.$fastController.addBehavior(t),t)}static withStrategy(e){this._strategy=e}static findParent(e){let t=Bt.strategy.parent(e);for(;null!==t;){const e=Bt.cache.get(t);if(e)return e;t=Bt.strategy.parent(t)}return null}lazyAttachToDefault(e){return(...t)=>(null===this.parent&&Bt.defaultNode.appendChild(this),e.apply(this,t))}}Bt.defaultNode=new lt,Bt.rootStyleSheetTarget=new gt,Bt.cache=new WeakMap;const xt={separator:"separator",presentation:"presentation"},wt={horizontal:"horizontal",vertical:"vertical"};class Pt extends Ge{constructor(){super(...arguments),this.role=xt.separator,this.orientation=wt.horizontal}}Xe([Ce],Pt.prototype,"role",void 0),Xe([Ce],Pt.prototype,"orientation",void 0);class $t extends Ge{constructor(){super(...arguments),this.percentComplete=0}valueChanged(){this.updatePercentComplete()}minChanged(){this.$fastController.isConnected&&this.updatePercentComplete()}maxChanged(){this.$fastController.isConnected&&this.updatePercentComplete()}connectedCallback(){super.connectedCallback(),this.updatePercentComplete()}updatePercentComplete(){const e="number"==typeof this.min?this.min:0,t="number"==typeof this.max?this.max:100,o="number"==typeof this.value?this.value:0,r=t-e;this.percentComplete=0===r?0:Math.fround((o-e)/r*100)}}Xe([Ce({converter:Se})],$t.prototype,"value",void 0),Xe([Ce({converter:Se})],$t.prototype,"min",void 0),Xe([Ce({converter:Se})],$t.prototype,"max",void 0),Xe([P],$t.prototype,"percentComplete",void 0);class St extends $t{}class Ft extends $t{}class Ct extends Ge{}class Nt extends(nt(Ct)){constructor(){super(...arguments),this.proxy=document.createElement("input")}}class zt extends Nt{constructor(){super(),this.initialValue="on",this.keypressHandler=e=>{if(!this.readOnly)switch(e.key){case"Enter":case" ":this.checked=!this.checked}},this.clickHandler=e=>{this.disabled||this.readOnly||(this.checked=!this.checked)},this.proxy.setAttribute("type","checkbox")}readOnlyChanged(){this.proxy instanceof HTMLInputElement&&(this.proxy.readOnly=this.readOnly)}checkedChanged(e,t){super.checkedChanged(e,t),this.checked?this.classList.add("checked"):this.classList.remove("checked")}}Xe([Ce({attribute:"readonly",mode:"boolean"})],zt.prototype,"readOnly",void 0),Xe([P],zt.prototype,"defaultSlottedNodes",void 0);function At(e){return`:host([hidden]){display:none}:host{display:${e}}`}class It extends tt{}const Tt=fe`<template><slot ${xe({property:"slottedAccordionItems",filter:Lt?e=>1===e.nodeType&&e.matches(Lt):ye})}></slot></template>`;var Lt;const Ot=I`
|
|
2
|
+
${At("flex")}
|
|
3
3
|
|
|
4
|
-
:host{flex-direction:column;width:100%}`,Ft=Object.freeze({prefix:"fluent",shadowRootMode:"open",registry:customElements}),$t=Pt.compose({name:Ft.prefix+"-accordion",template:St,styles:Nt});class Ct extends Qe{constructor(){super(...arguments),this.block=!1}}Xe([Fe],Ct.prototype,"size",void 0),Xe([Fe({mode:"boolean"})],Ct.prototype,"block",void 0),Xe([Fe({attribute:"expand-icon-position"})],Ct.prototype,"expandIconPosition",void 0);const At={small:"small",medium:"medium",large:"large",extraLarge:"extra-large"},Tt={start:"start",end:"end"},{create:It}=gt,Lt=It("borderRadiusNone"),zt=It("borderRadiusSmall"),Ot=It("borderRadiusMedium"),Ht=It("borderRadiusLarge"),Dt=It("borderRadiusXLarge"),Mt=It("borderRadiusCircular"),Vt=It("fontSizeBase100"),Rt=It("fontSizeBase200"),Et=It("fontSizeBase300"),_t=It("fontSizeBase400"),jt=It("fontSizeBase500"),Gt=It("fontSizeBase600"),Xt=It("fontSizeHero700"),qt=It("fontSizeHero800"),Wt=It("fontSizeHero900"),Yt=It("fontSizeHero1000"),Ut=It("lineHeightBase100"),Kt=It("lineHeightBase200"),Qt=It("lineHeightBase300"),Jt=It("lineHeightBase400"),Zt=It("lineHeightBase500"),eo=It("lineHeightBase600"),to=It("lineHeightHero700"),oo=It("lineHeightHero800"),ro=It("lineHeightHero900"),no=It("lineHeightHero1000"),so=It("fontFamilyBase"),io=It("fontFamilyMonospace"),ao=It("fontFamilyNumeric"),lo=It("fontWeightRegular"),co=It("fontWeightMedium"),uo=It("fontWeightSemibold"),ho=It("fontWeightBold"),go=It("strokeWidthThin"),po=It("strokeWidthThick"),fo=It("strokeWidthThicker"),vo=It("strokeWidthThickest"),mo=It("spacingHorizontalNone"),bo=It("spacingHorizontalXXS"),Bo=It("spacingHorizontalXS"),yo=It("spacingHorizontalSNudge"),ko=It("spacingHorizontalS"),Po=It("spacingHorizontalMNudge"),So=It("spacingHorizontalM"),wo=It("spacingHorizontalL"),xo=It("spacingHorizontalXL"),No=It("spacingHorizontalXXL"),Fo=It("spacingHorizontalXXXL"),$o=It("spacingVerticalNone"),Co=It("spacingVerticalXXS"),Ao=It("spacingVerticalXS"),To=It("spacingVerticalSNudge"),Io=It("spacingVerticalS"),Lo=It("spacingVerticalMNudge"),zo=It("spacingVerticalM"),Oo=It("spacingVerticalL"),Ho=It("spacingVerticalXL"),Do=It("spacingVerticalXXL"),Mo=It("spacingVerticalXXXL"),Vo=It("durationUltraFast"),Ro=It("durationFaster"),Eo=It("durationFast"),_o=It("durationNormal"),jo=It("durationSlow"),Go=It("durationSlower"),Xo=It("durationUltraSlow"),qo=It("curveAccelerateMax"),Wo=It("curveAccelerateMid"),Yo=It("curveAccelerateMin"),Uo=It("curveDecelerateMax"),Ko=It("curveDecelerateMid"),Qo=It("curveDecelerateMin"),Jo=It("curveEasyEaseMax"),Zo=It("curveEasyEase"),er=It("curveLinear"),tr=It("colorNeutralForeground1"),or=It("colorNeutralForeground1Hover"),rr=It("colorNeutralForeground1Pressed"),nr=It("colorNeutralForeground1Selected"),sr=It("colorNeutralForeground2"),ir=It("colorNeutralForeground2Hover"),ar=It("colorNeutralForeground2Pressed"),lr=It("colorNeutralForeground2Selected"),cr=It("colorNeutralForeground2BrandHover"),dr=It("colorNeutralForeground2BrandPressed"),ur=It("colorNeutralForeground2BrandSelected"),hr=It("colorNeutralForeground3"),gr=It("colorNeutralForeground3Hover"),pr=It("colorNeutralForeground3Pressed"),fr=It("colorNeutralForeground3Selected"),vr=It("colorNeutralForeground3BrandHover"),mr=It("colorNeutralForeground3BrandPressed"),br=It("colorNeutralForeground3BrandSelected"),Br=It("colorNeutralForeground4"),yr=It("colorNeutralForegroundDisabled"),kr=It("colorNeutralForegroundInvertedDisabled"),Pr=It("colorBrandForegroundLink"),Sr=It("colorBrandForegroundLinkHover"),wr=It("colorBrandForegroundLinkPressed"),xr=It("colorBrandForegroundLinkSelected"),Nr=It("colorNeutralForeground2Link"),Fr=It("colorNeutralForeground2LinkHover"),$r=It("colorNeutralForeground2LinkPressed"),Cr=It("colorNeutralForeground2LinkSelected"),Ar=It("colorCompoundBrandForeground1"),Tr=It("colorCompoundBrandForeground1Hover"),Ir=It("colorCompoundBrandForeground1Pressed"),Lr=It("colorBrandForeground1"),zr=It("colorBrandForeground2"),Or=It("colorNeutralForeground1Static"),Hr=It("colorNeutralForegroundStaticInverted"),Dr=It("colorNeutralForegroundInverted"),Mr=It("colorNeutralForegroundInvertedHover"),Vr=It("colorNeutralForegroundInvertedPressed"),Rr=It("colorNeutralForegroundInvertedSelected"),Er=It("colorNeutralForegroundInverted2"),_r=It("colorNeutralForegroundOnBrand"),jr=It("colorNeutralForegroundInvertedLink"),Gr=It("colorNeutralForegroundInvertedLinkHover"),Xr=It("colorNeutralForegroundInvertedLinkPressed"),qr=It("colorNeutralForegroundInvertedLinkSelected"),Wr=It("colorBrandForegroundInverted"),Yr=It("colorBrandForegroundInvertedHover"),Ur=It("colorBrandForegroundInvertedPressed"),Kr=It("colorBrandForegroundOnLight"),Qr=It("colorBrandForegroundOnLightHover"),Jr=It("colorBrandForegroundOnLightPressed"),Zr=It("colorBrandForegroundOnLightSelected"),en=It("colorNeutralBackground1"),tn=It("colorNeutralBackground1Hover"),on=It("colorNeutralBackground1Pressed"),rn=It("colorNeutralBackground1Selected"),nn=It("colorNeutralBackground2"),sn=It("colorNeutralBackground2Hover"),an=It("colorNeutralBackground2Pressed"),ln=It("colorNeutralBackground2Selected"),cn=It("colorNeutralBackground3"),dn=It("colorNeutralBackground3Hover"),un=It("colorNeutralBackground3Pressed"),hn=It("colorNeutralBackground3Selected"),gn=It("colorNeutralBackground4"),pn=It("colorNeutralBackground4Hover"),fn=It("colorNeutralBackground4Pressed"),vn=It("colorNeutralBackground4Selected"),mn=It("colorNeutralBackground5"),bn=It("colorNeutralBackground5Hover"),Bn=It("colorNeutralBackground5Pressed"),yn=It("colorNeutralBackground5Selected"),kn=It("colorNeutralBackground6"),Pn=It("colorNeutralBackgroundInverted"),Sn=It("colorNeutralBackgroundStatic"),wn=It("colorSubtleBackground"),xn=It("colorSubtleBackgroundHover"),Nn=It("colorSubtleBackgroundPressed"),Fn=It("colorSubtleBackgroundSelected"),$n=It("colorSubtleBackgroundLightAlphaHover"),Cn=It("colorSubtleBackgroundLightAlphaPressed"),An=It("colorSubtleBackgroundLightAlphaSelected"),Tn=It("colorSubtleBackgroundInverted"),In=It("colorSubtleBackgroundInvertedHover"),Ln=It("colorSubtleBackgroundInvertedPressed"),zn=It("colorSubtleBackgroundInvertedSelected"),On=It("colorTransparentBackground"),Hn=It("colorTransparentBackgroundHover"),Dn=It("colorTransparentBackgroundPressed"),Mn=It("colorTransparentBackgroundSelected"),Vn=It("colorNeutralBackgroundDisabled"),Rn=It("colorNeutralBackgroundInvertedDisabled"),En=It("colorNeutralStencil1"),_n=It("colorNeutralStencil2"),jn=It("colorBackgroundOverlay"),Gn=It("colorScrollbarOverlay"),Xn=It("colorBrandBackground"),qn=It("colorBrandBackgroundHover"),Wn=It("colorBrandBackgroundPressed"),Yn=It("colorBrandBackgroundSelected"),Un=It("colorCompoundBrandBackground"),Kn=It("colorCompoundBrandBackgroundHover"),Qn=It("colorCompoundBrandBackgroundPressed"),Jn=It("colorBrandBackgroundStatic"),Zn=It("colorBrandBackground2"),es=It("colorBrandBackgroundInverted"),ts=It("colorBrandBackgroundInvertedHover"),os=It("colorBrandBackgroundInvertedPressed"),rs=It("colorBrandBackgroundInvertedSelected"),ns=It("colorNeutralStrokeAccessible"),ss=It("colorNeutralStrokeAccessibleHover"),is=It("colorNeutralStrokeAccessiblePressed"),as=It("colorNeutralStrokeAccessibleSelected"),ls=It("colorNeutralStroke1"),cs=It("colorNeutralStroke1Hover"),ds=It("colorNeutralStroke1Pressed"),us=It("colorNeutralStroke1Selected"),hs=It("colorNeutralStroke2"),gs=It("colorNeutralStroke3"),ps=It("colorNeutralStrokeOnBrand"),fs=It("colorNeutralStrokeOnBrand2"),vs=It("colorNeutralStrokeOnBrand2Hover"),ms=It("colorNeutralStrokeOnBrand2Pressed"),bs=It("colorNeutralStrokeOnBrand2Selected"),Bs=It("colorBrandStroke1"),ys=It("colorBrandStroke2"),ks=It("colorCompoundBrandStroke"),Ps=It("colorCompoundBrandStrokeHover"),Ss=It("colorCompoundBrandStrokePressed"),ws=It("colorNeutralStrokeDisabled"),xs=It("colorNeutralStrokeInvertedDisabled"),Ns=It("colorTransparentStroke"),Fs=It("colorTransparentStrokeInteractive"),$s=It("colorTransparentStrokeDisabled"),Cs=It("colorStrokeFocus1"),As=It("colorStrokeFocus2"),Ts=It("colorNeutralShadowAmbient"),Is=It("colorNeutralShadowKey"),Ls=It("colorNeutralShadowAmbientLighter"),zs=It("colorNeutralShadowKeyLighter"),Os=It("colorNeutralShadowAmbientDarker"),Hs=It("colorNeutralShadowKeyDarker"),Ds=It("colorBrandShadowAmbient"),Ms=It("colorBrandShadowKey"),Vs=It("colorPaletteRedBackground1"),Rs=It("colorPaletteRedBackground2"),Es=It("colorPaletteRedBackground3"),_s=It("colorPaletteRedForeground1"),js=It("colorPaletteRedForeground2"),Gs=It("colorPaletteRedForeground3"),Xs=It("colorPaletteRedBorderActive"),qs=It("colorPaletteRedBorder1"),Ws=It("colorPaletteRedBorder2"),Ys=It("colorPaletteGreenBackground1"),Us=It("colorPaletteGreenBackground2"),Ks=It("colorPaletteGreenBackground3"),Qs=It("colorPaletteGreenForeground1"),Js=It("colorPaletteGreenForeground2"),Zs=It("colorPaletteGreenForeground3"),ei=It("colorPaletteGreenBorderActive"),ti=It("colorPaletteGreenBorder1"),oi=It("colorPaletteGreenBorder2"),ri=It("colorPaletteDarkOrangeBackground1"),ni=It("colorPaletteDarkOrangeBackground2"),si=It("colorPaletteDarkOrangeBackground3"),ii=It("colorPaletteDarkOrangeForeground1"),ai=It("colorPaletteDarkOrangeForeground2"),li=It("colorPaletteDarkOrangeForeground3"),ci=It("colorPaletteDarkOrangeBorderActive"),di=It("colorPaletteDarkOrangeBorder1"),ui=It("colorPaletteDarkOrangeBorder2"),hi=It("colorPaletteYellowBackground1"),gi=It("colorPaletteYellowBackground2"),pi=It("colorPaletteYellowBackground3"),fi=It("colorPaletteYellowForeground1"),vi=It("colorPaletteYellowForeground2"),mi=It("colorPaletteYellowForeground3"),bi=It("colorPaletteYellowBorderActive"),Bi=It("colorPaletteYellowBorder1"),yi=It("colorPaletteYellowBorder2"),ki=It("colorPaletteBerryBackground1"),Pi=It("colorPaletteBerryBackground2"),Si=It("colorPaletteBerryBackground3"),wi=It("colorPaletteBerryForeground1"),xi=It("colorPaletteBerryForeground2"),Ni=It("colorPaletteBerryForeground3"),Fi=It("colorPaletteBerryBorderActive"),$i=It("colorPaletteBerryBorder1"),Ci=It("colorPaletteBerryBorder2"),Ai=It("colorPaletteLightGreenBackground1"),Ti=It("colorPaletteLightGreenBackground2"),Ii=It("colorPaletteLightGreenBackground3"),Li=It("colorPaletteLightGreenForeground1"),zi=It("colorPaletteLightGreenForeground2"),Oi=It("colorPaletteLightGreenForeground3"),Hi=It("colorPaletteLightGreenBorderActive"),Di=It("colorPaletteLightGreenBorder1"),Mi=It("colorPaletteLightGreenBorder2"),Vi=It("colorPaletteMarigoldBackground1"),Ri=It("colorPaletteMarigoldBackground2"),Ei=It("colorPaletteMarigoldBackground3"),_i=It("colorPaletteMarigoldForeground1"),ji=It("colorPaletteMarigoldForeground2"),Gi=It("colorPaletteMarigoldForeground3"),Xi=It("colorPaletteMarigoldBorderActive"),qi=It("colorPaletteMarigoldBorder1"),Wi=It("colorPaletteMarigoldBorder2"),Yi=It("colorPaletteDarkRedBackground2"),Ui=It("colorPaletteDarkRedForeground2"),Ki=It("colorPaletteDarkRedBorderActive"),Qi=It("colorPaletteCranberryBackground2"),Ji=It("colorPaletteCranberryForeground2"),Zi=It("colorPaletteCranberryBorderActive"),ea=It("colorPalettePumpkinBackground2"),ta=It("colorPalettePumpkinForeground2"),oa=It("colorPalettePumpkinBorderActive"),ra=It("colorPalettePeachBackground2"),na=It("colorPalettePeachForeground2"),sa=It("colorPalettePeachBorderActive"),ia=It("colorPaletteGoldBackground2"),aa=It("colorPaletteGoldForeground2"),la=It("colorPaletteGoldBorderActive"),ca=It("colorPaletteBrassBackground2"),da=It("colorPaletteBrassForeground2"),ua=It("colorPaletteBrassBorderActive"),ha=It("colorPaletteBrownBackground2"),ga=It("colorPaletteBrownForeground2"),pa=It("colorPaletteBrownBorderActive"),fa=It("colorPaletteForestBackground2"),va=It("colorPaletteForestForeground2"),ma=It("colorPaletteForestBorderActive"),ba=It("colorPaletteSeafoamBackground2"),Ba=It("colorPaletteSeafoamForeground2"),ya=It("colorPaletteSeafoamBorderActive"),ka=It("colorPaletteDarkGreenBackground2"),Pa=It("colorPaletteDarkGreenForeground2"),Sa=It("colorPaletteDarkGreenBorderActive"),wa=It("colorPaletteLightTealBackground2"),xa=It("colorPaletteLightTealForeground2"),Na=It("colorPaletteLightTealBorderActive"),Fa=It("colorPaletteTealBackground2"),$a=It("colorPaletteTealForeground2"),Ca=It("colorPaletteTealBorderActive"),Aa=It("colorPaletteSteelBackground2"),Ta=It("colorPaletteSteelForeground2"),Ia=It("colorPaletteSteelBorderActive"),La=It("colorPaletteBlueBackground2"),za=It("colorPaletteBlueForeground2"),Oa=It("colorPaletteBlueBorderActive"),Ha=It("colorPaletteRoyalBlueBackground2"),Da=It("colorPaletteRoyalBlueForeground2"),Ma=It("colorPaletteRoyalBlueBorderActive"),Va=It("colorPaletteCornflowerBackground2"),Ra=It("colorPaletteCornflowerForeground2"),Ea=It("colorPaletteCornflowerBorderActive"),_a=It("colorPaletteNavyBackground2"),ja=It("colorPaletteNavyForeground2"),Ga=It("colorPaletteNavyBorderActive"),Xa=It("colorPaletteLavenderBackground2"),qa=It("colorPaletteLavenderForeground2"),Wa=It("colorPaletteLavenderBorderActive"),Ya=It("colorPalettePurpleBackground2"),Ua=It("colorPalettePurpleForeground2"),Ka=It("colorPalettePurpleBorderActive"),Qa=It("colorPaletteGrapeBackground2"),Ja=It("colorPaletteGrapeForeground2"),Za=It("colorPaletteGrapeBorderActive"),el=It("colorPaletteLilacBackground2"),tl=It("colorPaletteLilacForeground2"),ol=It("colorPaletteLilacBorderActive"),rl=It("colorPalettePinkBackground2"),nl=It("colorPalettePinkForeground2"),sl=It("colorPalettePinkBorderActive"),il=It("colorPaletteMagentaBackground2"),al=It("colorPaletteMagentaForeground2"),ll=It("colorPaletteMagentaBorderActive"),cl=It("colorPalettePlumBackground2"),dl=It("colorPalettePlumForeground2"),ul=It("colorPalettePlumBorderActive"),hl=It("colorPaletteBeigeBackground2"),gl=It("colorPaletteBeigeForeground2"),pl=It("colorPaletteBeigeBorderActive"),fl=It("colorPaletteMinkBackground2"),vl=It("colorPaletteMinkForeground2"),ml=It("colorPaletteMinkBorderActive"),bl=It("colorPalettePlatinumBackground2"),Bl=It("colorPalettePlatinumForeground2"),yl=It("colorPalettePlatinumBorderActive"),kl=It("colorPaletteAnchorBackground2"),Pl=It("colorPaletteAnchorForeground2"),Sl=It("colorPaletteAnchorBorderActive"),wl=It("shadow2"),xl=It("shadow4"),Nl=It("shadow8"),Fl=It("shadow16"),$l=It("shadow28"),Cl=It("shadow64"),Al=It("shadow2Brand"),Tl=It("shadow4Brand"),Il=It("shadow8Brand"),Ll=It("shadow16Brand"),zl=It("shadow28Brand"),Ol=It("shadow64Brand");var Hl=Object.freeze({__proto__:null,borderRadiusNone:Lt,borderRadiusSmall:zt,borderRadiusMedium:Ot,borderRadiusLarge:Ht,borderRadiusXLarge:Dt,borderRadiusCircular:Mt,fontSizeBase100:Vt,fontSizeBase200:Rt,fontSizeBase300:Et,fontSizeBase400:_t,fontSizeBase500:jt,fontSizeBase600:Gt,fontSizeHero700:Xt,fontSizeHero800:qt,fontSizeHero900:Wt,fontSizeHero1000:Yt,lineHeightBase100:Ut,lineHeightBase200:Kt,lineHeightBase300:Qt,lineHeightBase400:Jt,lineHeightBase500:Zt,lineHeightBase600:eo,lineHeightHero700:to,lineHeightHero800:oo,lineHeightHero900:ro,lineHeightHero1000:no,fontFamilyBase:so,fontFamilyMonospace:io,fontFamilyNumeric:ao,fontWeightRegular:lo,fontWeightMedium:co,fontWeightSemibold:uo,fontWeightBold:ho,strokeWidthThin:go,strokeWidthThick:po,strokeWidthThicker:fo,strokeWidthThickest:vo,spacingHorizontalNone:mo,spacingHorizontalXXS:bo,spacingHorizontalXS:Bo,spacingHorizontalSNudge:yo,spacingHorizontalS:ko,spacingHorizontalMNudge:Po,spacingHorizontalM:So,spacingHorizontalL:wo,spacingHorizontalXL:xo,spacingHorizontalXXL:No,spacingHorizontalXXXL:Fo,spacingVerticalNone:$o,spacingVerticalXXS:Co,spacingVerticalXS:Ao,spacingVerticalSNudge:To,spacingVerticalS:Io,spacingVerticalMNudge:Lo,spacingVerticalM:zo,spacingVerticalL:Oo,spacingVerticalXL:Ho,spacingVerticalXXL:Do,spacingVerticalXXXL:Mo,durationUltraFast:Vo,durationFaster:Ro,durationFast:Eo,durationNormal:_o,durationSlow:jo,durationSlower:Go,durationUltraSlow:Xo,curveAccelerateMax:qo,curveAccelerateMid:Wo,curveAccelerateMin:Yo,curveDecelerateMax:Uo,curveDecelerateMid:Ko,curveDecelerateMin:Qo,curveEasyEaseMax:Jo,curveEasyEase:Zo,curveLinear:er,colorNeutralForeground1:tr,colorNeutralForeground1Hover:or,colorNeutralForeground1Pressed:rr,colorNeutralForeground1Selected:nr,colorNeutralForeground2:sr,colorNeutralForeground2Hover:ir,colorNeutralForeground2Pressed:ar,colorNeutralForeground2Selected:lr,colorNeutralForeground2BrandHover:cr,colorNeutralForeground2BrandPressed:dr,colorNeutralForeground2BrandSelected:ur,colorNeutralForeground3:hr,colorNeutralForeground3Hover:gr,colorNeutralForeground3Pressed:pr,colorNeutralForeground3Selected:fr,colorNeutralForeground3BrandHover:vr,colorNeutralForeground3BrandPressed:mr,colorNeutralForeground3BrandSelected:br,colorNeutralForeground4:Br,colorNeutralForegroundDisabled:yr,colorNeutralForegroundInvertedDisabled:kr,colorBrandForegroundLink:Pr,colorBrandForegroundLinkHover:Sr,colorBrandForegroundLinkPressed:wr,colorBrandForegroundLinkSelected:xr,colorNeutralForeground2Link:Nr,colorNeutralForeground2LinkHover:Fr,colorNeutralForeground2LinkPressed:$r,colorNeutralForeground2LinkSelected:Cr,colorCompoundBrandForeground1:Ar,colorCompoundBrandForeground1Hover:Tr,colorCompoundBrandForeground1Pressed:Ir,colorBrandForeground1:Lr,colorBrandForeground2:zr,colorNeutralForeground1Static:Or,colorNeutralForegroundStaticInverted:Hr,colorNeutralForegroundInverted:Dr,colorNeutralForegroundInvertedHover:Mr,colorNeutralForegroundInvertedPressed:Vr,colorNeutralForegroundInvertedSelected:Rr,colorNeutralForegroundInverted2:Er,colorNeutralForegroundOnBrand:_r,colorNeutralForegroundInvertedLink:jr,colorNeutralForegroundInvertedLinkHover:Gr,colorNeutralForegroundInvertedLinkPressed:Xr,colorNeutralForegroundInvertedLinkSelected:qr,colorBrandForegroundInverted:Wr,colorBrandForegroundInvertedHover:Yr,colorBrandForegroundInvertedPressed:Ur,colorBrandForegroundOnLight:Kr,colorBrandForegroundOnLightHover:Qr,colorBrandForegroundOnLightPressed:Jr,colorBrandForegroundOnLightSelected:Zr,colorNeutralBackground1:en,colorNeutralBackground1Hover:tn,colorNeutralBackground1Pressed:on,colorNeutralBackground1Selected:rn,colorNeutralBackground2:nn,colorNeutralBackground2Hover:sn,colorNeutralBackground2Pressed:an,colorNeutralBackground2Selected:ln,colorNeutralBackground3:cn,colorNeutralBackground3Hover:dn,colorNeutralBackground3Pressed:un,colorNeutralBackground3Selected:hn,colorNeutralBackground4:gn,colorNeutralBackground4Hover:pn,colorNeutralBackground4Pressed:fn,colorNeutralBackground4Selected:vn,colorNeutralBackground5:mn,colorNeutralBackground5Hover:bn,colorNeutralBackground5Pressed:Bn,colorNeutralBackground5Selected:yn,colorNeutralBackground6:kn,colorNeutralBackgroundInverted:Pn,colorNeutralBackgroundStatic:Sn,colorSubtleBackground:wn,colorSubtleBackgroundHover:xn,colorSubtleBackgroundPressed:Nn,colorSubtleBackgroundSelected:Fn,colorSubtleBackgroundLightAlphaHover:$n,colorSubtleBackgroundLightAlphaPressed:Cn,colorSubtleBackgroundLightAlphaSelected:An,colorSubtleBackgroundInverted:Tn,colorSubtleBackgroundInvertedHover:In,colorSubtleBackgroundInvertedPressed:Ln,colorSubtleBackgroundInvertedSelected:zn,colorTransparentBackground:On,colorTransparentBackgroundHover:Hn,colorTransparentBackgroundPressed:Dn,colorTransparentBackgroundSelected:Mn,colorNeutralBackgroundDisabled:Vn,colorNeutralBackgroundInvertedDisabled:Rn,colorNeutralStencil1:En,colorNeutralStencil2:_n,colorBackgroundOverlay:jn,colorScrollbarOverlay:Gn,colorBrandBackground:Xn,colorBrandBackgroundHover:qn,colorBrandBackgroundPressed:Wn,colorBrandBackgroundSelected:Yn,colorCompoundBrandBackground:Un,colorCompoundBrandBackgroundHover:Kn,colorCompoundBrandBackgroundPressed:Qn,colorBrandBackgroundStatic:Jn,colorBrandBackground2:Zn,colorBrandBackgroundInverted:es,colorBrandBackgroundInvertedHover:ts,colorBrandBackgroundInvertedPressed:os,colorBrandBackgroundInvertedSelected:rs,colorNeutralStrokeAccessible:ns,colorNeutralStrokeAccessibleHover:ss,colorNeutralStrokeAccessiblePressed:is,colorNeutralStrokeAccessibleSelected:as,colorNeutralStroke1:ls,colorNeutralStroke1Hover:cs,colorNeutralStroke1Pressed:ds,colorNeutralStroke1Selected:us,colorNeutralStroke2:hs,colorNeutralStroke3:gs,colorNeutralStrokeOnBrand:ps,colorNeutralStrokeOnBrand2:fs,colorNeutralStrokeOnBrand2Hover:vs,colorNeutralStrokeOnBrand2Pressed:ms,colorNeutralStrokeOnBrand2Selected:bs,colorBrandStroke1:Bs,colorBrandStroke2:ys,colorCompoundBrandStroke:ks,colorCompoundBrandStrokeHover:Ps,colorCompoundBrandStrokePressed:Ss,colorNeutralStrokeDisabled:ws,colorNeutralStrokeInvertedDisabled:xs,colorTransparentStroke:Ns,colorTransparentStrokeInteractive:Fs,colorTransparentStrokeDisabled:$s,colorStrokeFocus1:Cs,colorStrokeFocus2:As,colorNeutralShadowAmbient:Ts,colorNeutralShadowKey:Is,colorNeutralShadowAmbientLighter:Ls,colorNeutralShadowKeyLighter:zs,colorNeutralShadowAmbientDarker:Os,colorNeutralShadowKeyDarker:Hs,colorBrandShadowAmbient:Ds,colorBrandShadowKey:Ms,colorPaletteRedBackground1:Vs,colorPaletteRedBackground2:Rs,colorPaletteRedBackground3:Es,colorPaletteRedForeground1:_s,colorPaletteRedForeground2:js,colorPaletteRedForeground3:Gs,colorPaletteRedBorderActive:Xs,colorPaletteRedBorder1:qs,colorPaletteRedBorder2:Ws,colorPaletteGreenBackground1:Ys,colorPaletteGreenBackground2:Us,colorPaletteGreenBackground3:Ks,colorPaletteGreenForeground1:Qs,colorPaletteGreenForeground2:Js,colorPaletteGreenForeground3:Zs,colorPaletteGreenBorderActive:ei,colorPaletteGreenBorder1:ti,colorPaletteGreenBorder2:oi,colorPaletteDarkOrangeBackground1:ri,colorPaletteDarkOrangeBackground2:ni,colorPaletteDarkOrangeBackground3:si,colorPaletteDarkOrangeForeground1:ii,colorPaletteDarkOrangeForeground2:ai,colorPaletteDarkOrangeForeground3:li,colorPaletteDarkOrangeBorderActive:ci,colorPaletteDarkOrangeBorder1:di,colorPaletteDarkOrangeBorder2:ui,colorPaletteYellowBackground1:hi,colorPaletteYellowBackground2:gi,colorPaletteYellowBackground3:pi,colorPaletteYellowForeground1:fi,colorPaletteYellowForeground2:vi,colorPaletteYellowForeground3:mi,colorPaletteYellowBorderActive:bi,colorPaletteYellowBorder1:Bi,colorPaletteYellowBorder2:yi,colorPaletteBerryBackground1:ki,colorPaletteBerryBackground2:Pi,colorPaletteBerryBackground3:Si,colorPaletteBerryForeground1:wi,colorPaletteBerryForeground2:xi,colorPaletteBerryForeground3:Ni,colorPaletteBerryBorderActive:Fi,colorPaletteBerryBorder1:$i,colorPaletteBerryBorder2:Ci,colorPaletteLightGreenBackground1:Ai,colorPaletteLightGreenBackground2:Ti,colorPaletteLightGreenBackground3:Ii,colorPaletteLightGreenForeground1:Li,colorPaletteLightGreenForeground2:zi,colorPaletteLightGreenForeground3:Oi,colorPaletteLightGreenBorderActive:Hi,colorPaletteLightGreenBorder1:Di,colorPaletteLightGreenBorder2:Mi,colorPaletteMarigoldBackground1:Vi,colorPaletteMarigoldBackground2:Ri,colorPaletteMarigoldBackground3:Ei,colorPaletteMarigoldForeground1:_i,colorPaletteMarigoldForeground2:ji,colorPaletteMarigoldForeground3:Gi,colorPaletteMarigoldBorderActive:Xi,colorPaletteMarigoldBorder1:qi,colorPaletteMarigoldBorder2:Wi,colorPaletteDarkRedBackground2:Yi,colorPaletteDarkRedForeground2:Ui,colorPaletteDarkRedBorderActive:Ki,colorPaletteCranberryBackground2:Qi,colorPaletteCranberryForeground2:Ji,colorPaletteCranberryBorderActive:Zi,colorPalettePumpkinBackground2:ea,colorPalettePumpkinForeground2:ta,colorPalettePumpkinBorderActive:oa,colorPalettePeachBackground2:ra,colorPalettePeachForeground2:na,colorPalettePeachBorderActive:sa,colorPaletteGoldBackground2:ia,colorPaletteGoldForeground2:aa,colorPaletteGoldBorderActive:la,colorPaletteBrassBackground2:ca,colorPaletteBrassForeground2:da,colorPaletteBrassBorderActive:ua,colorPaletteBrownBackground2:ha,colorPaletteBrownForeground2:ga,colorPaletteBrownBorderActive:pa,colorPaletteForestBackground2:fa,colorPaletteForestForeground2:va,colorPaletteForestBorderActive:ma,colorPaletteSeafoamBackground2:ba,colorPaletteSeafoamForeground2:Ba,colorPaletteSeafoamBorderActive:ya,colorPaletteDarkGreenBackground2:ka,colorPaletteDarkGreenForeground2:Pa,colorPaletteDarkGreenBorderActive:Sa,colorPaletteLightTealBackground2:wa,colorPaletteLightTealForeground2:xa,colorPaletteLightTealBorderActive:Na,colorPaletteTealBackground2:Fa,colorPaletteTealForeground2:$a,colorPaletteTealBorderActive:Ca,colorPaletteSteelBackground2:Aa,colorPaletteSteelForeground2:Ta,colorPaletteSteelBorderActive:Ia,colorPaletteBlueBackground2:La,colorPaletteBlueForeground2:za,colorPaletteBlueBorderActive:Oa,colorPaletteRoyalBlueBackground2:Ha,colorPaletteRoyalBlueForeground2:Da,colorPaletteRoyalBlueBorderActive:Ma,colorPaletteCornflowerBackground2:Va,colorPaletteCornflowerForeground2:Ra,colorPaletteCornflowerBorderActive:Ea,colorPaletteNavyBackground2:_a,colorPaletteNavyForeground2:ja,colorPaletteNavyBorderActive:Ga,colorPaletteLavenderBackground2:Xa,colorPaletteLavenderForeground2:qa,colorPaletteLavenderBorderActive:Wa,colorPalettePurpleBackground2:Ya,colorPalettePurpleForeground2:Ua,colorPalettePurpleBorderActive:Ka,colorPaletteGrapeBackground2:Qa,colorPaletteGrapeForeground2:Ja,colorPaletteGrapeBorderActive:Za,colorPaletteLilacBackground2:el,colorPaletteLilacForeground2:tl,colorPaletteLilacBorderActive:ol,colorPalettePinkBackground2:rl,colorPalettePinkForeground2:nl,colorPalettePinkBorderActive:sl,colorPaletteMagentaBackground2:il,colorPaletteMagentaForeground2:al,colorPaletteMagentaBorderActive:ll,colorPalettePlumBackground2:cl,colorPalettePlumForeground2:dl,colorPalettePlumBorderActive:ul,colorPaletteBeigeBackground2:hl,colorPaletteBeigeForeground2:gl,colorPaletteBeigeBorderActive:pl,colorPaletteMinkBackground2:fl,colorPaletteMinkForeground2:vl,colorPaletteMinkBorderActive:ml,colorPalettePlatinumBackground2:bl,colorPalettePlatinumForeground2:Bl,colorPalettePlatinumBorderActive:yl,colorPaletteAnchorBackground2:kl,colorPaletteAnchorForeground2:Pl,colorPaletteAnchorBorderActive:Sl,shadow2:wl,shadow4:xl,shadow8:Nl,shadow16:Fl,shadow28:$l,shadow64:Cl,shadow2Brand:Al,shadow4Brand:Tl,shadow8Brand:Il,shadow16Brand:Ll,shadow28Brand:zl,shadow64Brand:Ol});const Dl=I`
|
|
5
|
-
${
|
|
4
|
+
:host{flex-direction:column;width:100%}`,Ht=Object.freeze({prefix:"fluent",shadowRootMode:"open",registry:customElements}),Dt=It.compose({name:Ht.prefix+"-accordion",template:Tt,styles:Ot});class Vt extends Je{constructor(){super(...arguments),this.block=!1}}Xe([Ce],Vt.prototype,"size",void 0),Xe([Ce({mode:"boolean"})],Vt.prototype,"block",void 0),Xe([Ce({attribute:"expand-icon-position"})],Vt.prototype,"expandIconPosition",void 0);const Mt={small:"small",medium:"medium",large:"large",extraLarge:"extra-large"},Et={start:"start",end:"end"},{create:Rt}=bt,_t=Rt("borderRadiusNone"),jt=Rt("borderRadiusSmall"),Gt=Rt("borderRadiusMedium"),qt=Rt("borderRadiusLarge"),Xt=Rt("borderRadiusXLarge"),Wt=Rt("borderRadiusCircular"),Yt=Rt("fontSizeBase100"),Ut=Rt("fontSizeBase200"),Kt=Rt("fontSizeBase300"),Qt=Rt("fontSizeBase400"),Jt=Rt("fontSizeBase500"),Zt=Rt("fontSizeBase600"),eo=Rt("fontSizeHero700"),to=Rt("fontSizeHero800"),oo=Rt("fontSizeHero900"),ro=Rt("fontSizeHero1000"),no=Rt("lineHeightBase100"),io=Rt("lineHeightBase200"),so=Rt("lineHeightBase300"),ao=Rt("lineHeightBase400"),lo=Rt("lineHeightBase500"),co=Rt("lineHeightBase600"),ho=Rt("lineHeightHero700"),uo=Rt("lineHeightHero800"),go=Rt("lineHeightHero900"),po=Rt("lineHeightHero1000"),fo=Rt("fontFamilyBase"),vo=Rt("fontFamilyMonospace"),bo=Rt("fontFamilyNumeric"),mo=Rt("fontWeightRegular"),yo=Rt("fontWeightMedium"),ko=Rt("fontWeightSemibold"),Bo=Rt("fontWeightBold"),xo=Rt("strokeWidthThin"),wo=Rt("strokeWidthThick"),Po=Rt("strokeWidthThicker"),$o=Rt("strokeWidthThickest"),So=Rt("spacingHorizontalNone"),Fo=Rt("spacingHorizontalXXS"),Co=Rt("spacingHorizontalXS"),No=Rt("spacingHorizontalSNudge"),zo=Rt("spacingHorizontalS"),Ao=Rt("spacingHorizontalMNudge"),Io=Rt("spacingHorizontalM"),To=Rt("spacingHorizontalL"),Lo=Rt("spacingHorizontalXL"),Oo=Rt("spacingHorizontalXXL"),Ho=Rt("spacingHorizontalXXXL"),Do=Rt("spacingVerticalNone"),Vo=Rt("spacingVerticalXXS"),Mo=Rt("spacingVerticalXS"),Eo=Rt("spacingVerticalSNudge"),Ro=Rt("spacingVerticalS"),_o=Rt("spacingVerticalMNudge"),jo=Rt("spacingVerticalM"),Go=Rt("spacingVerticalL"),qo=Rt("spacingVerticalXL"),Xo=Rt("spacingVerticalXXL"),Wo=Rt("spacingVerticalXXXL"),Yo=Rt("durationUltraFast"),Uo=Rt("durationFaster"),Ko=Rt("durationFast"),Qo=Rt("durationNormal"),Jo=Rt("durationSlow"),Zo=Rt("durationSlower"),er=Rt("durationUltraSlow"),tr=Rt("curveAccelerateMax"),or=Rt("curveAccelerateMid"),rr=Rt("curveAccelerateMin"),nr=Rt("curveDecelerateMax"),ir=Rt("curveDecelerateMid"),sr=Rt("curveDecelerateMin"),ar=Rt("curveEasyEaseMax"),lr=Rt("curveEasyEase"),cr=Rt("curveLinear"),dr=Rt("colorNeutralForeground1"),hr=Rt("colorNeutralForeground1Hover"),ur=Rt("colorNeutralForeground1Pressed"),gr=Rt("colorNeutralForeground1Selected"),pr=Rt("colorNeutralForeground2"),fr=Rt("colorNeutralForeground2Hover"),vr=Rt("colorNeutralForeground2Pressed"),br=Rt("colorNeutralForeground2Selected"),mr=Rt("colorNeutralForeground2BrandHover"),yr=Rt("colorNeutralForeground2BrandPressed"),kr=Rt("colorNeutralForeground2BrandSelected"),Br=Rt("colorNeutralForeground3"),xr=Rt("colorNeutralForeground3Hover"),wr=Rt("colorNeutralForeground3Pressed"),Pr=Rt("colorNeutralForeground3Selected"),$r=Rt("colorNeutralForeground3BrandHover"),Sr=Rt("colorNeutralForeground3BrandPressed"),Fr=Rt("colorNeutralForeground3BrandSelected"),Cr=Rt("colorNeutralForeground4"),Nr=Rt("colorNeutralForegroundDisabled"),zr=Rt("colorNeutralForegroundInvertedDisabled"),Ar=Rt("colorBrandForegroundLink"),Ir=Rt("colorBrandForegroundLinkHover"),Tr=Rt("colorBrandForegroundLinkPressed"),Lr=Rt("colorBrandForegroundLinkSelected"),Or=Rt("colorNeutralForeground2Link"),Hr=Rt("colorNeutralForeground2LinkHover"),Dr=Rt("colorNeutralForeground2LinkPressed"),Vr=Rt("colorNeutralForeground2LinkSelected"),Mr=Rt("colorCompoundBrandForeground1"),Er=Rt("colorCompoundBrandForeground1Hover"),Rr=Rt("colorCompoundBrandForeground1Pressed"),_r=Rt("colorBrandForeground1"),jr=Rt("colorBrandForeground2"),Gr=Rt("colorNeutralForeground1Static"),qr=Rt("colorNeutralForegroundStaticInverted"),Xr=Rt("colorNeutralForegroundInverted"),Wr=Rt("colorNeutralForegroundInvertedHover"),Yr=Rt("colorNeutralForegroundInvertedPressed"),Ur=Rt("colorNeutralForegroundInvertedSelected"),Kr=Rt("colorNeutralForegroundInverted2"),Qr=Rt("colorNeutralForegroundOnBrand"),Jr=Rt("colorNeutralForegroundInvertedLink"),Zr=Rt("colorNeutralForegroundInvertedLinkHover"),en=Rt("colorNeutralForegroundInvertedLinkPressed"),tn=Rt("colorNeutralForegroundInvertedLinkSelected"),on=Rt("colorBrandForegroundInverted"),rn=Rt("colorBrandForegroundInvertedHover"),nn=Rt("colorBrandForegroundInvertedPressed"),sn=Rt("colorBrandForegroundOnLight"),an=Rt("colorBrandForegroundOnLightHover"),ln=Rt("colorBrandForegroundOnLightPressed"),cn=Rt("colorBrandForegroundOnLightSelected"),dn=Rt("colorNeutralBackground1"),hn=Rt("colorNeutralBackground1Hover"),un=Rt("colorNeutralBackground1Pressed"),gn=Rt("colorNeutralBackground1Selected"),pn=Rt("colorNeutralBackground2"),fn=Rt("colorNeutralBackground2Hover"),vn=Rt("colorNeutralBackground2Pressed"),bn=Rt("colorNeutralBackground2Selected"),mn=Rt("colorNeutralBackground3"),yn=Rt("colorNeutralBackground3Hover"),kn=Rt("colorNeutralBackground3Pressed"),Bn=Rt("colorNeutralBackground3Selected"),xn=Rt("colorNeutralBackground4"),wn=Rt("colorNeutralBackground4Hover"),Pn=Rt("colorNeutralBackground4Pressed"),$n=Rt("colorNeutralBackground4Selected"),Sn=Rt("colorNeutralBackground5"),Fn=Rt("colorNeutralBackground5Hover"),Cn=Rt("colorNeutralBackground5Pressed"),Nn=Rt("colorNeutralBackground5Selected"),zn=Rt("colorNeutralBackground6"),An=Rt("colorNeutralBackgroundInverted"),In=Rt("colorNeutralBackgroundStatic"),Tn=Rt("colorSubtleBackground"),Ln=Rt("colorSubtleBackgroundHover"),On=Rt("colorSubtleBackgroundPressed"),Hn=Rt("colorSubtleBackgroundSelected"),Dn=Rt("colorSubtleBackgroundLightAlphaHover"),Vn=Rt("colorSubtleBackgroundLightAlphaPressed"),Mn=Rt("colorSubtleBackgroundLightAlphaSelected"),En=Rt("colorSubtleBackgroundInverted"),Rn=Rt("colorSubtleBackgroundInvertedHover"),_n=Rt("colorSubtleBackgroundInvertedPressed"),jn=Rt("colorSubtleBackgroundInvertedSelected"),Gn=Rt("colorTransparentBackground"),qn=Rt("colorTransparentBackgroundHover"),Xn=Rt("colorTransparentBackgroundPressed"),Wn=Rt("colorTransparentBackgroundSelected"),Yn=Rt("colorNeutralBackgroundDisabled"),Un=Rt("colorNeutralBackgroundInvertedDisabled"),Kn=Rt("colorNeutralStencil1"),Qn=Rt("colorNeutralStencil2"),Jn=Rt("colorBackgroundOverlay"),Zn=Rt("colorScrollbarOverlay"),ei=Rt("colorBrandBackground"),ti=Rt("colorBrandBackgroundHover"),oi=Rt("colorBrandBackgroundPressed"),ri=Rt("colorBrandBackgroundSelected"),ni=Rt("colorCompoundBrandBackground"),ii=Rt("colorCompoundBrandBackgroundHover"),si=Rt("colorCompoundBrandBackgroundPressed"),ai=Rt("colorBrandBackgroundStatic"),li=Rt("colorBrandBackground2"),ci=Rt("colorBrandBackgroundInverted"),di=Rt("colorBrandBackgroundInvertedHover"),hi=Rt("colorBrandBackgroundInvertedPressed"),ui=Rt("colorBrandBackgroundInvertedSelected"),gi=Rt("colorNeutralStrokeAccessible"),pi=Rt("colorNeutralStrokeAccessibleHover"),fi=Rt("colorNeutralStrokeAccessiblePressed"),vi=Rt("colorNeutralStrokeAccessibleSelected"),bi=Rt("colorNeutralStroke1"),mi=Rt("colorNeutralStroke1Hover"),yi=Rt("colorNeutralStroke1Pressed"),ki=Rt("colorNeutralStroke1Selected"),Bi=Rt("colorNeutralStroke2"),xi=Rt("colorNeutralStroke3"),wi=Rt("colorNeutralStrokeOnBrand"),Pi=Rt("colorNeutralStrokeOnBrand2"),$i=Rt("colorNeutralStrokeOnBrand2Hover"),Si=Rt("colorNeutralStrokeOnBrand2Pressed"),Fi=Rt("colorNeutralStrokeOnBrand2Selected"),Ci=Rt("colorBrandStroke1"),Ni=Rt("colorBrandStroke2"),zi=Rt("colorCompoundBrandStroke"),Ai=Rt("colorCompoundBrandStrokeHover"),Ii=Rt("colorCompoundBrandStrokePressed"),Ti=Rt("colorNeutralStrokeDisabled"),Li=Rt("colorNeutralStrokeInvertedDisabled"),Oi=Rt("colorTransparentStroke"),Hi=Rt("colorTransparentStrokeInteractive"),Di=Rt("colorTransparentStrokeDisabled"),Vi=Rt("colorStrokeFocus1"),Mi=Rt("colorStrokeFocus2"),Ei=Rt("colorNeutralShadowAmbient"),Ri=Rt("colorNeutralShadowKey"),_i=Rt("colorNeutralShadowAmbientLighter"),ji=Rt("colorNeutralShadowKeyLighter"),Gi=Rt("colorNeutralShadowAmbientDarker"),qi=Rt("colorNeutralShadowKeyDarker"),Xi=Rt("colorBrandShadowAmbient"),Wi=Rt("colorBrandShadowKey"),Yi=Rt("colorPaletteRedBackground1"),Ui=Rt("colorPaletteRedBackground2"),Ki=Rt("colorPaletteRedBackground3"),Qi=Rt("colorPaletteRedForeground1"),Ji=Rt("colorPaletteRedForeground2"),Zi=Rt("colorPaletteRedForeground3"),es=Rt("colorPaletteRedBorderActive"),ts=Rt("colorPaletteRedBorder1"),os=Rt("colorPaletteRedBorder2"),rs=Rt("colorPaletteGreenBackground1"),ns=Rt("colorPaletteGreenBackground2"),is=Rt("colorPaletteGreenBackground3"),ss=Rt("colorPaletteGreenForeground1"),as=Rt("colorPaletteGreenForeground2"),ls=Rt("colorPaletteGreenForeground3"),cs=Rt("colorPaletteGreenBorderActive"),ds=Rt("colorPaletteGreenBorder1"),hs=Rt("colorPaletteGreenBorder2"),us=Rt("colorPaletteDarkOrangeBackground1"),gs=Rt("colorPaletteDarkOrangeBackground2"),ps=Rt("colorPaletteDarkOrangeBackground3"),fs=Rt("colorPaletteDarkOrangeForeground1"),vs=Rt("colorPaletteDarkOrangeForeground2"),bs=Rt("colorPaletteDarkOrangeForeground3"),ms=Rt("colorPaletteDarkOrangeBorderActive"),ys=Rt("colorPaletteDarkOrangeBorder1"),ks=Rt("colorPaletteDarkOrangeBorder2"),Bs=Rt("colorPaletteYellowBackground1"),xs=Rt("colorPaletteYellowBackground2"),ws=Rt("colorPaletteYellowBackground3"),Ps=Rt("colorPaletteYellowForeground1"),$s=Rt("colorPaletteYellowForeground2"),Ss=Rt("colorPaletteYellowForeground3"),Fs=Rt("colorPaletteYellowBorderActive"),Cs=Rt("colorPaletteYellowBorder1"),Ns=Rt("colorPaletteYellowBorder2"),zs=Rt("colorPaletteBerryBackground1"),As=Rt("colorPaletteBerryBackground2"),Is=Rt("colorPaletteBerryBackground3"),Ts=Rt("colorPaletteBerryForeground1"),Ls=Rt("colorPaletteBerryForeground2"),Os=Rt("colorPaletteBerryForeground3"),Hs=Rt("colorPaletteBerryBorderActive"),Ds=Rt("colorPaletteBerryBorder1"),Vs=Rt("colorPaletteBerryBorder2"),Ms=Rt("colorPaletteLightGreenBackground1"),Es=Rt("colorPaletteLightGreenBackground2"),Rs=Rt("colorPaletteLightGreenBackground3"),_s=Rt("colorPaletteLightGreenForeground1"),js=Rt("colorPaletteLightGreenForeground2"),Gs=Rt("colorPaletteLightGreenForeground3"),qs=Rt("colorPaletteLightGreenBorderActive"),Xs=Rt("colorPaletteLightGreenBorder1"),Ws=Rt("colorPaletteLightGreenBorder2"),Ys=Rt("colorPaletteMarigoldBackground1"),Us=Rt("colorPaletteMarigoldBackground2"),Ks=Rt("colorPaletteMarigoldBackground3"),Qs=Rt("colorPaletteMarigoldForeground1"),Js=Rt("colorPaletteMarigoldForeground2"),Zs=Rt("colorPaletteMarigoldForeground3"),ea=Rt("colorPaletteMarigoldBorderActive"),ta=Rt("colorPaletteMarigoldBorder1"),oa=Rt("colorPaletteMarigoldBorder2"),ra=Rt("colorPaletteDarkRedBackground2"),na=Rt("colorPaletteDarkRedForeground2"),ia=Rt("colorPaletteDarkRedBorderActive"),sa=Rt("colorPaletteCranberryBackground2"),aa=Rt("colorPaletteCranberryForeground2"),la=Rt("colorPaletteCranberryBorderActive"),ca=Rt("colorPalettePumpkinBackground2"),da=Rt("colorPalettePumpkinForeground2"),ha=Rt("colorPalettePumpkinBorderActive"),ua=Rt("colorPalettePeachBackground2"),ga=Rt("colorPalettePeachForeground2"),pa=Rt("colorPalettePeachBorderActive"),fa=Rt("colorPaletteGoldBackground2"),va=Rt("colorPaletteGoldForeground2"),ba=Rt("colorPaletteGoldBorderActive"),ma=Rt("colorPaletteBrassBackground2"),ya=Rt("colorPaletteBrassForeground2"),ka=Rt("colorPaletteBrassBorderActive"),Ba=Rt("colorPaletteBrownBackground2"),xa=Rt("colorPaletteBrownForeground2"),wa=Rt("colorPaletteBrownBorderActive"),Pa=Rt("colorPaletteForestBackground2"),$a=Rt("colorPaletteForestForeground2"),Sa=Rt("colorPaletteForestBorderActive"),Fa=Rt("colorPaletteSeafoamBackground2"),Ca=Rt("colorPaletteSeafoamForeground2"),Na=Rt("colorPaletteSeafoamBorderActive"),za=Rt("colorPaletteDarkGreenBackground2"),Aa=Rt("colorPaletteDarkGreenForeground2"),Ia=Rt("colorPaletteDarkGreenBorderActive"),Ta=Rt("colorPaletteLightTealBackground2"),La=Rt("colorPaletteLightTealForeground2"),Oa=Rt("colorPaletteLightTealBorderActive"),Ha=Rt("colorPaletteTealBackground2"),Da=Rt("colorPaletteTealForeground2"),Va=Rt("colorPaletteTealBorderActive"),Ma=Rt("colorPaletteSteelBackground2"),Ea=Rt("colorPaletteSteelForeground2"),Ra=Rt("colorPaletteSteelBorderActive"),_a=Rt("colorPaletteBlueBackground2"),ja=Rt("colorPaletteBlueForeground2"),Ga=Rt("colorPaletteBlueBorderActive"),qa=Rt("colorPaletteRoyalBlueBackground2"),Xa=Rt("colorPaletteRoyalBlueForeground2"),Wa=Rt("colorPaletteRoyalBlueBorderActive"),Ya=Rt("colorPaletteCornflowerBackground2"),Ua=Rt("colorPaletteCornflowerForeground2"),Ka=Rt("colorPaletteCornflowerBorderActive"),Qa=Rt("colorPaletteNavyBackground2"),Ja=Rt("colorPaletteNavyForeground2"),Za=Rt("colorPaletteNavyBorderActive"),el=Rt("colorPaletteLavenderBackground2"),tl=Rt("colorPaletteLavenderForeground2"),ol=Rt("colorPaletteLavenderBorderActive"),rl=Rt("colorPalettePurpleBackground2"),nl=Rt("colorPalettePurpleForeground2"),il=Rt("colorPalettePurpleBorderActive"),sl=Rt("colorPaletteGrapeBackground2"),al=Rt("colorPaletteGrapeForeground2"),ll=Rt("colorPaletteGrapeBorderActive"),cl=Rt("colorPaletteLilacBackground2"),dl=Rt("colorPaletteLilacForeground2"),hl=Rt("colorPaletteLilacBorderActive"),ul=Rt("colorPalettePinkBackground2"),gl=Rt("colorPalettePinkForeground2"),pl=Rt("colorPalettePinkBorderActive"),fl=Rt("colorPaletteMagentaBackground2"),vl=Rt("colorPaletteMagentaForeground2"),bl=Rt("colorPaletteMagentaBorderActive"),ml=Rt("colorPalettePlumBackground2"),yl=Rt("colorPalettePlumForeground2"),kl=Rt("colorPalettePlumBorderActive"),Bl=Rt("colorPaletteBeigeBackground2"),xl=Rt("colorPaletteBeigeForeground2"),wl=Rt("colorPaletteBeigeBorderActive"),Pl=Rt("colorPaletteMinkBackground2"),$l=Rt("colorPaletteMinkForeground2"),Sl=Rt("colorPaletteMinkBorderActive"),Fl=Rt("colorPalettePlatinumBackground2"),Cl=Rt("colorPalettePlatinumForeground2"),Nl=Rt("colorPalettePlatinumBorderActive"),zl=Rt("colorPaletteAnchorBackground2"),Al=Rt("colorPaletteAnchorForeground2"),Il=Rt("colorPaletteAnchorBorderActive"),Tl=Rt("shadow2"),Ll=Rt("shadow4"),Ol=Rt("shadow8"),Hl=Rt("shadow16"),Dl=Rt("shadow28"),Vl=Rt("shadow64"),Ml=Rt("shadow2Brand"),El=Rt("shadow4Brand"),Rl=Rt("shadow8Brand"),_l=Rt("shadow16Brand"),jl=Rt("shadow28Brand"),Gl=Rt("shadow64Brand");var ql=Object.freeze({__proto__:null,borderRadiusNone:_t,borderRadiusSmall:jt,borderRadiusMedium:Gt,borderRadiusLarge:qt,borderRadiusXLarge:Xt,borderRadiusCircular:Wt,fontSizeBase100:Yt,fontSizeBase200:Ut,fontSizeBase300:Kt,fontSizeBase400:Qt,fontSizeBase500:Jt,fontSizeBase600:Zt,fontSizeHero700:eo,fontSizeHero800:to,fontSizeHero900:oo,fontSizeHero1000:ro,lineHeightBase100:no,lineHeightBase200:io,lineHeightBase300:so,lineHeightBase400:ao,lineHeightBase500:lo,lineHeightBase600:co,lineHeightHero700:ho,lineHeightHero800:uo,lineHeightHero900:go,lineHeightHero1000:po,fontFamilyBase:fo,fontFamilyMonospace:vo,fontFamilyNumeric:bo,fontWeightRegular:mo,fontWeightMedium:yo,fontWeightSemibold:ko,fontWeightBold:Bo,strokeWidthThin:xo,strokeWidthThick:wo,strokeWidthThicker:Po,strokeWidthThickest:$o,spacingHorizontalNone:So,spacingHorizontalXXS:Fo,spacingHorizontalXS:Co,spacingHorizontalSNudge:No,spacingHorizontalS:zo,spacingHorizontalMNudge:Ao,spacingHorizontalM:Io,spacingHorizontalL:To,spacingHorizontalXL:Lo,spacingHorizontalXXL:Oo,spacingHorizontalXXXL:Ho,spacingVerticalNone:Do,spacingVerticalXXS:Vo,spacingVerticalXS:Mo,spacingVerticalSNudge:Eo,spacingVerticalS:Ro,spacingVerticalMNudge:_o,spacingVerticalM:jo,spacingVerticalL:Go,spacingVerticalXL:qo,spacingVerticalXXL:Xo,spacingVerticalXXXL:Wo,durationUltraFast:Yo,durationFaster:Uo,durationFast:Ko,durationNormal:Qo,durationSlow:Jo,durationSlower:Zo,durationUltraSlow:er,curveAccelerateMax:tr,curveAccelerateMid:or,curveAccelerateMin:rr,curveDecelerateMax:nr,curveDecelerateMid:ir,curveDecelerateMin:sr,curveEasyEaseMax:ar,curveEasyEase:lr,curveLinear:cr,colorNeutralForeground1:dr,colorNeutralForeground1Hover:hr,colorNeutralForeground1Pressed:ur,colorNeutralForeground1Selected:gr,colorNeutralForeground2:pr,colorNeutralForeground2Hover:fr,colorNeutralForeground2Pressed:vr,colorNeutralForeground2Selected:br,colorNeutralForeground2BrandHover:mr,colorNeutralForeground2BrandPressed:yr,colorNeutralForeground2BrandSelected:kr,colorNeutralForeground3:Br,colorNeutralForeground3Hover:xr,colorNeutralForeground3Pressed:wr,colorNeutralForeground3Selected:Pr,colorNeutralForeground3BrandHover:$r,colorNeutralForeground3BrandPressed:Sr,colorNeutralForeground3BrandSelected:Fr,colorNeutralForeground4:Cr,colorNeutralForegroundDisabled:Nr,colorNeutralForegroundInvertedDisabled:zr,colorBrandForegroundLink:Ar,colorBrandForegroundLinkHover:Ir,colorBrandForegroundLinkPressed:Tr,colorBrandForegroundLinkSelected:Lr,colorNeutralForeground2Link:Or,colorNeutralForeground2LinkHover:Hr,colorNeutralForeground2LinkPressed:Dr,colorNeutralForeground2LinkSelected:Vr,colorCompoundBrandForeground1:Mr,colorCompoundBrandForeground1Hover:Er,colorCompoundBrandForeground1Pressed:Rr,colorBrandForeground1:_r,colorBrandForeground2:jr,colorNeutralForeground1Static:Gr,colorNeutralForegroundStaticInverted:qr,colorNeutralForegroundInverted:Xr,colorNeutralForegroundInvertedHover:Wr,colorNeutralForegroundInvertedPressed:Yr,colorNeutralForegroundInvertedSelected:Ur,colorNeutralForegroundInverted2:Kr,colorNeutralForegroundOnBrand:Qr,colorNeutralForegroundInvertedLink:Jr,colorNeutralForegroundInvertedLinkHover:Zr,colorNeutralForegroundInvertedLinkPressed:en,colorNeutralForegroundInvertedLinkSelected:tn,colorBrandForegroundInverted:on,colorBrandForegroundInvertedHover:rn,colorBrandForegroundInvertedPressed:nn,colorBrandForegroundOnLight:sn,colorBrandForegroundOnLightHover:an,colorBrandForegroundOnLightPressed:ln,colorBrandForegroundOnLightSelected:cn,colorNeutralBackground1:dn,colorNeutralBackground1Hover:hn,colorNeutralBackground1Pressed:un,colorNeutralBackground1Selected:gn,colorNeutralBackground2:pn,colorNeutralBackground2Hover:fn,colorNeutralBackground2Pressed:vn,colorNeutralBackground2Selected:bn,colorNeutralBackground3:mn,colorNeutralBackground3Hover:yn,colorNeutralBackground3Pressed:kn,colorNeutralBackground3Selected:Bn,colorNeutralBackground4:xn,colorNeutralBackground4Hover:wn,colorNeutralBackground4Pressed:Pn,colorNeutralBackground4Selected:$n,colorNeutralBackground5:Sn,colorNeutralBackground5Hover:Fn,colorNeutralBackground5Pressed:Cn,colorNeutralBackground5Selected:Nn,colorNeutralBackground6:zn,colorNeutralBackgroundInverted:An,colorNeutralBackgroundStatic:In,colorSubtleBackground:Tn,colorSubtleBackgroundHover:Ln,colorSubtleBackgroundPressed:On,colorSubtleBackgroundSelected:Hn,colorSubtleBackgroundLightAlphaHover:Dn,colorSubtleBackgroundLightAlphaPressed:Vn,colorSubtleBackgroundLightAlphaSelected:Mn,colorSubtleBackgroundInverted:En,colorSubtleBackgroundInvertedHover:Rn,colorSubtleBackgroundInvertedPressed:_n,colorSubtleBackgroundInvertedSelected:jn,colorTransparentBackground:Gn,colorTransparentBackgroundHover:qn,colorTransparentBackgroundPressed:Xn,colorTransparentBackgroundSelected:Wn,colorNeutralBackgroundDisabled:Yn,colorNeutralBackgroundInvertedDisabled:Un,colorNeutralStencil1:Kn,colorNeutralStencil2:Qn,colorBackgroundOverlay:Jn,colorScrollbarOverlay:Zn,colorBrandBackground:ei,colorBrandBackgroundHover:ti,colorBrandBackgroundPressed:oi,colorBrandBackgroundSelected:ri,colorCompoundBrandBackground:ni,colorCompoundBrandBackgroundHover:ii,colorCompoundBrandBackgroundPressed:si,colorBrandBackgroundStatic:ai,colorBrandBackground2:li,colorBrandBackgroundInverted:ci,colorBrandBackgroundInvertedHover:di,colorBrandBackgroundInvertedPressed:hi,colorBrandBackgroundInvertedSelected:ui,colorNeutralStrokeAccessible:gi,colorNeutralStrokeAccessibleHover:pi,colorNeutralStrokeAccessiblePressed:fi,colorNeutralStrokeAccessibleSelected:vi,colorNeutralStroke1:bi,colorNeutralStroke1Hover:mi,colorNeutralStroke1Pressed:yi,colorNeutralStroke1Selected:ki,colorNeutralStroke2:Bi,colorNeutralStroke3:xi,colorNeutralStrokeOnBrand:wi,colorNeutralStrokeOnBrand2:Pi,colorNeutralStrokeOnBrand2Hover:$i,colorNeutralStrokeOnBrand2Pressed:Si,colorNeutralStrokeOnBrand2Selected:Fi,colorBrandStroke1:Ci,colorBrandStroke2:Ni,colorCompoundBrandStroke:zi,colorCompoundBrandStrokeHover:Ai,colorCompoundBrandStrokePressed:Ii,colorNeutralStrokeDisabled:Ti,colorNeutralStrokeInvertedDisabled:Li,colorTransparentStroke:Oi,colorTransparentStrokeInteractive:Hi,colorTransparentStrokeDisabled:Di,colorStrokeFocus1:Vi,colorStrokeFocus2:Mi,colorNeutralShadowAmbient:Ei,colorNeutralShadowKey:Ri,colorNeutralShadowAmbientLighter:_i,colorNeutralShadowKeyLighter:ji,colorNeutralShadowAmbientDarker:Gi,colorNeutralShadowKeyDarker:qi,colorBrandShadowAmbient:Xi,colorBrandShadowKey:Wi,colorPaletteRedBackground1:Yi,colorPaletteRedBackground2:Ui,colorPaletteRedBackground3:Ki,colorPaletteRedForeground1:Qi,colorPaletteRedForeground2:Ji,colorPaletteRedForeground3:Zi,colorPaletteRedBorderActive:es,colorPaletteRedBorder1:ts,colorPaletteRedBorder2:os,colorPaletteGreenBackground1:rs,colorPaletteGreenBackground2:ns,colorPaletteGreenBackground3:is,colorPaletteGreenForeground1:ss,colorPaletteGreenForeground2:as,colorPaletteGreenForeground3:ls,colorPaletteGreenBorderActive:cs,colorPaletteGreenBorder1:ds,colorPaletteGreenBorder2:hs,colorPaletteDarkOrangeBackground1:us,colorPaletteDarkOrangeBackground2:gs,colorPaletteDarkOrangeBackground3:ps,colorPaletteDarkOrangeForeground1:fs,colorPaletteDarkOrangeForeground2:vs,colorPaletteDarkOrangeForeground3:bs,colorPaletteDarkOrangeBorderActive:ms,colorPaletteDarkOrangeBorder1:ys,colorPaletteDarkOrangeBorder2:ks,colorPaletteYellowBackground1:Bs,colorPaletteYellowBackground2:xs,colorPaletteYellowBackground3:ws,colorPaletteYellowForeground1:Ps,colorPaletteYellowForeground2:$s,colorPaletteYellowForeground3:Ss,colorPaletteYellowBorderActive:Fs,colorPaletteYellowBorder1:Cs,colorPaletteYellowBorder2:Ns,colorPaletteBerryBackground1:zs,colorPaletteBerryBackground2:As,colorPaletteBerryBackground3:Is,colorPaletteBerryForeground1:Ts,colorPaletteBerryForeground2:Ls,colorPaletteBerryForeground3:Os,colorPaletteBerryBorderActive:Hs,colorPaletteBerryBorder1:Ds,colorPaletteBerryBorder2:Vs,colorPaletteLightGreenBackground1:Ms,colorPaletteLightGreenBackground2:Es,colorPaletteLightGreenBackground3:Rs,colorPaletteLightGreenForeground1:_s,colorPaletteLightGreenForeground2:js,colorPaletteLightGreenForeground3:Gs,colorPaletteLightGreenBorderActive:qs,colorPaletteLightGreenBorder1:Xs,colorPaletteLightGreenBorder2:Ws,colorPaletteMarigoldBackground1:Ys,colorPaletteMarigoldBackground2:Us,colorPaletteMarigoldBackground3:Ks,colorPaletteMarigoldForeground1:Qs,colorPaletteMarigoldForeground2:Js,colorPaletteMarigoldForeground3:Zs,colorPaletteMarigoldBorderActive:ea,colorPaletteMarigoldBorder1:ta,colorPaletteMarigoldBorder2:oa,colorPaletteDarkRedBackground2:ra,colorPaletteDarkRedForeground2:na,colorPaletteDarkRedBorderActive:ia,colorPaletteCranberryBackground2:sa,colorPaletteCranberryForeground2:aa,colorPaletteCranberryBorderActive:la,colorPalettePumpkinBackground2:ca,colorPalettePumpkinForeground2:da,colorPalettePumpkinBorderActive:ha,colorPalettePeachBackground2:ua,colorPalettePeachForeground2:ga,colorPalettePeachBorderActive:pa,colorPaletteGoldBackground2:fa,colorPaletteGoldForeground2:va,colorPaletteGoldBorderActive:ba,colorPaletteBrassBackground2:ma,colorPaletteBrassForeground2:ya,colorPaletteBrassBorderActive:ka,colorPaletteBrownBackground2:Ba,colorPaletteBrownForeground2:xa,colorPaletteBrownBorderActive:wa,colorPaletteForestBackground2:Pa,colorPaletteForestForeground2:$a,colorPaletteForestBorderActive:Sa,colorPaletteSeafoamBackground2:Fa,colorPaletteSeafoamForeground2:Ca,colorPaletteSeafoamBorderActive:Na,colorPaletteDarkGreenBackground2:za,colorPaletteDarkGreenForeground2:Aa,colorPaletteDarkGreenBorderActive:Ia,colorPaletteLightTealBackground2:Ta,colorPaletteLightTealForeground2:La,colorPaletteLightTealBorderActive:Oa,colorPaletteTealBackground2:Ha,colorPaletteTealForeground2:Da,colorPaletteTealBorderActive:Va,colorPaletteSteelBackground2:Ma,colorPaletteSteelForeground2:Ea,colorPaletteSteelBorderActive:Ra,colorPaletteBlueBackground2:_a,colorPaletteBlueForeground2:ja,colorPaletteBlueBorderActive:Ga,colorPaletteRoyalBlueBackground2:qa,colorPaletteRoyalBlueForeground2:Xa,colorPaletteRoyalBlueBorderActive:Wa,colorPaletteCornflowerBackground2:Ya,colorPaletteCornflowerForeground2:Ua,colorPaletteCornflowerBorderActive:Ka,colorPaletteNavyBackground2:Qa,colorPaletteNavyForeground2:Ja,colorPaletteNavyBorderActive:Za,colorPaletteLavenderBackground2:el,colorPaletteLavenderForeground2:tl,colorPaletteLavenderBorderActive:ol,colorPalettePurpleBackground2:rl,colorPalettePurpleForeground2:nl,colorPalettePurpleBorderActive:il,colorPaletteGrapeBackground2:sl,colorPaletteGrapeForeground2:al,colorPaletteGrapeBorderActive:ll,colorPaletteLilacBackground2:cl,colorPaletteLilacForeground2:dl,colorPaletteLilacBorderActive:hl,colorPalettePinkBackground2:ul,colorPalettePinkForeground2:gl,colorPalettePinkBorderActive:pl,colorPaletteMagentaBackground2:fl,colorPaletteMagentaForeground2:vl,colorPaletteMagentaBorderActive:bl,colorPalettePlumBackground2:ml,colorPalettePlumForeground2:yl,colorPalettePlumBorderActive:kl,colorPaletteBeigeBackground2:Bl,colorPaletteBeigeForeground2:xl,colorPaletteBeigeBorderActive:wl,colorPaletteMinkBackground2:Pl,colorPaletteMinkForeground2:$l,colorPaletteMinkBorderActive:Sl,colorPalettePlatinumBackground2:Fl,colorPalettePlatinumForeground2:Cl,colorPalettePlatinumBorderActive:Nl,colorPaletteAnchorBackground2:zl,colorPaletteAnchorForeground2:Al,colorPaletteAnchorBorderActive:Il,shadow2:Tl,shadow4:Ll,shadow8:Ol,shadow16:Hl,shadow28:Dl,shadow64:Vl,shadow2Brand:Ml,shadow4Brand:El,shadow8Brand:Rl,shadow16Brand:_l,shadow28Brand:jl,shadow64Brand:Gl});const Xl=I`
|
|
5
|
+
${At("block")}
|
|
6
6
|
|
|
7
|
-
:host{max-width:fit-content}.heading{height:44px;display:grid;position:relative;vertical-align:middle;padding-inline:${
|
|
8
|
-
${
|
|
7
|
+
:host{max-width:fit-content}.heading{height:44px;display:grid;position:relative;vertical-align:middle;padding-inline:${Io} ${Ao};border-radius:${Gt};font-family:${fo};font-size:${Kt};font-weight:${mo};line-height:${so};grid-template-columns:auto auto 1fr auto}.heading-content{height:100%;display:flex;align-items:center}.button{box-sizing:border-box;appearance:none;border:none;outline:none;text-align:start;cursor:pointer;font-family:inherit;height:44px;color:${dr};background:${Gn};line-height:${so};height:auto;padding:0;font-size:inherit;grid-column:auto / span 2;grid-row:1}.button::before{content:'';position:absolute;inset:0px;cursor:pointer;border-radius:${jt}}.icon{display:flex;align-items:center;justify-content:center;pointer-events:none;position:relative;height:100%;padding-right:${zo};grid-column:1 / span 1;grid-row:1}.region{margin:0 ${Io}}::slotted([slot='start']),::slotted([slot='end']){justify-content:center;align-items:center;padding-right:${zo};grid-column:2 / span 1;grid-row:1 / span 1}button:focus-visible::after{content:'';position:absolute;inset:0px;cursor:pointer;border-radius:${jt};outline:none;border:2px solid ${Vi};box-shadow:inset 0 0 0 1px ${Mi}}:host([disabled]) .button{color:${Nr}}:host([disabled]) svg{filter:invert(89%) sepia(0%) saturate(569%) hue-rotate(155deg) brightness(88%) contrast(87%)}:host([expanded]) .region{display:block}:host([expanded]) .default-collapsed-icon,:host([expanded]) ::slotted([slot='collapsed-icon']),:host(:not([expanded])) .default-expanded-icon,:host(:not([expanded])) ::slotted([slot='expanded-icon']),:host([expanded]) ::slotted([slot='end']),::slotted([slot='start']),.region{display:none}:host([expanded]) ::slotted([slot='start']),:host([expanded]) ::slotted([slot='expanded-icon']),:host(:not([expanded])) ::slotted([slot='collapsed-icon']),::slotted([slot='end']){display:flex}.heading{font-size:${Kt};line-height:${so}}:host([size='small']) .heading{font-size:${Ut};line-height:${io}}:host([size='large']) .heading{font-size:${Qt};line-height:${ao}}:host([size='extra-large']) .heading{font-size:${Jt};line-height:${lo}}:host([expand-icon-position='end']) :slotted(span[slot='start']),:host([expand-icon-position='end']) ::slotted(span[slot='end']){grid-column:1 / span 1;grid-row:1}:host([expand-icon-position='end']) ::slotted(span[slot='start']),:host([expand-icon-position='end']) ::slotted(span[slot='end']){grid-column:1 / span 1;grid-row:1}:host([expand-icon-position='end']) .icon{grid-column:4 / span 1;grid-row:1;display:flex;padding-left:10px;padding-right:0}:host([expand-icon-position='end']) .button{grid-column:2 / span 3;grid-row:1}:host([block]){max-width:100%}:host([expand-icon-position='end']) .heading{grid-template-columns:auto auto 28px}:host([expand-icon-position='end']) .icon{grid-column:5 / span 1}:host([block][expand-icon-position='end']) .heading{grid-template-columns:auto 1fr}:host([block][expand-icon-position='end']) .icon{grid-column:5 / span 1}`,Wl=function(e={}){return fe`<div class="heading" part="heading" role="heading" aria-level="${e=>e.headinglevel}"><button class="button" part="button" ${be("expandbutton")} ?disabled="${e=>e.disabled?"true":void 0}" aria-expanded="${e=>e.expanded}" aria-controls="${e=>e.id}-panel" id="${e=>e.id}" @click="${(e,t)=>e.clickHandler(t.event)}"><span class="heading-content" part="heading-content"><slot name="heading"></slot></span></button>${Ue(e)} ${Ye(e)}<span class="icon" part="icon" aria-hidden="true"><slot name="expanded-icon">${qe(e.expandedIcon)}</slot><slot name="collapsed-icon">${qe(e.collapsedIcon)}</slot><span></div><div class="region" part="region" id="${e=>e.id}-panel" role="region" aria-labelledby="${e=>e.id}"><slot></slot></div>`}({collapsedIcon:fe.partial('<svg\n width="20"\n height="20"\n viewBox="0 0 20 20"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n class="default-collapsed-icon"\n>\n <path\n d="M7.73271 4.20694C8.03263 3.92125 8.50737 3.93279 8.79306 4.23271L13.7944 9.48318C14.0703 9.77285 14.0703 10.2281 13.7944 10.5178L8.79306 15.7682C8.50737 16.0681 8.03263 16.0797 7.73271 15.794C7.43279 15.5083 7.42125 15.0336 7.70694 14.7336L12.2155 10.0005L7.70694 5.26729C7.42125 4.96737 7.43279 4.49264 7.73271 4.20694Z"\n fill="#212121"\n />\n</svg>'),expandedIcon:fe.partial('<svg\n width="20"\n height="20"\n viewBox="0 0 20 20"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n class="default-expanded-icon"\n>\n <path\n d="M15.794 7.73271C16.0797 8.03263 16.0681 8.50737 15.7682 8.79306L10.5178 13.7944C10.2281 14.0703 9.77285 14.0703 9.48318 13.7944L4.23271 8.79306C3.93279 8.50737 3.92125 8.03263 4.20694 7.73271C4.49264 7.43279 4.96737 7.42125 5.26729 7.70694L10.0005 12.2155L14.7336 7.70694C15.0336 7.42125 15.5083 7.43279 15.794 7.73271Z"\n fill="#212121"\n />\n</svg>')}),Yl=Vt.compose({name:Ht.prefix+"-accordion-item",template:Wl,styles:Xl}),Ul=/[\(\[\{][^\)\]\}]*[\)\]\}]/g,Kl=/[\0-\u001F\!-/:-@\[-`\{-\u00BF\u0250-\u036F\uD800-\uFFFF]/g,Ql=/^\d+[\d\s]*(:?ext|x|)\s*\d+$/i,Jl=/\s+/g,Zl=/[\u0600-\u06FF\u0750-\u077F\u08A0-\u08FF\u1100-\u11FF\u3130-\u318F\uA960-\uA97F\uAC00-\uD7AF\uD7B0-\uD7FF\u3040-\u309F\u30A0-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uF900-\uFAFF]|[\uD840-\uD869][\uDC00-\uDED6]/;function ec(e,t,o){return e?(e=function(e){return e=(e=(e=(e=e.replace(Ul,"")).replace(Kl,"")).replace(Jl," ")).trim()}(e),Zl.test(e)||!(null==o?void 0:o.allowPhoneInitials)&&Ql.test(e)?"":function(e,t,o){let r="";const n=e.split(" ");return 0!==n.length&&(r+=n[0].charAt(0).toUpperCase()),o||(2===n.length?r+=n[1].charAt(0).toUpperCase():3===n.length&&(r+=n[2].charAt(0).toUpperCase())),t&&r.length>1?r.charAt(1)+r.charAt(0):r}(e,t,null==o?void 0:o.firstInitialOnly)):""}const tc={active:"active",inactive:"inactive"},oc={circular:"circular",square:"square"},rc={ring:"ring",shadow:"shadow",ringShadow:"ring-shadow"},nc={darkRed:"dark-red",cranberry:"cranberry",red:"red",pumpkin:"pumpkin",peach:"peach",marigold:"marigold",gold:"gold",brass:"brass",brown:"brown",forest:"forest",seafoam:"seafoam",darkGreen:"dark-green",lightTeal:"light-teal",teal:"teal",steel:"steel",blue:"blue",royalBlue:"royal-blue",cornflower:"cornflower",navy:"navy",lavender:"lavender",purple:"purple",grape:"grape",lilac:"lilac",pink:"pink",magenta:"magenta",plum:"plum",beige:"beige",mink:"mink",platinum:"platinum",anchor:"anchor"},ic={neutral:"neutral",brand:"brand",colorful:"colorful",...nc},sc={_16:16,_20:20,_24:24,_28:28,_32:32,_36:36,_40:40,_48:48,_56:56,_64:64,_72:72,_96:96,_120:120,_128:128};class ac extends Ge{constructor(){super(...arguments),this.color="neutral"}generateColor(){var e,t;if(this.color)return this.color===ic.colorful?ac.colors[lc(null!==(t=null!==(e=this.colorId)&&void 0!==e?e:this.name)&&void 0!==t?t:"")%ac.colors.length]:this.color}generateInitials(){var e,t;if(!this.name&&!this.initials)return;const o=null!==(e=this.size)&&void 0!==e?e:32;return null!==(t=this.initials)&&void 0!==t?t:ec(this.name,"rtl"===window.getComputedStyle(this).direction,{firstInitialOnly:o<=16})}}ac.colors=Object.values(nc),Xe([Ce],ac.prototype,"name",void 0),Xe([Ce],ac.prototype,"initials",void 0),Xe([Ce({converter:Se})],ac.prototype,"size",void 0),Xe([Ce],ac.prototype,"shape",void 0),Xe([Ce],ac.prototype,"active",void 0),Xe([Ce],ac.prototype,"appearance",void 0),Xe([Ce],ac.prototype,"color",void 0),Xe([Ce({attribute:"color-id"})],ac.prototype,"colorId",void 0);const lc=e=>{let t=0;for(let o=e.length-1;o>=0;o--){const r=e.charCodeAt(o),n=o%8;t^=(r<<n)+(r>>8-n)}return t},cc=fe`<svg width="1em" height="1em" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="default-icon" fill="currentcolor" aria-hidden="true"><path d="M10 2a4 4 0 100 8 4 4 0 000-8zM7 6a3 3 0 116 0 3 3 0 01-6 0zm-2 5a2 2 0 00-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0010 18c1.85 0 3.58-.39 4.87-1.2A4.35 4.35 0 0017 13a2 2 0 00-2-2H5zm-1 2a1 1 0 011-1h10a1 1 0 011 1c0 1.3-.62 2.28-1.67 2.95A8.16 8.16 0 0110 17a8.16 8.16 0 01-4.33-1.05A3.36 3.36 0 014 13z"></path></svg>`;const dc=fe`<template role="img" data-color=${e=>e.generateColor()}><slot>${e=>e.name||e.initials?e.generateInitials():cc}</slot><slot name="badge"></slot></template>`,hc=sr,uc=ar,gc=cr,pc=I`
|
|
8
|
+
${At("inline-flex")} :host{position:relative;align-items:center;justify-content:center;flex-shrink:0;width:32px;height:32px;font-family:${fo};font-weight:${ko};font-size:${Kt};border-radius:${Wt};color:${Br};background-color:${zn}}.default-icon,::slotted(svg){width:20px;height:20px;font-size:20px}::slotted(img){box-sizing:border-box;width:100%;height:100%;border-radius:${Wt}}::slotted([slot='badge']){position:absolute;bottom:0;right:0;box-shadow:0 0 0 ${xo} ${dn}}:host([size='64']) ::slotted([slot='badge']),:host([size='72']) ::slotted([slot='badge']),:host([size='96']) ::slotted([slot='badge']),:host([size='120']) ::slotted([slot='badge']),:host([size='128']) ::slotted([slot='badge']){box-shadow:0 0 0 ${wo} ${dn}}:host([size='16']),:host([size='20']),:host([size='24']){font-size:${Yt};font-weight:${mo}}:host([size='16']){width:16px;height:16px}:host([size='20']){width:20px;height:20px}:host([size='24']){width:24px;height:24px}:host([size='16']) .default-icon,:host([size='16']) ::slotted(svg){width:12px;height:12px;font-size:12px}:host([size='20']) .default-icon,:host([size='24']) .default-icon,:host([size='20']) ::slotted(svg),:host([size='24']) ::slotted(svg){width:16px;height:16px;font-size:16px}:host([size='28']){width:28px;height:28px;font-size:${Ut}}:host([size='36']){width:36px;height:36px}:host([size='40']){width:40px;height:40px}:host([size='48']),:host([size='56']){font-size:${Qt}}:host([size='48']){width:48px;height:48px}:host([size='48']) .default-icon,:host([size='48']) ::slotted(svg){width:24px;height:24px;font-size:24px}:host([size='56']){width:56px;height:56px}:host([size='56']) .default-icon,:host([size='56']) ::slotted(svg){width:28px;height:28px;font-size:28px}:host([size='64']),:host([size='72']),:host([size='96']){font-size:${Jt}}:host([size='64']) .default-icon,:host([size='72']) .default-icon,:host([size='64']) ::slotted(svg),:host([size='72']) ::slotted(svg){width:32px;height:32px;font-size:32px}:host([size='64']){width:64px;height:64px}:host([size='72']){width:72px;height:72px}:host([size='96']){width:96px;height:96px}:host([size='96']) .default-icon,:host([size='120']) .default-icon,:host([size='128']) .default-icon,:host([size='96']) ::slotted(svg),:host([size='120']) ::slotted(svg),:host([size='128']) ::slotted(svg){width:48px;height:48px;font-size:48px}:host([size='120']),:host([size='128']){font-size:${Zt}}:host([size='120']){width:120px;height:120px}:host([size='128']){width:128px;height:128px}:host([shape='square']){border-radius:${Gt}}:host([shape='square'][size='20']),:host([shape='square'][size='24']){border-radius:${jt}}:host([shape='square'][size='56']),:host([shape='square'][size='64']),:host([shape='square'][size='72']){border-radius:${qt}}:host([shape='square'][size='96']),:host([shape='square'][size='120']),:host([shape='square'][size='128']){border-radius:${Xt}}:host([data-color='brand']){color:${qr};background-color:${ai}}:host([data-color='dark-red']){color:${na};background-color:${ra}}:host([data-color='cranberry']){color:${aa};background-color:${sa}}:host([data-color='red']){color:${Ji};background-color:${Ui}}:host([data-color='pumpkin']){color:${da};background-color:${ca}}:host([data-color='peach']){color:${ga};background-color:${ua}}:host([data-color='marigold']){color:${Js};background-color:${Us}}:host([data-color='gold']){color:${va};background-color:${fa}}:host([data-color='brass']){color:${ya};background-color:${ma}}:host([data-color='brown']){color:${xa};background-color:${Ba}}:host([data-color='forest']){color:${$a};background-color:${Pa}}:host([data-color='seafoam']){color:${Ca};background-color:${Fa}}:host([data-color='dark-green']){color:${Aa};background-color:${za}}:host([data-color='light-teal']){color:${La};background-color:${Ta}}:host([data-color='teal']){color:${Da};background-color:${Ha}}:host([data-color='steel']){color:${Ea};background-color:${Ma}}:host([data-color='blue']){color:${ja};background-color:${_a}}:host([data-color='royal-blue']){color:${Xa};background-color:${qa}}:host([data-color='cornflower']){color:${Ua};background-color:${Ya}}:host([data-color='navy']){color:${Ja};background-color:${Qa}}:host([data-color='lavender']){color:${tl};background-color:${el}}:host([data-color='purple']){color:${nl};background-color:${rl}}:host([data-color='grape']){color:${al};background-color:${sl}}:host([data-color='lilac']){color:${dl};background-color:${cl}}:host([data-color='pink']){color:${gl};background-color:${ul}}:host([data-color='magenta']){color:${vl};background-color:${fl}}:host([data-color='plum']){color:${yl};background-color:${ml}}:host([data-color='beige']){color:${xl};background-color:${Bl}}:host([data-color='mink']){color:${$l};background-color:${Pl}}:host([data-color='platinum']){color:${Cl};background-color:${Fl}}:host([data-color='anchor']){color:${Al};background-color:${zl}}:host([active]){transform:perspective(1px);transition-property:transform,opacity;transition-duration:${er},${Uo};transition-delay:${uc},${gc}}:host([active])::before{content:'';position:absolute;top:0;left:0;bottom:0;right:0;border-radius:inherit;transition-property:margin,opacity;transition-duration:${er},${Zo};transition-delay:${uc},${gc}}:host([active])::before{box-shadow:${Ol};border-style:solid;border-color:${ai}}:host([active][appearance='shadow'])::before{border-style:none;border-color:none}:host([active]:not([appearance='shadow']))::before{margin:calc(-2 * ${wo});border-width:${wo}}:host([size='56'][active]:not([appearance='shadow']))::before,:host([size='64'][active]:not([appearance='shadow']))::before{margin:calc(-2 * ${Po});border-width:${Po}}:host([size='72'][active]:not([appearance='shadow']))::before,:host([size='96'][active]:not([appearance='shadow']))::before,:host([size='120'][active]:not([appearance='shadow']))::before,:host([size='128'][active]:not([appearance='shadow']))::before{margin:calc(-2 * ${$o});border-width:${$o}}:host([size='20'][active][appearance])::before,:host([size='24'][active][appearance])::before,:host([size='28'][active][appearance])::before{box-shadow:${Ll}}:host([size='56'][active][appearance])::before,:host([size='64'][active][appearance])::before{box-shadow:${Hl}}:host([size='72'][active][appearance])::before,:host([size='96'][active][appearance])::before,:host([size='120'][active][appearance])::before,:host([size='128'][active][appearance])::before{box-shadow:${Dl}}:host([active][appearance='ring'])::before{box-shadow:none}:host([active='inactive']){opacity:0.8;transform:scale(0.875);transition-property:transform,opacity;transition-duration:${er},${Uo};transition-delay:${hc},${gc}}:host([active='inactive'])::before{margin:0;opacity:0;transition-property:margin,opacity;transition-duration:${er},${Zo};transition-delay:${hc},${gc}}@media screen and (prefers-reduced-motion:reduce){:host([active]){transition-duration:0.01ms}:host([active])::before{transition-duration:0.01ms;transition-delay:0.01ms}}`,fc=ac.compose({name:Ht.prefix+"-avatar",template:dc,styles:pc}),vc={filled:"filled",ghost:"ghost",outline:"outline",tint:"tint"},bc={brand:"brand",danger:"danger",important:"important",informative:"informative",severe:"severe",subtle:"subtle",success:"success",warning:"warning"},mc={circular:"circular",rounded:"rounded",square:"square"},yc={tiny:"tiny",extraSmall:"extra-small",small:"small",medium:"medium",large:"large",extraLarge:"extra-large"};class kc extends Ge{constructor(){super(...arguments),this.appearance=vc.filled,this.color=bc.brand}}function Bc(e={}){return fe` ${Ue(e)}<slot>${qe(e.defaultContent)}</slot>${Ye(e)} `}Xe([Ce],kc.prototype,"appearance",void 0),Xe([Ce],kc.prototype,"color",void 0),Xe([Ce],kc.prototype,"shape",void 0),Xe([Ce],kc.prototype,"size",void 0),Qe(kc,We);const xc=Bc(),wc=Fo,Pc=I.partial`
|
|
9
|
+
${At("inline-flex")} :host {
|
|
9
10
|
position: relative;
|
|
10
11
|
box-sizing: border-box;
|
|
11
12
|
align-items: center;
|
|
12
13
|
justify-content: center;
|
|
13
|
-
font-family: ${
|
|
14
|
-
font-weight: ${
|
|
15
|
-
font-size: ${
|
|
16
|
-
line-height: ${
|
|
14
|
+
font-family: ${fo};
|
|
15
|
+
font-weight: ${ko};
|
|
16
|
+
font-size: ${Ut};
|
|
17
|
+
line-height: ${io};
|
|
17
18
|
min-width: 20px;
|
|
18
19
|
height: 20px;
|
|
19
|
-
padding-inline: calc(${
|
|
20
|
-
border-radius: ${
|
|
21
|
-
border-color: ${
|
|
22
|
-
background-color: ${
|
|
23
|
-
color: ${
|
|
20
|
+
padding-inline: calc(${Co} + ${wc});
|
|
21
|
+
border-radius: ${Wt};
|
|
22
|
+
border-color: ${Oi};
|
|
23
|
+
background-color: ${ei};
|
|
24
|
+
color: ${Qr};
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
::slotted(svg) {
|
|
@@ -35,11 +36,11 @@ import{composedContains as e,composedParent as t}from"@microsoft/fast-element/ut
|
|
|
35
36
|
bottom: 0;
|
|
36
37
|
right: 0;
|
|
37
38
|
border-style: solid;
|
|
38
|
-
border-width: ${
|
|
39
|
+
border-width: ${xo};
|
|
39
40
|
border-color: inherit;
|
|
40
41
|
border-radius: inherit;
|
|
41
42
|
}
|
|
42
|
-
|
|
43
|
+
`,$c=I.partial`
|
|
43
44
|
:host([size='tiny']) {
|
|
44
45
|
width: 6px;
|
|
45
46
|
height: 6px;
|
|
@@ -65,9 +66,9 @@ import{composedContains as e,composedParent as t}from"@microsoft/fast-element/ut
|
|
|
65
66
|
:host([size='small']) {
|
|
66
67
|
min-width: 16px;
|
|
67
68
|
height: 16px;
|
|
68
|
-
font-size: ${
|
|
69
|
-
line-height: ${
|
|
70
|
-
padding-inline: calc(${
|
|
69
|
+
font-size: ${Yt};
|
|
70
|
+
line-height: ${no};
|
|
71
|
+
padding-inline: calc(${Fo} + ${wc});
|
|
71
72
|
}
|
|
72
73
|
:host([size='small']) ::slotted(svg) {
|
|
73
74
|
font-size: 12px;
|
|
@@ -75,9 +76,9 @@ import{composedContains as e,composedParent as t}from"@microsoft/fast-element/ut
|
|
|
75
76
|
:host([size='large']) {
|
|
76
77
|
min-width: 24px;
|
|
77
78
|
height: 24px;
|
|
78
|
-
font-size: ${
|
|
79
|
-
line-height: ${
|
|
80
|
-
padding-inline: calc(${
|
|
79
|
+
font-size: ${Ut};
|
|
80
|
+
line-height: ${io};
|
|
81
|
+
padding-inline: calc(${Co} + ${wc});
|
|
81
82
|
}
|
|
82
83
|
:host([size='large']) ::slotted(svg) {
|
|
83
84
|
font-size: 16px;
|
|
@@ -85,195 +86,202 @@ import{composedContains as e,composedParent as t}from"@microsoft/fast-element/ut
|
|
|
85
86
|
:host([size='extra-large']) {
|
|
86
87
|
min-width: 32px;
|
|
87
88
|
height: 32px;
|
|
88
|
-
font-size: ${
|
|
89
|
-
line-height: ${
|
|
90
|
-
padding-inline: calc(${
|
|
89
|
+
font-size: ${Ut};
|
|
90
|
+
line-height: ${io};
|
|
91
|
+
padding-inline: calc(${No} + ${wc});
|
|
91
92
|
}
|
|
92
93
|
:host([size='extra-large']) ::slotted(svg) {
|
|
93
94
|
font-size: 20px;
|
|
94
95
|
}
|
|
95
|
-
`,
|
|
96
|
+
`,Sc=I.partial`
|
|
96
97
|
:host([color='danger']) {
|
|
97
|
-
background-color: ${
|
|
98
|
-
color: ${
|
|
98
|
+
background-color: ${Ki};
|
|
99
|
+
color: ${Qr};
|
|
99
100
|
}
|
|
100
101
|
|
|
101
102
|
:host([color='important']) {
|
|
102
|
-
background-color: ${
|
|
103
|
-
color: ${
|
|
103
|
+
background-color: ${dr};
|
|
104
|
+
color: ${dn};
|
|
104
105
|
}
|
|
105
106
|
|
|
106
107
|
:host([color='informative']) {
|
|
107
|
-
background-color: ${
|
|
108
|
-
color: ${
|
|
108
|
+
background-color: ${Sn};
|
|
109
|
+
color: ${Br};
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
:host([color='severe']) {
|
|
112
|
-
background-color: ${
|
|
113
|
-
color: ${
|
|
113
|
+
background-color: ${ps};
|
|
114
|
+
color: ${Qr};
|
|
114
115
|
}
|
|
115
116
|
|
|
116
117
|
:host([color='subtle']) {
|
|
117
|
-
background-color: ${
|
|
118
|
-
color: ${
|
|
118
|
+
background-color: ${dn};
|
|
119
|
+
color: ${dr};
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
:host([color='success']) {
|
|
122
|
-
background-color: ${
|
|
123
|
-
color: ${
|
|
123
|
+
background-color: ${is};
|
|
124
|
+
color: ${Qr};
|
|
124
125
|
}
|
|
125
126
|
|
|
126
127
|
:host([color='warning']) {
|
|
127
|
-
background-color: ${
|
|
128
|
-
color: ${
|
|
128
|
+
background-color: ${ws};
|
|
129
|
+
color: ${dr};
|
|
129
130
|
}
|
|
130
|
-
`,
|
|
131
|
+
`,Fc=I.partial`
|
|
131
132
|
:host([appearance='ghost']) {
|
|
132
|
-
color: ${
|
|
133
|
+
color: ${ei};
|
|
133
134
|
background-color: initial;
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
:host([appearance='ghost'][color='danger']) {
|
|
137
|
-
color: ${
|
|
138
|
+
color: ${Zi};
|
|
138
139
|
}
|
|
139
140
|
|
|
140
141
|
:host([appearance='ghost'][color='important']) {
|
|
141
|
-
color: ${
|
|
142
|
+
color: ${dr};
|
|
142
143
|
}
|
|
143
144
|
|
|
144
145
|
:host([appearance='ghost'][color='informative']) {
|
|
145
|
-
color: ${
|
|
146
|
+
color: ${Br};
|
|
146
147
|
}
|
|
147
148
|
|
|
148
149
|
:host([appearance='ghost'][color='severe']) {
|
|
149
|
-
color: ${
|
|
150
|
+
color: ${bs};
|
|
150
151
|
}
|
|
151
152
|
|
|
152
153
|
:host([appearance='ghost'][color='subtle']) {
|
|
153
|
-
color: ${
|
|
154
|
+
color: ${Xr};
|
|
154
155
|
}
|
|
155
156
|
|
|
156
157
|
:host([appearance='ghost'][color='success']) {
|
|
157
|
-
color: ${
|
|
158
|
+
color: ${ls};
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
:host([appearance='ghost'][color='warning']) {
|
|
161
|
-
color: ${
|
|
162
|
+
color: ${$s};
|
|
162
163
|
}
|
|
163
|
-
`,
|
|
164
|
-
:host([shape='square']){border-radius:${
|
|
165
|
-
${
|
|
166
|
-
${
|
|
164
|
+
`,Cc=I`
|
|
165
|
+
:host([shape='square']){border-radius:${_t}}:host([shape='rounded']){border-radius:${Gt}}:host([shape='rounded'][size='tiny']),:host([shape='rounded'][size='extra-small']),:host([shape='rounded'][size='small']){border-radius:${jt}}${$c}
|
|
166
|
+
${Sc}
|
|
167
|
+
${Fc}
|
|
167
168
|
${I.partial`
|
|
168
169
|
:host([appearance='outline']) {
|
|
169
170
|
border-color: currentColor;
|
|
170
|
-
color: ${
|
|
171
|
+
color: ${_r};
|
|
171
172
|
background-color: initial;
|
|
172
173
|
}
|
|
173
174
|
|
|
174
175
|
:host([appearance='outline'][color='danger']) {
|
|
175
|
-
color: ${
|
|
176
|
+
color: ${Zi};
|
|
176
177
|
}
|
|
177
178
|
|
|
178
179
|
:host([appearance='outline'][color='important']) {
|
|
179
|
-
color: ${
|
|
180
|
-
border-color: ${
|
|
180
|
+
color: ${Br};
|
|
181
|
+
border-color: ${gi};
|
|
181
182
|
}
|
|
182
183
|
|
|
183
184
|
:host([appearance='outline'][color='informative']) {
|
|
184
|
-
color: ${
|
|
185
|
-
border-color: ${
|
|
185
|
+
color: ${Br};
|
|
186
|
+
border-color: ${Bi};
|
|
186
187
|
}
|
|
187
188
|
|
|
188
189
|
:host([appearance='outline'][color='severe']) {
|
|
189
|
-
color: ${
|
|
190
|
+
color: ${bs};
|
|
190
191
|
}
|
|
191
192
|
|
|
192
193
|
:host([appearance='outline'][color='subtle']) {
|
|
193
|
-
color: ${
|
|
194
|
+
color: ${qr};
|
|
194
195
|
}
|
|
195
196
|
|
|
196
197
|
:host([appearance='outline'][color='success']) {
|
|
197
|
-
color: ${
|
|
198
|
+
color: ${as};
|
|
198
199
|
}
|
|
199
200
|
|
|
200
201
|
:host([appearance='outline'][color='warning']) {
|
|
201
|
-
color: ${
|
|
202
|
+
color: ${$s};
|
|
202
203
|
}
|
|
203
204
|
`}
|
|
204
205
|
${I.partial`
|
|
205
206
|
:host([appearance='tint']) {
|
|
206
|
-
background-color: ${
|
|
207
|
-
color: ${
|
|
208
|
-
border-color: ${
|
|
207
|
+
background-color: ${li};
|
|
208
|
+
color: ${jr};
|
|
209
|
+
border-color: ${Ni};
|
|
209
210
|
}
|
|
210
211
|
|
|
211
212
|
:host([appearance='tint'][color='danger']) {
|
|
212
|
-
background-color: ${
|
|
213
|
-
color: ${
|
|
214
|
-
border-color: ${
|
|
213
|
+
background-color: ${Yi};
|
|
214
|
+
color: ${Qi};
|
|
215
|
+
border-color: ${ts};
|
|
215
216
|
}
|
|
216
217
|
|
|
217
218
|
:host([appearance='tint'][color='important']) {
|
|
218
|
-
background-color: ${
|
|
219
|
-
color: ${
|
|
220
|
-
border-color: ${
|
|
219
|
+
background-color: ${Br};
|
|
220
|
+
color: ${dn};
|
|
221
|
+
border-color: ${Oi};
|
|
221
222
|
}
|
|
222
223
|
|
|
223
224
|
:host([appearance='tint'][color='informative']) {
|
|
224
|
-
background-color: ${
|
|
225
|
-
color: ${
|
|
226
|
-
border-color: ${
|
|
225
|
+
background-color: ${xn};
|
|
226
|
+
color: ${Br};
|
|
227
|
+
border-color: ${Bi};
|
|
227
228
|
}
|
|
228
229
|
|
|
229
230
|
:host([appearance='tint'][color='severe']) {
|
|
230
|
-
background-color: ${
|
|
231
|
-
color: ${
|
|
232
|
-
border-color: ${
|
|
231
|
+
background-color: ${us};
|
|
232
|
+
color: ${fs};
|
|
233
|
+
border-color: ${ys};
|
|
233
234
|
}
|
|
234
235
|
|
|
235
236
|
:host([appearance='tint'][color='subtle']) {
|
|
236
|
-
background-color: ${
|
|
237
|
-
color: ${
|
|
238
|
-
border-color: ${
|
|
237
|
+
background-color: ${dn};
|
|
238
|
+
color: ${Br};
|
|
239
|
+
border-color: ${Bi};
|
|
239
240
|
}
|
|
240
241
|
|
|
241
242
|
:host([appearance='tint'][color='success']) {
|
|
242
|
-
background-color: ${
|
|
243
|
-
color: ${
|
|
244
|
-
border-color: ${
|
|
243
|
+
background-color: ${rs};
|
|
244
|
+
color: ${ss};
|
|
245
|
+
border-color: ${hs};
|
|
245
246
|
}
|
|
246
247
|
|
|
247
248
|
:host([appearance='tint'][color='warning']) {
|
|
248
|
-
background-color: ${
|
|
249
|
-
color: ${
|
|
250
|
-
border-color: ${
|
|
249
|
+
background-color: ${Bs};
|
|
250
|
+
color: ${$s};
|
|
251
|
+
border-color: ${Cs};
|
|
251
252
|
}
|
|
252
253
|
`}
|
|
253
|
-
${
|
|
254
|
-
`,
|
|
255
|
-
:host([shape='rounded']){border-radius:${
|
|
256
|
-
${
|
|
257
|
-
${
|
|
258
|
-
${
|
|
259
|
-
|
|
260
|
-
:host([dot]),:host([dot][appearance][size]){min-width:auto;width:6px;height:6px;padding:0}`,
|
|
261
|
-
${
|
|
262
|
-
|
|
263
|
-
:host{align-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
to right,${
|
|
269
|
-
)}
|
|
270
|
-
to right,${
|
|
271
|
-
)
|
|
272
|
-
to right,${
|
|
273
|
-
);border-radius:${
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
::slotted(*){font-family:${so};font-size:${Et};line-height:${Qt};font-weight:${lo};text-align:start;display:inline;white-space:normal;overflow:visible;text-overflow:clip;margin:0}:host([nowrap]) ::slotted(*){white-space:nowrap;overflow:hidden}:host([truncate]) ::slotted(*){text-overflow:ellipsis}:host([block]) ::slotted(*){display:block}:host([italic]) ::slotted(*){font-style:italic}:host([underline]) ::slotted(*){text-decoration-line:underline}:host([strikethrough]) ::slotted(*){text-decoration-line:line-through}:host([underline][strikethrough]) ::slotted(*){text-decoration-line:line-through underline}:host([size='100']) ::slotted(*){font-size:${Vt};line-height:${Ut}}:host([size='200']) ::slotted(*){font-size:${Rt};line-height:${Kt}}:host([size='400']) ::slotted(*){font-size:${_t};line-height:${Jt}}:host([size='500']) ::slotted(*){font-size:${jt};line-height:${Zt}}:host([size='600']) ::slotted(*){font-size:${Gt};line-height:${eo}}:host([size='700']) ::slotted(*){font-size:${Xt};line-height:${to}}:host([size='800']) ::slotted(*){font-size:${qt};line-height:${oo}}:host([size='900']) ::slotted(*){font-size:${Wt};line-height:${ro}}:host([size='1000']) ::slotted(*){font-size:${Yt};line-height:${no}}:host([font='monospace']) ::slotted(*){font-family:${io}}:host([font='numeric']) ::slotted(*){font-family:${ao}}:host([weight='medium']) ::slotted(*){font-weight:${co}}:host([weight='semibold']) ::slotted(*){font-weight:${uo}}:host([weight='bold']) ::slotted(*){font-weight:${ho}}:host([align='center']) ::slotted(*){text-align:center}:host([align='end']) ::slotted(*){text-align:end}:host([align='justify']) ::slotted(*){text-align:justify}`,$c=kc.compose({name:Ft.prefix+"-text",template:Nc,styles:Fc}),Cc=Object.keys(Hl),Ac=e=>{for(const t of Cc)Hl[t].withDefault(e[t])};export{Pt as Accordion,Ct as AccordionItem,Tt as AccordionItemExpandIconPosition,At as AccordionItemSize,Gl as Badge,Rl as BadgeAppearance,El as BadgeColor,Zl as BadgeDefinition,_l as BadgeShape,jl as BadgeSize,Jl as BadgeStyles,ql as BadgeTemplate,ec as CounterBadge,tc as CounterBadgeAppearance,oc as CounterBadgeColor,ac as CounterBadgeDefinition,rc as CounterBadgeShape,nc as CounterBadgeSize,ic as CounterBadgeStyles,sc as CounterBadgeTemplate,lc as ProgressBar,pc as ProgressBarDefinition,dc as ProgressBarShape,hc as ProgressBarStyles,gc as ProgressBarTemplate,cc as ProgressBarThickness,uc as ProgressBarValidationState,fc as Spinner,vc as SpinnerAppearance,yc as SpinnerDefinition,mc as SpinnerSize,Bc as SpinnerStyles,bc as SpinnerTemplate,kc as Text,xc as TextAlign,$c as TextDefinition,Sc as TextFont,Pc as TextSize,Fc as TextStyles,Nc as TextTemplate,wc as TextWeight,$t as accordionDefinition,Vl as accordionItemDefinition,Dl as accordionItemStyles,Ml as accordionItemTemplate,Nt as accordionStyles,St as accordionTemplate,Mt as borderRadiusCircular,Ht as borderRadiusLarge,Ot as borderRadiusMedium,Lt as borderRadiusNone,zt as borderRadiusSmall,Dt as borderRadiusXLarge,jn as colorBackgroundOverlay,Xn as colorBrandBackground,Zn as colorBrandBackground2,qn as colorBrandBackgroundHover,es as colorBrandBackgroundInverted,ts as colorBrandBackgroundInvertedHover,os as colorBrandBackgroundInvertedPressed,rs as colorBrandBackgroundInvertedSelected,Wn as colorBrandBackgroundPressed,Yn as colorBrandBackgroundSelected,Jn as colorBrandBackgroundStatic,Lr as colorBrandForeground1,zr as colorBrandForeground2,Wr as colorBrandForegroundInverted,Yr as colorBrandForegroundInvertedHover,Ur as colorBrandForegroundInvertedPressed,Pr as colorBrandForegroundLink,Sr as colorBrandForegroundLinkHover,wr as colorBrandForegroundLinkPressed,xr as colorBrandForegroundLinkSelected,Kr as colorBrandForegroundOnLight,Qr as colorBrandForegroundOnLightHover,Jr as colorBrandForegroundOnLightPressed,Zr as colorBrandForegroundOnLightSelected,Ds as colorBrandShadowAmbient,Ms as colorBrandShadowKey,Bs as colorBrandStroke1,ys as colorBrandStroke2,Un as colorCompoundBrandBackground,Kn as colorCompoundBrandBackgroundHover,Qn as colorCompoundBrandBackgroundPressed,Ar as colorCompoundBrandForeground1,Tr as colorCompoundBrandForeground1Hover,Ir as colorCompoundBrandForeground1Pressed,ks as colorCompoundBrandStroke,Ps as colorCompoundBrandStrokeHover,Ss as colorCompoundBrandStrokePressed,en as colorNeutralBackground1,tn as colorNeutralBackground1Hover,on as colorNeutralBackground1Pressed,rn as colorNeutralBackground1Selected,nn as colorNeutralBackground2,sn as colorNeutralBackground2Hover,an as colorNeutralBackground2Pressed,ln as colorNeutralBackground2Selected,cn as colorNeutralBackground3,dn as colorNeutralBackground3Hover,un as colorNeutralBackground3Pressed,hn as colorNeutralBackground3Selected,gn as colorNeutralBackground4,pn as colorNeutralBackground4Hover,fn as colorNeutralBackground4Pressed,vn as colorNeutralBackground4Selected,mn as colorNeutralBackground5,bn as colorNeutralBackground5Hover,Bn as colorNeutralBackground5Pressed,yn as colorNeutralBackground5Selected,kn as colorNeutralBackground6,Vn as colorNeutralBackgroundDisabled,Pn as colorNeutralBackgroundInverted,Rn as colorNeutralBackgroundInvertedDisabled,Sn as colorNeutralBackgroundStatic,tr as colorNeutralForeground1,or as colorNeutralForeground1Hover,rr as colorNeutralForeground1Pressed,nr as colorNeutralForeground1Selected,Or as colorNeutralForeground1Static,sr as colorNeutralForeground2,cr as colorNeutralForeground2BrandHover,dr as colorNeutralForeground2BrandPressed,ur as colorNeutralForeground2BrandSelected,ir as colorNeutralForeground2Hover,Nr as colorNeutralForeground2Link,Fr as colorNeutralForeground2LinkHover,$r as colorNeutralForeground2LinkPressed,Cr as colorNeutralForeground2LinkSelected,ar as colorNeutralForeground2Pressed,lr as colorNeutralForeground2Selected,hr as colorNeutralForeground3,vr as colorNeutralForeground3BrandHover,mr as colorNeutralForeground3BrandPressed,br as colorNeutralForeground3BrandSelected,gr as colorNeutralForeground3Hover,pr as colorNeutralForeground3Pressed,fr as colorNeutralForeground3Selected,Br as colorNeutralForeground4,yr as colorNeutralForegroundDisabled,Dr as colorNeutralForegroundInverted,Er as colorNeutralForegroundInverted2,kr as colorNeutralForegroundInvertedDisabled,Mr as colorNeutralForegroundInvertedHover,jr as colorNeutralForegroundInvertedLink,Gr as colorNeutralForegroundInvertedLinkHover,Xr as colorNeutralForegroundInvertedLinkPressed,qr as colorNeutralForegroundInvertedLinkSelected,Vr as colorNeutralForegroundInvertedPressed,Rr as colorNeutralForegroundInvertedSelected,_r as colorNeutralForegroundOnBrand,Hr as colorNeutralForegroundStaticInverted,Ts as colorNeutralShadowAmbient,Os as colorNeutralShadowAmbientDarker,Ls as colorNeutralShadowAmbientLighter,Is as colorNeutralShadowKey,Hs as colorNeutralShadowKeyDarker,zs as colorNeutralShadowKeyLighter,En as colorNeutralStencil1,_n as colorNeutralStencil2,ls as colorNeutralStroke1,cs as colorNeutralStroke1Hover,ds as colorNeutralStroke1Pressed,us as colorNeutralStroke1Selected,hs as colorNeutralStroke2,gs as colorNeutralStroke3,ns as colorNeutralStrokeAccessible,ss as colorNeutralStrokeAccessibleHover,is as colorNeutralStrokeAccessiblePressed,as as colorNeutralStrokeAccessibleSelected,ws as colorNeutralStrokeDisabled,xs as colorNeutralStrokeInvertedDisabled,ps as colorNeutralStrokeOnBrand,fs as colorNeutralStrokeOnBrand2,vs as colorNeutralStrokeOnBrand2Hover,ms as colorNeutralStrokeOnBrand2Pressed,bs as colorNeutralStrokeOnBrand2Selected,kl as colorPaletteAnchorBackground2,Sl as colorPaletteAnchorBorderActive,Pl as colorPaletteAnchorForeground2,hl as colorPaletteBeigeBackground2,pl as colorPaletteBeigeBorderActive,gl as colorPaletteBeigeForeground2,ki as colorPaletteBerryBackground1,Pi as colorPaletteBerryBackground2,Si as colorPaletteBerryBackground3,$i as colorPaletteBerryBorder1,Ci as colorPaletteBerryBorder2,Fi as colorPaletteBerryBorderActive,wi as colorPaletteBerryForeground1,xi as colorPaletteBerryForeground2,Ni as colorPaletteBerryForeground3,La as colorPaletteBlueBackground2,Oa as colorPaletteBlueBorderActive,za as colorPaletteBlueForeground2,ca as colorPaletteBrassBackground2,ua as colorPaletteBrassBorderActive,da as colorPaletteBrassForeground2,ha as colorPaletteBrownBackground2,pa as colorPaletteBrownBorderActive,ga as colorPaletteBrownForeground2,Va as colorPaletteCornflowerBackground2,Ea as colorPaletteCornflowerBorderActive,Ra as colorPaletteCornflowerForeground2,Qi as colorPaletteCranberryBackground2,Zi as colorPaletteCranberryBorderActive,Ji as colorPaletteCranberryForeground2,ka as colorPaletteDarkGreenBackground2,Sa as colorPaletteDarkGreenBorderActive,Pa as colorPaletteDarkGreenForeground2,ri as colorPaletteDarkOrangeBackground1,ni as colorPaletteDarkOrangeBackground2,si as colorPaletteDarkOrangeBackground3,di as colorPaletteDarkOrangeBorder1,ui as colorPaletteDarkOrangeBorder2,ci as colorPaletteDarkOrangeBorderActive,ii as colorPaletteDarkOrangeForeground1,ai as colorPaletteDarkOrangeForeground2,li as colorPaletteDarkOrangeForeground3,Yi as colorPaletteDarkRedBackground2,Ki as colorPaletteDarkRedBorderActive,Ui as colorPaletteDarkRedForeground2,fa as colorPaletteForestBackground2,ma as colorPaletteForestBorderActive,va as colorPaletteForestForeground2,ia as colorPaletteGoldBackground2,la as colorPaletteGoldBorderActive,aa as colorPaletteGoldForeground2,Qa as colorPaletteGrapeBackground2,Za as colorPaletteGrapeBorderActive,Ja as colorPaletteGrapeForeground2,Ys as colorPaletteGreenBackground1,Us as colorPaletteGreenBackground2,Ks as colorPaletteGreenBackground3,ti as colorPaletteGreenBorder1,oi as colorPaletteGreenBorder2,ei as colorPaletteGreenBorderActive,Qs as colorPaletteGreenForeground1,Js as colorPaletteGreenForeground2,Zs as colorPaletteGreenForeground3,Xa as colorPaletteLavenderBackground2,Wa as colorPaletteLavenderBorderActive,qa as colorPaletteLavenderForeground2,Ai as colorPaletteLightGreenBackground1,Ti as colorPaletteLightGreenBackground2,Ii as colorPaletteLightGreenBackground3,Di as colorPaletteLightGreenBorder1,Mi as colorPaletteLightGreenBorder2,Hi as colorPaletteLightGreenBorderActive,Li as colorPaletteLightGreenForeground1,zi as colorPaletteLightGreenForeground2,Oi as colorPaletteLightGreenForeground3,wa as colorPaletteLightTealBackground2,Na as colorPaletteLightTealBorderActive,xa as colorPaletteLightTealForeground2,el as colorPaletteLilacBackground2,ol as colorPaletteLilacBorderActive,tl as colorPaletteLilacForeground2,il as colorPaletteMagentaBackground2,ll as colorPaletteMagentaBorderActive,al as colorPaletteMagentaForeground2,Vi as colorPaletteMarigoldBackground1,Ri as colorPaletteMarigoldBackground2,Ei as colorPaletteMarigoldBackground3,qi as colorPaletteMarigoldBorder1,Wi as colorPaletteMarigoldBorder2,Xi as colorPaletteMarigoldBorderActive,_i as colorPaletteMarigoldForeground1,ji as colorPaletteMarigoldForeground2,Gi as colorPaletteMarigoldForeground3,fl as colorPaletteMinkBackground2,ml as colorPaletteMinkBorderActive,vl as colorPaletteMinkForeground2,_a as colorPaletteNavyBackground2,Ga as colorPaletteNavyBorderActive,ja as colorPaletteNavyForeground2,ra as colorPalettePeachBackground2,sa as colorPalettePeachBorderActive,na as colorPalettePeachForeground2,rl as colorPalettePinkBackground2,sl as colorPalettePinkBorderActive,nl as colorPalettePinkForeground2,bl as colorPalettePlatinumBackground2,yl as colorPalettePlatinumBorderActive,Bl as colorPalettePlatinumForeground2,cl as colorPalettePlumBackground2,ul as colorPalettePlumBorderActive,dl as colorPalettePlumForeground2,ea as colorPalettePumpkinBackground2,oa as colorPalettePumpkinBorderActive,ta as colorPalettePumpkinForeground2,Ya as colorPalettePurpleBackground2,Ka as colorPalettePurpleBorderActive,Ua as colorPalettePurpleForeground2,Vs as colorPaletteRedBackground1,Rs as colorPaletteRedBackground2,Es as colorPaletteRedBackground3,qs as colorPaletteRedBorder1,Ws as colorPaletteRedBorder2,Xs as colorPaletteRedBorderActive,_s as colorPaletteRedForeground1,js as colorPaletteRedForeground2,Gs as colorPaletteRedForeground3,Ha as colorPaletteRoyalBlueBackground2,Ma as colorPaletteRoyalBlueBorderActive,Da as colorPaletteRoyalBlueForeground2,ba as colorPaletteSeafoamBackground2,ya as colorPaletteSeafoamBorderActive,Ba as colorPaletteSeafoamForeground2,Aa as colorPaletteSteelBackground2,Ia as colorPaletteSteelBorderActive,Ta as colorPaletteSteelForeground2,Fa as colorPaletteTealBackground2,Ca as colorPaletteTealBorderActive,$a as colorPaletteTealForeground2,hi as colorPaletteYellowBackground1,gi as colorPaletteYellowBackground2,pi as colorPaletteYellowBackground3,Bi as colorPaletteYellowBorder1,yi as colorPaletteYellowBorder2,bi as colorPaletteYellowBorderActive,fi as colorPaletteYellowForeground1,vi as colorPaletteYellowForeground2,mi as colorPaletteYellowForeground3,Gn as colorScrollbarOverlay,Cs as colorStrokeFocus1,As as colorStrokeFocus2,wn as colorSubtleBackground,xn as colorSubtleBackgroundHover,Tn as colorSubtleBackgroundInverted,In as colorSubtleBackgroundInvertedHover,Ln as colorSubtleBackgroundInvertedPressed,zn as colorSubtleBackgroundInvertedSelected,$n as colorSubtleBackgroundLightAlphaHover,Cn as colorSubtleBackgroundLightAlphaPressed,An as colorSubtleBackgroundLightAlphaSelected,Nn as colorSubtleBackgroundPressed,Fn as colorSubtleBackgroundSelected,On as colorTransparentBackground,Hn as colorTransparentBackgroundHover,Dn as colorTransparentBackgroundPressed,Mn as colorTransparentBackgroundSelected,Ns as colorTransparentStroke,$s as colorTransparentStrokeDisabled,Fs as colorTransparentStrokeInteractive,qo as curveAccelerateMax,Wo as curveAccelerateMid,Yo as curveAccelerateMin,Uo as curveDecelerateMax,Ko as curveDecelerateMid,Qo as curveDecelerateMin,Zo as curveEasyEase,Jo as curveEasyEaseMax,er as curveLinear,Eo as durationFast,Ro as durationFaster,_o as durationNormal,jo as durationSlow,Go as durationSlower,Vo as durationUltraFast,Xo as durationUltraSlow,so as fontFamilyBase,io as fontFamilyMonospace,ao as fontFamilyNumeric,Vt as fontSizeBase100,Rt as fontSizeBase200,Et as fontSizeBase300,_t as fontSizeBase400,jt as fontSizeBase500,Gt as fontSizeBase600,Yt as fontSizeHero1000,Xt as fontSizeHero700,qt as fontSizeHero800,Wt as fontSizeHero900,ho as fontWeightBold,co as fontWeightMedium,lo as fontWeightRegular,uo as fontWeightSemibold,Ut as lineHeightBase100,Kt as lineHeightBase200,Qt as lineHeightBase300,Jt as lineHeightBase400,Zt as lineHeightBase500,eo as lineHeightBase600,no as lineHeightHero1000,to as lineHeightHero700,oo as lineHeightHero800,ro as lineHeightHero900,Ac as setTheme,Fl as shadow16,Ll as shadow16Brand,wl as shadow2,$l as shadow28,zl as shadow28Brand,Al as shadow2Brand,xl as shadow4,Tl as shadow4Brand,Cl as shadow64,Ol as shadow64Brand,Nl as shadow8,Il as shadow8Brand,wo as spacingHorizontalL,So as spacingHorizontalM,Po as spacingHorizontalMNudge,mo as spacingHorizontalNone,ko as spacingHorizontalS,yo as spacingHorizontalSNudge,xo as spacingHorizontalXL,Bo as spacingHorizontalXS,No as spacingHorizontalXXL,bo as spacingHorizontalXXS,Fo as spacingHorizontalXXXL,Oo as spacingVerticalL,zo as spacingVerticalM,Lo as spacingVerticalMNudge,$o as spacingVerticalNone,Io as spacingVerticalS,To as spacingVerticalSNudge,Ho as spacingVerticalXL,Ao as spacingVerticalXS,Do as spacingVerticalXXL,Co as spacingVerticalXXS,Mo as spacingVerticalXXXL,po as strokeWidthThick,fo as strokeWidthThicker,vo as strokeWidthThickest,go as strokeWidthThin};
|
|
254
|
+
${Pc}
|
|
255
|
+
`,Nc=kc.compose({name:Ht.prefix+"-badge",template:xc,styles:Cc});class zc extends Ge{constructor(){super(...arguments),this.count=0,this.overflowCount=99,this.showZero=!1,this.dot=!1}countChanged(){this.setCount()}overflowCountChanged(){this.setCount()}setCount(){var e;const t=null!==(e=this.count)&&void 0!==e?e:0;if((0!==t||this.showZero)&&!this.dot)return t>this.overflowCount?this.overflowCount+"+":""+t}}Xe([Ce],zc.prototype,"appearance",void 0),Xe([Ce],zc.prototype,"color",void 0),Xe([Ce],zc.prototype,"shape",void 0),Xe([Ce],zc.prototype,"size",void 0),Xe([Ce({converter:Se})],zc.prototype,"count",void 0),Xe([Ce({attribute:"overflow-count",converter:Se})],zc.prototype,"overflowCount",void 0),Xe([Ce({attribute:"show-zero",mode:"boolean"})],zc.prototype,"showZero",void 0),Xe([Ce({mode:"boolean"})],zc.prototype,"dot",void 0),Qe(zc,We);const Ac={filled:"filled",ghost:"ghost"},Ic={brand:"brand",danger:"danger",important:"important",informative:"informative",severe:"severe",subtle:"subtle",success:"success",warning:"warning"},Tc={circular:"circular",rounded:"rounded"},Lc={tiny:"tiny",extraSmall:"extra-small",small:"small",medium:"medium",large:"large",extraLarge:"extra-large"};const Oc=Bc({defaultContent:fe`${e=>e.setCount()}`}),Hc=I`
|
|
256
|
+
:host([shape='rounded']){border-radius:${Gt}}:host([shape='rounded'][size='tiny']),:host([shape='rounded'][size='extra-small']),:host([shape='rounded'][size='small']){border-radius:${jt}}${$c}
|
|
257
|
+
${Sc}
|
|
258
|
+
${Fc}
|
|
259
|
+
${Pc}
|
|
260
|
+
|
|
261
|
+
:host([dot]),:host([dot][appearance][size]){min-width:auto;width:6px;height:6px;padding:0}`,Dc=zc.compose({name:Ht.prefix+"-counter-badge",template:Oc,styles:Hc});class Vc extends Pt{}Xe([Ce({attribute:"align-content"})],Vc.prototype,"alignContent",void 0),Xe([Ce],Vc.prototype,"appearance",void 0),Xe([Ce({mode:"boolean"})],Vc.prototype,"inset",void 0);const Mc={center:"center",start:"start",end:"end"},Ec={strong:"strong",brand:"brand",subtle:"subtle",default:"default"},Rc=fe`<template role="${e=>e.role}" aria-orientation="${e=>e.orientation}"><slot></slot></template>`,_c=I`
|
|
262
|
+
${At("flex")}
|
|
263
|
+
|
|
264
|
+
:host::after,:host::before{align-self:center;background:${Bi};box-sizing:border-box;content:'';display:flex;flex-grow:1;height:${xo}}:host([inset]){padding:0 12px}:host ::slotted(*){color:${pr};font-family:${fo};font-size:${Ut};font-weight:${mo};margin:0;padding:0 12px}:host([align-content='start'])::before,:host([align-content='end'])::after{flex-basis:12px;flex-grow:0;flex-shrink:0}:host([orientation='vertical']){height:100%;min-height:84px}:host([orientation='vertical']):empty{min-height:20px}:host([orientation='vertical']){flex-direction:column;align-items:center}:host([orientation='vertical'][inset])::before{margin-top:12px}:host([orientation='vertical'][inset])::after{margin-bottom:12px}:host([orientation='vertical']):empty::before,:host([orientation='vertical']):empty::after{height:10px;min-height:10px;flex-grow:0}:host([orientation='vertical'])::before,:host([orientation='vertical'])::after{width:${xo};min-height:20px;height:100%}:host([orientation='vertical']) ::slotted(*){display:flex;flex-direction:column;padding:12px 0;line-height:20px}:host([orientation='vertical'][align-content='start'])::before{min-height:8px}:host([orientation='vertical'][align-content='end'])::after{min-height:8px}:host([appearance='strong'])::before,:host([appearance='strong'])::after{background:${bi}}:host([appearance='strong']) ::slotted(*){color:${dr}}:host([appearance='brand'])::before,:host([appearance='brand'])::after{background:${Ci}}:host([appearance='brand']) ::slotted(*){color:${_r}}:host([appearance='subtle'])::before,:host([appearance='subtle'])::after{background:${xi}}:host([appearance='subtle']) ::slotted(*){color:${Br}}`,jc=Vc.compose({name:Ht.prefix+"-divider",template:Rc,styles:_c});class Gc extends Ge{}Xe([Ce({mode:"boolean"})],Gc.prototype,"block",void 0),Xe([Ce({mode:"boolean"})],Gc.prototype,"bordered",void 0),Xe([Ce({mode:"boolean"})],Gc.prototype,"shadow",void 0),Xe([Ce],Gc.prototype,"fit",void 0),Xe([Ce],Gc.prototype,"shape",void 0);const qc={none:"none",center:"center",contain:"contain",cover:"cover",default:"default"},Xc={circular:"circular",rounded:"rounded",square:"square"},Wc=fe`<slot></slot>`,Yc=I`
|
|
265
|
+
:host ::slotted(img){box-sizing:border-box;min-height:8px;min-width:8px;display:inline-block}:host([block]) ::slotted(img){width:100%;height:auto}:host([bordered]) ::slotted(img){border:${xo} solid ${Bi}}:host([fit='none']) ::slotted(img){object-fit:none;object-position:top left;height:100%;width:100%}:host([fit='center']) ::slotted(img){object-fit:none;object-position:center;height:100%;width:100%}:host([fit='contain']) ::slotted(img){object-fit:contain;object-position:center;height:100%;width:100%}:host([fit='cover']) ::slotted(img){object-fit:cover;object-position:center;height:100%;width:100%}:host([shadow]) ::slotted(img){box-shadow:${Ll}}:host([shape='circular']) ::slotted(img){border-radius:${Wt}}`,Uc=Gc.compose({name:Ht.prefix+"-image",template:Wc,styles:Yc});class Kc extends Ft{}Xe([Ce],Kc.prototype,"thickness",void 0),Xe([Ce],Kc.prototype,"shape",void 0),Xe([Ce({attribute:"validation-state"})],Kc.prototype,"validationState",void 0);const Qc={medium:"medium",large:"large"},Jc={rounded:"rounded",square:"square"},Zc={success:"success",warning:"warning",error:"error"},ed=I`
|
|
266
|
+
${At("flex")}
|
|
267
|
+
|
|
268
|
+
:host{align-items:center;height:2px;overflow-x:hidden;border-radius:${Gt}}:host([thickness='large']),:host([thickness='large']) .progress,:host([thickness='large']) .determinate{height:4px}:host([shape='square']),:host([shape='square']) .progress,:host([shape='square']) .determinate{border-radius:0}:host([validation-state='error']) .determinate{background-color:${Ki}}:host([validation-state='error']) .indeterminate-indicator-1,:host([validation-state='error']) .indeterminate-indicator-2{background:linear-gradient(
|
|
269
|
+
to right,${Ui} 0%,${Ki} 50%,${Ui}
|
|
270
|
+
)}:host([validation-state='warning']) .determinate{background-color:${ps}}:host([validation-state='warning']) .indeterminate-indicator-1,:host([validation-state='warning']) .indeterminate-indicator-2{background:linear-gradient(
|
|
271
|
+
to right,${gs} 0%,${ps} 50%,${gs}
|
|
272
|
+
)}:host([validation-state='success']) .determinate{background-color:${is}}:host([validation-state='success']) .indeterminate-indicator-1,:host([validation-state='success']) .indeterminate-indicator-2{background:linear-gradient(
|
|
273
|
+
to right,${ns} 0%,${is} 50%,${ns}
|
|
274
|
+
)}.progress{background-color:${zn};border-radius:${Gt};width:100%;height:2px;display:flex;align-items:center;position:relative}.determinate{background-color:${ni};border-radius:${Gt};height:2px;transition:all 0.2s ease-in-out;display:flex}.indeterminate-indicator-1{position:absolute;opacity:0;height:100%;background:linear-gradient(
|
|
275
|
+
to right,${li} 0%,${ni} 50%,${li}
|
|
276
|
+
);border-radius:${Gt};animation-timing-function:cubic-bezier(0.4,0,0.6,1);width:40%;animation:indeterminate-1 3s infinite}.indeterminate-indicator-2{position:absolute;opacity:0;height:100%;background:linear-gradient(
|
|
277
|
+
to right,${li} 0%,${ni} 50%,${li}
|
|
278
|
+
);border-radius:${Gt};animation-timing-function:cubic-bezier(0.4,0,0.6,1);width:60%;animation:indeterminate-2 3s infinite}@keyframes indeterminate-1{0%{opacity:1;transform:translateX(-100%)}70%{opacity:1;transform:translateX(300%)}70.01%{opacity:0}100%{opacity:0;transform:translateX(300%)}}@keyframes indeterminate-2{0%{opacity:0;transform:translateX(-150%)}29.99%{opacity:0}30%{opacity:1;transform:translateX(-150%)}100%{transform:translateX(166.66%);opacity:1}}`,td=function(e={}){return fe`<template role="progressbar" aria-valuenow="${e=>e.value}" aria-valuemin="${e=>e.min}" aria-valuemax="${e=>e.max}">${me(e=>"number"==typeof e.value,fe`<div class="progress" part="progress" slot="determinate"><div class="determinate" part="determinate" style="width: ${e=>e.percentComplete}%"></div></div>`)} ${me(e=>"number"!=typeof e.value,fe`<div class="progress" part="progress" slot="indeterminate"><slot name="indeterminate">${qe(e.indeterminateIndicator1)} ${qe(e.indeterminateIndicator2)}</slot></div>`)}</template>`}({indeterminateIndicator1:'<span class="indeterminate-indicator-1" part="indeterminate-indicator-1></span>',indeterminateIndicator2:'<span class="indeterminate-indicator-2" part="indeterminate-indicator-2"></span>'}),od=Kc.compose({name:Ht.prefix+"-progress-bar",template:td,styles:ed});class rd extends St{}Xe([Ce],rd.prototype,"size",void 0),Xe([Ce],rd.prototype,"appearance",void 0);const nd={primary:"primary",inverted:"inverted"},id={tiny:"tiny",extraSmall:"extra-small",small:"small",medium:"medium",large:"large",extraLarge:"extra-large",huge:"huge"},sd=function(e={}){return fe`<template role="progressbar" aria-valuenow="${e=>e.value}" aria-valuemin="${e=>e.min}" aria-valuemax="${e=>e.max}">${me(e=>"number"==typeof e.value,fe`<svg class="progress" part="progress" viewBox="0 0 16 16" slot="determinate"><circle class="background" part="background" cx="8px" cy="8px" r="7px"></circle><circle class="determinate" part="determinate" style="stroke-dasharray: ${e=>44*e.percentComplete/100}px ${44}px" cx="8px" cy="8px" r="7px"></circle></svg>`)} ${me(e=>"number"!=typeof e.value,fe`<slot name="indeterminate">${qe(e.indeterminateIndicator)}</slot>`)}</template>`}({indeterminateIndicator:'\n <svg class="progress" part="progress" viewBox="0 0 16 16">\n <circle\n class="background"\n part="background"\n cx="8px"\n cy="8px"\n r="7px"\n ></circle>\n <circle\n class="indeterminate-indicator-1"\n part="indeterminate-indicator-1"\n cx="8px"\n cy="8px"\n r="7px"\n ></circle>\n </svg>\n '}),ad=I`
|
|
279
|
+
${At("flex")}
|
|
280
|
+
|
|
281
|
+
:host{display:flex;align-items:center;height:32px;width:32px}:host([size='tiny']){height:20px;width:20px}:host([size='extra-small']){height:24px;width:24px}:host([size='small']){height:28px;width:28px}:host([size='large']){height:36px;width:36px}:host([size='extra-large']){height:40px;width:40px}:host([size='huge']){height:44px;width:44px}.progress{height:100%;width:100%}.background{fill:none;stroke:${Ni};stroke-width:1.5px}:host([appearance='inverted']) .background{stroke:rgba(255,255,255,0.2)}.determinate{stroke:${Ci};fill:none;stroke-width:1.5px;stroke-linecap:round;transform-origin:50% 50%;transform:rotate(-90deg);transition:all 0.2s ease-in-out}:host([appearance='inverted']) .determinite{stroke:${Pi}}.indeterminate-indicator-1{stroke:${Ci};fill:none;stroke-width:1.5px;stroke-linecap:round;transform-origin:50% 50%;transform:rotate(-90deg);transition:all 0.2s ease-in-out;animation:spin-infinite 3s cubic-bezier(0.53,0.21,0.29,0.67) infinite}:host([appearance='inverted']) .indeterminate-indicator-1{stroke:${Pi}}@keyframes spin-infinite{0%{stroke-dasharray:0.01px 43.97px;transform:rotate(0deg)}50%{stroke-dasharray:21.99px 21.99px;transform:rotate(450deg)}100%{stroke-dasharray:0.01px 43.97px;transform:rotate(1080deg)}}`,ld=rd.compose({name:Ht.prefix+"-spinner",template:sd,styles:ad});class cd extends zt{}Xe([Ce({attribute:"label-position"})],cd.prototype,"labelPosition",void 0);const dd={above:"above",after:"after",before:"before"},hd=function(e={}){return fe`<template role="switch" aria-checked="${e=>e.checked}" aria-disabled="${e=>e.disabled}" aria-readonly="${e=>e.readOnly}" tabindex="${e=>e.disabled?null:0}" @keypress="${(e,t)=>e.keypressHandler(t.event)}" @click="${(e,t)=>e.clickHandler(t.event)}"><label part="label" class="${e=>e.defaultSlottedNodes&&e.defaultSlottedNodes.length?"label":"label label__hidden"}"><slot ${xe("defaultSlottedNodes")}></slot></label><div part="switch" class="switch"><slot name="switch">${qe(e.switch)}</slot></div></template>`}({switch:'<span class="checked-indicator" part="checked-indicator"></span>'}),ud=I`
|
|
282
|
+
${At("inline-flex")}
|
|
283
|
+
|
|
284
|
+
:host{align-items:center;flex-direction:row-reverse;outline:none;user-select:none}:host([label-position='before']){flex-direction:row}:host([label-position='above']){flex-direction:column;align-items:flex-start}:host([disabled]) .label,:host([readonly]) .label,:host([readonly]) .switch,:host([disabled]) .switch{cursor:not-allowed}.label{position:relative;color:${dr};line-height:${so};font-size:${Kt};font-weight:${mo};font-family:${fo};padding:${Mo} ${Co};cursor:pointer}.label__hidden{display:none}.switch{display:flex;align-items:center;padding:0 ${Fo};box-sizing:border-box;width:40px;height:20px;background-color:${Gn};border:1px solid ${gi};border-radius:${Wt};outline:none;cursor:pointer;margin:${Ro} ${zo}}:host(:hover) .switch{background:none;border-color:${pi}}:host(:active) .switch{border-color:${fi}}:host([disabled]) .switch,:host([readonly]) .switch{border:1px solid ${Ti};background-color:none;pointer:default}:host([aria-checked='true']) .switch{background:${ni}}:host([aria-checked='true']:hover) .switch{background:${ii};border-color:${ii}}:host([aria-checked='true']:active) .switch{background:${si};border-color:${si}}:host([aria-checked='true'][disabled]) .switch{background:${Yn};border-color:${Ti}}.checked-indicator{height:14px;width:14px;border-radius:50%;background-color:${Br};transition-duration:${Qo};transition-timing-function:${lr};transition-property:transform}:host([aria-checked='true']) .checked-indicator{background-color:${Xr};transform:translateX(20px)}:host([aria-checked='true']:hover) .checked-indicator{background:${Wr}}:host([aria-checked='true']:active) .checked-indicator{background:${Yr}}:host(:hover) .checked-indicator{background-color:${xr}}:host(:active) .checked-indicator{background-color:${wr}}:host([disabled]) .checked-indicator,:host([readonly]) .checked-indicator{background:${Nr}}:host([aria-checked='true'][disabled]) .checked-indicator{background:${Nr}}`,gd=cd.compose({name:Ht.prefix+"-switch",template:hd,styles:ud});class pd extends Ge{constructor(){super(...arguments),this.nowrap=!1,this.truncate=!1,this.italic=!1,this.underline=!1,this.strikethrough=!1,this.block=!1}}Xe([Ce({mode:"boolean"})],pd.prototype,"nowrap",void 0),Xe([Ce({mode:"boolean"})],pd.prototype,"truncate",void 0),Xe([Ce({mode:"boolean"})],pd.prototype,"italic",void 0),Xe([Ce({mode:"boolean"})],pd.prototype,"underline",void 0),Xe([Ce({mode:"boolean"})],pd.prototype,"strikethrough",void 0),Xe([Ce({mode:"boolean"})],pd.prototype,"block",void 0),Xe([Ce],pd.prototype,"size",void 0),Xe([Ce],pd.prototype,"font",void 0),Xe([Ce],pd.prototype,"weight",void 0),Xe([Ce],pd.prototype,"align",void 0);const fd={_100:"100",_200:"200",_300:"300",_400:"400",_500:"500",_600:"600",_700:"700",_800:"800",_900:"900",_1000:"1000"},vd={base:"base",numeric:"numeric",monospace:"monospace"},bd={medium:"medium",regular:"regular",semibold:"semibold",bold:"bold"},md={start:"start",end:"end",center:"center",justify:"justify"},yd=fe`<slot></slot>`,kd=I`
|
|
285
|
+
${At("inline")}
|
|
286
|
+
|
|
287
|
+
::slotted(*){font-family:${fo};font-size:${Kt};line-height:${so};font-weight:${mo};text-align:start;display:inline;white-space:normal;overflow:visible;text-overflow:clip;margin:0}:host([nowrap]) ::slotted(*){white-space:nowrap;overflow:hidden}:host([truncate]) ::slotted(*){text-overflow:ellipsis}:host([block]) ::slotted(*){display:block}:host([italic]) ::slotted(*){font-style:italic}:host([underline]) ::slotted(*){text-decoration-line:underline}:host([strikethrough]) ::slotted(*){text-decoration-line:line-through}:host([underline][strikethrough]) ::slotted(*){text-decoration-line:line-through underline}:host([size='100']) ::slotted(*){font-size:${Yt};line-height:${no}}:host([size='200']) ::slotted(*){font-size:${Ut};line-height:${io}}:host([size='400']) ::slotted(*){font-size:${Qt};line-height:${ao}}:host([size='500']) ::slotted(*){font-size:${Jt};line-height:${lo}}:host([size='600']) ::slotted(*){font-size:${Zt};line-height:${co}}:host([size='700']) ::slotted(*){font-size:${eo};line-height:${ho}}:host([size='800']) ::slotted(*){font-size:${to};line-height:${uo}}:host([size='900']) ::slotted(*){font-size:${oo};line-height:${go}}:host([size='1000']) ::slotted(*){font-size:${ro};line-height:${po}}:host([font='monospace']) ::slotted(*){font-family:${vo}}:host([font='numeric']) ::slotted(*){font-family:${bo}}:host([weight='medium']) ::slotted(*){font-weight:${yo}}:host([weight='semibold']) ::slotted(*){font-weight:${ko}}:host([weight='bold']) ::slotted(*){font-weight:${Bo}}:host([align='center']) ::slotted(*){text-align:center}:host([align='end']) ::slotted(*){text-align:end}:host([align='justify']) ::slotted(*){text-align:justify}`,Bd=pd.compose({name:Ht.prefix+"-text",template:yd,styles:kd}),xd=Object.keys(ql),wd=e=>{for(const t of xd)ql[t].withDefault(e[t])};export{It as Accordion,Vt as AccordionItem,Et as AccordionItemExpandIconPosition,Mt as AccordionItemSize,ac as Avatar,tc as AvatarActive,rc as AvatarAppearance,ic as AvatarColor,fc as AvatarDefinition,nc as AvatarNamedColor,oc as AvatarShape,sc as AvatarSize,pc as AvatarStyles,dc as AvatarTemplate,kc as Badge,vc as BadgeAppearance,bc as BadgeColor,Nc as BadgeDefinition,mc as BadgeShape,yc as BadgeSize,Cc as BadgeStyles,xc as BadgeTemplate,zc as CounterBadge,Ac as CounterBadgeAppearance,Ic as CounterBadgeColor,Dc as CounterBadgeDefinition,Tc as CounterBadgeShape,Lc as CounterBadgeSize,Hc as CounterBadgeStyles,Oc as CounterBadgeTemplate,Vc as Divider,Mc as DividerAlignContent,Ec as DividerAppearance,jc as DividerDefinition,wt as DividerOrientation,xt as DividerRole,_c as DividerStyles,Rc as DividerTemplate,Gc as Image,Uc as ImageDefinition,qc as ImageFit,Xc as ImageShape,Yc as ImageStyles,Wc as ImageTemplate,Kc as ProgressBar,od as ProgressBarDefinition,Jc as ProgressBarShape,ed as ProgressBarStyles,td as ProgressBarTemplate,Qc as ProgressBarThickness,Zc as ProgressBarValidationState,rd as Spinner,nd as SpinnerAppearance,ld as SpinnerDefinition,id as SpinnerSize,ad as SpinnerStyles,sd as SpinnerTemplate,cd as Switch,dd as SwitchLabelPosition,pd as Text,md as TextAlign,Bd as TextDefinition,vd as TextFont,fd as TextSize,kd as TextStyles,yd as TextTemplate,bd as TextWeight,Dt as accordionDefinition,Yl as accordionItemDefinition,Xl as accordionItemStyles,Wl as accordionItemTemplate,Ot as accordionStyles,Tt as accordionTemplate,Wt as borderRadiusCircular,qt as borderRadiusLarge,Gt as borderRadiusMedium,_t as borderRadiusNone,jt as borderRadiusSmall,Xt as borderRadiusXLarge,Jn as colorBackgroundOverlay,ei as colorBrandBackground,li as colorBrandBackground2,ti as colorBrandBackgroundHover,ci as colorBrandBackgroundInverted,di as colorBrandBackgroundInvertedHover,hi as colorBrandBackgroundInvertedPressed,ui as colorBrandBackgroundInvertedSelected,oi as colorBrandBackgroundPressed,ri as colorBrandBackgroundSelected,ai as colorBrandBackgroundStatic,_r as colorBrandForeground1,jr as colorBrandForeground2,on as colorBrandForegroundInverted,rn as colorBrandForegroundInvertedHover,nn as colorBrandForegroundInvertedPressed,Ar as colorBrandForegroundLink,Ir as colorBrandForegroundLinkHover,Tr as colorBrandForegroundLinkPressed,Lr as colorBrandForegroundLinkSelected,sn as colorBrandForegroundOnLight,an as colorBrandForegroundOnLightHover,ln as colorBrandForegroundOnLightPressed,cn as colorBrandForegroundOnLightSelected,Xi as colorBrandShadowAmbient,Wi as colorBrandShadowKey,Ci as colorBrandStroke1,Ni as colorBrandStroke2,ni as colorCompoundBrandBackground,ii as colorCompoundBrandBackgroundHover,si as colorCompoundBrandBackgroundPressed,Mr as colorCompoundBrandForeground1,Er as colorCompoundBrandForeground1Hover,Rr as colorCompoundBrandForeground1Pressed,zi as colorCompoundBrandStroke,Ai as colorCompoundBrandStrokeHover,Ii as colorCompoundBrandStrokePressed,dn as colorNeutralBackground1,hn as colorNeutralBackground1Hover,un as colorNeutralBackground1Pressed,gn as colorNeutralBackground1Selected,pn as colorNeutralBackground2,fn as colorNeutralBackground2Hover,vn as colorNeutralBackground2Pressed,bn as colorNeutralBackground2Selected,mn as colorNeutralBackground3,yn as colorNeutralBackground3Hover,kn as colorNeutralBackground3Pressed,Bn as colorNeutralBackground3Selected,xn as colorNeutralBackground4,wn as colorNeutralBackground4Hover,Pn as colorNeutralBackground4Pressed,$n as colorNeutralBackground4Selected,Sn as colorNeutralBackground5,Fn as colorNeutralBackground5Hover,Cn as colorNeutralBackground5Pressed,Nn as colorNeutralBackground5Selected,zn as colorNeutralBackground6,Yn as colorNeutralBackgroundDisabled,An as colorNeutralBackgroundInverted,Un as colorNeutralBackgroundInvertedDisabled,In as colorNeutralBackgroundStatic,dr as colorNeutralForeground1,hr as colorNeutralForeground1Hover,ur as colorNeutralForeground1Pressed,gr as colorNeutralForeground1Selected,Gr as colorNeutralForeground1Static,pr as colorNeutralForeground2,mr as colorNeutralForeground2BrandHover,yr as colorNeutralForeground2BrandPressed,kr as colorNeutralForeground2BrandSelected,fr as colorNeutralForeground2Hover,Or as colorNeutralForeground2Link,Hr as colorNeutralForeground2LinkHover,Dr as colorNeutralForeground2LinkPressed,Vr as colorNeutralForeground2LinkSelected,vr as colorNeutralForeground2Pressed,br as colorNeutralForeground2Selected,Br as colorNeutralForeground3,$r as colorNeutralForeground3BrandHover,Sr as colorNeutralForeground3BrandPressed,Fr as colorNeutralForeground3BrandSelected,xr as colorNeutralForeground3Hover,wr as colorNeutralForeground3Pressed,Pr as colorNeutralForeground3Selected,Cr as colorNeutralForeground4,Nr as colorNeutralForegroundDisabled,Xr as colorNeutralForegroundInverted,Kr as colorNeutralForegroundInverted2,zr as colorNeutralForegroundInvertedDisabled,Wr as colorNeutralForegroundInvertedHover,Jr as colorNeutralForegroundInvertedLink,Zr as colorNeutralForegroundInvertedLinkHover,en as colorNeutralForegroundInvertedLinkPressed,tn as colorNeutralForegroundInvertedLinkSelected,Yr as colorNeutralForegroundInvertedPressed,Ur as colorNeutralForegroundInvertedSelected,Qr as colorNeutralForegroundOnBrand,qr as colorNeutralForegroundStaticInverted,Ei as colorNeutralShadowAmbient,Gi as colorNeutralShadowAmbientDarker,_i as colorNeutralShadowAmbientLighter,Ri as colorNeutralShadowKey,qi as colorNeutralShadowKeyDarker,ji as colorNeutralShadowKeyLighter,Kn as colorNeutralStencil1,Qn as colorNeutralStencil2,bi as colorNeutralStroke1,mi as colorNeutralStroke1Hover,yi as colorNeutralStroke1Pressed,ki as colorNeutralStroke1Selected,Bi as colorNeutralStroke2,xi as colorNeutralStroke3,gi as colorNeutralStrokeAccessible,pi as colorNeutralStrokeAccessibleHover,fi as colorNeutralStrokeAccessiblePressed,vi as colorNeutralStrokeAccessibleSelected,Ti as colorNeutralStrokeDisabled,Li as colorNeutralStrokeInvertedDisabled,wi as colorNeutralStrokeOnBrand,Pi as colorNeutralStrokeOnBrand2,$i as colorNeutralStrokeOnBrand2Hover,Si as colorNeutralStrokeOnBrand2Pressed,Fi as colorNeutralStrokeOnBrand2Selected,zl as colorPaletteAnchorBackground2,Il as colorPaletteAnchorBorderActive,Al as colorPaletteAnchorForeground2,Bl as colorPaletteBeigeBackground2,wl as colorPaletteBeigeBorderActive,xl as colorPaletteBeigeForeground2,zs as colorPaletteBerryBackground1,As as colorPaletteBerryBackground2,Is as colorPaletteBerryBackground3,Ds as colorPaletteBerryBorder1,Vs as colorPaletteBerryBorder2,Hs as colorPaletteBerryBorderActive,Ts as colorPaletteBerryForeground1,Ls as colorPaletteBerryForeground2,Os as colorPaletteBerryForeground3,_a as colorPaletteBlueBackground2,Ga as colorPaletteBlueBorderActive,ja as colorPaletteBlueForeground2,ma as colorPaletteBrassBackground2,ka as colorPaletteBrassBorderActive,ya as colorPaletteBrassForeground2,Ba as colorPaletteBrownBackground2,wa as colorPaletteBrownBorderActive,xa as colorPaletteBrownForeground2,Ya as colorPaletteCornflowerBackground2,Ka as colorPaletteCornflowerBorderActive,Ua as colorPaletteCornflowerForeground2,sa as colorPaletteCranberryBackground2,la as colorPaletteCranberryBorderActive,aa as colorPaletteCranberryForeground2,za as colorPaletteDarkGreenBackground2,Ia as colorPaletteDarkGreenBorderActive,Aa as colorPaletteDarkGreenForeground2,us as colorPaletteDarkOrangeBackground1,gs as colorPaletteDarkOrangeBackground2,ps as colorPaletteDarkOrangeBackground3,ys as colorPaletteDarkOrangeBorder1,ks as colorPaletteDarkOrangeBorder2,ms as colorPaletteDarkOrangeBorderActive,fs as colorPaletteDarkOrangeForeground1,vs as colorPaletteDarkOrangeForeground2,bs as colorPaletteDarkOrangeForeground3,ra as colorPaletteDarkRedBackground2,ia as colorPaletteDarkRedBorderActive,na as colorPaletteDarkRedForeground2,Pa as colorPaletteForestBackground2,Sa as colorPaletteForestBorderActive,$a as colorPaletteForestForeground2,fa as colorPaletteGoldBackground2,ba as colorPaletteGoldBorderActive,va as colorPaletteGoldForeground2,sl as colorPaletteGrapeBackground2,ll as colorPaletteGrapeBorderActive,al as colorPaletteGrapeForeground2,rs as colorPaletteGreenBackground1,ns as colorPaletteGreenBackground2,is as colorPaletteGreenBackground3,ds as colorPaletteGreenBorder1,hs as colorPaletteGreenBorder2,cs as colorPaletteGreenBorderActive,ss as colorPaletteGreenForeground1,as as colorPaletteGreenForeground2,ls as colorPaletteGreenForeground3,el as colorPaletteLavenderBackground2,ol as colorPaletteLavenderBorderActive,tl as colorPaletteLavenderForeground2,Ms as colorPaletteLightGreenBackground1,Es as colorPaletteLightGreenBackground2,Rs as colorPaletteLightGreenBackground3,Xs as colorPaletteLightGreenBorder1,Ws as colorPaletteLightGreenBorder2,qs as colorPaletteLightGreenBorderActive,_s as colorPaletteLightGreenForeground1,js as colorPaletteLightGreenForeground2,Gs as colorPaletteLightGreenForeground3,Ta as colorPaletteLightTealBackground2,Oa as colorPaletteLightTealBorderActive,La as colorPaletteLightTealForeground2,cl as colorPaletteLilacBackground2,hl as colorPaletteLilacBorderActive,dl as colorPaletteLilacForeground2,fl as colorPaletteMagentaBackground2,bl as colorPaletteMagentaBorderActive,vl as colorPaletteMagentaForeground2,Ys as colorPaletteMarigoldBackground1,Us as colorPaletteMarigoldBackground2,Ks as colorPaletteMarigoldBackground3,ta as colorPaletteMarigoldBorder1,oa as colorPaletteMarigoldBorder2,ea as colorPaletteMarigoldBorderActive,Qs as colorPaletteMarigoldForeground1,Js as colorPaletteMarigoldForeground2,Zs as colorPaletteMarigoldForeground3,Pl as colorPaletteMinkBackground2,Sl as colorPaletteMinkBorderActive,$l as colorPaletteMinkForeground2,Qa as colorPaletteNavyBackground2,Za as colorPaletteNavyBorderActive,Ja as colorPaletteNavyForeground2,ua as colorPalettePeachBackground2,pa as colorPalettePeachBorderActive,ga as colorPalettePeachForeground2,ul as colorPalettePinkBackground2,pl as colorPalettePinkBorderActive,gl as colorPalettePinkForeground2,Fl as colorPalettePlatinumBackground2,Nl as colorPalettePlatinumBorderActive,Cl as colorPalettePlatinumForeground2,ml as colorPalettePlumBackground2,kl as colorPalettePlumBorderActive,yl as colorPalettePlumForeground2,ca as colorPalettePumpkinBackground2,ha as colorPalettePumpkinBorderActive,da as colorPalettePumpkinForeground2,rl as colorPalettePurpleBackground2,il as colorPalettePurpleBorderActive,nl as colorPalettePurpleForeground2,Yi as colorPaletteRedBackground1,Ui as colorPaletteRedBackground2,Ki as colorPaletteRedBackground3,ts as colorPaletteRedBorder1,os as colorPaletteRedBorder2,es as colorPaletteRedBorderActive,Qi as colorPaletteRedForeground1,Ji as colorPaletteRedForeground2,Zi as colorPaletteRedForeground3,qa as colorPaletteRoyalBlueBackground2,Wa as colorPaletteRoyalBlueBorderActive,Xa as colorPaletteRoyalBlueForeground2,Fa as colorPaletteSeafoamBackground2,Na as colorPaletteSeafoamBorderActive,Ca as colorPaletteSeafoamForeground2,Ma as colorPaletteSteelBackground2,Ra as colorPaletteSteelBorderActive,Ea as colorPaletteSteelForeground2,Ha as colorPaletteTealBackground2,Va as colorPaletteTealBorderActive,Da as colorPaletteTealForeground2,Bs as colorPaletteYellowBackground1,xs as colorPaletteYellowBackground2,ws as colorPaletteYellowBackground3,Cs as colorPaletteYellowBorder1,Ns as colorPaletteYellowBorder2,Fs as colorPaletteYellowBorderActive,Ps as colorPaletteYellowForeground1,$s as colorPaletteYellowForeground2,Ss as colorPaletteYellowForeground3,Zn as colorScrollbarOverlay,Vi as colorStrokeFocus1,Mi as colorStrokeFocus2,Tn as colorSubtleBackground,Ln as colorSubtleBackgroundHover,En as colorSubtleBackgroundInverted,Rn as colorSubtleBackgroundInvertedHover,_n as colorSubtleBackgroundInvertedPressed,jn as colorSubtleBackgroundInvertedSelected,Dn as colorSubtleBackgroundLightAlphaHover,Vn as colorSubtleBackgroundLightAlphaPressed,Mn as colorSubtleBackgroundLightAlphaSelected,On as colorSubtleBackgroundPressed,Hn as colorSubtleBackgroundSelected,Gn as colorTransparentBackground,qn as colorTransparentBackgroundHover,Xn as colorTransparentBackgroundPressed,Wn as colorTransparentBackgroundSelected,Oi as colorTransparentStroke,Di as colorTransparentStrokeDisabled,Hi as colorTransparentStrokeInteractive,tr as curveAccelerateMax,or as curveAccelerateMid,rr as curveAccelerateMin,nr as curveDecelerateMax,ir as curveDecelerateMid,sr as curveDecelerateMin,lr as curveEasyEase,ar as curveEasyEaseMax,cr as curveLinear,gd as definition,Ko as durationFast,Uo as durationFaster,Qo as durationNormal,Jo as durationSlow,Zo as durationSlower,Yo as durationUltraFast,er as durationUltraSlow,fo as fontFamilyBase,vo as fontFamilyMonospace,bo as fontFamilyNumeric,Yt as fontSizeBase100,Ut as fontSizeBase200,Kt as fontSizeBase300,Qt as fontSizeBase400,Jt as fontSizeBase500,Zt as fontSizeBase600,ro as fontSizeHero1000,eo as fontSizeHero700,to as fontSizeHero800,oo as fontSizeHero900,Bo as fontWeightBold,yo as fontWeightMedium,mo as fontWeightRegular,ko as fontWeightSemibold,no as lineHeightBase100,io as lineHeightBase200,so as lineHeightBase300,ao as lineHeightBase400,lo as lineHeightBase500,co as lineHeightBase600,po as lineHeightHero1000,ho as lineHeightHero700,uo as lineHeightHero800,go as lineHeightHero900,wd as setTheme,Hl as shadow16,_l as shadow16Brand,Tl as shadow2,Dl as shadow28,jl as shadow28Brand,Ml as shadow2Brand,Ll as shadow4,El as shadow4Brand,Vl as shadow64,Gl as shadow64Brand,Ol as shadow8,Rl as shadow8Brand,To as spacingHorizontalL,Io as spacingHorizontalM,Ao as spacingHorizontalMNudge,So as spacingHorizontalNone,zo as spacingHorizontalS,No as spacingHorizontalSNudge,Lo as spacingHorizontalXL,Co as spacingHorizontalXS,Oo as spacingHorizontalXXL,Fo as spacingHorizontalXXS,Ho as spacingHorizontalXXXL,Go as spacingVerticalL,jo as spacingVerticalM,_o as spacingVerticalMNudge,Do as spacingVerticalNone,Ro as spacingVerticalS,Eo as spacingVerticalSNudge,qo as spacingVerticalXL,Mo as spacingVerticalXS,Xo as spacingVerticalXXL,Vo as spacingVerticalXXS,Wo as spacingVerticalXXXL,wo as strokeWidthThick,Po as strokeWidthThicker,$o as strokeWidthThickest,xo as strokeWidthThin,ud as switchStyles,hd as switchTemplate};
|