@fluid-topics/ft-code-highlight 1.2.17 → 1.2.20
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/build/ft-code-highlight.d.ts +4 -2
- package/build/ft-code-highlight.js +24 -12
- package/build/ft-code-highlight.light.js +10 -10
- package/build/ft-code-highlight.min.js +14 -14
- package/build/services/FtCodeHighlightService.d.ts +4 -2
- package/build/services/FtCodeHighlightService.js +10 -10
- package/package.json +6 -3
|
@@ -13,9 +13,11 @@ export declare class FtCodeHighlight extends FtLitElement implements FtCodeHighl
|
|
|
13
13
|
theme: string;
|
|
14
14
|
codeHighlightService: FtCodeHighlightService;
|
|
15
15
|
private code;
|
|
16
|
+
private contentStyle;
|
|
16
17
|
private isHighlightable;
|
|
17
18
|
private initHljs;
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
updated(changedProperties: Map<string, unknown>): Promise<void>;
|
|
20
|
+
private fetchStyle;
|
|
21
|
+
updateLanguage(): Promise<void>;
|
|
20
22
|
protected render(): import("lit").TemplateResult<1>;
|
|
21
23
|
}
|
|
@@ -16,29 +16,39 @@ class FtCodeHighlight extends FtLitElement {
|
|
|
16
16
|
this.language = "";
|
|
17
17
|
this.theme = "monokai";
|
|
18
18
|
this.codeHighlightService = new FtCodeHighlightService();
|
|
19
|
+
this.contentStyle = "";
|
|
19
20
|
}
|
|
20
21
|
isHighlightable() {
|
|
21
|
-
return VALID_PROPERTIES_REG.test(this.language)
|
|
22
|
+
return VALID_PROPERTIES_REG.test(this.language)
|
|
23
|
+
&& VALID_PROPERTIES_REG.test(this.theme);
|
|
22
24
|
}
|
|
23
25
|
async initHljs() {
|
|
24
26
|
if (window.hljs === undefined) {
|
|
25
27
|
window.hljs = (await import(/* @vite-ignore */ this.codeHighlightService.coreHighlight())).default;
|
|
26
28
|
}
|
|
27
|
-
return window.hljs;
|
|
28
29
|
}
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
async updated(changedProperties) {
|
|
31
|
+
await this.initHljs();
|
|
32
|
+
if (changedProperties.has("language")) {
|
|
33
|
+
await this.updateLanguage();
|
|
34
|
+
}
|
|
35
|
+
if (changedProperties.has("theme")) {
|
|
36
|
+
await this.fetchStyle();
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
async fetchStyle() {
|
|
40
|
+
const res = await fetch(this.codeHighlightService.theme(this.theme));
|
|
41
|
+
this.contentStyle = await res.text();
|
|
31
42
|
}
|
|
32
|
-
async
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
await import(/* @vite-ignore */ `${langPrefix}/${this.language}.min.js`);
|
|
43
|
+
async updateLanguage() {
|
|
44
|
+
if (window.hljs.listLanguages().indexOf(this.language) === -1) {
|
|
45
|
+
const langEndpoint = this.codeHighlightService.language(this.language);
|
|
46
|
+
await import(/* @vite-ignore */ langEndpoint);
|
|
37
47
|
}
|
|
38
48
|
if (this.code.getAttribute("data-highlighted") === "yes") {
|
|
39
49
|
this.code.removeAttribute("data-highlighted");
|
|
40
50
|
}
|
|
41
|
-
hljs.highlightElement(this.code);
|
|
51
|
+
window.hljs.highlightElement(this.code);
|
|
42
52
|
}
|
|
43
53
|
render() {
|
|
44
54
|
if (!this.isHighlightable()) {
|
|
@@ -47,11 +57,10 @@ class FtCodeHighlight extends FtLitElement {
|
|
|
47
57
|
<slot></slot>
|
|
48
58
|
</div>`;
|
|
49
59
|
}
|
|
50
|
-
const stylePrefix = this.codeHighlightService.styleHighlight();
|
|
51
60
|
return html `
|
|
52
61
|
<div>
|
|
53
62
|
<slot class="hidden"></slot>
|
|
54
|
-
<
|
|
63
|
+
<style>${this.contentStyle}</style>
|
|
55
64
|
<pre part="code" class="language-${this.language}">${this.textContent}</pre>
|
|
56
65
|
</div>
|
|
57
66
|
`;
|
|
@@ -70,4 +79,7 @@ __decorate([
|
|
|
70
79
|
__decorate([
|
|
71
80
|
query("[part='code']")
|
|
72
81
|
], FtCodeHighlight.prototype, "code", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
property({ attribute: false })
|
|
84
|
+
], FtCodeHighlight.prototype, "contentStyle", void 0);
|
|
73
85
|
export { FtCodeHighlight };
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
"use strict";(()=>{var
|
|
1
|
+
"use strict";(()=>{var Ar=Object.create;var wt=Object.defineProperty;var Cr=Object.getOwnPropertyDescriptor;var Pr=Object.getOwnPropertyNames;var jr=Object.getPrototypeOf,Mr=Object.prototype.hasOwnProperty;var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var kr=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of Pr(e))!Mr.call(t,o)&&o!==r&&wt(t,o,{get:()=>e[o],enumerable:!(n=Cr(e,o))||n.enumerable});return t};var E=(t,e,r)=>(r=t!=null?Ar(jr(t)):{},kr(e||!t||!t.__esModule?wt(r,"default",{value:t,enumerable:!0}):r,t));var j=Fe((Cn,St)=>{St.exports=ftGlobals.wcUtils});var ee=Fe((Pn,xt)=>{xt.exports=ftGlobals.lit});var G=Fe((jn,Et)=>{Et.exports=ftGlobals.litDecorators});var Or=E(j());var yt=E(ee()),Q=E(G()),Er=E(j());var Ot=E(ee()),ye=E(j()),_r={colorSurface:ye.FtCssVariableFactory.extend("--ft-code-highlight-background-color","",ye.designSystemVariables.colorSurface)},At=Ot.css`
|
|
2
2
|
.hidden { display: none; }
|
|
3
3
|
[part="code"] {
|
|
4
|
-
background-color: ${
|
|
4
|
+
background-color: ${_r.colorSurface};
|
|
5
5
|
margin: 0;
|
|
6
6
|
}
|
|
7
|
-
`;var
|
|
8
|
-
`;var
|
|
7
|
+
`;var Sr=E(j());var kt=E(ee()),P=E(G()),D=E(j());var Ct=E(ee());var Pt=Ct.css`
|
|
8
|
+
`;var ge=E(j()),Dr="ft-app-info",Ue=class extends CustomEvent{constructor(e){super("authentication-change",{detail:e})}},Nr={session:(t,e)=>{(0,ge.deepEqual)(t.session,e.payload)||(t.session=e.payload,setTimeout(()=>m.dispatchEvent(new Ue(e.payload)),0))}},m=ge.FtReduxStore.get({name:Dr,reducers:Nr,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],defaultLocales:void 0,searchInAllLanguagesAllowed:!1,metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var V=E(j());var Ve=E(j());var X=class t{static get(e){let{baseUrl:r,apiIntegrationIdentifier:n}=m.getState(),o=e??n;if(r&&o&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,o,!0)}static await(e){return new Promise(r=>{let n=t.get(e);if(n)r(n);else{let o=m.subscribe(()=>{n=t.get(e),n&&(o(),r(n))})}})}};var T=class{constructor(e=!0,r){var n;this.overrideApi=r;let o=this.constructor;o.commonCache=(n=o.commonCache)!==null&&n!==void 0?n:new Ve.CacheRegistry,this.cache=e?o.commonCache:new Ve.CacheRegistry}get api(){var e;return(e=this.overrideApi)!==null&&e!==void 0?e:X.get()}get awaitApi(){return this.overrideApi?Promise.resolve(this.overrideApi):X.await()}clearCache(){this.cache.clearAll()}};var jt,Tr=Symbol("clearAfterUnitTest"),be=class extends T{constructor(e){super(),this.messageContextProvider=e,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[jt]=()=>{this.defaultMessages={},this.cache=new V.CacheRegistry,this.listeners={}},this.currentUiLocale=m.getState().uiLocale,m.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:e}=m.getState();this.currentUiLocale!==e&&(this.currentUiLocale=e,this.cache.clearAll(),this.notifyAll())}addContext(e){let r=e.name.toLowerCase();this.cache.setFinal(r,e),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(e,r){var n;if(e=e.toLowerCase(),Object.keys(r).length>0){let o={...(n=this.defaultMessages[e])!==null&&n!==void 0?n:{},...r};(0,V.deepEqual)(this.defaultMessages[e],o)||(this.defaultMessages[e]=o,await this.notify(e))}await this.fetchContext(e)}resolveContext(e){var r,n;return this.fetchContext(e),(n=(r=this.cache.getNow(e))===null||r===void 0?void 0:r.messages)!==null&&n!==void 0?n:{}}resolveRawMessage(e,r){let n=e.toLowerCase();return this.resolveContext(n)[r]}resolveMessage(e,r,...n){var o;let i=e.toLowerCase(),a=this.resolveContext(i);return new V.ParametrizedLabelResolver((o=this.defaultMessages[i])!==null&&o!==void 0?o:{},a).resolve(r,...n)}async fetchContext(e){if(!this.cache.has(e))try{await this.cache.get(e,()=>this.messageContextProvider(this.currentUiLocale,e)),await this.notify(e)}catch(r){console.error(r)}}subscribe(e,r){var n;return e=e.toLowerCase(),this.listeners[e]=(n=this.listeners[e])!==null&&n!==void 0?n:new Set,this.listeners[e].add(r),()=>{var o;return(o=this.listeners[e])===null||o===void 0?void 0:o.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(e=>this.notify(e)))}async notify(e){this.listeners[e]!=null&&await Promise.all([...this.listeners[e].values()].map(r=>(0,V.delay)(0).then(()=>r()).catch(()=>null)))}};jt=Tr;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends be{constructor(){super(async(t,e)=>(await this.awaitApi).getFluidTopicsMessageContext(t,e))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends be{constructor(){super(async(t,e)=>(await this.awaitApi).getCustomMessageContext(t,e))}});var Mt=window.FluidTopicsI18nService,Fn=window.FluidTopicsCustomI18nService;var A=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},O=class extends D.FtLitElement{constructor(){super(...arguments),this.apiIntegrationIdentifier="ft-integration",this.uiLocale="en-US",this.editorMode=!1,this.noCustom=!1,this.openExternalDocumentInNewTab=!1,this.noCustomComponent=!1,this.withManualResources=!1,this.navigatorOnline=!1,this.forcedOffline=!1,this.apiProvider=()=>X.get(),this.messageContexts=[],this.cache=new D.CacheRegistry,this.cleanSessionDebouncer=new D.Debouncer}render(){return kt.html`
|
|
9
9
|
<slot></slot>
|
|
10
|
-
`}update(e){var r,n,o,i,a;super.update(e),e.has("baseUrl")&&(m.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),e.has("apiIntegrationIdentifier")&&m.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),e.has("uiLocale")&&m.actions.uiLocale(this.uiLocale),e.has("metadataConfiguration")&&m.actions.metadataConfiguration(this.metadataConfiguration),e.has("noCustom")&&m.actions.noCustom(this.noCustom),e.has("editorMode")&&m.actions.editorMode(this.editorMode),e.has("noCustomComponent")&&m.actions.noCustomComponent(this.noCustomComponent),e.has("session")&&m.actions.session(this.session),e.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(s=>_t.addContext(s)),e.has("openExternalDocumentInNewTab")&&m.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),e.has("navigatorOnline")&&m.actions.navigatorOnline(this.navigatorOnline),e.has("forcedOffline")&&m.actions.forcedOffline(this.forcedOffline),e.has("localesConfiguration")&&(m.actions.defaultLocales((r=this.localesConfiguration)===null||r===void 0?void 0:r.defaultLocales),m.actions.availableUiLocales((o=(n=this.localesConfiguration)===null||n===void 0?void 0:n.availableUiLocales)!==null&&o!==void 0?o:[]),m.actions.searchInAllLanguagesAllowed((a=(i=this.localesConfiguration)===null||i===void 0?void 0:i.allLanguagesAllowed)!==null&&a!==void 0?a:!1)),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){this.apiProvider()&&(this.withManualResources||(this.session==null&&this.updateSession(),this.metadataConfiguration==null&&this.updateMetadataConfiguration()),this.localesConfiguration==null&&this.updateLocalesConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let e=await this.apiProvider().getCurrentSession();return e.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},e.idleTimeoutInMillis),e})}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}async updateLocalesConfiguration(){this.localesConfiguration=await this.cache.get("localesConfiguration",()=>this.apiProvider().getLocalesConfiguration())}};E.elementDefinitions={};E.styles=jt;A([(0,P.property)()],E.prototype,"baseUrl",void 0);A([(0,P.property)()],E.prototype,"apiIntegrationIdentifier",void 0);A([(0,P.property)()],E.prototype,"uiLocale",void 0);A([(0,D.jsonProperty)(null)],E.prototype,"availableUiLocales",void 0);A([(0,D.jsonProperty)(null)],E.prototype,"metadataConfiguration",void 0);A([(0,P.property)({type:Boolean})],E.prototype,"editorMode",void 0);A([(0,P.property)({type:Boolean})],E.prototype,"noCustom",void 0);A([(0,P.property)({type:Boolean})],E.prototype,"openExternalDocumentInNewTab",void 0);A([(0,P.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],E.prototype,"noCustomComponent",void 0);A([(0,P.property)({type:Boolean})],E.prototype,"withManualResources",void 0);A([(0,P.property)({type:Boolean})],E.prototype,"navigatorOnline",void 0);A([(0,P.property)({type:Boolean})],E.prototype,"forcedOffline",void 0);A([(0,P.property)({type:Object})],E.prototype,"apiProvider",void 0);A([(0,D.jsonProperty)([])],E.prototype,"messageContexts",void 0);A([(0,D.jsonProperty)(void 0)],E.prototype,"session",void 0);A([(0,P.state)()],E.prototype,"localesConfiguration",void 0);var On=O(G());function Ir(t,e){if(t===e)return!0;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(t.constructor!==e.constructor)return!1;var r,n,o;if(Array.isArray(t)){if(r=t.length,r!=e.length)return!1;for(n=r;n--!==0;)if(!be(t[n],e[n]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;for(n of t.entries())if(!be(n[1],e.get(n[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(o=Object.keys(t),r=o.length,r!==Object.keys(e).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,o[n]))return!1;for(n=r;n--!==0;){var i=o[n];if(!be(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function be(t,e){try{return Ir(t,e)}catch{return!1}}function ze(t,e){return!be(t,e)}var Lr=O(G(),1);var we=class{constructor(){this.queue=[]}add(e,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==e.type)),this.queue.push(e)}consume(e){let r=this.queue.find(n=>n.type===e);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var ce=O(G(),1);var Dt=O(G(),1);function Nt(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,Dt.property)({type:Object,converter:{fromAttribute:n=>{if(n==null)return r();try{return JSON.parse(n)}catch{return r()}},toAttribute:n=>JSON.stringify(n)},hasChanged:ze,...e??{}})}var Se=class{constructor(e=0){this.timeout=e,this.callbacks=[]}run(e,r){return this.callbacks=[e],this.debounce(r)}queue(e,r){return this.callbacks.push(e),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(e){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),e??this.timeout),this.promise}async runCallbacks(){var e,r;let n=[...this.callbacks];this.callbacks=[];let o=(e=this.rejectPromise)!==null&&e!==void 0?e:()=>null,i=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let a of n)try{await a()}catch(s){o(s);return}i(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var Rt=O(Z(),1);var xe=window,Fr=xe.ShadowRoot&&(xe.ShadyCSS===void 0||xe.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,ro=Symbol();var Tt=(t,e)=>{Fr?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),o=xe.litNonce;o!==void 0&&n.setAttribute("nonce",o),n.textContent=r.cssText,t.appendChild(n)})};var Oe=class extends Rt.LitElement{createRenderRoot(){let e=this.constructor;e.elementDefinitions&&!e.registry&&(e.registry=new CustomElementRegistry,Object.entries(e.elementDefinitions).forEach(([o,i])=>e.registry.define(o,i)));let r={...e.shadowRootOptions,customElements:e.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return Tt(n,e.elementStyles),n}};var Ee=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},Ut,It=Symbol("constructorPrototype"),Lt=Symbol("constructorName"),Vt=Symbol("exportpartsDebouncer"),Ft=Symbol("dynamicDependenciesLoaded"),z=class extends Oe{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Ut]=new Se(5),this[Lt]=this.constructor.name,this[It]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Lt]&&Object.setPrototypeOf(this,this[It])}connectedCallback(){super.connectedCallback();try{this.shadowRoot&&!this.shadowRoot.adoptedStyleSheets.includes(this.adoptedCustomStyleSheet)&&(this.shadowRoot.adoptedStyleSheets=[...this.shadowRoot.adoptedStyleSheets,this.adoptedCustomStyleSheet]),this.useAdoptedStyleSheets=!0}catch(r){this.useAdoptedStyleSheets=!1,console.error("Cannot use adopted stylesheets",r)}let e=this.constructor;e[Ft]||(e[Ft]=!0,this.importDynamicDependencies())}importDynamicDependencies(){}updated(e){super.updated(e),this.updateComplete.then(()=>{this.contentAvailableCallback(e),this.applyCustomStylesheet(e),this.scheduleExportpartsUpdate()})}contentAvailableCallback(e){}applyCustomStylesheet(e){var r,n,o;if(((n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&n!==void 0?n:[]).forEach(i=>i.remove()),this.useAdoptedStyleSheets){if(e.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((o=this.customStylesheet)!==null&&o!==void 0?o:"")}catch(i){console.error(i,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let i=document.createElement("style");i.classList.add("ft-lit-element--custom-stylesheet"),i.innerHTML=this.customStylesheet,this.shadowRoot.append(i)}}scheduleExportpartsUpdate(){var e,r,n;(!((e=this.exportpartsPrefix)===null||e===void 0)&&e.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[Vt].run(()=>{var o,i;!((o=this.exportpartsPrefix)===null||o===void 0)&&o.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((i=this.exportpartsPrefixes)===null||i===void 0?void 0:i.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(e){var r,n,o,i,a,s;let c=f=>f!=null&&f.trim().length>0,u=e.filter(c).map(f=>f.trim());if(u.length===0){this.removeAttribute("exportparts");return}let l=new Set;for(let f of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let v=(i=(o=f.getAttribute("part"))===null||o===void 0?void 0:o.split(" "))!==null&&i!==void 0?i:[],d=(s=(a=f.getAttribute("exportparts"))===null||a===void 0?void 0:a.split(",").map(p=>p.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...v,...d).filter(c).map(p=>p.trim()).forEach(p=>l.add(p))}if(l.size===0){this.removeAttribute("exportparts");return}let h=[...l.values()].flatMap(f=>u.map(v=>`${f}:${v}--${f}`));this.setAttribute("exportparts",[...this.part,...h].join(", "))}};Ut=Vt;Ee([(0,ce.property)()],z.prototype,"exportpartsPrefix",void 0);Ee([Nt([])],z.prototype,"exportpartsPrefixes",void 0);Ee([(0,ce.property)()],z.prototype,"customStylesheet",void 0);Ee([(0,ce.state)()],z.prototype,"useAdoptedStyleSheets",void 0);function le(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var zt,Wt,qt,fe=Symbol("internalReduxEventsUnsubscribers"),W=Symbol("internalStoresUnsubscribers"),J=Symbol("internalStores"),de=class extends z{constructor(){super(...arguments),this[zt]=new Map,this[Wt]=new Map,this[qt]=new Map}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[J].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[J].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[J].get(e)}addStore(e,r){var n;r=(n=r??(le(e)?e.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this[J].set(r,e),this.subscribeToStore(r,e),this.updateFromStores()}removeStore(e){let r=typeof e=="string"?e:e.name;this.unsubscribeFromStore(r),this[J].delete(r)}setupStores(){this.unsubscribeFromStores(),this[J].forEach((e,r)=>this.subscribeToStore(r,e)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((e,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let o=this.getStore(e.store);o&&(e.store?this[W].has(e.store):this[W].size>0)&&(this[r]=e.selector(o.getState(),this))}})}subscribeToStore(e,r){var n;this[W].set(e,r.subscribe(()=>this.updateFromStores())),this[fe].set(e,[]),le(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((o,i)=>{if(typeof this[i]=="function"&&(!o.store||r.name===o.store)){let a=s=>this[i](s);r.addEventListener(o.eventName,a),this[fe].get(e).push(()=>r.removeEventListener(o.eventName,a))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[W].forEach((e,r)=>this.unsubscribeFromStore(r))}unsubscribeFromStore(e){var r;this[W].has(e)&&this[W].get(e)(),this[W].delete(e),(r=this[fe].get(e))===null||r===void 0||r.forEach(n=>n()),this[fe].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};zt=W,Wt=J,qt=fe;de.reduxProperties=new Map;de.reduxReactiveProperties=new Set;de.reduxEventListeners=new Map;function _(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(0)var o,i;throw Error("[Immer] minified error nr: "+t+(r.length?" "+r.map(function(a){return"'"+a+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function L(t){return!!t&&!!t[S]}function N(t){var e;return!!t&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var o=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return o===Object||typeof o=="function"&&Function.toString.call(o)===Kr}(t)||Array.isArray(t)||!!t[Jt]||!!(!((e=t.constructor)===null||e===void 0)&&e[Jt])||Je(t)||Ye(t))}function Y(t,e,r){r===void 0&&(r=!1),re(t)===0?(r?Object.keys:te)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,o){return e(o,n,t)})}function re(t){var e=t[S];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:Je(t)?2:Ye(t)?3:0}function ee(t,e){return re(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Ur(t,e){return re(t)===2?t.get(e):t[e]}function Yt(t,e,r){var n=re(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function Qt(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function Je(t){return Br&&t instanceof Map}function Ye(t){return Hr&&t instanceof Set}function q(t){return t.o||t.t}function Qe(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=tr(t);delete e[S];for(var r=te(e),n=0;n<r.length;n++){var o=r[n],i=e[o];i.writable===!1&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(e[o]={configurable:!0,writable:!0,enumerable:i.enumerable,value:t[o]})}return Object.create(Object.getPrototypeOf(t),e)}function Ze(t,e){return e===void 0&&(e=!1),et(t)||L(t)||!N(t)||(re(t)>1&&(t.set=t.add=t.clear=t.delete=Vr),Object.freeze(t),e&&Y(t,function(r,n){return Ze(n,!0)},!0)),t}function Vr(){_(2)}function et(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function R(t){var e=Xe[t];return e||_(18,t),e}function zr(t,e){Xe[t]||(Xe[t]=e)}function Ke(){return he}function We(t,e){e&&(R("Patches"),t.u=[],t.s=[],t.v=e)}function Ae(t){$e(t),t.p.forEach(Wr),t.p=null}function $e(t){t===he&&(he=t.l)}function Bt(t){return he={p:[],l:he,h:t,m:!0,_:0}}function Wr(t){var e=t[S];e.i===0||e.i===1?e.j():e.g=!0}function qe(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||R("ES5").S(e,t,n),n?(r[S].P&&(Ae(e),_(4)),N(t)&&(t=Ce(e,t),e.l||Pe(e,t)),e.u&&R("Patches").M(r[S].t,t,e.u,e.s)):t=Ce(e,r,[]),Ae(e),e.u&&e.v(e.u,e.s),t!==er?t:void 0}function Ce(t,e,r){if(et(e))return e;var n=e[S];if(!n)return Y(e,function(s,c){return Ht(t,n,e,s,c,r)},!0),e;if(n.A!==t)return e;if(!n.P)return Pe(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=n.i===4||n.i===5?n.o=Qe(n.k):n.o,i=o,a=!1;n.i===3&&(i=new Set(o),o.clear(),a=!0),Y(i,function(s,c){return Ht(t,n,o,s,c,r,a)}),Pe(t,o,!1),r&&t.u&&R("Patches").N(n,r,t.u,t.s)}return n.o}function Ht(t,e,r,n,o,i,a){if(L(o)){var s=Ce(t,o,i&&e&&e.i!==3&&!ee(e.R,n)?i.concat(n):void 0);if(Yt(r,n,s),!L(s))return;t.m=!1}else a&&r.add(o);if(N(o)&&!et(o)){if(!t.h.D&&t._<1)return;Ce(t,o),e&&e.A.l||Pe(t,o)}}function Pe(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&Ze(e,r)}function Be(t,e){var r=t[S];return(r?q(r):t)[e]}function Kt(t,e){if(e in t)for(var r=Object.getPrototypeOf(t);r;){var n=Object.getOwnPropertyDescriptor(r,e);if(n)return n;r=Object.getPrototypeOf(r)}}function B(t){t.P||(t.P=!0,t.l&&B(t.l))}function He(t){t.o||(t.o=Qe(t.t))}function Ge(t,e,r){var n=Je(e)?R("MapSet").F(e,r):Ye(e)?R("MapSet").T(e,r):t.O?function(o,i){var a=Array.isArray(o),s={i:a?1:0,A:i?i.A:Ke(),P:!1,I:!1,R:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=s,u=ve;a&&(c=[s],u=pe);var l=Proxy.revocable(c,u),h=l.revoke,f=l.proxy;return s.k=f,s.j=h,f}(e,r):R("ES5").J(e,r);return(r?r.A:Ke()).p.push(n),n}function qr(t){return L(t)||_(22,t),function e(r){if(!N(r))return r;var n,o=r[S],i=re(r);if(o){if(!o.P&&(o.i<4||!R("ES5").K(o)))return o.t;o.I=!0,n=$t(r,i),o.I=!1}else n=$t(r,i);return Y(n,function(a,s){o&&Ur(o.t,a)===s||Yt(n,a,e(s))}),i===3?new Set(n):n}(t)}function $t(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Qe(t)}function Zt(){function t(a,s){var c=i[a];return c?c.enumerable=s:i[a]=c={configurable:!0,enumerable:s,get:function(){var u=this[S];return ve.get(u,a)},set:function(u){var l=this[S];ve.set(l,a,u)}},c}function e(a){for(var s=a.length-1;s>=0;s--){var c=a[s][S];if(!c.P)switch(c.i){case 5:n(c)&&B(c);break;case 4:r(c)&&B(c)}}}function r(a){for(var s=a.t,c=a.k,u=te(c),l=u.length-1;l>=0;l--){var h=u[l];if(h!==S){var f=s[h];if(f===void 0&&!ee(s,h))return!0;var v=c[h],d=v&&v[S];if(d?d.t!==f:!Qt(v,f))return!0}}var p=!!s[S];return u.length!==te(s).length+(p?0:1)}function n(a){var s=a.k;if(s.length!==a.t.length)return!0;var c=Object.getOwnPropertyDescriptor(s,s.length-1);if(c&&!c.get)return!0;for(var u=0;u<s.length;u++)if(!s.hasOwnProperty(u))return!0;return!1}function o(a){a.g&&_(3,JSON.stringify(q(a)))}var i={};zr("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(h,f){if(h){for(var v=Array(f.length),d=0;d<f.length;d++)Object.defineProperty(v,""+d,t(d,!0));return v}var p=tr(f);delete p[S];for(var b=te(p),y=0;y<b.length;y++){var g=b[y];p[g]=t(g,h||!!p[g].enumerable)}return Object.create(Object.getPrototypeOf(f),p)}(c,a),l={i:c?5:4,A:s?s.A:Ke(),P:!1,I:!1,R:{},l:s,t:a,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,S,{value:l,writable:!0}),u},S:function(a,s,c){c?L(s)&&s[S].A===a&&e(a.p):(a.u&&function u(l){if(l&&typeof l=="object"){var h=l[S];if(h){var f=h.t,v=h.k,d=h.R,p=h.i;if(p===4)Y(v,function(w){w!==S&&(f[w]!==void 0||ee(f,w)?d[w]||u(v[w]):(d[w]=!0,B(h)))}),Y(f,function(w){v[w]!==void 0||ee(v,w)||(d[w]=!1,B(h))});else if(p===5){if(n(h)&&(B(h),d.length=!0),v.length<f.length)for(var b=v.length;b<f.length;b++)d[b]=!1;else for(var y=f.length;y<v.length;y++)d[y]=!0;for(var g=Math.min(v.length,f.length),x=0;x<g;x++)v.hasOwnProperty(x)||(d[x]=!0),d[x]===void 0&&u(v[x])}}}}(a.p[0]),e(a.p))},K:function(a){return a.i===4?r(a):n(a)}})}var Gt,he,tt=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",Br=typeof Map<"u",Hr=typeof Set<"u",Xt=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",er=tt?Symbol.for("immer-nothing"):((Gt={})["immer-nothing"]=!0,Gt),Jt=tt?Symbol.for("immer-draftable"):"__$immer_draftable",S=tt?Symbol.for("immer-state"):"__$immer_state";var Kr=""+Object.prototype.constructor,te=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,tr=Object.getOwnPropertyDescriptors||function(t){var e={};return te(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},Xe={},ve={get:function(t,e){if(e===S)return t;var r=q(t);if(!ee(r,e))return function(o,i,a){var s,c=Kt(i,a);return c?"value"in c?c.value:(s=c.get)===null||s===void 0?void 0:s.call(o.k):void 0}(t,r,e);var n=r[e];return t.I||!N(n)?n:n===Be(t.t,e)?(He(t),t.o[e]=Ge(t.A.h,n,t)):n},has:function(t,e){return e in q(t)},ownKeys:function(t){return Reflect.ownKeys(q(t))},set:function(t,e,r){var n=Kt(q(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var o=Be(q(t),e),i=o?.[S];if(i&&i.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(Qt(r,o)&&(r!==void 0||ee(t.t,e)))return!0;He(t),B(t)}return t.o[e]===r&&(r!==void 0||e in t.o)||Number.isNaN(r)&&Number.isNaN(t.o[e])||(t.o[e]=r,t.R[e]=!0),!0},deleteProperty:function(t,e){return Be(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,He(t),B(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=q(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){_(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){_(12)}},pe={};Y(ve,function(t,e){pe[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),pe.deleteProperty=function(t,e){return pe.set.call(this,t,e,void 0)},pe.set=function(t,e,r){return ve.set.call(this,t[0],e,r,t[0])};var $r=function(){function t(r){var n=this;this.O=Xt,this.D=!0,this.produce=function(o,i,a){if(typeof o=="function"&&typeof i!="function"){var s=i;i=o;var c=n;return function(p){var b=this;p===void 0&&(p=s);for(var y=arguments.length,g=Array(y>1?y-1:0),x=1;x<y;x++)g[x-1]=arguments[x];return c.produce(p,function(w){var U;return(U=i).call.apply(U,[b,w].concat(g))})}}var u;if(typeof i!="function"&&_(6),a!==void 0&&typeof a!="function"&&_(7),N(o)){var l=Bt(n),h=Ge(n,o,void 0),f=!0;try{u=i(h),f=!1}finally{f?Ae(l):$e(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(p){return We(l,a),qe(p,l)},function(p){throw Ae(l),p}):(We(l,a),qe(u,l))}if(!o||typeof o!="object"){if((u=i(o))===void 0&&(u=o),u===er&&(u=void 0),n.D&&Ze(u,!0),a){var v=[],d=[];R("Patches").M(o,u,v,d),a(v,d)}return u}_(21,o)},this.produceWithPatches=function(o,i){if(typeof o=="function")return function(u){for(var l=arguments.length,h=Array(l>1?l-1:0),f=1;f<l;f++)h[f-1]=arguments[f];return n.produceWithPatches(u,function(v){return o.apply(void 0,[v].concat(h))})};var a,s,c=n.produce(o,i,function(u,l){a=u,s=l});return typeof Promise<"u"&&c instanceof Promise?c.then(function(u){return[u,a,s]}):[c,a,s]},typeof r?.useProxies=="boolean"&&this.setUseProxies(r.useProxies),typeof r?.autoFreeze=="boolean"&&this.setAutoFreeze(r.autoFreeze)}var e=t.prototype;return e.createDraft=function(r){N(r)||_(8),L(r)&&(r=qr(r));var n=Bt(this),o=Ge(this,r,void 0);return o[S].C=!0,$e(n),o},e.finishDraft=function(r,n){var o=r&&r[S],i=o.A;return We(i,n),qe(void 0,i)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Xt&&_(20),this.O=r},e.applyPatches=function(r,n){var o;for(o=n.length-1;o>=0;o--){var i=n[o];if(i.path.length===0&&i.op==="replace"){r=i.value;break}}o>-1&&(n=n.slice(o+1));var a=R("Patches").$;return L(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},t}(),k=new $r,Gr=k.produce,vo=k.produceWithPatches.bind(k),mo=k.setAutoFreeze.bind(k),yo=k.setUseProxies.bind(k),go=k.applyPatches.bind(k),bo=k.createDraft.bind(k),wo=k.finishDraft.bind(k),je=Gr;function H(t){"@babel/helpers - typeof";return H=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},H(t)}function rt(t,e){if(H(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(H(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function nt(t){var e=rt(t,"string");return H(e)==="symbol"?e:String(e)}function ot(t,e,r){return e=nt(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function rr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),r.push.apply(r,n)}return r}function ke(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?rr(Object(r),!0).forEach(function(n){ot(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):rr(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function C(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var nr=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),it=function(){return Math.random().toString(36).substring(7).split("").join(".")},_e={INIT:"@@redux/INIT"+it(),REPLACE:"@@redux/REPLACE"+it(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+it()}};function Xr(t){if(typeof t!="object"||t===null)return!1;for(var e=t;Object.getPrototypeOf(e)!==null;)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function at(t,e,r){var n;if(typeof e=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(C(0));if(typeof e=="function"&&typeof r>"u"&&(r=e,e=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(C(1));return r(at)(t,e)}if(typeof t!="function")throw new Error(C(2));var o=t,i=e,a=[],s=a,c=!1;function u(){s===a&&(s=a.slice())}function l(){if(c)throw new Error(C(3));return i}function h(p){if(typeof p!="function")throw new Error(C(4));if(c)throw new Error(C(5));var b=!0;return u(),s.push(p),function(){if(b){if(c)throw new Error(C(6));b=!1,u();var g=s.indexOf(p);s.splice(g,1),a=null}}}function f(p){if(!Xr(p))throw new Error(C(7));if(typeof p.type>"u")throw new Error(C(8));if(c)throw new Error(C(9));try{c=!0,i=o(i,p)}finally{c=!1}for(var b=a=s,y=0;y<b.length;y++){var g=b[y];g()}return p}function v(p){if(typeof p!="function")throw new Error(C(10));o=p,f({type:_e.REPLACE})}function d(){var p,b=h;return p={subscribe:function(g){if(typeof g!="object"||g===null)throw new Error(C(11));function x(){g.next&&g.next(l())}x();var w=b(x);return{unsubscribe:w}}},p[nr]=function(){return this},p}return f({type:_e.INIT}),n={dispatch:f,subscribe:h,getState:l,replaceReducer:v},n[nr]=d,n}function Jr(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:_e.INIT});if(typeof n>"u")throw new Error(C(12));if(typeof r(void 0,{type:_e.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(C(13))})}function or(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var o=e[n];typeof t[o]=="function"&&(r[o]=t[o])}var i=Object.keys(r),a,s;try{Jr(r)}catch(c){s=c}return function(u,l){if(u===void 0&&(u={}),s)throw s;if(0)var h;for(var f=!1,v={},d=0;d<i.length;d++){var p=i[d],b=r[p],y=u[p],g=b(y,l);if(typeof g>"u"){var x=l&&l.type;throw new Error(C(14))}v[p]=g,f=f||g!==y}return f=f||i.length!==Object.keys(u).length,f?v:u}}function ne(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return e.length===0?function(n){return n}:e.length===1?e[0]:e.reduce(function(n,o){return function(){return n(o.apply(void 0,arguments))}})}function ir(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(n){return function(){var o=n.apply(void 0,arguments),i=function(){throw new Error(C(15))},a={getState:o.getState,dispatch:function(){return i.apply(void 0,arguments)}},s=e.map(function(c){return c(a)});return i=ne.apply(void 0,s)(o.dispatch),ke(ke({},o),{},{dispatch:i})}}}function ar(t){var e=function(n){var o=n.dispatch,i=n.getState;return function(a){return function(s){return typeof s=="function"?s(o,i,t):a(s)}}};return e}var sr=ar();sr.withExtraArgument=ar;var st=sr;var dr=function(){var t=function(e,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(n[i]=o[i])},t(e,r)};return function(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");t(e,r);function n(){this.constructor=e}e.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),Yr=function(t,e){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},n,o,i,a;return a={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(u){return function(l){return c([u,l])}}function c(u){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,o&&(i=u[0]&2?o.return:u[0]?o.throw||((i=o.return)&&i.call(o),0):o.next)&&!(i=i.call(o,u[1])).done)return i;switch(o=0,i&&(u=[u[0]&2,i.value]),u[0]){case 0:case 1:i=u;break;case 4:return r.label++,{value:u[1],done:!1};case 5:r.label++,o=u[1],u=[0];continue;case 7:u=r.ops.pop(),r.trys.pop();continue;default:if(i=r.trys,!(i=i.length>0&&i[i.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!i||u[1]>i[0]&&u[1]<i[3])){r.label=u[1];break}if(u[0]===6&&r.label<i[1]){r.label=i[1],i=u;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(u);break}i[2]&&r.ops.pop(),r.trys.pop();continue}u=e.call(t,r)}catch(l){u=[6,l],o=0}finally{n=i=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},oe=function(t,e){for(var r=0,n=e.length,o=t.length;r<n;r++,o++)t[o]=e[r];return t},Qr=Object.defineProperty,Zr=Object.defineProperties,en=Object.getOwnPropertyDescriptors,ur=Object.getOwnPropertySymbols,tn=Object.prototype.hasOwnProperty,rn=Object.prototype.propertyIsEnumerable,cr=function(t,e,r){return e in t?Qr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},K=function(t,e){for(var r in e||(e={}))tn.call(e,r)&&cr(t,r,e[r]);if(ur)for(var n=0,o=ur(e);n<o.length;n++){var r=o[n];rn.call(e,r)&&cr(t,r,e[r])}return t},ut=function(t,e){return Zr(t,en(e))},nn=function(t,e,r){return new Promise(function(n,o){var i=function(c){try{s(r.next(c))}catch(u){o(u)}},a=function(c){try{s(r.throw(c))}catch(u){o(u)}},s=function(c){return c.done?n(c.value):Promise.resolve(c.value).then(i,a)};s((r=r.apply(t,e)).next())})};var on=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?ne:ne.apply(null,arguments)},Fo=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function an(t){if(typeof t!="object"||t===null)return!1;var e=Object.getPrototypeOf(t);if(e===null)return!0;for(var r=e;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return e===r}var sn=function(t){dr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,oe([void 0],r[0].concat(this)))):new(e.bind.apply(e,oe([void 0],r.concat(this))))},e}(Array),un=function(t){dr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,oe([void 0],r[0].concat(this)))):new(e.bind.apply(e,oe([void 0],r.concat(this))))},e}(Array);function ft(t){return N(t)?je(t,function(){}):t}function cn(t){return typeof t=="boolean"}function ln(){return function(e){return fn(e)}}function fn(t){t===void 0&&(t={});var e=t.thunk,r=e===void 0?!0:e,n=t.immutableCheck,o=n===void 0?!0:n,i=t.serializableCheck,a=i===void 0?!0:i,s=new sn;if(r&&(cn(r)?s.push(st):s.push(st.withExtraArgument(r.extraArgument))),0){if(o)var c;if(a)var u}return s}var ct=!0;function pr(t){var e=ln(),r=t||{},n=r.reducer,o=n===void 0?void 0:n,i=r.middleware,a=i===void 0?e():i,s=r.devTools,c=s===void 0?!0:s,u=r.preloadedState,l=u===void 0?void 0:u,h=r.enhancers,f=h===void 0?void 0:h,v;if(typeof o=="function")v=o;else if(an(o))v=or(o);else throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');var d=a;if(typeof d=="function"&&(d=d(e),!ct&&!Array.isArray(d)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!ct&&d.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var p=ir.apply(void 0,d),b=ne;c&&(b=on(K({trace:!ct},typeof c=="object"&&c)));var y=new un(p),g=y;Array.isArray(f)?g=oe([p],f):typeof f=="function"&&(g=f(y));var x=b.apply(void 0,g);return at(v,l,x)}function $(t,e){function r(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];if(e){var i=e.apply(void 0,n);if(!i)throw new Error("prepareAction did not return an object");return K(K({type:t,payload:i.payload},"meta"in i&&{meta:i.meta}),"error"in i&&{error:i.error})}return{type:t,payload:n[0]}}return r.toString=function(){return""+t},r.type=t,r.match=function(n){return n.type===t},r}function hr(t){var e={},r=[],n,o={addCase:function(i,a){var s=typeof i=="string"?i:i.type;if(s in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[s]=a,o},addMatcher:function(i,a){return r.push({matcher:i,reducer:a}),o},addDefaultCase:function(i){return n=i,o}};return t(o),[e,r,n]}function dn(t){return typeof t=="function"}function pn(t,e,r,n){r===void 0&&(r=[]);var o=typeof e=="function"?hr(e):[e,r,n],i=o[0],a=o[1],s=o[2],c;if(dn(t))c=function(){return ft(t())};else{var u=ft(t);c=function(){return u}}function l(h,f){h===void 0&&(h=c());var v=oe([i[f.type]],a.filter(function(d){var p=d.matcher;return p(f)}).map(function(d){var p=d.reducer;return p}));return v.filter(function(d){return!!d}).length===0&&(v=[s]),v.reduce(function(d,p){if(p)if(L(d)){var b=d,y=p(b,f);return y===void 0?d:y}else{if(N(d))return je(d,function(g){return p(g,f)});var y=p(d,f);if(y===void 0){if(d===null)return d;throw Error("A case reducer on a non-draftable value must not return undefined")}return y}return d},h)}return l.getInitialState=c,l}function hn(t,e){return t+"/"+e}function vr(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof t.initialState=="function"?t.initialState:ft(t.initialState),n=t.reducers||{},o=Object.keys(n),i={},a={},s={};o.forEach(function(l){var h=n[l],f=hn(e,l),v,d;"reducer"in h?(v=h.reducer,d=h.prepare):v=h,i[l]=v,a[f]=v,s[l]=d?$(f,d):$(f)});function c(){var l=typeof t.extraReducers=="function"?hr(t.extraReducers):[t.extraReducers],h=l[0],f=h===void 0?{}:h,v=l[1],d=v===void 0?[]:v,p=l[2],b=p===void 0?void 0:p,y=K(K({},f),a);return pn(r,function(g){for(var x in y)g.addCase(x,y[x]);for(var w=0,U=d;w<U.length;w++){var I=U[w];g.addMatcher(I.matcher,I.reducer)}b&&g.addDefaultCase(b)})}var u;return{name:e,reducer:function(l,h){return u||(u=c()),u(l,h)},actions:s,caseReducers:i,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var vn="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",mn=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=vn[Math.random()*64|0];return e},yn=["name","message","stack","code"],lt=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),lr=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),gn=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=yn;r<n.length;r++){var o=n[r];typeof t[o]=="string"&&(e[o]=t[o])}return e}return{message:String(t)}},Wo=function(){function t(e,r,n){var o=$(e+"/fulfilled",function(l,h,f,v){return{payload:l,meta:ut(K({},v||{}),{arg:f,requestId:h,requestStatus:"fulfilled"})}}),i=$(e+"/pending",function(l,h,f){return{payload:void 0,meta:ut(K({},f||{}),{arg:h,requestId:l,requestStatus:"pending"})}}),a=$(e+"/rejected",function(l,h,f,v,d){return{payload:v,error:(n&&n.serializeError||gn)(l||"Rejected"),meta:ut(K({},d||{}),{arg:f,requestId:h,rejectedWithValue:!!v,requestStatus:"rejected",aborted:l?.name==="AbortError",condition:l?.name==="ConditionError"})}}),s=!1,c=typeof AbortController<"u"?AbortController:function(){function l(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return l.prototype.abort=function(){},l}();function u(l){return function(h,f,v){var d=n?.idGenerator?n.idGenerator(l):mn(),p=new c,b,y=!1;function g(w){b=w,p.abort()}var x=function(){return nn(this,null,function(){var w,U,I,ae,bt,se,wt;return Yr(this,function(Q){switch(Q.label){case 0:return Q.trys.push([0,4,,5]),ae=(w=n?.condition)==null?void 0:w.call(n,l,{getState:f,extra:v}),wn(ae)?[4,ae]:[3,2];case 1:ae=Q.sent(),Q.label=2;case 2:if(ae===!1||p.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=!0,bt=new Promise(function(M,ue){return p.signal.addEventListener("abort",function(){return ue({name:"AbortError",message:b||"Aborted"})})}),h(i(d,l,(U=n?.getPendingMeta)==null?void 0:U.call(n,{requestId:d,arg:l},{getState:f,extra:v}))),[4,Promise.race([bt,Promise.resolve(r(l,{dispatch:h,getState:f,extra:v,requestId:d,signal:p.signal,abort:g,rejectWithValue:function(M,ue){return new lt(M,ue)},fulfillWithValue:function(M,ue){return new lr(M,ue)}})).then(function(M){if(M instanceof lt)throw M;return M instanceof lr?o(M.payload,d,l,M.meta):o(M,d,l)})])];case 3:return I=Q.sent(),[3,5];case 4:return se=Q.sent(),I=se instanceof lt?a(null,d,l,se.payload,se.meta):a(se,d,l),[3,5];case 5:return wt=n&&!n.dispatchConditionRejection&&a.match(I)&&I.meta.condition,wt||h(I),[2,I]}})})}();return Object.assign(x,{abort:g,requestId:d,arg:l,unwrap:function(){return x.then(bn)}})}}return Object.assign(u,{pending:i,rejected:a,fulfilled:o,typePrefix:e})}return t.withTypes=function(){return t},t}();function bn(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function wn(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var mr="listener",yr="completed",gr="cancelled",qo="task-"+gr,Bo="task-"+yr,Ho=mr+"-"+gr,Ko=mr+"-"+yr;var dt="listenerMiddleware";var $o=$(dt+"/add"),Go=$(dt+"/removeAll"),Xo=$(dt+"/remove");var fr,Jo=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(fr||(fr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},Sn=function(t){return function(e){setTimeout(e,t)}},Yo=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:Sn(10);Zt();function xn(t,e){return class extends t{constructor(){super(...arguments),this.eventBus=e??document.createElement("span")}addEventListener(r,n,o){this.eventBus.addEventListener(r,n,o)}dispatchEvent(r){return this.eventBus.dispatchEvent(r)}removeEventListener(r,n,o){this.eventBus.removeEventListener(r,n,o)}}}var Me=class extends xn(Object){};window.ftReduxStores||(window.ftReduxStores={});var br=class t extends Me{static get(e){var r;let n=typeof e=="string"?e:e.name,o=typeof e=="string"?void 0:e,i=window.ftReduxStores[n];if(le(i))return i;if(o==null)return;let a=vr({...o,reducers:(r=o.reducers)!==null&&r!==void 0?r:{}}),s=pr({reducer:(c,u)=>u.type==="CLEAR_FT_REDUX_STORE"?a.getInitialState():typeof u.type=="string"&&u.type.startsWith("DEFAULT_VALUE_SETTER__")?{...c,...u.overwrites}:a.reducer(c,u)});return window.ftReduxStores[o.name]=new t(a,s)}constructor(e,r){super(),this.reduxSlice=e,this.reduxStore=r,this.isFtReduxStore=!0,this.commands=new we,this.actions=new Proxy(this.reduxSlice.actions,{get:(n,o,i)=>{let a=o,s=n[a];return s?(...c)=>{let u=s(...c);return this.reduxStore.dispatch(u),u}:c=>{this.setState({[a]:c})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(e){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(e).join("_"),overwrites:e})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(e){throw new Error("Not implemented yet.")}subscribe(e){return this.reduxStore.subscribe(e)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var Re=O(j());var De=class extends T{async listMySearches(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(e.profile.userId),5*60*1e3):[]}};var Ne=class extends T{async listMyBookmarks(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(e.profile.userId),5*60*1e3):[]}};var En="ft-user-assets",Te=Re.FtReduxStore.get({name:En,initialState:{savedSearches:void 0,bookmarks:void 0}}),pt=class{constructor(){this.currentSession=m.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Ne,this.savedSearchesService=new De,m.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var e;let{session:r}=m.getState();(0,Re.deepEqual)((e=this.currentSession)===null||e===void 0?void 0:e.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),Te.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Te.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();Te.actions.savedSearches(e)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var e;if(this.bookmarksAreUsed){let r=!((e=this.currentSession)===null||e===void 0)&&e.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;Te.actions.bookmarks(r)}}},ki=new pt;var ht=class{addCommand(e,r=!1){m.commands.add(e,r)}consumeCommand(e){return m.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new ht;var wr=O(j()),vt=class{highlightHtml(e,r,n){(0,wr.highlightHtml)(e,r,n)}};window.FluidTopicsHighlightHtmlService=new vt;var Sr=O(j());var mt=class{isDate(e){var r,n,o,i;return(i=(o=((n=(r=m.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===e))===null||o===void 0?void 0:o.date)!==null&&i!==void 0?i:!1}format(e,r){var n,o,i;return Sr.DateFormatter.format(e,(n=r?.locale)!==null&&n!==void 0?n:m.getState().uiLocale,(o=r?.longFormat)!==null&&o!==void 0?o:!1,(i=r?.withTime)!==null&&i!==void 0?i:!1)}};window.FluidTopicsDateService=new mt;var An=O(j());(0,xr.customElement)("ft-app-context")(E);var yt="/assets/scripts/highlightjs",Cn=`${yt}/core.min.js`,Ie=class extends T{coreHighlight(){var e;return(e=this.api)===null||e===void 0?void 0:e.makeAbsolute(Cn)}languageHighlight(){var e;return(e=this.api)===null||e===void 0?void 0:e.makeAbsolute(`${yt}/languages`)}styleHighlight(){var e;return(e=this.api)===null||e===void 0?void 0:e.makeAbsolute(`${yt}/styles`)}};var Le=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},Or=/^[a-z-]+$/,F=class extends Er.FtLitElement{constructor(){super(...arguments),this.language="",this.theme="monokai",this.codeHighlightService=new Ie}isHighlightable(){return Or.test(this.language)&&Or.test(this.theme)}async initHljs(){return window.hljs===void 0&&(window.hljs=(await import(this.codeHighlightService.coreHighlight())).default),window.hljs}shouldUpdate(){return this.isHighlightable()}async updated(){let e=await this.initHljs();e.listLanguages().indexOf(this.language)===-1&&await import(`${this.codeHighlightService.languageHighlight()}/${this.language}.min.js`),this.code.getAttribute("data-highlighted")==="yes"&&this.code.removeAttribute("data-highlighted"),e.highlightElement(this.code)}render(){if(!this.isHighlightable())return gt.html`
|
|
11
|
-
<div>
|
|
12
|
-
<slot></slot>
|
|
13
|
-
</div>`;let e=this.codeHighlightService.styleHighlight();return gt.html`
|
|
10
|
+
`}update(e){var r,n,o,i,a;super.update(e),e.has("baseUrl")&&(m.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),e.has("apiIntegrationIdentifier")&&m.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),e.has("uiLocale")&&m.actions.uiLocale(this.uiLocale),e.has("metadataConfiguration")&&m.actions.metadataConfiguration(this.metadataConfiguration),e.has("noCustom")&&m.actions.noCustom(this.noCustom),e.has("editorMode")&&m.actions.editorMode(this.editorMode),e.has("noCustomComponent")&&m.actions.noCustomComponent(this.noCustomComponent),e.has("session")&&m.actions.session(this.session),e.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(s=>Mt.addContext(s)),e.has("openExternalDocumentInNewTab")&&m.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),e.has("navigatorOnline")&&m.actions.navigatorOnline(this.navigatorOnline),e.has("forcedOffline")&&m.actions.forcedOffline(this.forcedOffline),e.has("localesConfiguration")&&(m.actions.defaultLocales((r=this.localesConfiguration)===null||r===void 0?void 0:r.defaultLocales),m.actions.availableUiLocales((o=(n=this.localesConfiguration)===null||n===void 0?void 0:n.availableUiLocales)!==null&&o!==void 0?o:[]),m.actions.searchInAllLanguagesAllowed((a=(i=this.localesConfiguration)===null||i===void 0?void 0:i.allLanguagesAllowed)!==null&&a!==void 0?a:!1)),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){this.apiProvider()&&(this.withManualResources||(this.session==null&&this.updateSession(),this.metadataConfiguration==null&&this.updateMetadataConfiguration()),this.localesConfiguration==null&&this.updateLocalesConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let e=await this.apiProvider().getCurrentSession();return e.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},e.idleTimeoutInMillis),e})}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}async updateLocalesConfiguration(){this.localesConfiguration=await this.cache.get("localesConfiguration",()=>this.apiProvider().getLocalesConfiguration())}};O.elementDefinitions={};O.styles=Pt;A([(0,P.property)()],O.prototype,"baseUrl",void 0);A([(0,P.property)()],O.prototype,"apiIntegrationIdentifier",void 0);A([(0,P.property)()],O.prototype,"uiLocale",void 0);A([(0,D.jsonProperty)(null)],O.prototype,"availableUiLocales",void 0);A([(0,D.jsonProperty)(null)],O.prototype,"metadataConfiguration",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"editorMode",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"noCustom",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"openExternalDocumentInNewTab",void 0);A([(0,P.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],O.prototype,"noCustomComponent",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"withManualResources",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"navigatorOnline",void 0);A([(0,P.property)({type:Boolean})],O.prototype,"forcedOffline",void 0);A([(0,P.property)({type:Object})],O.prototype,"apiProvider",void 0);A([(0,D.jsonProperty)([])],O.prototype,"messageContexts",void 0);A([(0,D.jsonProperty)(void 0)],O.prototype,"session",void 0);A([(0,P.state)()],O.prototype,"localesConfiguration",void 0);var xn=E(G());function Rr(t,e){if(t===e)return!0;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(t.constructor!==e.constructor)return!1;var r,n,o;if(Array.isArray(t)){if(r=t.length,r!=e.length)return!1;for(n=r;n--!==0;)if(!we(t[n],e[n]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;for(n of t.entries())if(!we(n[1],e.get(n[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(n of t.entries())if(!e.has(n[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(o=Object.keys(t),r=o.length,r!==Object.keys(e).length)return!1;for(n=r;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,o[n]))return!1;for(n=r;n--!==0;){var i=o[n];if(!we(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function we(t,e){try{return Rr(t,e)}catch{return!1}}function ze(t,e){return!we(t,e)}var Ir=E(G(),1);var Se=class{constructor(){this.queue=[]}add(e,r=!1){r&&(this.queue=this.queue.filter(n=>n.type!==e.type)),this.queue.push(e)}consume(e){let r=this.queue.find(n=>n.type===e);return r&&(this.queue=this.queue.filter(n=>n!==r)),r}};var ce=E(G(),1);var _t=E(G(),1);function Dt(t,e){let r=()=>JSON.parse(JSON.stringify(t));return(0,_t.property)({type:Object,converter:{fromAttribute:n=>{if(n==null)return r();try{return JSON.parse(n)}catch{return r()}},toAttribute:n=>JSON.stringify(n)},hasChanged:ze,...e??{}})}var xe=class{constructor(e=0){this.timeout=e,this.callbacks=[]}run(e,r){return this.callbacks=[e],this.debounce(r)}queue(e,r){return this.callbacks.push(e),this.debounce(r)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(e){return this.promise==null&&(this.promise=new Promise((r,n)=>{this.resolvePromise=r,this.rejectPromise=n})),this.clearTimeout(),this._debounce=window.setTimeout(()=>this.runCallbacks(),e??this.timeout),this.promise}async runCallbacks(){var e,r;let n=[...this.callbacks];this.callbacks=[];let o=(e=this.rejectPromise)!==null&&e!==void 0?e:()=>null,i=(r=this.resolvePromise)!==null&&r!==void 0?r:()=>null;this.clearPromise();for(let a of n)try{await a()}catch(s){o(s);return}i(!0)}clearTimeout(){this._debounce!=null&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}};var Tt=E(ee(),1);var Ee=window,Lr=Ee.ShadowRoot&&(Ee.ShadyCSS===void 0||Ee.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,eo=Symbol();var Nt=(t,e)=>{Lr?t.adoptedStyleSheets=e.map(r=>r instanceof CSSStyleSheet?r:r.styleSheet):e.forEach(r=>{let n=document.createElement("style"),o=Ee.litNonce;o!==void 0&&n.setAttribute("nonce",o),n.textContent=r.cssText,t.appendChild(n)})};var Oe=class extends Tt.LitElement{createRenderRoot(){let e=this.constructor;e.elementDefinitions&&!e.registry&&(e.registry=new CustomElementRegistry,Object.entries(e.elementDefinitions).forEach(([o,i])=>e.registry.define(o,i)));let r={...e.shadowRootOptions,customElements:e.registry},n=this.renderOptions.creationScope=this.attachShadow(r);return Nt(n,e.elementStyles),n}};var Ae=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},Ft,Rt=Symbol("constructorPrototype"),It=Symbol("constructorName"),Ut=Symbol("exportpartsDebouncer"),Lt=Symbol("dynamicDependenciesLoaded"),z=class extends Oe{constructor(){super(),this.useAdoptedStyleSheets=!0,this.adoptedCustomStyleSheet=new CSSStyleSheet,this[Ft]=new xe(5),this[It]=this.constructor.name,this[Rt]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[It]&&Object.setPrototypeOf(this,this[Rt])}connectedCallback(){super.connectedCallback();try{this.shadowRoot&&!this.shadowRoot.adoptedStyleSheets.includes(this.adoptedCustomStyleSheet)&&(this.shadowRoot.adoptedStyleSheets=[...this.shadowRoot.adoptedStyleSheets,this.adoptedCustomStyleSheet]),this.useAdoptedStyleSheets=!0}catch(r){this.useAdoptedStyleSheets=!1,console.error("Cannot use adopted stylesheets",r)}let e=this.constructor;e[Lt]||(e[Lt]=!0,this.importDynamicDependencies())}importDynamicDependencies(){}updated(e){super.updated(e),this.updateComplete.then(()=>{this.contentAvailableCallback(e),this.applyCustomStylesheet(e),this.scheduleExportpartsUpdate()})}contentAvailableCallback(e){}applyCustomStylesheet(e){var r,n,o;if(((n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll(".ft-lit-element--custom-stylesheet"))!==null&&n!==void 0?n:[]).forEach(i=>i.remove()),this.useAdoptedStyleSheets){if(e.has("customStylesheet"))try{this.adoptedCustomStyleSheet.replaceSync((o=this.customStylesheet)!==null&&o!==void 0?o:"")}catch(i){console.error(i,this.customStylesheet),this.useAdoptedStyleSheets=!1}}else if(this.customStylesheet){let i=document.createElement("style");i.classList.add("ft-lit-element--custom-stylesheet"),i.innerHTML=this.customStylesheet,this.shadowRoot.append(i)}}scheduleExportpartsUpdate(){var e,r,n;(!((e=this.exportpartsPrefix)===null||e===void 0)&&e.trim()||(n=(r=this.exportpartsPrefixes)===null||r===void 0?void 0:r.length)!==null&&n!==void 0&&n)&&this[Ut].run(()=>{var o,i;!((o=this.exportpartsPrefix)===null||o===void 0)&&o.trim()?this.setExportpartsAttribute([this.exportpartsPrefix]):this.exportpartsPrefixes!=null&&((i=this.exportpartsPrefixes)===null||i===void 0?void 0:i.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)})}setExportpartsAttribute(e){var r,n,o,i,a,s;let c=f=>f!=null&&f.trim().length>0,u=e.filter(c).map(f=>f.trim());if(u.length===0){this.removeAttribute("exportparts");return}let l=new Set;for(let f of(n=(r=this.shadowRoot)===null||r===void 0?void 0:r.querySelectorAll("[part],[exportparts]"))!==null&&n!==void 0?n:[]){let v=(i=(o=f.getAttribute("part"))===null||o===void 0?void 0:o.split(" "))!==null&&i!==void 0?i:[],d=(s=(a=f.getAttribute("exportparts"))===null||a===void 0?void 0:a.split(",").map(p=>p.split(":")[1]))!==null&&s!==void 0?s:[];new Array(...v,...d).filter(c).map(p=>p.trim()).forEach(p=>l.add(p))}if(l.size===0){this.removeAttribute("exportparts");return}let h=[...l.values()].flatMap(f=>u.map(v=>`${f}:${v}--${f}`));this.setAttribute("exportparts",[...this.part,...h].join(", "))}};Ft=Ut;Ae([(0,ce.property)()],z.prototype,"exportpartsPrefix",void 0);Ae([Dt([])],z.prototype,"exportpartsPrefixes",void 0);Ae([(0,ce.property)()],z.prototype,"customStylesheet",void 0);Ae([(0,ce.state)()],z.prototype,"useAdoptedStyleSheets",void 0);function le(t){var e;return(e=t?.isFtReduxStore)!==null&&e!==void 0?e:!1}var Vt,zt,Wt,fe=Symbol("internalReduxEventsUnsubscribers"),W=Symbol("internalStoresUnsubscribers"),J=Symbol("internalStores"),de=class extends z{constructor(){super(...arguments),this[Vt]=new Map,this[zt]=new Map,this[Wt]=new Map}get reduxConstructor(){return this.constructor}update(e){super.update(e),[...this.reduxConstructor.reduxReactiveProperties].some(r=>e.has(r))&&this.updateFromStores()}getUnnamedStore(){if(this[J].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[J].values()][0]}getStore(e){return e==null?this.getUnnamedStore():this[J].get(e)}addStore(e,r){var n;r=(n=r??(le(e)?e.name:void 0))!==null&&n!==void 0?n:"default-store",this.unsubscribeFromStore(r),this[J].set(r,e),this.subscribeToStore(r,e),this.updateFromStores()}removeStore(e){let r=typeof e=="string"?e:e.name;this.unsubscribeFromStore(r),this[J].delete(r)}setupStores(){this.unsubscribeFromStores(),this[J].forEach((e,r)=>this.subscribeToStore(r,e)),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach((e,r)=>{let n=this.constructor.getPropertyOptions(r);if(!n?.attribute||!this.hasAttribute(typeof n?.attribute=="string"?n.attribute:r)){let o=this.getStore(e.store);o&&(e.store?this[W].has(e.store):this[W].size>0)&&(this[r]=e.selector(o.getState(),this))}})}subscribeToStore(e,r){var n;this[W].set(e,r.subscribe(()=>this.updateFromStores())),this[fe].set(e,[]),le(r)&&r.eventBus&&((n=this.reduxConstructor.reduxEventListeners)===null||n===void 0||n.forEach((o,i)=>{if(typeof this[i]=="function"&&(!o.store||r.name===o.store)){let a=s=>this[i](s);r.addEventListener(o.eventName,a),this[fe].get(e).push(()=>r.removeEventListener(o.eventName,a))}})),this.onStoreAvailable(e)}unsubscribeFromStores(){this[W].forEach((e,r)=>this.unsubscribeFromStore(r))}unsubscribeFromStore(e){var r;this[W].has(e)&&this[W].get(e)(),this[W].delete(e),(r=this[fe].get(e))===null||r===void 0||r.forEach(n=>n()),this[fe].delete(e)}onStoreAvailable(e){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}};Vt=W,zt=J,Wt=fe;de.reduxProperties=new Map;de.reduxReactiveProperties=new Set;de.reduxEventListeners=new Map;function k(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(0)var o,i;throw Error("[Immer] minified error nr: "+t+(r.length?" "+r.map(function(a){return"'"+a+"'"}).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function F(t){return!!t&&!!t[S]}function N(t){var e;return!!t&&(function(r){if(!r||typeof r!="object")return!1;var n=Object.getPrototypeOf(r);if(n===null)return!0;var o=Object.hasOwnProperty.call(n,"constructor")&&n.constructor;return o===Object||typeof o=="function"&&Function.toString.call(o)===Kr}(t)||Array.isArray(t)||!!t[Xt]||!!(!((e=t.constructor)===null||e===void 0)&&e[Xt])||Je(t)||Ye(t))}function Y(t,e,r){r===void 0&&(r=!1),ne(t)===0?(r?Object.keys:re)(t).forEach(function(n){r&&typeof n=="symbol"||e(n,t[n],t)}):t.forEach(function(n,o){return e(o,n,t)})}function ne(t){var e=t[S];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:Je(t)?2:Ye(t)?3:0}function te(t,e){return ne(t)===2?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Fr(t,e){return ne(t)===2?t.get(e):t[e]}function Jt(t,e,r){var n=ne(t);n===2?t.set(e,r):n===3?t.add(r):t[e]=r}function Yt(t,e){return t===e?t!==0||1/t==1/e:t!=t&&e!=e}function Je(t){return qr&&t instanceof Map}function Ye(t){return Br&&t instanceof Set}function q(t){return t.o||t.t}function Qe(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=er(t);delete e[S];for(var r=re(e),n=0;n<r.length;n++){var o=r[n],i=e[o];i.writable===!1&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(e[o]={configurable:!0,writable:!0,enumerable:i.enumerable,value:t[o]})}return Object.create(Object.getPrototypeOf(t),e)}function Ze(t,e){return e===void 0&&(e=!1),et(t)||F(t)||!N(t)||(ne(t)>1&&(t.set=t.add=t.clear=t.delete=Ur),Object.freeze(t),e&&Y(t,function(r,n){return Ze(n,!0)},!0)),t}function Ur(){k(2)}function et(t){return t==null||typeof t!="object"||Object.isFrozen(t)}function R(t){var e=Xe[t];return e||k(18,t),e}function Vr(t,e){Xe[t]||(Xe[t]=e)}function $e(){return he}function We(t,e){e&&(R("Patches"),t.u=[],t.s=[],t.v=e)}function Ce(t){He(t),t.p.forEach(zr),t.p=null}function He(t){t===he&&(he=t.l)}function qt(t){return he={p:[],l:he,h:t,m:!0,_:0}}function zr(t){var e=t[S];e.i===0||e.i===1?e.j():e.g=!0}function qe(t,e){e._=e.p.length;var r=e.p[0],n=t!==void 0&&t!==r;return e.h.O||R("ES5").S(e,t,n),n?(r[S].P&&(Ce(e),k(4)),N(t)&&(t=Pe(e,t),e.l||je(e,t)),e.u&&R("Patches").M(r[S].t,t,e.u,e.s)):t=Pe(e,r,[]),Ce(e),e.u&&e.v(e.u,e.s),t!==Zt?t:void 0}function Pe(t,e,r){if(et(e))return e;var n=e[S];if(!n)return Y(e,function(s,c){return Bt(t,n,e,s,c,r)},!0),e;if(n.A!==t)return e;if(!n.P)return je(t,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=n.i===4||n.i===5?n.o=Qe(n.k):n.o,i=o,a=!1;n.i===3&&(i=new Set(o),o.clear(),a=!0),Y(i,function(s,c){return Bt(t,n,o,s,c,r,a)}),je(t,o,!1),r&&t.u&&R("Patches").N(n,r,t.u,t.s)}return n.o}function Bt(t,e,r,n,o,i,a){if(F(o)){var s=Pe(t,o,i&&e&&e.i!==3&&!te(e.R,n)?i.concat(n):void 0);if(Jt(r,n,s),!F(s))return;t.m=!1}else a&&r.add(o);if(N(o)&&!et(o)){if(!t.h.D&&t._<1)return;Pe(t,o),e&&e.A.l||je(t,o)}}function je(t,e,r){r===void 0&&(r=!1),!t.l&&t.h.D&&t.m&&Ze(e,r)}function Be(t,e){var r=t[S];return(r?q(r):t)[e]}function Kt(t,e){if(e in t)for(var r=Object.getPrototypeOf(t);r;){var n=Object.getOwnPropertyDescriptor(r,e);if(n)return n;r=Object.getPrototypeOf(r)}}function B(t){t.P||(t.P=!0,t.l&&B(t.l))}function Ke(t){t.o||(t.o=Qe(t.t))}function Ge(t,e,r){var n=Je(e)?R("MapSet").F(e,r):Ye(e)?R("MapSet").T(e,r):t.O?function(o,i){var a=Array.isArray(o),s={i:a?1:0,A:i?i.A:$e(),P:!1,I:!1,R:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=s,u=ve;a&&(c=[s],u=pe);var l=Proxy.revocable(c,u),h=l.revoke,f=l.proxy;return s.k=f,s.j=h,f}(e,r):R("ES5").J(e,r);return(r?r.A:$e()).p.push(n),n}function Wr(t){return F(t)||k(22,t),function e(r){if(!N(r))return r;var n,o=r[S],i=ne(r);if(o){if(!o.P&&(o.i<4||!R("ES5").K(o)))return o.t;o.I=!0,n=$t(r,i),o.I=!1}else n=$t(r,i);return Y(n,function(a,s){o&&Fr(o.t,a)===s||Jt(n,a,e(s))}),i===3?new Set(n):n}(t)}function $t(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Qe(t)}function Qt(){function t(a,s){var c=i[a];return c?c.enumerable=s:i[a]=c={configurable:!0,enumerable:s,get:function(){var u=this[S];return ve.get(u,a)},set:function(u){var l=this[S];ve.set(l,a,u)}},c}function e(a){for(var s=a.length-1;s>=0;s--){var c=a[s][S];if(!c.P)switch(c.i){case 5:n(c)&&B(c);break;case 4:r(c)&&B(c)}}}function r(a){for(var s=a.t,c=a.k,u=re(c),l=u.length-1;l>=0;l--){var h=u[l];if(h!==S){var f=s[h];if(f===void 0&&!te(s,h))return!0;var v=c[h],d=v&&v[S];if(d?d.t!==f:!Yt(v,f))return!0}}var p=!!s[S];return u.length!==re(s).length+(p?0:1)}function n(a){var s=a.k;if(s.length!==a.t.length)return!0;var c=Object.getOwnPropertyDescriptor(s,s.length-1);if(c&&!c.get)return!0;for(var u=0;u<s.length;u++)if(!s.hasOwnProperty(u))return!0;return!1}function o(a){a.g&&k(3,JSON.stringify(q(a)))}var i={};Vr("ES5",{J:function(a,s){var c=Array.isArray(a),u=function(h,f){if(h){for(var v=Array(f.length),d=0;d<f.length;d++)Object.defineProperty(v,""+d,t(d,!0));return v}var p=er(f);delete p[S];for(var b=re(p),y=0;y<b.length;y++){var g=b[y];p[g]=t(g,h||!!p[g].enumerable)}return Object.create(Object.getPrototypeOf(f),p)}(c,a),l={i:c?5:4,A:s?s.A:$e(),P:!1,I:!1,R:{},l:s,t:a,k:u,o:null,g:!1,C:!1};return Object.defineProperty(u,S,{value:l,writable:!0}),u},S:function(a,s,c){c?F(s)&&s[S].A===a&&e(a.p):(a.u&&function u(l){if(l&&typeof l=="object"){var h=l[S];if(h){var f=h.t,v=h.k,d=h.R,p=h.i;if(p===4)Y(v,function(w){w!==S&&(f[w]!==void 0||te(f,w)?d[w]||u(v[w]):(d[w]=!0,B(h)))}),Y(f,function(w){v[w]!==void 0||te(v,w)||(d[w]=!1,B(h))});else if(p===5){if(n(h)&&(B(h),d.length=!0),v.length<f.length)for(var b=v.length;b<f.length;b++)d[b]=!1;else for(var y=f.length;y<v.length;y++)d[y]=!0;for(var g=Math.min(v.length,f.length),x=0;x<g;x++)v.hasOwnProperty(x)||(d[x]=!0),d[x]===void 0&&u(v[x])}}}}(a.p[0]),e(a.p))},K:function(a){return a.i===4?r(a):n(a)}})}var Ht,he,tt=typeof Symbol<"u"&&typeof Symbol("x")=="symbol",qr=typeof Map<"u",Br=typeof Set<"u",Gt=typeof Proxy<"u"&&Proxy.revocable!==void 0&&typeof Reflect<"u",Zt=tt?Symbol.for("immer-nothing"):((Ht={})["immer-nothing"]=!0,Ht),Xt=tt?Symbol.for("immer-draftable"):"__$immer_draftable",S=tt?Symbol.for("immer-state"):"__$immer_state";var Kr=""+Object.prototype.constructor,re=typeof Reflect<"u"&&Reflect.ownKeys?Reflect.ownKeys:Object.getOwnPropertySymbols!==void 0?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,er=Object.getOwnPropertyDescriptors||function(t){var e={};return re(t).forEach(function(r){e[r]=Object.getOwnPropertyDescriptor(t,r)}),e},Xe={},ve={get:function(t,e){if(e===S)return t;var r=q(t);if(!te(r,e))return function(o,i,a){var s,c=Kt(i,a);return c?"value"in c?c.value:(s=c.get)===null||s===void 0?void 0:s.call(o.k):void 0}(t,r,e);var n=r[e];return t.I||!N(n)?n:n===Be(t.t,e)?(Ke(t),t.o[e]=Ge(t.A.h,n,t)):n},has:function(t,e){return e in q(t)},ownKeys:function(t){return Reflect.ownKeys(q(t))},set:function(t,e,r){var n=Kt(q(t),e);if(n?.set)return n.set.call(t.k,r),!0;if(!t.P){var o=Be(q(t),e),i=o?.[S];if(i&&i.t===r)return t.o[e]=r,t.R[e]=!1,!0;if(Yt(r,o)&&(r!==void 0||te(t.t,e)))return!0;Ke(t),B(t)}return t.o[e]===r&&(r!==void 0||e in t.o)||Number.isNaN(r)&&Number.isNaN(t.o[e])||(t.o[e]=r,t.R[e]=!0),!0},deleteProperty:function(t,e){return Be(t.t,e)!==void 0||e in t.t?(t.R[e]=!1,Ke(t),B(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var r=q(t),n=Reflect.getOwnPropertyDescriptor(r,e);return n&&{writable:!0,configurable:t.i!==1||e!=="length",enumerable:n.enumerable,value:r[e]}},defineProperty:function(){k(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){k(12)}},pe={};Y(ve,function(t,e){pe[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}}),pe.deleteProperty=function(t,e){return pe.set.call(this,t,e,void 0)},pe.set=function(t,e,r){return ve.set.call(this,t[0],e,r,t[0])};var $r=function(){function t(r){var n=this;this.O=Gt,this.D=!0,this.produce=function(o,i,a){if(typeof o=="function"&&typeof i!="function"){var s=i;i=o;var c=n;return function(p){var b=this;p===void 0&&(p=s);for(var y=arguments.length,g=Array(y>1?y-1:0),x=1;x<y;x++)g[x-1]=arguments[x];return c.produce(p,function(w){var U;return(U=i).call.apply(U,[b,w].concat(g))})}}var u;if(typeof i!="function"&&k(6),a!==void 0&&typeof a!="function"&&k(7),N(o)){var l=qt(n),h=Ge(n,o,void 0),f=!0;try{u=i(h),f=!1}finally{f?Ce(l):He(l)}return typeof Promise<"u"&&u instanceof Promise?u.then(function(p){return We(l,a),qe(p,l)},function(p){throw Ce(l),p}):(We(l,a),qe(u,l))}if(!o||typeof o!="object"){if((u=i(o))===void 0&&(u=o),u===Zt&&(u=void 0),n.D&&Ze(u,!0),a){var v=[],d=[];R("Patches").M(o,u,v,d),a(v,d)}return u}k(21,o)},this.produceWithPatches=function(o,i){if(typeof o=="function")return function(u){for(var l=arguments.length,h=Array(l>1?l-1:0),f=1;f<l;f++)h[f-1]=arguments[f];return n.produceWithPatches(u,function(v){return o.apply(void 0,[v].concat(h))})};var a,s,c=n.produce(o,i,function(u,l){a=u,s=l});return typeof Promise<"u"&&c instanceof Promise?c.then(function(u){return[u,a,s]}):[c,a,s]},typeof r?.useProxies=="boolean"&&this.setUseProxies(r.useProxies),typeof r?.autoFreeze=="boolean"&&this.setAutoFreeze(r.autoFreeze)}var e=t.prototype;return e.createDraft=function(r){N(r)||k(8),F(r)&&(r=Wr(r));var n=qt(this),o=Ge(this,r,void 0);return o[S].C=!0,He(n),o},e.finishDraft=function(r,n){var o=r&&r[S],i=o.A;return We(i,n),qe(void 0,i)},e.setAutoFreeze=function(r){this.D=r},e.setUseProxies=function(r){r&&!Gt&&k(20),this.O=r},e.applyPatches=function(r,n){var o;for(o=n.length-1;o>=0;o--){var i=n[o];if(i.path.length===0&&i.op==="replace"){r=i.value;break}}o>-1&&(n=n.slice(o+1));var a=R("Patches").$;return F(r)?a(r,n):this.produce(r,function(s){return a(s,n)})},t}(),M=new $r,Hr=M.produce,po=M.produceWithPatches.bind(M),ho=M.setAutoFreeze.bind(M),vo=M.setUseProxies.bind(M),mo=M.applyPatches.bind(M),yo=M.createDraft.bind(M),go=M.finishDraft.bind(M),Me=Hr;function K(t){"@babel/helpers - typeof";return K=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(t)}function rt(t,e){if(K(t)!=="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(K(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}function nt(t){var e=rt(t,"string");return K(e)==="symbol"?e:String(e)}function ot(t,e,r){return e=nt(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function tr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),r.push.apply(r,n)}return r}function ke(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?tr(Object(r),!0).forEach(function(n){ot(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):tr(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function C(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var rr=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),it=function(){return Math.random().toString(36).substring(7).split("").join(".")},_e={INIT:"@@redux/INIT"+it(),REPLACE:"@@redux/REPLACE"+it(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+it()}};function Gr(t){if(typeof t!="object"||t===null)return!1;for(var e=t;Object.getPrototypeOf(e)!==null;)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function at(t,e,r){var n;if(typeof e=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(C(0));if(typeof e=="function"&&typeof r>"u"&&(r=e,e=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(C(1));return r(at)(t,e)}if(typeof t!="function")throw new Error(C(2));var o=t,i=e,a=[],s=a,c=!1;function u(){s===a&&(s=a.slice())}function l(){if(c)throw new Error(C(3));return i}function h(p){if(typeof p!="function")throw new Error(C(4));if(c)throw new Error(C(5));var b=!0;return u(),s.push(p),function(){if(b){if(c)throw new Error(C(6));b=!1,u();var g=s.indexOf(p);s.splice(g,1),a=null}}}function f(p){if(!Gr(p))throw new Error(C(7));if(typeof p.type>"u")throw new Error(C(8));if(c)throw new Error(C(9));try{c=!0,i=o(i,p)}finally{c=!1}for(var b=a=s,y=0;y<b.length;y++){var g=b[y];g()}return p}function v(p){if(typeof p!="function")throw new Error(C(10));o=p,f({type:_e.REPLACE})}function d(){var p,b=h;return p={subscribe:function(g){if(typeof g!="object"||g===null)throw new Error(C(11));function x(){g.next&&g.next(l())}x();var w=b(x);return{unsubscribe:w}}},p[rr]=function(){return this},p}return f({type:_e.INIT}),n={dispatch:f,subscribe:h,getState:l,replaceReducer:v},n[rr]=d,n}function Xr(t){Object.keys(t).forEach(function(e){var r=t[e],n=r(void 0,{type:_e.INIT});if(typeof n>"u")throw new Error(C(12));if(typeof r(void 0,{type:_e.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(C(13))})}function nr(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var o=e[n];typeof t[o]=="function"&&(r[o]=t[o])}var i=Object.keys(r),a,s;try{Xr(r)}catch(c){s=c}return function(u,l){if(u===void 0&&(u={}),s)throw s;if(0)var h;for(var f=!1,v={},d=0;d<i.length;d++){var p=i[d],b=r[p],y=u[p],g=b(y,l);if(typeof g>"u"){var x=l&&l.type;throw new Error(C(14))}v[p]=g,f=f||g!==y}return f=f||i.length!==Object.keys(u).length,f?v:u}}function oe(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return e.length===0?function(n){return n}:e.length===1?e[0]:e.reduce(function(n,o){return function(){return n(o.apply(void 0,arguments))}})}function or(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(n){return function(){var o=n.apply(void 0,arguments),i=function(){throw new Error(C(15))},a={getState:o.getState,dispatch:function(){return i.apply(void 0,arguments)}},s=e.map(function(c){return c(a)});return i=oe.apply(void 0,s)(o.dispatch),ke(ke({},o),{},{dispatch:i})}}}function ir(t){var e=function(n){var o=n.dispatch,i=n.getState;return function(a){return function(s){return typeof s=="function"?s(o,i,t):a(s)}}};return e}var ar=ir();ar.withExtraArgument=ir;var st=ar;var fr=function(){var t=function(e,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(n[i]=o[i])},t(e,r)};return function(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");t(e,r);function n(){this.constructor=e}e.prototype=r===null?Object.create(r):(n.prototype=r.prototype,new n)}}(),Jr=function(t,e){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},n,o,i,a;return a={next:s(0),throw:s(1),return:s(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(u){return function(l){return c([u,l])}}function c(u){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,o&&(i=u[0]&2?o.return:u[0]?o.throw||((i=o.return)&&i.call(o),0):o.next)&&!(i=i.call(o,u[1])).done)return i;switch(o=0,i&&(u=[u[0]&2,i.value]),u[0]){case 0:case 1:i=u;break;case 4:return r.label++,{value:u[1],done:!1};case 5:r.label++,o=u[1],u=[0];continue;case 7:u=r.ops.pop(),r.trys.pop();continue;default:if(i=r.trys,!(i=i.length>0&&i[i.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!i||u[1]>i[0]&&u[1]<i[3])){r.label=u[1];break}if(u[0]===6&&r.label<i[1]){r.label=i[1],i=u;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(u);break}i[2]&&r.ops.pop(),r.trys.pop();continue}u=e.call(t,r)}catch(l){u=[6,l],o=0}finally{n=i=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}},ie=function(t,e){for(var r=0,n=e.length,o=t.length;r<n;r++,o++)t[o]=e[r];return t},Yr=Object.defineProperty,Qr=Object.defineProperties,Zr=Object.getOwnPropertyDescriptors,sr=Object.getOwnPropertySymbols,en=Object.prototype.hasOwnProperty,tn=Object.prototype.propertyIsEnumerable,ur=function(t,e,r){return e in t?Yr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r},$=function(t,e){for(var r in e||(e={}))en.call(e,r)&&ur(t,r,e[r]);if(sr)for(var n=0,o=sr(e);n<o.length;n++){var r=o[n];tn.call(e,r)&&ur(t,r,e[r])}return t},ut=function(t,e){return Qr(t,Zr(e))},rn=function(t,e,r){return new Promise(function(n,o){var i=function(c){try{s(r.next(c))}catch(u){o(u)}},a=function(c){try{s(r.throw(c))}catch(u){o(u)}},s=function(c){return c.done?n(c.value):Promise.resolve(c.value).then(i,a)};s((r=r.apply(t,e)).next())})};var nn=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?oe:oe.apply(null,arguments)},Io=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(t){return t}};function on(t){if(typeof t!="object"||t===null)return!1;var e=Object.getPrototypeOf(t);if(e===null)return!0;for(var r=e;Object.getPrototypeOf(r)!==null;)r=Object.getPrototypeOf(r);return e===r}var an=function(t){fr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,ie([void 0],r[0].concat(this)))):new(e.bind.apply(e,ie([void 0],r.concat(this))))},e}(Array),sn=function(t){fr(e,t);function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=t.apply(this,r)||this;return Object.setPrototypeOf(o,e.prototype),o}return Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return t.prototype.concat.apply(this,r)},e.prototype.prepend=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.length===1&&Array.isArray(r[0])?new(e.bind.apply(e,ie([void 0],r[0].concat(this)))):new(e.bind.apply(e,ie([void 0],r.concat(this))))},e}(Array);function ft(t){return N(t)?Me(t,function(){}):t}function un(t){return typeof t=="boolean"}function cn(){return function(e){return ln(e)}}function ln(t){t===void 0&&(t={});var e=t.thunk,r=e===void 0?!0:e,n=t.immutableCheck,o=n===void 0?!0:n,i=t.serializableCheck,a=i===void 0?!0:i,s=new an;if(r&&(un(r)?s.push(st):s.push(st.withExtraArgument(r.extraArgument))),0){if(o)var c;if(a)var u}return s}var ct=!0;function dr(t){var e=cn(),r=t||{},n=r.reducer,o=n===void 0?void 0:n,i=r.middleware,a=i===void 0?e():i,s=r.devTools,c=s===void 0?!0:s,u=r.preloadedState,l=u===void 0?void 0:u,h=r.enhancers,f=h===void 0?void 0:h,v;if(typeof o=="function")v=o;else if(on(o))v=nr(o);else throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');var d=a;if(typeof d=="function"&&(d=d(e),!ct&&!Array.isArray(d)))throw new Error("when using a middleware builder function, an array of middleware must be returned");if(!ct&&d.some(function(w){return typeof w!="function"}))throw new Error("each middleware provided to configureStore must be a function");var p=or.apply(void 0,d),b=oe;c&&(b=nn($({trace:!ct},typeof c=="object"&&c)));var y=new sn(p),g=y;Array.isArray(f)?g=ie([p],f):typeof f=="function"&&(g=f(y));var x=b.apply(void 0,g);return at(v,l,x)}function H(t,e){function r(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];if(e){var i=e.apply(void 0,n);if(!i)throw new Error("prepareAction did not return an object");return $($({type:t,payload:i.payload},"meta"in i&&{meta:i.meta}),"error"in i&&{error:i.error})}return{type:t,payload:n[0]}}return r.toString=function(){return""+t},r.type=t,r.match=function(n){return n.type===t},r}function pr(t){var e={},r=[],n,o={addCase:function(i,a){var s=typeof i=="string"?i:i.type;if(s in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[s]=a,o},addMatcher:function(i,a){return r.push({matcher:i,reducer:a}),o},addDefaultCase:function(i){return n=i,o}};return t(o),[e,r,n]}function fn(t){return typeof t=="function"}function dn(t,e,r,n){r===void 0&&(r=[]);var o=typeof e=="function"?pr(e):[e,r,n],i=o[0],a=o[1],s=o[2],c;if(fn(t))c=function(){return ft(t())};else{var u=ft(t);c=function(){return u}}function l(h,f){h===void 0&&(h=c());var v=ie([i[f.type]],a.filter(function(d){var p=d.matcher;return p(f)}).map(function(d){var p=d.reducer;return p}));return v.filter(function(d){return!!d}).length===0&&(v=[s]),v.reduce(function(d,p){if(p)if(F(d)){var b=d,y=p(b,f);return y===void 0?d:y}else{if(N(d))return Me(d,function(g){return p(g,f)});var y=p(d,f);if(y===void 0){if(d===null)return d;throw Error("A case reducer on a non-draftable value must not return undefined")}return y}return d},h)}return l.getInitialState=c,l}function pn(t,e){return t+"/"+e}function hr(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");typeof process<"u";var r=typeof t.initialState=="function"?t.initialState:ft(t.initialState),n=t.reducers||{},o=Object.keys(n),i={},a={},s={};o.forEach(function(l){var h=n[l],f=pn(e,l),v,d;"reducer"in h?(v=h.reducer,d=h.prepare):v=h,i[l]=v,a[f]=v,s[l]=d?H(f,d):H(f)});function c(){var l=typeof t.extraReducers=="function"?pr(t.extraReducers):[t.extraReducers],h=l[0],f=h===void 0?{}:h,v=l[1],d=v===void 0?[]:v,p=l[2],b=p===void 0?void 0:p,y=$($({},f),a);return dn(r,function(g){for(var x in y)g.addCase(x,y[x]);for(var w=0,U=d;w<U.length;w++){var L=U[w];g.addMatcher(L.matcher,L.reducer)}b&&g.addDefaultCase(b)})}var u;return{name:e,reducer:function(l,h){return u||(u=c()),u(l,h)},actions:s,caseReducers:i,getInitialState:function(){return u||(u=c()),u.getInitialState()}}}var hn="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",vn=function(t){t===void 0&&(t=21);for(var e="",r=t;r--;)e+=hn[Math.random()*64|0];return e},mn=["name","message","stack","code"],lt=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),cr=function(){function t(e,r){this.payload=e,this.meta=r}return t}(),yn=function(t){if(typeof t=="object"&&t!==null){for(var e={},r=0,n=mn;r<n.length;r++){var o=n[r];typeof t[o]=="string"&&(e[o]=t[o])}return e}return{message:String(t)}},Vo=function(){function t(e,r,n){var o=H(e+"/fulfilled",function(l,h,f,v){return{payload:l,meta:ut($({},v||{}),{arg:f,requestId:h,requestStatus:"fulfilled"})}}),i=H(e+"/pending",function(l,h,f){return{payload:void 0,meta:ut($({},f||{}),{arg:h,requestId:l,requestStatus:"pending"})}}),a=H(e+"/rejected",function(l,h,f,v,d){return{payload:v,error:(n&&n.serializeError||yn)(l||"Rejected"),meta:ut($({},d||{}),{arg:f,requestId:h,rejectedWithValue:!!v,requestStatus:"rejected",aborted:l?.name==="AbortError",condition:l?.name==="ConditionError"})}}),s=!1,c=typeof AbortController<"u"?AbortController:function(){function l(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return l.prototype.abort=function(){},l}();function u(l){return function(h,f,v){var d=n?.idGenerator?n.idGenerator(l):vn(),p=new c,b,y=!1;function g(w){b=w,p.abort()}var x=function(){return rn(this,null,function(){var w,U,L,ae,gt,se,bt;return Jr(this,function(Z){switch(Z.label){case 0:return Z.trys.push([0,4,,5]),ae=(w=n?.condition)==null?void 0:w.call(n,l,{getState:f,extra:v}),bn(ae)?[4,ae]:[3,2];case 1:ae=Z.sent(),Z.label=2;case 2:if(ae===!1||p.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=!0,gt=new Promise(function(_,ue){return p.signal.addEventListener("abort",function(){return ue({name:"AbortError",message:b||"Aborted"})})}),h(i(d,l,(U=n?.getPendingMeta)==null?void 0:U.call(n,{requestId:d,arg:l},{getState:f,extra:v}))),[4,Promise.race([gt,Promise.resolve(r(l,{dispatch:h,getState:f,extra:v,requestId:d,signal:p.signal,abort:g,rejectWithValue:function(_,ue){return new lt(_,ue)},fulfillWithValue:function(_,ue){return new cr(_,ue)}})).then(function(_){if(_ instanceof lt)throw _;return _ instanceof cr?o(_.payload,d,l,_.meta):o(_,d,l)})])];case 3:return L=Z.sent(),[3,5];case 4:return se=Z.sent(),L=se instanceof lt?a(null,d,l,se.payload,se.meta):a(se,d,l),[3,5];case 5:return bt=n&&!n.dispatchConditionRejection&&a.match(L)&&L.meta.condition,bt||h(L),[2,L]}})})}();return Object.assign(x,{abort:g,requestId:d,arg:l,unwrap:function(){return x.then(gn)}})}}return Object.assign(u,{pending:i,rejected:a,fulfilled:o,typePrefix:e})}return t.withTypes=function(){return t},t}();function gn(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}function bn(t){return t!==null&&typeof t=="object"&&typeof t.then=="function"}var vr="listener",mr="completed",yr="cancelled",zo="task-"+yr,Wo="task-"+mr,qo=vr+"-"+yr,Bo=vr+"-"+mr;var dt="listenerMiddleware";var Ko=H(dt+"/add"),$o=H(dt+"/removeAll"),Ho=H(dt+"/remove");var lr,Go=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:typeof global<"u"?global:globalThis):function(t){return(lr||(lr=Promise.resolve())).then(t).catch(function(e){return setTimeout(function(){throw e},0)})},wn=function(t){return function(e){setTimeout(e,t)}},Xo=typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:wn(10);Qt();function Sn(t,e){return class extends t{constructor(){super(...arguments),this.eventBus=e??document.createElement("span")}addEventListener(r,n,o){this.eventBus.addEventListener(r,n,o)}dispatchEvent(r){return this.eventBus.dispatchEvent(r)}removeEventListener(r,n,o){this.eventBus.removeEventListener(r,n,o)}}}var De=class extends Sn(Object){};window.ftReduxStores||(window.ftReduxStores={});var gr=class t extends De{static get(e){var r;let n=typeof e=="string"?e:e.name,o=typeof e=="string"?void 0:e,i=window.ftReduxStores[n];if(le(i))return i;if(o==null)return;let a=hr({...o,reducers:(r=o.reducers)!==null&&r!==void 0?r:{}}),s=dr({reducer:(c,u)=>u.type==="CLEAR_FT_REDUX_STORE"?a.getInitialState():typeof u.type=="string"&&u.type.startsWith("DEFAULT_VALUE_SETTER__")?{...c,...u.overwrites}:a.reducer(c,u)});return window.ftReduxStores[o.name]=new t(a,s)}constructor(e,r){super(),this.reduxSlice=e,this.reduxStore=r,this.isFtReduxStore=!0,this.commands=new Se,this.actions=new Proxy(this.reduxSlice.actions,{get:(n,o,i)=>{let a=o,s=n[a];return s?(...c)=>{let u=s(...c);return this.reduxStore.dispatch(u),u}:c=>{this.setState({[a]:c})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(e){this.reduxStore.dispatch({type:"DEFAULT_VALUE_SETTER__"+Object.keys(e).join("_"),overwrites:e})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(e){throw new Error("Not implemented yet.")}subscribe(e){return this.reduxStore.subscribe(e)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}};var Ie=E(j());var Ne=class extends T{async listMySearches(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(e.profile.userId),5*60*1e3):[]}};var Te=class extends T{async listMyBookmarks(){let e=m.getState().session;return e?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(e.profile.userId),5*60*1e3):[]}};var En="ft-user-assets",Re=Ie.FtReduxStore.get({name:En,initialState:{savedSearches:void 0,bookmarks:void 0}}),pt=class{constructor(){this.currentSession=m.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Te,this.savedSearchesService=new Ne,m.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var e;let{session:r}=m.getState();(0,Ie.deepEqual)((e=this.currentSession)===null||e===void 0?void 0:e.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),Re.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Re.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let e=await this.savedSearchesService.listMySearches();Re.actions.savedSearches(e)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var e;if(this.bookmarksAreUsed){let r=!((e=this.currentSession)===null||e===void 0)&&e.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;Re.actions.bookmarks(r)}}},Pi=new pt;var ht=class{addCommand(e,r=!1){m.commands.add(e,r)}consumeCommand(e){return m.commands.consume(e)}};window.FluidTopicsAppInfoStoreService=new ht;var br=E(j()),vt=class{highlightHtml(e,r,n){(0,br.highlightHtml)(e,r,n)}};window.FluidTopicsHighlightHtmlService=new vt;var wr=E(j());var mt=class{isDate(e){var r,n,o,i;return(i=(o=((n=(r=m.getState().metadataConfiguration)===null||r===void 0?void 0:r.descriptors)!==null&&n!==void 0?n:[]).find(s=>s.key===e))===null||o===void 0?void 0:o.date)!==null&&i!==void 0?i:!1}format(e,r){var n,o,i;return wr.DateFormatter.format(e,(n=r?.locale)!==null&&n!==void 0?n:m.getState().uiLocale,(o=r?.longFormat)!==null&&o!==void 0?o:!1,(i=r?.withTime)!==null&&i!==void 0?i:!1)}};window.FluidTopicsDateService=new mt;var On=E(j());(0,Sr.customElement)("ft-app-context")(O);var Le=class extends T{constructor(){var e;super(),this.rootHighlight=(e=this.api)===null||e===void 0?void 0:e.makeAbsolute(this.api.endpoints.assets.highlightjs)}coreHighlight(){return`${this.rootHighlight}/core.min.js`}language(e){return`${this.rootHighlight}/languages/${e}.min.js`}theme(e){return`${this.rootHighlight}/styles/${e}.min.css`}};var me=function(t,e,r,n){var o=arguments.length,i=o<3?e:n===null?n=Object.getOwnPropertyDescriptor(e,r):n,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(t,e,r,n);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(o<3?a(i):o>3?a(e,r,i):a(e,r))||i);return o>3&&i&&Object.defineProperty(e,r,i),i},xr=/^[a-z-]+$/,I=class extends Er.FtLitElement{constructor(){super(...arguments),this.language="",this.theme="monokai",this.codeHighlightService=new Le,this.contentStyle=""}isHighlightable(){return xr.test(this.language)&&xr.test(this.theme)}async initHljs(){window.hljs===void 0&&(window.hljs=(await import(this.codeHighlightService.coreHighlight())).default)}async updated(e){await this.initHljs(),e.has("language")&&await this.updateLanguage(),e.has("theme")&&await this.fetchStyle()}async fetchStyle(){let e=await fetch(this.codeHighlightService.theme(this.theme));this.contentStyle=await e.text()}async updateLanguage(){window.hljs.listLanguages().indexOf(this.language)===-1&&await import(this.codeHighlightService.language(this.language)),this.code.getAttribute("data-highlighted")==="yes"&&this.code.removeAttribute("data-highlighted"),window.hljs.highlightElement(this.code)}render(){return this.isHighlightable()?yt.html`
|
|
14
11
|
<div>
|
|
15
12
|
<slot class="hidden"></slot>
|
|
16
|
-
<
|
|
13
|
+
<style>${this.contentStyle}</style>
|
|
17
14
|
<pre part="code" class="language-${this.language}">${this.textContent}</pre>
|
|
18
15
|
</div>
|
|
19
|
-
`
|
|
16
|
+
`:yt.html`
|
|
17
|
+
<div>
|
|
18
|
+
<slot></slot>
|
|
19
|
+
</div>`}};I.styles=At;me([(0,Q.property)()],I.prototype,"language",void 0);me([(0,Q.property)()],I.prototype,"theme",void 0);me([(0,Q.property)({attribute:!1})],I.prototype,"codeHighlightService",void 0);me([(0,Q.query)("[part='code']")],I.prototype,"code",void 0);me([(0,Q.property)({attribute:!1})],I.prototype,"contentStyle",void 0);(0,Or.customElement)("ft-code-highlight")(I);})();
|
|
20
20
|
/*! Bundled license information:
|
|
21
21
|
|
|
22
22
|
@lit/reactive-element/css-tag.js:
|