@odoo/o-spreadsheet 17.4.13 → 17.4.14

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.
@@ -87,7 +87,7 @@
87
87
  }
88
88
  }
89
89
  }
90
- `;class iv extends t.Component{static template="o-spreadsheet-Composer";static props={focus:{validate:e=>["inactive","cellFocus","contentFocus"].includes(e)},inputStyle:{type:String,optional:!0},rect:{type:Object,optional:!0},delimitation:{type:Object,optional:!0},onComposerCellFocused:{type:Function,optional:!0},onComposerContentFocused:Function,isDefaultFocus:{type:Boolean,optional:!0},onInputContextMenu:{type:Function,optional:!0}};static components={TextValueProvider:Zb,FunctionDescriptionProvider:Kb};static defaultProps={inputStyle:"",isDefaultFocus:!1};composerStore;DOMFocusableElementStore;composerRef=t.useRef("o_composer");contentHelper=new Yb(this.composerRef.el);composerState=t.useState({positionStart:0,positionEnd:0});autoCompleteState;functionDescriptionState=t.useState({showDescription:!1,functionName:"",functionDescription:{},argToFocus:0});compositionActive=!1;spreadsheetRect=$b();get assistantStyle(){const e=this.composerRef.el.getBoundingClientRect(),t={};t["min-width"]=`${this.props.rect?.width||Jb}px`;const o=this.autoCompleteState.provider?.proposals,s=o?.some((e=>e.description));if((this.functionDescriptionState.showDescription||s)&&(t.width="300px"),this.props.delimitation&&this.props.rect){const{x:e,y:o,height:s}=this.props.rect,i=this.props.delimitation.height-(o+s);if(t["max-height"]=`${i}px`,o>i){const e=o;t["max-height"]=`${e}px`,t.top="-3px",t.transform="translate(0, -100%)"}e+Jb>this.props.delimitation.width&&(t.right="0px")}else this.props.delimitation&&(t["max-height"]=`${this.props.delimitation.height}px`,e.left+Jb>this.spreadsheetRect.width&&(t.right="0px"));return Fb(t)}shouldProcessInputEvents=!1;tokens=[];keyMapping={Enter:e=>this.processEnterKey(e,"down"),"Shift+Enter":e=>this.processEnterKey(e,"up"),"Alt+Enter":this.processNewLineEvent,"Ctrl+Enter":this.processNewLineEvent,Escape:this.processEscapeKey,F2:()=>console.warn("Not implemented"),F4:e=>this.processF4Key(e),Tab:e=>this.processTabKey(e,"right"),"Shift+Tab":e=>this.processTabKey(e,"left")};keyCodeMapping={NumpadDecimal:this.processNumpadDecimal};setup(){this.composerStore=Rl(Ul),this.DOMFocusableElementStore=Rl(Rb),this.autoCompleteState=Tl(jb),t.onMounted((()=>{const e=this.composerRef.el;this.props.isDefaultFocus&&this.DOMFocusableElementStore.setFocusableElement(e),this.contentHelper.updateEl(e)})),t.useEffect((()=>{this.processContent()})),t.useEffect((()=>{this.processTokenAtCursor()}),(()=>["inactive"!==this.composerStore.editionMode]))}processArrowKeys(e){const t=this.composerStore.tokenAtCursor;if((this.composerStore.isSelectingRange||"inactive"===this.composerStore.editionMode)&&(!["ArrowUp","ArrowDown"].includes(e.key)||!this.autoCompleteState.provider||"REFERENCE"===t?.type))return this.functionDescriptionState.showDescription=!1,this.autoCompleteState.hide(),e.preventDefault(),e.stopPropagation(),void qb(e,this.env.model.selection);const o=this.composerStore.currentContent;"cellFocus"!==this.props.focus||this.autoCompleteState.provider||o.startsWith("=")?(e.stopPropagation(),this.handleArrowKeysForAutocomplete(e)):this.composerStore.stopEdition()}handleArrowKeysForAutocomplete(e){["ArrowUp","ArrowDown"].includes(e.key)&&this.autoCompleteState.provider&&(e.preventDefault(),this.autoCompleteState.moveSelection("ArrowDown"===e.key?"next":"previous"))}processTabKey(e,t){if(e.preventDefault(),e.stopPropagation(),"inactive"!==this.composerStore.editionMode){const e=this.autoCompleteState;if(e.provider&&void 0!==e.selectedIndex){const t=e.provider.proposals[e.selectedIndex]?.text;if(t)return void this.autoComplete(t)}this.composerStore.stopEdition()}this.env.model.selection.moveAnchorCell(t,1)}processEnterKey(e,t){e.preventDefault(),e.stopPropagation();const o=this.autoCompleteState;if(o.provider&&void 0!==o.selectedIndex){const e=o.provider.proposals[o.selectedIndex]?.text;if(e)return void this.autoComplete(e)}this.composerStore.stopEdition(),this.env.model.selection.moveAnchorCell(t,1)}processNewLineEvent(e){e.preventDefault(),e.stopPropagation();const t=this.contentHelper.getText(),o=this.contentHelper.getCurrentSelection(),s=Math.min(o.start,o.end),i=Math.max(o.start,o.end);this.composerStore.stopComposerRangeSelection(),this.composerStore.setCurrentContent(t.slice(0,s)+ue+t.slice(i),{start:s+1,end:s+1}),this.processContent()}processEscapeKey(){this.composerStore.cancelEdition()}processF4Key(e){e.stopPropagation(),this.composerStore.cycleReferences(),this.processContent()}processNumpadDecimal(e){e.stopPropagation(),e.preventDefault();const t=this.env.model.getters.getLocale(),o=this.contentHelper.getCurrentSelection(),s=this.composerStore.currentContent,i=s.slice(0,o.start)+t.decimalSeparator+s.slice(o.end);this.composerStore.setCurrentContent(i,{start:o.start+1,end:o.start+1}),this.processContent()}onCompositionStart(){this.compositionActive=!0}onCompositionEnd(){this.compositionActive=!1}onKeydown(e){if("inactive"===this.composerStore.editionMode)return;if(e.key.startsWith("Arrow"))return void this.processArrowKeys(e);let t=this.keyMapping[Hb(e)]||this.keyCodeMapping[Hb(e,"code")];t?t.call(this,e):e.stopPropagation()}onPaste(e){"inactive"!==this.composerStore.editionMode?e.stopPropagation():e.preventDefault()}onInput(e){if(!this.shouldProcessInputEvents)return;let t;if(e.stopPropagation(),t="inactive"===this.composerStore.editionMode?e.data||"":this.contentHelper.getText(),"inactive"===this.props.focus)return this.props.onComposerCellFocused?.(t);let o=this.contentHelper.getCurrentSelection();this.composerStore.stopComposerRangeSelection(),this.composerStore.setCurrentContent(t,o),this.processTokenAtCursor()}onKeyup(e){if(this.contentHelper.el===document.activeElement){if(this.autoCompleteState.provider&&["ArrowUp","ArrowDown"].includes(e.key))return;if(this.composerStore.isSelectingRange&&e.key?.startsWith("Arrow"))return;const{start:t,end:o}=this.composerStore.composerSelection,{start:s,end:i}=this.contentHelper.getCurrentSelection();s===t&&i===o||this.composerStore.changeComposerCursorSelection(s,i),this.processTokenAtCursor()}}updateAutoCompleteIndex(e){this.autoCompleteState.selectIndex(Ce(0,e,10))}onMousedown(e){e.button>0||this.contentHelper.removeSelection()}onClick(){if(this.env.model.getters.isReadonly())return;const e=this.contentHelper.getCurrentSelection();this.composerStore.stopComposerRangeSelection(),this.props.onComposerContentFocused(),this.composerStore.changeComposerCursorSelection(e.start,e.end),this.processTokenAtCursor()}onDblClick(){if(this.env.model.getters.isReadonly())return;const e=this.composerStore.currentContent;if(e.startsWith("=")){const t=this.composerStore.currentTokens,o=this.contentHelper.getCurrentSelection();if(o.start===o.end)return;const s=e.substring(o.start,o.end),i=t.filter((e=>e.value.includes(s)&&e.start<=o.start&&e.end>=o.end))[0];if(!i)return;"REFERENCE"===i.type&&this.composerStore.changeComposerCursorSelection(i.start,i.end)}}onContextMenu(e){"inactive"===this.composerStore.editionMode&&this.props.onInputContextMenu?.(e)}processContent(){if(this.compositionActive)return;this.shouldProcessInputEvents=!1,"inactive"!==this.props.focus&&this.contentHelper.el.focus();const e=this.getContentLines();if(this.contentHelper.setText(e),0!==e.length&&0!==e.length[0]){if("inactive"!==this.props.focus){const{start:e,end:t}=this.composerStore.composerSelection;this.contentHelper.selectRange(e,t)}this.contentHelper.scrollSelectionIntoView()}this.shouldProcessInputEvents=!0}getContentLines(){let e=this.composerStore.currentContent;const t=e.startsWith("=");return""===e?[]:t&&"inactive"!==this.props.focus?this.splitHtmlContentIntoLines(this.getColoredTokens()):this.splitHtmlContentIntoLines([{value:e}])}getColoredTokens(){const e=this.composerStore.currentTokens,t=this.composerStore.tokenAtCursor,o=[],{end:s,start:i}=this.composerStore.composerSelection;for(const n of e){switch(n.type){case"OPERATOR":case"NUMBER":case"ARG_SEPARATOR":case"STRING":o.push({value:n.value,color:sv[n.type]||"#000"});break;case"REFERENCE":const{xc:e,sheetName:s}=Fi(n.value);o.push({value:n.value,color:this.rangeColor(e,s)||"#000"});break;case"SYMBOL":const i=n.value.toUpperCase();"TRUE"===i||"FALSE"===i?o.push({value:n.value,color:sv.NUMBER}):i in yb.content?o.push({value:n.value,color:sv.FUNCTION}):o.push({value:n.value,color:"#000"});break;case"LEFT_PAREN":case"RIGHT_PAREN":t&&["LEFT_PAREN","RIGHT_PAREN"].includes(t.type)&&t.parenIndex&&t.parenIndex===n.parenIndex?o.push({value:n.value,color:sv.MATCHING_PAREN||"#000"}):o.push({value:n.value,color:sv[n.type]||"#000"});break;default:o.push({value:n.value,color:"#000"})}this.composerStore.showSelectionIndicator&&s===i&&s===n.end&&(o[o.length-1].class=ev)}return o}splitHtmlContentIntoLines(e){const t=[];let o=[];for(const s of e)if(s.value.includes(ue)){const e=s.value.split(ue),i=e.pop();for(const i of e)o.push({color:s.color,value:i}),t.push(o),o=[];o.push({...s,value:i})}else o.push(s);o.length&&t.push(o);const s=[];for(const e of t)e.every(this.isContentEmpty)?s.push([e[0]]):s.push(e.filter((e=>!this.isContentEmpty(e))));return s}isContentEmpty(e){return!(e.value||e.class)}rangeColor(e,t){if("inactive"===this.props.focus)return;const o=this.composerStore.highlights,s=t?this.env.model.getters.getSheetIdByName(t):this.composerStore.currentEditedCell.sheetId,i=o.find((t=>{if(t.sheetId!==s)return!1;let o=this.env.model.getters.getRangeFromSheetXC(s,e).zone;return o=1===dn(o)?this.env.model.getters.expandZone(s,o):o,Ki(o,t.zone)}));return i&&i.color?i.color:void 0}processTokenAtCursor(){let e=this.composerStore.currentContent;this.autoCompleteState.provider&&this.autoCompleteState.hide(),this.functionDescriptionState.showDescription=!1;const t=this.composerStore.autocompleteProvider;if(t)return void this.autoCompleteState.useProvider(t);const o=this.composerStore.tokenAtCursor;if(e.startsWith("=")&&o&&"SYMBOL"!==o.type){const e=o.functionContext,t=e?.parent.toUpperCase();if(e&&t&&t in Qb&&"UNKNOWN"!==o.type){const o=Qb[t],s=e.argPosition;this.functionDescriptionState.functionName=t,this.functionDescriptionState.functionDescription=o,this.functionDescriptionState.argToFocus=o.getArgToFocus(s+1)-1,this.functionDescriptionState.showDescription=!0}}}autoComplete(e){e&&(this.autoCompleteState.provider?.selectProposal(e),this.processTokenAtCursor())}}class nv{scope;code="";constructor(e=new av){this.scope=e}append(...e){this.code+=e.map((e=>e.toString())).join("\n")+"\n"}return(e){return new rv(this.scope,this.code,e)}toString(){return lv(this.code)}}class rv{scope;returnExpression;code;constructor(e,t,o){this.scope=e,this.returnExpression=o,this.code=lv(t)}toString(){return this.code}assignResultToVariable(){if(this.scope.isAlreadyDeclared(this.returnExpression))return this;const e=this.scope.nextVariableName(),t=new nv(this.scope);return t.append(this.code),t.append(`const ${e} = ${this.returnExpression};`),t.return(e)}}class av{nextId=1;declaredVariables=new Set;nextVariableName(){const e="_"+this.nextId++;return this.declaredVariables.add(e),e}isAlreadyDeclared(e){return this.declaredVariables.has(e)}}function lv(e){let t="",o=0;const s=e.split("\n").map((e=>e.trim())).filter((e=>""!==e));for(const e of s)e.startsWith("}")&&o--,t+="\t".repeat(o)+e+"\n",e.endsWith("{")&&o++;return t.trim()}const cv=yb.content,hv={"=":"EQ","+":"ADD","-":"MINUS","*":"MULTIPLY","/":"DIVIDE",">=":"GTE","<>":"NE",">":"GT","<=":"LTE","<":"LT","^":"POWER","&":"CONCATENATE"},dv={"-":"UMINUS","+":"UPLUS","%":"UNARY.PERCENT"},uv={};function gv(e){return pv(fa(e))}function pv(e){const{dependencies:t,constantValues:o}=function(e){const t={numbers:[],strings:[]},o=[];for(const s of e)switch(s.type){case"INVALID_REFERENCE":case"REFERENCE":o.push(s.value);break;case"STRING":const e=me(s.value);t.strings.includes(e)||t.strings.push(e);break;case"NUMBER":{const e=co(s.value,Mo);t.numbers.includes(e)||t.numbers.push(e);break}}return{dependencies:o,constantValues:t}}(e),s=function(e,t,o){return ze(e.map((e=>{switch(e.type){case"STRING":const s=me(e.value);return`|S${o.strings.indexOf(s)}|`;case"NUMBER":return`|N${o.numbers.indexOf(co(e.value,Mo))}|`;case"REFERENCE":case"INVALID_REFERENCE":return e.value.includes(":")?`R|${t.indexOf(e.value)}|`:`C|${t.indexOf(e.value)}|`;case"SPACE":return"";default:return e.value}})))}(e,t,o);if(!uv[s]){const i=Ta([...e]),n=new av;if("BIN_OPERATION"===i.type&&":"===i.value)throw new Bo(bo("Invalid formula"));if("EMPTY"===i.type)throw new Bo(bo("Invalid formula"));const r=h(i),a=new nv;a.append(`// ${s}`),a.append(r),a.append(`return ${r.returnExpression};`);let l=new Function("deps","ref","range","ctx",a.toString());function c(e){const{args:t}=e,o=e.value.toUpperCase(),s=cv[o];if(!s)throw new Go(bo('Unknown function: "%s"',e.value));!function(e){const t=e.args.length,o=e.value.toUpperCase(),s=cv[o];if(t<s.minArgRequired)throw new Bo(bo("Invalid number of arguments for the %s function. Expected %s minimum, but got %s instead.",o,s.minArgRequired.toString(),t.toString()));if(t>s.maxArgPossible)throw new Bo(bo("Invalid number of arguments for the %s function. Expected %s maximum, but got %s instead.",o,s.maxArgPossible.toString(),t.toString()));const i=s.nbrArgRepeating;if(i>1){const e=s.args.length-i;if((t-e)%i!=0)throw new Bo(bo("Invalid number of arguments for the %s function. Expected all arguments after position %s to be supplied by groups of %s arguments",o,e.toString(),i.toString()))}}(e);const i=[];for(let e=0;e<t.length;e++){const o=s.getArgToFocus(e+1)-1,n=s.args[o],r=t[e],a=n.type||[],l=a.includes("META"),c=a.some((e=>e.startsWith("RANGE")));i.push(h(r,l,c))}return i}function h(e,s=!1,i=!1){const r=new nv(n);if("REFERENCE"!==e.type&&("BIN_OPERATION"!==e.type||":"!==e.value)&&s)throw new Bo(bo("Argument must be a reference to a cell or range."));switch(e.debug&&r.append("debugger;"),e.type){case"BOOLEAN":return r.return(`{ value: ${e.value} }`);case"NUMBER":return r.return(`{ value: this.constantValues.numbers[${o.numbers.indexOf(e.value)}] }`);case"STRING":return r.return(`{ value: this.constantValues.strings[${o.strings.indexOf(e.value)}] }`);case"REFERENCE":const n=t.indexOf(e.value);return!s&&e.value.includes(":")||i?r.return(`range(deps[${n}])`):r.return(`ref(deps[${n}], ${s?"true":"false"})`);case"FUNCALL":const a=c(e).map((e=>e.assignResultToVariable()));r.append(...a);const l=e.value.toUpperCase();return r.return(`ctx['${l}'](${a.map((e=>e.returnExpression))})`);case"UNARY_OPERATION":{const t=dv[e.value],o=h(e.operand,!1,!1).assignResultToVariable();return r.append(o),r.return(`ctx['${t}'](${o.returnExpression})`)}case"BIN_OPERATION":{const t=hv[e.value],o=h(e.left,!1,!1).assignResultToVariable(),s=h(e.right,!1,!1).assignResultToVariable();return r.append(o),r.append(s),r.return(`ctx['${t}'](${o.returnExpression}, ${s.returnExpression})`)}case"EMPTY":return r.return("undefined")}}uv[s]=l}return{execute:uv[s],dependencies:t,constantValues:o,tokens:e}}const mv=yb.content;function fv(e){try{return 0===Oa(Ta(e)).filter((e=>"FUNCALL"===e.type&&!mv[e.value.toUpperCase()]?.isExported)).length}catch(e){return!1}}function bv(e,t){if(!e.some((e=>"SYMBOL"===e.type&&t.includes(e.value.toUpperCase()))))return[];let o;try{o=Ta(e)}catch{return[]}return function(e,t){return Oa(e).filter((e=>"FUNCALL"===e.type&&t.includes(e.value.toUpperCase()))).map((e=>({functionName:e.value.toUpperCase(),args:e.args})))}(o,t)}const vv=["PIVOT.VALUE","PIVOT.HEADER","PIVOT"];function Sv(e,t){const o=`"${t?`${e.name}:${t}`:e.name}"`,s=e.string!==e.name?e.string+o:o;return{text:o,description:e.string+(e.help?` (${e.help})`:""),htmlContent:[{value:o,color:sv.STRING}],fuzzySearchKey:s}}function yv(e,t){let o=e.end;const s=e.end;"ARG_SEPARATOR"!==e.type&&(o=e.start),this.composer.stopComposerRangeSelection(),this.composer.changeComposerCursorSelection(o,s),this.composer.replaceComposerCursorSelection(t)}function Cv(e,t){let o=e.end;const s=e.end;"LEFT_PAREN"!==e.type&&(o=e.start),this.composer.stopComposerRangeSelection(),this.composer.changeComposerCursorSelection(o,s),this.composer.replaceComposerCursorSelection(t)}function wv(e){const t=e.functionContext?.args[0];if(t&&["STRING","NUMBER"].includes(t.type))return t.value}function xv(e){return bv(e,vv)[0]}function Ev(e){return bv(e,vv).length}const Iv=new n;Iv.add("SPREADSHEET",!1),el.add("pivot_ids",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if(!t||!["PIVOT.VALUE","PIVOT.HEADER","PIVOT"].includes(t.parent.toUpperCase())||0!==t.argPosition)return;const o=this.getters.getPivotIds();return o.includes(e.value)?void 0:o.map((e=>{const t=this.getters.getPivotCoreDefinition(e),o=`${this.getters.getPivotFormulaId(e)}`;return{text:o,description:t.name,htmlContent:[{value:o,color:sv.NUMBER}],fuzzySearchKey:o+t.name}})).filter(Le)},selectProposal:Cv}),el.add("pivot_measures",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if("PIVOT.VALUE"!==t?.parent.toUpperCase()||1!==t.argPosition)return[];const o=wv(e),s=this.getters.getPivotId(o);if(!s||!this.getters.isExistingPivot(s))return[];const i=this.getters.getPivot(s);i.init();const n=i.getFields();return this.getters.getPivotCoreDefinition(s).measures.map((e=>{if("__count"===e.name){const e='"__count"';return{text:e,description:bo("Count"),htmlContent:[{value:e,color:sv.STRING}],fuzzySearchKey:bo("Count")+e}}const t=n[e.name];if(t)return Sv(t)})).filter(Le)},selectProposal:yv}),el.add("pivot_group_fields",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if(!t||!function(e){const t=e.functionContext;return"PIVOT.VALUE"===t?.parent.toUpperCase()&&t.argPosition>=2&&t.argPosition%2==0}(e)&&!function(e){const t=e.functionContext;return"PIVOT.HEADER"===t?.parent.toUpperCase()&&t.argPosition>=1&&t.argPosition%2==1}(e))return;const o=wv(e),s=this.getters.getPivotId(o);if(!s||!this.getters.isExistingPivot(s))return;const i=this.getters.getPivot(s);i.init();const n=i.getFields(),{columns:r,rows:a}=i.definition;let l=t.args;"PIVOT.VALUE"===t?.parent.toUpperCase()?(l=l.filter(((e,t)=>t%2==0)),l=l.slice(1,t.argPosition)):l=l.filter(((e,t)=>t%2==1));const c=l.map((e=>e?.value)).filter(Le),h=r.map((e=>e.nameWithGranularity)),d=a.map((e=>e.nameWithGranularity)),u=[],g=["ARG_SEPARATOR","SPACE"].includes(e.type)?c.at(-1):c.at(-2);if(void 0===g&&(u.push(h[0]),u.push(d[0])),d.includes(g)){const e=d[d.indexOf(g)+1];u.push(e),u.push(h[0])}if(h.includes(g)){const e=h[h.indexOf(g)+1];u.push(e)}const p=u.filter(Le);return p.map((e=>{const[t,o]=e.split(":"),s=n[t];return s?Sv(s,o):void 0})).concat(p.map((e=>{if(!Iv.get(i.type))return;const t=e.split(":")[0],o=n[t];if(!o)return;const s=`"#${e}"`;return{text:s,description:bo("%s (positional)",o.string)+(o.help?` (${o.help})`:""),htmlContent:[{value:s,color:sv.STRING}],fuzzySearchKey:o.string+s}}))).filter(Le)},selectProposal:yv}),el.add("pivot_group_values",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if(!t||!e||!function(e){const t=e.functionContext;return"PIVOT.VALUE"===t?.parent.toUpperCase()&&t.argPosition>=2&&t.argPosition%2==1}(e)&&!function(e){const t=e.functionContext;return"PIVOT.HEADER"===t?.parent.toUpperCase()&&t.argPosition>=1&&t.argPosition%2==0}(e))return;const o=wv(e),s=this.getters.getPivotId(o);if(!s||!this.getters.isExistingPivot(s))return;const i=this.getters.getPivot(s);if(!i.isValid())return;const n=t.argPosition,r=e.functionContext?.args[n-1]?.value;if(!r)return;let a;try{a=i.definition.getDimension(r)}catch(e){return}return"month_number"===a.granularity?Object.values(Bs).map(((e,t)=>({text:`${t+1}`,fuzzySearchKey:e.toString(),description:e.toString(),htmlContent:[{value:`${t+1}`,color:sv.NUMBER}]}))):"quarter_number"===a.granularity?[1,2,3,4].map((e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:bo("Quarter %s",e),htmlContent:[{value:`${e}`,color:sv.NUMBER}]}))):"day_of_month"===a.granularity?we(1,32).map((e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:"",htmlContent:[{value:`${e}`,color:sv.NUMBER}]}))):"iso_week_number"===a.granularity?we(0,54).map((e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:"",htmlContent:[{value:`${e}`,color:sv.NUMBER}]}))):i.getPossibleFieldValues(a).map((({value:e,label:t})=>{const o="string"==typeof e,s=o?`"${e}"`:e.toString();return{text:s,description:t,htmlContent:[{value:s,color:o?sv.STRING:sv.NUMBER}],fuzzySearchKey:e+t}}))},selectProposal:yv}),el.add("sheet_names",{sequence:150,autoSelectFirstProposal:!0,getProposals(e){return"SYMBOL"===e.type||"UNKNOWN"===e.type&&e.value.startsWith("'")?this.getters.getSheetIds().map((e=>{const t=ye(this.getters.getSheetName(e));return{text:t,fuzzySearchKey:t.startsWith("'")?t:"'"+t}})):[]},selectProposal(e,t){const o=e.start,s=e.end;this.composer.changeComposerCursorSelection(o,s),this.composer.replaceComposerCursorSelection(t+"!")}});const Rv=new n;Rv.add("ALPHANUMERIC_INCREMENT_MODIFIER",{apply:(e,t)=>{e.current+=e.increment;const o=`${e.prefix}${e.current.toString().padStart(e.numberPostfixLength||0,"0")}`;return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:o},tooltip:{props:{content:o}}}}}).add("INCREMENT_MODIFIER",{apply:(e,t,o)=>{e.current+=e.increment;const s=e.current.toString(),i=o.getLocale(),n=qs(e.current,{format:t.cell?.format,locale:i});return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:s},tooltip:s?{props:{content:n}}:void 0}}}).add("COPY_MODIFIER",{apply:(e,t,o)=>{const s=t.cell?.content||"",i={locale:o.getLocale(),format:t.cell?.format};return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:s},tooltip:s?{props:{content:t.cell?Wa(t.cell,i).formattedValue:""}}:void 0}}}).add("FORMULA_MODIFIER",{apply:(e,t,o,s)=>{e.current+=e.increment;let i=0,n=0;switch(s){case"up":i=0,n=-e.current;break;case"down":i=0,n=e.current;break;case"left":i=-e.current,n=0;break;case"right":i=e.current,n=0}const r=t.cell;if(!r||!r.isFormula)return{cellData:{}};const a=t.sheetId,l=o.getTranslatedCellFormula(a,i,n,r.compiledFormula);return{cellData:{border:t.border,style:r.style,format:r.format,content:l},tooltip:l?{props:{content:l}}:void 0}}});const Tv=new n,Av=/(\d+)$/,Ov=/^(.*\D+)/,_v=/^(.*\D+)(\d+)$/;function Dv(e,t,o){let s=[],i=!1;for(let n of t){n===e&&(i=!0);const t=void 0===n||n.isFormula?void 0:Wa(n,{locale:Mo});if(t&&o(t))s.push(t);else{if(i)return s;s=[]}}return s}function Fv(e){let t=1;return e.length>=2&&(t=function(e){const t=[];let o=e[0];for(let s=1;s<e.length;s++){const i=e[s];t.push(i-o),o=i}return t.reduce(((e,t)=>e+t),0)/t.length}(e)*e.length),t}Tv.add("simple_value_copy",{condition:(e,t)=>!(1!==t.length||e.isFormula||e.format&&Js(e.format)),generateRule:()=>({type:"COPY_MODIFIER"}),sequence:10}).add("increment_alphanumeric_value",{condition:e=>!e.isFormula&&Wa(e,{locale:Mo}).type===So.text&&_v.test(e.content),generateRule:(e,t)=>{const o=parseInt(e.content.match(Av)[0]),s=e.content.match(Ov)[0],i=e.content.length-s.length,n=Fv(Dv(e,t,(e=>e.type===So.text&&_v.test(e.value))).filter((e=>s===(e.value??"").toString().match(Ov)[0])).map((e=>parseInt((e.value??"").toString().match(Av)[0]))));return{type:"ALPHANUMERIC_INCREMENT_MODIFIER",prefix:s,current:o,increment:n,numberPostfixLength:i}},sequence:15}).add("copy_text",{condition:e=>!e.isFormula&&Wa(e,{locale:Mo}).type===So.text,generateRule:()=>({type:"COPY_MODIFIER"}),sequence:20}).add("update_formula",{condition:e=>e.isFormula,generateRule:(e,t)=>({type:"FORMULA_MODIFIER",increment:t.length,current:0}),sequence:30}).add("increment_number",{condition:e=>!e.isFormula&&Wa(e,{locale:Mo}).type===So.number,generateRule:(e,t)=>{const o=Fv(Dv(e,t,(e=>e.type===So.number)).map((e=>Number(e.value)))),s=Wa(e,{locale:Mo});return{type:"INCREMENT_MODIFIER",increment:o,current:s.type===So.number?s.value:0}},sequence:40});const Mv=new n,Pv=30,Nv=10,Lv=20,kv=12,Vv=80,Uv="#F3F2F1",Hv="#666666",zv="#C8C8C8",Bv="#666666aa",$v=6,Wv=25,Gv=D,qv=_,Zv=_;function jv(e,t){const o=e.getBoundingClientRect();e.width=o.width,e.height=o.height;const s=e.getContext("2d"),i=function(e,t,o){const s=t.maxValue,i=t.minValue,n=t.gaugeValue,r=function(e,t){const o=t?Wv:0,s=e.height-Lv-o-Nv,i=e.width-2*Pv;let n,r;i>2*s?(n=2*s,r=s):(n=i,r=i/2);const a=o+Nv+(s-r)/2;return{x:Pv+(i-n)/2,y:a,width:n,height:r}}(e,t.title.text),a=r.width/6,l=n?(n.value-i.value)/(s.value-i.value):0,c={x:e.width/2,y:r.y+r.height-r.height/12};let h=Vv;r.height<300&&(h*=r.height/300);const d=r.width/2,u=n?.label||"-";In(o,u,{fontSize:h},"px")>d&&(h=Pn(d,h,(e=>In(o,u,{fontSize:e},"px"))));const g={x:r.x+a/2,y:r.y+r.height+kv},p={x:r.x+r.width-a/2,y:r.y+r.height+kv},m=(b=t.background,pt(b)>.3?Hv:zv),f=function(e,t,o,s){const i=e.maxValue,n=e.minValue,r={x:t.x+t.width/2,y:t.y+t.height},a={fontSize:kv},l=[],c=[];for(const h of e.inflectionValues){const e=(h.value-n.value)/(i.value-n.value),d=In(s,h.label,a,"px"),u=Math.PI-Math.PI*e,g=Jv(u,t.height+$v,r.x,r.y,d+2,kv);let p=c.some((e=>Qv(e,g)))?kv:0;c.push(g),l.push({rotation:u,label:h.label,fontSize:kv,color:o,offset:p})}return l}(t,r,m,o);var b;let v=0,S=0,y=0;t.title.text&&({width:S,height:y}=An(o,t.title.text,{...t.title,fontSize:Gv},"px"));switch(t.title.align){case"right":v=e.width-S-qv;break;case"center":v=(e.width-S)/2;break;default:v=qv}return{width:e.width,height:e.height,title:{label:t.title.text??"",fontSize:Gv,textPosition:{x:v,y:Zv+y/2},color:t.title.color??m,bold:t.title.bold,italic:t.title.italic},backgroundColor:t.background,gauge:{rect:r,arcWidth:a,percentage:Ce(l,0,1),color:Yv(t)},inflectionValues:f,gaugeValue:{label:u,textPosition:c,fontSize:h,color:m},minLabel:{label:t.minValue.label,textPosition:g,fontSize:kv,color:m},maxLabel:{label:t.maxValue.label,textPosition:p,fontSize:kv,color:m}}}(o,t,s);!function(e,t){e.save(),e.fillStyle=t.backgroundColor,e.fillRect(0,0,t.width,t.height),e.restore()}(s,i),function(e,t){e.save();const o=t.gauge,s=o.rect.x+o.rect.width/2,i=o.rect.y+o.rect.height,n=o.rect.height-o.arcWidth/2;if(n<0)return;const r=1===o.percentage?0:Math.PI*(1+o.percentage);e.strokeStyle=Uv,e.beginPath(),e.lineWidth=o.arcWidth,e.arc(s,i,n,r,0),e.stroke(),e.strokeStyle=o.color,e.beginPath(),e.arc(s,i,n,Math.PI,r),e.stroke(),e.restore()}(s,i),function(e,t){const{x:o,y:s,width:i,height:n}=t.gauge.rect;for(const r of t.inflectionValues){e.save(),e.translate(o+i/2-.5,s+n-.5),e.rotate(Math.PI/2-r.rotation),e.lineWidth=2,e.strokeStyle=Bv,e.beginPath(),e.moveTo(0,-(n-t.gauge.arcWidth)),e.lineTo(0,-n-3),e.stroke(),e.textAlign="center",e.font=`${r.fontSize}px ${Y}`,e.fillStyle=r.color;const a=-n-$v-r.offset;e.fillText(r.label,0,a),e.restore()}}(s,i),function(e,t){for(const o of[t.minLabel,t.maxLabel,t.gaugeValue])e.save(),e.textAlign="center",e.fillStyle=o.color,e.font=`${o.fontSize}px ${Y}`,e.fillText(o.label,o.textPosition.x,o.textPosition.y),e.restore()}(s,i),function(e,t){e.save();const o=t.title;e.font=xn(o.fontSize,o.bold,o.italic),e.textBaseline="middle",e.fillStyle=o.color,e.fillText(o.label,o.textPosition.x,o.textPosition.y),e.restore()}(s,i)}function Yv(e){const t=e.gaugeValue?.value;if(void 0===t)return Uv;let o=0;for(;e.inflectionValues[o]?.value<=t;)o++;return e.colors[o]}function Xv(e){return[{start:e.topLeft,end:e.topRight},{start:e.topRight,end:e.bottomRight},{start:e.bottomRight,end:e.bottomLeft},{start:e.bottomLeft,end:e.topLeft}]}function Kv(e,t){const o=e.start,s=e.end,i=t.start,n=t.end;function r(e,t,o){return(o.y-e.y)*(t.x-e.x)>(t.y-e.y)*(o.x-e.x)}return r(o,i,n)!==r(s,i,n)&&r(o,s,i)!==r(o,s,n)}function Qv(e,t){const o=Xv(e),s=Xv(t);for(const e of o)for(const t of s)if(Kv(e,t))return!0;return!1}function Jv(e,t,o,s,i,n){const r=Math.cos(e),a=Math.sin(e),l=r*t,c=a*t,h=a*(i/2),d=r*(i/2),u=r*(t+n),g=a*(t+n);return{bottomLeft:{x:l-h+o,y:s-(c+d)},bottomRight:{x:l+h+o,y:s-(c-d)},topRight:{x:u+h+o,y:s-(g-d)},topLeft:{x:u-h+o,y:s-(g+d)}}}class eS extends t.Component{static template="o-spreadsheet-GaugeChartComponent";canvas=t.useRef("chartContainer");get runtime(){return this.env.model.getters.getChartRuntime(this.props.figure.id)}setup(){t.useEffect((()=>jv(this.canvas.el,this.runtime)),(()=>{const e=this.canvas.el.getBoundingClientRect();return[e.width,e.height,this.runtime,this.canvas.el]}))}}function tS(e){return 8===(e=ht(e).replace("#","")).length?e.slice(6)+e.slice(0,6):e}function oS(e,t){if(t.dataRange){const o=t.labelCell?[t.labelCell.zone]:[],s=Pi([t.dataRange.zone],o)[0];if(void 0===s)return[];const i=e.getRangeFromZone(t.dataRange.sheetId,s);return e.getRangeValues(i).map((e=>""===e?void 0:e))}return[]}function sS(e,t){const o=we(0,Math.max(e.length,...t.map((e=>e.data?.length||0)))).filter((o=>{const s=e[o],i=t.map((e=>e.data?.[o]));return s||i.some((e=>0===e||Boolean(e)))}));return{labels:o.map((t=>e[t]||"")),dataSetsValues:t.map((e=>({...e,data:o.map((t=>e.data[t]))})))}}function iS(e,t){const o=new Set(e),s={};o.forEach((e=>{s[e]=new Array(t.length).fill(0)}));for(const o of we(0,e.length)){const n=e[o];for(const e of we(0,t.length))s[n][e]+="number"==typeof(i=t[e].data[o])?i:0}var i;return{labels:Array.from(o),dataSetsValues:t.map(((e,t)=>({...e,data:Array.from(o).map((e=>s[e][t]))})))}}function nS(e){return e?e.length>ee?e.substring(0,ee)+"…":e:""}function rS(e,t,o,{format:s,locale:i,truncateLabels:n=!0,horizontalChart:r}){const a=e.title.text?e.title:{...e.title,content:""},l={responsive:!0,maintainAspectRatio:!1,layout:{padding:{left:_,right:_,top:a.text?_/2:_+5,bottom:_}},elements:{line:{fill:!1},point:{hitRadius:15}},animation:!1,plugins:{title:{display:!!a.text,text:bo(a.text),color:a?.color??o,align:"center"===a.align?"center":"right"===a.align?"end":"start",font:{size:D,weight:a.bold?"bold":"normal",style:a.italic?"italic":"normal"}},legend:{onClick:()=>{}},tooltip:{callbacks:{label:function(e){const t=e.dataset?.label||e.label;let o=r?e.parsed.x:e.parsed.y;null==o&&(o=e.parsed);const n=qs(o,{format:!s&&Math.abs(o)>=1e3?"#,##":s,locale:i});return t?`${t}: ${n}`:n}}}}};return{type:e.type,options:l,data:{labels:n?t.map(nS):t,datasets:[]},platform:void 0,plugins:[]}}function aS(e,t){if(!t)return;const{sheetId:o,zone:{left:s,top:i,bottom:n}}=t;for(let t=i;t<=n;t++){const i=e.getEvaluatedCell({sheetId:o,col:s,row:t}).format;if(i)return i}}function lS(e,t,o){let s={values:[],formattedValues:[]};if(o)o.invalidXc||o.invalidSheetName||(s={formattedValues:e.getRangeFormattedValues(o),values:e.getRangeValues(o).map((e=>String(e??"")))});else if(1===t.length)for(let o=0;o<oS(e,t[0]).length;o++)s.formattedValues.push(""),s.values.push("");else if(t[0]){s={formattedValues:we(0,oS(e,t[0]).length).map((e=>e.toString())),values:s.formattedValues}}return s}function cS(e,t){for(const o of t){const t=e.getRangeFormats(o.dataRange).find((e=>void 0!==e&&!Js(e)));if(t)return t}}function hS(e,t){const o=[];for(const[s,i]of Object.entries(t)){let t;if(i.labelCell){const o=i.labelCell,n=o?e.getEvaluatedCell({sheetId:o.sheetId,col:o.zone.left,row:o.zone.top}):void 0;t=n&&o?nS(n.formattedValue):t=`${al.Series} ${parseInt(s)+1}`}else t=`${al.Series} ${parseInt(s)+1}`;let n=i.dataRange?oS(e,i):[];n.every((e=>"string"==typeof e&&!Xo(e)))&&n.fill(1),o.push({data:n,label:t})}return o}function dS(e,t){return t?0===e?"origin":"-1":"origin"}function uS(e,t,o){const s=document.createElement("div");s.style.width=`${t.width}px`,s.style.height=`${t.height}px`;const i=document.createElement("canvas");if(s.append(i),i.setAttribute("width",t.width.toString()),i.setAttribute("height",t.height.toString()),document.body.append(s),"chartJsConfig"in e){const t=be(e.chartJsConfig);t.plugins=[gS];const o=new window.Chart(i,t),n=o.toBase64Image();return o.destroy(),s.remove(),n}if("scorecard"===o){bc(yc(t,e),i);const o=i.toDataURL();return s.remove(),o}if("gauge"===o){jv(i,e);const t=i.toDataURL();return s.remove(),t}}eS.props={figure:Object};const gS={id:"customCanvasBackgroundColor",beforeDraw:e=>{const{ctx:t}=e;t.save(),t.globalCompositeOperation="destination-over",t.fillStyle="#ffffff",t.fillRect(0,0,e.width,e.height),t.restore()}};class pS extends cc{dataSets;labelRange;background;legendPosition;stacked;aggregated;type="bar";dataSetsHaveTitle;dataSetDesign;axesDesign;horizontal;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.stacked=e.stacked,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.horizontal=e.horizontal,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,stacked:e.stacked??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"bar",labelRange:e.auxiliaryRange||void 0,axesDesign:e.axesDesign,showValues:e.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new pS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new pS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"bar",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,stacked:this.stacked,aggregated:this.aggregated,axesDesign:this.axesDesign,horizontal:this.horizontal,showValues:this.showValues}}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new pS(i,this.sheetId,this.getters)}}function mS(e,t){let o=lS(t,e.dataSets,e.labelRange).formattedValues,s=hS(t,e.dataSets);e.dataSetsHaveTitle&&s[0]&&o.length>s[0].data.length&&o.shift(),({labels:o,dataSetsValues:s}=sS(o,s)),e.aggregated&&({labels:o,dataSetsValues:s}=iS(o,s));const i=function(e,t,o){const s=Xl(e.background),i=rS(e,t,s,{...o,horizontalChart:e.horizontal}),n={labels:{color:s}};!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?n.display=!1:n.position=e.legendPosition,i.options.plugins.legend={...i.options.plugins?.legend,...n},i.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},i.options.indexAxis=e.horizontal?"y":"x",i.options.scales={};const r={ticks:{padding:5,color:s}},a={beginAtZero:!0,ticks:{color:s,callback:oc(o)}},l=e.horizontal?a:r,c=e.horizontal?r:a,{useLeftAxis:h,useRightAxis:d}=tc(e.getDefinition());return i.options.scales.x={...l,title:ec(e.axesDesign?.x)},h&&(i.options.scales.y={...c,position:"left",title:ec(e.axesDesign?.y)}),d&&(i.options.scales.y1={...c,position:"right",title:ec(e.axesDesign?.y1)}),e.stacked&&(i.options.scales.x.stacked=!0,h&&(i.options.scales.y.stacked=!0),d&&(i.options.scales.y1.stacked=!0)),i.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,horizontal:e.horizontal,callback:oc(o)},i}(e,o,{format:cS(t,e.dataSets),locale:t.getLocale()}),n=new It,r=e.getDefinition();for(const{label:e,data:t}of s){const o=n.next(),s={label:e,data:t,borderColor:o,backgroundColor:o};i.data.datasets.push(s)}for(const[t,o]of i.data.datasets.entries()){if(r.dataSets?.[t]?.backgroundColor){const e=r.dataSets[t].backgroundColor;o.backgroundColor=e,o.borderColor=e}if(r.dataSets?.[t]?.label){const e=r.dataSets[t].label;o.label=e}r.dataSets?.[t]?.yAxisId&&!e.horizontal&&(o.yAxisID=r.dataSets[t].yAxisId)}return{chartJsConfig:i,background:e.background||m}}const fS={second:1e3,minute:6e4,hour:36e5,day:864e5,month:2592e6,year:31536e6},bS={inSeconds:function(e){return Math.floor(e/fS.second)},inMinutes:function(e){return Math.floor(e/fS.minute)},inHours:function(e){return Math.floor(e/fS.hour)},inDays:function(e){return Math.floor(e/fS.day)},inMonths:function(e){return Math.floor(e/fS.month)},inYears:function(e){return Math.floor(e/fS.year)}},vS=/^((d|dd|m|mm|yyyy|yy|hh|h|ss|a)(-|:|\s|\/))*(d|dd|m|mm|yyyy|yy|hh|h|ss|a)$/i;function SS(e,t,o){const s=function(e){const t=e.indexOf("h");e=t>=0?e.slice(0,t).replace(/m/g,"M")+e.slice(t):e.replace(/m/g,"M");e.includes("a")||(e=e.replace(/h/g,"H"));return e}(t),i=function(e,t,o){const s=e.map((e=>qt(e,o)?.jsDate));if(s.some((e=>void 0===e))||e.length<2)return;const i=s.map((e=>e.getTime())),n=it(i)-nt(i),r=function(e){if(e.includes("s"))return"second";if(e.includes("m"))return"minute";if(e.includes("h")||e.includes("H"))return"hour";if(e.includes("d"))return"day";if(e.includes("M"))return"month";return"year"}(t);if(fS.second>=fS[r]&&bS.inSeconds(n)<180)return"second";if(fS.minute>=fS[r]&&bS.inMinutes(n)<180)return"minute";if(fS.hour>=fS[r]&&bS.inHours(n)<96)return"hour";if(fS.day>=fS[r]&&bS.inDays(n)<90)return"day";if(fS.month>=fS[r]&&bS.inMonths(n)<36)return"month";return"year"}(e,s,o),n={};return i&&(n[i]=s),{parser:s,displayFormats:n,unit:i??!1}}function yS(e,t){return wS(e,t)||xS(e,t)}function CS(e,t){return function(e,t){return!e.labelsAsText&&wS(e.labelRange,t)}(e,t)&&function(){if(!window.Chart)return!1;const e="luxon"===new window.Chart._adapters._date({})._id;e||ES||(ES=!0,console.warn("'chartjs-adapter-luxon' time adapter is not installed. Time scale axes are disabled."));return e}()?"time":function(e,t){return!e.labelsAsText&&xS(e.labelRange,t)}(e,t)?"linear":"category"}function wS(e,t){if(!e||!xS(e,t))return!1;const o=aS(t,e);return Boolean(o&&vS.test(o))}function xS(e,t){if(!e)return!1;const o=t.getRangeValues(e);return!o.some((e=>isNaN(Number(e))&&e))&&!o.every((e=>!e))}let ES=!1;function IS(e,t){const o=CS(e,t),s=lS(t,e.dataSets,e.labelRange);let i="linear"===o?s.values:s.formattedValues,n=hS(t,e.dataSets);e.dataSetsHaveTitle&&n[0]&&i.length>n[0].data.length&&i.shift(),({labels:i,dataSetsValues:n}=sS(i,n)),"time"===o&&({labels:i,dataSetsValues:n}=function(e,t){if(0===e.length||e.every((e=>!e)))return{labels:e,dataSetsValues:t};const o=[...e],s=be(t);for(let e=0;e<o.length;e++)if(!o[e]){o[e]=$e(o,e);for(let t of s)t.data[e]=void 0}return{labels:o,dataSetsValues:s}}(i,n)),e.aggregated&&({labels:i,dataSetsValues:n}=iS(i,n));const r=t.getLocale(),a="category"===o,l=cS(t,e.dataSets),c=function(e,t,o){const s=Xl(e.background),i=rS(e,t,s,o),n={labels:{color:s,generateLabels(e){const{data:t}=e,o=window.Chart.defaults.plugins.legend.labels.generateLabels(e);for(const[e,s]of o.entries())s.fillStyle=t.datasets[e].borderColor;return o}}};!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?n.display=!1:n.position=e.legendPosition,Object.assign(i.options.plugins.legend||{},n),i.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},i.options.scales={x:{ticks:{padding:5,color:s},title:ec(e.axesDesign?.x)}};const r={beginAtZero:!0,ticks:{color:s,callback:oc(o)}},{useLeftAxis:a,useRightAxis:l}=tc(e.getDefinition());return a&&(i.options.scales.y={...r,position:"left",title:ec(e.axesDesign?.y)}),l&&(i.options.scales.y1={...r,position:"right",title:ec(e.axesDesign?.y1)}),"stacked"in e&&e.stacked&&(a&&(i.options.scales.y.stacked=!0),l&&(i.options.scales.y1.stacked=!0)),i.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,callback:oc(o)},i}(e,i,{format:l,locale:r,truncateLabels:a}),h=aS(t,e.labelRange);if("time"===o){const e={type:"time",time:SS(i,h,r)};Object.assign(c.options.scales.x,e),c.options.scales.x.ticks.maxTicksLimit=15}else"linear"===o&&(c.options.scales.x.type="linear",c.options.scales.x.ticks.callback=e=>qs(e,{format:h,locale:r}),c.options.plugins.tooltip.callbacks.title=e=>qs(e[0].parsed.x||e[0].label,{locale:r,format:h}));const d="fillArea"in e&&e.fillArea,u="stacked"in e&&e.stacked,g="cumulative"in e&&e.cumulative,p=new It,f=e.getDefinition();for(let[e,{label:t,data:s}]of n.entries()){const n=p.next();let r=ft(n);if(d&&(r.a=ne),g){let e=0;s=s.map((t=>isNaN(t)?t:(e+=parseFloat(t),e)))}["linear","time"].includes(o)&&(s=s.map(((e,t)=>({x:i[t]||void 0,y:e}))));const a={label:t,data:s,tension:0,borderColor:n,backgroundColor:mt(r),pointBackgroundColor:n,fill:!!d&&dS(e,u)};c.data.datasets.push(a)}for(const[e,t]of c.data.datasets.entries()){if(f.dataSets?.[e]?.backgroundColor){const o=f.dataSets[e].backgroundColor;t.backgroundColor=o,t.borderColor=o,t.pointBackgroundColor=o}if(f.dataSets?.[e]?.label){const o=f.dataSets[e].label;t.label=o}f.dataSets?.[e]?.yAxisId&&(t.yAxisID=f.dataSets[e].yAxisId)}return{chartJsConfig:c,background:e.background||m,dataSetsValues:n,labelValues:s,dataSetFormat:l,labelFormat:h}}class RS extends cc{dataSets;labelRange;background;legendPosition;aggregated;dataSetsHaveTitle;dataSetDesign;axesDesign;type="combo";showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"combo",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,axesDesign:this.axesDesign,showValues:this.showValues}}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new RS(i,this.sheetId,this.getters)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,aggregated:e.aggregated,legendPosition:e.legendPosition??"top",title:e.title||{text:""},labelRange:e.auxiliaryRange||void 0,type:"combo",axesDesign:e.axesDesign,showValues:e.showValues}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new RS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new RS(t,e,this.getters)}}function TS(e){return e.dataRange&&!Ri.test(e.dataRange)?"InvalidGaugeDataRange":"Success"}function AS(e,t){return t((t=>t.sectionRule?e(t.sectionRule.rangeMin,"rangeMin"):"Success"),(t=>t.sectionRule?e(t.sectionRule.rangeMax,"rangeMax"):"Success"))}function OS(e){return e.sectionRule&&Number(e.sectionRule.rangeMin)>=Number(e.sectionRule.rangeMax)?"GaugeRangeMinBiggerThanRangeMax":"Success"}function _S(e,t){if(""===e)switch(t){case"rangeMin":return"EmptyGaugeRangeMin";case"rangeMax":return"EmptyGaugeRangeMax"}return"Success"}function DS(e,t){if(isNaN(e))switch(t){case"rangeMin":return"GaugeRangeMinNaN";case"rangeMax":return"GaugeRangeMaxNaN";case"lowerInflectionPointValue":return"GaugeLowerInflectionPointNaN";case"upperInflectionPointValue":return"GaugeUpperInflectionPointNaN"}return"Success"}class FS extends cc{dataRange;sectionRule;background;type="gauge";constructor(e,t,o){super(e,t,o),this.dataRange=fn(this.getters,this.sheetId,e.dataRange),this.sectionRule=e.sectionRule,this.background=e.background}static validateChartDefinition(e,t){return e.checkValidations(t,TS,e.chainValidations(AS(_S,e.batchValidations),AS(DS,e.batchValidations),OS),e.chainValidations((o=DS,(0,e.batchValidations)((e=>e.sectionRule?o(e.sectionRule.lowerInflectionPoint.value,"lowerInflectionPointValue"):"Success"),(e=>e.sectionRule?o(e.sectionRule.upperInflectionPoint.value,"upperInflectionPointValue"):"Success")))));var o}static transformDefinition(e,t){let o;return e.dataRange&&(o=ca(Hi(e.dataRange),t)),{...e,dataRange:o?Wi(o):void 0}}static getDefinitionFromContextCreation(e){return{background:e.background,title:e.title||{text:""},type:"gauge",dataRange:e.range?e.range[0].dataRange:void 0,sectionRule:{colors:{lowerColor:"#cc0000",middleColor:"#f1c232",upperColor:"#6aa84f"},rangeMin:"0",rangeMax:"100",lowerInflectionPoint:{type:"percentage",value:"15"},upperInflectionPoint:{type:"percentage",value:"40"}}}}copyForSheetId(e){const t=$l(this.sheetId,e,this.dataRange),o=this.getDefinitionWithSpecificRanges(t,e);return new FS(o,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificRanges(this.dataRange,e);return new FS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificRanges(this.dataRange)}getDefinitionWithSpecificRanges(e,t){return{background:this.background,sectionRule:this.sectionRule,title:this.title,type:"gauge",dataRange:e?this.getters.getRangeString(e,t||this.sheetId):void 0}}getDefinitionForExcel(){}getContextCreation(){return{...this,range:this.dataRange?[{dataRange:this.getters.getRangeString(this.dataRange,this.sheetId)}]:void 0}}updateRanges(e){const t=Wl(this.dataRange,e);if(this.dataRange===t)return this;const o=this.getDefinitionWithSpecificRanges(t);return new FS(o,this.sheetId,this.getters)}}function MS(e,t,o){if(""===e.value||isNaN(Number(e.value)))return;const s=Number(e.value);return Ce("number"===e.type?s:t+(o-t)*s/100,t,o)}class PS extends cc{dataSets;labelRange;background;legendPosition;labelsAsText;stacked;aggregated;type="line";dataSetsHaveTitle;cumulative;dataSetDesign;axesDesign;fillArea;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(this.getters,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(this.getters,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.labelsAsText=e.labelsAsText,this.stacked=e.stacked,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.cumulative=e.cumulative,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.fillArea=e.fillArea,this.showValues=e.showValues}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static transformDefinition(e,t){return Yl(e,t)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,labelsAsText:e.labelsAsText??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"line",labelRange:e.auxiliaryRange||void 0,stacked:e.stacked??!1,aggregated:e.aggregated??!1,cumulative:e.cumulative??!1,axesDesign:e.axesDesign,fillArea:e.fillArea,showValues:e.showValues}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"line",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,labelsAsText:this.labelsAsText,stacked:this.stacked,aggregated:this.aggregated,cumulative:this.cumulative,axesDesign:this.axesDesign,fillArea:this.fillArea,showValues:this.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new PS(i,this.sheetId,this.getters)}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new PS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new PS(t,e,this.getters)}}class NS extends cc{dataSets;labelRange;background;legendPosition;type="pie";aggregated;dataSetsHaveTitle;isDoughnut;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.isDoughnut=e.isDoughnut,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"pie",labelRange:e.auxiliaryRange||void 0,aggregated:e.aggregated??!1,isDoughnut:!1,showValues:e.showValues}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getContextCreation(){return{...this,range:this.dataSets.map((e=>({dataRange:this.getters.getRangeString(e.dataRange,this.sheetId)}))),auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}getDefinitionWithSpecificDataSets(e,t,o){return{type:"pie",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:e.map((e=>({dataRange:this.getters.getRangeString(e.dataRange,o||this.sheetId)}))),legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,isDoughnut:this.isDoughnut,showValues:this.showValues}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new NS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new NS(t,e,this.getters)}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle));return{...this.getDefinition(),backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new NS(i,this.sheetId,this.getters)}}class LS extends cc{dataSets;labelRange;background;legendPosition;aggregated;type="pyramid";dataSetsHaveTitle;dataSetDesign;axesDesign;horizontal=!0;stacked=!0;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle).slice(0,2),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"pyramid",labelRange:e.auxiliaryRange||void 0,axesDesign:e.axesDesign,horizontal:!0,stacked:!0,showValues:e.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new LS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new LS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"pyramid",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,axesDesign:this.axesDesign,horizontal:!0,stacked:!0,showValues:this.showValues}}getDefinitionForExcel(){}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new LS(i,this.sheetId,this.getters)}}class kS extends cc{dataSets;labelRange;background;legendPosition;labelsAsText;aggregated;type="scatter";dataSetsHaveTitle;dataSetDesign;axesDesign;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(this.getters,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(this.getters,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.labelsAsText=e.labelsAsText,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static transformDefinition(e,t){return Yl(e,t)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,labelsAsText:e.labelsAsText??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"scatter",labelRange:e.auxiliaryRange||void 0,aggregated:e.aggregated??!1,axesDesign:e.axesDesign,showValues:e.showValues}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"scatter",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,labelsAsText:this.labelsAsText,aggregated:this.aggregated,axesDesign:this.axesDesign,showValues:this.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new kS(i,this.sheetId,this.getters)}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new kS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new kS(t,e,this.getters)}}class VS extends cc{dataSets;labelRange;background;verticalAxisPosition;legendPosition;aggregated;type="waterfall";dataSetsHaveTitle;showSubTotals;firstValueAsSubtotal;showConnectorLines;positiveValuesColor;negativeValuesColor;subTotalValuesColor;dataSetDesign;axesDesign;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.verticalAxisPosition=e.verticalAxisPosition,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.showSubTotals=e.showSubTotals,this.showConnectorLines=e.showConnectorLines,this.positiveValuesColor=e.positiveValuesColor,this.negativeValuesColor=e.negativeValuesColor,this.subTotalValuesColor=e.subTotalValuesColor,this.firstValueAsSubtotal=e.firstValueAsSubtotal,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range?e.range:[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"waterfall",verticalAxisPosition:"left",labelRange:e.auxiliaryRange||void 0,showSubTotals:e.showSubTotals??!1,showConnectorLines:e.showConnectorLines??!0,firstValueAsSubtotal:e.firstValueAsSubtotal??!1,axesDesign:e.axesDesign,showValues:e.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new VS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new VS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"waterfall",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,verticalAxisPosition:this.verticalAxisPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,showSubTotals:this.showSubTotals,showConnectorLines:this.showConnectorLines,positiveValuesColor:this.positiveValuesColor,negativeValuesColor:this.negativeValuesColor,subTotalValuesColor:this.subTotalValuesColor,firstValueAsSubtotal:this.firstValueAsSubtotal,axesDesign:this.axesDesign,showValues:this.showValues}}getDefinitionForExcel(){}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new VS(i,this.sheetId,this.getters)}}const US=new n;US.add("bar",{match:e=>"bar"===e,createChart:(e,t,o)=>new pS(e,t,o),getChartRuntime:mS,validateChartDefinition:pS.validateChartDefinition,transformDefinition:pS.transformDefinition,getChartDefinitionFromContextCreation:pS.getDefinitionFromContextCreation,sequence:10}),US.add("combo",{match:e=>"combo"===e,createChart:(e,t,o)=>new RS(e,t,o),getChartRuntime:function(e,t){const o=e.dataSets.length?cS(t,[e.dataSets[0]]):void 0,s=cS(t,e.dataSets.slice(1)),i=t.getLocale();let n=lS(t,e.dataSets,e.labelRange).formattedValues,r=hS(t,e.dataSets);e.dataSetsHaveTitle&&r[0]&&n.length>r[0].data.length&&n.shift(),({labels:n,dataSetsValues:r}=sS(n,r)),e.aggregated&&({labels:n,dataSetsValues:r}=iS(n,r));const a={format:o,locale:i},l=Xl(e.background),c=rS(e,n,l,a),h={labels:{color:l},reverse:!0};!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?h.display=!1:h.position=e.legendPosition,c.options.plugins.legend={...c.options.plugins?.legend,...h},c.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},c.options.scales={x:{ticks:{padding:5,color:l},title:ec(e.axesDesign?.x)}};const d={beginAtZero:!0,ticks:{color:l,callback:oc({format:o,locale:i})}},u={beginAtZero:!0,ticks:{color:l,callback:oc({format:s,locale:i})}},g=e.getDefinition(),{useLeftAxis:p,useRightAxis:f}=tc(g);p&&(c.options.scales.y={...d,position:"left",title:ec(e.axesDesign?.y)}),f&&(c.options.scales.y1={...u,position:"right",grid:{display:!1},title:ec(e.axesDesign?.y1)}),c.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,callback:oc({format:o,locale:i})};const b=new It;for(let[e,{label:t,data:o}]of r.entries()){const s=g.dataSets[e],i=b.next(),n={label:s?.label??t,data:o,borderColor:s?.backgroundColor??i,backgroundColor:s.backgroundColor??i,yAxisID:s?.yAxisId??"y",type:0===e?"bar":"line",order:-e};c.data.datasets.push(n)}return{chartJsConfig:c,background:e.background||m}},validateChartDefinition:RS.validateChartDefinition,transformDefinition:RS.transformDefinition,getChartDefinitionFromContextCreation:RS.getDefinitionFromContextCreation,sequence:15}),US.add("line",{match:e=>"line"===e,createChart:(e,t,o)=>new PS(e,t,o),getChartRuntime:IS,validateChartDefinition:PS.validateChartDefinition,transformDefinition:PS.transformDefinition,getChartDefinitionFromContextCreation:PS.getDefinitionFromContextCreation,sequence:20}),US.add("pie",{match:e=>"pie"===e,createChart:(e,t,o)=>new NS(e,t,o),getChartRuntime:function(e,t){let o=lS(t,e.dataSets,e.labelRange).formattedValues,s=hS(t,e.dataSets);e.dataSetsHaveTitle&&s[0]&&o.length>s[0].data.length&&o.shift(),({labels:o,dataSetsValues:s}=sS(o,s)),e.aggregated&&({labels:o,dataSetsValues:s}=iS(o,s)),({dataSetsValues:s,labels:o}=function(e,t){const o=e.reduce(((e,o,s)=>(t.some((e=>{const t=e.data[s];return"number"!=typeof t||t>=0}))&&e.push(s),e)),[]);return{labels:o.map((t=>e[t]||"")),dataSetsValues:t.map((e=>({...e,data:o.map((t=>{const o=e.data[t];return"number"!=typeof o||o>=0?o:0}))})))}}(o,s));const i=function(e,t,o){const s=Xl(e.background),i=rS(e,t,s,o),n={labels:{color:s}};return!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?n.display=!1:n.position=e.legendPosition,Object.assign(i.options.plugins.legend||{},n),i.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},i.options.plugins.tooltip.callbacks.title=function(e){return e[0].dataset.label},i.options.plugins.tooltip.callbacks.label=function(e){const{format:t,locale:s}=o,i=function(e,t){const o=e.filter((e=>"number"==typeof e)).reduce(((e,t)=>e+t),0);if(!o)return"";return(e[t]/o*100).toFixed(2)}(e.dataset.data,e.dataIndex),n=e.label||e.dataset.label,r=e.parsed.y??e.parsed,a=qs(r,{format:!t&&r>=1e3?"#,##":t,locale:s});return n?`${n}: ${a} (${i}%)`:`${a} (${i}%)`},i.options.plugins.chartShowValuesPlugin={showValues:e.showValues,callback:oc(o)},i}(e,o,{format:cS(t,e.dataSets),locale:t.getLocale()}),n=function(e,t){const o=[],s=it(t.map((e=>e.data.length)));for(let t=0;t<=s;t++)o.push(e.next());return o}(new It,s);for(const{label:e,data:t}of s){const o={label:e,data:t,borderColor:"#FFFFFF",backgroundColor:n};i.data.datasets.push(o)}return e.isDoughnut&&(i.type="doughnut"),{chartJsConfig:i,background:e.background||m}},validateChartDefinition:NS.validateChartDefinition,transformDefinition:NS.transformDefinition,getChartDefinitionFromContextCreation:NS.getDefinitionFromContextCreation,sequence:30}),US.add("scorecard",{match:e=>"scorecard"===e,createChart:(e,t,o)=>new fc(e,t,o),getChartRuntime:function(e,t){let o,s="";const i=t.getLocale();if(e.keyValue){const n={sheetId:e.keyValue.sheetId,col:e.keyValue.zone.left,row:e.keyValue.zone.top};o=t.getEvaluatedCell(n),s=function(e,t,o){return e?t?hi(e,o):e.formattedValue??String(e.value??""):""}(o,e.humanize??!1,i)}let n;const r=e.baseline;if(r){const e={sheetId:r.sheetId,col:r.zone.left,row:r.zone.top};n=t.getEvaluatedCell(e)}const{background:a,fontColor:l}=t.getStyleOfSingleCellChart(e.background,e.keyValue),c=function(e,t,o,s,i){if(!e)return"";if("text"===o||t?.type!==So.number||e.type!==So.number)return s?hi(e,i):e.formattedValue;let{value:n,format:r}=e;return"progress"===o?(n=t.value/n,r="0.0%"):(n=Math.abs(t.value-n),"percentage"===o&&0!==n&&(n/=e.value),"percentage"===o&&(r="0.0%"),r||(n=Math.round(100*n)/100)),s?hi({value:n,format:r},i):qs(n,{format:r,locale:i})}(n,o,e.baselineMode,e.humanize??!1,i),h="progress"===e.baselineMode&&ao(c,i)?Qo(c,i):0;return{title:{...e.title,text:bo(e.title.text??"")},keyValue:s,baselineDisplay:c,baselineArrow:dc(n,o,e.baselineMode),baselineColor:hc(n,e.baselineMode,o,e.baselineColorUp,e.baselineColorDown),baselineDescr:"progress"!==e.baselineMode&&e.baselineDescr?bo(e.baselineDescr):"",fontColor:l,background:a,baselineStyle:"percentage"!==e.baselineMode&&"progress"!==e.baselineMode&&r?t.getCellStyle({sheetId:r.sheetId,col:r.zone.left,row:r.zone.top}):void 0,keyValueStyle:e.keyValue?t.getCellStyle({sheetId:e.keyValue.sheetId,col:e.keyValue.zone.left,row:e.keyValue.zone.top}):void 0,progressBar:"progress"===e.baselineMode?{value:h,color:h>0?e.baselineColorUp:e.baselineColorDown}:void 0}},validateChartDefinition:fc.validateChartDefinition,transformDefinition:fc.transformDefinition,getChartDefinitionFromContextCreation:fc.getDefinitionFromContextCreation,sequence:40}),US.add("gauge",{match:e=>"gauge"===e,createChart:(e,t,o)=>new FS(e,t,o),getChartRuntime:function(e,t){const o=t.getLocale(),s=e.sectionRule.colors;let i,n,r;const a=e.dataRange;if(void 0!==a){const e=t.getEvaluatedCell({sheetId:a.sheetId,col:a.zone.left,row:a.zone.top});e.type===So.number&&(i=e.value,n=e.formattedValue,r=e.format)}const l=Number(e.sectionRule.rangeMin),c=Number(e.sectionRule.rangeMax),h=e.sectionRule.lowerInflectionPoint,d=e.sectionRule.upperInflectionPoint,u=MS(h,l,c),g=MS(d,l,c),p=[],m=[];return void 0!==u&&(p.push({value:u,label:qs(u,{locale:o,format:r})}),m.push(s.lowerColor)),void 0!==g&&g!==u&&(p.push({value:g,label:qs(g,{locale:o,format:r})}),m.push(s.middleColor)),void 0!==g&&void 0!==u&&u>g&&(p.reverse(),m.reverse()),m.push(s.upperColor),{background:t.getStyleOfSingleCellChart(e.background,a).background,title:e.title??{text:""},minValue:{value:l,label:qs(l,{locale:o,format:r})},maxValue:{value:c,label:qs(c,{locale:o,format:r})},gaugeValue:void 0!==i&&n?{value:i,label:n}:void 0,inflectionValues:p,colors:m}},validateChartDefinition:FS.validateChartDefinition,transformDefinition:FS.transformDefinition,getChartDefinitionFromContextCreation:FS.getDefinitionFromContextCreation,sequence:50}),US.add("scatter",{match:e=>"scatter"===e,createChart:(e,t,o)=>new kS(e,t,o),getChartRuntime:function(e,t){const{chartJsConfig:o,background:s,dataSetsValues:i,dataSetFormat:n,labelValues:r,labelFormat:a}=IS(e,t);o.type="line";const l=o.options,c=t.getLocale();l.plugins.tooltip.callbacks.title=()=>"",l.plugins.tooltip.callbacks.label=e=>{const t=i[e.datasetIndex].data[e.dataIndex];let o=e.label||r.values[e.dataIndex];ao(o,c)&&(o=Qo(o,c));const s=qs(o,{locale:c,format:a}),l=qs(t,{locale:c,format:n}),h=e.dataset.label;return s?`${h}: (${s}, ${l})`:`${h}: ${l}`};for(const e of o.data.datasets)e.showLine=!1;return{chartJsConfig:o,background:s}},validateChartDefinition:kS.validateChartDefinition,transformDefinition:kS.transformDefinition,getChartDefinitionFromContextCreation:kS.getDefinitionFromContextCreation,sequence:60}),US.add("waterfall",{match:e=>"waterfall"===e,createChart:(e,t,o)=>new VS(e,t,o),getChartRuntime:function(e,t){let o=lS(t,e.dataSets,e.labelRange).formattedValues,s=hS(t,e.dataSets);e.dataSetsHaveTitle&&s[0]&&o.length>s[0].data.length&&o.shift(),({labels:o,dataSetsValues:s}=sS(o,s)),e.aggregated&&({labels:o,dataSetsValues:s}=iS(o,s)),e.showSubTotals&&o.push(bo("Subtotal"));const i=cS(t,e.dataSets),n=t.getLocale(),r=function(e,t,o,s){const{locale:i,format:n}=s,r=Xl(e.background),a=rS(e,t,r,s),l=e.negativeValuesColor||A,c=e.positiveValuesColor||T,h=e.subTotalValuesColor||O,d={labels:{generateLabels:()=>{const t=[{text:bo("Positive values"),fontColor:r,fillStyle:c},{text:bo("Negative values"),fontColor:r,fillStyle:l}];return(e.showSubTotals||e.firstValueAsSubtotal)&&t.push({text:bo("Subtotals"),fontColor:r,fillStyle:h}),t}}};return"none"===e.legendPosition?d.display=!1:d.position=e.legendPosition,a.options.plugins.legend={...a.options.plugins?.legend,...d},a.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},a.options.scales={x:{ticks:{padding:5,color:r},grid:{display:!1},title:ec(e.axesDesign?.x)},y:{position:e.verticalAxisPosition,ticks:{color:r,callback:e=>(e=Number(e),isNaN(e)?e:qs(e,{locale:i,format:!n&&Math.abs(e)>1e3?"#,##":n}))},grid:{lineWidth:e=>0===e.tick.value?2:1},title:ec(e.axesDesign?.y)}},a.options.plugins.tooltip={callbacks:{label:function(e){const[s,r]=e.raw,a=r-s,l=Math.floor(e.dataIndex/t.length),c=o[l],h=qs(a,{format:!n&&Math.abs(a)>1e3?"#,##":n,locale:i});return c?`${c}: ${h}`:h}}},a.options.plugins.waterfallLinesPlugin={showConnectorLines:e.showConnectorLines},a.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,callback:oc(s)},a}(e,o,s.map((e=>e.label)),{format:i,locale:n});r.type="bar";const a=e.negativeValuesColor||A,l=e.positiveValuesColor||T,c=e.subTotalValuesColor||O,h=[],d=[],u={label:"",data:d,backgroundColor:h},g=[];let p=0;for(const t of s){for(let i=0;i<t.data.length;i++){const n=t.data[i];if(g.push(o[i]),isNaN(Number(n))){d.push([p,p]),h.push("");continue}d.push([p,n+p]);let r=n>=0?l:a;0===i&&t===s[0]&&e.firstValueAsSubtotal&&(r=c),h.push(r),p+=n}e.showSubTotals&&(g.push(bo("Subtotal")),d.push([0,p]),h.push(c))}return r.data.datasets.push(u),r.data.labels=g.map(nS),{chartJsConfig:r,background:e.background||m}},validateChartDefinition:VS.validateChartDefinition,transformDefinition:VS.transformDefinition,getChartDefinitionFromContextCreation:VS.getDefinitionFromContextCreation,sequence:70}),US.add("pyramid",{match:e=>"pyramid"===e,createChart:(e,t,o)=>new LS(e,t,o),getChartRuntime:function(e,t){const o={...e.getDefinition(),type:"bar"},s=mS(new pS(o,e.sheetId,t),t).chartJsConfig;let i=s.data?.datasets;i&&i[0]&&(i[0].data=i[0].data.map((e=>e>0?e:0))),i&&i[1]&&(i[1].data=i[1].data.map((e=>e>0?-e:0)));const n=s.options.scales,r=n.x.ticks.callback;n.x.ticks.callback=e=>r(Math.abs(e));const a=s.options.plugins.tooltip.callbacks.label;s.options.plugins.tooltip.callbacks.label=e=>{const t={...e,parsed:{y:e.parsed.y,x:Math.abs(e.parsed.x)}};return a(t)};const l=s.options.plugins.chartShowValuesPlugin.callback;return s.options.plugins.chartShowValuesPlugin.callback=e=>l(Math.abs(e)),{chartJsConfig:s,background:e.background||m}},validateChartDefinition:LS.validateChartDefinition,transformDefinition:LS.transformDefinition,getChartDefinitionFromContextCreation:LS.getDefinitionFromContextCreation,sequence:80});const HS=new n;HS.add("line",lc),HS.add("bar",lc),HS.add("combo",lc),HS.add("pie",lc),HS.add("gauge",eS),HS.add("scatter",lc),HS.add("scorecard",Ec),HS.add("waterfall",lc),HS.add("pyramid",lc);const zS={line:bo("Line"),column:bo("Column"),bar:bo("Bar"),area:bo("Area"),pie:bo("Pie"),misc:bo("Miscellaneous")},BS=new n;BS.add("line",{matcher:e=>"line"===e.type&&!e.stacked&&!e.fillArea,displayName:bo("Line"),chartType:"line",chartSubtype:"line",subtypeDefinition:{stacked:!1,fillArea:!1},category:"line",preview:"o-spreadsheet-ChartPreview.LINE_CHART"}).add("stacked_line",{matcher:e=>"line"===e.type&&!e.fillArea&&!!e.stacked,displayName:bo("Stacked Line"),chartType:"line",chartSubtype:"stacked_line",subtypeDefinition:{stacked:!0,fillArea:!1},category:"line",preview:"o-spreadsheet-ChartPreview.STACKED_LINE_CHART"}).add("area",{matcher:e=>"line"===e.type&&!e.stacked&&!!e.fillArea,displayName:bo("Area"),chartType:"line",chartSubtype:"area",subtypeDefinition:{stacked:!1,fillArea:!0},category:"area",preview:"o-spreadsheet-ChartPreview.AREA_CHART"}).add("stacked_area",{matcher:e=>"line"===e.type&&e.stacked&&!!e.fillArea,displayName:bo("Stacked Area"),chartType:"line",chartSubtype:"stacked_area",subtypeDefinition:{stacked:!0,fillArea:!0},category:"area",preview:"o-spreadsheet-ChartPreview.STACKED_AREA_CHART"}).add("scatter",{displayName:bo("Scatter"),chartType:"scatter",chartSubtype:"scatter",category:"misc",preview:"o-spreadsheet-ChartPreview.SCATTER_CHART"}).add("column",{matcher:e=>"bar"===e.type&&!e.stacked&&!e.horizontal,displayName:bo("Column"),chartType:"bar",chartSubtype:"column",subtypeDefinition:{stacked:!1,horizontal:!1},category:"column",preview:"o-spreadsheet-ChartPreview.COLUMN_CHART"}).add("stacked_column",{matcher:e=>"bar"===e.type&&e.stacked&&!e.horizontal,displayName:bo("Stacked Column"),chartType:"bar",chartSubtype:"stacked_column",subtypeDefinition:{stacked:!0,horizontal:!1},category:"column",preview:"o-spreadsheet-ChartPreview.STACKED_COLUMN_CHART"}).add("bar",{matcher:e=>"bar"===e.type&&!e.stacked&&!!e.horizontal,displayName:bo("Bar"),chartType:"bar",chartSubtype:"bar",subtypeDefinition:{horizontal:!0,stacked:!1},category:"bar",preview:"o-spreadsheet-ChartPreview.BAR_CHART"}).add("stacked_bar",{matcher:e=>"bar"===e.type&&e.stacked&&!!e.horizontal,displayName:bo("Stacked Bar"),chartType:"bar",chartSubtype:"stacked_bar",subtypeDefinition:{horizontal:!0,stacked:!0},category:"bar",preview:"o-spreadsheet-ChartPreview.STACKED_BAR_CHART"}).add("combo",{displayName:bo("Combo"),chartSubtype:"combo",chartType:"combo",category:"line",preview:"o-spreadsheet-ChartPreview.COMBO_CHART"}).add("pie",{matcher:e=>"pie"===e.type&&!e.isDoughnut,displayName:bo("Pie"),chartSubtype:"pie",chartType:"pie",subtypeDefinition:{isDoughnut:!1},category:"pie",preview:"o-spreadsheet-ChartPreview.PIE_CHART"}).add("doughnut",{matcher:e=>"pie"===e.type&&!!e.isDoughnut,displayName:bo("Doughnut"),chartSubtype:"doughnut",chartType:"pie",subtypeDefinition:{isDoughnut:!0},category:"pie",preview:"o-spreadsheet-ChartPreview.DOUGHNUT_CHART"}).add("gauge",{displayName:bo("Gauge"),chartSubtype:"gauge",chartType:"gauge",category:"misc",preview:"o-spreadsheet-ChartPreview.GAUGE_CHART"}).add("scorecard",{displayName:bo("Scorecard"),chartSubtype:"scorecard",chartType:"scorecard",category:"misc",preview:"o-spreadsheet-ChartPreview.SCORECARD_CHART"}).add("waterfall",{displayName:bo("Waterfall"),chartSubtype:"waterfall",chartType:"waterfall",category:"misc",preview:"o-spreadsheet-ChartPreview.WATERFALL_CHART"}).add("pyramid",{displayName:bo("Population Pyramid"),chartSubtype:"pyramid",chartType:"pyramid",category:"misc",preview:"o-spreadsheet-ChartPreview.POPULATION_PYRAMID_CHART"});const $S=new n;Ob`
90
+ `;class iv extends t.Component{static template="o-spreadsheet-Composer";static props={focus:{validate:e=>["inactive","cellFocus","contentFocus"].includes(e)},inputStyle:{type:String,optional:!0},rect:{type:Object,optional:!0},delimitation:{type:Object,optional:!0},onComposerCellFocused:{type:Function,optional:!0},onComposerContentFocused:Function,isDefaultFocus:{type:Boolean,optional:!0},onInputContextMenu:{type:Function,optional:!0}};static components={TextValueProvider:Zb,FunctionDescriptionProvider:Kb};static defaultProps={inputStyle:"",isDefaultFocus:!1};composerStore;DOMFocusableElementStore;composerRef=t.useRef("o_composer");contentHelper=new Yb(this.composerRef.el);composerState=t.useState({positionStart:0,positionEnd:0});autoCompleteState;functionDescriptionState=t.useState({showDescription:!1,functionName:"",functionDescription:{},argToFocus:0});compositionActive=!1;spreadsheetRect=$b();get assistantStyle(){const e=this.composerRef.el.getBoundingClientRect(),t={};t["min-width"]=`${this.props.rect?.width||Jb}px`;const o=this.autoCompleteState.provider?.proposals,s=o?.some((e=>e.description));if((this.functionDescriptionState.showDescription||s)&&(t.width="300px"),this.props.delimitation&&this.props.rect){const{x:e,y:o,height:s}=this.props.rect,i=this.props.delimitation.height-(o+s);if(t["max-height"]=`${i}px`,o>i){const e=o;t["max-height"]=`${e}px`,t.top="-3px",t.transform="translate(0, -100%)"}e+Jb>this.props.delimitation.width&&(t.right="0px")}else this.props.delimitation&&(t["max-height"]=`${this.props.delimitation.height}px`,e.left+Jb>this.spreadsheetRect.width&&(t.right="0px"));return Fb(t)}shouldProcessInputEvents=!1;tokens=[];keyMapping={Enter:e=>this.processEnterKey(e,"down"),"Shift+Enter":e=>this.processEnterKey(e,"up"),"Alt+Enter":this.processNewLineEvent,"Ctrl+Enter":this.processNewLineEvent,Escape:this.processEscapeKey,F2:()=>console.warn("Not implemented"),F4:e=>this.processF4Key(e),Tab:e=>this.processTabKey(e,"right"),"Shift+Tab":e=>this.processTabKey(e,"left")};keyCodeMapping={NumpadDecimal:this.processNumpadDecimal};setup(){this.composerStore=Rl(Ul),this.DOMFocusableElementStore=Rl(Rb),this.autoCompleteState=Tl(jb),t.onMounted((()=>{const e=this.composerRef.el;this.props.isDefaultFocus&&this.DOMFocusableElementStore.setFocusableElement(e),this.contentHelper.updateEl(e)})),t.useEffect((()=>{this.processContent()})),t.useEffect((()=>{this.processTokenAtCursor()}),(()=>["inactive"!==this.composerStore.editionMode]))}processArrowKeys(e){const t=this.composerStore.tokenAtCursor;if((this.composerStore.isSelectingRange||"inactive"===this.composerStore.editionMode)&&(!["ArrowUp","ArrowDown"].includes(e.key)||!this.autoCompleteState.provider||"REFERENCE"===t?.type))return this.functionDescriptionState.showDescription=!1,this.autoCompleteState.hide(),e.preventDefault(),e.stopPropagation(),void qb(e,this.env.model.selection);const o=this.composerStore.currentContent;"cellFocus"!==this.props.focus||this.autoCompleteState.provider||o.startsWith("=")?(e.stopPropagation(),this.handleArrowKeysForAutocomplete(e)):this.composerStore.stopEdition()}handleArrowKeysForAutocomplete(e){["ArrowUp","ArrowDown"].includes(e.key)&&this.autoCompleteState.provider&&(e.preventDefault(),this.autoCompleteState.moveSelection("ArrowDown"===e.key?"next":"previous"))}processTabKey(e,t){if(e.preventDefault(),e.stopPropagation(),"inactive"!==this.composerStore.editionMode){const e=this.autoCompleteState;if(e.provider&&void 0!==e.selectedIndex){const t=e.provider.proposals[e.selectedIndex]?.text;if(t)return void this.autoComplete(t)}this.composerStore.stopEdition()}this.env.model.selection.moveAnchorCell(t,1)}processEnterKey(e,t){e.preventDefault(),e.stopPropagation();const o=this.autoCompleteState;if(o.provider&&void 0!==o.selectedIndex){const e=o.provider.proposals[o.selectedIndex]?.text;if(e)return void this.autoComplete(e)}this.composerStore.stopEdition(),this.env.model.selection.moveAnchorCell(t,1)}processNewLineEvent(e){e.preventDefault(),e.stopPropagation();const t=this.contentHelper.getText(),o=this.contentHelper.getCurrentSelection(),s=Math.min(o.start,o.end),i=Math.max(o.start,o.end);this.composerStore.stopComposerRangeSelection(),this.composerStore.setCurrentContent(t.slice(0,s)+ue+t.slice(i),{start:s+1,end:s+1}),this.processContent()}processEscapeKey(){this.composerStore.cancelEdition()}processF4Key(e){e.stopPropagation(),this.composerStore.cycleReferences(),this.processContent()}processNumpadDecimal(e){e.stopPropagation(),e.preventDefault();const t=this.env.model.getters.getLocale(),o=this.contentHelper.getCurrentSelection(),s=this.composerStore.currentContent,i=s.slice(0,o.start)+t.decimalSeparator+s.slice(o.end);this.composerStore.setCurrentContent(i,{start:o.start+1,end:o.start+1}),this.processContent()}onCompositionStart(){this.compositionActive=!0}onCompositionEnd(){this.compositionActive=!1}onKeydown(e){if("inactive"===this.composerStore.editionMode)return;if(e.key.startsWith("Arrow"))return void this.processArrowKeys(e);let t=this.keyMapping[Hb(e)]||this.keyCodeMapping[Hb(e,"code")];t?t.call(this,e):e.stopPropagation()}onPaste(e){"inactive"!==this.composerStore.editionMode?e.stopPropagation():e.preventDefault()}onInput(e){if(!this.shouldProcessInputEvents)return;let t;if(e.stopPropagation(),t="inactive"===this.composerStore.editionMode?e.data||"":this.contentHelper.getText(),"inactive"===this.props.focus)return this.props.onComposerCellFocused?.(t);let o=this.contentHelper.getCurrentSelection();this.composerStore.stopComposerRangeSelection(),this.composerStore.setCurrentContent(t,o),this.processTokenAtCursor()}onKeyup(e){if(this.contentHelper.el===document.activeElement){if(this.autoCompleteState.provider&&["ArrowUp","ArrowDown"].includes(e.key))return;if(this.composerStore.isSelectingRange&&e.key?.startsWith("Arrow"))return;const{start:t,end:o}=this.composerStore.composerSelection,{start:s,end:i}=this.contentHelper.getCurrentSelection();s===t&&i===o||this.composerStore.changeComposerCursorSelection(s,i),this.processTokenAtCursor()}}updateAutoCompleteIndex(e){this.autoCompleteState.selectIndex(Ce(0,e,10))}onMousedown(e){e.button>0||this.contentHelper.removeSelection()}onClick(){if(this.env.model.getters.isReadonly())return;const e=this.contentHelper.getCurrentSelection();this.composerStore.stopComposerRangeSelection(),this.props.onComposerContentFocused(),this.composerStore.changeComposerCursorSelection(e.start,e.end),this.processTokenAtCursor()}onDblClick(){if(this.env.model.getters.isReadonly())return;const e=this.composerStore.currentContent;if(e.startsWith("=")){const t=this.composerStore.currentTokens,o=this.contentHelper.getCurrentSelection();if(o.start===o.end)return;const s=e.substring(o.start,o.end),i=t.filter((e=>e.value.includes(s)&&e.start<=o.start&&e.end>=o.end))[0];if(!i)return;"REFERENCE"===i.type&&this.composerStore.changeComposerCursorSelection(i.start,i.end)}}onContextMenu(e){"inactive"===this.composerStore.editionMode&&this.props.onInputContextMenu?.(e)}processContent(){if(this.compositionActive)return;this.shouldProcessInputEvents=!1,"inactive"!==this.props.focus&&this.contentHelper.el.focus();const e=this.getContentLines();if(this.contentHelper.setText(e),0!==e.length&&0!==e.length[0]){if("inactive"!==this.props.focus){const{start:e,end:t}=this.composerStore.composerSelection;this.contentHelper.selectRange(e,t)}this.contentHelper.scrollSelectionIntoView()}this.shouldProcessInputEvents=!0}getContentLines(){let e=this.composerStore.currentContent;const t=e.startsWith("=");return""===e?[]:t&&"inactive"!==this.props.focus?this.splitHtmlContentIntoLines(this.getColoredTokens()):this.splitHtmlContentIntoLines([{value:e}])}getColoredTokens(){const e=this.composerStore.currentTokens,t=this.composerStore.tokenAtCursor,o=[],{end:s,start:i}=this.composerStore.composerSelection;for(const n of e){switch(n.type){case"OPERATOR":case"NUMBER":case"ARG_SEPARATOR":case"STRING":o.push({value:n.value,color:sv[n.type]||"#000"});break;case"REFERENCE":const{xc:e,sheetName:s}=Fi(n.value);o.push({value:n.value,color:this.rangeColor(e,s)||"#000"});break;case"SYMBOL":const i=n.value.toUpperCase();"TRUE"===i||"FALSE"===i?o.push({value:n.value,color:sv.NUMBER}):i in yb.content?o.push({value:n.value,color:sv.FUNCTION}):o.push({value:n.value,color:"#000"});break;case"LEFT_PAREN":case"RIGHT_PAREN":t&&["LEFT_PAREN","RIGHT_PAREN"].includes(t.type)&&t.parenIndex&&t.parenIndex===n.parenIndex?o.push({value:n.value,color:sv.MATCHING_PAREN||"#000"}):o.push({value:n.value,color:sv[n.type]||"#000"});break;default:o.push({value:n.value,color:"#000"})}this.composerStore.showSelectionIndicator&&s===i&&s===n.end&&(o[o.length-1].class=ev)}return o}splitHtmlContentIntoLines(e){const t=[];let o=[];for(const s of e)if(s.value.includes(ue)){const e=s.value.split(ue),i=e.pop();for(const i of e)o.push({color:s.color,value:i}),t.push(o),o=[];o.push({...s,value:i})}else o.push(s);o.length&&t.push(o);const s=[];for(const e of t)e.every(this.isContentEmpty)?s.push([e[0]]):s.push(e.filter((e=>!this.isContentEmpty(e))));return s}isContentEmpty(e){return!(e.value||e.class)}rangeColor(e,t){if("inactive"===this.props.focus)return;const o=this.composerStore.highlights,s=t?this.env.model.getters.getSheetIdByName(t):this.composerStore.currentEditedCell.sheetId,i=o.find((t=>{if(t.sheetId!==s)return!1;let o=this.env.model.getters.getRangeFromSheetXC(s,e).zone;return o=1===dn(o)?this.env.model.getters.expandZone(s,o):o,Ki(o,t.zone)}));return i&&i.color?i.color:void 0}processTokenAtCursor(){let e=this.composerStore.currentContent;this.autoCompleteState.provider&&this.autoCompleteState.hide(),this.functionDescriptionState.showDescription=!1;const t=this.composerStore.autocompleteProvider;if(t)return void this.autoCompleteState.useProvider(t);const o=this.composerStore.tokenAtCursor;if(e.startsWith("=")&&o&&"SYMBOL"!==o.type){const e=o.functionContext,t=e?.parent.toUpperCase();if(e&&t&&t in Qb&&"UNKNOWN"!==o.type){const o=Qb[t],s=e.argPosition;this.functionDescriptionState.functionName=t,this.functionDescriptionState.functionDescription=o,this.functionDescriptionState.argToFocus=o.getArgToFocus(s+1)-1,this.functionDescriptionState.showDescription=!0}}}autoComplete(e){e&&(this.autoCompleteState.provider?.selectProposal(e),this.processTokenAtCursor())}}class nv{scope;code="";constructor(e=new av){this.scope=e}append(...e){this.code+=e.map((e=>e.toString())).join("\n")+"\n"}return(e){return new rv(this.scope,this.code,e)}toString(){return lv(this.code)}}class rv{scope;returnExpression;code;constructor(e,t,o){this.scope=e,this.returnExpression=o,this.code=lv(t)}toString(){return this.code}assignResultToVariable(){if(this.scope.isAlreadyDeclared(this.returnExpression))return this;const e=this.scope.nextVariableName(),t=new nv(this.scope);return t.append(this.code),t.append(`const ${e} = ${this.returnExpression};`),t.return(e)}}class av{nextId=1;declaredVariables=new Set;nextVariableName(){const e="_"+this.nextId++;return this.declaredVariables.add(e),e}isAlreadyDeclared(e){return this.declaredVariables.has(e)}}function lv(e){let t="",o=0;const s=e.split("\n").map((e=>e.trim())).filter((e=>""!==e));for(const e of s)e.startsWith("}")&&o--,t+="\t".repeat(o)+e+"\n",e.endsWith("{")&&o++;return t.trim()}const cv=yb.content,hv={"=":"EQ","+":"ADD","-":"MINUS","*":"MULTIPLY","/":"DIVIDE",">=":"GTE","<>":"NE",">":"GT","<=":"LTE","<":"LT","^":"POWER","&":"CONCATENATE"},dv={"-":"UMINUS","+":"UPLUS","%":"UNARY.PERCENT"},uv={};function gv(e){return pv(fa(e))}function pv(e){const{dependencies:t,constantValues:o}=function(e){const t={numbers:[],strings:[]},o=[];for(const s of e)switch(s.type){case"INVALID_REFERENCE":case"REFERENCE":o.push(s.value);break;case"STRING":const e=me(s.value);t.strings.includes(e)||t.strings.push(e);break;case"NUMBER":{const e=co(s.value,Mo);t.numbers.includes(e)||t.numbers.push(e);break}}return{dependencies:o,constantValues:t}}(e),s=function(e,t,o){return ze(e.map((e=>{switch(e.type){case"STRING":const s=me(e.value);return`|S${o.strings.indexOf(s)}|`;case"NUMBER":return`|N${o.numbers.indexOf(co(e.value,Mo))}|`;case"REFERENCE":case"INVALID_REFERENCE":return e.value.includes(":")?`R|${t.indexOf(e.value)}|`:`C|${t.indexOf(e.value)}|`;case"SPACE":return"";default:return e.value}})))}(e,t,o);if(!uv[s]){const i=Ta([...e]),n=new av;if("BIN_OPERATION"===i.type&&":"===i.value)throw new Bo(bo("Invalid formula"));if("EMPTY"===i.type)throw new Bo(bo("Invalid formula"));const r=h(i),a=new nv;a.append(`// ${s}`),a.append(r),a.append(`return ${r.returnExpression};`);let l=new Function("deps","ref","range","ctx",a.toString());function c(e){const{args:t}=e,o=e.value.toUpperCase(),s=cv[o];if(!s)throw new Go(bo('Unknown function: "%s"',e.value));!function(e){const t=e.args.length,o=e.value.toUpperCase(),s=cv[o];if(t<s.minArgRequired)throw new Bo(bo("Invalid number of arguments for the %s function. Expected %s minimum, but got %s instead.",o,s.minArgRequired.toString(),t.toString()));if(t>s.maxArgPossible)throw new Bo(bo("Invalid number of arguments for the %s function. Expected %s maximum, but got %s instead.",o,s.maxArgPossible.toString(),t.toString()));const i=s.nbrArgRepeating;if(i>1){const e=s.args.length-i;if((t-e)%i!=0)throw new Bo(bo("Invalid number of arguments for the %s function. Expected all arguments after position %s to be supplied by groups of %s arguments",o,e.toString(),i.toString()))}}(e);const i=[];for(let e=0;e<t.length;e++){const o=s.getArgToFocus(e+1)-1,n=s.args[o],r=t[e],a=n.type||[],l=a.includes("META"),c=a.some((e=>e.startsWith("RANGE")));i.push(h(r,l,c))}return i}function h(e,s=!1,i=!1){const r=new nv(n);if("REFERENCE"!==e.type&&("BIN_OPERATION"!==e.type||":"!==e.value)&&s)throw new Bo(bo("Argument must be a reference to a cell or range."));switch(e.debug&&r.append("debugger;"),e.type){case"BOOLEAN":return r.return(`{ value: ${e.value} }`);case"NUMBER":return r.return(`{ value: this.constantValues.numbers[${o.numbers.indexOf(e.value)}] }`);case"STRING":return r.return(`{ value: this.constantValues.strings[${o.strings.indexOf(e.value)}] }`);case"REFERENCE":const n=t.indexOf(e.value);return!s&&e.value.includes(":")||i?r.return(`range(deps[${n}])`):r.return(`ref(deps[${n}], ${s?"true":"false"})`);case"FUNCALL":const a=c(e).map((e=>e.assignResultToVariable()));r.append(...a);const l=e.value.toUpperCase();return r.return(`ctx['${l}'](${a.map((e=>e.returnExpression))})`);case"UNARY_OPERATION":{const t=dv[e.value],o=h(e.operand,!1,!1).assignResultToVariable();return r.append(o),r.return(`ctx['${t}'](${o.returnExpression})`)}case"BIN_OPERATION":{const t=hv[e.value],o=h(e.left,!1,!1).assignResultToVariable(),s=h(e.right,!1,!1).assignResultToVariable();return r.append(o),r.append(s),r.return(`ctx['${t}'](${o.returnExpression}, ${s.returnExpression})`)}case"EMPTY":return r.return("undefined")}}uv[s]=l}return{execute:uv[s],dependencies:t,constantValues:o,tokens:e}}const mv=yb.content;function fv(e){try{return 0===Oa(Ta(e)).filter((e=>"FUNCALL"===e.type&&!mv[e.value.toUpperCase()]?.isExported)).length}catch(e){return!1}}function bv(e,t){if(!e.some((e=>"SYMBOL"===e.type&&t.includes(e.value.toUpperCase()))))return[];let o;try{o=Ta(e)}catch{return[]}return function(e,t){return Oa(e).filter((e=>"FUNCALL"===e.type&&t.includes(e.value.toUpperCase()))).map((e=>({functionName:e.value.toUpperCase(),args:e.args})))}(o,t)}const vv=["PIVOT.VALUE","PIVOT.HEADER","PIVOT"];function Sv(e,t){const o=`"${t?`${e.name}:${t}`:e.name}"`,s=e.string!==e.name?e.string+o:o;return{text:o,description:e.string+(e.help?` (${e.help})`:""),htmlContent:[{value:o,color:sv.STRING}],fuzzySearchKey:s}}function yv(e,t){let o=e.end;const s=e.end;"ARG_SEPARATOR"!==e.type&&(o=e.start),this.composer.stopComposerRangeSelection(),this.composer.changeComposerCursorSelection(o,s),this.composer.replaceComposerCursorSelection(t)}function Cv(e,t){let o=e.end;const s=e.end;"LEFT_PAREN"!==e.type&&(o=e.start),this.composer.stopComposerRangeSelection(),this.composer.changeComposerCursorSelection(o,s),this.composer.replaceComposerCursorSelection(t)}function wv(e){const t=e.functionContext?.args[0];if(t&&["STRING","NUMBER"].includes(t.type))return t.value}function xv(e){return bv(e,vv)[0]}function Ev(e){return bv(e,vv).length}const Iv=new n;Iv.add("SPREADSHEET",!1),el.add("pivot_ids",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if(!t||!["PIVOT.VALUE","PIVOT.HEADER","PIVOT"].includes(t.parent.toUpperCase())||0!==t.argPosition)return;const o=this.getters.getPivotIds();return o.includes(e.value)?void 0:o.map((e=>{const t=this.getters.getPivotCoreDefinition(e),o=`${this.getters.getPivotFormulaId(e)}`;return{text:o,description:t.name,htmlContent:[{value:o,color:sv.NUMBER}],fuzzySearchKey:o+t.name}})).filter(Le)},selectProposal:Cv}),el.add("pivot_measures",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if("PIVOT.VALUE"!==t?.parent.toUpperCase()||1!==t.argPosition)return[];const o=wv(e),s=this.getters.getPivotId(o);if(!s||!this.getters.isExistingPivot(s))return[];const i=this.getters.getPivot(s);i.init();const n=i.getFields();return this.getters.getPivotCoreDefinition(s).measures.map((e=>{if("__count"===e.name){const e='"__count"';return{text:e,description:bo("Count"),htmlContent:[{value:e,color:sv.STRING}],fuzzySearchKey:bo("Count")+e}}const t=n[e.name];if(t)return Sv(t)})).filter(Le)},selectProposal:yv}),el.add("pivot_group_fields",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if(!t||!function(e){const t=e.functionContext;return"PIVOT.VALUE"===t?.parent.toUpperCase()&&t.argPosition>=2&&t.argPosition%2==0}(e)&&!function(e){const t=e.functionContext;return"PIVOT.HEADER"===t?.parent.toUpperCase()&&t.argPosition>=1&&t.argPosition%2==1}(e))return;const o=wv(e),s=this.getters.getPivotId(o);if(!s||!this.getters.isExistingPivot(s))return;const i=this.getters.getPivot(s);i.init();const n=i.getFields(),{columns:r,rows:a}=i.definition;let l=t.args;"PIVOT.VALUE"===t?.parent.toUpperCase()?(l=l.filter(((e,t)=>t%2==0)),l=l.slice(1,t.argPosition)):l=l.filter(((e,t)=>t%2==1));const c=l.map((e=>e?.value)).filter(Le),h=r.map((e=>e.nameWithGranularity)),d=a.map((e=>e.nameWithGranularity)),u=[],g=["ARG_SEPARATOR","SPACE"].includes(e.type)?c.at(-1):c.at(-2);if(void 0===g&&(u.push(h[0]),u.push(d[0])),d.includes(g)){const e=d[d.indexOf(g)+1];u.push(e),u.push(h[0])}if(h.includes(g)){const e=h[h.indexOf(g)+1];u.push(e)}const p=u.filter(Le);return p.map((e=>{const[t,o]=e.split(":"),s=n[t];return s?Sv(s,o):void 0})).concat(p.map((e=>{if(!Iv.get(i.type))return;const t=e.split(":")[0],o=n[t];if(!o)return;const s=`"#${e}"`;return{text:s,description:bo("%s (positional)",o.string)+(o.help?` (${o.help})`:""),htmlContent:[{value:s,color:sv.STRING}],fuzzySearchKey:o.string+s}}))).filter(Le)},selectProposal:yv}),el.add("pivot_group_values",{sequence:50,autoSelectFirstProposal:!0,getProposals(e){const t=e.functionContext;if(!t||!e||!function(e){const t=e.functionContext;return"PIVOT.VALUE"===t?.parent.toUpperCase()&&t.argPosition>=2&&t.argPosition%2==1}(e)&&!function(e){const t=e.functionContext;return"PIVOT.HEADER"===t?.parent.toUpperCase()&&t.argPosition>=1&&t.argPosition%2==0}(e))return;const o=wv(e),s=this.getters.getPivotId(o);if(!s||!this.getters.isExistingPivot(s))return;const i=this.getters.getPivot(s);if(!i.isValid())return;const n=t.argPosition,r=e.functionContext?.args[n-1]?.value;if(!r)return;let a;try{a=i.definition.getDimension(r)}catch(e){return}return"month_number"===a.granularity?Object.values(Bs).map(((e,t)=>({text:`${t+1}`,fuzzySearchKey:e.toString(),description:e.toString(),htmlContent:[{value:`${t+1}`,color:sv.NUMBER}]}))):"quarter_number"===a.granularity?[1,2,3,4].map((e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:bo("Quarter %s",e),htmlContent:[{value:`${e}`,color:sv.NUMBER}]}))):"day_of_month"===a.granularity?we(1,32).map((e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:"",htmlContent:[{value:`${e}`,color:sv.NUMBER}]}))):"iso_week_number"===a.granularity?we(0,54).map((e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:"",htmlContent:[{value:`${e}`,color:sv.NUMBER}]}))):i.getPossibleFieldValues(a).map((({value:e,label:t})=>{const o="string"==typeof e,s=o?`"${e}"`:e.toString();return{text:s,description:t,htmlContent:[{value:s,color:o?sv.STRING:sv.NUMBER}],fuzzySearchKey:e+t}}))},selectProposal:yv}),el.add("sheet_names",{sequence:150,autoSelectFirstProposal:!0,getProposals(e){return"SYMBOL"===e.type||"UNKNOWN"===e.type&&e.value.startsWith("'")?this.getters.getSheetIds().map((e=>{const t=ye(this.getters.getSheetName(e));return{text:t,fuzzySearchKey:t.startsWith("'")?t:"'"+t}})):[]},selectProposal(e,t){const o=e.start,s=e.end;this.composer.changeComposerCursorSelection(o,s),this.composer.replaceComposerCursorSelection(t+"!")}});const Rv=new n;Rv.add("ALPHANUMERIC_INCREMENT_MODIFIER",{apply:(e,t)=>{e.current+=e.increment;const o=`${e.prefix}${e.current.toString().padStart(e.numberPostfixLength||0,"0")}`;return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:o},tooltip:{props:{content:o}}}}}).add("INCREMENT_MODIFIER",{apply:(e,t,o)=>{e.current+=e.increment;const s=e.current.toString(),i=o.getLocale(),n=qs(e.current,{format:t.cell?.format,locale:i});return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:s},tooltip:s?{props:{content:n}}:void 0}}}).add("COPY_MODIFIER",{apply:(e,t,o)=>{const s=t.cell?.content||"",i={locale:o.getLocale(),format:t.cell?.format};return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:s},tooltip:s?{props:{content:t.cell?Wa(t.cell,i).formattedValue:""}}:void 0}}}).add("FORMULA_MODIFIER",{apply:(e,t,o,s)=>{e.current+=e.increment;let i=0,n=0;switch(s){case"up":i=0,n=-e.current;break;case"down":i=0,n=e.current;break;case"left":i=-e.current,n=0;break;case"right":i=e.current,n=0}const r=t.cell;if(!r||!r.isFormula)return{cellData:{}};const a=t.sheetId,l=o.getTranslatedCellFormula(a,i,n,r.compiledFormula);return{cellData:{border:t.border,style:r.style,format:r.format,content:l},tooltip:l?{props:{content:l}}:void 0}}});const Tv=new n,Av=/(\d+)$/,Ov=/^(.*\D+)/,_v=/^(.*\D+)(\d+)$/;function Dv(e,t,o){let s=[],i=!1;for(let n of t){n===e&&(i=!0);const t=void 0===n||n.isFormula?void 0:Wa(n,{locale:Mo});if(t&&o(t))s.push(t);else{if(i)return s;s=[]}}return s}function Fv(e){let t=1;return e.length>=2&&(t=function(e){const t=[];let o=e[0];for(let s=1;s<e.length;s++){const i=e[s];t.push(i-o),o=i}return t.reduce(((e,t)=>e+t),0)/t.length}(e)*e.length),t}Tv.add("simple_value_copy",{condition:(e,t)=>!(1!==t.length||e.isFormula||e.format&&Js(e.format)),generateRule:()=>({type:"COPY_MODIFIER"}),sequence:10}).add("increment_alphanumeric_value",{condition:e=>!e.isFormula&&Wa(e,{locale:Mo}).type===So.text&&_v.test(e.content),generateRule:(e,t)=>{const o=parseInt(e.content.match(Av)[0]),s=e.content.match(Ov)[0],i=e.content.length-s.length,n=Fv(Dv(e,t,(e=>e.type===So.text&&_v.test(e.value))).filter((e=>s===(e.value??"").toString().match(Ov)[0])).map((e=>parseInt((e.value??"").toString().match(Av)[0]))));return{type:"ALPHANUMERIC_INCREMENT_MODIFIER",prefix:s,current:o,increment:n,numberPostfixLength:i}},sequence:15}).add("copy_text",{condition:e=>!e.isFormula&&Wa(e,{locale:Mo}).type===So.text,generateRule:()=>({type:"COPY_MODIFIER"}),sequence:20}).add("update_formula",{condition:e=>e.isFormula,generateRule:(e,t)=>({type:"FORMULA_MODIFIER",increment:t.length,current:0}),sequence:30}).add("increment_number",{condition:e=>!e.isFormula&&Wa(e,{locale:Mo}).type===So.number,generateRule:(e,t)=>{const o=Fv(Dv(e,t,(e=>e.type===So.number)).map((e=>Number(e.value)))),s=Wa(e,{locale:Mo});return{type:"INCREMENT_MODIFIER",increment:o,current:s.type===So.number?s.value:0}},sequence:40});const Mv=new n,Pv=30,Nv=10,Lv=20,kv=12,Vv=80,Uv="#F3F2F1",Hv="#666666",zv="#C8C8C8",Bv="#666666aa",$v=6,Wv=25,Gv=D,qv=_,Zv=_;function jv(e,t){const o=e.getBoundingClientRect();e.width=o.width,e.height=o.height;const s=e.getContext("2d"),i=function(e,t,o){const s=t.maxValue,i=t.minValue,n=t.gaugeValue,r=function(e,t){const o=t?Wv:0,s=e.height-Lv-o-Nv,i=e.width-2*Pv;let n,r;i>2*s?(n=2*s,r=s):(n=i,r=i/2);const a=o+Nv+(s-r)/2;return{x:Pv+(i-n)/2,y:a,width:n,height:r}}(e,t.title.text),a=r.width/6,l=n?(n.value-i.value)/(s.value-i.value):0,c={x:e.width/2,y:r.y+r.height-r.height/12};let h=Vv;r.height<300&&(h*=r.height/300);const d=r.width/2,u=n?.label||"-";In(o,u,{fontSize:h},"px")>d&&(h=Pn(d,h,(e=>In(o,u,{fontSize:e},"px"))));const g={x:r.x+a/2,y:r.y+r.height+kv},p={x:r.x+r.width-a/2,y:r.y+r.height+kv},m=(b=t.background,pt(b)>.3?Hv:zv),f=function(e,t,o,s){const i=e.maxValue,n=e.minValue,r={x:t.x+t.width/2,y:t.y+t.height},a={fontSize:kv},l=[],c=[];for(const h of e.inflectionValues){const e=(h.value-n.value)/(i.value-n.value),d=In(s,h.label,a,"px"),u=Math.PI-Math.PI*e,g=Jv(u,t.height+$v,r.x,r.y,d+2,kv);let p=c.some((e=>Qv(e,g)))?kv:0;c.push(g),l.push({rotation:u,label:h.label,fontSize:kv,color:o,offset:p})}return l}(t,r,m,o);var b;let v=0,S=0,y=0;t.title.text&&({width:S,height:y}=An(o,t.title.text,{...t.title,fontSize:Gv},"px"));switch(t.title.align){case"right":v=e.width-S-qv;break;case"center":v=(e.width-S)/2;break;default:v=qv}return{width:e.width,height:e.height,title:{label:t.title.text??"",fontSize:Gv,textPosition:{x:v,y:Zv+y/2},color:t.title.color??m,bold:t.title.bold,italic:t.title.italic},backgroundColor:t.background,gauge:{rect:r,arcWidth:a,percentage:Ce(l,0,1),color:Yv(t)},inflectionValues:f,gaugeValue:{label:u,textPosition:c,fontSize:h,color:m},minLabel:{label:t.minValue.label,textPosition:g,fontSize:kv,color:m},maxLabel:{label:t.maxValue.label,textPosition:p,fontSize:kv,color:m}}}(o,t,s);!function(e,t){e.save(),e.fillStyle=t.backgroundColor,e.fillRect(0,0,t.width,t.height),e.restore()}(s,i),function(e,t){e.save();const o=t.gauge,s=o.rect.x+o.rect.width/2,i=o.rect.y+o.rect.height,n=o.rect.height-o.arcWidth/2;if(n<0)return;const r=1===o.percentage?0:Math.PI*(1+o.percentage);e.strokeStyle=Uv,e.beginPath(),e.lineWidth=o.arcWidth,e.arc(s,i,n,r,0),e.stroke(),e.strokeStyle=o.color,e.beginPath(),e.arc(s,i,n,Math.PI,r),e.stroke(),e.restore()}(s,i),function(e,t){const{x:o,y:s,width:i,height:n}=t.gauge.rect;for(const r of t.inflectionValues){e.save(),e.translate(o+i/2-.5,s+n-.5),e.rotate(Math.PI/2-r.rotation),e.lineWidth=2,e.strokeStyle=Bv,e.beginPath(),e.moveTo(0,-(n-t.gauge.arcWidth)),e.lineTo(0,-n-3),e.stroke(),e.textAlign="center",e.font=`${r.fontSize}px ${Y}`,e.fillStyle=r.color;const a=-n-$v-r.offset;e.fillText(r.label,0,a),e.restore()}}(s,i),function(e,t){for(const o of[t.minLabel,t.maxLabel,t.gaugeValue])e.save(),e.textAlign="center",e.fillStyle=o.color,e.font=`${o.fontSize}px ${Y}`,e.fillText(o.label,o.textPosition.x,o.textPosition.y),e.restore()}(s,i),function(e,t){e.save();const o=t.title;e.font=xn(o.fontSize,o.bold,o.italic),e.textBaseline="middle",e.fillStyle=o.color,e.fillText(o.label,o.textPosition.x,o.textPosition.y),e.restore()}(s,i)}function Yv(e){const t=e.gaugeValue?.value;if(void 0===t)return Uv;let o=0;for(;e.inflectionValues[o]?.value<=t;)o++;return e.colors[o]}function Xv(e){return[{start:e.topLeft,end:e.topRight},{start:e.topRight,end:e.bottomRight},{start:e.bottomRight,end:e.bottomLeft},{start:e.bottomLeft,end:e.topLeft}]}function Kv(e,t){const o=e.start,s=e.end,i=t.start,n=t.end;function r(e,t,o){return(o.y-e.y)*(t.x-e.x)>(t.y-e.y)*(o.x-e.x)}return r(o,i,n)!==r(s,i,n)&&r(o,s,i)!==r(o,s,n)}function Qv(e,t){const o=Xv(e),s=Xv(t);for(const e of o)for(const t of s)if(Kv(e,t))return!0;return!1}function Jv(e,t,o,s,i,n){const r=Math.cos(e),a=Math.sin(e),l=r*t,c=a*t,h=a*(i/2),d=r*(i/2),u=r*(t+n),g=a*(t+n);return{bottomLeft:{x:l-h+o,y:s-(c+d)},bottomRight:{x:l+h+o,y:s-(c-d)},topRight:{x:u+h+o,y:s-(g-d)},topLeft:{x:u-h+o,y:s-(g+d)}}}class eS extends t.Component{static template="o-spreadsheet-GaugeChartComponent";canvas=t.useRef("chartContainer");get runtime(){return this.env.model.getters.getChartRuntime(this.props.figure.id)}setup(){t.useEffect((()=>jv(this.canvas.el,this.runtime)),(()=>{const e=this.canvas.el.getBoundingClientRect();return[e.width,e.height,this.runtime,this.canvas.el]}))}}function tS(e){return 8===(e=ht(e).replace("#","")).length?e.slice(6)+e.slice(0,6):e}function oS(e,t){if(t.dataRange){const o=t.labelCell?[t.labelCell.zone]:[],s=Pi([t.dataRange.zone],o)[0];if(void 0===s)return[];const i=e.getRangeFromZone(t.dataRange.sheetId,s);return e.getRangeValues(i).map((e=>""===e?void 0:e))}return[]}function sS(e,t){const o=we(0,Math.max(e.length,...t.map((e=>e.data?.length||0)))).filter((o=>{const s=e[o],i=t.map((e=>e.data?.[o]));return s||i.some((e=>0===e||Boolean(e)))}));return{labels:o.map((t=>e[t]||"")),dataSetsValues:t.map((e=>({...e,data:o.map((t=>e.data[t]))})))}}function iS(e,t){const o=new Set(e),s={};o.forEach((e=>{s[e]=new Array(t.length).fill(0)}));for(const o of we(0,e.length)){const n=e[o];for(const e of we(0,t.length))s[n][e]+="number"==typeof(i=t[e].data[o])?i:0}var i;return{labels:Array.from(o),dataSetsValues:t.map(((e,t)=>({...e,data:Array.from(o).map((e=>s[e][t]))})))}}function nS(e){return e?e.length>ee?e.substring(0,ee)+"…":e:""}function rS(e,t,o,{format:s,locale:i,truncateLabels:n=!0,horizontalChart:r}){const a=e.title.text?e.title:{...e.title,content:""},l={responsive:!0,maintainAspectRatio:!1,layout:{padding:{left:_,right:_,top:a.text?_/2:_+5,bottom:_}},elements:{line:{fill:!1},point:{hitRadius:15}},animation:!1,plugins:{title:{display:!!a.text,text:bo(a.text),color:a?.color??o,align:"center"===a.align?"center":"right"===a.align?"end":"start",font:{size:D,weight:a.bold?"bold":"normal",style:a.italic?"italic":"normal"}},legend:{onClick:()=>{}},tooltip:{callbacks:{label:function(e){const t=e.dataset?.label||e.label;let o=r?e.parsed.x:e.parsed.y;null==o&&(o=e.parsed);const n=qs(o,{format:!s&&Math.abs(o)>=1e3?"#,##":s,locale:i});return t?`${t}: ${n}`:n}}}}};return{type:e.type,options:l,data:{labels:n?t.map(nS):t,datasets:[]},platform:void 0,plugins:[]}}function aS(e,t){if(!t)return;const{sheetId:o,zone:{left:s,top:i,bottom:n}}=t;for(let t=i;t<=n;t++){const i=e.getEvaluatedCell({sheetId:o,col:s,row:t}).format;if(i)return i}}function lS(e,t,o){let s={values:[],formattedValues:[]};if(o)o.invalidXc||o.invalidSheetName||(s={formattedValues:e.getRangeFormattedValues(o),values:e.getRangeValues(o).map((e=>String(e??"")))});else if(1===t.length)for(let o=0;o<oS(e,t[0]).length;o++)s.formattedValues.push(""),s.values.push("");else if(t[0]){s={formattedValues:we(0,oS(e,t[0]).length).map((e=>e.toString())),values:s.formattedValues}}return s}function cS(e,t){for(const o of t){const t=e.getRangeFormats(o.dataRange).find((e=>void 0!==e&&!Js(e)));if(t)return t}}function hS(e,t){const o=[];for(const[s,i]of Object.entries(t)){let t;if(i.labelCell){const o=i.labelCell,n=o?e.getEvaluatedCell({sheetId:o.sheetId,col:o.zone.left,row:o.zone.top}):void 0;t=n&&o?nS(n.formattedValue):t=`${al.Series} ${parseInt(s)+1}`}else t=`${al.Series} ${parseInt(s)+1}`;let n=i.dataRange?oS(e,i):[];n.every((e=>"string"==typeof e&&!Xo(e)))&&n.fill(1),o.push({data:n,label:t})}return o}function dS(e,t){return t?0===e?"origin":"-1":"origin"}function uS(e,t,o){const s=document.createElement("div");s.style.width=`${t.width}px`,s.style.height=`${t.height}px`;const i=document.createElement("canvas");if(s.append(i),i.setAttribute("width",t.width.toString()),i.setAttribute("height",t.height.toString()),document.body.append(s),"chartJsConfig"in e){const t=be(e.chartJsConfig);t.plugins=[gS];const o=new window.Chart(i,t),n=o.toBase64Image();return o.destroy(),s.remove(),n}if("scorecard"===o){bc(yc(t,e),i);const o=i.toDataURL();return s.remove(),o}if("gauge"===o){jv(i,e);const t=i.toDataURL();return s.remove(),t}}eS.props={figure:Object};const gS={id:"customCanvasBackgroundColor",beforeDraw:e=>{const{ctx:t}=e;t.save(),t.globalCompositeOperation="destination-over",t.fillStyle="#ffffff",t.fillRect(0,0,e.width,e.height),t.restore()}};class pS extends cc{dataSets;labelRange;background;legendPosition;stacked;aggregated;type="bar";dataSetsHaveTitle;dataSetDesign;axesDesign;horizontal;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.stacked=e.stacked,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.horizontal=e.horizontal,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,stacked:e.stacked??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"bar",labelRange:e.auxiliaryRange||void 0,axesDesign:e.axesDesign,showValues:e.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new pS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new pS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"bar",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,stacked:this.stacked,aggregated:this.aggregated,axesDesign:this.axesDesign,horizontal:this.horizontal,showValues:this.showValues}}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new pS(i,this.sheetId,this.getters)}}function mS(e,t){let o=lS(t,e.dataSets,e.labelRange).formattedValues,s=hS(t,e.dataSets);e.dataSetsHaveTitle&&s[0]&&o.length>s[0].data.length&&o.shift(),({labels:o,dataSetsValues:s}=sS(o,s)),e.aggregated&&({labels:o,dataSetsValues:s}=iS(o,s));const i=function(e,t,o){const s=Xl(e.background),i=rS(e,t,s,{...o,horizontalChart:e.horizontal}),n={labels:{color:s}};!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?n.display=!1:n.position=e.legendPosition,i.options.plugins.legend={...i.options.plugins?.legend,...n},i.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},i.options.indexAxis=e.horizontal?"y":"x",i.options.scales={};const r={ticks:{padding:5,color:s}},a={beginAtZero:!0,ticks:{color:s,callback:oc(o)}},l=e.horizontal?a:r,c=e.horizontal?r:a,{useLeftAxis:h,useRightAxis:d}=tc(e.getDefinition());return i.options.scales.x={...l,title:ec(e.axesDesign?.x)},h&&(i.options.scales.y={...c,position:"left",title:ec(e.axesDesign?.y)}),d&&(i.options.scales.y1={...c,position:"right",title:ec(e.axesDesign?.y1)}),e.stacked&&(i.options.scales.x.stacked=!0,h&&(i.options.scales.y.stacked=!0),d&&(i.options.scales.y1.stacked=!0)),i.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,horizontal:e.horizontal,callback:oc(o)},i}(e,o,{format:cS(t,e.dataSets),locale:t.getLocale()}),n=new It,r=e.getDefinition();for(const{label:e,data:t}of s){const o=n.next(),s={label:e,data:t,borderColor:o,backgroundColor:o};i.data.datasets.push(s)}for(const[t,o]of i.data.datasets.entries()){if(r.dataSets?.[t]?.backgroundColor){const e=r.dataSets[t].backgroundColor;o.backgroundColor=e,o.borderColor=e}if(r.dataSets?.[t]?.label){const e=r.dataSets[t].label;o.label=e}r.dataSets?.[t]?.yAxisId&&!e.horizontal&&(o.yAxisID=r.dataSets[t].yAxisId)}return{chartJsConfig:i,background:e.background||m}}const fS={second:1e3,minute:6e4,hour:36e5,day:864e5,month:2592e6,year:31536e6},bS={inSeconds:function(e){return Math.floor(e/fS.second)},inMinutes:function(e){return Math.floor(e/fS.minute)},inHours:function(e){return Math.floor(e/fS.hour)},inDays:function(e){return Math.floor(e/fS.day)},inMonths:function(e){return Math.floor(e/fS.month)},inYears:function(e){return Math.floor(e/fS.year)}},vS=/^((d|dd|m|mm|yyyy|yy|hh|h|ss|a)(-|:|\s|\/))*(d|dd|m|mm|yyyy|yy|hh|h|ss|a)$/i;function SS(e,t,o){const s=function(e){const t=e.indexOf("h");e=t>=0?e.slice(0,t).replace(/m/g,"M")+e.slice(t):e.replace(/m/g,"M");e.includes("a")||(e=e.replace(/h/g,"H"));return e}(t),i=function(e,t,o){const s=e.map((e=>qt(e,o)?.jsDate));if(s.some((e=>void 0===e))||e.length<2)return;const i=s.map((e=>e.getTime())),n=it(i)-nt(i),r=function(e){if(e.includes("s"))return"second";if(e.includes("m"))return"minute";if(e.includes("h")||e.includes("H"))return"hour";if(e.includes("d"))return"day";if(e.includes("M"))return"month";return"year"}(t);if(fS.second>=fS[r]&&bS.inSeconds(n)<180)return"second";if(fS.minute>=fS[r]&&bS.inMinutes(n)<180)return"minute";if(fS.hour>=fS[r]&&bS.inHours(n)<96)return"hour";if(fS.day>=fS[r]&&bS.inDays(n)<90)return"day";if(fS.month>=fS[r]&&bS.inMonths(n)<36)return"month";return"year"}(e,s,o),n={};return i&&(n[i]=s),{parser:s,displayFormats:n,unit:i??!1}}function yS(e,t){return wS(e,t)||xS(e,t)}function CS(e,t){return function(e,t){return!e.labelsAsText&&wS(e.labelRange,t)}(e,t)&&function(){if(!window.Chart)return!1;const e="luxon"===new window.Chart._adapters._date({})._id;e||ES||(ES=!0,console.warn("'chartjs-adapter-luxon' time adapter is not installed. Time scale axes are disabled."));return e}()?"time":function(e,t){return!e.labelsAsText&&xS(e.labelRange,t)}(e,t)?"linear":"category"}function wS(e,t){if(!e||!xS(e,t))return!1;const o=aS(t,e);return Boolean(o&&vS.test(o))}function xS(e,t){if(!e)return!1;const o=t.getRangeValues(e);return!o.some((e=>isNaN(Number(e))&&e))&&!o.every((e=>!e))}let ES=!1;function IS(e,t){const o=CS(e,t),s=lS(t,e.dataSets,e.labelRange);let i="linear"===o?s.values:s.formattedValues,n=hS(t,e.dataSets);e.dataSetsHaveTitle&&n[0]&&i.length>n[0].data.length&&i.shift(),({labels:i,dataSetsValues:n}=sS(i,n)),"time"===o&&({labels:i,dataSetsValues:n}=function(e,t){if(0===e.length||e.every((e=>!e)))return{labels:e,dataSetsValues:t};const o=[...e],s=be(t);for(let e=0;e<o.length;e++)if(!o[e]){o[e]=$e(o,e);for(let t of s)t.data[e]=void 0}return{labels:o,dataSetsValues:s}}(i,n)),e.aggregated&&({labels:i,dataSetsValues:n}=iS(i,n));const r=t.getLocale(),a="category"===o,l=cS(t,e.dataSets),c=function(e,t,o){const s=Xl(e.background),i=rS(e,t,s,o),n={labels:{color:s,generateLabels(e){const{data:t}=e,o=window.Chart.defaults.plugins.legend.labels.generateLabels(e);for(const[e,s]of o.entries())s.fillStyle=t.datasets[e].borderColor;return o}}};!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?n.display=!1:n.position=e.legendPosition,Object.assign(i.options.plugins.legend||{},n),i.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},i.options.scales={x:{ticks:{padding:5,color:s},title:ec(e.axesDesign?.x)}};const r={beginAtZero:!0,ticks:{color:s,callback:oc(o)}},{useLeftAxis:a,useRightAxis:l}=tc(e.getDefinition());return a&&(i.options.scales.y={...r,position:"left",title:ec(e.axesDesign?.y)}),l&&(i.options.scales.y1={...r,position:"right",title:ec(e.axesDesign?.y1)}),"stacked"in e&&e.stacked&&(a&&(i.options.scales.y.stacked=!0),l&&(i.options.scales.y1.stacked=!0)),i.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,callback:oc(o)},i}(e,i,{format:l,locale:r,truncateLabels:a}),h=aS(t,e.labelRange);if("time"===o){const e={type:"time",time:SS(i,h,r)};Object.assign(c.options.scales.x,e),c.options.scales.x.ticks.maxTicksLimit=15}else"linear"===o&&(c.options.scales.x.type="linear",c.options.scales.x.ticks.callback=e=>qs(e,{format:h,locale:r}),c.options.plugins.tooltip.callbacks.title=e=>qs(e[0].parsed.x||e[0].label,{locale:r,format:h}));const d="fillArea"in e&&e.fillArea,u="stacked"in e&&e.stacked,g="cumulative"in e&&e.cumulative,p=new It,f=e.getDefinition();for(let[e,{label:t,data:s}]of n.entries()){const n=p.next();let r=ft(n);if(d&&(r.a=ne),g){let e=0;s=s.map((t=>isNaN(t)?t:(e+=parseFloat(t),e)))}["linear","time"].includes(o)&&(s=s.map(((e,t)=>({x:i[t]||void 0,y:e}))));const a={label:t,data:s,tension:0,borderColor:n,backgroundColor:mt(r),pointBackgroundColor:n,fill:!!d&&dS(e,u)};c.data.datasets.push(a)}for(const[e,t]of c.data.datasets.entries()){if(f.dataSets?.[e]?.backgroundColor){const o=f.dataSets[e].backgroundColor;t.backgroundColor=o,t.borderColor=o,t.pointBackgroundColor=o}if(f.dataSets?.[e]?.label){const o=f.dataSets[e].label;t.label=o}f.dataSets?.[e]?.yAxisId&&(t.yAxisID=f.dataSets[e].yAxisId)}return{chartJsConfig:c,background:e.background||m,dataSetsValues:n,labelValues:s,dataSetFormat:l,labelFormat:h}}class RS extends cc{dataSets;labelRange;background;legendPosition;aggregated;dataSetsHaveTitle;dataSetDesign;axesDesign;type="combo";showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"combo",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,axesDesign:this.axesDesign,showValues:this.showValues}}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new RS(i,this.sheetId,this.getters)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,aggregated:e.aggregated,legendPosition:e.legendPosition??"top",title:e.title||{text:""},labelRange:e.auxiliaryRange||void 0,type:"combo",axesDesign:e.axesDesign,showValues:e.showValues}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new RS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new RS(t,e,this.getters)}}function TS(e){return e.dataRange&&!Ri.test(e.dataRange)?"InvalidGaugeDataRange":"Success"}function AS(e,t){return t((t=>t.sectionRule?e(t.sectionRule.rangeMin,"rangeMin"):"Success"),(t=>t.sectionRule?e(t.sectionRule.rangeMax,"rangeMax"):"Success"))}function OS(e){return e.sectionRule&&Number(e.sectionRule.rangeMin)>=Number(e.sectionRule.rangeMax)?"GaugeRangeMinBiggerThanRangeMax":"Success"}function _S(e,t){if(""===e)switch(t){case"rangeMin":return"EmptyGaugeRangeMin";case"rangeMax":return"EmptyGaugeRangeMax"}return"Success"}function DS(e,t){if(isNaN(e))switch(t){case"rangeMin":return"GaugeRangeMinNaN";case"rangeMax":return"GaugeRangeMaxNaN";case"lowerInflectionPointValue":return"GaugeLowerInflectionPointNaN";case"upperInflectionPointValue":return"GaugeUpperInflectionPointNaN"}return"Success"}class FS extends cc{dataRange;sectionRule;background;type="gauge";constructor(e,t,o){super(e,t,o),this.dataRange=fn(this.getters,this.sheetId,e.dataRange),this.sectionRule=e.sectionRule,this.background=e.background}static validateChartDefinition(e,t){return e.checkValidations(t,TS,e.chainValidations(AS(_S,e.batchValidations),AS(DS,e.batchValidations),OS),e.chainValidations((o=DS,(0,e.batchValidations)((e=>e.sectionRule?o(e.sectionRule.lowerInflectionPoint.value,"lowerInflectionPointValue"):"Success"),(e=>e.sectionRule?o(e.sectionRule.upperInflectionPoint.value,"upperInflectionPointValue"):"Success")))));var o}static transformDefinition(e,t){let o;return e.dataRange&&(o=ca(Hi(e.dataRange),t)),{...e,dataRange:o?Wi(o):void 0}}static getDefinitionFromContextCreation(e){return{background:e.background,title:e.title||{text:""},type:"gauge",dataRange:e.range?e.range[0].dataRange:void 0,sectionRule:{colors:{lowerColor:"#cc0000",middleColor:"#f1c232",upperColor:"#6aa84f"},rangeMin:"0",rangeMax:"100",lowerInflectionPoint:{type:"percentage",value:"15"},upperInflectionPoint:{type:"percentage",value:"40"}}}}copyForSheetId(e){const t=$l(this.sheetId,e,this.dataRange),o=this.getDefinitionWithSpecificRanges(t,e);return new FS(o,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificRanges(this.dataRange,e);return new FS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificRanges(this.dataRange)}getDefinitionWithSpecificRanges(e,t){return{background:this.background,sectionRule:this.sectionRule,title:this.title,type:"gauge",dataRange:e?this.getters.getRangeString(e,t||this.sheetId):void 0}}getDefinitionForExcel(){}getContextCreation(){return{...this,range:this.dataRange?[{dataRange:this.getters.getRangeString(this.dataRange,this.sheetId)}]:void 0}}updateRanges(e){const t=Wl(this.dataRange,e);if(this.dataRange===t)return this;const o=this.getDefinitionWithSpecificRanges(t);return new FS(o,this.sheetId,this.getters)}}function MS(e,t,o){if(""===e.value||isNaN(Number(e.value)))return;const s=Number(e.value);return Ce("number"===e.type?s:t+(o-t)*s/100,t,o)}class PS extends cc{dataSets;labelRange;background;legendPosition;labelsAsText;stacked;aggregated;type="line";dataSetsHaveTitle;cumulative;dataSetDesign;axesDesign;fillArea;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(this.getters,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(this.getters,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.labelsAsText=e.labelsAsText,this.stacked=e.stacked,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.cumulative=e.cumulative,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.fillArea=e.fillArea,this.showValues=e.showValues}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static transformDefinition(e,t){return Yl(e,t)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,labelsAsText:e.labelsAsText??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"line",labelRange:e.auxiliaryRange||void 0,stacked:e.stacked??!1,aggregated:e.aggregated??!1,cumulative:e.cumulative??!1,axesDesign:e.axesDesign,fillArea:e.fillArea,showValues:e.showValues}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"line",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,labelsAsText:this.labelsAsText,stacked:this.stacked,aggregated:this.aggregated,cumulative:this.cumulative,axesDesign:this.axesDesign,fillArea:this.fillArea,showValues:this.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new PS(i,this.sheetId,this.getters)}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new PS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new PS(t,e,this.getters)}}class NS extends cc{dataSets;labelRange;background;legendPosition;type="pie";aggregated;dataSetsHaveTitle;isDoughnut;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.isDoughnut=e.isDoughnut,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"pie",labelRange:e.auxiliaryRange||void 0,aggregated:e.aggregated??!1,isDoughnut:!1,showValues:e.showValues}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getContextCreation(){return{...this,range:this.dataSets.map((e=>({dataRange:this.getters.getRangeString(e.dataRange,this.sheetId)}))),auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}getDefinitionWithSpecificDataSets(e,t,o){return{type:"pie",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:e.map((e=>({dataRange:this.getters.getRangeString(e.dataRange,o||this.sheetId)}))),legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,isDoughnut:this.isDoughnut,showValues:this.showValues}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new NS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new NS(t,e,this.getters)}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range&&e.range!==Uo.InvalidReference)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle));return{...this.getDefinition(),backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new NS(i,this.sheetId,this.getters)}}class LS extends cc{dataSets;labelRange;background;legendPosition;aggregated;type="pyramid";dataSetsHaveTitle;dataSetDesign;axesDesign;horizontal=!0;stacked=!0;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle).slice(0,2),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"pyramid",labelRange:e.auxiliaryRange||void 0,axesDesign:e.axesDesign,horizontal:!0,stacked:!0,showValues:e.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new LS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new LS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"pyramid",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,axesDesign:this.axesDesign,horizontal:!0,stacked:!0,showValues:this.showValues}}getDefinitionForExcel(){}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new LS(i,this.sheetId,this.getters)}}class kS extends cc{dataSets;labelRange;background;legendPosition;labelsAsText;aggregated;type="scatter";dataSetsHaveTitle;dataSetDesign;axesDesign;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(this.getters,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(this.getters,t,e.labelRange),this.background=e.background,this.legendPosition=e.legendPosition,this.labelsAsText=e.labelsAsText,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static transformDefinition(e,t){return Yl(e,t)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range??[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,labelsAsText:e.labelsAsText??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"scatter",labelRange:e.auxiliaryRange||void 0,aggregated:e.aggregated??!1,axesDesign:e.axesDesign,showValues:e.showValues}}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"scatter",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,labelsAsText:this.labelsAsText,aggregated:this.aggregated,axesDesign:this.axesDesign,showValues:this.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new kS(i,this.sheetId,this.getters)}getDefinitionForExcel(){if(this.aggregated)return;const e=this.dataSets.map((e=>Zl(this.getters,e))).filter((e=>""!==e.range)),t=jl(this.getters,this.labelRange,Jl(this.labelRange,this.dataSets[0],this.dataSetsHaveTitle)),o=this.getDefinition();return{...o,backgroundColor:tS(this.background||m),fontColor:tS(Xl(this.background)),dataSets:e,labelRange:t,verticalAxis:tc(o)}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new kS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new kS(t,e,this.getters)}}class VS extends cc{dataSets;labelRange;background;verticalAxisPosition;legendPosition;aggregated;type="waterfall";dataSetsHaveTitle;showSubTotals;firstValueAsSubtotal;showConnectorLines;positiveValuesColor;negativeValuesColor;subTotalValuesColor;dataSetDesign;axesDesign;showValues;constructor(e,t,o){super(e,t,o),this.dataSets=Gl(o,e.dataSets,t,e.dataSetsHaveTitle),this.labelRange=fn(o,t,e.labelRange),this.background=e.background,this.verticalAxisPosition=e.verticalAxisPosition,this.legendPosition=e.legendPosition,this.aggregated=e.aggregated,this.dataSetsHaveTitle=e.dataSetsHaveTitle,this.showSubTotals=e.showSubTotals,this.showConnectorLines=e.showConnectorLines,this.positiveValuesColor=e.positiveValuesColor,this.negativeValuesColor=e.negativeValuesColor,this.subTotalValuesColor=e.subTotalValuesColor,this.firstValueAsSubtotal=e.firstValueAsSubtotal,this.dataSetDesign=e.dataSets,this.axesDesign=e.axesDesign,this.showValues=e.showValues}static transformDefinition(e,t){return Yl(e,t)}static validateChartDefinition(e,t){return e.checkValidations(t,Kl,Ql)}static getDefinitionFromContextCreation(e){return{background:e.background,dataSets:e.range?e.range:[],dataSetsHaveTitle:e.dataSetsHaveTitle??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??"top",title:e.title||{text:""},type:"waterfall",verticalAxisPosition:"left",labelRange:e.auxiliaryRange||void 0,showSubTotals:e.showSubTotals??!1,showConnectorLines:e.showConnectorLines??!0,firstValueAsSubtotal:e.firstValueAsSubtotal??!1,axesDesign:e.axesDesign,showValues:e.showValues}}getContextCreation(){const e=[];for(const[t,o]of this.dataSets.entries())e.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(o.dataRange,this.sheetId)});return{...this,range:e,auxiliaryRange:this.labelRange?this.getters.getRangeString(this.labelRange,this.sheetId):void 0}}copyForSheetId(e){const t=Bl(this.sheetId,e,this.dataSets),o=$l(this.sheetId,e,this.labelRange),s=this.getDefinitionWithSpecificDataSets(t,o,e);return new VS(s,e,this.getters)}copyInSheetId(e){const t=this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange,e);return new VS(t,e,this.getters)}getDefinition(){return this.getDefinitionWithSpecificDataSets(this.dataSets,this.labelRange)}getDefinitionWithSpecificDataSets(e,t,o){const s=[];for(const[t,i]of e.entries())s.push({...this.dataSetDesign?.[t],dataRange:this.getters.getRangeString(i.dataRange,o||this.sheetId)});return{type:"waterfall",dataSetsHaveTitle:!!e.length&&Boolean(e[0].labelCell),background:this.background,dataSets:s,legendPosition:this.legendPosition,verticalAxisPosition:this.verticalAxisPosition,labelRange:t?this.getters.getRangeString(t,o||this.sheetId):void 0,title:this.title,aggregated:this.aggregated,showSubTotals:this.showSubTotals,showConnectorLines:this.showConnectorLines,positiveValuesColor:this.positiveValuesColor,negativeValuesColor:this.negativeValuesColor,subTotalValuesColor:this.subTotalValuesColor,firstValueAsSubtotal:this.firstValueAsSubtotal,axesDesign:this.axesDesign,showValues:this.showValues}}getDefinitionForExcel(){}updateRanges(e){const{dataSets:t,labelRange:o,isStale:s}=zl(this.getters,e,this.dataSets,this.labelRange);if(!s)return this;const i=this.getDefinitionWithSpecificDataSets(t,o);return new VS(i,this.sheetId,this.getters)}}const US=new n;US.add("bar",{match:e=>"bar"===e,createChart:(e,t,o)=>new pS(e,t,o),getChartRuntime:mS,validateChartDefinition:pS.validateChartDefinition,transformDefinition:pS.transformDefinition,getChartDefinitionFromContextCreation:pS.getDefinitionFromContextCreation,sequence:10}),US.add("combo",{match:e=>"combo"===e,createChart:(e,t,o)=>new RS(e,t,o),getChartRuntime:function(e,t){const o=e.dataSets.length?cS(t,[e.dataSets[0]]):void 0,s=cS(t,e.dataSets.slice(1)),i=t.getLocale();let n=lS(t,e.dataSets,e.labelRange).formattedValues,r=hS(t,e.dataSets);e.dataSetsHaveTitle&&r[0]&&n.length>r[0].data.length&&n.shift(),({labels:n,dataSetsValues:r}=sS(n,r)),e.aggregated&&({labels:n,dataSetsValues:r}=iS(n,r));const a={format:o,locale:i},l=Xl(e.background),c=rS(e,n,l,a),h={labels:{color:l},reverse:!0};!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?h.display=!1:h.position=e.legendPosition,c.options.plugins.legend={...c.options.plugins?.legend,...h},c.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},c.options.scales={x:{ticks:{padding:5,color:l},title:ec(e.axesDesign?.x)}};const d={beginAtZero:!0,ticks:{color:l,callback:oc({format:o,locale:i})}},u={beginAtZero:!0,ticks:{color:l,callback:oc({format:s,locale:i})}},g=e.getDefinition(),{useLeftAxis:p,useRightAxis:f}=tc(g);p&&(c.options.scales.y={...d,position:"left",title:ec(e.axesDesign?.y)}),f&&(c.options.scales.y1={...u,position:"right",grid:{display:!1},title:ec(e.axesDesign?.y1)}),c.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,callback:oc({format:o,locale:i})};const b=new It;for(let[e,{label:t,data:o}]of r.entries()){const s=g.dataSets[e],i=b.next(),n={label:s?.label??t,data:o,borderColor:s?.backgroundColor??i,backgroundColor:s.backgroundColor??i,yAxisID:s?.yAxisId??"y",type:0===e?"bar":"line",order:-e};c.data.datasets.push(n)}return{chartJsConfig:c,background:e.background||m}},validateChartDefinition:RS.validateChartDefinition,transformDefinition:RS.transformDefinition,getChartDefinitionFromContextCreation:RS.getDefinitionFromContextCreation,sequence:15}),US.add("line",{match:e=>"line"===e,createChart:(e,t,o)=>new PS(e,t,o),getChartRuntime:IS,validateChartDefinition:PS.validateChartDefinition,transformDefinition:PS.transformDefinition,getChartDefinitionFromContextCreation:PS.getDefinitionFromContextCreation,sequence:20}),US.add("pie",{match:e=>"pie"===e,createChart:(e,t,o)=>new NS(e,t,o),getChartRuntime:function(e,t){let o=lS(t,e.dataSets,e.labelRange).formattedValues,s=hS(t,e.dataSets);e.dataSetsHaveTitle&&s[0]&&o.length>s[0].data.length&&o.shift(),({labels:o,dataSetsValues:s}=sS(o,s)),e.aggregated&&({labels:o,dataSetsValues:s}=iS(o,s)),({dataSetsValues:s,labels:o}=function(e,t){const o=e.reduce(((e,o,s)=>(t.some((e=>{const t=e.data[s];return"number"!=typeof t||t>=0}))&&e.push(s),e)),[]);return{labels:o.map((t=>e[t]||"")),dataSetsValues:t.map((e=>({...e,data:o.map((t=>{const o=e.data[t];return"number"!=typeof o||o>=0?o:0}))})))}}(o,s));const i=function(e,t,o){const s=Xl(e.background),i=rS(e,t,s,o),n={labels:{color:s}};return!e.labelRange&&1===e.dataSets.length||"none"===e.legendPosition?n.display=!1:n.position=e.legendPosition,Object.assign(i.options.plugins.legend||{},n),i.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},i.options.plugins.tooltip.callbacks.title=function(e){return e[0].dataset.label},i.options.plugins.tooltip.callbacks.label=function(e){const{format:t,locale:s}=o,i=function(e,t){const o=e.filter((e=>"number"==typeof e)).reduce(((e,t)=>e+t),0);if(!o)return"";return(e[t]/o*100).toFixed(2)}(e.dataset.data,e.dataIndex),n=e.label||e.dataset.label,r=e.parsed.y??e.parsed,a=qs(r,{format:!t&&r>=1e3?"#,##":t,locale:s});return n?`${n}: ${a} (${i}%)`:`${a} (${i}%)`},i.options.plugins.chartShowValuesPlugin={showValues:e.showValues,callback:oc(o)},i}(e,o,{format:cS(t,e.dataSets),locale:t.getLocale()}),n=function(e,t){const o=[],s=it(t.map((e=>e.data.length)));for(let t=0;t<=s;t++)o.push(e.next());return o}(new It,s);for(const{label:e,data:t}of s){const o={label:e,data:t,borderColor:"#FFFFFF",backgroundColor:n};i.data.datasets.push(o)}return e.isDoughnut&&(i.type="doughnut"),{chartJsConfig:i,background:e.background||m}},validateChartDefinition:NS.validateChartDefinition,transformDefinition:NS.transformDefinition,getChartDefinitionFromContextCreation:NS.getDefinitionFromContextCreation,sequence:30}),US.add("scorecard",{match:e=>"scorecard"===e,createChart:(e,t,o)=>new fc(e,t,o),getChartRuntime:function(e,t){let o,s="";const i=t.getLocale();if(e.keyValue){const n={sheetId:e.keyValue.sheetId,col:e.keyValue.zone.left,row:e.keyValue.zone.top};o=t.getEvaluatedCell(n),s=function(e,t,o){return e?t?hi(e,o):e.formattedValue??String(e.value??""):""}(o,e.humanize??!1,i)}let n;const r=e.baseline;if(r){const e={sheetId:r.sheetId,col:r.zone.left,row:r.zone.top};n=t.getEvaluatedCell(e)}const{background:a,fontColor:l}=t.getStyleOfSingleCellChart(e.background,e.keyValue),c=function(e,t,o,s,i){if(!e)return"";if("text"===o||t?.type!==So.number||e.type!==So.number)return s?hi(e,i):e.formattedValue;let{value:n,format:r}=e;return"progress"===o?(n=t.value/n,r="0.0%"):(n=Math.abs(t.value-n),"percentage"===o&&0!==n&&(n/=e.value),"percentage"===o&&(r="0.0%"),r||(n=Math.round(100*n)/100)),s?hi({value:n,format:r},i):qs(n,{format:r,locale:i})}(n,o,e.baselineMode,e.humanize??!1,i),h="progress"===e.baselineMode&&ao(c,i)?Qo(c,i):0;return{title:{...e.title,text:bo(e.title.text??"")},keyValue:s,baselineDisplay:c,baselineArrow:dc(n,o,e.baselineMode),baselineColor:hc(n,e.baselineMode,o,e.baselineColorUp,e.baselineColorDown),baselineDescr:"progress"!==e.baselineMode&&e.baselineDescr?bo(e.baselineDescr):"",fontColor:l,background:a,baselineStyle:"percentage"!==e.baselineMode&&"progress"!==e.baselineMode&&r?t.getCellStyle({sheetId:r.sheetId,col:r.zone.left,row:r.zone.top}):void 0,keyValueStyle:e.keyValue?t.getCellStyle({sheetId:e.keyValue.sheetId,col:e.keyValue.zone.left,row:e.keyValue.zone.top}):void 0,progressBar:"progress"===e.baselineMode?{value:h,color:h>0?e.baselineColorUp:e.baselineColorDown}:void 0}},validateChartDefinition:fc.validateChartDefinition,transformDefinition:fc.transformDefinition,getChartDefinitionFromContextCreation:fc.getDefinitionFromContextCreation,sequence:40}),US.add("gauge",{match:e=>"gauge"===e,createChart:(e,t,o)=>new FS(e,t,o),getChartRuntime:function(e,t){const o=t.getLocale(),s=e.sectionRule.colors;let i,n,r;const a=e.dataRange;if(void 0!==a){const e=t.getEvaluatedCell({sheetId:a.sheetId,col:a.zone.left,row:a.zone.top});e.type===So.number&&(i=e.value,n=e.formattedValue,r=e.format)}const l=Number(e.sectionRule.rangeMin),c=Number(e.sectionRule.rangeMax),h=e.sectionRule.lowerInflectionPoint,d=e.sectionRule.upperInflectionPoint,u=MS(h,l,c),g=MS(d,l,c),p=[],m=[];return void 0!==u&&(p.push({value:u,label:qs(u,{locale:o,format:r})}),m.push(s.lowerColor)),void 0!==g&&g!==u&&(p.push({value:g,label:qs(g,{locale:o,format:r})}),m.push(s.middleColor)),void 0!==g&&void 0!==u&&u>g&&(p.reverse(),m.reverse()),m.push(s.upperColor),{background:t.getStyleOfSingleCellChart(e.background,a).background,title:e.title??{text:""},minValue:{value:l,label:qs(l,{locale:o,format:r})},maxValue:{value:c,label:qs(c,{locale:o,format:r})},gaugeValue:void 0!==i&&n?{value:i,label:n}:void 0,inflectionValues:p,colors:m}},validateChartDefinition:FS.validateChartDefinition,transformDefinition:FS.transformDefinition,getChartDefinitionFromContextCreation:FS.getDefinitionFromContextCreation,sequence:50}),US.add("scatter",{match:e=>"scatter"===e,createChart:(e,t,o)=>new kS(e,t,o),getChartRuntime:function(e,t){const{chartJsConfig:o,background:s,dataSetsValues:i,dataSetFormat:n,labelValues:r,labelFormat:a}=IS(e,t);o.type="line";const l=o.options,c=t.getLocale();l.plugins.tooltip.callbacks.title=()=>"",l.plugins.tooltip.callbacks.label=e=>{const t=i[e.datasetIndex].data[e.dataIndex];let o=e.label||r.values[e.dataIndex];ao(o,c)&&(o=Qo(o,c));const s=qs(o,{locale:c,format:a}),l=qs(t,{locale:c,format:n}),h=e.dataset.label;return s?`${h}: (${s}, ${l})`:`${h}: ${l}`};for(const e of o.data.datasets)e.showLine=!1;return{chartJsConfig:o,background:s}},validateChartDefinition:kS.validateChartDefinition,transformDefinition:kS.transformDefinition,getChartDefinitionFromContextCreation:kS.getDefinitionFromContextCreation,sequence:60}),US.add("waterfall",{match:e=>"waterfall"===e,createChart:(e,t,o)=>new VS(e,t,o),getChartRuntime:function(e,t){let o=lS(t,e.dataSets,e.labelRange).formattedValues,s=hS(t,e.dataSets);e.dataSetsHaveTitle&&s[0]&&o.length>s[0].data.length&&o.shift(),({labels:o,dataSetsValues:s}=sS(o,s)),e.aggregated&&({labels:o,dataSetsValues:s}=iS(o,s)),e.showSubTotals&&o.push(bo("Subtotal"));const i=cS(t,e.dataSets),n=t.getLocale(),r=function(e,t,o,s){const{locale:i,format:n}=s,r=Xl(e.background),a=rS(e,t,r,s),l=e.negativeValuesColor||A,c=e.positiveValuesColor||T,h=e.subTotalValuesColor||O,d={labels:{generateLabels:()=>{const t=[{text:bo("Positive values"),fontColor:r,fillStyle:c},{text:bo("Negative values"),fontColor:r,fillStyle:l}];return(e.showSubTotals||e.firstValueAsSubtotal)&&t.push({text:bo("Subtotals"),fontColor:r,fillStyle:h}),t}}};return"none"===e.legendPosition?d.display=!1:d.position=e.legendPosition,a.options.plugins.legend={...a.options.plugins?.legend,...d},a.options.layout={padding:{left:20,right:20,top:e.title?10:25,bottom:10}},a.options.scales={x:{ticks:{padding:5,color:r},grid:{display:!1},title:ec(e.axesDesign?.x)},y:{position:e.verticalAxisPosition,ticks:{color:r,callback:e=>(e=Number(e),isNaN(e)?e:qs(e,{locale:i,format:!n&&Math.abs(e)>1e3?"#,##":n}))},grid:{lineWidth:e=>0===e.tick.value?2:1},title:ec(e.axesDesign?.y)}},a.options.plugins.tooltip={callbacks:{label:function(e){const[s,r]=e.raw,a=r-s,l=Math.floor(e.dataIndex/t.length),c=o[l],h=qs(a,{format:!n&&Math.abs(a)>1e3?"#,##":n,locale:i});return c?`${c}: ${h}`:h}}},a.options.plugins.waterfallLinesPlugin={showConnectorLines:e.showConnectorLines},a.options.plugins.chartShowValuesPlugin={showValues:e.showValues,background:e.background,callback:oc(s)},a}(e,o,s.map((e=>e.label)),{format:i,locale:n});r.type="bar";const a=e.negativeValuesColor||A,l=e.positiveValuesColor||T,c=e.subTotalValuesColor||O,h=[],d=[],u={label:"",data:d,backgroundColor:h},g=[];let p=0;for(const t of s){for(let i=0;i<t.data.length;i++){const n=t.data[i];if(g.push(o[i]),isNaN(Number(n))){d.push([p,p]),h.push("");continue}d.push([p,n+p]);let r=n>=0?l:a;0===i&&t===s[0]&&e.firstValueAsSubtotal&&(r=c),h.push(r),p+=n}e.showSubTotals&&(g.push(bo("Subtotal")),d.push([0,p]),h.push(c))}return r.data.datasets.push(u),r.data.labels=g.map(nS),{chartJsConfig:r,background:e.background||m}},validateChartDefinition:VS.validateChartDefinition,transformDefinition:VS.transformDefinition,getChartDefinitionFromContextCreation:VS.getDefinitionFromContextCreation,sequence:70}),US.add("pyramid",{match:e=>"pyramid"===e,createChart:(e,t,o)=>new LS(e,t,o),getChartRuntime:function(e,t){const o={...e.getDefinition(),type:"bar"},s=mS(new pS(o,e.sheetId,t),t).chartJsConfig;let i=s.data?.datasets;i&&i[0]&&(i[0].data=i[0].data.map((e=>e>0?e:0))),i&&i[1]&&(i[1].data=i[1].data.map((e=>e>0?-e:0)));const n=Math.max(...s.data?.datasets.map((e=>Math.max(...e.data.map(Math.abs))))),r=s.options.scales,a=r.x.ticks.callback;r.x.ticks.callback=e=>a(Math.abs(e)),r.x.suggestedMin=-n,r.x.suggestedMax=n;const l=s.options.plugins.tooltip.callbacks.label;s.options.plugins.tooltip.callbacks.label=e=>{const t={...e,parsed:{y:e.parsed.y,x:Math.abs(e.parsed.x)}};return l(t)};const c=s.options.plugins.chartShowValuesPlugin.callback;return s.options.plugins.chartShowValuesPlugin.callback=e=>c(Math.abs(e)),{chartJsConfig:s,background:e.background||m}},validateChartDefinition:LS.validateChartDefinition,transformDefinition:LS.transformDefinition,getChartDefinitionFromContextCreation:LS.getDefinitionFromContextCreation,sequence:80});const HS=new n;HS.add("line",lc),HS.add("bar",lc),HS.add("combo",lc),HS.add("pie",lc),HS.add("gauge",eS),HS.add("scatter",lc),HS.add("scorecard",Ec),HS.add("waterfall",lc),HS.add("pyramid",lc);const zS={line:bo("Line"),column:bo("Column"),bar:bo("Bar"),area:bo("Area"),pie:bo("Pie"),misc:bo("Miscellaneous")},BS=new n;BS.add("line",{matcher:e=>"line"===e.type&&!e.stacked&&!e.fillArea,displayName:bo("Line"),chartType:"line",chartSubtype:"line",subtypeDefinition:{stacked:!1,fillArea:!1},category:"line",preview:"o-spreadsheet-ChartPreview.LINE_CHART"}).add("stacked_line",{matcher:e=>"line"===e.type&&!e.fillArea&&!!e.stacked,displayName:bo("Stacked Line"),chartType:"line",chartSubtype:"stacked_line",subtypeDefinition:{stacked:!0,fillArea:!1},category:"line",preview:"o-spreadsheet-ChartPreview.STACKED_LINE_CHART"}).add("area",{matcher:e=>"line"===e.type&&!e.stacked&&!!e.fillArea,displayName:bo("Area"),chartType:"line",chartSubtype:"area",subtypeDefinition:{stacked:!1,fillArea:!0},category:"area",preview:"o-spreadsheet-ChartPreview.AREA_CHART"}).add("stacked_area",{matcher:e=>"line"===e.type&&e.stacked&&!!e.fillArea,displayName:bo("Stacked Area"),chartType:"line",chartSubtype:"stacked_area",subtypeDefinition:{stacked:!0,fillArea:!0},category:"area",preview:"o-spreadsheet-ChartPreview.STACKED_AREA_CHART"}).add("scatter",{displayName:bo("Scatter"),chartType:"scatter",chartSubtype:"scatter",category:"misc",preview:"o-spreadsheet-ChartPreview.SCATTER_CHART"}).add("column",{matcher:e=>"bar"===e.type&&!e.stacked&&!e.horizontal,displayName:bo("Column"),chartType:"bar",chartSubtype:"column",subtypeDefinition:{stacked:!1,horizontal:!1},category:"column",preview:"o-spreadsheet-ChartPreview.COLUMN_CHART"}).add("stacked_column",{matcher:e=>"bar"===e.type&&e.stacked&&!e.horizontal,displayName:bo("Stacked Column"),chartType:"bar",chartSubtype:"stacked_column",subtypeDefinition:{stacked:!0,horizontal:!1},category:"column",preview:"o-spreadsheet-ChartPreview.STACKED_COLUMN_CHART"}).add("bar",{matcher:e=>"bar"===e.type&&!e.stacked&&!!e.horizontal,displayName:bo("Bar"),chartType:"bar",chartSubtype:"bar",subtypeDefinition:{horizontal:!0,stacked:!1},category:"bar",preview:"o-spreadsheet-ChartPreview.BAR_CHART"}).add("stacked_bar",{matcher:e=>"bar"===e.type&&e.stacked&&!!e.horizontal,displayName:bo("Stacked Bar"),chartType:"bar",chartSubtype:"stacked_bar",subtypeDefinition:{horizontal:!0,stacked:!0},category:"bar",preview:"o-spreadsheet-ChartPreview.STACKED_BAR_CHART"}).add("combo",{displayName:bo("Combo"),chartSubtype:"combo",chartType:"combo",category:"line",preview:"o-spreadsheet-ChartPreview.COMBO_CHART"}).add("pie",{matcher:e=>"pie"===e.type&&!e.isDoughnut,displayName:bo("Pie"),chartSubtype:"pie",chartType:"pie",subtypeDefinition:{isDoughnut:!1},category:"pie",preview:"o-spreadsheet-ChartPreview.PIE_CHART"}).add("doughnut",{matcher:e=>"pie"===e.type&&!!e.isDoughnut,displayName:bo("Doughnut"),chartSubtype:"doughnut",chartType:"pie",subtypeDefinition:{isDoughnut:!0},category:"pie",preview:"o-spreadsheet-ChartPreview.DOUGHNUT_CHART"}).add("gauge",{displayName:bo("Gauge"),chartSubtype:"gauge",chartType:"gauge",category:"misc",preview:"o-spreadsheet-ChartPreview.GAUGE_CHART"}).add("scorecard",{displayName:bo("Scorecard"),chartSubtype:"scorecard",chartType:"scorecard",category:"misc",preview:"o-spreadsheet-ChartPreview.SCORECARD_CHART"}).add("waterfall",{displayName:bo("Waterfall"),chartSubtype:"waterfall",chartType:"waterfall",category:"misc",preview:"o-spreadsheet-ChartPreview.WATERFALL_CHART"}).add("pyramid",{displayName:bo("Population Pyramid"),chartSubtype:"pyramid",chartType:"pyramid",category:"misc",preview:"o-spreadsheet-ChartPreview.POPULATION_PYRAMID_CHART"});const $S=new n;Ob`
91
91
  .o-chart-container {
92
92
  width: 100%;
93
93
  height: 100%;
@@ -1786,7 +1786,7 @@
1786
1786
  }
1787
1787
  `;class IT extends t.Component{static template="o-spreadsheet-TableResizer";static props={table:Object};state=t.useState({highlightZone:void 0});setup(){hI(this)}get containerStyle(){const e=this.props.table.range.zone,t={...e,left:e.right,top:e.bottom},o=this.env.model.getters.getVisibleRect(t);return 0===o.height||0===o.width?Fb({display:"none"}):Fb({top:o.y+o.height-6+"px",left:o.x+o.width-6+"px"})}onMouseDown(e){const t=this.props.table.range.zone,o={col:t.left,row:t.top};document.body.style.cursor="nwse-resize";DE(this.env,((e,t,s)=>{this.state.highlightZone={left:o.col,top:o.row,right:Math.max(e,o.col),bottom:Math.max(t,o.row)}}),(()=>{document.body.style.cursor="";const e=this.state.highlightZone;if(!e)return;const t=this.props.table.range.sheetId;this.env.model.dispatch("RESIZE_TABLE",{sheetId:t,zone:this.props.table.range.zone,newTableRange:this.env.model.getters.getRangeDataFromZone(t,e)}),this.state.highlightZone=void 0}))}get highlights(){return this.state.highlightZone?[{zone:this.state.highlightZone,sheetId:this.props.table.range.sheetId,color:ET,noFill:!0}]:[]}}const RT={ROW:dE,COL:aE,CELL:Cw,GROUP_HEADERS:NR,UNGROUP_HEADERS:LR};class TT extends t.Component{static template="o-spreadsheet-Grid";static props={exposeFocus:Function};static components={GridComposer:BR,GridOverlay:rT,GridPopover:aT,HeadersOverlay:dT,Menu:Ty,Autofill:VR,ClientTag:HR,Highlight:vT,Popover:ay,VerticalScrollBar:CT,HorizontalScrollBar:yT,TableResizer:IT};HEADER_HEIGHT=M;HEADER_WIDTH=P;menuState;gridRef;highlightStore;cellPopovers;composerStore;composerFocusStore;DOMFocusableElementStore;onMouseWheel;canvasPosition;hoveredCell;sidePanel;setup(){this.highlightStore=Rl(Ll),this.menuState=t.useState({isOpen:!1,position:null,menuItems:[]}),this.gridRef=t.useRef("grid"),this.canvasPosition=Wb(this.gridRef),this.hoveredCell=Rl(oy),this.composerStore=Rl(Ul),this.composerFocusStore=Rl(Hl),this.DOMFocusableElementStore=Rl(Rb),this.sidePanel=Rl(xT),Rl(kR),t.useChildSubEnv({getPopoverContainerRect:()=>this.getGridRect()}),t.useExternalListener(document.body,"cut",this.copy.bind(this,!0)),t.useExternalListener(document.body,"copy",this.copy.bind(this,!1)),t.useExternalListener(document.body,"paste",this.paste),t.onMounted((()=>this.focusDefaultElement())),this.props.exposeFocus((()=>this.focusDefaultElement())),pT("canvas",this.env.model,(()=>this.env.model.getters.getSheetViewDimensionWithHeaders())),this.onMouseWheel=mT(((e,t)=>{this.moveCanvas(e,t),this.hoveredCell.clear()})),this.cellPopovers=Rl(sy),t.useEffect((()=>{this.sidePanel.isOpen||this.DOMFocusableElementStore.focus()}),(()=>[this.sidePanel.isOpen]))}onCellHovered({col:e,row:t}){this.hoveredCell.hover({col:e,row:t})}get highlights(){return this.highlightStore.highlights}get gridOverlayDimensions(){return Fb({top:"26px",left:"48px",height:"calc(100% - 41px)",width:"calc(100% - 63px)"})}onClosePopover(){this.cellPopovers.isOpen&&this.cellPopovers.close(),this.focusDefaultElement()}keyDownMapping={Enter:()=>{this.env.model.getters.getActiveCell().type===So.empty?this.onComposerCellFocused():this.onComposerContentFocused()},Tab:()=>this.env.model.selection.moveAnchorCell("right",1),"Shift+Tab":()=>this.env.model.selection.moveAnchorCell("left",1),F2:()=>{this.env.model.getters.getActiveCell().type===So.empty?this.onComposerCellFocused():this.onComposerContentFocused()},Delete:()=>{this.env.model.dispatch("DELETE_CONTENT",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()})},Backspace:()=>{this.env.model.dispatch("DELETE_CONTENT",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()})},Escape:()=>{this.cellPopovers.isOpen?this.cellPopovers.close():this.menuState.isOpen?this.closeMenu():this.env.model.getters.isPaintingFormat()?this.env.model.dispatch("CANCEL_PAINT_FORMAT"):this.env.model.dispatch("CLEAN_CLIPBOARD_HIGHLIGHT")},"Ctrl+A":()=>this.env.model.selection.loopSelection(),"Ctrl+Z":()=>this.env.model.dispatch("REQUEST_UNDO"),"Ctrl+Y":()=>this.env.model.dispatch("REQUEST_REDO"),F4:()=>this.env.model.dispatch("REQUEST_REDO"),"Ctrl+B":()=>this.env.model.dispatch("SET_FORMATTING",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{bold:!this.env.model.getters.getCurrentStyle().bold}}),"Ctrl+I":()=>this.env.model.dispatch("SET_FORMATTING",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{italic:!this.env.model.getters.getCurrentStyle().italic}}),"Ctrl+U":()=>this.env.model.dispatch("SET_FORMATTING",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{underline:!this.env.model.getters.getCurrentStyle().underline}}),"Ctrl+O":()=>aC(this.env),"Alt+=":()=>{const e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getSelectedZone(),{anchor:o}=this.env.model.getters.getSelection(),s=this.env.model.getters.getAutomaticSums(e,t,o.cell);if(this.env.model.getters.isSingleCellOrMerge(e,t)||this.env.model.getters.isEmpty(e,t)&&s.length<=1){const t=s[0]?.zone,o=t?this.env.model.getters.zoneToXC(e,s[0].zone):"",i=`=SUM(${o})`;this.onComposerCellFocused(i,{start:5,end:5+o.length})}else this.env.model.dispatch("SUM_SELECTION")},"Alt+Enter":()=>{const e=this.env.model.getters.getActiveCell();e.link&&Ba(e.link,this.env)},"Ctrl+Home":()=>{const e=this.env.model.getters.getActiveSheetId(),{col:t,row:o}=this.env.model.getters.getNextVisibleCellPosition({sheetId:e,col:0,row:0});this.env.model.selection.selectCell(t,o)},"Ctrl+End":()=>{const e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.findVisibleHeader(e,"COL",this.env.model.getters.getNumberCols(e)-1,0),o=this.env.model.getters.findVisibleHeader(e,"ROW",this.env.model.getters.getNumberRows(e)-1,0);this.env.model.selection.selectCell(t,o)},"Shift+ ":()=>{const e=this.env.model.getters.getActiveSheetId(),t={...this.env.model.getters.getSelectedZone(),left:0,right:this.env.model.getters.getNumberCols(e)-1},o=this.env.model.getters.getActivePosition();this.env.model.selection.selectZone({cell:o,zone:t})},"Ctrl+ ":()=>{const e=this.env.model.getters.getActiveSheetId(),t={...this.env.model.getters.getSelectedZone(),top:0,bottom:this.env.model.getters.getNumberRows(e)-1},o=this.env.model.getters.getActivePosition();this.env.model.selection.selectZone({cell:o,zone:t})},"Ctrl+D":async()=>this.env.model.dispatch("COPY_PASTE_CELLS_ABOVE"),"Ctrl+R":async()=>this.env.model.dispatch("COPY_PASTE_CELLS_ON_LEFT"),"Ctrl+Shift+E":()=>this.setHorizontalAlign("center"),"Ctrl+Shift+L":()=>this.setHorizontalAlign("left"),"Ctrl+Shift+R":()=>this.setHorizontalAlign("right"),"Ctrl+Shift+V":()=>tC(this.env),"Ctrl+Shift+<":()=>this.clearFormatting(),"Ctrl+<":()=>this.clearFormatting(),"Ctrl+Shift+ ":()=>{this.env.model.selection.selectAll()},"Ctrl+Alt+=":()=>{const e=this.env.model.getters.getActiveCols(),t=this.env.model.getters.getActiveRows(),o=1===this.env.model.getters.getSelectedZones().length,s=e.size>0&&o,i=t.size>0&&o;s&&!i?nC(this.env):i&&!s&&iC(this.env)},"Ctrl+Alt+-":()=>{const e=[...this.env.model.getters.getActiveCols()],t=[...this.env.model.getters.getActiveRows()];e.length>0&&0===t.length?this.env.model.dispatch("REMOVE_COLUMNS_ROWS",{sheetId:this.env.model.getters.getActiveSheetId(),dimension:"COL",elements:e}):t.length>0&&0===e.length&&this.env.model.dispatch("REMOVE_COLUMNS_ROWS",{sheetId:this.env.model.getters.getActiveSheetId(),dimension:"ROW",elements:t})},"Shift+PageDown":()=>{this.env.model.dispatch("ACTIVATE_NEXT_SHEET")},"Shift+PageUp":()=>{this.env.model.dispatch("ACTIVATE_PREVIOUS_SHEET")},PageDown:()=>this.env.model.dispatch("SHIFT_VIEWPORT_DOWN"),PageUp:()=>this.env.model.dispatch("SHIFT_VIEWPORT_UP"),"Ctrl+K":()=>lC(this.env),"Alt+Shift+ArrowRight":()=>this.processHeaderGroupingKey("right"),"Alt+Shift+ArrowLeft":()=>this.processHeaderGroupingKey("left"),"Alt+Shift+ArrowUp":()=>this.processHeaderGroupingKey("up"),"Alt+Shift+ArrowDown":()=>this.processHeaderGroupingKey("down")};focusDefaultElement(){this.env.model.getters.getSelectedFigureId()||"inactive"!==this.composerStore.editionMode||this.DOMFocusableElementStore.focus()}get gridEl(){if(!this.gridRef.el)throw new Error("Grid el is not defined.");return this.gridRef.el}getAutofillPosition(){const e=this.env.model.getters.getSelectedZone(),t=this.env.model.getters.getVisibleRect(e);return{left:t.x+t.width-4,top:t.y+t.height-4}}get isAutofillVisible(){const e=this.env.model.getters.getSelectedZone(),t=this.env.model.getters.getVisibleRect({left:e.right,right:e.right,top:e.bottom,bottom:e.bottom});return!(0===t.width||0===t.height)}onGridResized({height:e,width:t}){this.env.model.dispatch("RESIZE_SHEETVIEW",{width:t,height:e,gridOffsetX:P,gridOffsetY:M})}moveCanvas(e,t){const{scrollX:o,scrollY:s}=this.env.model.getters.getActiveSheetDOMScrollInfo();this.env.model.dispatch("SET_VIEWPORT_OFFSET",{offsetX:o+e,offsetY:s+t})}getClientPositionKey(e){return`${e.id}-${e.position?.sheetId}-${e.position?.col}-${e.position?.row}`}isCellHovered(e,t){return this.hoveredCell.col===e&&this.hoveredCell.row===t}getGridRect(){return{...this.canvasPosition,...this.env.model.getters.getSheetViewDimensionWithHeaders()}}onCellClicked(e,t,o){"editing"===this.composerStore.editionMode&&this.composerStore.stopEdition(),o.expandZone?this.env.model.selection.setAnchorCorner(e,t):o.addZone?this.env.model.selection.addCellToSelection(e,t):this.env.model.selection.selectCell(e,t);let s=e,i=t;DE(this.env,((e,t,o)=>{o.preventDefault(),(e!==s&&-1!=e||t!==i&&-1!=t)&&(s=-1===e?s:e,i=-1===t?i:t,this.env.model.selection.setAnchorCorner(s,i))}),(()=>{this.env.model.getters.isPaintingFormat()&&this.env.model.dispatch("PASTE",{target:this.env.model.getters.getSelectedZones()})}))}onCellDoubleClicked(e,t){const o=this.env.model.getters.getActiveSheetId();({col:e,row:t}=this.env.model.getters.getMainCellPosition({sheetId:o,col:e,row:t}));this.env.model.getters.getEvaluatedCell({sheetId:o,col:e,row:t}).type===So.empty?this.onComposerCellFocused():this.onComposerContentFocused()}processArrows(e){e.preventDefault(),e.stopPropagation(),this.cellPopovers.isOpen&&this.cellPopovers.close(),qb(e,this.env.model.selection),this.env.model.getters.isPaintingFormat()&&this.env.model.dispatch("PASTE",{target:this.env.model.getters.getSelectedZones()})}onKeydown(e){const t=Hb(e),o=this.keyDownMapping[t];if(o)return e.preventDefault(),e.stopPropagation(),void o();e.key.startsWith("Arrow")&&this.processArrows(e)}onInputContextMenu(e){e.preventDefault();const t=this.env.model.getters.getSelectedZone(),{left:o,top:s}=t;let i="CELL";this.composerStore.stopEdition(),this.env.model.getters.getActiveCols().has(o)?i="COL":this.env.model.getters.getActiveRows().has(s)&&(i="ROW");const{x:n,y:r,width:a}=this.env.model.getters.getVisibleRect(t),l=this.getGridRect();this.toggleContextMenu(i,l.x+n+a,l.y+r)}onCellRightClicked(e,t,{x:o,y:s}){const i=this.env.model.getters.getSelectedZones();let n="CELL";Ji(e,t,i[i.length-1])?this.env.model.getters.getActiveCols().has(e)?n="COL":this.env.model.getters.getActiveRows().has(t)&&(n="ROW"):(this.env.model.selection.getBackToDefault(),this.env.model.selection.selectCell(e,t)),this.toggleContextMenu(n,o,s)}toggleContextMenu(e,t,o){this.cellPopovers.isOpen&&this.cellPopovers.close(),this.menuState.isOpen=!0,this.menuState.position={x:t,y:o},this.menuState.menuItems=RT[e].getMenuItems()}copy(e,t){if(!this.gridEl.contains(document.activeElement))return;const o=t.clipboardData;if(!o)return void this.displayWarningCopyPasteNotSupported();if("inactive"!==this.composerStore.editionMode)return;e?ey(this.env):this.env.model.dispatch("COPY");const s=this.env.model.getters.getClipboardContent();for(const e in s)o.setData(e,s[e]);t.preventDefault()}async paste(e){if(!this.gridEl.contains(document.activeElement))return;const t=e.clipboardData;if(t){if(t.types.indexOf(yo.PlainText)>-1){e.preventDefault();const o=t.getData(yo.PlainText),s=this.env.model.getters.getSelectedZones(),i=this.env.model.getters.getClipboardTextContent(),n=this.env.model.getters.isCutOperation();i===o?sl(this.env,s):il(this.env,s,o),n&&await this.env.clipboard.write({[yo.PlainText]:""})}}else this.displayWarningCopyPasteNotSupported()}displayWarningCopyPasteNotSupported(){this.env.raiseError(bo("Copy/Paste is not supported in this browser."))}clearFormatting(){this.env.model.dispatch("CLEAR_FORMATTING",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()})}setHorizontalAlign(e){this.env.model.dispatch("SET_FORMATTING",{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{align:e}})}closeMenu(){this.menuState.isOpen=!1,this.focusDefaultElement()}processHeaderGroupingKey(e){if(1!==this.env.model.getters.getSelectedZones().length)return;const t=this.env.model.getters.getActiveRows().size>0,o=this.env.model.getters.getActiveCols().size>0;o&&t?this.processHeaderGroupingEventOnWholeSheet(e):o?this.processHeaderGroupingEventOnHeaders(e,"COL"):t?this.processHeaderGroupingEventOnHeaders(e,"ROW"):this.processHeaderGroupingEventOnGrid(e)}processHeaderGroupingEventOnHeaders(e,t){const o=this.env.model.getters.getActiveSheetId(),s=this.env.model.getters.getSelectedZone(),i="COL"===t?s.left:s.top,n="COL"===t?s.right:s.bottom;switch(e){case"right":this.env.model.dispatch("GROUP_HEADERS",{sheetId:o,dimension:t,start:i,end:n});break;case"left":this.env.model.dispatch("UNGROUP_HEADERS",{sheetId:o,dimension:t,start:i,end:n});break;case"down":this.env.model.dispatch("UNFOLD_HEADER_GROUPS_IN_ZONE",{sheetId:o,dimension:t,zone:s});break;case"up":this.env.model.dispatch("FOLD_HEADER_GROUPS_IN_ZONE",{sheetId:o,dimension:t,zone:s})}}processHeaderGroupingEventOnWholeSheet(e){const t=this.env.model.getters.getActiveSheetId();"up"===e?(this.env.model.dispatch("FOLD_ALL_HEADER_GROUPS",{sheetId:t,dimension:"ROW"}),this.env.model.dispatch("FOLD_ALL_HEADER_GROUPS",{sheetId:t,dimension:"COL"})):"down"===e&&(this.env.model.dispatch("UNFOLD_ALL_HEADER_GROUPS",{sheetId:t,dimension:"ROW"}),this.env.model.dispatch("UNFOLD_ALL_HEADER_GROUPS",{sheetId:t,dimension:"COL"}))}processHeaderGroupingEventOnGrid(e){const t=this.env.model.getters.getActiveSheetId(),o=this.env.model.getters.getSelectedZone();switch(e){case"down":this.env.model.dispatch("UNFOLD_HEADER_GROUPS_IN_ZONE",{sheetId:t,dimension:"ROW",zone:o}),this.env.model.dispatch("UNFOLD_HEADER_GROUPS_IN_ZONE",{sheetId:t,dimension:"COL",zone:o});break;case"up":this.env.model.dispatch("FOLD_HEADER_GROUPS_IN_ZONE",{sheetId:t,dimension:"ROW",zone:o}),this.env.model.dispatch("FOLD_HEADER_GROUPS_IN_ZONE",{sheetId:t,dimension:"COL",zone:o});break;case"right":{const{x:e,y:t,width:s}=this.env.model.getters.getVisibleRect(o),i=this.getGridRect();this.toggleContextMenu("GROUP_HEADERS",e+s+i.x,t+i.y);break}case"left":{if(!rE(this.env,"COL")&&!rE(this.env,"ROW"))return;const{x:e,y:t,width:s}=this.env.model.getters.getVisibleRect(o),i=this.getGridRect();this.toggleContextMenu("UNGROUP_HEADERS",e+s+i.x,t+i.y);break}}}onComposerCellFocused(e,t){this.composerFocusStore.focusGridComposerCell(e,t)}onComposerContentFocused(){this.composerFocusStore.focusGridComposerContent()}get staticTables(){const e=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getCoreTables(e).filter(fR)}}class AT{xmlString;constructor(e){this.xmlString=e}toString(){return this.xmlString}}const OT=["areaChart","area3DChart","lineChart","line3DChart","stockChart","radarChart","scatterChart","pieChart","pie3DChart","doughnutChart","barChart","bar3DChart","ofPieChart","surfaceChart","surface3DChart","bubbleChart","comboChart"],_T="000000",DT={arrow:"3Arrows",smiley:"3Symbols",dot:"3TrafficLights1"},FT={styleSheet:"http://schemas.openxmlformats.org/spreadsheetml/2006/main",sst:"http://schemas.openxmlformats.org/spreadsheetml/2006/main",Relationships:"http://schemas.openxmlformats.org/package/2006/relationships",Types:"http://schemas.openxmlformats.org/package/2006/content-types",worksheet:"http://schemas.openxmlformats.org/spreadsheetml/2006/main",workbook:"http://schemas.openxmlformats.org/spreadsheetml/2006/main",drawing:"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing",table:"http://schemas.openxmlformats.org/spreadsheetml/2006/main",revision:"http://schemas.microsoft.com/office/spreadsheetml/2014/revision",revision3:"http://schemas.microsoft.com/office/spreadsheetml/2016/revision3",markupCompatibility:"http://schemas.openxmlformats.org/markup-compatibility/2006"},MT="http://schemas.openxmlformats.org/drawingml/2006/main",PT="http://schemas.openxmlformats.org/drawingml/2006/chart",NT={workbook:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml",sheet:"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml",sharedStrings:"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml",styles:"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml",drawing:"application/vnd.openxmlformats-officedocument.drawing+xml",chart:"application/vnd.openxmlformats-officedocument.drawingml.chart+xml",themes:"application/vnd.openxmlformats-officedocument.theme+xml",table:"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml",pivot:"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml",externalLink:"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml"},LT={document:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument",sheet:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet",sharedStrings:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings",styles:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles",drawing:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing",chart:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart",theme:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme",table:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/table",hyperlink:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink",image:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"},kT="http://schemas.openxmlformats.org/officeDocument/2006/relationships",VT=.75,UT=.143,HT=8.43,zT=12.75,BT=30,$T=100,WT=164,GT={FLOOR:[{type:"NUMBER",value:1}],CEILING:[{type:"NUMBER",value:1}],ROUND:[{type:"NUMBER",value:0}],ROUNDUP:[{type:"NUMBER",value:0}],ROUNDDOWN:[{type:"NUMBER",value:0}]},qT=["ACOT","ACOTH","AGGREGATE","ARABIC","BASE","BETA.DIST","BETA.INV","BINOM.DIST","BINOM.DIST.RANGE","BINOM.INV","BITAND","BITLSHIFT","BITOR","BITRSHIFT","BITXOR","BYCOL","BYROW","CEILING.MATH","CEILING.PRECISE","CHISQ.DIST","CHISQ.DIST.RT","CHISQ.INV","CHISQ.INV.RT","CHISQ.TEST","CHOOSECOLS","CHOOSEROWS","COMBINA","CONCAT","CONFIDENCE.NORM","CONFIDENCE.T","COT","COTH","COVARIANCE.P","COVARIANCE.S","CSC","CSCH","DAYS","DECIMAL","DROP","ERF.PRECISE","ERFC.PRECISE","EXPAND","EXPON.DIST","F.DIST","F.DIST.RT","F.INV","F.INV.RT","F.TEST","FIELDVALUE","FILTERXML","FLOOR.MATH","FLOOR.PRECISE","FORECAST.ETS","FORECAST.ETS.CONFINT","FORECAST.ETS.SEASONALITY","FORECAST.ETS.STAT","FORECAST.LINEAR","FORMULATEXT","GAMMA","GAMMA.DIST","GAMMA.INV","GAMMALN.PRECISE","GAUSS","HSTACK","HYPGEOM.DIST","IFNA","IFS","IMCOSH","IMCOT","IMCSC","IMCSCH","IMSEC","IMSECH","IMSINH","IMTAN","ISFORMULA","ISOMITTED","ISOWEEKNUM","LAMBDA","LET","LOGNORM.DIST","LOGNORM.INV","MAKEARRAY","MAP","MAXIFS","MINIFS","MODE.MULT","MODE.SNGL","MUNIT","NEGBINOM.DIST","NORM.DIST","NORM.INV","NORM.S.DIST","NORM.S.INV","NUMBERVALUE","PDURATION","PERCENTILE.EXC","PERCENTILE.INC","PERCENTRANK.EXC","PERCENTRANK.INC","PERMUTATIONA","PHI","POISSON.DIST","PQSOURCE","PYTHON_STR","PYTHON_TYPE","PYTHON_TYPENAME","QUARTILE.EXC","QUARTILE.INC","QUERYSTRING","RANDARRAY","RANK.AVG","RANK.EQ","REDUCE","RRI","SCAN","SEC","SECH","SEQUENCE","SHEET","SHEETS","SKEW.P","SORTBY","STDEV.P","STDEV.S","SWITCH","T.DIST","T.DIST.2T","T.DIST.RT","T.INV","T.INV.2T","T.TEST","TAKE","TEXTAFTER","TEXTBEFORE","TEXTJOIN","TEXTSPLIT","TOCOL","TOROW","UNICHAR","UNICODE","UNIQUE","VAR.P","VAR.S","VSTACK","WEBSERVICE","WEIBULL.DIST","WRAPCOLS","WRAPROWS","XLOOKUP","XOR","Z.TEST"],ZT="[Content_Types].xml";var jT;!function(e){e.DiagonalBorderNotSupported="Diagonal Borders",e.BorderStyleNotSupported="Border style",e.FillStyleNotSupported="Fill Style",e.FontNotSupported="Font",e.HorizontalAlignmentNotSupported="Horizontal Alignment",e.VerticalAlignmentNotSupported="Vertical Alignments",e.MultipleRulesCfNotSupported="Multiple rules conditional formats",e.CfTypeNotSupported="Conditional format type",e.CfFormatBorderNotSupported="Borders in conditional formats",e.CfFormatAlignmentNotSupported="Alignment in conditional formats",e.CfFormatNumFmtNotSupported="Num formats in conditional formats",e.CfIconSetEmptyIconNotSupported="IconSets with empty icons",e.BadlyFormattedHyperlink="Badly formatted hyperlink",e.NumFmtIdNotSupported="Number format"}(jT||(jT={}));class YT{_parsingWarnings=new Set;_conversionWarnings=new Set;addParsingWarning(e){this._parsingWarnings.add(e)}addConversionWarning(e){this._conversionWarnings.add(e)}get warnings(){return[...this._parsingWarnings,...this._conversionWarnings]}generateNotSupportedWarning(e,t,o){let s=`${e} ${t?'"'+t+'" is':"are"} not yet supported. `;o&&(s+=`Only ${o.join(", ")} are currently supported.`),this._conversionWarnings.has(s)||this._conversionWarnings.add(s)}}const XT=["thin","medium","thick","dashed","dotted"],KT=["general","left","center","right"],QT=["top","center","bottom"],JT=["Arial"],eA=["solid"],tA=["expression","cellIs","colorScale","iconSet","containsText","notContainsText","beginsWith","endsWith","containsBlanks","notContainsBlanks"],oA={b:"boolean",d:"date",e:"error",inlineStr:"inlineStr",n:"number",s:"sharedString",str:"str"},sA={dashDot:"thin",dashDotDot:"thin",dashed:"dashed",dotted:"dotted",double:"thin",hair:"thin",medium:"medium",mediumDashDot:"thin",mediumDashDotDot:"thin",mediumDashed:"thin",none:void 0,slantDashDot:"thin",thick:"thick",thin:"thin"},iA={general:void 0,left:"left",center:"center",right:"right",fill:"left",justify:"left",centerContinuous:"center",distributed:"center"},nA={top:"top",center:"middle",bottom:"bottom",justify:"middle",distributed:"middle"},rA={top:"top",middle:"center",bottom:"bottom"};const aA={aboveAverage:void 0,expression:void 0,cellIs:void 0,colorScale:void 0,dataBar:void 0,iconSet:void 0,top10:void 0,uniqueValues:void 0,duplicateValues:void 0,containsText:"ContainsText",notContainsText:"NotContains",beginsWith:"BeginsWith",endsWith:"EndsWith",containsBlanks:"IsEmpty",notContainsBlanks:"IsNotEmpty",containsErrors:void 0,notContainsErrors:void 0,timePeriod:void 0},lA={num:"number",percent:"percentage",max:"value",min:"value",percentile:"percentile",formula:"formula"},cA={NoIcons:void 0,"3Arrows":"arrows","3ArrowsGray":"arrows","3Symbols":"smiley","3Symbols2":"smiley","3Signs":"dots","3Flags":"dots","3TrafficLights1":"dots","3TrafficLights2":"dots","4Arrows":"arrows","4ArrowsGray":"arrows","4RedToBlack":"dots","4Rating":"smiley","4TrafficLights":"dots","5Arrows":"arrows","5ArrowsGray":"arrows","5Rating":"smiley","5Quarters":"dots","3Stars":"smiley","3Triangles":"arrows","5Boxes":"dots"},hA={b:"bottom",t:"top",l:"left",r:"right",tr:"right"},dA={areaChart:void 0,area3DChart:void 0,lineChart:"line",line3DChart:void 0,stockChart:void 0,radarChart:void 0,scatterChart:"scatter",pieChart:"pie",pie3DChart:void 0,doughnutChart:"pie",barChart:"bar",bar3DChart:void 0,ofPieChart:void 0,surfaceChart:void 0,surface3DChart:void 0,bubbleChart:void 0,comboChart:"combo"},uA={1:"AVERAGE",2:"COUNT",3:"COUNTA",4:"MAX",5:"MIN",6:"PRODUCT",7:"STDEV",8:"STDEVP",9:"SUM",10:"VAR",11:"VARP",101:"AVERAGE",102:"COUNT",103:"COUNTA",104:"MAX",105:"MIN",106:"PRODUCT",107:"STDEV",108:"STDEVP",109:"SUM",110:"VAR",111:"VARP"},gA={0:"",1:"0",2:"0.00",3:"#,#00",4:"#,##0.00",9:"0%",10:"0.00%",11:void 0,12:void 0,13:void 0,14:"m/d/yyyy",15:"m/d/yyyy",16:"m/d/yyyy",17:"m/d/yyyy",18:"hh:mm:ss a",19:"hh:mm:ss a",20:"hhhh:mm:ss",21:"hhhh:mm:ss",22:"m/d/yy h:mm",37:void 0,38:void 0,39:void 0,40:void 0,45:"hhhh:mm:ss",46:"hhhh:mm:ss",47:"hhhh:mm:ss",48:void 0,49:Do},pA={0:1,"0.00":2,"#,#00":3,"#,##0.00":4,"0%":9,"0.00%":10,"0.00E+00":11,"# ?/?":12,"# ??/??":13,"mm-dd-yy":14,"d-mm-yy":15,"mm-yy":16,"mmm-yy":17,"h:mm AM/PM":18,"h:mm:ss AM/PM":19,"h:mm":20,"h:mm:ss":21,"m/d/yy h:mm":22,"#,##0 ;(#,##0)":37,"#,##0 ;[Red](#,##0)":38,"#,##0.00;(#,##0.00)":39,"#,##0.00;[Red](#,##0.00)":40,"mm:ss":45,"[h]:mm:ss":46,"mmss.0":47,"##0.0E+0":48,"@":49,"hh:mm:ss a":19},mA={0:"000000",1:"FFFFFF",2:"FF0000",3:"00FF00",4:"0000FF",5:"FFFF00",6:"FF00FF",7:"00FFFF",8:"000000",9:"FFFFFF",10:"FF0000",11:"00FF00",12:"0000FF",13:"FFFF00",14:"FF00FF",15:"00FFFF",16:"800000",17:"008000",18:"000080",19:"808000",20:"800080",21:"008080",22:"C0C0C0",23:"808080",24:"9999FF",25:"993366",26:"FFFFCC",27:"CCFFFF",28:"660066",29:"FF8080",30:"0066CC",31:"CCCCFF",32:"000080",33:"FF00FF",34:"FFFF00",35:"00FFFF",36:"800080",37:"800000",38:"008080",39:"0000FF",40:"00CCFF",41:"CCFFFF",42:"CCFFCC",43:"FFFF99",44:"99CCFF",45:"FF99CC",46:"CC99FF",47:"FFCC99",48:"3366FF",49:"33CCCC",50:"99CC00",51:"FFCC00",52:"FF9900",53:"FF6600",54:"666699",55:"969696",56:"003366",57:"339966",58:"003300",59:"333300",60:"993300",61:"993366",62:"333399",63:"333333",64:"000000",65:"FFFFFF"},fA={"image/avif":"avif","image/bmp":"bmp","image/gif":"gif","image/vnd.microsoft.icon":"ico","image/jpeg":"jpeg","image/png":"png","image/tiff":"tiff","image/webp":"webp"},bA={avif:"image/avif",bmp:"image/bmp",gif:"image/gif",ico:"image/vnd.microsoft.icon",jpeg:"image/jpeg",png:"image/png",tiff:"image/tiff",webp:"image/webp",jpg:"image/jpeg"};function vA(e){if(!e)return;let t;if(e.rgb)t=e.rgb;else if(e.auto)t=_T;else{if(!e.indexed)return;t=mA[e.indexed]}var o;return t=6===(o=t).length?"#"+o+"FF":"#"+o.slice(2)+o.slice(0,2),e.tint&&(t=function(e,t){const o=ft(e),s=vt(o);t<0&&(s.l=s.l*(1+t));t>0&&(s.l=s.l*(1-t)+(100-100*(1-t)));return mt(bt(s))}(t,e.tint)),t=t.toUpperCase(),9===t.length&&t.endsWith("FF")&&(t=t.slice(0,7)),t}function SA(e,t){const o=e.split("/"),s=t.split("/");let i="",n=0;for(let e=0;e<o.length-1;e++)o[e]===s[e]?n++:i+="../";return i+=s.slice(n).join("/"),i}function yA(e,t=0){const o={};for(let s=0;s<e.length;s++)e[s]&&(o[s+t]=e[s]);return o}function CA(e){return e.replace(/_x([0-9a-zA-Z]{4})_/g,((e,t)=>String.fromCharCode(parseInt(t,16))))}function wA(e,t,o){return"COL"===t?(e.cols[o]||(e.cols[o]={}),e.cols[o]):(e.rows[o]||(e.rows[o]={}),e.rows[o])}const xA=/^(yy|yyyy|m{1,5}|d{1,4}|h{1,2}|s{1,2}|am\/pm|a\/m|\s|-|\/|\.|:)+$/i;function EA(e,t,o){if(0===e)return;let s=gA[e]||t.find((t=>t.id===e))?.format;if(s)try{let e=s.replace(/(.*?);.*/,"$1");e=e.replace(/\[(.*)-[A-Z0-9]{3}\]/g,"[$1]"),e=e.replace(/\[\$\]/g,"");const t=e.match(/"/g)?.length||0;if(t/2+(e.match(/\[/g)?.length||0)>1)throw new Error("Multiple escaped blocks in format");if(e=e.replace(/"(.*)"/g,"[$$$1]"),e=e.replace(/_.{1}/g,""),e=e.replace(/\*.{1}/g,""),e=e.replace(/\\ /g," "),e=e.replace(/\\./g,(e=>e[1])),function(e){return xA.test(e)}(e)&&(e=function(e){return e=e.toLowerCase(),e=e.replace(/mmmmm/g,"mmm"),e=e.replace(/am\/pm|a\/m/g,"a"),e=e.replace(/hhhh/g,"hh"),e=e.replace(/\bh\b/g,"hh"),e}(e)),function(e){try{return qs(0,{format:e,locale:Mo}),!0}catch(e){return!1}}(e))return e}catch(e){}o.generateNotSupportedWarning(jT.NumFmtIdNotSupported,s||`nmFmtId ${e}`)}function IA(e,t){const o=e.borders.map((e=>{!function(e,t){e.diagonal&&t.generateNotSupportedWarning(jT.DiagonalBorderNotSupported)}(e,t);const o={top:RA(e.top,t),bottom:RA(e.bottom,t),left:RA(e.left,t),right:RA(e.right,t)};return Object.keys(o).forEach((e=>void 0===o[e]&&delete o[e])),o}));return yA(o,1)}function RA(e,t){if(!e)return;!function(e,t){XT.includes(e.style)||t.generateNotSupportedWarning(jT.BorderStyleNotSupported,e.style,XT)}(e,t);const o=sA[e.style];return o?{style:o,color:vA(e.color)}:void 0}function TA(e,t){return yA(e.styles.map((o=>AA({fontStyle:e.fonts[o.fontId],fillStyle:e.fills[o.fillId],alignment:o.alignment},t))),1)}function AA(e,t){return function(e,t,o){e&&e.name&&!JT.includes(e.name)&&o.generateNotSupportedWarning(jT.FontNotSupported,e.name,JT);t&&t.patternType&&!eA.includes(t.patternType)&&o.generateNotSupportedWarning(jT.FillStyleNotSupported,t.patternType,eA)}(e?.fontStyle,e?.fillStyle,t),function(e,t){e&&!KT.includes(e)&&t.generateNotSupportedWarning(jT.HorizontalAlignmentNotSupported,e,KT)}(e?.alignment?.horizontal,t),function(e,t){e&&!QT.includes(e)&&t.generateNotSupportedWarning(jT.VerticalAlignmentNotSupported,e,QT)}(e?.alignment?.vertical,t),{bold:e.fontStyle?.bold,italic:e.fontStyle?.italic,strikethrough:e.fontStyle?.strike,underline:e.fontStyle?.underline,verticalAlign:e.alignment?.vertical?nA[e.alignment.vertical]:void 0,align:e.alignment?.horizontal?iA[e.alignment.horizontal]:void 0,fillColor:"solid"===e.fillStyle?.patternType?vA(e.fillStyle?.fgColor):vA(e.fillStyle?.bgColor),textColor:vA(e.fontStyle?.color),fontSize:e.fontStyle?.size,wrapping:e.alignment?.wrapText?"wrap":"overflow"}}function OA(e,t){const o=[];for(let s of e.styles){const i=EA(s.numFmtId,e.numFmts,t);i&&(o[s.numFmtId]=i)}return yA(o,1)}function _A(e,t,o){const s=[];let i=1;for(let r of e){if(0===r.cfRules.length)continue;PA(r,t,o);const e=r.cfRules[0];let a;const l=[];if(void 0!==e.dxfId||"colorScale"===e.type||"iconSet"===e.type){switch(e.type){case"aboveAverage":case"containsErrors":case"notContainsErrors":case"dataBar":case"duplicateValues":case"expression":case"top10":case"uniqueValues":case"timePeriod":continue;case"colorScale":const t=DA(i++,r);t&&s.push(t);continue;case"iconSet":const c=FA(i++,r,o);c&&s.push(c);continue;case"containsText":case"notContainsText":case"beginsWith":case"endsWith":if(!e.text)continue;a=aA[e.type],l.push(e.text);break;case"containsBlanks":case"notContainsBlanks":a=aA[e.type];break;case"cellIs":if(!e.operator||!e.formula||0===e.formula.length)continue;a=(n=e.operator).slice(0,1).toUpperCase()+n.slice(1),l.push(e.formula[0]),2===e.formula.length&&l.push(e.formula[1])}a&&void 0!==e.dxfId&&s.push({id:(i++).toString(),ranges:r.sqref,stopIfTrue:e.stopIfTrue,rule:{type:"CellIsRule",operator:a,values:l,style:AA({fontStyle:t[e.dxfId].font,fillStyle:t[e.dxfId].fill},o)}})}}var n;return s}function DA(e,t){const o=t.cfRules[0].colorScale;if(!o||o.cfvos.length!==o.colors.length||o.cfvos.length<2||o.cfvos.length>3)return;const s=[];for(let e=0;e<o.cfvos.length;e++)s.push({color:(i=vA(o.colors[e])||"#FFFFFF",9===i.length&&(i=i.slice(0,7)),parseInt(i.replace("#",""),16)),type:lA[o.cfvos[e].type],value:o.cfvos[e].value});var i;const n=s[0],r=2===s.length?s[1]:s[2],a=3===s.length?s[1]:void 0;return{id:e.toString(),stopIfTrue:t.cfRules[0].stopIfTrue,ranges:t.sqref,rule:{type:"ColorScaleRule",minimum:n,midpoint:a,maximum:r}}}function FA(e,t,o){const s=t.cfRules[0].iconSet;if(!s)return;let i=s.cfvos,n=s.cfIcons;if(i.length<3||n&&n.length<3)return;i.length>3&&(i=[i[0],i[Math.floor(i.length/2)],i[i.length-1]]),n&&n.length>3&&(n=[n[0],n[Math.floor(n.length/2)],n[n.length-1]]);const r=[];for(let e=1;e<=2;e++){const t=lA[i[e].type];if("value"===t)return;r.push({value:i[e].value||"",operator:i[e].gte?"ge":"gt",type:t})}let a={lower:n?MA(n[0].iconSet,n[0].iconId):MA(s.iconSet,0),middle:n?MA(n[1].iconSet,n[1].iconId):MA(s.iconSet,1),upper:n?MA(n[2].iconSet,n[2].iconId):MA(s.iconSet,2)};s.reverse&&(a={upper:a.lower,middle:a.middle,lower:a.upper});for(let e of Object.keys(a))if(!a[e])switch(o.generateNotSupportedWarning(jT.CfIconSetEmptyIconNotSupported),e){case"upper":a[e]=tI.dots.good;break;case"middle":a[e]=tI.dots.neutral;break;case"lower":a[e]=tI.dots.bad}return{id:e.toString(),stopIfTrue:t.cfRules[0].stopIfTrue,ranges:t.sqref,rule:{type:"IconSetRule",icons:a,upperInflectionPoint:r[1],lowerInflectionPoint:r[0]}}}function MA(e,t){const o=cA[e];return o?0===t?tI[o].bad:1===t?tI[o].neutral:tI[o].good:""}function PA(e,t,o){if(e.cfRules.length>1&&o.generateNotSupportedWarning(jT.MultipleRulesCfNotSupported),tA.includes(e.cfRules[0].type)||o.generateNotSupportedWarning(jT.CfTypeNotSupported,e.cfRules[0].type),e.cfRules[0].dxfId){const s=t[e.cfRules[0].dxfId];s.border&&o.generateNotSupportedWarning(jT.CfFormatBorderNotSupported),s.alignment&&o.generateNotSupportedWarning(jT.CfFormatAlignmentNotSupported),s.numFmt&&o.generateNotSupportedWarning(jT.CfFormatNumFmtNotSupported)}}function NA(e){switch(e){case"IsNotEmpty":case"NotContains":return"notContainsBlanks";case"IsEmpty":return"containsBlanks";default:return e.charAt(0).toLowerCase()+e.slice(1)}}function LA(e){return Math.round(VT*e*100)/100}function kA(e){return Math.round(UT*e*100)/100}function VA(e,t){let o={};e.style&&(o=t.styles[e.style]);const s=function(e,t){if(e.format)return t.formats[e.format];return}(e,t),i={font:{size:o?.fontSize||j,color:{rgb:o?.textColor?o.textColor:"000000"},family:2,name:"Arial"},fill:o?.fillColor?{fgColor:{rgb:o.fillColor}}:{reservedAttribute:"none"},numFmt:s?{format:s,id:0}:void 0,border:e.border||0,alignment:{horizontal:o.align,vertical:o.verticalAlign?rA[o.verticalAlign]:void 0,wrapText:"wrap"===o.wrapping||void 0}};return i.font.strike=!!o?.strikethrough||void 0,i.font.underline=!!o?.underline||void 0,i.font.bold=!!o?.bold||void 0,i.font.italic=!!o?.italic||void 0,i}function UA(e,t){const o=function(e,t){if(!e)return 0;let o=pA[e.format];o||(o=zA(e,t)+WT);return o}(t.numFmt,e.numFmts),s={fontId:zA(t.font,e.fonts),fillId:zA(t.fill,e.fills),borderId:t.border,numFmtId:o,alignment:{vertical:t.alignment.vertical,horizontal:t.alignment.horizontal,wrapText:t.alignment.wrapText}};return zA(s,e.styles)}function HA(e,t,o){let s,i=e.find((e=>e.path===t));return i?(s=`rId${(i.rels.length+1).toString()}`,i.rels.push({...o,id:s})):(s="rId1",e.push({path:t,rels:[{...o,id:s}]})),s}function zA(e,t){let o=t.length;const s="object"==typeof e?Ge:(e,t)=>e===t;for(let i=0;i<o;i++)if(s(e,t[i]))return i;return t[t.length]=e,t.length-1}const BA=[];function $A(e){const t=BA.findIndex((t=>t===e));return-1===t?(BA.push(e),BA.length):t+1}const WA=[];function GA(e){const t=WA.findIndex((t=>t===e));return-1===t?(WA.push(e),WA.length):t+1}function qA(e){return Math.round(914400*e/96)}function ZA(e,t,o){let s,i,n=e;if(({xc:n,sheetName:s}=Fi(e)),s){const e=o.sheets.findIndex((e=>e.name===s));if(e<0)throw new Error("Unable to find a sheet with the name "+s);i=e}else i=Number(t);const r=Hi(n);return void 0===r.right&&(r.right=o.sheets[i].colNumber),void 0===r.bottom&&(r.bottom=o.sheets[i].rowNumber),(r.right-r.left+1)*(r.bottom-r.top+1)}function jA(e){return Math.round(96*e/914400)}function YA(e,t){let o=0;for(let s=0;s<e;s++){const e=t.cols.find((e=>s>=e.min&&s<=e.max));e?.width?o+=e.width:t.sheetFormat?.defaultColWidth?o+=t.sheetFormat.defaultColWidth:o+=HT}return o/UT}function XA(e,t){let o=0;for(let s=0;s<e;s++){const e=t.rows[s];e?.height?o+=e.height:t.sheetFormat?.defaultRowHeight?o+=t.sheetFormat.defaultRowHeight:o+=zT}return o/VT}function KA(e){let t=1;return e.figures.map((o=>function(e,t,o){let s,i,n,r;if(1===e.anchors.length)({x:s,y:i}=eO(e.anchors[0],o)),r=jA(e.figureSize.cx),n=jA(e.figureSize.cy);else{({x:s,y:i}=eO(e.anchors[0],o));const{x:t,y:a}=eO(e.anchors[1],o);r=t-s,n=a-i}const a={id:t,x:s,y:i};if("dataSets"in e.data)return{...a,width:r,height:n,tag:"chart",data:QA(e.data)};if(function(e){return"imageSrc"in e}(e.data))return{...a,width:jA(e.data.size.cx),height:jA(e.data.size.cy),tag:"image",data:{path:e.data.imageSrc,mimetype:e.data.mimetype}};return}(o,(t++).toString(),e))).filter(Le)}function QA(e){const t=e.dataSets.some((e=>"reference"in(e.label??{}))),o=e.labelRange?JA(e.labelRange,t):void 0,s=e.dataSets.map((e=>{let o;return e.label&&"text"in e.label&&(o=e.label.text),{dataRange:JA(e.range,t),label:o,backgroundColor:e.backgroundColor}}));return"pie"===e.type&&s.reverse(),{dataSets:s,dataSetsHaveTitle:t,labelRange:o,title:e.title??{text:""},type:e.type,background:vA({rgb:e.backgroundColor})||"#FFFFFF",legendPosition:e.legendPosition,stacked:e.stacked||!1,aggregated:!1,cumulative:e.cumulative||!1,labelsAsText:!1}}function JA(e,t){let{sheetName:o,xc:s}=Fi(e),i=Hi(s);if(t&&void 0!==i.bottom&&void 0!==i.right){const e=i.bottom-i.top+1,t=i.right-i.left+1;1===e?i={...i,left:i.left-1}:1===t&&(i={...i,top:i.top-1})}return Mi(o,Wi(i))}function eO(e,t){return{x:YA(e.col,t)+jA(e.colOffset),y:XA(e.row,t)+jA(e.rowOffset)}}const tO=new RegExp(/'?\[([0-9]*)\](.*)'?!(\$?[a-zA-Z]*\$?[0-9]*)/g),oO=new RegExp(/SUBTOTAL\(([0-9]*),/g),sO=new RegExp(yi.source,"ig");function iO(e,t){const o=function(e){const t={};for(let o of e.rows)for(let e of o.cells)e.formula&&void 0!==e.formula.sharedIndex&&e.formula.content&&(t[e.formula.sharedIndex]={refCellXc:e.xc,formula:e.formula.content});return t}(e);for(let s of e.rows.map((e=>e.cells)).flat())s?.formula&&(s.formula.content=void 0===s.formula.sharedIndex||s.formula.content?"="+s.formula.content:"="+rO(s.xc,o[s.formula.sharedIndex]),s.formula.content=nO(s.formula.content,t))}function nO(e,t){return e=(e=(e=(e=e.replace("_xlfn.","")).replace(/#REF!/g,"#REF")).replace(oO,((e,t)=>{const o=uA[t];return o?o+"(":e}))).replace(tO,((e,o,s,i)=>{o=Number(o)-1,i=i.replace(/\$/g,"");const n=t.externalBooks[o].sheetNames.findIndex((e=>e===s));if(-1===n)return e;const r=t.externalBooks[o].datasets.find((e=>e.sheetId===n))?.data;if(!r)return e;const a=r&&r[i];return(Number(a)?a:`"${a}"`)||e}))}function rO(e,t){const o=Ot(t.refCellXc);let s,i=t.formula.slice();do{if(s=sO.exec(i),s){const t=Ot(s[0].replace("$","")),n=Ot(e),r={colFixed:s[0].startsWith("$"),rowFixed:s[0].includes("$",1)},a={col:n.col-o.col,row:n.row-o.row},l={col:r.colFixed?t.col:t.col+a.col,row:r.rowFixed?t.row:t.row+a.row};i=i.slice(0,s.index)+_t(l.col,l.row,r)+i.slice(s.index+s[0].length)}}while(s);return i}function aO(e,t){return e.sheets.map((o=>{iO(o,e);const s=function(e){const t=[0,0];for(let o of e.rows)t[0]=Math.max(t[0],it(o.cells.map((e=>Ot(e.xc).col)))),t[1]=Math.max(t[1],o.index);return t[0]=Math.max(t[0],BT),t[1]=Math.max(t[1],$T),t}(o),i=o.sheetViews[0],n=uO(o,"ROW",s[1]),r=uO(o,"COL",s[0]);return{id:o.sheetName,areGridLinesVisible:!i||i.showGridLines,name:o.sheetName,colNumber:s[0],rowNumber:s[1],cells:hO(o,e,s,t),merges:o.merges,cols:lO(o,s[0],r),rows:cO(o,s[1],n),conditionalFormats:_A(o.cfs,e.dxfs,t),figures:KA(o),isVisible:o.isVisible,panes:i?{xSplit:i.pane.xSplit,ySplit:i.pane.ySplit}:{xSplit:0,ySplit:0},tables:[],headerGroups:{COL:r,ROW:n}}}))}function lO(e,t,o){const s={};for(let n=1;n<t+1;n++){const t=e.cols.find((e=>e.min<=n&&n<=e.max));let r;r=t&&t.width?t.width:e.sheetFormat?.defaultColWidth?e.sheetFormat.defaultColWidth:HT;const a=n-1,l=o.some((e=>e.isFolded&&e.start<=a&&a<=e.end));s[a]={size:(i=r,i?Math.round(i/UT*100)/100:i),isHidden:!l&&t?.hidden}}var i;return s}function cO(e,t,o){const s={};for(let n=1;n<t+1;n++){const t=e.rows.find((e=>e.index===n));let r;r=t&&t.height?t.height:e.sheetFormat?.defaultRowHeight?e.sheetFormat.defaultRowHeight:zT;const a=n-1,l=o.some((e=>e.isFolded&&e.start<=a&&a<=e.end));s[a]={size:(i=r,i?Math.round(i/VT*100)/100:i),isHidden:!l&&t?.hidden}}var i;return s}function hO(e,t,o,s){const i={},n=t.sharedStrings.map((e=>e.replace(/\n/g,"")));const r=e.hyperlinks.reduce(((e,t)=>(e[t.xc]=t,e)),{});for(let o of e.rows)for(let e of o.cells)i[e.xc]={content:dO(e,r,n,s),style:e.styleIndex?e.styleIndex+1:void 0,border:e.styleIndex?t.styles[e.styleIndex].borderId+1:void 0,format:e.styleIndex?t.styles[e.styleIndex].numFmtId+1:void 0};for(let s of e.rows.filter((e=>e.styleIndex)))for(let e=1;e<=o[0];e++){const o=_t(e-1,s.index-1);let n=i[o];n||(n={},i[o]=n),n.style=n.style?n.style:s.styleIndex+1,n.border=n.border?n.border:t.styles[s.styleIndex].borderId+1,n.format=n.format?n.format:t.styles[s.styleIndex].numFmtId+1}for(let s of e.cols.filter((e=>e.styleIndex)))for(let e=s.min;e<=Math.min(s.max,o[0]);e++)for(let n=1;n<=o[1];n++){const o=_t(e-1,n-1);let r=i[o];r||(r={},i[o]=r),r.style=r.style?r.style:s.styleIndex+1,r.border=r.border?r.border:t.styles[s.styleIndex].borderId+1,r.format=r.format?r.format:t.styles[s.styleIndex].numFmtId+1}return i}function dO(e,t,o,s){let i;switch(e.type){case"sharedString":i=o[parseInt(e.value,10)];break;case"boolean":i=Number(e.value)?"TRUE":"FALSE";break;case"date":case"error":case"inlineStr":case"number":case"str":i=e.value}return i&&t[e.xc]&&(i=function(e,t,o){const s=e.display||t;e.relTarget||e.location||o.generateNotSupportedWarning(jT.BadlyFormattedHyperlink);const i=e.relTarget?e.relTarget:Pe(Fi(e.location).sheetName);return _e(s,i)}(t[e.xc],i,s)),e.formula&&(i=e.formula.content),i}function uO(e,t,o){const s=e?.sheetProperties?.outlinePr,i=[];let n=0;for(let r=0;r<o;r++){const o=pO(e,t,r),a=o?.outlineLevel||0;if(a>n){const o=gO(e,t,r,("ROW"===t?s?.summaryBelow:s?.summaryRight)??!0);o&&i.push(o)}n=a}return i}function gO(e,t,o,s){const i=pO(e,t,o),n=i?.outlineLevel;if(!n||!n)return;let r=n,a=o,l=i;for(;l&&r>=n;)a++,l=pO(e,t,a),r=l?.outlineLevel||0;const c=o,h=a-1,d=pO(e,t,s?h+1:c-1);return{start:c-1,end:h-1,isFolded:d?.collapsed||!1}}function pO(e,t,o){return"COL"===t?e.cols.find((e=>e.min<=o&&o<=e.max)):e.rows.find((e=>e.index===o))}function mO(e,t){for(const o of t.sheets){const t=e.sheets.find((e=>e.name===o.sheetName));if(t){t.tables||(t.tables=[]);for(const e of o.tables)t.tables.push({range:e.ref,config:fO(e)});for(const e of o.pivotTables)t.tables.push({range:e.location.ref,config:bO(e)})}}!function(e,t){for(let o of e){const e=t.find((e=>e.sheetName===o.name)).tables;for(let t of e){const e=t.name+"[";for(let s of sn(zi(t.ref))){const i=_t(s.col,s.row),n=o.cells[i];if(n&&n.content&&n.content.startsWith("=")){let o;for(;-1!==(o=n.content.indexOf(e));){let s=n.content.slice(o+e.length),r=s.indexOf("]");s.startsWith("[")&&(r=s.indexOf("]",r+1),r=s.indexOf("]",r+1)),s=s.slice(0,r);const a=vO(s,t,i);n.content=n.content.slice(0,o)+a+n.content.slice(e.length+o+r+1)}}}}}}(e.sheets,t.sheets)}function fO(e){const t=e.style?.name||"";return{hasFilters:void 0!==e.autoFilter,numberOfHeaders:e.headerRowCount,totalRow:e.totalsRowCount>0,firstColumn:e.style?.showFirstColumn||!1,lastColumn:e.style?.showLastColumn||!1,bandedRows:e.style?.showRowStripes||!1,bandedColumns:e.style?.showColumnStripes||!1,styleId:Yy[t]?t:My.styleId}}function bO(e){return{hasFilters:!1,numberOfHeaders:e.location.firstDataRow,totalRow:e.rowGrandTotals,firstColumn:!0,lastColumn:e.style?.showLastColumn||!1,bandedRows:e.style?.showRowStripes||!1,bandedColumns:e.style?.showColStripes||!1,styleId:My.styleId}}function vO(e,t,o){const s=e.split(","),i=zi(t.ref),n={...i};let r=!0;if(1===s.length){const e=t.cols.findIndex((e=>e.name===s[0]));n.left=n.right=e+i.left,t.headerRowCount&&(n.top+=t.headerRowCount),t.totalsRowCount&&(n.bottom-=1)}else{switch(s[0].slice(1,s[0].length-1)){case"#All":n.top=t.headerRowCount?i.top+t.headerRowCount:i.top,n.bottom=i.bottom;break;case"#Data":n.top=t.headerRowCount?i.top+t.headerRowCount:i.top,n.bottom=t.totalsRowCount?i.bottom+1:i.bottom;break;case"#This Row":n.top=n.bottom=Ot(o).row;break;case"#Headers":n.top=n.bottom=i.top,t.headerRowCount||(r=!1);break;case"#Totals":n.top=n.bottom=i.bottom,t.totalsRowCount||(r=!1)}const e=s[1].slice(1,s[1].length-1),a=t.cols.findIndex((t=>t.name===e));n.left=n.right=a+i.left}return r?n.top!==n.bottom?Wi(n):_t(n.left,n.top):Uo.InvalidReference}function SO(e,t,o){return{content:(new XMLSerializer).serializeToString(e),path:t,contentType:o}}function yO(e){return String(e).replace(/\&/g,"&amp;").replace(/\</g,"&lt;").replace(/\>/g,"&gt;").replace(/\"/g,"&quot;").replace(/\'/g,"&apos;").replace(/[\x00-\x08\x0B\x0C\x0E-\x1F]/g,"")}function CO(e){return new AT(e.map((([e,t])=>`${e}="${yO(t)}"`)).join(" "))}function wO(e,t="text/xml"){const o=(new DOMParser).parseFromString(e.toString(),t),s=o.querySelector("parsererror");if(s){const t=s.innerHTML,o=parseInt(t.split(":")[0],10),i=e.toString().trim().split("\n"),n=i.slice(Math.max(o-3,0),Math.min(o+2,i.length)).join("\n");throw new Error(`XML string could not be parsed: ${t}\n${n}`)}return o}function xO(e){if(e)return{style:e.style,color:{rgb:e.color}}}function EO(e,t){return RO`
1788
1788
  <Override ContentType="${t}" PartName="${e}" />
1789
- `}function IO(e){return new AT(e.join("\n"))}function RO(e,...t){let o=[e[0]];for(let s=0;s<t.length;s++){const i=t[s]instanceof AT?t[s]:yO(t[s]);o.push(i+e[s+1])}return new AT(ze(o))}function TO(e){return e.replace(/NAMESPACE.*NAMESPACE(.*)/,"$1")}function AO(e){return e.replaceAll(/([a-zA-Z0-9]+):([a-zA-Z0-9]+)/g,"NAMESPACE$1NAMESPACE$2")}class OO{value;constructor(e){this.value=e}asString(){return CA(String(this.value))}asBool(){return"true"===this.value||"false"!==this.value&&Boolean(Number(this.value))}asNum(){return Number(this.value)}}class _O{rootFile;xlsxFileStructure;warningManager;relationships;currentFile=void 0;constructor(e,t,o){this.rootFile=e,this.currentFile=e.file.fileName,this.xlsxFileStructure=t,this.warningManager=o,this.relationships={},e.rels&&this.extractRelationships(e.rels).map((e=>{this.relationships[e.id]=e}))}extractRelationships(e){return this.mapOnElements({parent:e.xml,query:"Relationship"},(e=>({id:this.extractAttr(e,"Id",{required:!0}).asString(),target:this.extractAttr(e,"Target",{required:!0}).asString(),type:this.extractAttr(e,"Type",{required:!0}).asString()})))}getListOfXMLFiles(){return Object.entries(this.xlsxFileStructure).filter((([e])=>"images"!==e)).map((([e,t])=>t)).flat().filter(Le)}mapOnElements(e,t){const o=[],s=this.currentFile;let i;if(e.children){const t=this.querySelector(e.parent,e.query)?.children;i=t||[]}else i=this.querySelectorAll(e.parent,e.query);if(i)for(let e of i)try{o.push(t(e))}catch(t){this.catchErrorOnElement(t,e)}return this.currentFile=s,o}catchErrorOnElement(e,t){const o=t?`Error when parsing an element <${t.tagName}> of file ${this.currentFile}, skip this element. \n${e.stack}`:`Error when parsing file ${this.currentFile}.`;this.warningManager.addParsingWarning([o,e.message].join("\n"))}extractAttr(e,t,o){const s=e.attributes[t];s||this.handleMissingValue(e,`attribute "${t}"`,o);const i=s?.value?s.value:o?.default;return void 0===i?void 0:new OO(i)}extractTextContent(e,t){if(void 0!==t?.default&&"string"!=typeof t.default)throw new Error("extractTextContent default value should be a string");const o="preserve"===e?.attributes["xml:space"]?.value;let s=e?.textContent;return e&&null!==s||this.handleMissingValue(e,"text content",t),s&&(s=o?s:s.trim()),s?CA(s):t?.default}extractChildAttr(e,t,o,s){let i;i="number"==typeof t?e.children[t]:this.querySelector(e,t),i||this.handleMissingValue(e,"number"==typeof t?`child at index ${t}`:`child <${t}>`,s);const n=i?this.extractAttr(i,o,s)?.asString():s?.default;return void 0!==n?new OO(n):void 0}extractChildTextContent(e,t,o){if(void 0!==o?.default&&"string"!=typeof o.default)throw new Error("extractTextContent default value should be a string");let s=this.querySelector(e,t);return s||this.handleMissingValue(e,`child <${t}>`,o),s?this.extractTextContent(s,o):o?.default}handleMissingValue(e,t,o){if(o?.required){if(!o?.default)throw new Error(`Missing required ${t} in element <${e.tagName}> of ${this.currentFile}, and no default value was set`);this.warningManager.addParsingWarning(`Missing required ${t} in element <${e.tagName}> of ${this.currentFile}, replacing it by the default value ${o.default}`)}}extractColor(e,t,o){if(!e)return o?{rgb:o}:void 0;const s=this.extractAttr(e,"theme")?.asString();let i;if(void 0!==s){if(!t||!t.clrScheme)throw new Error("Color referencing a theme but no theme was provided");i=this.getThemeColor(s,t.clrScheme)}else i=this.extractAttr(e,"rgb")?.asString(),i="FF000000"===i?void 0:i;return{rgb:i||o,auto:this.extractAttr(e,"auto")?.asBool(),indexed:this.extractAttr(e,"indexed")?.asNum(),tint:this.extractAttr(e,"tint")?.asNum()}}getTargetXmlFile(e){if(!e)throw new Error("Undefined target file");const t=this.processRelationshipTargetName(e.target),o=this.getListOfXMLFiles().find((e=>e.file.fileName.endsWith(t)));if(!o||!o.file)throw new Error("Cannot find target file");return o}getTargetImageFile(e){if(!e)throw new Error("Undefined target file");const t=this.processRelationshipTargetName(e.target),o=this.xlsxFileStructure.images.find((e=>e.fileName.endsWith(t)));if(!o)throw new Error("Cannot find target file");return o}querySelector(e,t){const o=AO(t);return e.querySelector(o)}querySelectorAll(e,t){const o=AO(t);return e.querySelectorAll(o)}getThemeColor(e,t){switch(e){case"0":return"FFFFFF";case"1":return"000000";case"2":return t[3].value;case"3":return t[2].value;default:return t[e].value}}processRelationshipTargetName(e){return e.replace(/\.+\//,"")}}class DO extends _O{getTheme(){return{clrScheme:this.mapOnElements({query:"a:clrScheme",parent:this.rootFile.file.xml,children:!0},(e=>({name:e.tagName,value:this.extractChildAttr(e,0,"val",{required:!0,default:_T}).asString(),lastClr:this.extractChildAttr(e,0,"lastClr",{default:_T}).asString()})))}}getSharedStrings(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"si"},(e=>"t"===e.children[0].tagName?this.extractTextContent(e)||"":this.mapOnElements({parent:e,query:"t"},(e=>this.extractTextContent(e)||"")).join("")))}}class FO extends _O{theme;constructor(e,t,o,s){super(e,t,o),this.theme=s}extractConditionalFormattings(){const e=this.mapOnElements({parent:this.rootFile.file.xml,query:"worksheet > conditionalFormatting"},(e=>({sqref:this.extractAttr(e,"sqref",{required:!0}).asString().split(" "),pivot:this.extractAttr(e,"pivot")?.asBool(),cfRules:this.extractCFRules(e,this.theme)})));return e.push(...this.mapOnElements({parent:this.rootFile.file.xml,query:"extLst x14:conditionalFormatting"},(e=>({sqref:this.extractChildTextContent(e,"xm:sqref",{required:!0}).split(" "),pivot:this.extractAttr(e,"xm:pivot")?.asBool(),cfRules:this.extractCFRules(e,this.theme)})))),e}extractCFRules(e,t){return this.mapOnElements({parent:e,query:"cfRule, x14:cfRule"},(e=>{const o=this.extractAttr(e,"type",{required:!0}).asString();if("dataBar"===o)throw new Error("Databars conditional formats are not supported.");return{type:o,priority:this.extractAttr(e,"priority",{required:!0}).asNum(),colorScale:this.extractCfColorScale(e,t),formula:this.extractCfFormula(e),iconSet:this.extractCfIconSet(e),dxfId:this.extractAttr(e,"dxfId")?.asNum(),stopIfTrue:this.extractAttr(e,"stopIfTrue")?.asBool(),aboveAverage:this.extractAttr(e,"aboveAverage")?.asBool(),percent:this.extractAttr(e,"percent")?.asBool(),bottom:this.extractAttr(e,"bottom")?.asBool(),operator:this.extractAttr(e,"operator")?.asString(),text:this.extractAttr(e,"text")?.asString(),timePeriod:this.extractAttr(e,"timePeriod")?.asString(),rank:this.extractAttr(e,"rank")?.asNum(),stdDev:this.extractAttr(e,"stdDev")?.asNum(),equalAverage:this.extractAttr(e,"equalAverage")?.asBool()}}))}extractCfFormula(e){return this.mapOnElements({parent:e,query:"formula"},(e=>this.extractTextContent(e,{required:!0})))}extractCfColorScale(e,t){const o=this.querySelector(e,"colorScale");if(o)return{colors:this.mapOnElements({parent:o,query:"color"},(e=>this.extractColor(e,t,"ffffff"))),cfvos:this.extractCFVos(o)}}extractCfIconSet(e){const t=this.querySelector(e,"iconSet, x14:iconSet");if(t)return{iconSet:this.extractAttr(t,"iconSet",{default:"3TrafficLights1"}).asString(),showValue:this.extractAttr(t,"showValue",{default:!0}).asBool(),percent:this.extractAttr(t,"percent",{default:!0}).asBool(),reverse:this.extractAttr(t,"reverse")?.asBool(),custom:this.extractAttr(t,"custom")?.asBool(),cfvos:this.extractCFVos(t),cfIcons:this.extractCfIcons(t)}}extractCfIcons(e){const t=this.mapOnElements({parent:e,query:"cfIcon, x14:cfIcon"},(e=>({iconSet:this.extractAttr(e,"iconSet",{required:!0}).asString(),iconId:this.extractAttr(e,"iconId",{required:!0}).asNum()})));return 0===t.length?void 0:t}extractCFVos(e){return this.mapOnElements({parent:e,query:"cfvo, x14:cfvo"},(e=>({type:this.extractAttr(e,"type",{required:!0}).asString(),gte:this.extractAttr(e,"gte",{default:!0})?.asBool(),value:e.attributes.val?this.extractAttr(e,"val")?.asString():this.extractChildTextContent(e,"f, xm:f")})))}}class MO extends _O{extractChart(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"c:chartSpace"},(e=>{const t=this.getChartType(e);if(!dA[t])throw new Error(`Unsupported chart type ${t}`);if("combo"===dA[t])return this.extractComboChart(e);const o=this.mapOnElements({parent:e,query:"c:chart > c:title a:t"},(e=>e.textContent||"")).join(""),s=this.extractChildAttr(e,"c:grouping","val",{default:"clustered"}).asString();return{title:{text:o},type:dA[t],dataSets:this.extractChartDatasets(this.querySelectorAll(e,`c:${t}`),t),labelRange:this.extractChildTextContent(e,`c:ser ${"scatterChart"===t?"c:numRef":"c:cat"} c:f`),backgroundColor:this.extractChildAttr(e,"c:chartSpace > c:spPr a:srgbClr","val",{default:"ffffff"}).asString(),legendPosition:hA[this.extractChildAttr(e,"c:legendPos","val",{default:"b"}).asString()],stacked:"stacked"===s,fontColor:"000000"}}))[0]}extractComboChart(e){const t=this.mapOnElements({parent:e,query:"c:title a:t"},(e=>e.textContent||"")).join(""),o=this.extractChildAttr(e,"c:grouping","val",{default:"clustered"}).asString();return{title:{text:t},type:"combo",dataSets:[...this.extractChartDatasets(this.querySelectorAll(e,"c:barChart"),"comboChart"),...this.extractChartDatasets(this.querySelectorAll(e,"c:lineChart"),"comboChart")],labelRange:this.extractChildTextContent(e,"c:ser c:cat c:f"),backgroundColor:this.extractChildAttr(e,"c:chartSpace > c:spPr a:srgbClr","val",{default:"ffffff"}).asString(),legendPosition:hA[this.extractChildAttr(e,"c:legendPos","val",{default:"b"}).asString()],stacked:"stacked"===o,fontColor:"000000"}}extractChartDatasets(e,t){return Array.from(e).map((e=>"scatterChart"===t?this.extractScatterChartDatasets(e):this.mapOnElements({parent:e,query:"c:ser"},(e=>{let t={};const o=this.extractChildTextContent(e,"c:tx c:f");if(o)t={reference:o};else{const o=this.extractChildTextContent(e,"c:tx c:v");o&&(t={text:o})}const s=this.extractChildAttr(e,"c:spPr a:solidFill a:srgbClr","val");return{label:t,range:this.extractChildTextContent(e,"c:val c:f",{required:!0}),backgroundColor:s?`${ht(s.asString())}`:void 0}})))).flat()}extractScatterChartDatasets(e){return this.mapOnElements({parent:e,query:"c:ser"},(e=>{let t={};const o=this.extractChildTextContent(e,"c:tx c:f");if(o)t={reference:o};else{const o=this.extractChildTextContent(e,"c:tx c:v");o&&(t={text:o})}return{label:t,range:this.extractChildTextContent(e,"c:yVal c:f",{required:!0})}}))}getChartType(e){const t=this.querySelector(e,"c:plotArea");if(!t)throw new Error("Missing plot area in the chart definition.");let o;for(let e of t.children){const t=TO(e.tagName);OT.some((e=>e===t))&&(o?o!==t&&(o="comboChart"):o=t)}if(o)return o;throw new Error("Unknown chart type")}}const PO="oneCellAnchor",NO="twoCellAnchor";class LO extends _O{extractFigures(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"xdr:wsDr",children:!0},(e=>{const t=TO(e.tagName),o=this.extractFigureAnchorsByType(e,t),s=this.querySelector(e,"c:chart"),i=this.querySelector(e,"a:blip");if(!s&&!i)throw new Error("Only chart and image figures are currently supported.");return{anchors:o,data:s?this.extractChart(s):this.extractImage(e),figureSize:t===PO?this.extractFigureSizeFromSizeTag(e,"xdr:ext"):void 0}}))}extractFigureAnchorsByType(e,t){switch(t){case PO:return[this.extractFigureAnchor("xdr:from",e)];case NO:return[this.extractFigureAnchor("xdr:from",e),this.extractFigureAnchor("xdr:to",e)];default:throw new Error(`${t} is not supported for xlsx drawings. `)}}extractFigureSizeFromSizeTag(e,t){const o=this.querySelector(e,t);if(!o)throw new Error(`Missing size element '${t}'`);return{cx:this.extractAttr(o,"cx",{required:!0}).asNum(),cy:this.extractAttr(o,"cy",{required:!0}).asNum()}}extractFigureAnchor(e,t){const o=this.querySelector(t,e);if(!o)throw new Error(`Missing anchor element ${e}`);return{col:Number(this.extractChildTextContent(o,"xdr:col",{required:!0})),colOffset:Number(this.extractChildTextContent(o,"xdr:colOff",{required:!0})),row:Number(this.extractChildTextContent(o,"xdr:row",{required:!0})),rowOffset:Number(this.extractChildTextContent(o,"xdr:rowOff",{required:!0}))}}extractChart(e){const t=this.extractAttr(e,"r:id",{required:!0}).asString(),o=this.getTargetXmlFile(this.relationships[t]),s=new MO(o,this.xlsxFileStructure,this.warningManager).extractChart();if(!s)throw new Error("Unable to extract chart definition");return s}extractImage(e){const t=this.querySelector(e,"a:blip"),o=this.extractAttr(t,"r:embed",{required:!0}).asString(),s=this.getTargetImageFile(this.relationships[o]);if(!s)throw new Error("Unable to extract image");const i=s.fileName.split(".").at(-1),n=TO(e.tagName),r=n===NO?this.querySelector(e,"a:xfrm"):e,a=n===NO?"a:ext":"xdr:ext",l=this.extractFigureSizeFromSizeTag(r,a);return{imageSrc:s.imageSrc,mimetype:i?bA[i]:void 0,size:l}}}class kO extends _O{getPivotTable(){return this.mapOnElements({query:":root",parent:this.rootFile.file.xml},(e=>({name:this.extractAttr(e,"name",{required:!0}).asString(),rowGrandTotals:this.extractAttr(e,"rowGrandTotals",{default:!0}).asBool(),location:this.extractPivotLocation(e),style:this.extractPivotStyleInfo(e)})))[0]}extractPivotLocation(e){return this.mapOnElements({query:"location",parent:e},(e=>({ref:this.extractAttr(e,"ref",{required:!0}).asString(),firstHeaderRow:this.extractAttr(e,"firstHeaderRow",{required:!0}).asNum(),firstDataRow:this.extractAttr(e,"firstDataRow",{required:!0}).asNum(),firstDataCol:this.extractAttr(e,"firstDataCol",{required:!0}).asNum()})))[0]}extractPivotStyleInfo(e){return this.mapOnElements({query:"pivotTableStyleInfo",parent:e},(e=>({name:this.extractAttr(e,"name",{required:!0}).asString(),showRowHeaders:this.extractAttr(e,"showRowHeaders",{required:!0}).asBool(),showColHeaders:this.extractAttr(e,"showColHeaders",{required:!0}).asBool(),showRowStripes:this.extractAttr(e,"showRowStripes",{required:!0}).asBool(),showColStripes:this.extractAttr(e,"showColStripes",{required:!0}).asBool(),showLastColumn:this.extractAttr(e,"showLastColumn")?.asBool()})))[0]}}class VO extends _O{getTable(){return this.mapOnElements({query:"table",parent:this.rootFile.file.xml},(e=>({displayName:this.extractAttr(e,"displayName",{required:!0}).asString(),name:this.extractAttr(e,"name")?.asString(),id:this.extractAttr(e,"id",{required:!0}).asString(),ref:this.extractAttr(e,"ref",{required:!0}).asString(),headerRowCount:this.extractAttr(e,"headerRowCount",{default:1}).asNum(),totalsRowCount:this.extractAttr(e,"totalsRowCount",{default:0}).asNum(),cols:this.extractTableCols(e),style:this.extractTableStyleInfo(e),autoFilter:this.extractTableAutoFilter(e)})))[0]}extractTableCols(e){return this.mapOnElements({query:"tableColumn",parent:e},(e=>({id:this.extractAttr(e,"id",{required:!0}).asString(),name:this.extractAttr(e,"name",{required:!0}).asString(),colFormula:this.extractChildTextContent(e,"calculatedColumnFormula")})))}extractTableStyleInfo(e){return this.mapOnElements({query:"tableStyleInfo",parent:e},(e=>({name:this.extractAttr(e,"name")?.asString(),showFirstColumn:this.extractAttr(e,"showFirstColumn")?.asBool(),showLastColumn:this.extractAttr(e,"showLastColumn")?.asBool(),showRowStripes:this.extractAttr(e,"showRowStripes")?.asBool(),showColumnStripes:this.extractAttr(e,"showColumnStripes")?.asBool()})))[0]}extractTableAutoFilter(e){return this.mapOnElements({query:"autoFilter",parent:e},(e=>({columns:this.extractFilterColumns(e),zone:this.extractAttr(e,"ref",{required:!0}).asString()})))[0]}extractFilterColumns(e){return this.mapOnElements({query:"tableColumn",parent:e},(t=>({colId:this.extractAttr(e,"colId",{required:!0}).asNum(),hiddenButton:this.extractAttr(e,"hiddenButton",{default:!1}).asBool(),filters:this.extractSimpleFilter(t)})))}extractSimpleFilter(e){return this.mapOnElements({query:"filter",parent:e},(e=>({val:this.extractAttr(e,"val",{required:!0}).asString()})))}}class UO extends _O{theme;constructor(e,t,o,s){super(e,t,o),this.theme=s}getSheet(){return this.mapOnElements({query:"worksheet",parent:this.rootFile.file.xml},(e=>{const t=this.getSheetWorkbookInfo();return{sheetName:this.extractSheetName(),sheetViews:this.extractSheetViews(e),sheetFormat:this.extractSheetFormat(e),sheetProperties:this.extractSheetProperties(e),cols:this.extractCols(e),rows:this.extractRows(e),sharedFormulas:this.extractSharedFormulas(e),merges:this.extractMerges(e),cfs:this.extractConditionalFormats(),figures:this.extractFigures(e),hyperlinks:this.extractHyperLinks(e),tables:this.extractTables(e),pivotTables:this.extractPivotTables(),isVisible:"visible"===t.state}}))[0]}extractSheetViews(e){return this.mapOnElements({parent:e,query:"sheetView"},(e=>{const t=this.querySelector(e,"pane");return{tabSelected:this.extractAttr(e,"tabSelected",{default:!1}).asBool(),showFormulas:this.extractAttr(e,"showFormulas",{default:!1}).asBool(),showGridLines:this.extractAttr(e,"showGridLines",{default:!0}).asBool(),showRowColHeaders:this.extractAttr(e,"showRowColHeaders",{default:!0}).asBool(),pane:{xSplit:t?this.extractAttr(t,"xSplit",{default:0}).asNum():0,ySplit:t?this.extractAttr(t,"ySplit",{default:0}).asNum():0}}}))}extractSheetName(){const e=SA(this.xlsxFileStructure.workbook.file.fileName,this.rootFile.file.fileName),t=this.extractRelationships(this.xlsxFileStructure.workbook.rels).find((t=>t.target===e)).id;for(let e of this.querySelectorAll(this.xlsxFileStructure.workbook.file.xml,"sheet"))if(e.attributes["r:id"].value===t)return e.attributes.name.value;throw new Error("Missing sheet name")}getSheetWorkbookInfo(){const e=SA(this.xlsxFileStructure.workbook.file.fileName,this.rootFile.file.fileName),t=this.extractRelationships(this.xlsxFileStructure.workbook.rels).find((t=>t.target===e)).id,o=this.mapOnElements({parent:this.xlsxFileStructure.workbook.file.xml,query:"sheet"},(e=>({relationshipId:this.extractAttr(e,"r:id",{required:!0}).asString(),sheetId:this.extractAttr(e,"sheetId",{required:!0}).asString(),sheetName:this.extractAttr(e,"name",{required:!0}).asString(),state:this.extractAttr(e,"state",{default:"visible"}).asString()}))).find((e=>e.relationshipId===t));if(!o)throw new Error("Cannot find corresponding workbook sheet");return o}extractConditionalFormats(){return new FO(this.rootFile,this.xlsxFileStructure,this.warningManager,this.theme).extractConditionalFormattings()}extractFigures(e){return this.mapOnElements({parent:e,query:"drawing"},(e=>{const t=this.extractAttr(e,"r:id",{required:!0})?.asString(),o=this.getTargetXmlFile(this.relationships[t]);return new LO(o,this.xlsxFileStructure,this.warningManager).extractFigures()}))[0]||[]}extractTables(e){return this.mapOnElements({query:"tablePart",parent:e},(e=>{const t=this.extractAttr(e,"r:id",{required:!0})?.asString(),o=this.getTargetXmlFile(this.relationships[t]);return new VO(o,this.xlsxFileStructure,this.warningManager).getTable()}))}extractPivotTables(){try{return Object.values(this.relationships).filter((e=>e.type.endsWith("pivotTable"))).map((e=>{const t=this.getTargetXmlFile(e);return new kO(t,this.xlsxFileStructure,this.warningManager).getPivotTable()}))}catch(e){return this.catchErrorOnElement(e),[]}}extractMerges(e){return this.mapOnElements({parent:e,query:"mergeCell"},(e=>this.extractAttr(e,"ref",{required:!0}).asString()))}extractSheetFormat(e){const t=this.querySelector(e,"sheetFormatPr");if(t)return{defaultColWidth:this.extractAttr(t,"defaultColWidth",{default:HT.toString()}).asNum(),defaultRowHeight:this.extractAttr(t,"defaultRowHeight",{default:zT.toString()}).asNum()}}extractSheetProperties(e){const t=this.querySelector(e,"sheetPr");if(t)return{outlinePr:this.extractSheetOutlineProperties(t)}}extractSheetOutlineProperties(e){const t=this.querySelector(e,"outlinePr");if(t)return{summaryBelow:this.extractAttr(t,"summaryBelow",{default:!0}).asBool(),summaryRight:this.extractAttr(t,"summaryRight",{default:!0}).asBool()}}extractCols(e){return this.mapOnElements({parent:e,query:"cols col"},(e=>({width:this.extractAttr(e,"width")?.asNum(),customWidth:this.extractAttr(e,"customWidth")?.asBool(),bestFit:this.extractAttr(e,"bestFit")?.asBool(),hidden:this.extractAttr(e,"hidden")?.asBool(),min:this.extractAttr(e,"min",{required:!0})?.asNum(),max:this.extractAttr(e,"max",{required:!0})?.asNum(),styleIndex:this.extractAttr(e,"style")?.asNum(),outlineLevel:this.extractAttr(e,"outlineLevel")?.asNum(),collapsed:this.extractAttr(e,"collapsed")?.asBool()})))}extractRows(e){return this.mapOnElements({parent:e,query:"sheetData row"},(e=>({index:this.extractAttr(e,"r",{required:!0})?.asNum(),cells:this.extractCells(e),height:this.extractAttr(e,"ht")?.asNum(),customHeight:this.extractAttr(e,"customHeight")?.asBool(),hidden:this.extractAttr(e,"hidden")?.asBool(),styleIndex:this.extractAttr(e,"s")?.asNum(),outlineLevel:this.extractAttr(e,"outlineLevel")?.asNum(),collapsed:this.extractAttr(e,"collapsed")?.asBool()})))}extractCells(e){return this.mapOnElements({parent:e,query:"c"},(e=>({xc:this.extractAttr(e,"r",{required:!0})?.asString(),styleIndex:this.extractAttr(e,"s")?.asNum(),type:oA[this.extractAttr(e,"t",{default:"n"})?.asString()],value:this.extractChildTextContent(e,"v"),formula:this.extractCellFormula(e)})))}extractCellFormula(e){const t=this.querySelector(e,"f");if(t)return{content:this.extractTextContent(t),sharedIndex:this.extractAttr(t,"si")?.asNum(),ref:this.extractAttr(t,"ref")?.asString()}}extractHyperLinks(e){return this.mapOnElements({parent:e,query:"hyperlink"},(e=>{const t=this.extractAttr(e,"r:id")?.asString();return{xc:this.extractAttr(e,"ref",{required:!0})?.asString(),location:this.extractAttr(e,"location")?.asString(),display:this.extractAttr(e,"display")?.asString(),relTarget:t?this.relationships[t].target:void 0}}))}extractSharedFormulas(e){const t=this.querySelectorAll(e,"f[si][ref]"),o={};for(let e of t){const t=this.extractAttr(e,"si",{required:!0}).asNum(),s=this.extractTextContent(e,{required:!0});o[t]=s}const s=[];for(let e=0;e<Object.keys(o).length;e++)o[e]?s.push(o[e]):(this.warningManager.addParsingWarning(`Missing shared formula ${e}, replacing it by empty formula`),s.push(""));return s}}class HO extends _O{theme;constructor(e,t,o){super(e.styles,e,t),this.theme=o}getNumFormats(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"numFmt"},(e=>this.extractNumFormats(e)))}extractNumFormats(e){return{id:this.extractAttr(e,"numFmtId",{required:!0}).asNum(),format:this.extractAttr(e,"formatCode",{required:!0,default:""}).asString()}}getFonts(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"font"},(e=>this.extractFont(e)))}extractFont(e){const t=this.extractChildAttr(e,"name","val",{default:"Arial"}).asString(),o=this.extractChildAttr(e,"sz","val",{default:j.toString()}).asNum(),s=this.extractColor(this.querySelector(e,"color"),this.theme),i=this.querySelector(e,"i")||void 0,n=i&&"0"!==i.attributes.val?.value,r=this.querySelector(e,"b")||void 0,a=r&&"0"!==r.attributes.val?.value,l=this.querySelector(e,"strike")||void 0,c=l&&"0"!==l.attributes.val?.value,h=this.querySelector(e,"u")||void 0;return{name:t,size:o,color:s,italic:n,bold:a,underline:h&&"none"!==h.attributes.val?.value,strike:c}}getFills(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"fill"},(e=>this.extractFill(e)))}extractFill(e){const t=e.children[0];return"patternFill"===t.tagName?{patternType:t.attributes.patternType?.value,bgColor:this.extractColor(this.querySelector(t,"bgColor"),this.theme),fgColor:this.extractColor(this.querySelector(t,"fgColor"),this.theme)}:{patternType:"solid",fgColor:this.extractColor(this.querySelectorAll(t,"color")[1],this.theme)}}getBorders(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"border"},(e=>this.extractBorder(e)))}extractBorder(e){const t={left:this.extractSingleBorder(e,"left",this.theme),right:this.extractSingleBorder(e,"right",this.theme),top:this.extractSingleBorder(e,"top",this.theme),bottom:this.extractSingleBorder(e,"bottom",this.theme),diagonal:this.extractSingleBorder(e,"diagonal",this.theme)};return t.diagonal&&(t.diagonalUp=this.extractAttr(e,"diagonalUp")?.asBool(),t.diagonalDown=this.extractAttr(e,"diagonalDown")?.asBool()),t}extractSingleBorder(e,t,o){const s=this.querySelector(e,t);if(s&&s.attributes.style)return{style:this.extractAttr(s,"style",{required:!0,default:"thin"}).asString(),color:this.extractColor(s.children[0],o,"000000")}}extractAlignment(e){return{horizontal:this.extractAttr(e,"horizontal",{default:"general"}).asString(),vertical:this.extractAttr(e,"vertical",{default:"bottom"}).asString(),textRotation:this.extractAttr(e,"textRotation")?.asNum(),wrapText:this.extractAttr(e,"wrapText")?.asBool(),indent:this.extractAttr(e,"indent")?.asNum(),relativeIndent:this.extractAttr(e,"relativeIndent")?.asNum(),justifyLastLine:this.extractAttr(e,"justifyLastLine")?.asBool(),shrinkToFit:this.extractAttr(e,"shrinkToFit")?.asBool(),readingOrder:this.extractAttr(e,"readingOrder")?.asNum()}}getDxfs(){return this.mapOnElements({query:"dxf",parent:this.rootFile.file.xml},(e=>{const t=this.querySelector(e,"font"),o=this.querySelector(e,"fill"),s=this.querySelector(e,"border"),i=this.querySelector(e,"numFmt"),n=this.querySelector(e,"alignment");return{font:t?this.extractFont(t):void 0,fill:o?this.extractFill(o):void 0,numFmt:i?this.extractNumFormats(i):void 0,alignment:n?this.extractAlignment(n):void 0,border:s?this.extractBorder(s):void 0}}))}getStyles(){return this.mapOnElements({query:"cellXfs xf",parent:this.rootFile.file.xml},(e=>{const t=this.querySelector(e,"alignment");return{fontId:this.extractAttr(e,"fontId",{required:!0,default:0}).asNum(),fillId:this.extractAttr(e,"fillId",{required:!0,default:0}).asNum(),borderId:this.extractAttr(e,"borderId",{required:!0,default:0}).asNum(),numFmtId:this.extractAttr(e,"numFmtId",{required:!0,default:0}).asNum(),alignment:t?this.extractAlignment(t):void 0}}))}}class zO extends _O{getExternalBook(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"externalBook"},(e=>({rId:this.extractAttr(e,"r:id",{required:!0}).asString(),sheetNames:this.mapOnElements({parent:e,query:"sheetName"},(e=>this.extractAttr(e,"val",{required:!0}).asString())),datasets:this.extractExternalSheetData(e)})))[0]}extractExternalSheetData(e){return this.mapOnElements({parent:e,query:"sheetData"},(e=>{const t=this.mapOnElements({parent:e,query:"cell"},(e=>({xc:this.extractAttr(e,"r",{required:!0}).asString(),value:this.extractChildTextContent(e,"v",{required:!0})}))),o={};for(let e of t)o[e.xc]=e.value;return{sheetId:this.extractAttr(e,"sheetId",{required:!0}).asNum(),data:o}}))}}function BO(e,t){const o=function(e,t){const o=t[ZT],s=o.querySelectorAll(`Override[ContentType="${e}"]`),i=[];for(let e of s){const t=e?.attributes.PartName.value;i.push(t.substring(1))}return i}(e,t);return function(e,t){const o=[];for(let s of e){const e=$O(s,t);o.push({file:{fileName:s,xml:t[s]},rels:e?{fileName:e,xml:t[e]}:void 0})}return o}(o,t)}function $O(e,t){if(e===ZT)return"_rels/.rels";let o="";const s=e.split("/");for(let e=0;e<s.length-1;e++)o+=s[e]+"/";return o+="_rels/",o+=s[s.length-1]+".rels",t[o]||(o=void 0),o}class WO{warningManager;xmls;images;constructor(e){this.warningManager=new YT,this.xmls={},this.images=[];for(let t of Object.keys(e))if(t.endsWith(".xml")||t.endsWith(".rels")){const o=e[t].replaceAll(/(<\/?)([a-zA-Z0-9]+):([a-zA-Z0-9]+)/g,"$1NAMESPACE$2NAMESPACE$3");this.xmls[t]=wO(new AT(o))}else t.includes("media/image")&&this.images.push({fileName:t,imageSrc:e[t].imageSrc})}convertXlsx(){const e=this.getXlsxData();return this.convertImportedData(e)}getXlsxData(){const e=this.buildXlsxFileStructure(),t=e.theme?new DO(e.theme,e,this.warningManager).getTheme():void 0,o=e.sharedStrings?new DO(e.sharedStrings,e,this.warningManager).getSharedStrings():[],s=e.sheets.sort(((e,t)=>e.file.fileName.localeCompare(t.file.fileName,void 0,{numeric:!0}))).map((o=>new UO(o,e,this.warningManager,t).getSheet())),i=e.externalLinks.map((t=>new zO(t,e,this.warningManager).getExternalBook())),n=new HO(e,this.warningManager,t);return{fonts:n.getFonts(),fills:n.getFills(),borders:n.getBorders(),dxfs:n.getDxfs(),numFmts:n.getNumFormats(),styles:n.getStyles(),sheets:s,sharedStrings:o,externalBooks:i}}buildXlsxFileStructure(){const e={sheets:BO(NT.sheet,this.xmls),workbook:BO(NT.workbook,this.xmls)[0],styles:BO(NT.styles,this.xmls)[0],sharedStrings:BO(NT.sharedStrings,this.xmls)[0],theme:BO(NT.themes,this.xmls)[0],charts:BO(NT.chart,this.xmls),figures:BO(NT.drawing,this.xmls),tables:BO(NT.table,this.xmls),pivots:BO(NT.pivot,this.xmls),externalLinks:BO(NT.externalLink,this.xmls),images:this.images};if(!e.workbook.rels)throw Error(bo("Cannot find workbook relations file"));return e}convertImportedData(e){const t={version:17,sheets:aO(e,this.warningManager),styles:TA(e,this.warningManager),formats:OA(e,this.warningManager),borders:IA(e,this.warningManager),revisionId:Q};return mO(t,e),Object.keys(e.styles).map((t=>{e.styles[t]=je(e.styles[t])})),t}}function GO(e){const t=fa(e);let o=[];return{text:"".concat(...t.map((e=>{if("REFERENCE"===e.type&&yi.test(e.value)){const t=e.value.trim();return o.includes(t)||o.push(t),`${le}${o.indexOf(t)}${le}`}return e.value}))),dependencies:o}}const qO=17,ZO="Sheet1";function jO(e,t){if(!e)return e_();console.debug("### Loading data ###");const o=performance.now();if(e["[Content_Types].xml"]){const o=new WO(e);if(e=o.convertXlsx(),t)for(let e of o.warningManager.warnings.sort())console.warn(e)}return"version"in e&&e.version<qO&&(console.debug("Migrating data from version",e.version),e=function(e){const t=performance.now();for(let t=YO.findIndex((t=>t.from===e.version));t<YO.length;t++)e=YO[t].applyMigration(e);return console.debug("Data migrated in",performance.now()-t,"ms"),e}(e)),e=function(e){return e=function(e){if(e.uniqueFigureIds)return e;const t=new Set,o=new Hn;for(const s of e.sheets||[])for(const e of s.figures||[])t.has(e.id)&&(e.id+=o.uuidv4()),t.add(e.id);return e.uniqueFigureIds=!0,e}(e),e=function(e){const t=Object.assign(e_(),e,{version:qO});t.sheets=t.sheets?t.sheets.map(((e,t)=>Object.assign(JO(`Sheet${t+1}`,`Sheet${t+1}`),e))):[],0===t.sheets.length&&t.sheets.push(JO(ZO,"Sheet1"));ar(t.settings.locale)||(t.settings.locale=Mo);return t}(e),e}(e),console.debug("Data loaded in",performance.now()-o,"ms"),console.debug("###"),e}const YO=[{description:"add the `activeSheet` field on data",from:1,to:2,applyMigration:e=>(e.sheets&&e.sheets[0]&&(e.activeSheet=e.sheets[0].name),e)},{description:"add an id field in each sheet",from:2,to:3,applyMigration(e){if(e.sheets&&e.sheets.length)for(let t of e.sheets)t.id=t.id||t.name;return e}},{description:"activeSheet is now an id, not the name of a sheet",from:3,to:4,applyMigration(e){if(e.sheets&&e.activeSheet){const t=e.sheets.find((t=>t.name===e.activeSheet));e.activeSheet=t.id}return e}},{description:"add figures object in each sheets",from:4,to:5,applyMigration(e){for(let t of e.sheets||[])t.figures=t.figures||[];return e}},{description:"normalize the content of the cell if it is a formula to avoid parsing all the formula that vary only by the cells they use",from:5,to:6,applyMigration(e){for(let t of e.sheets||[])for(let e in t.cells||[]){const o=t.cells[e];o.content&&o.content.startsWith("=")&&(o.formula=GO(o.content))}return e}},{description:"transform chart data structure",from:6,to:7,applyMigration(e){for(let t of e.sheets||[])for(let e in t.figures||[]){const{dataSets:o,...s}=t.figures[e].data,i=[];for(let e of o)if(e.labelCell){const t=zi(e.dataRange),o=e.labelCell+":"+_t(t.right,t.bottom);i.push(o)}else i.push(e.dataRange);s.dataSetsHaveTitle=Boolean(o[0].labelCell),s.dataSets=i,t.figures[e].data=s}return e}},{description:"remove single quotes in sheet names",from:7,to:8,applyMigration(e){const t=[],o=new RegExp(ae,"g");for(let s of e.sheets||[]){if(!s.name)continue;const e=s.name,i=e.replace(o,"_");let n=1,r=i;for(;t.includes(r);)r=`${i}${n}`,n++;s.name=r,t.push(r);const a=t=>{if(void 0===t)return t;let o=t.replace(e,r),s=t;for(;s!==o;)s=o,o=s.replace(e,r);return s};for(let e in s.cells){const t=s.cells[e];t.formula&&(t.formula.dependencies=t.formula.dependencies.map(a))}for(let e of s.figures||[])if("chart"===e.type){const t=e.data.dataSets.map(a),o=a(e.data.labelRange);e.data={...e.data,dataSets:t,labelRange:o}}for(let e of s.conditionalFormats||[]){e.ranges=e.ranges.map(a);for(const t of["minimum","maximum","midpoint","upperInflectionPoint","lowerInflectionPoint"])"formula"===e.rule[t]?.type&&(e.rule[t].value=a(e.rule[t].value))}}return e}},{description:"transform chart data structure with design attributes",from:8,to:9,applyMigration(e){for(const t of e.sheets||[])for(const e of t.figures||[])e.data.background=m,e.data.verticalAxisPosition="left",e.data.legendPosition="top",e.data.stacked=!1;return e}},{description:"de-normalize formula to reduce exported json size (~30%)",from:9,to:10,applyMigration(e){for(let t of e.sheets||[])for(let e in t.cells||[]){const o=t.cells[e];if(o.formula){let{text:e,dependencies:t}=o.formula;for(let[o,s]of Object.entries(t)){const t=`\\${le}${o}\\${le}`;e=e.replace(new RegExp(t,"g"),s)}o.content=e,delete o.formula}}return e}},{description:"normalize the formats of the cells",from:10,to:11,applyMigration(e){const t={};for(let o of e.sheets||[])for(let e in o.cells||[]){const s=o.cells[e];s.format&&(s.format=Ue(s.format,t))}return e.formats=t,e}},{description:"Add isVisible to sheets",from:11,to:12,applyMigration(e){for(let t of e.sheets||[])t.isVisible=!0;return e}},{description:"Fix datafilter duplication",from:12,to:12.5,applyMigration:e=>QO(e)},{description:"Change Border description structure",from:12.5,to:13,applyMigration(e){for(const t in e.borders){const o=e.borders[t];for(const e in o)Array.isArray(o[e])&&(o[e]={style:o[e][0],color:o[e][1]})}return e}},{description:"Add locale to spreadsheet settings",from:13,to:14,applyMigration:e=>(e.settings||(e.settings={}),e.settings.locale||(e.settings.locale=Mo),e)},{description:"Fix datafilter duplication (post saas-17.1)",from:14,to:14.5,applyMigration:e=>QO(e)},{description:"Rename filterTable to tables",from:14.5,to:15,applyMigration(e){for(const t of e.sheets||[])t.tables=t.tables||t.filterTables||[],delete t.filterTables;return e}},{description:"Add pivots",from:15,to:16,applyMigration:e=>(e.pivots||(e.pivots={}),e.pivotNextId||(e.pivotNextId=qr(e.pivots)+1),e)},{description:"transform chart data structure (2)",from:16,to:17,applyMigration(e){for(const t of e.sheets||[])for(const e in t.figures||[]){const o=t.figures[e];"title"in o.data&&"string"==typeof o.data.title&&(o.data.title={text:o.data.title});const s=o.data.type;if(!["line","bar","pie","scatter","waterfall","combo"].includes(s))continue;const{dataSets:i,...n}=t.figures[e].data,r=i.map((e=>({dataRange:e})));n.dataSets=r,t.figures[e].data=n}return e}}];function XO(e,t){return t=function(e,t){if(0!==Object.keys(e).length)return t;const o=[],s=[],i=e=>{if("CREATE_SHEET"===e.type)o.push(e.sheetId);else if("sheetId"in e&&!o.includes(e.sheetId))return{...e,sheetId:ZO};return e};for(const e of t)"REMOTE_REVISION"===e.type?s.push({...e,commands:e.commands.map(i)}):s.push(e);return s}(e,t),t=KO(t,"SORT_CELLS"),t=function(e,t){const o=[],s={};for(const t of e.sheets||[])t.figures?.forEach((e=>{"chart"===e.tag&&(s[e.id]=e.data)}));for(const e of t)if("REMOTE_REVISION"===e.type){const t=[];for(const o of e.commands){let e=o;switch(o.type){case"CREATE_CHART":s[o.id]=o.definition;break;case"UPDATE_CHART":if(!s[o.id]){console.log(`Fix chart definition: chart with id ${o.id} not found.`);continue}const t={...s[o.id],...o.definition};e={...o,definition:t},s[o.id]=t}t.push(e)}o.push({...e,commands:t})}else o.push(e);return o}(e,t=KO(t,"SET_DECIMAL")),t}function KO(e,t){const o=[];for(const s of e)"REMOTE_REVISION"===s.type?o.push({...s,commands:s.commands.filter((e=>e.type!==t))}):o.push(s);return o}function QO(e){for(let t of e.sheets||[]){let e=[];for(let o of t.filterTables||[]){const t=zi(o.range),s=e.findIndex((e=>Qi(e,t)));-1!==s?e[s]=t:e.push(t)}t.filterTables=e.map((e=>({range:Wi(e)})))}return e}function JO(e,t){return{id:e,name:t,colNumber:26,rowNumber:100,cells:{},cols:{},rows:{},merges:[],conditionalFormats:[],figures:[],tables:[],isVisible:!0}}function e_(e="Sheet1"){return{version:qO,sheets:[JO(ZO,e)],styles:{},formats:{},borders:{},revisionId:Q,uniqueFigureIds:!0,settings:{locale:Mo},pivots:{},pivotNextId:1,customTableStyles:{}}}function t_(e,t){return{...JO(e,t),charts:[],images:[]}}class o_{static getters=[];history;dispatch;canDispatch;constructor(e,t,o){this.history=Object.assign(Object.create(e),{update:e.addChange.bind(e,this),selectCell:()=>{}}),this.dispatch=t,this.canDispatch=o}exportForExcel(e){}allowDispatch(e){return"Success"}beforeHandle(e){}handle(e){}finalize(){}batchValidations(...e){return t=>e.map((e=>e.call(this,t))).flat()}chainValidations(...e){return t=>{for(const o of e){let e=o.call(this,t);Array.isArray(e)||(e=[e]);const s=e.filter((e=>"Success"!==e));if(s.length)return s}return"Success"}}checkValidations(e,...t){return this.batchValidations(...t)(e)}}class s_ extends o_{getters;uuidGenerator;constructor({getters:e,stateObserver:t,range:o,dispatch:s,canDispatch:i,uuidGenerator:n}){super(t,s,i),o.addRangeProvider(this.adaptRanges.bind(this)),this.getters=e,this.uuidGenerator=n}import(e){}export(e){}adaptRanges(e,t){}garbageCollectExternalResources(){}}class i_{id;format;style;sheetId;getRangeString;isFormula=!0;compiledFormula;constructor(e,t,o,s,i,n,r){this.id=e,this.format=o,this.style=s,this.sheetId=n,this.getRangeString=r;let a=0;const l=t.tokens.map((e=>{if("REFERENCE"===e.type){const e=a++;return new n_(i,e,this.sheetId,this.getRangeString)}return e}));this.compiledFormula={...t,dependencies:i,tokens:l}}get content(){return ze(this.compiledFormula.tokens.map((e=>e.value)))}get contentWithFixedReferences(){let e=0;return ze(this.compiledFormula.tokens.map((t=>{if("REFERENCE"===t.type){const t=e++;return this.getRangeString(this.compiledFormula.dependencies[t],this.sheetId,{useFixedReference:!0})}return t.value})))}}class n_{ranges;rangeIndex;sheetId;getRangeString;type="REFERENCE";constructor(e,t,o,s){this.ranges=e,this.rangeIndex=t,this.sheetId=o,this.getRangeString=s}get value(){const e=this.ranges[this.rangeIndex];return this.getRangeString(e,this.sheetId)}}function r_(e){return""===e?NaN:Number(e)}function a_(e){return Object.entries(e).map((([e,t])=>t?l_(parseInt(e,10),t):void 0)).filter(Le).map((e=>_t(e.left,e.top)+":"+_t(e.right,e.bottom)))}function l_(e,t){return{...t.zone,id:e}}class c_{getters;providers=[];constructor(e){this.getters=e}static getters=["extendRange","getRangeString","getRangeFromSheetXC","createAdaptedRanges","getRangeDataFromXc","getRangeDataFromZone","getRangeFromRangeData","getRangeFromZone","getRangesUnion","recomputeRanges","isRangeValid","removeRangesSheetPrefix"];allowDispatch(e){return"MOVE_RANGES"===e.type?1===e.target.length?"Success":"InvalidZones":"Success"}beforeHandle(e){}handle(e){switch(e.type){case"REMOVE_COLUMNS_ROWS":{let t="COL"===e.dimension?"left":"top",o="COL"===e.dimension?"right":"bottom",s="COL"===e.dimension?"columns":"rows";const i=[...e.elements];i.sort(((e,t)=>t-e));const n=xe(i);this.executeOnAllRanges((i=>{if(i.sheetId!==e.sheetId)return{changeType:"NONE"};let r=i,a="NONE";for(let e of n){const n=nt(e),l=it(e);if(i.zone[t]<=n&&n<=i.zone[o]){const e=Math.min(i.zone[o],l)-n+1;a="RESIZE",r=this.createAdaptedRange(r,s,a,-e)}else if(i.zone[t]>=n&&i.zone[o]<=l)a="REMOVE",r=i.clone({...this.getInvalidRange()});else if(i.zone[t]<=l&&i.zone[o]>=l){const e=l-i.zone[t]+1;a="RESIZE",r=this.createAdaptedRange(r,s,a,-e),r=this.createAdaptedRange(r,s,"MOVE",-(i.zone[t]-n))}else n<i.zone[t]&&(a="MOVE",r=this.createAdaptedRange(r,s,a,-(l-n+1)))}return"NONE"!==a?{changeType:a,range:r}:{changeType:"NONE"}}),e.sheetId);break}case"ADD_COLUMNS_ROWS":{let t="COL"===e.dimension?"left":"top",o="COL"===e.dimension?"right":"bottom",s="COL"===e.dimension?"columns":"rows";this.executeOnAllRanges((i=>{if(i.sheetId!==e.sheetId)return{changeType:"NONE"};if("after"===e.position){if(i.zone[t]<=e.base&&e.base<i.zone[o])return{changeType:"RESIZE",range:this.createAdaptedRange(i,s,"RESIZE",e.quantity)};if(e.base<i.zone[t])return{changeType:"MOVE",range:this.createAdaptedRange(i,s,"MOVE",e.quantity)}}else{if(i.zone[t]<e.base&&e.base<=i.zone[o])return{changeType:"RESIZE",range:this.createAdaptedRange(i,s,"RESIZE",e.quantity)};if(e.base<=i.zone[t])return{changeType:"MOVE",range:this.createAdaptedRange(i,s,"MOVE",e.quantity)}}return{changeType:"NONE"}}),e.sheetId);break}case"DELETE_SHEET":this.executeOnAllRanges((t=>{if(t.sheetId!==e.sheetId)return{changeType:"NONE"};const o=this.getters.getSheetName(e.sheetId);return{changeType:"REMOVE",range:t=t.clone({...this.getInvalidRange(),invalidSheetName:o})}}),e.sheetId);break;case"RENAME_SHEET":this.executeOnAllRanges((t=>{if(t.sheetId===e.sheetId)return{changeType:"CHANGE",range:t};if(e.name&&t.invalidSheetName===e.name){const o=void 0,s=e.sheetId;return{changeType:"CHANGE",range:t.clone({sheetId:s,invalidSheetName:o})}}return{changeType:"NONE"}}));break;case"MOVE_RANGES":{const t=e.target[0];this.executeOnAllRanges((o=>{if(o.sheetId!==e.sheetId||!en(o.zone,t))return{changeType:"NONE"};const s=e.targetSheetId,i=e.col-t.left,n=e.row-t.top,r=this.createAdaptedRange(o,"both","MOVE",[i,n]),a=e.sheetId!==s||r.prefixSheet;return{changeType:"MOVE",range:r.clone({sheetId:s,prefixSheet:a})}}));break}}}finalize(){}verifyRangeRemoved(e){return t=>{const o=e(t);return"NONE"===o.changeType||Bi(o.range.zone)?o:{range:o.range,changeType:"REMOVE"}}}createAdaptedRange(e,t,o,s){const i=rn(e.unboundedZone,t,o,s);return e.clone({zone:i})}executeOnAllRanges(e,t){const o=this.verifyRangeRemoved(e);for(const e of this.providers)e(o,t)}addRangeProvider(e){this.providers.push(e)}createAdaptedRanges(e,t,o,s){const i=e.map((e=>pn.fromRange(e,this.getters)));return i.map((e=>{if(!Bi(e.zone))return e;const i=e.prefixSheet?e.sheetId:s,n={...e.unboundedZone,left:e.isFullRow&&!e.unboundedZone.hasHeader?e.unboundedZone.left:e.unboundedZone.left+(e.parts[0].colFixed?0:t),right:e.isFullRow?e.unboundedZone.right:e.unboundedZone.right+((e.parts[1]||e.parts[0]).colFixed?0:t),top:e.isFullCol&&!e.unboundedZone.hasHeader?e.unboundedZone.top:e.unboundedZone.top+(e.parts[0].rowFixed?0:o),bottom:e.isFullCol?e.unboundedZone.bottom:e.unboundedZone.bottom+((e.parts[1]||e.parts[0]).rowFixed?0:o)};return e.clone({sheetId:i,zone:n}).orderZone()}))}removeRangesSheetPrefix(e,t){return t.map((t=>{const o=pn.fromRange(t,this.getters);return o.prefixSheet&&o.sheetId===e?o.clone({prefixSheet:!1}):o}))}extendRange(e,t,o){const s=pn.fromRange(e,this.getters),i="COL"===t?s.zone.right+o:s.zone.right,n="ROW"===t?s.zone.bottom+o:s.zone.bottom,r={left:s.zone.left,top:s.zone.top,right:s.isFullRow?void 0:i,bottom:s.isFullCol?void 0:n};return new pn({...s,zone:r},this.getters.getSheetSize).orderZone()}getRangeFromSheetXC(e,t){if(!Ri.test(t)||!this.getters.tryGetSheet(e))return new pn({sheetId:"",zone:{left:-1,top:-1,right:-1,bottom:-1},parts:[],invalidXc:t,prefixSheet:!1},this.getters.getSheetSize);let o,s=t,i=!1;t.includes("!")&&(({xc:s,sheetName:o}=Fi(t)),o&&(i=!0));const n=Hi(s),r=pn.getRangeParts(s,n),a=o&&!this.getters.getSheetIdByName(o)?o:void 0,l=this.getters.getSheetIdByName(o)||e;return new pn({prefixSheet:i,zone:n,sheetId:l,invalidSheetName:a,parts:r},this.getters.getSheetSize).orderZone()}getRangeString(e,t,o={useFixedReference:!1}){if(!e)return Uo.InvalidReference;if(e.invalidXc)return e.invalidXc;if(!this.getters.tryGetSheet(e.sheetId))return Uo.InvalidReference;if(e.zone.bottom-e.zone.top<0||e.zone.right-e.zone.left<0)return Uo.InvalidReference;if(e.zone.left<0||e.zone.top<0)return Uo.InvalidReference;const s=pn.fromRange(e,this.getters);let i=s.sheetId!==t||s.invalidSheetName||s.prefixSheet,n="";if(i&&(n=s.invalidSheetName?s.invalidSheetName:ye(this.getters.getSheetName(s.sheetId))),i&&!n)return Uo.InvalidReference;let r=this.getRangePartString(s,0,o);return s.parts&&2===s.parts.length&&(s.zone.top!==s.zone.bottom||s.zone.left!==s.zone.right||s.parts[0].rowFixed||s.parts[0].colFixed||s.parts[1].rowFixed||s.parts[1].colFixed)&&(r+=":",r+=this.getRangePartString(s,1,o)),`${i?n+"!":""}${r}`}getRangeDataFromXc(e,t){return this.getters.getRangeFromSheetXC(e,t).rangeData}getRangeDataFromZone(e,t){return{_sheetId:e,_zone:t=this.getters.getUnboundedZone(e,t)}}getRangeFromZone(e,t){return new pn({sheetId:e,zone:t,parts:[{colFixed:!1,rowFixed:!1},{colFixed:!1,rowFixed:!1}],prefixSheet:!1},this.getters.getSheetSize)}recomputeRanges(e,t){const o=e.map((e=>pn.fromRange(e,this.getters).unboundedZone)),s=t.map((e=>pn.fromRange(e,this.getters).unboundedZone));return Pi(o,s).map((t=>this.getRangeFromZone(e[0].sheetId,t)))}getRangeFromRangeData(e){const t={prefixSheet:!1,zone:e._zone,sheetId:e._sheetId,invalidSheetName:void 0,parts:[{colFixed:!1,rowFixed:!1},{colFixed:!1,rowFixed:!1}]};return new pn(t,this.getters.getSheetSize)}isRangeValid(e){if(!e)return!1;const{xc:t,sheetName:o}=Fi(e);return null!==t.match(Ri)&&(!o||void 0!==this.getters.getSheetIdByName(o))}getRangesUnion(e){const t=e.map((e=>pn.fromRange(e,this.getters).unboundedZone)),o=function(...e){return{top:Math.min(...e.map((e=>e.top))),left:Math.min(...e.map((e=>e.left))),bottom:e.some((e=>void 0===e.bottom))?void 0:Math.max(...e.map((e=>e.bottom))),right:e.some((e=>void 0===e.right))?void 0:Math.max(...e.map((e=>e.right)))}}(...t);return this.getRangeFromZone(e[0].sheetId,o)}getRangePartString(e,t,o={useFixedReference:!1}){const s=e.parts&&e.parts[t]?.colFixed?"$":"",i=Rt(0===t?e.zone.left:e.zone.right),n=e.parts&&e.parts[t]?.rowFixed?"$":"",r=String(0===t?e.zone.top+1:e.zone.bottom+1);let a="";return a=e.isFullCol&&!o.useFixedReference?0===t&&e.unboundedZone.hasHeader?s+i+n+r:s+i:e.isFullRow&&!o.useFixedReference?0===t&&e.unboundedZone.hasHeader?s+i+n+r:n+r:s+i+n+r,a}getInvalidRange(){return{parts:[],prefixSheet:!1,zone:{left:-1,top:-1,right:-1,bottom:-1},sheetId:"",invalidXc:Uo.InvalidReference}}}function h_(e,t){if(!e)return;const o=t(e);switch(o.changeType){case"NONE":return e;case"REMOVE":return;default:return o.range}}class d_ extends o_{static layers=[];getters;ui;selection;constructor({getters:e,stateObserver:t,dispatch:o,canDispatch:s,uiActions:i,selection:n}){super(t,o,s),this.getters=e,this.ui=i,this.selection=n}drawLayer(e,t){}}const u_=new n;u_.add("pivots",(e=>{for(const t of e.getPivotIds()){const o=e.getPivot(t);sR.get(o.type).onIterationEndEvaluation(o)}}));const g_=yb.mapping;function p_(e,t,o){return new m_(e,t,o).getParameters()}class m_{getters;computeCell;evalContext;rangeCache={};constructor(e,t,o){this.getters=t,this.computeCell=o,this.evalContext=Object.assign(Object.create(g_),e,{getters:this.getters,locale:this.getters.getLocale()})}getParameters(){return{referenceDenormalizer:this.refFn.bind(this),ensureRange:this.range.bind(this),evalContext:this.evalContext}}refFn(e,t){const o=this.getRangeError(e);if(o)return o;if(t){return{value:Mi(this.getters.getSheetName(e.sheetId),Wi(e.zone))}}const s={sheetId:e.sheetId,col:e.zone.left,row:e.zone.top};return this.computeCell(s)}range(e){const t=this.getRangeError(e);if(t)return[[t]];const o=e.sheetId,s=e.zone,i=Xi(s,this.getters.getSheetZone(o));if(!i)return[[]];const{top:n,left:r,bottom:a,right:l}=s,c=`${o}-${n}-${r}-${a}-${l}`;if(c in this.rangeCache)return this.rangeCache[c];const h=i.bottom-i.top+1,d=i.right-i.left+1,u=new Array(d);for(let e=i.left;e<=i.right;e++){const t=e-i.left;u[t]=new Array(h);for(let s=i.top;s<=i.bottom;s++){const n=s-i.top;u[t][n]=this.computeCell({sheetId:o,col:e,row:s})}}return this.rangeCache[c]=u,u}getRangeError(e){return Bi(e.zone)?e.invalidSheetName?new zo(bo("Invalid sheet name: %s",e.invalidSheetName)):void 0:new $o}}class f_{map={};set({sheetId:e,col:t,row:o},s){const i=this.map;i[e]||(i[e]={}),i[e][t]||(i[e][t]={}),i[e][t][o]=s}get({sheetId:e,col:t,row:o}){return this.map[e]?.[t]?.[o]}getSheet(e){return this.map[e]}has({sheetId:e,col:t,row:o}){return void 0!==this.map[e]?.[t]?.[o]}delete({sheetId:e,col:t,row:o}){delete this.map[e]?.[t]?.[o]}keys(){const e=this.map,t=[];for(const o in e)for(const s in e[o])for(const i in e[o][s])t.push({sheetId:o,col:parseInt(s),row:parseInt(i)});return t}keysForSheet(e){const t=this.map[e];if(!t)return[];const o=[];for(const s in t)for(const i in t[s])o.push({sheetId:e,col:parseInt(s),row:parseInt(i)});return o}}function b_(e,t,o,s,i){v_(e,t,o||0,s||e.length-1,i||y_)}function v_(e,t,o,s,i){for(;s>o;){if(s-o>600){var n=s-o+1,r=t-o+1,a=Math.log(n),l=.5*Math.exp(2*a/3),c=.5*Math.sqrt(a*l*(n-l)/n)*(r-n/2<0?-1:1);v_(e,t,Math.max(o,Math.floor(t-r*l/n+c)),Math.min(s,Math.floor(t+(n-r)*l/n+c)),i)}var h=e[t],d=o,u=s;for(S_(e,o,t),i(e[s],h)>0&&S_(e,o,s);d<u;){for(S_(e,d,u),d++,u--;i(e[d],h)<0;)d++;for(;i(e[u],h)>0;)u--}0===i(e[o],h)?S_(e,o,u):S_(e,++u,s),u<=t&&(o=u+1),t<=u&&(s=u-1)}}function S_(e,t,o){var s=e[t];e[t]=e[o],e[o]=s}function y_(e,t){return e<t?-1:e>t?1:0}class C_{constructor(e=9){this._maxEntries=Math.max(4,e),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()}all(){return this._all(this.data,[])}search(e){let t=this.data;const o=[];if(!F_(e,t))return o;const s=this.toBBox,i=[];for(;t;){for(let n=0;n<t.children.length;n++){const r=t.children[n],a=t.leaf?s(r):r;F_(e,a)&&(t.leaf?o.push(r):D_(e,a)?this._all(r,o):i.push(r))}t=i.pop()}return o}collides(e){let t=this.data;if(!F_(e,t))return!1;const o=[];for(;t;){for(let s=0;s<t.children.length;s++){const i=t.children[s],n=t.leaf?this.toBBox(i):i;if(F_(e,n)){if(t.leaf||D_(e,n))return!0;o.push(i)}}t=o.pop()}return!1}load(e){if(!e||!e.length)return this;if(e.length<this._minEntries){for(let t=0;t<e.length;t++)this.insert(e[t]);return this}let t=this._build(e.slice(),0,e.length-1,0);if(this.data.children.length)if(this.data.height===t.height)this._splitRoot(this.data,t);else{if(this.data.height<t.height){const e=this.data;this.data=t,t=e}this._insert(t,this.data.height-t.height-1,!0)}else this.data=t;return this}insert(e){return e&&this._insert(e,this.data.height-1),this}clear(){return this.data=M_([]),this}remove(e,t){if(!e)return this;let o=this.data;const s=this.toBBox(e),i=[],n=[];let r,a,l;for(;o||i.length;){if(o||(o=i.pop(),a=i[i.length-1],r=n.pop(),l=!0),o.leaf){const s=w_(e,o.children,t);if(-1!==s)return o.children.splice(s,1),i.push(o),this._condense(i),this}l||o.leaf||!D_(o,s)?a?(r++,o=a.children[r],l=!1):o=null:(i.push(o),n.push(r),r=0,a=o,o=o.children[0])}return this}toBBox(e){return e}compareMinX(e,t){return e.minX-t.minX}compareMinY(e,t){return e.minY-t.minY}toJSON(){return this.data}fromJSON(e){return this.data=e,this}_all(e,t){const o=[];for(;e;)e.leaf?t.push(...e.children):o.push(...e.children),e=o.pop();return t}_build(e,t,o,s){const i=o-t+1;let n,r=this._maxEntries;if(i<=r)return n=M_(e.slice(t,o+1)),x_(n,this.toBBox),n;s||(s=Math.ceil(Math.log(i)/Math.log(r)),r=Math.ceil(i/Math.pow(r,s-1))),n=M_([]),n.leaf=!1,n.height=s;const a=Math.ceil(i/r),l=a*Math.ceil(Math.sqrt(r));P_(e,t,o,l,this.compareMinX);for(let i=t;i<=o;i+=l){const t=Math.min(i+l-1,o);P_(e,i,t,a,this.compareMinY);for(let o=i;o<=t;o+=a){const i=Math.min(o+a-1,t);n.children.push(this._build(e,o,i,s-1))}}return x_(n,this.toBBox),n}_chooseSubtree(e,t,o,s){for(;s.push(t),!t.leaf&&s.length-1!==o;){let o,s=1/0,r=1/0;for(let a=0;a<t.children.length;a++){const l=t.children[a],c=A_(l),h=(i=e,n=l,(Math.max(n.maxX,i.maxX)-Math.min(n.minX,i.minX))*(Math.max(n.maxY,i.maxY)-Math.min(n.minY,i.minY))-c);h<r?(r=h,s=c<s?c:s,o=l):h===r&&c<s&&(s=c,o=l)}t=o||t.children[0]}var i,n;return t}_insert(e,t,o){const s=o?e:this.toBBox(e),i=[],n=this._chooseSubtree(s,this.data,t,i);for(n.children.push(e),I_(n,s);t>=0&&i[t].children.length>this._maxEntries;)this._split(i,t),t--;this._adjustParentBBoxes(s,i,t)}_split(e,t){const o=e[t],s=o.children.length,i=this._minEntries;this._chooseSplitAxis(o,i,s);const n=this._chooseSplitIndex(o,i,s),r=M_(o.children.splice(n,o.children.length-n));r.height=o.height,r.leaf=o.leaf,x_(o,this.toBBox),x_(r,this.toBBox),t?e[t-1].children.push(r):this._splitRoot(o,r)}_splitRoot(e,t){this.data=M_([e,t]),this.data.height=e.height+1,this.data.leaf=!1,x_(this.data,this.toBBox)}_chooseSplitIndex(e,t,o){let s,i=1/0,n=1/0;for(let r=t;r<=o-t;r++){const t=E_(e,0,r,this.toBBox),a=E_(e,r,o,this.toBBox),l=__(t,a),c=A_(t)+A_(a);l<i?(i=l,s=r,n=c<n?c:n):l===i&&c<n&&(n=c,s=r)}return s||o-t}_chooseSplitAxis(e,t,o){const s=e.leaf?this.compareMinX:R_,i=e.leaf?this.compareMinY:T_;this._allDistMargin(e,t,o,s)<this._allDistMargin(e,t,o,i)&&e.children.sort(s)}_allDistMargin(e,t,o,s){e.children.sort(s);const i=this.toBBox,n=E_(e,0,t,i),r=E_(e,o-t,o,i);let a=O_(n)+O_(r);for(let s=t;s<o-t;s++){const t=e.children[s];I_(n,e.leaf?i(t):t),a+=O_(n)}for(let s=o-t-1;s>=t;s--){const t=e.children[s];I_(r,e.leaf?i(t):t),a+=O_(r)}return a}_adjustParentBBoxes(e,t,o){for(let s=o;s>=0;s--)I_(t[s],e)}_condense(e){for(let t,o=e.length-1;o>=0;o--)0===e[o].children.length?o>0?(t=e[o-1].children,t.splice(t.indexOf(e[o]),1)):this.clear():x_(e[o],this.toBBox)}}function w_(e,t,o){if(!o)return t.indexOf(e);for(let s=0;s<t.length;s++)if(o(e,t[s]))return s;return-1}function x_(e,t){E_(e,0,e.children.length,t,e)}function E_(e,t,o,s,i){i||(i=M_(null)),i.minX=1/0,i.minY=1/0,i.maxX=-1/0,i.maxY=-1/0;for(let n=t;n<o;n++){const t=e.children[n];I_(i,e.leaf?s(t):t)}return i}function I_(e,t){return e.minX=Math.min(e.minX,t.minX),e.minY=Math.min(e.minY,t.minY),e.maxX=Math.max(e.maxX,t.maxX),e.maxY=Math.max(e.maxY,t.maxY),e}function R_(e,t){return e.minX-t.minX}function T_(e,t){return e.minY-t.minY}function A_(e){return(e.maxX-e.minX)*(e.maxY-e.minY)}function O_(e){return e.maxX-e.minX+(e.maxY-e.minY)}function __(e,t){const o=Math.max(e.minX,t.minX),s=Math.max(e.minY,t.minY),i=Math.min(e.maxX,t.maxX),n=Math.min(e.maxY,t.maxY);return Math.max(0,i-o)*Math.max(0,n-s)}function D_(e,t){return e.minX<=t.minX&&e.minY<=t.minY&&t.maxX<=e.maxX&&t.maxY<=e.maxY}function F_(e,t){return t.minX<=e.maxX&&t.minY<=e.maxY&&t.maxX>=e.minX&&t.maxY>=e.minY}function M_(e){return{children:e,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function P_(e,t,o,s,i){const n=[t,o];for(;n.length;){if((o=n.pop())-(t=n.pop())<=s)continue;const r=t+Math.ceil((o-t)/s/2)*s;b_(e,r,t,o,i),n.push(t,r,r,o)}}class N_{rTrees={};constructor(e=[]){const t={};for(const o of e){const e=o.boundingBox.sheetId;t[e]||(t[e]=[]),t[e].push(o)}for(const e in t)this.rTrees[e]=new L_,this.rTrees[e].load(t[e])}insert(e){const t=e.boundingBox.sheetId;this.rTrees[t]||(this.rTrees[t]=new L_),this.rTrees[t].insert(e)}search({zone:e,sheetId:t}){return this.rTrees[t]?this.rTrees[t].search({minX:e.left,minY:e.top,maxX:e.right,maxY:e.bottom}):[]}remove(e){const t=e.boundingBox.sheetId;this.rTrees[t]&&this.rTrees[t].remove(e,this.rtreeItemComparer)}rtreeItemComparer(e,t){return e.data==t.data&&e.boundingBox.sheetId===t.boundingBox.sheetId&&e.boundingBox?.zone.left===t.boundingBox.zone.left&&e.boundingBox?.zone.top===t.boundingBox.zone.top&&e.boundingBox?.zone.right===t.boundingBox.zone.right&&e.boundingBox?.zone.bottom===t.boundingBox.zone.bottom}}class L_ extends C_{toBBox({boundingBox:e}){const t=e.zone;return{minX:t.left,minY:t.top,maxX:t.right,maxY:t.bottom}}compareMinX(e,t){return e.boundingBox.zone.left-t.boundingBox.zone.left}compareMinY(e,t){return e.boundingBox.zone.top-t.boundingBox.zone.top}}class k_{createEmptyPositionSet;dependencies=new f_;rTree;constructor(e,t=[]){this.createEmptyPositionSet=e,this.rTree=new N_(t)}removeAllDependencies(e){const t=this.dependencies.get(e);if(t){for(const e of t)this.rTree.remove(e);this.dependencies.delete(e)}}addDependencies(e,t){const o=t.map((({sheetId:t,zone:o})=>({data:e,boundingBox:{zone:o,sheetId:t}})));for(const e of o)this.rTree.insert(e);const s=this.dependencies.get(e);s?s.push(...o):this.dependencies.set(e,o)}getCellsDependingOn(e){const t=this.createEmptyPositionSet(),o=Array.from(e).reverse();for(;o.length>0;){const e=o.pop(),s=e.zone,i=e.sheetId;for(let e=s.left;e<=s.right;e++)for(let o=s.top;o<=s.bottom;o++)t.add({sheetId:i,col:e,row:o});const n=this.rTree.search(e).map((e=>e.data)),r={};for(const e of n)t.has(e)||(r[e.sheetId]||(r[e.sheetId]=[]),r[e.sheetId].push(ln(e)));for(const e in r){const t=Pi(r[e],[]);o.push(...t.map((t=>({sheetId:e,zone:t}))))}}for(const o of e){const e=o.zone,s=o.sheetId;for(let o=e.left;o<=e.right;o++)for(let i=e.top;i<=e.bottom;i++)t.delete({sheetId:s,col:o,row:i})}return t}}class V_ extends Uint32Array{columnOffset=0;cols=0;rows=0;static create(e,t){const o=function(e){if(0===e)return-1/0;if(e<0)return NaN;return 32-Math.clz32(--e)}(t),s=new this((e<<o>>5)+1);return s.columnOffset=o,s.cols=t,s.rows=e,s}getValue(e){const[t,o]=this.getCoordinates(e);return this[t]>>o&1}setValue(e,t){const[o,s]=this.getCoordinates(e),i=0===(this[o]>>s&1)&&1===t;return this[o]=this[o]&~(1<<s)|t<<s,i}isEmpty(){return!this.some((e=>0!==e))}fillAllPositions(){this.fill(-1>>>0)}clear(){this.fill(0)}getCoordinates(e){const{row:t,col:o}=e,s=(t<<this.columnOffset)+o,i=s>>5;return[i,s-(i<<5)]}}class U_{sheets={};insertions=[];maxSize=0;constructor(e){for(const t in e){const o=e[t].cols,s=e[t].rows;this.maxSize+=o*s,this.sheets[t]=V_.create(s,o)}}add(e){this.sheets[e.sheetId].setValue(e,1)&&this.insertions.push(e)}addMany(e){for(const t of e)this.add(t)}delete(e){this.sheets[e.sheetId].setValue(e,0)}deleteMany(e){for(const t of e)this.delete(t)}has(e){return 1===this.sheets[e.sheetId].getValue(e)}clear(){const e=[...this];this.insertions=[];for(const e in this.sheets)this.sheets[e].clear();return e}isEmpty(){if(0===this.insertions.length)return!0;for(const e in this.sheets)if(!this.sheets[e].isEmpty())return!1;return!0}fillAllPositions(){this.insertions=new Array(this.maxSize);let e=0;for(const t in this.sheets){const o=this.sheets[t];o.fillAllPositions();for(let s=0;s<o.rows;s++)for(let i=0;i<o.cols;i++)this.insertions[e++]={sheetId:t,row:s,col:i}}}*[Symbol.iterator](){for(const e of this.insertions)1===this.sheets[e.sheetId].getValue(e)&&(yield e)}}class H_{resultsToArrayFormulas=new f_;arrayFormulasToResults=new f_;getFormulaPositionsSpreadingOn(e){return this.resultsToArrayFormulas.get(e)||z_}getArrayResultPositions(e){return this.arrayFormulasToResults.get(e)||z_}removeNode(e){this.resultsToArrayFormulas.delete(e),this.arrayFormulasToResults.delete(e)}addRelation({arrayFormulaPosition:e,resultPosition:t}){this.resultsToArrayFormulas.has(t)||this.resultsToArrayFormulas.set(t,[]),this.resultsToArrayFormulas.get(t)?.push(e),this.arrayFormulasToResults.has(e)||this.arrayFormulasToResults.set(e,[]),this.arrayFormulasToResults.get(e)?.push(t)}hasArrayFormulaResult(e){return this.resultsToArrayFormulas.has(e)}isArrayFormula(e){return this.arrayFormulasToResults.has(e)}}const z_=[],B_=qa(new class extends zo{constructor(e=bo("Circular reference")){super(e,Uo.CircularDependency)}}),$_=qa({value:null});class W_{context;getters;compilationParams;evaluatedCells=new f_;formulaDependencies=Be(new k_(this.createEmptyPositionSet.bind(this)));blockedArrayFormulas=new U_({});spreadingRelations=new H_;constructor(e,t){this.context=e,this.getters=t,this.compilationParams=p_(this.context,this.getters,this.computeAndSave.bind(this))}getEvaluatedCell(e){return this.evaluatedCells.get(e)||$_}getSpreadZone(e,t={ignoreSpillError:!1}){if(!this.spreadingRelations.isArrayFormula(e))return;const o=this.evaluatedCells.get(e);if(o?.type===So.error&&(!t.ignoreSpillError||o?.value!==Uo.SpilledBlocked))return ln(e);const s=Array.from(this.spreadingRelations.getArrayResultPositions(e));return Yi(ln(e),function(e){const t={top:1/0,left:1/0,bottom:-1/0,right:-1/0};for(const{col:o,row:s}of e)t.top=Math.min(t.top,s),t.left=Math.min(t.left,o),t.bottom=Math.max(t.bottom,s),t.right=Math.max(t.right,o);return t}(s))}getEvaluatedPositions(){return this.evaluatedCells.keys()}getEvaluatedPositionsInSheet(e){return this.evaluatedCells.keysForSheet(e)}getArrayFormulaSpreadingOn(e){if(!this.spreadingRelations.hasArrayFormulaResult(e))return this.spreadingRelations.isArrayFormula(e)?e:void 0;const t=this.spreadingRelations.getFormulaPositionsSpreadingOn(e);return Array.from(t).find((e=>!this.blockedArrayFormulas.has(e)))}updateDependencies(e){this.formulaDependencies().removeAllDependencies(e);const t=this.getDirectDependencies(e);this.formulaDependencies().addDependencies(e,t)}addDependencies(e,t){this.formulaDependencies().addDependencies(e,t);for(const e of t){const t=e.sheetId,{left:o,bottom:s,right:i,top:n}=e.zone;for(let e=o;e<=i;e++)for(let o=n;o<=s;o++)this.computeAndSave({sheetId:t,col:e,row:o})}}updateCompilationParameters(){this.compilationParams=p_(this.context,this.getters,this.computeAndSave.bind(this)),this.compilationParams.evalContext.updateDependencies=this.updateDependencies.bind(this),this.compilationParams.evalContext.addDependencies=this.addDependencies.bind(this)}createEmptyPositionSet(){const e={};for(const t of this.getters.getSheetIds())e[t]={rows:this.getters.getNumberRows(t),cols:this.getters.getNumberCols(t)};return new U_(e)}evaluateCells(e){const t=performance.now(),o=this.createEmptyPositionSet();o.addMany(e);const s=this.getArrayFormulasImpactedByChangesOf(e);o.addMany(this.getCellsDependingOn(e)),o.addMany(s),o.addMany(this.getCellsDependingOn(s)),this.evaluate(o),console.debug("evaluate Cells",performance.now()-t,"ms")}getArrayFormulasImpactedByChangesOf(e){const t=this.createEmptyPositionSet();for(const o of e){const e=this.getters.getCell(o)?.content,s=this.getArrayFormulaSpreadingOn(o);void 0!==s&&t.add(s),e||t.add(o)}return t.addMany(this.getArrayFormulasBlockedBy(t)),t}buildDependencyGraph(){this.blockedArrayFormulas=this.createEmptyPositionSet(),this.spreadingRelations=new H_,this.formulaDependencies=Be((()=>{const e=[...this.getAllCells()].flatMap((e=>this.getDirectDependencies(e).filter((e=>!e.invalidSheetName&&!e.invalidXc)).map((t=>({data:e,boundingBox:{zone:t.zone,sheetId:t.sheetId}})))));return new k_(this.createEmptyPositionSet.bind(this),e)}))}evaluateAllCells(){const e=performance.now();this.evaluatedCells=new f_,this.evaluate(this.getAllCells()),console.debug("evaluate all cells",performance.now()-e,"ms")}evaluateFormulaResult(e,t){try{const o=gv(t),s=o.dependencies.map((t=>this.getters.getRangeFromSheetXC(e,t)));this.updateCompilationParameters();const i=Z_({...o,dependencies:s},this.compilationParams,e);return No(i)?i:null===i.value?{value:0,format:i.format}:i}catch(e){return wb(e,"")}}getAllCells(){const e=this.createEmptyPositionSet();return e.fillAllPositions(),e}getArrayFormulasBlockedBy(e){const t=this.createEmptyPositionSet();for(const o of e){if(!this.spreadingRelations.hasArrayFormulaResult(o))continue;const e=this.spreadingRelations.getFormulaPositionsSpreadingOn(o);t.addMany(e);const s=this.getArrayFormulaSpreadingOn(o);s&&t.delete(s)}return t.addMany(this.getCellsDependingOn(t)),t}nextPositionsToUpdate=new U_({});cellsBeingComputed=new Set;evaluate(e){this.cellsBeingComputed=new Set,this.nextPositionsToUpdate=e;let t=0;for(;!this.nextPositionsToUpdate.isEmpty()&&t++<30;){this.updateCompilationParameters();const e=this.nextPositionsToUpdate.clear();for(let t=0;t<e.length;++t)this.evaluatedCells.delete(e[t]);for(let t=0;t<e.length;++t){const o=e[t];if(this.nextPositionsToUpdate.has(o))continue;const s=this.computeCell(o);s!==$_&&this.evaluatedCells.set(o,s)}u_.getAll().forEach((e=>e(this.getters)))}t>=30&&console.warn("Maximum iteration reached while evaluating cells")}computeCell(e){const t=this.evaluatedCells.get(e);if(t)return t;this.blockedArrayFormulas.has(e)||this.invalidateSpreading(e),this.spreadingRelations.isArrayFormula(e)&&this.spreadingRelations.removeNode(e);const o=this.getters.getCell(e);if(void 0===o)return $_;const s=o.id,i={format:o.format,locale:this.getters.getLocale()};try{return this.cellsBeingComputed.has(s)?B_:(this.cellsBeingComputed.add(s),o.isFormula?this.computeFormulaCell(e.sheetId,o):Wa(o,i))}catch(e){return e.value=e?.value||Uo.GenericError,e.message=e?.message||Eb,qa(e)}finally{this.cellsBeingComputed.delete(s)}}computeAndSave(e){const t=this.computeCell(e);return this.evaluatedCells.has(e)||this.evaluatedCells.set(e,t),t}computeFormulaCell(e,t){const o=t.id,s=Z_(t.compiledFormula,this.compilationParams,e,o);if(!No(s))return qa(q_(s),this.getters.getLocale(),t);const i=this.getters.getCellPosition(o);this.assertSheetHasEnoughSpaceToSpreadFormulaResult(i,s);const n=s.length,r=s[0].length;return G_(n,r,this.updateSpreadRelation(i)),this.assertNoMergedCellsInSpreadZone(i,s),G_(n,r,this.checkCollision(i)),G_(n,r,this.spreadValues(i,s)),this.invalidatePositionsDependingOnSpread(i,n,r),qa(q_(s[0][0]),this.getters.getLocale(),t)}invalidatePositionsDependingOnSpread(e,t,o){const s=e.row,i=e.col,n=s+o-1,r={top:s+1,bottom:n,left:i,right:i},a={top:s,bottom:n,left:i+1,right:i+t-1},l=e.sheetId,c=this.formulaDependencies().getCellsDependingOn([{sheetId:l,zone:a},{sheetId:l,zone:r}]);c.delete(e),this.nextPositionsToUpdate.addMany(c)}assertSheetHasEnoughSpaceToSpreadFormulaResult({sheetId:e,col:t,row:o},s){const i=this.getters.getNumberCols(e),n=this.getters.getNumberRows(e),r=t+s.length<=i,a=o+s[0].length<=n;if(!r||!a){if(r)throw new qo(bo("Result couldn't be automatically expanded. Please insert more rows."));if(a)throw new qo(bo("Result couldn't be automatically expanded. Please insert more columns."));throw new qo(bo("Result couldn't be automatically expanded. Please insert more columns and rows."))}}assertNoMergedCellsInSpreadZone({sheetId:e,col:t,row:o},s){if(0!==this.getters.getMergesInZone(e,{top:o,bottom:o+s[0].length-1,left:t,right:t+s.length-1}).length)throw new qo(bo("Merged cells found in the spill zone. Please unmerge cells before using array formulas."))}updateSpreadRelation({sheetId:e,col:t,row:o}){const s={sheetId:e,col:t,row:o};return(i,n)=>{const r={sheetId:e,col:i+t,row:n+o};this.spreadingRelations.addRelation({resultPosition:r,arrayFormulaPosition:s})}}checkCollision(e){const{sheetId:t,col:o,row:s}=e;return(i,n)=>{const r={sheetId:t,col:i+o,row:n+s},a=this.getters.getCell(r);if(a?.content||this.getters.getEvaluatedCell(r).type!==So.empty)throw this.blockedArrayFormulas.add(e),new qo(bo("Array result was not expanded because it would overwrite data in %s.",_t(r.col,r.row)));this.blockedArrayFormulas.delete(e)}}spreadValues({sheetId:e,col:t,row:o},s){return(i,n)=>{const r={sheetId:e,col:i+t,row:n+o},a=this.getters.getCell(r),l=qa(q_(s[i][n]),this.getters.getLocale(),a);this.evaluatedCells.set(r,l)}}invalidateSpreading(e){if(!this.spreadingRelations.isArrayFormula(e))return;const t=this.createEmptyPositionSet();for(const o of this.spreadingRelations.getArrayResultPositions(e)){const e=this.getters.getCell(o)?.content;e||(t.add(o),this.evaluatedCells.delete(o))}this.nextPositionsToUpdate.addMany(this.getCellsDependingOn(t)),this.nextPositionsToUpdate.addMany(this.getArrayFormulasBlockedBy(t))}getDirectDependencies(e){const t=this.getters.getCell(e);return t?.isFormula?t.compiledFormula.dependencies:[]}getCellsDependingOn(e){const t=[],o=function(e){const t={};for(const o of e)t[o.sheetId]??=[],t[o.sheetId].push(ln(o));for(const e in t)t[e]=Pi(t[e]);return t}(e);for(const e in o)t.push(...o[e].map((t=>({sheetId:e,zone:t}))));return this.formulaDependencies().getCellsDependingOn(t)}}function G_(e,t,o){for(let s=0;s<e;++s)for(let e=0;e<t;++e)0===s&&0===e||o(s,e)}function q_(e){return null===e.value||void 0===e.value?{...e,value:0}:e}function Z_(e,t,o,s){return t.evalContext.__originCellXC=Be((()=>{if(!s)return;const e=t.evalContext.getters.getCellPosition(s);return _t(e.col,e.row)})),t.evalContext.__originSheetId=o,e.execute(e.dependencies,t.referenceDenormalizer,t.ensureRange,t.evalContext)}const j_={isValid:!0};const Y_=["ADD_PIVOT","UPDATE_PIVOT"];function X_(e){return Y_.includes(e.type)}class K_{cells;getters;index=0;direction;constructor(e,t,o){this.cells=e,this.getters=t,this.direction=o}next(){const e=this.cells[this.index++%this.cells.length],t=e.rule,{cellData:o,tooltip:s}=Rv.get(t.type).apply(t,e.data,this.getters,this.direction);return{cellData:o,tooltip:s,origin:{col:e.data.col,row:e.data.row}}}}function Q_(e,t){if("SPREADSHEET"!==e.pivot.type)return e;if(e.pivot.dataSet?.sheetId!==t.sheetId)return e;const o=ca(e.pivot.dataSet.zone,t),s=o?{...e.pivot.dataSet,zone:o}:void 0;return{...e,pivot:{...e.pivot,dataSet:s}}}function J_(e,t){return{...e,definition:_y(e.definition,t)}}function eD(e,t){if(e.sheetId!==t.sheetId)return e;if(("FREEZE_COLUMNS"===e.type?"COL":"ROW")!==t.dimension)return e;let o=e.quantity;if("REMOVE_COLUMNS_ROWS"===t.type){const e=[...t.elements].sort(((e,t)=>t-e));for(let t of e)o>t&&o--}if("ADD_COLUMNS_ROWS"===t.type){o=o>("before"===t.position?t.base-1:t.base)?o+t.quantity:o}return o>0?{...e,quantity:o}:void 0}function tD(e,t){if(e.sheetId!==t.sheetId)return e;const o=ca(e.zone,t);if(!o)return;const s=e.newTableRange?ha(e.newTableRange,t):void 0;return{...e,newTableRange:s,zone:o}}function oD(e,t){if(e.sheetId!==t.sheetId||e.dimension!==t.dimension)return e;let o;if("REMOVE_COLUMNS_ROWS"===t.type)o=Cn(t.elements,[e.base])[0];else if("ADD_COLUMNS_ROWS"===t.type){o=yn(We(t.position,t.base),t.quantity,[e.base])[0]}return void 0!==o?{...e,base:o}:void 0}function sD(e,t){if(e.sheetId!==t.sheetId||e.dimension!==t.dimension)return e;const o=we(e.start,e.end+1);let s=[];if("REMOVE_COLUMNS_ROWS"===t.type)s=Cn(t.elements,o);else if("ADD_COLUMNS_ROWS"===t.type){s=yn(We(t.position,t.base),t.quantity,o)}return 0!==s.length?{...e,start:Math.min(...s),end:Math.max(...s)}:void 0}pE.addTransformation("ADD_COLUMNS_ROWS",["ADD_COLUMNS_ROWS"],oD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["ADD_COLUMNS_ROWS"],oD),pE.addTransformation("ADD_COLUMNS_ROWS",["CREATE_CHART","UPDATE_CHART"],J_),pE.addTransformation("REMOVE_COLUMNS_ROWS",["CREATE_CHART","UPDATE_CHART"],J_),pE.addTransformation("DELETE_SHEET",["MOVE_RANGES"],(function(e,t){const o=t.sheetId;if(e.targetSheetId===o||e.sheetId===o)return;return e})),pE.addTransformation("DELETE_FIGURE",["UPDATE_FIGURE","UPDATE_CHART"],(function(e,t){if(e.id===t.id)return;return e})),pE.addTransformation("CREATE_SHEET",["CREATE_SHEET"],(function(e,t){if(e.name===t.name)return{...e,name:e.name?.match(/\d+/)?e.name.replace(/\d+/,(e=>(parseInt(e)+1).toString())):`${e.name}~`,position:e.position+1};return e})),pE.addTransformation("ADD_MERGE",["ADD_MERGE","REMOVE_MERGE"],(function(e,t){if(e.sheetId!==t.sheetId)return e;const o=[];for(const s of e.target)for(const e of t.target)Qi(s,e)||o.push({...s});if(o.length)return{...e,target:o};return})),pE.addTransformation("ADD_COLUMNS_ROWS",["FREEZE_COLUMNS","FREEZE_ROWS"],eD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["FREEZE_COLUMNS","FREEZE_ROWS"],eD),pE.addTransformation("ADD_COLUMNS_ROWS",["UPDATE_TABLE"],tD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["UPDATE_TABLE"],tD),pE.addTransformation("REMOVE_TABLE_STYLE",["CREATE_TABLE","UPDATE_TABLE"],(function(e,t){if(e.config?.styleId!==t.tableStyleId)return e;return{...e,config:{...e.config,styleId:My.styleId}}})),pE.addTransformation("ADD_COLUMNS_ROWS",["GROUP_HEADERS","UNGROUP_HEADERS","FOLD_HEADER_GROUP","UNFOLD_HEADER_GROUP"],sD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["GROUP_HEADERS","UNGROUP_HEADERS","FOLD_HEADER_GROUP","UNFOLD_HEADER_GROUP"],sD),pE.addTransformation("REMOVE_PIVOT",["RENAME_PIVOT","DUPLICATE_PIVOT","INSERT_PIVOT","UPDATE_PIVOT"],(function(e,t){if(e.pivotId===t.pivotId)return;return e})),pE.addTransformation("DELETE_SHEET",["ADD_PIVOT","UPDATE_PIVOT"],(function(e,t){if("SPREADSHEET"!==e.pivot.type)return e;if(e.pivot.dataSet?.sheetId===t.sheetId)return{...e,pivot:{...e.pivot,dataSet:void 0}};return e})),pE.addTransformation("ADD_COLUMNS_ROWS",["ADD_PIVOT","UPDATE_PIVOT"],Q_),pE.addTransformation("REMOVE_COLUMNS_ROWS",["ADD_PIVOT","UPDATE_PIVOT"],Q_);const iD=[{match:function(e){return"sheetId"in e},fn:aD},{match:function(e){return"target"in e&&"sheetId"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;const s=[];for(const o of e.target){const e=ca(o,t);e&&s.push(e)}if(!s.length)return"IGNORE_COMMAND";return{...e,target:s}}},{match:function(e){return"zone"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;const s=ca(e.zone,t);if(s)return{...e,zone:s};return"IGNORE_COMMAND"}},{match:function(e){return"col"in e&&"row"in e&&"sheetId"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;if("ADD_COLUMNS_ROWS"===t.type||"REMOVE_COLUMNS_ROWS"===t.type)return function(e,t){const o="COL"===t.dimension?"col":"row";let s=e[o];if("REMOVE_COLUMNS_ROWS"===t.type){const e=[...t.elements].sort(((e,t)=>t-e));if(e.includes(s))return"IGNORE_COMMAND";for(let t of e)s>=t&&s--}"ADD_COLUMNS_ROWS"===t.type&&(s>t.base||s===t.base&&"before"===t.position)&&(s+=t.quantity);return{...e,[o]:s}}(e,t);if("ADD_MERGE"===t.type)return function(e,t){for(const o of t.target){if(!(e.col===o.left&&e.row===o.top)&&Ji(e.col,e.row,o))return"IGNORE_COMMAND"}return e}(e,t);return"SKIP_TRANSFORMATION"}},{match:function(e){return"dimension"in e&&"sheetId"in e&&"elements"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;if("ADD_COLUMNS_ROWS"!==t.type&&"REMOVE_COLUMNS_ROWS"!==t.type)return"SKIP_TRANSFORMATION";if(t.dimension!==e.dimension)return e;let s=[];if("REMOVE_COLUMNS_ROWS"===t.type)s=Cn(t.elements,e.elements);else if("ADD_COLUMNS_ROWS"===t.type){s=yn(We(t.position,t.base),t.quantity,e.elements)}if(0===s.length)return"IGNORE_COMMAND";return{...e,elements:s}}},{match:function(e){return"ranges"in e},fn:function(e,t){if(!("sheetId"in t))return e;const o=e.ranges.map((e=>ha(e,t))).filter(Le);if(!o.length)return"IGNORE_COMMAND";return{...e,ranges:o}}}];function nD(e,t){const o=pE.getTransformation(e.type,t.type);return o?o(e,t):function(e,t){for(const{match:o,fn:s}of iD)if(o(e)){const o=s(e,t);if("SKIP_TRANSFORMATION"===o)continue;if("IGNORE_COMMAND"===o)return;e=o}return e}(e,t)}function rD(e,t){let o=[...e];for(const e of t)o=o.map((t=>nD(t,e))).filter(Le);return o}function aD(e,t){if(!("sheetId"in t))return e;const o="DELETE_SHEET"===t.type&&t.sheetId;return e.sheetId===o?"IGNORE_COMMAND":"CREATE_SHEET"===e.type||"CREATE_SHEET"===t.type||e.sheetId!==t.sheetId?e:"SKIP_TRANSFORMATION"}class lD{rootCommand;timestamp;id;clientId;_commands=[];_changes=[];constructor(e,t,o,s,i,n){this.rootCommand=s,this.timestamp=n,this.id=e,this.clientId=t,this._commands=[...o],this._changes=i?[...i]:[]}setChanges(e){this._changes=e}get commands(){return this._commands}get changes(){return this._changes}}class cD extends Error{}class hD extends Cl{revisions;transportService;serverRevisionId;clients={};clientId="local";debouncedMove;pendingMessages=[];waitingAck=!1;waitingUndoRedoAck=!1;isReplayingInitialRevisions=!1;processedRevisions=new Set;uuidGenerator=new Hn;lastLocalOperation;constructor(e,t,o=Q){super(),this.revisions=e,this.transportService=t,this.serverRevisionId=o,this.debouncedMove=He(this._move.bind(this),200)}canApplyOptimisticUpdate(){return!this.waitingUndoRedoAck}save(e,t,o){if(!t.length||!o.length||!this.canApplyOptimisticUpdate())return;const s=new lD(this.uuidGenerator.uuidv4(),this.clientId,t,e,o,Date.now());this.revisions.append(s.id,s),"REQUEST_REDO"!==e.type&&(this.lastLocalOperation=s),this.trigger("new-local-state-update",{id:s.id}),this.sendUpdateMessage({type:"REMOTE_REVISION",version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:s.id,clientId:s.clientId,commands:s.commands})}undo(e){this.waitingUndoRedoAck=!0,this.sendUpdateMessage({type:"REVISION_UNDONE",version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:this.uuidGenerator.uuidv4(),undoneRevisionId:e})}redo(e){this.waitingUndoRedoAck=!0,this.sendUpdateMessage({type:"REVISION_REDONE",version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:this.uuidGenerator.uuidv4(),redoneRevisionId:e})}move(e){this.debouncedMove(e)}join(e){e?(this.clients[e.id]=e,this.clientId=e.id):(this.clients.local={id:"local",name:"local"},this.clientId="local"),this.transportService.onNewMessage(this.clientId,this.onMessageReceived.bind(this))}loadInitialMessages(e){const t=performance.now(),o=e.reduce(((e,t)=>e+("REMOTE_REVISION"===t.type?t.commands.length:1)),0);this.isReplayingInitialRevisions=!0;for(const t of e)this.onMessageReceived(t);this.isReplayingInitialRevisions=!1,console.debug("Replayed",o,"commands in",performance.now()-t,"ms")}async leave(e){e&&1===Object.keys(this.clients).length&&this.processedRevisions.size&&await this.snapshot(e()),delete this.clients[this.clientId],this.transportService.leave(this.clientId),this.transportService.sendMessage({type:"CLIENT_LEFT",clientId:this.clientId,version:1})}async snapshot(e){if(0!==this.pendingMessages.length)return;const t=this.uuidGenerator.uuidv4();await this.transportService.sendMessage({type:"SNAPSHOT",nextRevisionId:t,serverRevisionId:this.serverRevisionId,data:{...e,revisionId:t},version:1})}getClient(){const e=this.clients[this.clientId];if(!e)throw new cD("The client left the session");return e}getConnectedClients(){return new Set(Object.values(this.clients).filter(Le))}getRevisionId(){return this.serverRevisionId}isFullySynchronized(){return 0===this.pendingMessages.length}getLastLocalNonEmptyRevision(){return this.lastLocalOperation}_move(e){if(!this.clients[this.clientId])return;const t=this.clients[this.clientId]?.position;if(t?.col===e.col&&t.row===e.row&&t.sheetId===e.sheetId)return;const o=t?"CLIENT_MOVED":"CLIENT_JOINED",s=this.getClient();this.clients[this.clientId]={...s,position:e},this.transportService.sendMessage({type:o,version:1,client:{...s,position:e}})}onMessageReceived(e){if(!this.isAlreadyProcessed(e))if(this.isWrongServerRevisionId(e))this.trigger("unexpected-revision-id");else{switch(e.type){case"CLIENT_MOVED":this.onClientMoved(e);break;case"CLIENT_JOINED":this.onClientJoined(e);break;case"CLIENT_LEFT":this.onClientLeft(e);break;case"REVISION_REDONE":this.revisions.redo(e.redoneRevisionId,e.nextRevisionId,e.serverRevisionId),this.trigger("revision-redone",{revisionId:e.redoneRevisionId,commands:this.revisions.get(e.redoneRevisionId).commands});break;case"REVISION_UNDONE":this.revisions.undo(e.undoneRevisionId,e.nextRevisionId,e.serverRevisionId),this.trigger("revision-undone",{revisionId:e.undoneRevisionId,commands:this.revisions.get(e.undoneRevisionId).commands});break;case"REMOTE_REVISION":const{clientId:t,commands:o,timestamp:s}=e,i=new lD(e.nextRevisionId,t,o,void 0,void 0,s);if(i.clientId!==this.clientId){this.revisions.insert(i.id,i,e.serverRevisionId);const t=this.pendingMessages.filter((e=>"REMOTE_REVISION"===e.type)).map((e=>e.commands)).flat();this.trigger("remote-revision-received",{commands:rD(o,t)})}break;case"SNAPSHOT_CREATED":{const t=new lD(e.nextRevisionId,"server",[],void 0,void 0,Date.now());this.revisions.insert(t.id,t,e.serverRevisionId),this.dropPendingHistoryMessages(),this.trigger("snapshot"),this.lastLocalOperation=void 0;break}}this.acknowledge(e),this.trigger("collaborative-event-received")}}onClientMoved(e){e.client.id!==this.clientId&&(this.clients[e.client.id]=e.client)}onClientJoined(e){if(e.client.id!==this.clientId){this.clients[e.client.id]=e.client;const t=this.clients[this.clientId];if(t){const{position:e}=t;e&&this.transportService.sendMessage({type:"CLIENT_MOVED",version:1,client:{...t,position:e}})}}}onClientLeft(e){e.clientId!==this.clientId&&delete this.clients[e.clientId]}sendUpdateMessage(e){this.pendingMessages.push(e),this.waitingAck||(this.waitingAck=!0,this.sendPendingMessage())}sendPendingMessage(){let e=this.pendingMessages[0];if(e){if("REMOTE_REVISION"===e.type){const t=this.revisions.get(e.nextRevisionId);if(0===t.commands.length){this.revisions.drop(t.id);const e=this.pendingMessages.filter((e=>"REMOTE_REVISION"===e.type)).map((e=>e.nextRevisionId));return this.trigger("pending-revisions-dropped",{revisionIds:e}),this.waitingAck=!1,this.waitingUndoRedoAck=!1,void(this.pendingMessages=[])}e={...e,clientId:t.clientId,commands:t.commands}}if(this.isReplayingInitialRevisions)throw new Error(`Trying to send a new revision while replaying initial revision. This can lead to endless dispatches every time the spreadsheet is open.\n ${JSON.stringify(e)}`);this.transportService.sendMessage({...e,serverRevisionId:this.serverRevisionId})}}acknowledge(e){switch("REVISION_UNDONE"!==e.type&&"REVISION_REDONE"!==e.type||(this.waitingUndoRedoAck=!1),e.type){case"REMOTE_REVISION":case"REVISION_REDONE":case"REVISION_UNDONE":case"SNAPSHOT_CREATED":this.waitingAck=!1,this.pendingMessages=this.pendingMessages.filter((t=>t.nextRevisionId!==e.nextRevisionId)),this.serverRevisionId=e.nextRevisionId,this.processedRevisions.add(e.nextRevisionId),this.sendPendingMessage()}}isAlreadyProcessed(e){if("CLIENT_MOVED"===e.type&&e.client.id===this.clientId)return!0;switch(e.type){case"REMOTE_REVISION":case"REVISION_REDONE":case"REVISION_UNDONE":case"SNAPSHOT_CREATED":return this.processedRevisions.has(e.nextRevisionId);default:return!1}}isWrongServerRevisionId(e){switch(e.type){case"REMOTE_REVISION":case"REVISION_REDONE":case"REVISION_UNDONE":case"SNAPSHOT_CREATED":return e.serverRevisionId!==this.serverRevisionId;default:return!1}}dropPendingHistoryMessages(){this.waitingUndoRedoAck=!1,this.pendingMessages=this.pendingMessages.filter((({type:e})=>"REVISION_REDONE"!==e&&"REVISION_UNDONE"!==e))}}const dD=["#ff851b","#0074d9","#7fdbff","#b10dc9","#39cccc","#f012be","#3d9970","#111111","#ff4136","#aaaaaa","#85144b","#001f3f"];const uD=new Set(["HIDE_COLUMNS_ROWS","UNHIDE_COLUMNS_ROWS","UNFOLD_HEADER_GROUP","UNGROUP_HEADERS","FOLD_HEADER_GROUP","FOLD_ALL_HEADER_GROUPS","UNFOLD_ALL_HEADER_GROUPS","FOLD_HEADER_GROUPS_IN_ZONE","UNFOLD_HEADER_GROUPS_IN_ZONE","CREATE_TABLE","UPDATE_TABLE","UPDATE_FILTER","REMOVE_TABLE","RESIZE_TABLE","CREATE_TABLE_STYLE","REMOVE_TABLE_STYLE"]);function gD(e){return uD.has(e.type)}const pD=[mD,function(e,t){return"target"in t&&Array.isArray(t.target)?{...be(t),target:e.getSelectedZones()}:t},function(e,t){if(!("row"in t)||!("col"in t))return t;const{col:o,row:s}=e.getActivePosition();return{...be(t),col:o,row:s}},function(e,t){return"ranges"in t?{...be(t),ranges:e.getSelectedZones().map((t=>e.getRangeDataFromZone(e.getActiveSheetId(),t)))}:t}];function mD(e,t){return"sheetId"in t?{...be(t),sheetId:e.getActiveSheetId()}:t}function fD(e,t){return"zone"in t?{...be(t),zone:e.getSelectedZone()}:t}const bD=new Hn;function vD(e,t){const o=e.getSelectedZone();return{...mD(e,t),elements:"COL"===t.dimension?we(o.left,o.right+1):we(o.top,o.bottom+1)}}function SD(e,t){const o=e.getSelectedZone();return{...be(t),zone:o}}function yD(e,t){const o=be(t),s=e.getSelectedZone(),{top:i,bottom:n,left:r,right:a}=s;return"cols"in o?o.cols=we(r,a+1):"rows"in o&&(o.rows=we(i,n+1)),o}function CD(e,t){const o=e.getSelectedZone();return{...mD(e,t),start:"COL"===t.dimension?o.left:o.top,end:"COL"===t.dimension?o.right:o.bottom}}const wD=new n;wD.add("UPDATE_CELL",ED),wD.add("CLEAR_CELL",ED),wD.add("CLEAR_CELLS",ED),wD.add("DELETE_CONTENT",ED),wD.add("ADD_MERGE",ED),wD.add("REMOVE_MERGE",ED),wD.add("SET_FORMATTING",ED),wD.add("CLEAR_FORMATTING",ED),wD.add("SET_BORDER",ED),wD.add("CREATE_TABLE",ED),wD.add("REMOVE_TABLE",ED),wD.add("HIDE_SHEET",ED),wD.add("ADD_COLUMNS_ROWS",(function(e,t){const o=e.getActivePosition();return{...mD(e,t),base:"COL"===t.dimension?o.col:o.row}})),wD.add("REMOVE_COLUMNS_ROWS",vD),wD.add("HIDE_COLUMNS_ROWS",vD),wD.add("RESIZE_COLUMNS_ROWS",vD),wD.add("CREATE_SHEET",(function(e,t){const o=be(t);o.sheetId=bD.uuidv4();const s=t.name||e.getSheet(e.getActiveSheetId()).name,i=s.match(/(.+?)\d*$/)?.[1]||s;return o.name=e.getNextSheetName(i),o})),wD.add("CREATE_FIGURE",(function(e,t){const o=mD(e,t);return o.figure.id=bD.uuidv4(),o})),wD.add("CREATE_CHART",(function(e,t){return{...mD(e,t),id:bD.uuidv4()}})),wD.add("CREATE_IMAGE",(function(e,t){return{...mD(e,t),figureId:bD.uuidv4()}})),wD.add("GROUP_HEADERS",CD),wD.add("UNGROUP_HEADERS",CD),wD.add("UNGROUP_HEADERS",CD),wD.add("UNFOLD_HEADER_GROUPS_IN_ZONE",fD),wD.add("FOLD_HEADER_GROUPS_IN_ZONE",fD);const xD=new n;function ED(e,t){let o=be(t);for(const t of pD)o=t(e,o);return o}function ID(e,t){if(e.rootCommand&&"object"==typeof e.rootCommand)return To(e.rootCommand)?function(e,t){if(!t)return;if(!wD.contains(t.type))return;return wD.get(t.type)(e,t)}(t,e.rootCommand):function(e,t,o){if(!xD.contains(t.type))return;return xD.get(t.type)(e,t,o)}(t,e.rootCommand,e.commands)}xD.add("PASTE",(function(e,t){return{type:"REPEAT_PASTE",pasteOption:be(t.pasteOption),target:e.getSelectedZones()}})),xD.add("INSERT_CELL",SD),xD.add("DELETE_CELL",SD),xD.add("AUTORESIZE_COLUMNS",yD),xD.add("AUTORESIZE_ROWS",yD),xD.add("SORT_CELLS",(function(e,t){const o=e.getSelectedZone();return{...mD(e,t),col:o.left,row:o.top,zone:o}})),xD.add("SUM_SELECTION",ED),xD.add("SET_DECIMAL",ED);class RD{getters;sheetId;boundaries;top;bottom;left;right;offsetX;offsetY;offsetScrollbarX;offsetScrollbarY;canScrollVertically;canScrollHorizontally;viewportWidth;viewportHeight;offsetCorrectionX;offsetCorrectionY;constructor(e,t,o,s,i,n){this.getters=e,this.sheetId=t,this.boundaries=o,this.viewportWidth=s.width,this.viewportHeight=s.height,this.offsetScrollbarX=n.x,this.offsetScrollbarY=n.y,this.canScrollVertically=i.canScrollVertically,this.canScrollHorizontally=i.canScrollHorizontally,this.offsetCorrectionX=this.getters.getColDimensions(this.sheetId,this.boundaries.left).start,this.offsetCorrectionY=this.getters.getRowDimensions(this.sheetId,this.boundaries.top).start,this.adjustViewportOffsetX(),this.adjustViewportOffsetY()}getMaxSize(){const e=this.getters.findLastVisibleColRowIndex(this.sheetId,"COL",{first:this.boundaries.left,last:this.boundaries.right}),t=this.getters.findLastVisibleColRowIndex(this.sheetId,"ROW",{first:this.boundaries.top,last:this.boundaries.bottom}),{end:o,size:s}=this.getters.getColDimensions(this.sheetId,e),{end:i,size:n}=this.getters.getRowDimensions(this.sheetId,t),r=this.searchHeaderIndex("COL",o-this.viewportWidth,0),a=this.getters.getColSize(this.sheetId,r),l=this.searchHeaderIndex("ROW",i-this.viewportHeight,0),c=this.getters.getRowSize(this.sheetId,l);let h=o-this.offsetCorrectionX;this.canScrollHorizontally&&(h+=Math.max(N,Math.min(a,this.viewportWidth-s)),h=Math.max(h,this.viewportWidth));let d=i-this.offsetCorrectionY;return this.canScrollVertically&&(d+=Math.max(L+5,Math.min(c,this.viewportHeight-n)),d=Math.max(d,this.viewportHeight)),i+B>d&&!this.getters.isReadonly()&&(d+=B),{width:h,height:d}}getColIndex(e){return e<this.offsetCorrectionX||e>this.offsetCorrectionX+this.viewportWidth?-1:this.searchHeaderIndex("COL",e-this.offsetCorrectionX,this.left)}getRowIndex(e){return e<this.offsetCorrectionY||e>this.offsetCorrectionY+this.viewportHeight?-1:this.searchHeaderIndex("ROW",e-this.offsetCorrectionY,this.top)}adjustPosition(e){const t=this.sheetId,o=this.getters.getMainCellPosition({sheetId:t,...e}),{col:s,row:i}=this.getters.getNextVisibleCellPosition(o);Ji(s,this.boundaries.top,this.boundaries)&&this.adjustPositionX(s),Ji(this.boundaries.left,i,this.boundaries)&&this.adjustPositionY(i)}adjustPositionX(e){const t=this.sheetId,{end:o}=this.getters.getColDimensions(t,e);if(this.offsetX+this.offsetCorrectionX+this.viewportWidth<o){const o=this.getters.getNumberCols(t);let s=e;for(;this.getters.isColHidden(t,s)&&s<o;)s++;const i=this.getters.getColDimensions(t,s).end,n=this.searchHeaderIndex("COL",i-this.viewportWidth-this.offsetCorrectionX,this.boundaries.left);this.offsetScrollbarX=this.getters.getColDimensions(t,n).end-this.offsetCorrectionX}else if(this.left>e){let o=e;for(;this.getters.isColHidden(t,o)&&o>0;)o--;this.offsetScrollbarX=this.getters.getColDimensions(t,o).start-this.offsetCorrectionX}this.adjustViewportZoneX()}adjustPositionY(e){const t=this.sheetId,{end:o}=this.getters.getRowDimensions(t,e);if(this.offsetY+this.viewportHeight+this.offsetCorrectionY<o){const o=this.getters.getNumberRows(t);let s=e;for(;this.getters.isRowHidden(t,s)&&s<o;)s++;const i=this.getters.getRowDimensions(t,s).end,n=this.searchHeaderIndex("ROW",i-this.viewportHeight-this.offsetCorrectionY,this.boundaries.top);this.offsetScrollbarY=this.getters.getRowDimensions(t,n).end-this.offsetCorrectionY}else if(this.top>e){let o=e;for(;this.getters.isRowHidden(t,o)&&o>0;)o--;this.offsetScrollbarY=this.getters.getRowDimensions(t,o).start-this.offsetCorrectionY}this.adjustViewportZoneY()}willNewOffsetScrollViewport(e,t){return this.canScrollHorizontally&&this.offsetScrollbarX!==e||this.canScrollVertically&&this.offsetScrollbarY!==t}setViewportOffset(e,t){this.setViewportOffsetX(e),this.setViewportOffsetY(t)}adjustViewportZone(){this.adjustViewportZoneX(),this.adjustViewportZoneY()}getRect(e){const t=Xi(e,this);if(t){return{x:this.getters.getColRowOffset("COL",this.left,t.left)+this.offsetCorrectionX,y:this.getters.getColRowOffset("ROW",this.top,t.top)+this.offsetCorrectionY,width:Math.min(this.getters.getColRowOffset("COL",t.left,t.right+1),this.viewportWidth),height:Math.min(this.getters.getColRowOffset("ROW",t.top,t.bottom+1),this.viewportHeight)}}}isVisible(e,t){return t<=this.bottom&&t>=this.top&&e>=this.left&&e<=this.right&&!this.getters.isColHidden(this.sheetId,e)&&!this.getters.isRowHidden(this.sheetId,t)}searchHeaderIndex(e,t,o=0){const s=this.sheetId,i=this.getters.getNumberHeaders(s,e);let n=o,r=i;for(;n<=r&&n!==i&&-1!==r;){const i=Math.floor((n+r)/2),a=this.getters.getColRowOffset(e,o,i),l=this.getters.getHeaderSize(s,e,i);if(t>=a&&t<a+l)return i;t>=a+l?n=i+1:r=i-1}return-1}setViewportOffsetX(e){this.canScrollHorizontally&&(this.offsetScrollbarX=e,this.adjustViewportZoneX())}setViewportOffsetY(e){this.canScrollVertically&&(this.offsetScrollbarY=e,this.adjustViewportZoneY())}adjustViewportOffsetX(){if(this.canScrollHorizontally){const{width:e}=this.getMaxSize();this.viewportWidth+this.offsetScrollbarX>e&&(this.offsetScrollbarX=Math.max(0,e-this.viewportWidth))}this.adjustViewportZoneX()}adjustViewportOffsetY(){if(this.canScrollVertically){const{height:e}=this.getMaxSize();this.viewportHeight+this.offsetScrollbarY>e&&(this.offsetScrollbarY=Math.max(0,e-this.viewportHeight))}this.adjustViewportZoneY()}adjustViewportZoneX(){const e=this.sheetId;this.left=this.searchHeaderIndex("COL",this.offsetScrollbarX,this.boundaries.left),this.right=Math.min(this.boundaries.right,this.searchHeaderIndex("COL",this.viewportWidth,this.left)),-1===this.left&&(this.left=this.boundaries.left),-1===this.right&&(this.right=this.getters.getNumberCols(e)-1),this.offsetX=this.getters.getColDimensions(e,this.left).start-this.getters.getColDimensions(e,this.boundaries.left).start}adjustViewportZoneY(){const e=this.sheetId;this.top=this.searchHeaderIndex("ROW",this.offsetScrollbarY,this.boundaries.top),this.bottom=Math.min(this.boundaries.bottom,this.searchHeaderIndex("ROW",this.viewportHeight,this.top)),-1===this.top&&(this.top=this.boundaries.top),-1===this.bottom&&(this.bottom=this.getters.getNumberRows(e)-1),this.offsetY=this.getters.getRowDimensions(e,this.top).start-this.getters.getRowDimensions(e,this.boundaries.top).start}}const TD=(new n).add("settings",class extends s_{static getters=["getLocale"];locale=Mo;allowDispatch(e){return"UPDATE_LOCALE"===e.type?ar(e.locale)?"Success":"InvalidLocale":"Success"}handle(e){if("UPDATE_LOCALE"===e.type){const t=this.locale,o=e.locale;this.history.update("locale",o),this.changeCellsDateFormatWithLocale(t,o)}}getLocale(){return this.locale}changeCellsDateFormatWithLocale(e,t){for(const o of this.getters.getSheetIds())for(const[s,i]of Object.entries(this.getters.getCells(o))){let o;if(i.format===e.dateFormat&&(o=t.dateFormat),i.format===e.timeFormat&&(o=t.timeFormat),i.format===yr(e)&&(o=yr(t)),o){const{col:e,row:t,sheetId:i}=this.getters.getCellPosition(s);this.dispatch("UPDATE_CELL",{col:e,row:t,sheetId:i,format:o})}}}import(e){this.locale=e.settings?.locale??Mo}export(e){e.settings={locale:this.locale}}}).add("sheet",class extends s_{static getters=["getSheetName","tryGetSheetName","getSheet","tryGetSheet","getSheetIdByName","getSheetIds","getVisibleSheetIds","isSheetVisible","doesHeaderExist","doesHeadersExist","getCell","getCellPosition","getColsZone","getRowCells","getRowsZone","getNumberCols","getNumberRows","getNumberHeaders","getGridLinesVisibility","getNextSheetName","getSheetSize","getSheetZone","getPaneDivisions","checkZonesExistInSheet","getCommandZones","getUnboundedZone","checkElementsIncludeAllNonFrozenHeaders"];sheetIdsMapName={};orderedSheetIds=[];sheets={};cellPosition={};allowDispatch(e){const t=this.chainValidations(this.checkSheetExists,this.checkZonesAreInSheet)(e);if("Success"!==t)return t;switch(e.type){case"HIDE_SHEET":return 1===this.getVisibleSheetIds().length?"NotEnoughSheets":"Success";case"CREATE_SHEET":return this.checkValidations(e,this.checkSheetName,this.checkSheetPosition);case"MOVE_SHEET":try{const t=this.orderedSheetIds.findIndex((t=>t===e.sheetId));return this.findIndexOfTargetSheet(t,e.delta),"Success"}catch(e){return"WrongSheetMove"}case"RENAME_SHEET":return this.isRenameAllowed(e);case"DELETE_SHEET":return this.orderedSheetIds.length>1?"Success":"NotEnoughSheets";case"ADD_COLUMNS_ROWS":return this.doesHeaderExist(e.sheetId,e.dimension,e.base)?e.quantity<=0?"InvalidQuantity":"Success":"InvalidHeaderIndex";case"REMOVE_COLUMNS_ROWS":{const t=nt(e.elements),o=it(e.elements);return t<0||!this.doesHeaderExist(e.sheetId,e.dimension,o)?"InvalidHeaderIndex":this.checkElementsIncludeAllNonFrozenHeaders(e.sheetId,e.dimension,e.elements)?"NotEnoughElements":"Success"}case"FREEZE_ROWS":return this.checkValidations(e,this.checkRowFreezeQuantity,this.checkRowFreezeOverlapMerge);case"FREEZE_COLUMNS":return this.checkValidations(e,this.checkColFreezeQuantity,this.checkColFreezeOverlapMerge);default:return"Success"}}handle(e){switch(e.type){case"SET_GRID_LINES_VISIBILITY":this.setGridLinesVisibility(e.sheetId,e.areGridLinesVisible);break;case"CREATE_SHEET":const t=this.createSheet(e.sheetId,e.name||this.getNextSheetName(),e.cols||26,e.rows||100,e.position);this.history.update("sheetIdsMapName",t.name,t.id);break;case"MOVE_SHEET":this.moveSheet(e.sheetId,e.delta);break;case"RENAME_SHEET":this.renameSheet(this.sheets[e.sheetId],e.name);break;case"HIDE_SHEET":this.hideSheet(e.sheetId);break;case"SHOW_SHEET":this.showSheet(e.sheetId);break;case"DUPLICATE_SHEET":this.duplicateSheet(e.sheetId,e.sheetIdTo);break;case"DELETE_SHEET":this.deleteSheet(this.sheets[e.sheetId]);break;case"REMOVE_COLUMNS_ROWS":"COL"===e.dimension?this.removeColumns(this.sheets[e.sheetId],[...e.elements]):this.removeRows(this.sheets[e.sheetId],[...e.elements]);break;case"ADD_COLUMNS_ROWS":"COL"===e.dimension?this.addColumns(this.sheets[e.sheetId],e.base,e.position,e.quantity):this.addRows(this.sheets[e.sheetId],e.base,e.position,e.quantity);break;case"UPDATE_CELL_POSITION":this.updateCellPosition(e);break;case"FREEZE_COLUMNS":this.setPaneDivisions(e.sheetId,e.quantity,"COL");break;case"FREEZE_ROWS":this.setPaneDivisions(e.sheetId,e.quantity,"ROW");break;case"UNFREEZE_ROWS":this.setPaneDivisions(e.sheetId,0,"ROW");break;case"UNFREEZE_COLUMNS":this.setPaneDivisions(e.sheetId,0,"COL");break;case"UNFREEZE_COLUMNS_ROWS":this.setPaneDivisions(e.sheetId,0,"COL"),this.setPaneDivisions(e.sheetId,0,"ROW")}}import(e){for(let t of e.sheets)this.sheetIdsMapName[t.name]=t.id;for(let t of e.sheets){const e=t.name||bo("Sheet")+(Object.keys(this.sheets).length+1),{colNumber:o,rowNumber:s}=this.getImportedSheetSize(t),i={id:t.id,name:e,numberOfCols:o,rows:Sn(s),areGridLinesVisible:void 0===t.areGridLinesVisible||t.areGridLinesVisible,isVisible:t.isVisible,panes:{xSplit:t.panes?.xSplit||0,ySplit:t.panes?.ySplit||0}};this.orderedSheetIds.push(i.id),this.sheets[i.id]=i}}exportSheets(e){e.sheets=this.orderedSheetIds.filter(Le).map((e=>{const t=this.sheets[e],o={id:t.id,name:t.name,colNumber:t.numberOfCols,rowNumber:this.getters.getNumberRows(t.id),rows:{},cols:{},merges:[],cells:{},conditionalFormats:[],figures:[],tables:[],areGridLinesVisible:void 0===t.areGridLinesVisible||t.areGridLinesVisible,isVisible:t.isVisible};return(t.panes.xSplit||t.panes.ySplit)&&(o.panes=t.panes),o}))}export(e){this.exportSheets(e)}exportForExcel(e){this.exportSheets(e)}getGridLinesVisibility(e){return this.getSheet(e).areGridLinesVisible}tryGetSheet(e){return this.sheets[e]}getSheet(e){const t=this.sheets[e];if(!t)throw new Error(`Sheet ${e} not found.`);return t}isSheetVisible(e){return this.getSheet(e).isVisible}getSheetName(e){return this.getSheet(e).name}tryGetSheetName(e){return this.tryGetSheet(e)?.name}getSheetIdByName(e){if(e){const t=ve(e);for(const e in this.sheetIdsMapName)if(e.toUpperCase()===t.toUpperCase())return this.sheetIdsMapName[e]}}getSheetIds(){return this.orderedSheetIds}getVisibleSheetIds(){return this.orderedSheetIds.filter(this.isSheetVisible.bind(this))}doesHeaderExist(e,t,o){return"COL"===t?o>=0&&o<this.getNumberCols(e):o>=0&&o<this.getNumberRows(e)}doesHeadersExist(e,t,o){return o.every((o=>this.doesHeaderExist(e,t,o)))}getCell({sheetId:e,col:t,row:o}){const s=this.tryGetSheet(e),i=s?.rows[o]?.cells[t];if(void 0!==i)return this.getters.getCellById(i)}getColsZone(e,t,o){return{top:0,bottom:this.getNumberRows(e)-1,left:t,right:o}}getRowCells(e,t){return Object.values(this.getSheet(e).rows[t]?.cells).filter(Le)}getRowsZone(e,t,o){return{top:t,bottom:o,left:0,right:this.getSheet(e).numberOfCols-1}}getCellPosition(e){const t=this.cellPosition[e];if(!t)throw new Error(`asking for a cell position that doesn't exist, cell id: ${e}`);return t}getNumberCols(e){return this.getSheet(e).numberOfCols}getNumberRows(e){return this.getSheet(e).rows.length}getNumberHeaders(e,t){return"COL"===t?this.getNumberCols(e):this.getNumberRows(e)}getNextSheetName(e="Sheet"){let t=1;const o=this.orderedSheetIds.map(this.getSheetName.bind(this));let s=`${e}${t}`;for(;o.includes(s);)s=`${e}${t}`,t++;return s}getSheetSize(e){return{numberOfRows:this.getNumberRows(e),numberOfCols:this.getNumberCols(e)}}getSheetZone(e){return{top:0,left:0,bottom:this.getNumberRows(e)-1,right:this.getNumberCols(e)-1}}getUnboundedZone(e,t){const o=0===t.left&&t.right===this.getNumberCols(e)-1,s=0===t.top&&t.bottom===this.getNumberRows(e)-1;return{...t,bottom:s?void 0:t.bottom,right:o&&!s?void 0:t.right}}getPaneDivisions(e){return this.getSheet(e).panes}setPaneDivisions(e,t,o){const s={...this.getPaneDivisions(e)};"COL"===o?s.xSplit=t:"ROW"===o&&(s.ySplit=t),this.history.update("sheets",e,"panes",s)}checkElementsIncludeAllNonFrozenHeaders(e,t,o){const s=this.getters.getPaneDivisions(e),i="ROW"===t?s.ySplit:s.xSplit,n=this.getters.getNumberHeaders(e,t);if(!i)return!1;return Ze(o,we(i,n))}getCommandZones(e){const t=[];return"zone"in e&&t.push(e.zone),"target"in e&&t.push(...e.target),"ranges"in e&&t.push(...e.ranges.map((e=>this.getters.getRangeFromRangeData(e).zone))),"col"in e&&"row"in e&&t.push({top:e.row,left:e.col,bottom:e.row,right:e.col}),t}checkZonesExistInSheet(e,t){if(!t.every(Bi))return"InvalidRange";if(t.length){const o=this.getSheetZone(e);return t.every((e=>en(e,o)))?"Success":"TargetOutOfSheet"}return"Success"}updateCellPosition(e){const{sheetId:t,cellId:o,col:s,row:i}=e;o?this.setNewPosition(o,t,s,i):this.clearPosition(t,s,i)}setNewPosition(e,t,o,s){const i=this.cellPosition[e];i&&this.clearPosition(t,i.col,i.row),this.history.update("cellPosition",e,{row:s,col:o,sheetId:t}),this.history.update("sheets",t,"rows",s,"cells",o,e)}clearPosition(e,t,o){const s=this.sheets[e]?.rows[o].cells[t];s&&(this.history.update("cellPosition",s,void 0),this.history.update("sheets",e,"rows",o,"cells",t,void 0))}setGridLinesVisibility(e,t){this.history.update("sheets",e,"areGridLinesVisible",t)}createSheet(e,t,o,s,i){const n={id:e,name:t,numberOfCols:o,rows:Sn(s),areGridLinesVisible:!0,isVisible:!0,panes:{xSplit:0,ySplit:0}},r=this.orderedSheetIds.slice();r.splice(i,0,n.id);const a=this.sheets;return this.history.update("orderedSheetIds",r),this.history.update("sheets",Object.assign({},a,{[n.id]:n})),n}moveSheet(e,t){const o=this.orderedSheetIds.slice(),s=o.findIndex((t=>t===e)),i=o.splice(s,1);let n=this.findIndexOfTargetSheet(s,t);o.splice(n,0,i[0]),this.history.update("orderedSheetIds",o)}findIndexOfTargetSheet(e,t){for(;0!=t&&0<=e&&e<=this.orderedSheetIds.length;)t>0?(e++,this.isSheetVisible(this.orderedSheetIds[e])&&t--):t<0&&(e--,this.isSheetVisible(this.orderedSheetIds[e])&&t++);if(0===t)return e;throw new Error(bo("There is not enough visible sheets"))}checkSheetName(e){const t=this.getters.tryGetSheetName(e.sheetId);if(void 0!==t&&e.name===t)return"UnchangedSheetName";const{orderedSheetIds:o,sheets:s}=this,i=e.name&&e.name.trim().toLowerCase();return o.find((t=>s[t]?.name.toLowerCase()===i&&t!==e.sheetId))?"DuplicatedSheetName":ae.test(i)?"ForbiddenCharactersInSheetName":"Success"}checkSheetPosition(e){const{orderedSheetIds:t}=this;return e.position>t.length||e.position<0?"WrongSheetPosition":"Success"}checkRowFreezeQuantity(e){return e.quantity>=1&&e.quantity<this.getNumberRows(e.sheetId)?"Success":"InvalidFreezeQuantity"}checkColFreezeQuantity(e){return e.quantity>=1&&e.quantity<this.getNumberCols(e.sheetId)?"Success":"InvalidFreezeQuantity"}checkRowFreezeOverlapMerge(e){const t=this.getters.getMerges(e.sheetId);for(let o of t)if(o.top<e.quantity&&e.quantity<=o.bottom)return"MergeOverlap";return"Success"}checkColFreezeOverlapMerge(e){const t=this.getters.getMerges(e.sheetId);for(let o of t)if(o.left<e.quantity&&e.quantity<=o.right)return"MergeOverlap";return"Success"}isRenameAllowed(e){return e.name&&e.name.trim().toLowerCase()?this.checkSheetName(e):"MissingSheetName"}renameSheet(e,t){const o=e.name;this.history.update("sheets",e.id,"name",t.trim());const s=Object.assign({},this.sheetIdsMapName);delete s[o],s[t]=e.id,this.history.update("sheetIdsMapName",s)}hideSheet(e){this.history.update("sheets",e,"isVisible",!1)}showSheet(e){this.history.update("sheets",e,"isVisible",!0)}duplicateSheet(e,t){const o=this.getSheet(e),s=this.getDuplicateSheetName(o.name),i=be(o);i.id=t,i.name=s;for(let e=0;e<=i.numberOfCols;e++)for(let t=0;t<=i.rows.length;t++)i.rows[t]&&(i.rows[t].cells[e]=void 0);const n=this.orderedSheetIds.slice(),r=n.indexOf(e);n.splice(r+1,0,i.id),this.history.update("orderedSheetIds",n),this.history.update("sheets",Object.assign({},this.sheets,{[i.id]:i}));for(const t of Object.values(this.getters.getCells(e))){const{col:e,row:o}=this.getCellPosition(t.id);this.dispatch("UPDATE_CELL",{sheetId:i.id,col:e,row:o,content:t.content,format:t.format,style:t.style})}const a=Object.assign({},this.sheetIdsMapName);a[i.name]=i.id,this.history.update("sheetIdsMapName",a)}getDuplicateSheetName(e){let t=1;const o=this.orderedSheetIds.map(this.getSheetName.bind(this)),s=bo("Copy of %s",e);let i=s.toString();for(;o.includes(i);)i=`${s} (${t})`,t++;return i}deleteSheet(e){const t=e.name,o=Object.assign({},this.sheets);delete o[e.id],this.history.update("sheets",o);const s=this.orderedSheetIds.slice(),i=s.indexOf(e.id);s.splice(i,1),this.history.update("orderedSheetIds",s);const n=Object.assign({},this.sheetIdsMapName);delete n[t],this.history.update("sheetIdsMapName",n)}removeColumns(e,t){t.sort(((e,t)=>t-e));for(let o of t)this.moveCellOnColumnsDeletion(e,o);const o=this.sheets[e.id].numberOfCols;this.history.update("sheets",e.id,"numberOfCols",o-t.length);const s=t.filter((t=>t<e.panes.xSplit)).length;s&&this.setPaneDivisions(e.id,e.panes.xSplit-s,"COL")}removeRows(e,t){t.sort(((e,t)=>t-e));for(let o of xe(t)){const t=o[o.length-1],s=o[0];this.moveCellOnRowsDeletion(e,t,s),this.updateRowsStructureOnDeletion(e,t,s)}const o=t.filter((t=>t<e.panes.ySplit)).length;o&&this.setPaneDivisions(e.id,e.panes.ySplit-o,"ROW")}addColumns(e,t,o,s){const i="before"===o?t:t+1;this.moveCellsOnAddition(e,i,s,"columns");const n=this.sheets[e.id].numberOfCols;this.history.update("sheets",e.id,"numberOfCols",n+s),i<e.panes.xSplit&&this.setPaneDivisions(e.id,e.panes.xSplit+s,"COL")}addRows(e,t,o,s){const i="before"===o?t:t+1;this.addEmptyRows(e,s),this.moveCellsOnAddition(e,i,s,"rows"),i<e.panes.ySplit&&this.setPaneDivisions(e.id,e.panes.ySplit+s,"ROW")}moveCellOnColumnsDeletion(e,t){this.dispatch("CLEAR_CELLS",{sheetId:e.id,target:[{left:t,top:0,right:t,bottom:e.rows.length-1}]});for(let o=0;o<e.rows.length;o++){const s=e.rows[o];for(let i in s.cells){const n=Number(i),r=s.cells[i];r&&n>t&&this.setNewPosition(r,e.id,n-1,o)}}}moveCellsOnAddition(e,t,o,s){const i=[];for(let n=0;n<e.rows.length;n++){const r=e.rows[n];if("rows"!==s||n>=t)for(let a in r.cells){const l=Number(a),c=r.cells[a];c&&("rows"===s||l>=t)&&i.push({sheetId:e.id,cellId:c,col:l+("columns"===s?o:0),row:n+("rows"===s?o:0),type:"UPDATE_CELL_POSITION"})}}for(let e of i.reverse())this.updateCellPosition(e)}moveCellOnRowsDeletion(e,t,o){this.dispatch("CLEAR_CELLS",{sheetId:e.id,target:[{left:0,top:t,right:this.getters.getNumberCols(e.id),bottom:o}]});const s=o-t+1;for(let t=0;t<e.rows.length;t++){const i=e.rows[t];if(t>o)for(let o in i.cells){const n=Number(o),r=i.cells[o];r&&this.setNewPosition(r,e.id,n,t-s)}}}updateRowsStructureOnDeletion(e,t,o){const s=[],i=e.rows.map((e=>e.cells)).reverse();for(let n in e.rows){const e=Number(n);e>=t&&e<=o||s.push({cells:i.pop()})}this.history.update("sheets",e.id,"rows",s)}addEmptyRows(e,t){const o=e.rows.slice();for(let e=0;e<t;e++)o.push({cells:{}});this.history.update("sheets",e.id,"rows",o)}getImportedSheetSize(e){const t=Object.keys(e.cells).map(Ot);let o=e.rowNumber,s=e.colNumber;for(let{col:e,row:i}of t)o=Math.max(o,i+1),s=Math.max(s,e+1);return{rowNumber:o,colNumber:s}}checkSheetExists(e){return"CREATE_SHEET"!==e.type&&"sheetId"in e&&void 0===this.sheets[e.sheetId]?"InvalidSheetId":"CREATE_SHEET"===e.type&&void 0!==this.sheets[e.sheetId]?"DuplicatedSheetId":"Success"}checkZonesAreInSheet(e){return"sheetId"in e?this.checkZonesExistInSheet(e.sheetId,this.getCommandZones(e)):"Success"}}).add("header grouping",class extends s_{static getters=["getHeaderGroups","getGroupsLayers","getVisibleGroupLayers","getHeaderGroup","getHeaderGroupsInZone","isGroupFolded","isRowFolded","isColFolded"];groups={};allowDispatch(e){switch(e.type){case"GROUP_HEADERS":{const{start:t,end:o}=e;if(!this.getters.doesHeadersExist(e.sheetId,e.dimension,[t,o]))return"InvalidHeaderGroupStartEnd";if(t>o)return"InvalidHeaderGroupStartEnd";if(this.findGroupWithStartEnd(e.sheetId,e.dimension,t,o))return"HeaderGroupAlreadyExists";break}case"UNGROUP_HEADERS":{const{start:t,end:o}=e;if(!this.getters.doesHeadersExist(e.sheetId,e.dimension,[t,o]))return"InvalidHeaderGroupStartEnd";if(t>o)return"InvalidHeaderGroupStartEnd";break}case"UNFOLD_HEADER_GROUP":case"FOLD_HEADER_GROUP":const t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);if(!t)return"UnknownHeaderGroup";if(we(0,this.getters.getNumberHeaders(e.sheetId,e.dimension)).every((o=>o>=t.start&&o<=t.end||this.getters.isHeaderHiddenByUser(e.sheetId,e.dimension,o))))return"NotEnoughElements"}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("groups",e.sheetId,{ROW:[],COL:[]});break;case"GROUP_HEADERS":this.groupHeaders(e.sheetId,e.dimension,e.start,e.end);break;case"UNGROUP_HEADERS":this.unGroupHeaders(e.sheetId,e.dimension,e.start,e.end);break;case"DUPLICATE_SHEET":{const t=be(this.groups[e.sheetId]);this.history.update("groups",e.sheetIdTo,t);break}case"DELETE_SHEET":{const t={...this.groups};delete t[e.sheetId],this.history.update("groups",t);break}case"ADD_COLUMNS_ROWS":const t=We(e.position,e.base);this.moveGroupsOnHeaderInsertion(e.sheetId,e.dimension,t,e.quantity);break;case"REMOVE_COLUMNS_ROWS":this.moveGroupsOnHeaderDeletion(e.sheetId,e.dimension,e.elements);break;case"UNFOLD_HEADER_GROUP":{const t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);t&&this.unfoldHeaderGroup(e.sheetId,e.dimension,t);break}case"FOLD_HEADER_GROUP":{const t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);t&&this.foldHeaderGroup(e.sheetId,e.dimension,t);break}case"UNFOLD_ALL_HEADER_GROUPS":{const t=this.getters.getHeaderGroups(e.sheetId,e.dimension);for(const o of t)this.unfoldHeaderGroup(e.sheetId,e.dimension,o);break}case"FOLD_ALL_HEADER_GROUPS":{const t=this.getters.getHeaderGroups(e.sheetId,e.dimension);for(const o of t)this.foldHeaderGroup(e.sheetId,e.dimension,o);break}case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":{const t="UNFOLD_HEADER_GROUPS_IN_ZONE"===e.type?"unfold":"fold",o=this.getGroupsLayers(e.sheetId,e.dimension);"fold"===t&&o.reverse();const s=o.flat(),i="ROW"===e.dimension?e.zone.top:e.zone.left,n="ROW"===e.dimension?e.zone.bottom:e.zone.right,r=new Set;for(let e=i;e<=n;e++){const o=s.filter((t=>t.start-1<=e&&e<=t.end));for(const e of o)if(!("fold"===t&&e.isFolded||"unfold"===t&&!e.isFolded)){r.add(e);break}}for(const o of r)"unfold"===t?this.unfoldHeaderGroup(e.sheetId,e.dimension,o):this.foldHeaderGroup(e.sheetId,e.dimension,o);break}}}getHeaderGroups(e,t){return this.groups[e][t]}getHeaderGroup(e,t,o,s){return this.getHeaderGroups(e,t).find((e=>e.start===o&&e.end===s))}getHeaderGroupsInZone(e,t,o){return this.getHeaderGroups(e,t).filter((e=>{const s="ROW"===t?o.top:o.left,i="ROW"===t?o.bottom:o.right;return this.doGroupOverlap(e,s,i)}))}getGroupsLayers(e,t){const o=this.getHeaderGroups(e,t);return this.bricksFallingAlgorithm(o,0,0)}getVisibleGroupLayers(e,t){const o=this.getGroupsLayers(e,t);for(const s of o)for(let o=s.length-1;o>=0;o--){const i=s[o];if(0===i.start)continue;we(i.start-1,i.end+1).every((o=>this.getters.isHeaderHiddenByUser(e,t,o)))&&s.splice(o,1)}return o.filter((e=>e.length>0))}isGroupFolded(e,t,o,s){return this.getHeaderGroup(e,t,o,s)?.isFolded||!1}isRowFolded(e,t){return this.getters.getHeaderGroups(e,"ROW").some((e=>e.start<=t&&t<=e.end&&e.isFolded))}isColFolded(e,t){return this.getters.getHeaderGroups(e,"COL").some((e=>e.start<=t&&t<=e.end&&e.isFolded))}getGroupId(e){return`${e.start}-${e.end}}`}bricksFallingAlgorithm(e,t,o,s=0){const i={};for(const t of e)i[this.getGroupId(t)]=t.isFolded;const n={};for(const t of e)for(let e=t.start;e<=t.end;e++)n[e]=n[e]?n[e]+1:1;for(let e=t;e<=o;e++)n[e]=n[e]?n[e]+s:s;const r=Math.max(...Object.values(n),0),a=Array.from({length:r},(()=>[])),l=Math.max(o,...e.map((e=>e.end)));for(let o=Math.min(t,...e.map((e=>e.start)));o<=l;o++){const e=n[o]||0;for(let t=0;t<e;t++){const e=a[t].at(-1);if(e&&Qe([e.end,o]))e.end++;else{const e={start:o,end:o};a[t].push(e)}}}for(const e of a)for(const t of e)t.isFolded=i[this.getGroupId(t)];return a}groupHeaders(e,t,o,s){const i=this.getHeaderGroups(e,t),n=this.bricksFallingAlgorithm(i,o,s,1).flat();this.history.update("groups",e,t,this.removeDuplicateGroups(n))}unGroupHeaders(e,t,o,s){const i=this.getHeaderGroups(e,t),n=this.bricksFallingAlgorithm(i,o,s,-1).flat();this.history.update("groups",e,t,this.removeDuplicateGroups(n))}moveGroupsOnHeaderInsertion(e,t,o,s){const i=this.groups[e][t];for(let n=0;n<i.length;n++){const r=i[n],[a,l]=yn(o,s,[r.start,r.end]);a===r.start&&l===r.end||this.history.update("groups",e,t,n,{...r,start:a,end:l})}}moveGroupsOnHeaderDeletion(e,t,o){const s=this.getHeaderGroups(e,t),i=[];for(const e of s){const t=Cn(o,we(e.start,e.end+1));0!==t.length&&i.push({...e,start:Math.min(...t),end:Math.max(...t)})}this.history.update("groups",e,t,this.bricksFallingAlgorithm(i,0,0).flat())}doGroupOverlap(e,t,o){return e.start<=o&&e.end>=t}removeDuplicateGroups(e){const t={};for(const o of e)t[this.getGroupId(o)]=o;return Object.values(t)}findGroupWithStartEnd(e,t,o,s){return this.getHeaderGroups(e,t).find((e=>e.start===o&&e.end===s))}foldHeaderGroup(e,t,o){const s=this.getGroupIndex(e,t,o.start,o.end);if(void 0===s)return;this.history.update("groups",e,t,s,"isFolded",!0);const i=this.getters.getHeaderGroups(e,t);for(let s=0;s<i.length;s++){const n=i[s];n.start===o.start&&n.end<=o.end&&this.history.update("groups",e,t,s,"isFolded",!0)}}unfoldHeaderGroup(e,t,o){const s=this.getGroupIndex(e,t,o.start,o.end);if(void 0===s)return;this.history.update("groups",e,t,s,"isFolded",!1);const i=this.getters.getHeaderGroups(e,t);for(let s=0;s<i.length;s++){const n=i[s];n.start===o.start&&n.end>=o.end&&this.history.update("groups",e,t,s,"isFolded",!1)}}getGroupIndex(e,t,o,s){const i=this.groups[e][t].findIndex((e=>e.start===o&&e.end===s));return-1===i?void 0:i}import(e){for(const t of e.sheets)if(this.groups[t.id]={ROW:[],COL:[]},t.headerGroups)for(const e of["ROW","COL"])for(const o of t.headerGroups[e]||[])this.groups[t.id][e].push({...o})}export(e){for(const t of e.sheets)t.headerGroups=this.groups[t.id]}exportForExcel(e){for(const t of e.sheets)for(const e of["ROW","COL"]){const o=this.getGroupsLayers(t.id,e);for(let s=0;s<o.length;s++){const i=o[s];for(const o of i){for(let i=o.start;i<=o.end;i++){const n=wA(t,e,i);n.outlineLevel=s+1,o.isFolded&&(n.isHidden=!0)}if(o.isFolded){wA(t,e,o.end+1).collapsed=!0}}}}}}).add("header visibility",class extends s_{static getters=["checkElementsIncludeAllVisibleHeaders","getHiddenColsGroups","getHiddenRowsGroups","isHeaderHiddenByUser","isRowHiddenByUser","isColHiddenByUser"];hiddenHeaders={};allowDispatch(e){switch(e.type){case"HIDE_COLUMNS_ROWS":{if(!this.getters.tryGetSheet(e.sheetId))return"InvalidSheetId";const t="COL"===e.dimension?this.getHiddenColsGroups(e.sheetId):this.getHiddenRowsGroups(e.sheetId),o="COL"===e.dimension?this.getters.getNumberCols(e.sheetId):this.getters.getNumberRows(e.sheetId);return new Set((t||[]).flat().concat(e.elements)).size>=o?"TooManyHiddenElements":nt(e.elements)<0||it(e.elements)>o?"InvalidHeaderIndex":"Success"}case"REMOVE_COLUMNS_ROWS":return this.getters.tryGetSheet(e.sheetId)?this.checkElementsIncludeAllVisibleHeaders(e.sheetId,e.dimension,e.elements)?"NotEnoughElements":"Success":"InvalidSheetId"}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":const t={COL:Array(this.getters.getNumberCols(e.sheetId)).fill(!1),ROW:Array(this.getters.getNumberRows(e.sheetId)).fill(!1)};this.history.update("hiddenHeaders",e.sheetId,t);break;case"DUPLICATE_SHEET":this.history.update("hiddenHeaders",e.sheetIdTo,be(this.hiddenHeaders[e.sheetId]));break;case"DELETE_SHEET":this.history.update("hiddenHeaders",e.sheetId,void 0);break;case"REMOVE_COLUMNS_ROWS":{const t=[...this.hiddenHeaders[e.sheetId][e.dimension]];for(let o of[...e.elements].sort(((e,t)=>t-e)))t.splice(o,1);this.history.update("hiddenHeaders",e.sheetId,e.dimension,t);break}case"ADD_COLUMNS_ROWS":{const t=[...this.hiddenHeaders[e.sheetId][e.dimension]],o=We(e.position,e.base);t.splice(o,0,...Array(e.quantity).fill(!1)),this.history.update("hiddenHeaders",e.sheetId,e.dimension,t);break}case"HIDE_COLUMNS_ROWS":for(let t of e.elements)this.history.update("hiddenHeaders",e.sheetId,e.dimension,t,!0);break;case"UNHIDE_COLUMNS_ROWS":for(let t of e.elements)this.history.update("hiddenHeaders",e.sheetId,e.dimension,t,!1)}}checkElementsIncludeAllVisibleHeaders(e,t,o){return Ze(o,this.getAllVisibleHeaders(e,t))}isHeaderHiddenByUser(e,t,o){return"COL"===t?this.isColHiddenByUser(e,o):this.isRowHiddenByUser(e,o)}isRowHiddenByUser(e,t){return this.hiddenHeaders[e].ROW[t]||this.getters.isRowFolded(e,t)}isColHiddenByUser(e,t){return this.hiddenHeaders[e].COL[t]||this.getters.isColFolded(e,t)}getHiddenColsGroups(e){const t=[[]],o=this.hiddenHeaders[e].COL;for(let e=0;e<o.length;e++){o[e]?t[t.length-1].push(e):0!==t[t.length-1].length&&t.push([])}return 0===t[t.length-1].length&&t.pop(),t}getHiddenRowsGroups(e){const t=[[]],o=this.hiddenHeaders[e].ROW;for(let e=0;e<o.length;e++){o[e]?t[t.length-1].push(e):0!==t[t.length-1].length&&t.push([])}return 0===t[t.length-1].length&&t.pop(),t}getAllVisibleHeaders(e,t){const o=we(0,this.getters.getNumberHeaders(e,t)),s=[];return this.getters.getHeaderGroups(e,t).forEach((e=>{e.isFolded&&s.push(...we(e.start,e.end+1))})),o.filter((o=>!this.hiddenHeaders[e][t][o]&&!s.includes(o)))}import(e){for(let t of e.sheets){this.hiddenHeaders[t.id]={COL:[],ROW:[]};for(let e=0;e<t.rowNumber;e++)this.hiddenHeaders[t.id].ROW[e]=Boolean(t.rows[e]?.isHidden);for(let e=0;e<t.colNumber;e++)this.hiddenHeaders[t.id].COL[e]=Boolean(t.cols[e]?.isHidden)}}exportForExcel(e){this.exportData(e,!0)}export(e){this.exportData(e)}exportData(e,t=!1){for(let o of e.sheets){void 0===o.rows&&(o.rows={});for(let e=0;e<this.getters.getNumberRows(o.id);e++)(t||this.hiddenHeaders[o.id].ROW[e])&&(void 0===o.rows[e]&&(o.rows[e]={}),o.rows[e].isHidden||=this.hiddenHeaders[o.id].ROW[e]);void 0===o.cols&&(o.cols={});for(let e=0;e<this.getters.getNumberCols(o.id);e++)(t||this.hiddenHeaders[o.id].COL[e])&&(void 0===o.cols[e]&&(o.cols[e]={}),o.cols[e].isHidden||=this.hiddenHeaders[o.id].COL[e])}}}).add("tables",class extends s_{static getters=["getCoreTable","getCoreTables","getCoreTableMatchingTopLeft"];tables={};adaptRanges(e,t){const o=t?[t]:this.getters.getSheetIds();for(const t of o)for(const o of this.getCoreTables(t))this.applyRangeChangeOnTable(t,o,e)}allowDispatch(e){switch(e.type){case"CREATE_TABLE":const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e).zone));return un(t)?this.checkValidations(e,(e=>this.getTablesOverlappingZones(e.sheetId,t).length?"TableOverlap":"Success"),(e=>this.checkTableConfigUpdateIsValid(e.config))):"NonContinuousTargets";case"UPDATE_TABLE":return this.getCoreTableMatchingTopLeft(e.sheetId,e.zone)?this.checkValidations(e,this.checkUpdatedTableZoneIsValid,(e=>this.checkTableConfigUpdateIsValid(e.config))):"TableNotFound";case"ADD_MERGE":for(const t of this.getCoreTables(e.sheetId)){const o=t.range.zone;for(const t of e.target)if(Qi(o,t))return"MergeInTable"}}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("tables",e.sheetId,{});break;case"DELETE_SHEET":{const t={...this.tables};delete t[e.sheetId],this.history.update("tables",t);break}case"DUPLICATE_SHEET":{const t={};for(const o of this.getCoreTables(e.sheetId))t[o.id]="dynamic"===o.type?this.copyDynamicTableForSheet(e.sheetIdTo,o):this.copyStaticTableForSheet(e.sheetIdTo,o);this.history.update("tables",e.sheetIdTo,t);break}case"CREATE_TABLE":{const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e))),o=this.getters.getRangesUnion(t),s=this.getters.getMergesInZone(e.sheetId,o.zone);this.dispatch("REMOVE_MERGE",{sheetId:e.sheetId,target:s});const i=this.uuidGenerator.uuidv4(),n=e.config||My,r="dynamic"===e.tableType?this.createDynamicTable(i,o,n):this.createStaticTable(i,e.tableType,o,n);this.history.update("tables",e.sheetId,r.id,r);break}case"REMOVE_TABLE":{const t={};for(const o of this.getCoreTables(e.sheetId))e.target.every((e=>!Xi(o.range.zone,e)))&&(t[o.id]=o);this.history.update("tables",e.sheetId,t);break}case"UPDATE_TABLE":this.updateTable(e);break;case"UPDATE_CELL":{const t=e.sheetId;for(const o of this.getCoreTables(t)){if("dynamic"===o.type)continue;const s=this.canUpdateCellCmdExtendTable(e,o);"down"===s?this.extendTableDown(t,o):"right"===s&&this.extendTableRight(t,o)}break}case"DELETE_CONTENT":{const t={...this.tables[e.sheetId]};for(const o in t){const s=t[o];s&&e.target.some((e=>en(s.range.zone,e)))&&this.dispatch("REMOVE_TABLE",{sheetId:e.sheetId,target:[s.range.zone]})}break}}}getCoreTables(e){return this.tables[e]?Object.values(this.tables[e]).filter(Le):[]}getCoreTable({sheetId:e,col:t,row:o}){return this.getCoreTables(e).find((e=>Ji(t,o,e.range.zone)))}getTablesOverlappingZones(e,t){return this.getCoreTables(e).filter((e=>t.some((t=>Qi(e.range.zone,t)))))}extendTableDown(e,t){const o=this.getters.extendRange(t.range,"ROW",1);this.history.update("tables",e,t.id,this.updateStaticTable(t,o))}extendTableRight(e,t){const o=this.getters.extendRange(t.range,"COL",1);this.history.update("tables",e,t.id,this.updateStaticTable(t,o))}canUpdateCellCmdExtendTable({content:e,sheetId:t,col:o,row:s},i){if(!e)return"none";const n=i.range.zone;let r="none";if(n.bottom+1===s&&o>=n.left&&o<=n.right?r="down":n.right+1===o&&s>=n.top&&s<=n.bottom&&(r="right"),"none"===r)return"none";const a="down"===r?{...n,bottom:n.bottom+1,top:n.bottom+1}:{...n,right:n.right+1,left:n.right+1};for(const e of sn(a)){const o={sheetId:t,...e},s=this.getters.getCell(o)?.content;if(s||this.getters.isInMerge(o)||this.getTablesOverlappingZones(t,[ln(e)]).length)return"none"}return r}getCoreTableMatchingTopLeft(e,t){for(const o of this.getCoreTables(e)){const e=o.range.zone;if(e.left===t.left&&e.top===t.top)return o}}checkUpdatedTableZoneIsValid(e){if(!e.newTableRange)return"Success";const t=this.getters.getRangeFromRangeData(e.newTableRange).zone,o=this.getters.checkZonesExistInSheet(e.sheetId,[t]);if("Success"!==o)return o;const s=this.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!s)return"TableNotFound";return this.getTablesOverlappingZones(e.sheetId,[t]).filter((e=>e.id!==s.id)).length?"TableOverlap":"Success"}checkTableConfigUpdateIsValid(e){return e&&(void 0!==e.numberOfHeaders&&e.numberOfHeaders<0||e.hasFilters&&0===e.numberOfHeaders)?"InvalidTableConfig":"Success"}createStaticTable(e,t,o,s,i){const n=o.zone;if(!i){i=[];for(const e of we(n.left,n.right+1)){const t={...n,left:e,right:e},r=this.uuidGenerator.uuidv4();i.push(this.createFilterFromZone(r,o.sheetId,t,s))}}return{id:e,range:o,filters:i,config:s,type:t}}createDynamicTable(e,t,o){const s=cn(t.zone);return{id:e,range:this.getters.getRangeFromZone(t.sheetId,s),config:o,type:"dynamic"}}updateTable(e){const t=this.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!t)return;const o=e.newTableRange?this.getters.getRangeFromRangeData(e.newTableRange):void 0;if(o){const t=this.getters.getMergesInZone(e.sheetId,o.zone);this.dispatch("REMOVE_MERGE",{sheetId:e.sheetId,target:t})}const s=o||t.range,i=this.updateTableConfig(e.config,t.config),n=e.tableType??t.type;if("dynamic"===n&&"dynamic"!==t.type||"dynamic"!==n&&"dynamic"===t.type){const o="dynamic"===n?this.createDynamicTable(t.id,s,i):this.createStaticTable(t.id,n,s,i);this.history.update("tables",e.sheetId,t.id,o)}else{const o="dynamic"===t.type?this.updateDynamicTable(t,s,i):this.updateStaticTable(t,s,i,n);this.history.update("tables",e.sheetId,t.id,o)}}updateStaticTable(e,t,o,s=e.type){if("dynamic"===s)throw new Error("Cannot use updateStaticTable to update a dynamic table");const i=t||e.range,n=i.zone,r=this.updateTableConfig(o,e.config),a=r||e.config,l=[];if(t||r&&"numberOfHeaders"in r)for(const t of we(n.left,n.right+1)){const o=n.top===e.range.zone.top?e.filters.find((e=>e.col===t)):void 0,s={...n,left:t,right:t},r=o?.id||this.uuidGenerator.uuidv4();l.push(this.createFilterFromZone(r,i.sheetId,s,a))}return{...e,range:i,config:a,filters:l.length?l:e.filters,type:s}}updateDynamicTable(e,t,o){const s=t?this.getters.getRangeFromZone(t.sheetId,cn(t.zone)):e.range,i=o||e.config;return{...e,range:s,config:i}}updateTableConfig(e,t){if(!e)return t;const o={...t,...e};return 0===e.numberOfHeaders?o.hasFilters=!1:!0===e.hasFilters&&(o.numberOfHeaders||=1),o}createFilterFromZone(e,t,o,s){return mR(e,this.getters.getRangeFromZone(t,o),s,this.getters.getRangeFromZone)}copyStaticTableForSheet(e,t){const o=this.getters.getRangeFromZone(e,t.range.zone),s=t.filters.map((o=>{const s=this.getters.getRangeFromZone(e,o.rangeWithHeaders.zone);return mR(o.id,s,t.config,this.getters.getRangeFromZone)}));return{id:t.id,range:o,filters:s,config:be(t.config),type:t.type}}copyDynamicTableForSheet(e,t){const o=this.getters.getRangeFromZone(e,t.range.zone);return{id:t.id,range:o,config:be(t.config),type:"dynamic"}}applyRangeChangeOnTable(e,t,o){const s=o(t.range);let i;switch(s.changeType){case"REMOVE":return void this.history.update("tables",e,t.id,void 0);case"NONE":return;default:i=s.range}if("dynamic"===t.type){const o=this.updateDynamicTable(t,i);return void this.history.update("tables",e,t.id,o)}const n=[];for(const e of t.filters){const s=o(e.rangeWithHeaders);switch(s.changeType){case"REMOVE":continue;case"NONE":n.push(e);break;default:const o=s.range,i=mR(e.id,o,t.config,this.getters.getRangeFromZone);n.push(i)}}const r=i.zone;if(n.length<tn(r).numberOfCols){for(let o=r.left;o<=r.right;o++)if(!n.find((e=>e.col===o))){const s=this.uuidGenerator.uuidv4(),i={...r,left:o,right:o};n.push(this.createFilterFromZone(s,e,i,t.config))}n.sort(((e,t)=>e.col-t.col))}const a=this.createStaticTable(t.id,t.type,i,t.config,n);this.history.update("tables",e,t.id,a)}import(e){for(const t of e.sheets)for(const e of t.tables||[]){const o=this.uuidGenerator.uuidv4(),s=e.config||My,i=this.getters.getRangeFromSheetXC(t.id,e.range),n=e.type||"static",r="dynamic"===n?this.createDynamicTable(o,i,s):this.createStaticTable(o,n,i,s);this.history.update("tables",t.id,r.id,r)}}export(e){for(const t of e.sheets)for(const e of this.getCoreTables(t.id)){const o={range:Wi(e.range.zone),type:e.type};Ge(e.config,My)||(o.config=e.config),t.tables.push(o)}}exportForExcel(e){for(const t of e.sheets)for(const e of this.getCoreTables(t.id)){const o=Wi(e.range.zone);t.tables.push({range:o,filters:[],config:e.config})}}}).add("dataValidation",class extends s_{static getters=["cellHasListDataValidationIcon","getDataValidationRule","getDataValidationRules","getValidationRuleForCell"];rules={};adaptRanges(e,t){const o=t?[t]:Object.keys(this.rules);for(const t of o)this.loopThroughRangesOfSheet(t,e)}loopThroughRangesOfSheet(e,t){for(let o=this.rules[e].length-1;o>=0;o--){const s=this.rules[e][o];for(let i=s.ranges.length-1;i>=0;i--){const n=t(s.ranges[i]);switch(n.changeType){case"REMOVE":if(1===s.ranges.length)this.removeDataValidationRule(e,s.id);else{const t=s.ranges.slice();t.splice(i,1),this.history.update("rules",e,o,"ranges",t)}break;case"RESIZE":case"MOVE":case"CHANGE":this.history.update("rules",e,o,"ranges",i,n.range)}}}}allowDispatch(e){switch(e.type){case"ADD_DATA_VALIDATION_RULE":return this.checkValidations(e,this.chainValidations(this.checkCriterionTypeIsValid,this.checkCriterionHasValidNumberOfValues,this.checkCriterionValuesAreValid));case"REMOVE_DATA_VALIDATION_RULE":if(!this.rules[e.sheetId].find((t=>t.id===e.id)))return"UnknownDataValidationRule"}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("rules",e.sheetId,[]);break;case"DUPLICATE_SHEET":{const t=be(this.rules[e.sheetId]).map((t=>({...t,ranges:t.ranges.map((t=>mn(e.sheetId,e.sheetIdTo,t)))})));this.history.update("rules",e.sheetIdTo,t);break}case"DELETE_SHEET":{const t={...this.rules};delete t[e.sheetId],this.history.update("rules",t);break}case"REMOVE_DATA_VALIDATION_RULE":this.removeDataValidationRule(e.sheetId,e.id);break;case"ADD_DATA_VALIDATION_RULE":{const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e)));this.addDataValidationRule(e.sheetId,{...e.rule,ranges:t});break}case"DELETE_CONTENT":{const t=Pi(e.target),o=e.sheetId;for(const e of t)for(let t=e.top;t<=e.bottom;t++)for(let s=e.left;s<=e.right;s++){const e=this.getValidationRuleForCell({sheetId:o,col:s,row:t});if(e&&("isBoolean"===e.criterion.type||"isValueInList"===e.criterion.type&&!this.getters.getCell({sheetId:o,col:s,row:t})?.content)){const e=this.rules[o],i=[this.getters.getRangeFromSheetXC(o,_t(s,t))],n=this.removeRangesFromRules(o,i,e);this.history.update("rules",o,n)}}}}}getDataValidationRules(e){return this.rules[e]}getDataValidationRule(e,t){return this.rules[e].find((e=>e.id===t))}getValidationRuleForCell({sheetId:e,col:t,row:o}){if(this.rules[e])for(const s of this.rules[e])for(const e of s.ranges)if(Ji(t,o,e.zone))return s}cellHasListDataValidationIcon(e){const t=this.getValidationRuleForCell(e);return!!t&&(("isValueInList"===t.criterion.type||"isValueInRange"===t.criterion.type)&&"arrow"===t.criterion.displayStyle)}addDataValidationRule(e,t){const o=this.rules[e];"isBoolean"===t.criterion.type?this.setCenterStyleToBooleanCells(t):"isValueInList"===t.criterion.type&&(t.criterion.values=Array.from(new Set(t.criterion.values)));const s=this.removeRangesFromRules(e,t.ranges,o),i=s.findIndex((e=>e.id===t.id));-1!==i?(s[i]=t,this.history.update("rules",e,s)):this.history.update("rules",e,[...s,t])}removeRangesFromRules(e,t,o){o=be(o);for(const e of o)e.ranges=this.getters.recomputeRanges(e.ranges,t);return o.filter((e=>e.ranges.length>0))}removeDataValidationRule(e,t){const o=this.rules[e].filter((e=>e.id!==t));this.history.update("rules",e,o)}setCenterStyleToBooleanCells(e){for(const t of bn(e.ranges)){const e=this.getters.getCell(t),o={...e?.style,align:e?.style?.align??"center",verticalAlign:e?.style?.verticalAlign??"middle"};this.dispatch("UPDATE_CELL",{...t,style:o})}}import(e){for(const t of e.sheets)if(this.rules[t.id]=[],t.dataValidationRules)for(const e of t.dataValidationRules)this.rules[t.id].push({...e,ranges:e.ranges.map((e=>this.getters.getRangeFromSheetXC(t.id,e)))})}export(e){if(e.sheets)for(const t of e.sheets){t.dataValidationRules=[];for(const e of this.rules[t.id])t.dataValidationRules.push({...e,ranges:e.ranges.map((e=>this.getters.getRangeString(e,t.id)))})}}checkCriterionTypeIsValid(e){return pl.contains(e.rule.criterion.type)?"Success":"UnknownDataValidationCriterionType"}checkCriterionHasValidNumberOfValues(e){const t=e.rule.criterion,o=pl.get(t.type).numberOfValues(t);return void 0!==o&&t.values.length!==o?"InvalidNumberOfCriterionValues":"Success"}checkCriterionValuesAreValid(e){const t=e.rule.criterion,o=pl.get(t.type);return t.values.some((e=>e.startsWith("=")?"onlyLiterals"===o.allowedValues:"onlyFormulas"===o.allowedValues||!o.isCriterionValueValid(e)))?"InvalidDataValidationCriterionValue":"Success"}}).add("cell",class extends s_{static getters=["zoneToXC","getCells","getTranslatedCellFormula","getCellStyle","getCellById","getFormulaMovedInSheet"];nextId=1;cells={};adaptRanges(e,t){for(const o of Object.keys(this.cells))for(const s of Object.values(this.cells[o]||{}))if(s.isFormula)for(const i of s.compiledFormula.dependencies)if(!t||i.sheetId===t){const t=e(i);"NONE"!==t.changeType&&this.history.update("cells",o,s.id,"compiledFormula","dependencies",s.compiledFormula.dependencies.indexOf(i),t.range)}}allowDispatch(e){switch(e.type){case"UPDATE_CELL":return this.checkValidations(e,this.checkCellOutOfSheet,this.checkUselessUpdateCell);case"CLEAR_CELL":return this.checkValidations(e,this.checkCellOutOfSheet,this.checkUselessClearCell);default:return"Success"}}handle(e){switch(e.type){case"SET_FORMATTING":"style"in e&&this.setStyle(e.sheetId,e.target,e.style),"format"in e&&void 0!==e.format&&this.setFormatter(e.sheetId,e.target,e.format);break;case"CLEAR_FORMATTING":this.clearFormatting(e.sheetId,e.target);break;case"ADD_COLUMNS_ROWS":"COL"===e.dimension?this.handleAddColumnsRows(e,this.copyColumnStyle.bind(this)):this.handleAddColumnsRows(e,this.copyRowStyle.bind(this));break;case"UPDATE_CELL":this.updateCell(e.sheetId,e.col,e.row,e);break;case"CLEAR_CELL":this.dispatch("UPDATE_CELL",{sheetId:e.sheetId,col:e.col,row:e.row,content:"",style:null,format:""});break;case"CLEAR_CELLS":this.clearCells(e.sheetId,e.target);break;case"DELETE_CONTENT":this.clearZones(e.sheetId,e.target)}}clearZones(e,t){for(let o of Pi(t))for(let t=o.left;t<=o.right;t++)for(let s=o.top;s<=o.bottom;s++){this.getters.getCell({sheetId:e,col:t,row:s})&&this.dispatch("UPDATE_CELL",{sheetId:e,content:"",col:t,row:s})}}setFormatter(e,t,o){for(let s of Pi(t))for(let t=s.top;t<=s.bottom;t++)for(let i=s.left;i<=s.right;i++)this.dispatch("UPDATE_CELL",{sheetId:e,col:i,row:t,format:o})}clearFormatting(e,t){for(let o of Pi(t))for(let t=o.left;t<=o.right;t++)for(let s=o.top;s<=o.bottom;s++)this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,style:null,format:""})}clearCells(e,t){for(const o of t)for(let t=o.left;t<=o.right;t++)for(let s=o.top;s<=o.bottom;s++)this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,content:"",style:null,format:""})}handleAddColumnsRows(e,t){let o,s;"before"===e.position?(o=we(e.base,e.base+e.quantity),s=e.base+e.quantity):(o=we(e.base+1,e.base+e.quantity+1),s=e.base),t(e.sheetId,s,o)}import(e){for(let t of e.sheets)for(let o in t.cells){const s=t.cells[o],{col:i,row:n}=Ot(o);if(s?.content||s?.format||s?.style){const o=this.importCell(t.id,s,e.styles,e.formats);this.history.update("cells",t.id,o.id,o),this.dispatch("UPDATE_CELL_POSITION",{cellId:o.id,col:i,row:n,sheetId:t.id})}}}export(e){const t={},o={};for(let s of e.sheets){const e={},i=Object.keys(this.cells[s.id]||{}).map((e=>this.getters.getCellPosition(e))).sort(((e,t)=>e.col===t.col?e.row-t.row:e.col-t.col));for(const s of i){const i=this.getters.getCell(s),n=_t(s.col,s.row),r=this.removeDefaultStyleValues(i.style);e[n]={style:Object.keys(r).length?Ue(r,t):void 0,format:i.format?Ue(i.format,o):void 0,content:i.content||void 0}}s.cells=e}e.styles=t,e.formats=o}importCell(e,t,o,s){const i=t.style&&o[t.style]||void 0,n=t.format&&s[t.format]||void 0,r=this.getNextUid();return this.createCell(r,t?.content||"",n,i,e)}exportForExcel(e){this.export(e);const t=[];for(const o in e.formats||[])pi(e.formats[o])||(t.push(o),delete e.formats[o]);if(t.length)for(const o of e.sheets)for(const e in o.cells){const s=o.cells[e],i=s?.format;i&&t.includes(i.toString())&&delete s.format}}removeDefaultStyleValues(e){const t={...e};for(const e in W)t[e]===W[e]&&delete t[e];return t}getCells(e){return this.cells[e]||{}}getCellById(e){const t=this.getters.getCellPosition(e);return this.cells[t.sheetId][e]}getFormulaCellContent(e,t,o,s=!1){let i=0;return ze(t.tokens.map((t=>{if("REFERENCE"===t.type){const t=o[i++];return this.getters.getRangeString(t,e,{useFixedReference:s})}return t.value})))}getTranslatedCellFormula(e,t,o,s){const i=this.getters.createAdaptedRanges(s.dependencies,t,o,e);return this.getFormulaCellContent(e,s,i)}getFormulaMovedInSheet(e,t){const o=t.dependencies,s=this.getters.removeRangesSheetPrefix(e,o);return this.getFormulaCellContent(e,t,s)}getCellStyle(e){return this.getters.getCell(e)?.style||{}}zoneToXC(e,t,o=[{colFixed:!1,rowFixed:!1}]){const s=_t((t=this.getters.expandZone(e,t)).left,t.top,o[0]),i=_t(t.right,t.bottom,o.length>1?o[1]:o[0]),n=this.getters.getMainCellPosition({sheetId:e,col:t.left,row:t.top}),r=this.getters.getMainCellPosition({sheetId:e,col:t.right,row:t.bottom}),a=n.col===r.col&&n.row===r.row;return s==i||a?s:s+":"+i}setStyle(e,t,o){for(let s of Pi(t))for(let t=s.left;t<=s.right;t++)for(let i=s.top;i<=s.bottom;i++){const s=this.getters.getCell({sheetId:e,col:t,row:i});this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:i,style:o?{...s?.style,...o}:void 0})}}copyColumnStyle(e,t,o){for(let s=0;s<this.getters.getNumberRows(e);s++){const i=this.getFormat(e,t,s);if(i.style||i.format)for(let t of o)this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,...i})}}copyRowStyle(e,t,o){for(let s=0;s<this.getters.getNumberCols(e);s++){const i=this.getFormat(e,s,t);if(i.style||i.format)for(let t of o)this.dispatch("UPDATE_CELL",{sheetId:e,col:s,row:t,...i})}}getFormat(e,t,o){const s={},i=this.getters.getMainCellPosition({sheetId:e,col:t,row:o}),n=this.getters.getCell(i);return n&&(n.style&&(s.style=n.style),n.format&&(s.format=n.format)),s}getNextUid(){const e=this.nextId.toString();return this.history.update("nextId",this.nextId+1),e}updateCell(e,t,o,s){const i=this.getters.getCell({sheetId:e,col:t,row:o}),n="content"in s||"formula"in s,r=n?Ke(s?.content):i?.content||"";let a;a=void 0!==s.style?s.style||void 0:i?i.style:void 0;const l="format"in s?s.format:i&&i.format;if((n&&!r&&!s.formula||!n&&(!i||""===i.content))&&!a&&!l)return void(i&&(this.history.update("cells",e,i.id,void 0),this.dispatch("UPDATE_CELL_POSITION",{cellId:void 0,col:t,row:o,sheetId:e})));const c=i?.id||this.getNextUid(),h=this.createCell(c,r,l,a,e);this.history.update("cells",e,h.id,h),this.dispatch("UPDATE_CELL_POSITION",{cellId:h.id,col:t,row:o,sheetId:e})}createCell(e,t,o,s,i){if(!t.startsWith("="))return this.createLiteralCell(e,t,o,s);try{return this.createFormulaCell(e,t,o,s,i)}catch(i){return this.createErrorFormula(e,t,o,s,i)}}createLiteralCell(e,t,o,s){const i=this.getters.getLocale(),n=Ga(t,i);return(o=o||("number"==typeof n?ri(t,i)||ai(t):void 0))===Do||Xo(t)||(t=rs(n)),{id:e,content:t,style:s,format:o,isFormula:!1,parsedValue:n}}createFormulaCell(e,t,o,s,i){const n=gv(t);return n.dependencies.length?this.createFormulaCellWithDependencies(e,n,o,s,i):{id:e,content:t,style:s,format:o,isFormula:!0,compiledFormula:{...n,dependencies:[]}}}createFormulaCellWithDependencies(e,t,o,s,i){const n=[];for(const e of t.dependencies)n.push(this.getters.getRangeFromSheetXC(i,e));return new i_(e,t,o,s,n,i,this.getters.getRangeString)}createErrorFormula(e,t,o,s,i){return{id:e,content:t,style:s,format:o,isFormula:!0,compiledFormula:{tokens:Zn(t),dependencies:[],execute:function(){throw i}}}}checkCellOutOfSheet(e){const{sheetId:t,col:o,row:s}=e;if(!this.getters.tryGetSheet(t))return"InvalidSheetId";return Ji(o,s,this.getters.getSheetZone(t))?"Success":"TargetOutOfSheet"}checkUselessClearCell(e){const t=this.getters.getCell(e);return t&&(t.content||t.style||t.format)?"Success":"NoChanges"}checkUselessUpdateCell(e){const t=this.getters.getCell(e),o="style"in e,s="format"in e;return("content"in e||"formula"in e)&&t?.content!==e.content||o&&!Ge(t?.style,e.style)||s&&t?.format!==e.format?"Success":"NoChanges"}}).add("merge",class extends s_{static getters=["isInMerge","isInSameMerge","isMergeHidden","getMainCellPosition","expandZone","doesIntersectMerge","doesColumnsHaveCommonMerges","doesRowsHaveCommonMerges","getMerges","getMerge","getMergesInZone","isSingleCellOrMerge","getSelectionRangeString","isMainCellPosition"];nextId=1;merges={};mergeCellMap={};allowDispatch(e){const t="force"in e&&!!e.force;switch(e.type){case"ADD_MERGE":return t?this.checkValidations(e,this.checkFrozenPanes):this.checkValidations(e,this.checkDestructiveMerge,this.checkOverlap,this.checkFrozenPanes);case"UPDATE_CELL":return this.checkMergedContentUpdate(e);case"REMOVE_MERGE":return this.checkMergeExists(e);default:return"Success"}}handle(e){switch(e.type){case"CREATE_SHEET":case"DELETE_SHEET":this.history.update("merges",e.sheetId,{}),this.history.update("mergeCellMap",e.sheetId,{});break;case"DUPLICATE_SHEET":const t=this.merges[e.sheetId];if(!t)break;for(const o of Object.values(t).filter(Le))this.addMerge(e.sheetIdTo,o.zone);break;case"ADD_MERGE":for(const t of e.target)this.addMerge(e.sheetId,t);break;case"REMOVE_MERGE":for(const t of e.target)this.removeMerge(e.sheetId,t)}}adaptRanges(e,t){const o=t?[t]:Object.keys(this.merges);for(const t of o)this.applyRangeChangeOnSheet(t,e)}getMerges(e){return Object.keys(this.merges[e]||{}).map((t=>this.getMergeById(e,parseInt(t,10)))).filter(Le)}getMerge({sheetId:e,col:t,row:o}){const s=this.mergeCellMap[e],i=s?t in s&&s[t]?.[o]:void 0;return i?this.getMergeById(e,i):void 0}getMergesInZone(e,t){const o=this.mergeCellMap[e];if(!o)return[];const s=new Set;for(let e=t.left;e<=t.right;e++)for(let i=t.top;i<=t.bottom;i++){const t=o[e]?.[i];t&&s.add(t)}return Array.from(s).map((t=>this.getMergeById(e,t))).filter(Le)}getSelectionRangeString(e,t){const o=pn.fromRange(e,this.getters),s=this.getters.expandZone(o.sheetId,o.zone),i=o.clone({zone:{...s,bottom:o.isFullCol?void 0:s.bottom,right:o.isFullRow?void 0:s.right}}),n=this.getters.getRangeString(i,t);if(this.isSingleCellOrMerge(o.sheetId,o.zone)){const{sheetName:e,xc:t}=Fi(n);return Mi(e,t.split(":")[0])}return n}doesIntersectMerge(e,t){for(const o of this.getMerges(e))if(Qi(t,o))return!0;return!1}doesColumnsHaveCommonMerges(e,t,o){const s=this.getters.getSheet(e);for(let i=0;i<this.getters.getNumberRows(e);i++)if(this.isInSameMerge(s.id,t,i,o,i))return!0;return!1}doesRowsHaveCommonMerges(e,t,o){const s=this.getters.getSheet(e);for(let i=0;i<=this.getters.getNumberCols(e);i++)if(this.isInSameMerge(s.id,i,t,i,o))return!0;return!1}expandZone(e,t){let{left:o,right:s,top:i,bottom:n}=t,r={left:o,right:s,top:i,bottom:n};for(let t in this.merges[e]){const o=this.getMergeById(e,parseInt(t));o&&Qi(o,r)&&(r=Yi(o,r))}return Ki(r,t)?r:this.expandZone(e,r)}isInSameMerge(e,t,o,s,i){const n=this.getMerge({sheetId:e,col:t,row:o}),r=this.getMerge({sheetId:e,col:s,row:i});return!(!n||!r)&&Ki(n,r)}isInMerge({sheetId:e,col:t,row:o}){const s=this.mergeCellMap[e];return!!s&&(t in s&&Boolean(s[t]?.[o]))}getMainCellPosition(e){const t=this.getMerge(e);return t?{sheetId:e.sheetId,col:t.left,row:t.top}:e}isMergeHidden(e,t){const o=this.getters.getHiddenColsGroups(e),s=this.getters.getHiddenRowsGroups(e);for(let e of o)if(t.left>=e[0]&&t.right<=e[e.length-1])return!0;for(let e of s)if(t.top>=e[0]&&t.bottom<=e[e.length-1])return!0;return!1}isSingleCellOrMerge(e,t){const o=this.getMerge({sheetId:e,col:t.left,row:t.top});if(o)return Ki(t,o);const{numberOfCols:s,numberOfRows:i}=tn(t);return 1===s&&1===i}isMainCellPosition(e){return Ge(this.getMainCellPosition(e),e)}isMergeDestructive(e,t){let{left:o,right:s,top:i,bottom:n}=t;s=Ce(s,0,this.getters.getNumberCols(e)-1),n=Ce(n,0,this.getters.getNumberRows(e)-1);for(let t=i;t<=n;t++)for(let n=o;n<=s;n++)if(n!==o||t!==i){const o=this.getters.getCell({sheetId:e,col:n,row:t});if(o&&""!==o.content)return!0}return!1}getMergeById(e,t){const o=this.merges[e]?.[t];return void 0!==o?l_(t,o):void 0}checkDestructiveMerge({sheetId:e,target:t}){if(!this.getters.tryGetSheet(e))return"Success";return t.some((t=>this.isMergeDestructive(e,t)))?"MergeIsDestructive":"Success"}checkOverlap({target:e}){for(const t of e)for(const o of e)if(t!==o&&Qi(t,o))return"MergeOverlap";return"Success"}checkFrozenPanes({sheetId:e,target:t}){if(!this.getters.tryGetSheet(e))return"Success";const{xSplit:o,ySplit:s}=this.getters.getPaneDivisions(e);for(const e of t)if(e.left<o&&e.right>=o||e.top<s&&e.bottom>=s)return"FrozenPaneOverlap";return"Success"}checkMergedContentUpdate(e){const{col:t,row:o,content:s}=e;if(void 0===s)return"Success";const{col:i,row:n}=this.getMainCellPosition(e);return i===t&&n===o?"Success":"CellIsMerged"}checkMergeExists(e){const{sheetId:t,target:o}=e;for(const e of o){const{left:o,top:s}=e,i=this.getMerge({sheetId:t,col:o,row:s});if(void 0===i||!Ki(e,i))return"InvalidTarget"}return"Success"}addMerge(e,t){let{left:o,right:s,top:i,bottom:n}=t;s=Ce(s,0,this.getters.getNumberCols(e)-1),n=Ce(n,0,this.getters.getNumberRows(e)-1);if(_t(o,i)===_t(s,n))return;const r=this.getters.getCell({sheetId:e,col:o,row:i});let a=this.nextId++;this.history.update("merges",e,a,this.getters.getRangeFromSheetXC(e,Wi({left:o,top:i,right:s,bottom:n})));let l=new Set;for(let t=i;t<=n;t++)for(let n=o;n<=s;n++){n===o&&t===i||this.dispatch("UPDATE_CELL",{sheetId:e,col:n,row:t,style:r?r.style:null,content:""});const s=this.getMerge({sheetId:e,col:n,row:t});s&&l.add(s.id),this.history.update("mergeCellMap",e,n,t,a)}for(let t of l){const{top:o,bottom:s,left:i,right:n}=this.getMergeById(e,t);for(let t=o;t<=s;t++)for(let o=i;o<=n;o++){const s={sheetId:e,col:o,row:t},i=this.getMerge(s);i&&i.id===a||(this.history.update("mergeCellMap",e,o,t,void 0),this.dispatch("CLEAR_CELL",s))}this.history.update("merges",e,t,void 0)}}removeMerge(e,t){const{left:o,top:s,bottom:i,right:n}=t,r=this.getMerge({sheetId:e,col:o,row:s});if(void 0!==r&&Ki(t,r)){this.history.update("merges",e,r.id,void 0);for(let t=s;t<=i;t++)for(let s=o;s<=n;s++)this.history.update("mergeCellMap",e,s,t,void 0)}}applyRangeChangeOnSheet(e,t){const o=Object.entries(this.merges[e]||{});for(const[s,i]of o)if(i){const o=i.zone,n=t(i);switch(n.changeType){case"NONE":break;case"REMOVE":this.removeMerge(e,o);break;default:const{numberOfCols:t,numberOfRows:i}=tn(n.range.zone);1===t&&1===i?this.removeMerge(e,o):this.history.update("merges",e,parseInt(s,10),n.range)}}this.history.update("mergeCellMap",e,{});for(const t of this.getMerges(e))for(const{col:o,row:s}of sn(t))this.history.update("mergeCellMap",e,o,s,t.id)}import(e){const t=e.sheets||[];for(let e of t)this.history.update("merges",e.id,{}),this.history.update("mergeCellMap",e.id,{}),e.merges&&this.importMerges(e.id,e.merges)}importMerges(e,t){for(let o of t)this.addMerge(e,zi(o))}export(e){for(let t of e.sheets){const e=this.merges[t.id];e&&t.merges.push(...a_(e))}}exportForExcel(e){this.export(e)}}).add("headerSize",class extends s_{static getters=["getUserRowSize","getColSize"];sizes={};handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("sizes",e.sheetId,{COL:Array(this.getters.getNumberCols(e.sheetId)).fill(void 0),ROW:Array(this.getters.getNumberRows(e.sheetId)).fill(void 0)});break;case"DUPLICATE_SHEET":this.history.update("sizes",e.sheetIdTo,be(this.sizes[e.sheetId]));break;case"DELETE_SHEET":const t={...this.sizes};delete t[e.sheetId],this.history.update("sizes",t);break;case"REMOVE_COLUMNS_ROWS":{const t=et(this.sizes[e.sheetId][e.dimension],e.elements);this.history.update("sizes",e.sheetId,e.dimension,t);break}case"ADD_COLUMNS_ROWS":{let t=[...this.sizes[e.sheetId][e.dimension]];const o=We(e.position,e.base),s=t[e.base];t.splice(o,0,...Array(e.quantity).fill(s)),this.history.update("sizes",e.sheetId,e.dimension,t);break}case"RESIZE_COLUMNS_ROWS":if("ROW"===e.dimension)for(const t of e.elements)this.history.update("sizes",e.sheetId,e.dimension,t,e.size||void 0);else for(const t of e.elements)this.history.update("sizes",e.sheetId,e.dimension,t,e.size||void 0)}}getColSize(e,t){return Math.round(this.sizes[e]?.COL[t]||N)}getUserRowSize(e,t){const o=this.sizes[e]?.ROW[t];return o?Math.round(o):void 0}import(e){for(let t of e.sheets){const e={COL:Array(t.colNumber).fill(void 0),ROW:Array(t.rowNumber).fill(void 0)};for(let[o,s]of Object.entries(t.rows))s.size&&(e.ROW[o]=s.size);for(let[o,s]of Object.entries(t.cols))s.size&&(e.COL[o]=s.size);this.sizes[t.id]=e}}exportForExcel(e){this.exportData(e,!0)}export(e){this.exportData(e)}exportData(e,t=!1){for(let o of e.sheets){void 0===o.rows&&(o.rows={});for(const e of we(0,this.getters.getNumberRows(o.id)))(t||this.sizes[o.id].ROW[e])&&(o.rows[e]={...o.rows[e],size:this.getUserRowSize(o.id,e)??L});void 0===o.cols&&(o.cols={});for(let e of we(0,this.getters.getNumberCols(o.id)))(t||this.sizes[o.id].COL[e])&&(o.cols[e]={...o.cols[e],size:this.getColSize(o.id,e)})}}}).add("borders",class extends s_{static getters=["getCellBorder","getBordersColors"];borders={};allowDispatch(e){return"SET_BORDER"===e.type?this.checkBordersUnchanged(e):"Success"}handle(e){switch(e.type){case"ADD_MERGE":for(const t of e.target)this.addBordersToMerge(e.sheetId,t);break;case"DUPLICATE_SHEET":const t=this.borders[e.sheetId];if(t){const o=t.slice().map((e=>e?.slice().map((e=>({...e})))));this.history.update("borders",e.sheetIdTo,o)}break;case"DELETE_SHEET":const o={...this.borders};delete o[e.sheetId],this.history.update("borders",o);break;case"SET_BORDER":this.setBorder(e.sheetId,e.col,e.row,e.border);break;case"SET_ZONE_BORDERS":if(e.border){const t=e.target.map((t=>this.getters.expandZone(e.sheetId,t)));this.setBorders(e.sheetId,t,e.border.position,""===e.border.color?void 0:{style:e.border.style||X,color:e.border.color||K})}break;case"CLEAR_FORMATTING":this.clearBorders(e.sheetId,e.target);break;case"REMOVE_COLUMNS_ROWS":const s=[...e.elements].sort(((e,t)=>t-e));for(const t of xe(s))"COL"===e.dimension?this.shiftBordersHorizontally(e.sheetId,t[t.length-1]+1,-t.length):this.shiftBordersVertically(e.sheetId,t[t.length-1]+1,-t.length);break;case"ADD_COLUMNS_ROWS":"COL"===e.dimension?this.handleAddColumns(e):this.handleAddRows(e)}}handleAddColumns(e){let t,o;"before"===e.position?(this.shiftBordersHorizontally(e.sheetId,e.base,e.quantity,{moveFirstLeftBorder:!0}),t=e.base-1,o=e.base+e.quantity):(this.shiftBordersHorizontally(e.sheetId,e.base+1,e.quantity,{moveFirstLeftBorder:!1}),t=e.base,o=e.base+e.quantity+1),this.ensureColumnBorderContinuity(e.sheetId,t,o)}handleAddRows(e){let t,o;"before"===e.position?(this.shiftBordersVertically(e.sheetId,e.base,e.quantity,{moveFirstTopBorder:!0}),t=e.base-1,o=e.base+e.quantity):(this.shiftBordersVertically(e.sheetId,e.base+1,e.quantity,{moveFirstTopBorder:!1}),t=e.base,o=e.base+e.quantity+1),this.ensureRowBorderContinuity(e.sheetId,t,o)}getCellBorder({sheetId:e,col:t,row:o}){const s={top:this.borders[e]?.[t]?.[o]?.horizontal,bottom:this.borders[e]?.[t]?.[o+1]?.horizontal,left:this.borders[e]?.[t]?.[o]?.vertical,right:this.borders[e]?.[t+1]?.[o]?.vertical};return s.bottom||s.left||s.right||s.top?s:null}getBordersColors(e){const t=[],o=this.borders[e];if(o)for(const e of o.filter(Le))for(const o of e)o?.horizontal&&t.push(o.horizontal.color),o?.vertical&&t.push(o.vertical.color);return t}ensureColumnBorderContinuity(e,t,o){const s=we(t+1,o);for(let i=0;i<this.getters.getNumberRows(e);i++){const n=this.getCellBorder({sheetId:e,col:t,row:i}),r=this.getCellBorder({sheetId:e,col:o,row:i});if(n&&r){const t=this.getCommonSides(n,r);for(let o of s)this.addBorder(e,o,i,t)}}}ensureRowBorderContinuity(e,t,o){const s=we(t+1,o);for(let i=0;i<this.getters.getNumberCols(e);i++){const n=this.getCellBorder({sheetId:e,col:i,row:t}),r=this.getCellBorder({sheetId:e,col:i,row:o});if(n&&r){const t=this.getCommonSides(n,r);for(let o of s)this.addBorder(e,i,o,t)}}}getCommonSides(e,t){const o={};for(let s of["top","bottom","left","right"])e[s]&&e[s]===t[s]&&(o[s]=e[s]);return o}getColumnsWithBorders(e){const t=this.borders[e];return t?Object.keys(t).map((e=>parseInt(e,10))):[]}getRowsWithBorders(e){const t=this.borders[e]?.filter(Le);if(!t)return[];const o=new Set;for(const e of t)for(const t in e)o.add(parseInt(t,10));return Array.from(o)}getRowsRange(e){return this.borders[e]?we(0,this.getters.getNumberRows(e)+1):[]}shiftBordersHorizontally(e,t,o,{moveFirstLeftBorder:s}={}){this.borders[e]&&(o<0&&this.moveBordersOfColumn(e,t,o,"vertical",{destructive:!1}),this.getColumnsWithBorders(e).filter((e=>e>=t)).sort(((e,t)=>o<0?e-t:t-e)).forEach((i=>{(i===t&&s||i!==t)&&this.moveBordersOfColumn(e,i,o,"vertical"),this.moveBordersOfColumn(e,i,o,"horizontal")})))}shiftBordersVertically(e,t,o,{moveFirstTopBorder:s}={}){this.borders[e]&&(o<0&&this.moveBordersOfRow(e,t,o,"horizontal",{destructive:!1}),this.getRowsWithBorders(e).filter((e=>e>=t)).sort(((e,t)=>o<0?e-t:t-e)).forEach((i=>{(i===t&&s||i!==t)&&this.moveBordersOfRow(e,i,o,"horizontal"),this.moveBordersOfRow(e,i,o,"vertical")})))}moveBordersOfRow(e,t,o,s,{destructive:i}={destructive:!0}){const n=this.borders[e];n&&this.getColumnsWithBorders(e).forEach((r=>{const a=n[r]?.[t+o]?.[s],l=n[r]?.[t]?.[s];this.history.update("borders",e,r,t+o,s,i?l:l||a),this.history.update("borders",e,r,t,s,void 0)}))}moveBordersOfColumn(e,t,o,s,{destructive:i}={destructive:!0}){const n=this.borders[e];n&&this.getRowsRange(e).forEach((r=>{const a=n[t+o]?.[r]?.[s],l=n[t]?.[r]?.[s];this.history.update("borders",e,t+o,r,s,i?l:l||a),this.history.update("borders",e,t,r,s,void 0)}))}setBorder(e,t,o,s,i=!0){!i&&this.borders?.[e]?.[t]?.[o]?.vertical||this.history.update("borders",e,t,o,"vertical",s?.left),!i&&this.borders?.[e]?.[t]?.[o]?.horizontal||this.history.update("borders",e,t,o,"horizontal",s?.top),!i&&this.borders?.[e]?.[t+1]?.[o]?.vertical||this.history.update("borders",e,t+1,o,"vertical",s?.right),!i&&this.borders?.[e]?.[t]?.[o+1]?.horizontal||this.history.update("borders",e,t,o+1,"horizontal",s?.bottom)}clearBorders(e,t){for(let o of Pi(t)){for(let t=o.top;t<=o.bottom;t++){this.history.update("borders",e,o.right+1,t,"vertical",void 0);for(let s=o.left;s<=o.right;s++)this.history.update("borders",e,s,t,void 0)}for(let t=o.left;t<=o.right;t++)this.history.update("borders",e,t,o.bottom+1,"horizontal",void 0)}}addBorder(e,t,o,s){this.setBorder(e,t,o,{...this.getCellBorder({sheetId:e,col:t,row:o}),...s})}setBorders(e,t,o,s){if("clear"===o)return this.clearBorders(e,t);for(let i of Pi(t)){if("h"===o||"hv"===o||"all"===o)for(let t=i.top+1;t<=i.bottom;t++)for(let o=i.left;o<=i.right;o++)this.addBorder(e,o,t,{top:s});if("v"===o||"hv"===o||"all"===o)for(let t=i.top;t<=i.bottom;t++)for(let o=i.left+1;o<=i.right;o++)this.addBorder(e,o,t,{left:s});if("left"===o||"all"===o||"external"===o)for(let t=i.top;t<=i.bottom;t++)this.addBorder(e,i.left,t,{left:s});if("right"===o||"all"===o||"external"===o)for(let t=i.top;t<=i.bottom;t++)this.addBorder(e,i.right+1,t,{left:s});if("top"===o||"all"===o||"external"===o)for(let t=i.left;t<=i.right;t++)this.addBorder(e,t,i.top,{top:s});if("bottom"===o||"all"===o||"external"===o)for(let t=i.left;t<=i.right;t++)this.addBorder(e,t,i.bottom+1,{top:s})}}addBordersToMerge(e,t){const{left:o,right:s,top:i,bottom:n}=t,r=this.getCellBorder({sheetId:e,col:o,row:i}),a=this.getCellBorder({sheetId:e,col:s,row:n});this.clearBorders(e,[t]),r?.top&&this.setBorders(e,[{...t,bottom:i}],"top",r.top),r?.left&&this.setBorders(e,[{...t,right:o}],"left",r.left),a?.bottom?this.setBorders(e,[{...t,top:n}],"bottom",a.bottom):r?.bottom&&this.setBorders(e,[{...t,top:n}],"bottom",r.bottom),a?.right?this.setBorders(e,[{...t,left:s}],"right",a.right):r?.right&&this.setBorders(e,[{...t,left:s}],"right",r.right)}checkBordersUnchanged(e){const t=this.getCellBorder(e),o=!(e.border?.bottom||e.border?.left||e.border?.right||e.border?.top);return!t&&o||Ge(t,e.border)?"NoChanges":"Success"}import(e){if(Object.keys(e.borders||{}).length)for(let t of e.sheets)for(const o in t.cells){const s=t.cells[o];if(s?.border){const i=e.borders[s.border],{col:n,row:r}=Ot(o);this.setBorder(t.id,n,r,i,!1)}}for(let t of e.sheets)if(t.merges)for(let e of t.merges)this.addBordersToMerge(t.id,zi(e))}export(e){const t={};for(let o of e.sheets)for(let e=0;e<o.colNumber;e++)for(let s=0;s<o.rowNumber;s++){const i=this.getCellBorder({sheetId:o.id,col:e,row:s});if(i){const n=_t(e,s),r=o.cells[n],a=Ue(i,t);r?r.border=a:o.cells[n]={border:a}}}e.borders=t}exportForExcel(e){this.export(e)}}).add("conditional formatting",class extends s_{static getters=["getConditionalFormats","getRulesSelection","getRulesByCell","getAdaptedCfRanges"];cfRules={};loopThroughRangesOfSheet(e,t){for(const o of this.cfRules[e])for(const s of o.ranges){const i=t(s);switch(i.changeType){case"REMOVE":let t=o.ranges.slice();t.splice(o.ranges.indexOf(s),1),t.length>=1?this.history.update("cfRules",e,this.cfRules[e].indexOf(o),"ranges",t):this.removeConditionalFormatting(o.id,e);break;case"RESIZE":case"MOVE":case"CHANGE":this.history.update("cfRules",e,this.cfRules[e].indexOf(o),"ranges",o.ranges.indexOf(s),i.range)}}}adaptRanges(e,t){if(t)this.loopThroughRangesOfSheet(t,e);else for(const t of Object.keys(this.cfRules))this.loopThroughRangesOfSheet(t,e)}allowDispatch(e){switch(e.type){case"ADD_CONDITIONAL_FORMAT":return this.checkValidations(e,this.checkCFRule,this.checkEmptyRange);case"CHANGE_CONDITIONAL_FORMAT_PRIORITY":return this.checkValidPriorityChange(e.cfId,e.delta,e.sheetId)}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.cfRules[e.sheetId]=[];break;case"DUPLICATE_SHEET":this.history.update("cfRules",e.sheetIdTo,[]);for(const t of this.getConditionalFormats(e.sheetId))this.addConditionalFormatting(t,e.sheetIdTo);break;case"DELETE_SHEET":const t=Object.assign({},this.cfRules);delete t[e.sheetId],this.history.update("cfRules",t);break;case"ADD_CONDITIONAL_FORMAT":const o={...e.cf,ranges:e.ranges.map((t=>this.getters.getRangeString(this.getters.getRangeFromRangeData(t),e.sheetId)))};this.addConditionalFormatting(o,e.sheetId);break;case"REMOVE_CONDITIONAL_FORMAT":this.removeConditionalFormatting(e.id,e.sheetId);break;case"CHANGE_CONDITIONAL_FORMAT_PRIORITY":this.changeCFPriority(e.cfId,e.delta,e.sheetId)}}import(e){for(let t of e.sheets)this.cfRules[t.id]=t.conditionalFormats.map((e=>this.mapToConditionalFormatInternal(t.id,e)))}export(e){if(e.sheets)for(let t of e.sheets)this.cfRules[t.id]&&(t.conditionalFormats=this.cfRules[t.id].map((e=>this.mapToConditionalFormat(t.id,e))))}exportForExcel(e){if(e.sheets)for(let t of e.sheets)this.cfRules[t.id]&&(t.conditionalFormats=this.cfRules[t.id].map((e=>this.mapToConditionalFormat(t.id,e,{useFixedReference:!0}))))}getConditionalFormats(e){return this.cfRules[e]?.map((t=>this.mapToConditionalFormat(e,t)))||[]}getRulesSelection(e,t){const o=new Set;return t.forEach((t=>{this.getRulesByZone(e,t).forEach((e=>{o.add(e)}))})),Array.from(o)}getRulesByZone(e,t){const o=new Set;for(let s=t.top;s<=t.bottom;s++)for(let i=t.left;i<=t.right;i++){this.getRulesByCell(e,i,s).forEach((e=>{o.add(e.id)}))}return o}getRulesByCell(e,t,o){const s=[];for(let i of this.cfRules[e])for(let e of i.ranges)Ji(t,o,e.zone)&&s.push(i);return new Set(s.map((t=>this.mapToConditionalFormat(e,t))))}getAdaptedCfRanges(e,t,o,s){if(0===o.length&&0===s.length)return;const i=this.getters.getConditionalFormats(e),n=i.findIndex((e=>e.id===t.id));let r=[];return n>-1&&(r=i[n].ranges.map(Hi)),r=r.concat(o),Pi(r,s).map((t=>this.getters.getRangeDataFromZone(e,t)))}mapToConditionalFormat(e,t,{useFixedReference:o}={useFixedReference:!1}){return{...t,ranges:t.ranges.map((t=>this.getters.getRangeString(t,e,{useFixedReference:o})))}}mapToConditionalFormatInternal(e,t){const o={...t,ranges:t.ranges.map((t=>this.getters.getRangeFromSheetXC(e,t)))};return o}addConditionalFormatting(e,t){const o=this.cfRules[t].slice(),s=o.findIndex((t=>t.id===e.id)),i=this.mapToConditionalFormatInternal(t,e);s>-1?o.splice(s,1,i):o.push(i),this.history.update("cfRules",t,o)}checkValidPriorityChange(e,t,o){if(!this.cfRules[o])return"InvalidSheetId";const s=this.cfRules[o].findIndex((t=>t.id===e));if(-1===s)return"InvalidConditionalFormatId";const i=s-t;return i<0||i>=this.cfRules[o].length?"InvalidConditionalFormatId":"Success"}checkEmptyRange(e){return e.ranges.length?"Success":"EmptyRange"}checkCFRule(e){const t=e.cf.rule;switch(t.type){case"CellIsRule":return this.checkValidations(t,this.checkOperatorArgsNumber(2,["Between","NotBetween"]),this.checkOperatorArgsNumber(1,["BeginsWith","ContainsText","EndsWith","GreaterThan","GreaterThanOrEqual","LessThan","LessThanOrEqual","NotContains"]),this.checkOperatorArgsNumber(0,["IsEmpty","IsNotEmpty"]));case"ColorScaleRule":return this.checkValidations(t,this.chainValidations(this.checkThresholds(this.checkFormulaCompilation)),this.chainValidations(this.checkThresholds(this.checkNaN),this.batchValidations(this.checkMinBiggerThanMax,this.checkMinBiggerThanMid,this.checkMidBiggerThanMax)));case"IconSetRule":return this.checkValidations(t,this.chainValidations(this.checkInflectionPoints(this.checkNaN),this.checkLowerBiggerThanUpper),this.chainValidations(this.checkInflectionPoints(this.checkFormulaCompilation)))}return"Success"}checkOperatorArgsNumber(e,t){if(e>2)throw new Error("Checking more than 2 arguments is currently not supported. Add the appropriate CommandResult if you want to.");return o=>{if(t.includes(o.operator)){const t=[],s=e=>void 0===e||""===e;return e>=1&&s(o.values[0])&&t.push("FirstArgMissing"),e>=2&&s(o.values[1])&&t.push("SecondArgMissing"),t.length?t:"Success"}return"Success"}}checkNaN(e,t){if(["number","percentage","percentile"].includes(e.type)&&(""===e.value||isNaN(e.value)))switch(t){case"min":return"MinNaN";case"max":return"MaxNaN";case"mid":return"MidNaN";case"upperInflectionPoint":return"ValueUpperInflectionNaN";case"lowerInflectionPoint":return"ValueLowerInflectionNaN"}return"Success"}checkFormulaCompilation(e,t){if("formula"!==e.type)return"Success";try{gv(e.value||"")}catch(e){switch(t){case"min":return"MinInvalidFormula";case"max":return"MaxInvalidFormula";case"mid":return"MidInvalidFormula";case"upperInflectionPoint":return"ValueUpperInvalidFormula";case"lowerInflectionPoint":return"ValueLowerInvalidFormula"}}return"Success"}checkThresholds(e){return this.batchValidations((t=>e(t.minimum,"min")),(t=>e(t.maximum,"max")),(t=>t.midpoint?e(t.midpoint,"mid"):"Success"))}checkInflectionPoints(e){return this.batchValidations((t=>e(t.lowerInflectionPoint,"lowerInflectionPoint")),(t=>e(t.upperInflectionPoint,"upperInflectionPoint")))}checkLowerBiggerThanUpper(e){const t=e.lowerInflectionPoint.value,o=e.upperInflectionPoint.value;return["number","percentage","percentile"].includes(e.lowerInflectionPoint.type)&&e.lowerInflectionPoint.type===e.upperInflectionPoint.type&&Number(t)>Number(o)?"LowerBiggerThanUpper":"Success"}checkMinBiggerThanMax(e){const t=e.minimum.value,o=e.maximum.value;return["number","percentage","percentile"].includes(e.minimum.type)&&e.minimum.type===e.maximum.type&&r_(t)>=r_(o)?"MinBiggerThanMax":"Success"}checkMidBiggerThanMax(e){const t=e.midpoint?.value,o=e.maximum.value;return e.midpoint&&["number","percentage","percentile"].includes(e.midpoint.type)&&e.midpoint.type===e.maximum.type&&r_(t)>=r_(o)?"MidBiggerThanMax":"Success"}checkMinBiggerThanMid(e){const t=e.minimum.value,o=e.midpoint?.value;return e.midpoint&&["number","percentage","percentile"].includes(e.midpoint.type)&&e.minimum.type===e.midpoint.type&&r_(t)>=r_(o)?"MinBiggerThanMid":"Success"}removeConditionalFormatting(e,t){const o=this.cfRules[t].findIndex((t=>t.id===e));if(-1!==o){const e=this.cfRules[t].slice();e.splice(o,1),this.history.update("cfRules",t,e)}}changeCFPriority(e,t,o){const s=this.cfRules[o].findIndex((t=>t.id===e)),i=this.cfRules[o][s],n=s-t,r=[...this.cfRules[o]];r.splice(s,1),r.splice(n,0,i),this.history.update("cfRules",o,r)}}).add("figures",class extends s_{static getters=["getFigures","getFigure","getFigureSheetId"];figures={};allowDispatch(e){switch(e.type){case"CREATE_FIGURE":return this.checkFigureDuplicate(e.figure.id);case"UPDATE_FIGURE":case"DELETE_FIGURE":return this.checkFigureExists(e.sheetId,e.id);default:return"Success"}}beforeHandle(e){if("DELETE_SHEET"===e.type)this.getters.getFigures(e.sheetId).forEach((t=>{this.dispatch("DELETE_FIGURE",{id:t.id,sheetId:e.sheetId})}))}handle(e){switch(e.type){case"CREATE_SHEET":this.figures[e.sheetId]={};break;case"DELETE_SHEET":this.deleteSheet(e.sheetId);break;case"CREATE_FIGURE":this.addFigure(e.figure,e.sheetId);break;case"UPDATE_FIGURE":const{type:t,sheetId:o,...s}=e,i=s;this.updateFigure(o,i);break;case"DELETE_FIGURE":this.removeFigure(e.id,e.sheetId);break;case"REMOVE_COLUMNS_ROWS":this.onRowColDelete(e.sheetId,e.dimension)}}onRowColDelete(e,t){"ROW"===t?this.onRowDeletion(e):this.onColDeletion(e)}onRowDeletion(e){const t=this.getters.getNumberRows(e);let o=0;for(let s=0;s<t;s++)o+=this.getters.getUserRowSize(e,s)||L;const s=this.getters.getFigures(e);for(const t of s){const s=Math.min(t.y,o-t.height);s!==t.y&&this.dispatch("UPDATE_FIGURE",{sheetId:e,id:t.id,y:s})}}onColDeletion(e){const t=this.getters.getNumberCols(e);let o=0;for(let s=0;s<t;s++)o+=this.getters.getColSize(e,s);const s=this.getters.getFigures(e);for(const t of s){const s=Math.min(t.x,o-t.width);s!==t.x&&this.dispatch("UPDATE_FIGURE",{sheetId:e,id:t.id,x:s})}}updateFigure(e,t){if("id"in t)for(const[o,s]of Object.entries(t))switch(o){case"x":case"y":void 0!==s&&this.history.update("figures",e,t.id,o,Math.max(s,0));break;case"width":case"height":void 0!==s&&this.history.update("figures",e,t.id,o,s)}}addFigure(e,t){this.history.update("figures",t,e.id,e)}deleteSheet(e){this.history.update("figures",e,void 0)}removeFigure(e,t){this.history.update("figures",t,e,void 0)}checkFigureExists(e,t){return void 0===this.figures[e]?.[t]?"FigureDoesNotExist":"Success"}checkFigureDuplicate(e){return Object.values(this.figures).find((t=>t?.[e]))?"DuplicatedFigureId":"Success"}getFigures(e){return Object.values(this.figures[e]||{}).filter(Le)}getFigure(e,t){return this.figures[e]?.[t]}getFigureSheetId(e){return Object.keys(this.figures).find((t=>void 0!==this.figures[t]?.[e]))}import(e){for(let t of e.sheets){const e={};t.figures.forEach((t=>{e[t.id]=t})),this.figures[t.id]=e}}export(e){for(const t of e.sheets)for(const e of this.getFigures(t.id)){const o=void 0;t.figures.push({...e,data:o})}}exportForExcel(e){this.export(e)}}).add("chart",class extends s_{static getters=["isChartDefined","getChartDefinition","getChartType","getChartIds","getChart","getContextCreationChart"];charts={};createChart=function(e){const t=US.getAll().sort(((e,t)=>e.sequence-t.sequence));return function(o,s,i){const n=t.find((e=>e.match(s.type)));if(!n)throw new Error(`No builder for this chart: ${s.type}`);return n.createChart(s,i,e)}}(this.getters);validateChartDefinition=e=>function(e,t){const o=US.getAll().find((e=>e.match(t.type)));if(!o)throw new Error("Unknown chart type.");return o.validateChartDefinition(e,t)}(this,e.definition);adaptRanges(e){for(const[t,o]of Object.entries(this.charts))this.history.update("charts",t,o?.updateRanges(e))}allowDispatch(e){switch(e.type){case"CREATE_CHART":return this.checkValidations(e,this.chainValidations(this.validateChartDefinition,this.checkChartDuplicate));case"UPDATE_CHART":return this.checkValidations(e,this.chainValidations(this.validateChartDefinition,this.checkChartExists));default:return"Success"}}handle(e){switch(e.type){case"CREATE_CHART":this.addFigure(e.id,e.sheetId,e.position,e.size),this.addChart(e.id,e.definition);break;case"UPDATE_CHART":this.addChart(e.id,e.definition);break;case"DUPLICATE_SHEET":{const t=this.getters.getFigures(e.sheetId);for(const o of t)if("chart"===o.tag){const t=o.id.split(te).pop(),s=`${e.sheetIdTo}${te}${t}`,i=this.charts[o.id]?.copyForSheetId(e.sheetIdTo);i&&this.dispatch("CREATE_CHART",{id:s,position:{x:o.x,y:o.y},size:{width:o.width,height:o.height},definition:i.getDefinition(),sheetId:e.sheetIdTo})}break}case"DELETE_FIGURE":this.history.update("charts",e.id,void 0);break;case"DELETE_SHEET":for(let t of this.getChartIds(e.sheetId))this.history.update("charts",t,void 0)}}getContextCreationChart(e){return this.charts[e]?.getContextCreation()}getChart(e){return this.charts[e]}getChartType(e){const t=this.charts[e]?.type;if(!t)throw new Error("Chart not defined.");return t}isChartDefined(e){return e in this.charts&&void 0!==this.charts}getChartIds(e){return Object.entries(this.charts).filter((([,t])=>t?.sheetId===e)).map((([e])=>e))}getChartDefinition(e){const t=this.charts[e]?.getDefinition();if(!t)throw new Error(`There is no chart with the given figureId: ${e}`);return t}import(e){for(let t of e.sheets)if(t.figures)for(let e of t.figures)"chart"===e.tag&&(this.charts[e.id]=this.createChart(e.id,e.data,t.id))}export(e){if(e.sheets)for(let t of e.sheets){const e=this.getters.getFigures(t.id),o=[];for(let t of e){const e=t;if(e&&"chart"===e.tag){const t=this.charts[e.id]?.getDefinition();t&&(e.data=t,o.push(e))}else o.push(e)}t.figures=o}}addFigure(e,t,o={x:0,y:0},s={width:536,height:335}){if(this.getters.getFigure(t,e))return;const i={id:e,x:o.x,y:o.y,width:s.width,height:s.height,tag:"chart"};this.dispatch("CREATE_FIGURE",{sheetId:t,figure:i})}addChart(e,t){const o=this.getters.getFigureSheetId(e);o&&this.history.update("charts",e,this.createChart(e,t,o))}checkChartDuplicate(e){return this.getters.getFigureSheetId(e.id)?"DuplicatedChartId":"Success"}checkChartExists(e){return this.getters.getFigureSheetId(e.id)?"Success":"ChartDoesNotExist"}}).add("image",class extends s_{static getters=["getImage","getImagePath","getImageSize"];fileStore;images={};syncedImages=new Set;constructor(e){super(e),this.fileStore=e.external.fileStore}allowDispatch(e){return"CREATE_IMAGE"===e.type&&this.getters.getFigure(e.sheetId,e.figureId)?"InvalidFigureId":"Success"}handle(e){switch(e.type){case"CREATE_IMAGE":this.addImage(e.figureId,e.sheetId,e.position,e.size),this.history.update("images",e.sheetId,e.figureId,e.definition),this.syncedImages.add(e.definition.path);break;case"DUPLICATE_SHEET":{const t=this.getters.getFigures(e.sheetId);for(const o of t)if("image"===o.tag){const t=o.id.split(te).pop(),s=`${e.sheetIdTo}${te}${t}`,i=this.getImage(o.id);if(i){const t={width:o.width,height:o.height};this.dispatch("CREATE_IMAGE",{sheetId:e.sheetIdTo,figureId:s,position:{x:o.x,y:o.y},size:t,definition:be(i)})}}break}case"DELETE_FIGURE":this.history.update("images",e.sheetId,e.id,void 0);break;case"DELETE_SHEET":this.history.update("images",e.sheetId,void 0)}}garbageCollectExternalResources(){const e=new Set(this.getAllImages().map((e=>e.path)));for(const t of this.syncedImages)e.has(t)||this.fileStore?.delete(t)}getImage(e){for(const t of Object.values(this.images))if(t&&t[e])return t[e];throw new Error(`There is no image with the given figureId: ${e}`)}getImagePath(e){return this.getImage(e).path}getImageSize(e){return this.getImage(e).size}addImage(e,t,o,s){const i={id:e,x:o.x,y:o.y,width:s.width,height:s.height,tag:"image"};this.dispatch("CREATE_FIGURE",{sheetId:t,figure:i})}import(e){for(const t of e.sheets){const e=(t.figures||[]).filter((e=>"image"===e.tag));for(const o of e)this.history.update("images",t.id,o.id,o.data),this.syncedImages.add(o.data.path)}}export(e){for(const t of e.sheets){const e=t.figures.filter((e=>"image"===e.tag));for(const o of e)o.data=this.images[t.id]?.[o.id]}}exportForExcel(e){for(const t of e.sheets){t.images||(t.images=[]);const e=this.getters.getFigures(t.id),o=[];for(const t of e)if("image"===t?.tag){const e=this.getImage(t.id);e&&o.push({...t,data:be(e)})}t.images=[...t.images,...o]}}getAllImages(){const e=[];for(const t in this.images)e.push(...Object.values(this.images[t]||{}).filter(Le));return e}}).add("pivot_core",class extends s_{static getters=["getPivotCoreDefinition","getPivotDisplayName","getPivotId","getPivotFormulaId","getPivotIds","getPivotName","isExistingPivot"];nextFormulaId=1;pivots={};formulaIds={};allowDispatch(e){switch(e.type){case"UPDATE_PIVOT":if(Ge(e.pivot,this.pivots[e.pivotId]?.definition))return"NoChanges";break;case"RENAME_PIVOT":if(!(e.pivotId in this.pivots))return"PivotIdNotFound";if(""===e.name)return"EmptyName";break;case"INSERT_PIVOT":case"DUPLICATE_PIVOT":if(!(e.pivotId in this.pivots))return"PivotIdNotFound"}return"Success"}handle(e){switch(e.type){case"ADD_PIVOT":{const{pivotId:t,pivot:o}=e;this.addPivot(t,o);break}case"INSERT_PIVOT":{const{sheetId:t,col:o,row:s,pivotId:i,table:n}=e,r={sheetId:t,col:o,row:s},{cols:a,rows:l,measures:c,fieldsType:h}=n,d=new qI(a,l,c,h||{}),u=this.getPivotFormulaId(i);this.insertPivot(r,u,d);break}case"RENAME_PIVOT":this.history.update("pivots",e.pivotId,"definition","name",e.name);break;case"REMOVE_PIVOT":{const t={...this.pivots};delete t[e.pivotId];const o=this.getPivotFormulaId(e.pivotId);this.history.update("formulaIds",o,void 0),this.history.update("pivots",t);break}case"DUPLICATE_PIVOT":{const{pivotId:t,newPivotId:o}=e,s=be(this.getPivotCore(t).definition);s.name=e.duplicatedPivotName??s.name+" (copy)",this.addPivot(o,s);break}case"UPDATE_PIVOT":this.history.update("pivots",e.pivotId,"definition",e.pivot)}}getPivotDisplayName(e){return`(#${this.getPivotFormulaId(e)}) ${this.getPivotName(e)}`}getPivotName(e){return bo(this.getPivotCore(e).definition.name)}getPivotCoreDefinition(e){return this.getPivotCore(e).definition}getPivotId(e){return this.formulaIds[e]}getPivotFormulaId(e){return this.getPivotCore(e).formulaId}getPivotIds(){return Object.keys(this.pivots)}isExistingPivot(e){return e in this.pivots}addPivot(e,t,o=this.nextFormulaId.toString()){this.history.update("pivots",e,{definition:t,formulaId:o}),this.history.update("formulaIds",o,e),this.history.update("nextFormulaId",this.nextFormulaId+1)}insertPivot(e,t,o){this.resizeSheet(e.sheetId,e,o);const s=o.getPivotCells();for(let o=0;o<s.length;o++)for(let i=0;i<s[o].length;i++){const n=s[o][i];this.dispatch("UPDATE_CELL",{sheetId:e.sheetId,col:e.col+o,row:e.row+i,content:Jr(t,n)})}}resizeSheet(e,{col:t,row:o},s){const i=s.getNumberOfDataColumns()+1,n=this.getters.getNumberCols(e),r=n-t;r<i&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:n-1,sheetId:e,quantity:i-r,position:"after"});const a=s.columns.length+s.rows.length,l=this.getters.getNumberRows(e),c=l-o;c<a&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"ROW",base:l-1,sheetId:e,quantity:a-c,position:"after"})}getPivotCore(e){const t=this.pivots[e];if(!t)throw new Error(`Pivot with id ${e} not found`);return t}import(e){if(e.pivots)for(const[t,o]of Object.entries(e.pivots))this.addPivot(t,o,o.formulaId);this.history.update("nextFormulaId",e.pivotNextId||qr(this.pivots)+1)}export(e){e.pivots={};for(const t in this.pivots)e.pivots[t]={...this.getPivotCoreDefinition(t),formulaId:this.getPivotFormulaId(t)};e.pivotNextId=this.nextFormulaId}}).add("spreadsheet_pivot_core",class extends s_{adaptRanges(e){for(const t of this.getters.getPivotIds()){const o=this.getters.getPivotCoreDefinition(t);if("SPREADSHEET"===o.type&&o.dataSet){const{sheetId:s,zone:i}=o.dataSet,n=h_(this.getters.getRangeFromZone(s,i),e),r=n&&{sheetId:n.sheetId,zone:n.zone};this.dispatch("UPDATE_PIVOT",{pivotId:t,pivot:{...o,dataSet:r}})}}}}).add("tableStyle",class extends s_{static getters=["getNewCustomTableStyleName","getTableStyle","getTableStyles","isTableStyleEditable"];styles={};allowDispatch(e){switch(e.type){case"CREATE_TABLE":case"UPDATE_TABLE":if(e.config?.styleId&&!this.styles[e.config.styleId])return"InvalidTableConfig";break;case"CREATE_TABLE_STYLE":if(!Xy[e.templateName])return"InvalidTableStyle";try{ht(e.primaryColor)}catch(e){return"InvalidTableStyle"}}return"Success"}handle(e){switch(e.type){case"CREATE_TABLE_STYLE":const t=Ky(e.tableStyleName,e.templateName,e.primaryColor);this.history.update("styles",e.tableStyleId,t);break;case"REMOVE_TABLE_STYLE":const o={...this.styles};delete o[e.tableStyleId],this.history.update("styles",o);for(const t of this.getters.getSheetIds())for(const o of this.getters.getCoreTables(t))o.config.styleId===e.tableStyleId&&this.dispatch("UPDATE_TABLE",{sheetId:t,zone:o.range.zone,config:{styleId:My.styleId}})}}getTableStyle(e){if(!this.styles[e])throw new Error(`Table style ${e} does not exist`);return this.styles[e]}getTableStyles(){return this.styles}getNewCustomTableStyleName(){let e=bo("Custom Table Style");const t=new Set(Object.values(this.styles).map((e=>e.displayName)));if(!t.has(e))return e;let o=2;for(;t.has(`${e} ${o}`);)o++;return`${e} ${o}`}isTableStyleEditable(e){return!Yy[e]}import(e){for(const e in Yy)this.styles[e]=Yy[e];for(const t in e.customTableStyles){const o=e.customTableStyles[t];this.styles[t]=Ky(o.displayName,o.templateName,o.primaryColor)}}export(e){const t={};for(const e in this.styles)Yy[e]||(t[e]={displayName:this.styles[e].displayName,templateName:this.styles[e].templateName,primaryColor:this.styles[e].primaryColor});e.customTableStyles=t}}),AD=(new n).add("ui_sheet",class extends d_{static getters=["doesCellHaveGridIcon","getCellWidth","getCellIconSrc","getTextWidth","getCellText","getCellMultiLineText","getContiguousZone"];ctx=document.createElement("canvas").getContext("2d");allowDispatch(e){return this.chainValidations(this.checkSheetExists,this.checkZonesAreInSheet)(e)}handle(e){switch(e.type){case"AUTORESIZE_COLUMNS":for(let t of e.cols){const o=this.getColMaxWidth(e.sheetId,t);0!==o&&this.dispatch("RESIZE_COLUMNS_ROWS",{elements:[t],dimension:"COL",size:o,sheetId:e.sheetId})}break;case"AUTORESIZE_ROWS":for(let t of e.rows)this.dispatch("RESIZE_COLUMNS_ROWS",{elements:[t],dimension:"ROW",size:null,sheetId:e.sheetId})}}getCellWidth(e){const t=this.getters.getCellComputedStyle(e);let o=0;const s=this.getters.getEvaluatedCell(e).formattedValue;if(s){const e=Mn(this.ctx,s,t,void 0);o+=Math.max(...e.map((e=>In(this.ctx,e,t))))}if(this.getters.getCellIconSrc(e)&&(o+=function(e){return Dn(e)+8}(t)),this.getters.doesCellHaveGridIcon(e)&&(o+=20),0===o)return 0;if(o+=2*U,"wrap"===t.wrapping){const t=this.getters.getColSize(this.getters.getActiveSheetId(),e.col);return Math.min(t,o)}return o}getCellIconSrc(e){const t=QE.getAll();for(const o of t){const t=o(this.getters,e);if(t)return t}}getTextWidth(e,t){return In(this.ctx,e,t)}getCellText(e,t=!1){const o=this.getters.getCell(e);return t&&o?.isFormula?ur(o.content,this.getters.getLocale()):t&&!o?.content?"":this.getters.getEvaluatedCell(e).formattedValue}getCellMultiLineText(e,t){const o=this.getters.getCellStyle(e),s=this.getters.getCellText(e,this.getters.shouldShowFormulas());return Mn(this.ctx,s,o,t)}doesCellHaveGridIcon(e){const t=this.getters.isFilterHeader(e),o=!this.getters.isReadonly()&&this.getters.cellHasListDataValidationIcon(e);return t||o}getContiguousZone(e,t){const o=t=>{for(const o of we(t.left,t.right+1)){if(!this.isCellEmpty({sheetId:e,col:o,row:t.top-1}))return{...t,top:t.top-1};if(!this.isCellEmpty({sheetId:e,col:o,row:t.bottom+1}))return{...t,bottom:t.bottom+1}}for(const o of we(t.top,t.bottom+1)){if(!this.isCellEmpty({sheetId:e,col:t.left-1,row:o}))return{...t,left:t.left-1};if(!this.isCellEmpty({sheetId:e,col:t.right+1,row:o}))return{...t,right:t.right+1}}return t};let s=!1,i=t;do{s=!1;const e=o(i);Ki(i,e)||(s=!0,i=e)}while(s);return i}isCellEmpty(e){const t=this.getters.getMainCellPosition(e);return this.getters.getEvaluatedCell(t).type===So.empty}getColMaxWidth(e,t){const o=sn(this.getters.getColsZone(e,t,t)).map((t=>this.getCellWidth({sheetId:e,...t})));return Math.max(0,it(o))}checkSheetExists(e){return"sheetId"in e&&void 0===this.getters.tryGetSheet(e.sheetId)?"InvalidSheetId":"Success"}checkZonesAreInSheet(e){const t="sheetId"in e?e.sheetId:this.getters.tryGetActiveSheetId(),o=this.getters.getCommandZones(e);return!t&&o.length>0?"NoActiveSheet":t&&o.length>0?this.getters.checkZonesExistInSheet(t,o):"Success"}}).add("ui_options",class extends d_{static getters=["shouldShowFormulas"];showFormulas=!1;handle(e){if("SET_FORMULA_VISIBILITY"===e.type)this.showFormulas=e.show}shouldShowFormulas(){return this.showFormulas}}).add("autofill",class extends d_{static layers=["Autofill"];static getters=["getAutofillTooltip"];autofillZone;steps;lastCellSelected={};direction;tooltip;allowDispatch(e){if("AUTOFILL_SELECT"===e.type){const t=this.getters.getActiveSheetId();return this.lastCellSelected.col=-1===e.col?this.lastCellSelected.col:Ce(e.col,0,this.getters.getNumberCols(t)),this.lastCellSelected.row=-1===e.row?this.lastCellSelected.row:Ce(e.row,0,this.getters.getNumberRows(t)),void 0!==this.lastCellSelected.col&&void 0!==this.lastCellSelected.row?"Success":"InvalidAutofillSelection"}return"Success"}handle(e){switch(e.type){case"AUTOFILL":this.autofill(!0);break;case"AUTOFILL_SELECT":this.select(e.col,e.row);break;case"AUTOFILL_AUTO":this.autofillAuto();break;case"AUTOFILL_CELL":this.autoFillMerge(e.originCol,e.originRow,e.col,e.row);const t=this.getters.getActiveSheetId();this.dispatch("UPDATE_CELL",{sheetId:t,col:e.col,row:e.row,style:e.style||null,content:e.content||"",format:e.format||""}),this.dispatch("SET_BORDER",{sheetId:t,col:e.col,row:e.row,border:e.border}),this.autofillCF(e.originCol,e.originRow,e.col,e.row),this.autofillDV(e.originCol,e.originRow,e.col,e.row)}}getAutofillTooltip(){return this.tooltip}autofill(e){if(!this.autofillZone||!this.steps||void 0===this.direction)return void(this.tooltip=void 0);const t=this.getters.getSelectedZone(),o=this.autofillZone;switch(this.direction){case"down":for(let s=t.left;s<=t.right;s++){const i=[];for(let e=t.top;e<=t.bottom;e++)i.push(_t(s,e));const n=this.createGenerator(i);for(let t=o.top;t<=o.bottom;t++)this.computeNewCell(n,s,t,e)}break;case"up":for(let s=t.left;s<=t.right;s++){const i=[];for(let e=t.bottom;e>=t.top;e--)i.push(_t(s,e));const n=this.createGenerator(i);for(let t=o.bottom;t>=o.top;t--)this.computeNewCell(n,s,t,e)}break;case"left":for(let s=t.top;s<=t.bottom;s++){const i=[];for(let e=t.right;e>=t.left;e--)i.push(_t(e,s));const n=this.createGenerator(i);for(let t=o.right;t>=o.left;t--)this.computeNewCell(n,t,s,e)}break;case"right":for(let s=t.top;s<=t.bottom;s++){const i=[];for(let e=t.left;e<=t.right;e++)i.push(_t(e,s));const n=this.createGenerator(i);for(let t=o.left;t<=o.right;t++)this.computeNewCell(n,t,s,e)}}e&&(this.autofillZone=void 0,this.selection.resizeAnchorZone(this.direction,this.steps),this.lastCellSelected={},this.direction=void 0,this.steps=0,this.tooltip=void 0)}select(e,t){const o=this.getters.getSelectedZone();if(Ji(e,t,o))this.autofillZone=void 0;else{switch(this.direction=this.getDirection(e,t),this.direction){case"up":this.saveZone(t,o.top-1,o.left,o.right),this.steps=o.top-t;break;case"down":this.saveZone(o.bottom+1,t,o.left,o.right),this.steps=t-o.bottom;break;case"left":this.saveZone(o.top,o.bottom,e,o.left-1),this.steps=o.left-e;break;case"right":this.saveZone(o.top,o.bottom,o.right+1,e),this.steps=e-o.right}this.autofill(!1)}}autofillAuto(){const e=this.getters.getActivePosition(),t=this.getters.getTable(e);let o=t?t.range.zone.bottom:this.getAutofillAutoLastRow();const s=this.getters.getSelectedZone();for(let t=s.bottom+1;t<=o;t++)if(this.getters.getEvaluatedCell({...e,row:t}).type!==So.empty){o=t-1;break}o>s.bottom&&(this.select(e.col,o),this.autofill(!0))}getAutofillAutoLastRow(){const e=this.getters.getSelectedZone(),t=this.getters.getActiveSheetId();let o=e.left,s=e.bottom;if(o>0){let e={sheetId:t,col:o-1,row:s};for(;this.getters.getEvaluatedCell(e).type!==So.empty;)s+=1,e={sheetId:t,col:o-1,row:s}}if(s===e.bottom&&(o=e.right,o<=this.getters.getNumberCols(t))){let e={sheetId:t,col:o+1,row:s};for(;this.getters.getEvaluatedCell(e).type!==So.empty;)s+=1,e={sheetId:t,col:o+1,row:s}}return s-1}computeNewCell(e,t,o,s){const{cellData:i,tooltip:n,origin:r}=e.next(),{content:a,style:l,border:c,format:h}=i;this.tooltip=n,s&&this.dispatch("AUTOFILL_CELL",{originCol:r.col,originRow:r.row,col:t,row:o,content:a,style:l,border:c,format:h})}getRule(e,t){const o=Tv.getAll().sort(((e,t)=>e.sequence-t.sequence)).find((o=>o.condition(e,t)));return o&&o.generateRule(e,t)}createGenerator(e){const t=[],o=[],s=this.getters.getActiveSheetId();for(let t of e){const{col:e,row:i}=Ot(t),n=this.getters.getCell({sheetId:s,col:e,row:i});o.push({col:e,row:i,cell:n,sheetId:s})}const i=o.map((e=>e.cell));for(let e of o){let o={type:"COPY_MODIFIER"};if(e&&e.cell){o=this.getRule(e.cell,i)||o}const s=this.getters.getCellBorder(e)||void 0;t.push({data:{...e,border:s},rule:o})}return new K_(t,this.getters,this.direction)}saveZone(e,t,o,s){this.autofillZone={top:e,bottom:t,left:o,right:s}}getDirection(e,t){const o=this.getters.getSelectedZone(),s={up:{number:o.top-t,value:"up"},down:{number:t-o.bottom,value:"down"},left:{number:o.left-e,value:"left"},right:{number:e-o.right,value:"right"}};if(1===Object.values(s).map((e=>e.number>0?1:0)).reduce(((e,t)=>e+t)))return Object.values(s).find((e=>e.number>0?1:0)).value;const i=s.up.number>0?"up":"down",n=s.left.number>0?"left":"right";return Math.abs(s[i].number)>=Math.abs(s[n].number)?s[i].value:s[n].value}autoFillMerge(e,t,o,s){const i=this.getters.getActiveSheetId(),n={sheetId:i,col:o,row:s},r={sheetId:i,col:e,row:t};if(this.getters.isInMerge(n)&&!this.getters.isInMerge(r)){const e=this.getters.getMerge(n);e&&this.dispatch("REMOVE_MERGE",{sheetId:i,target:[e]})}const a=this.getters.getMerge(r);a?.left===e&&a?.top===t&&this.dispatch("ADD_MERGE",{sheetId:i,target:[{top:s,bottom:s+a.bottom-a.top,left:o,right:o+a.right-a.left}]})}autofillCF(e,t,o,s){const i=this.getters.getActiveSheetId(),n=this.getters.getRulesByCell(i,e,t);for(const e of n){const t=this.getters.getAdaptedCfRanges(i,e,[ln({col:o,row:s})],[]);t&&this.dispatch("ADD_CONDITIONAL_FORMAT",{cf:be(e),ranges:t,sheetId:i})}}autofillDV(e,t,o,s){const i=this.getters.getActiveSheetId(),n={sheetId:i,col:e,row:t},r=this.getters.getValidationRuleForCell(n);if(!r)return;const a=r.ranges.map((e=>e.zone)),l=Pi(a.concat(ln({col:o,row:s})),[]);this.dispatch("ADD_DATA_VALIDATION_RULE",{rule:r,ranges:l.map((e=>this.getters.getRangeDataFromZone(i,e))),sheetId:i})}drawLayer(e){if(!this.autofillZone)return;const{ctx:t,thinLineWidth:o}=e,{x:s,y:i,width:n,height:r}=this.getters.getVisibleRect(this.autofillZone);n>0&&r>0&&(t.strokeStyle="black",t.lineWidth=o,t.setLineDash([3]),t.strokeRect(s,i,n,r),t.setLineDash([]))}}).add("sort",class extends d_{allowDispatch(e){if("SORT_CELLS"===e.type){if(!Ji(e.col,e.row,e.zone))throw new Error(bo("The anchor must be part of the provided zone"));return this.checkValidations(e,this.checkMerge,this.checkMergeSizes)}return"Success"}handle(e){if("SORT_CELLS"===e.type)this.sortZone(e.sheetId,e,e.zone,e.sortDirection,e.sortOptions||{})}checkMerge({sheetId:e,zone:t}){if(!this.getters.doesIntersectMerge(e,t))return"Success";return sn(t).some((({col:t,row:o})=>!this.getters.isInMerge({sheetId:e,col:t,row:o})))?"InvalidSortZone":"Success"}checkMergeSizes({sheetId:e,zone:t}){if(!this.getters.doesIntersectMerge(e,t))return"Success";const o=this.getters.getMerges(e).filter((e=>Qi(e,t))),s=tn(o[0]);let[i,n]=[s.numberOfCols,s.numberOfRows];return o.every((e=>{let[t,o]=[e.right-e.left+1,e.bottom-e.top+1];return t===i&&o===n}))?"Success":"InvalidSortZone"}hasHeader(e,t){if(1===t[0].length)return!1;let o=t.map((t=>t.map((({col:t,row:o})=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:o}).type))));return o[0][0]===So.empty&&(o=o.slice(1)),!o.some((e=>e[0]===So.empty))&&!!o.some((e=>e[1]!==So.empty&&e[0]!==e[1]))}sortZone(e,t,o,s,i){const[n,r]=this.mainCellsSteps(e,o);let a=this.getters.getMainCellPosition({sheetId:e,col:t.col,row:t.row}).col,l=Object.assign({},o),c=this.mainCells(e,o);!i.sortHeaders&&this.hasHeader(e,c)&&(l.top+=r),c=this.mainCells(e,l);const h=function(e,t,o){const s=e.map(((e,t)=>({index:t,type:e.type,value:e.value})));return(o?s.map((e=>e.type===So.empty?{...e,type:So.number,value:0}:e)):s).sort(Ng(t))}(c[a-l.left].map((e=>this.getters.getEvaluatedCell(e))),s,Boolean(i.emptyCellAsZero)),d=h.map((e=>e.index)),[u,g]=[c.length,c[0].length],p=[];for(let e=0;e<u;e++)for(let t=0;t<g;t++){let{col:o,row:s,sheetId:i}=c[e][d[t]];const a=this.getters.getCell({sheetId:i,col:o,row:s});let h=l.left+e*n,u=l.top+t*r,g={sheetId:i,col:h,row:u,content:""};if(a){let e=a.content;if(a.isFormula){const t=this.getters.getCellPosition(a.id);e=this.getters.getTranslatedCellFormula(i,0,u-t.row,a.compiledFormula)}g.style=a.style,g.content=e,g.format=a.format}p.push(g)}p.forEach((e=>this.dispatch("UPDATE_CELL",e)))}mainCellsSteps(e,t){const o=this.getters.getMerge({sheetId:e,col:t.left,row:t.top});return[o?o.right-o.left+1:1,o?o.bottom-o.top+1:1]}mainCells(e,t){const[o,s]=this.mainCellsSteps(e,t),i=[],n=we(t.left,t.right+1,o),r=we(t.top,t.bottom+1,s);for(const t of n){const o=[];i.push(o);for(const s of r)o.push({sheetId:e,col:t,row:s})}return i}}).add("automatic_sum",class extends d_{static getters=["getAutomaticSums"];handle(e){if("SUM_SELECTION"===e.type){const e=this.getters.getActiveSheetId(),{zones:t,anchor:o}=this.getters.getSelection();for(const s of t){const t=this.getAutomaticSums(e,s,o.cell);this.dispatchCellUpdates(e,t)}}}getAutomaticSums(e,t,o){return this.shouldFindData(e,t)?this.sumAdjacentData(e,t,o):this.sumData(e,t)}sumData(e,t){const o=this.dimensionsToSum(e,t),s=this.sumDimensions(e,t,o).filter((({zone:t})=>!this.getters.isEmpty(e,t)));return o.has("ROW")&&o.has("COL")&&s.push(this.sumTotal(t)),s}sumAdjacentData(e,t,o){const{col:s,row:i}=Ji(o.col,o.row,t)?o:{col:t.left,row:t.top},n=this.findAdjacentData(e,s,i);return n?this.getters.isSingleCellOrMerge(e,t)||on(Yi(n,t))?[{position:{col:s,row:i},zone:n}]:this.sumDimensions(e,Yi(n,t),this.transpose(this.dimensionsToSum(e,t))):[]}findAdjacentData(e,t,o){const s=this.getters.getSheet(e),i=this.getters.getMainCellPosition({sheetId:e,col:t,row:o}),n=this.findSuitableZoneToSum(s,i.col,i.row);if(n)return this.getters.expandZone(e,n)}findSuitableZoneToSum(e,t,o){const s=this.getters.getEvaluatedCell({sheetId:e.id,col:t,row:o-1}),i=this.getters.getEvaluatedCell({sheetId:e.id,col:t-1,row:o});if(this.isNumber(i)&&!this.isNumber(s))return this.findHorizontalZone(e,t,o);const n=this.findVerticalZone(e,t,o);if(this.isZoneValid(n))return n;const r=this.findHorizontalZone(e,t,o);return this.isZoneValid(r)?r:void 0}findVerticalZone(e,t,o){const s={top:0,bottom:o-1,left:t,right:t},i=this.reduceZoneStart(e,s,s.bottom);return{...s,top:i}}findHorizontalZone(e,t,o){const s={top:o,bottom:o,left:0,right:t-1},i=this.reduceZoneStart(e,s,s.right);return{...s,left:i}}reduceZoneStart(e,t,o){const s=this.getters.getEvaluatedCellsInZone(e.id,t),i=we(o,-1,-1),n=it(i.filter((e=>s[e]&&!s[e].isAutoSummable))),r=xe(i.filter((e=>this.isNumber(s[e]))))[0]||[];return it(r)<n?1/0:nt(r)}shouldFindData(e,t){return this.getters.isEmpty(e,t)||this.getters.isSingleCellOrMerge(e,t)}isNumber(e){return e.type===So.number&&!(e.format&&Js(e.format))}isZoneValid(e){return e.bottom>=e.top&&e.right>=e.left}lastColIsEmpty(e,t){return this.getters.isEmpty(e,{...t,left:t.right})}lastRowIsEmpty(e,t){return this.getters.isEmpty(e,{...t,top:t.bottom})}dimensionsToSum(e,t){const o=new Set;return on(t)?(o.add(1===tn(t).numberOfCols?"COL":"ROW"),o):(this.lastColIsEmpty(e,t)&&o.add("ROW"),this.lastRowIsEmpty(e,t)&&o.add("COL"),0===o.size&&o.add("COL"),o)}sumDimensions(e,t,o){return[...o.has("COL")?this.sumColumns(t,e):[],...o.has("ROW")?this.sumRows(t,e):[]]}sumTotal(e){const{bottom:t,right:o}=e;return{position:{col:o,row:t},zone:{...e,top:t,right:o-1}}}sumColumns(e,t){const o=this.nextEmptyRow(t,{...e,bottom:e.bottom-1});return e={...e,bottom:Math.min(e.bottom,o.bottom-1)},sn(o).map((t=>({position:t,zone:{...e,right:t.col,left:t.col}})))}sumRows(e,t){const o=this.nextEmptyCol(t,{...e,right:e.right-1});return e={...e,right:Math.min(e.right,o.right-1)},sn(o).map((t=>({position:t,zone:{...e,top:t.row,bottom:t.row}})))}dispatchCellUpdates(e,t){for(const o of t){const{col:t,row:s}=o.position;this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,content:`=SUM(${this.getters.zoneToXC(e,o.zone)})`})}}nextEmptyRow(e,t){let o=t.bottom+1;const{left:s,right:i}=t;for(;!this.getters.isEmpty(e,{bottom:o,top:o,left:s,right:i});)o++;return{...t,top:o,bottom:o}}nextEmptyCol(e,t){let o=t.right+1;const{top:s,bottom:i}=t;for(;!this.getters.isEmpty(e,{left:o,right:o,top:s,bottom:i});)o++;return{...t,left:o,right:o}}transpose(e){return new Set([...e.values()].map((e=>"COL"===e?"ROW":"COL")))}}).add("format",class extends d_{handle(e){if("SET_DECIMAL"===e.type)this.setDecimal(e.sheetId,e.target,e.step)}setDecimal(e,t,o){const s={};for(const i of Pi(t))for(const t of sn(i)){const i=this.getCellNumberFormat({sheetId:e,...t});if(void 0!==i){this.getters.getLocale();const e=gi(i,o);s[e]=s[e]||[],s[e].push(t)}}for(const t in s){const o=Pi(s[t].map((e=>ln(e))));this.dispatch("SET_FORMATTING",{sheetId:e,format:t,target:o})}}getCellNumberFormat(e){for(const t of[e]){const e=this.getters.getEvaluatedCell(t);if(!(e.type!==So.number||e.format&&Js(e.format)))return e.format||ni(e.value)}}}).add("insert_pivot",class extends d_{static getters=[];handle(e){switch(e.type){case"INSERT_NEW_PIVOT":this.insertNewPivot(e.pivotId,e.newSheetId);break;case"DUPLICATE_PIVOT_IN_NEW_SHEET":this.duplicatePivotInNewSheet(e.pivotId,e.newPivotId,e.newSheetId);break;case"INSERT_PIVOT_WITH_TABLE":this.insertPivotWithTable(e.sheetId,e.col,e.row,e.pivotId,e.table,e.pivotMode)}}insertNewPivot(e,t){1===dn(this.getters.getSelectedZone())&&this.selection.selectTableAroundSelection();const o=this.getters.getActiveSheetId();this.dispatch("ADD_PIVOT",{pivotId:e,pivot:{dataSet:{zone:this.getters.getSelectedZone(),sheetId:o},columns:[],rows:[],measures:[],name:bo("New pivot"),type:"SPREADSHEET"}});const s=this.getters.getSheetIds().findIndex((e=>e===o))+1,i=this.getters.getPivotFormulaId(e);this.dispatch("CREATE_SHEET",{sheetId:t,name:bo("Pivot #%(formulaId)s",{formulaId:i}),position:s}),this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:o,sheetIdTo:t}),this.dispatch("UPDATE_CELL",{sheetId:t,col:0,row:0,content:`=PIVOT(${i})`})}duplicatePivotInNewSheet(e,t,o){this.dispatch("DUPLICATE_PIVOT",{pivotId:e,newPivotId:t,duplicatedPivotName:bo("%s (copy)",this.getters.getPivotCoreDefinition(e).name)});const s=this.getters.getActiveSheetId(),i=this.getters.getSheetIds().indexOf(s)+1,n=this.getters.getPivotFormulaId(t),r=this.getters.getPivotName(t);this.dispatch("CREATE_SHEET",{sheetId:o,name:this.getPivotDuplicateSheetName(bo("%(newPivotName)s (Pivot #%(formulaId)s)",{newPivotName:r,formulaId:n})),position:i}).isSuccessful&&(this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:s,sheetIdTo:o}),this.dispatch("UPDATE_CELL",{sheetId:o,col:0,row:0,content:`=PIVOT(${n})`}))}getPivotDuplicateSheetName(e){let t=1;const o=this.getters.getSheetIds().map((e=>this.getters.getSheetName(e))),s=e.replace(new RegExp(ae,"g")," ");let i=s;for(;o.includes(i);)i=`${s} (${t})`,t++;return i}insertPivotWithTable(e,t,o,s,i,n){const{cols:r,rows:a,measures:l,fieldsType:c}=i,h=new qI(r,a,l,c||{}),d=h.columns.length-1;this.resizeSheet(e,t,o,h);const u=this.getters.getPivotFormulaId(s);let g;"dynamic"===n?(this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:o,content:`=PIVOT(${u})`}),g={left:t,right:t,top:o,bottom:o}):(this.dispatch("INSERT_PIVOT",{sheetId:e,col:t,row:o,pivotId:s,table:h.export()}),g={left:t,right:t+h.getNumberOfDataColumns(),top:o,bottom:o+d+h.rows.length}),this.dispatch("CREATE_TABLE",{tableType:n,sheetId:e,ranges:[this.getters.getRangeDataFromZone(e,g)],config:{...pe,numberOfHeaders:d}})}resizeSheet(e,t,o,s){const i=s.getNumberOfDataColumns()+1,n=this.getters.getNumberCols(e),r=n-t;r<i&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:n-1,sheetId:e,quantity:i-r,position:"after"});const a=s.columns.length+s.rows.length,l=this.getters.getNumberRows(e),c=l-o;c<a&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"ROW",base:l-1,sheetId:e,quantity:a-c,position:"after"})}}).add("split_to_columns",class extends d_{static getters=["getAutomaticSeparator"];allowDispatch(e){return"SPLIT_TEXT_INTO_COLUMNS"===e.type?this.chainValidations(this.batchValidations(this.checkSingleColSelected,this.checkNonEmptySelector),this.batchValidations(this.checkNotOverwritingContent,this.checkSeparatorInSelection))(e):"Success"}handle(e){if("SPLIT_TEXT_INTO_COLUMNS"===e.type)this.splitIntoColumns(e)}getAutomaticSeparator(){const e=this.getters.getSelectedCells();for(const t of e)if(t.value&&t.type===So.text){const e=this.getAutoSeparatorForString(t.value);if(e)return e}return" "}getAutoSeparatorForString(e){const t=[ue,";",","," ","."];for(const o of t)if(e.includes(o))return o}splitIntoColumns({separator:e,addNewColumns:t}){const o=this.getters.getSelectedZone(),s=this.getters.getActiveSheetId(),i=this.getSplittedCols(o,e);t&&this.addColsToAvoidCollisions(o,i),this.removeMergesInSplitZone(o,i),this.addColumnsToNotOverflowSheet(o,i);for(let e=0;e<i.length;e++){const t=o.top+e,n=i[e],r=o.left,a=this.getters.getCell({sheetId:s,col:r,row:t});if(1!==n.length||n[0]!==a?.content)for(const[e,o]of n.entries())this.dispatch("UPDATE_CELL",{sheetId:s,col:r+e,row:t,content:lr(o,this.getters.getLocale()),format:"",style:a?.style||null})}}getSplittedCols(e,t){if(!t)throw new Error("Separator cannot be empty");const o=this.getters.getActiveSheetId(),s=[];for(const i of we(e.top,e.bottom+1)){const n=this.getters.getEvaluatedCell({sheetId:o,col:e.left,row:i}).formattedValue;s.push(this.splitAndRemoveTrailingEmpty(n,t))}return s}splitAndRemoveTrailingEmpty(e,t){const o=e.split(t);for(;o.length>1&&""===o[o.length-1];)o.pop();return o}willSplittedColsOverwriteContent(e,t){const o=this.getters.getActiveSheetId();for(const s of we(e.top,e.bottom+1)){const i=t[s-e.top];for(let t=1;t<i.length;t++){const i=this.getters.getCell({sheetId:o,col:e.left+t,row:s});if(i&&i.content)return!0}}return!1}removeMergesInSplitZone(e,t){const o=this.getters.getActiveSheetId(),s=Math.max(...t.map((e=>e.length))),i={...e,right:e.left+s-1},n=this.getters.getMergesInZone(o,i);this.dispatch("REMOVE_MERGE",{sheetId:o,target:n})}addColsToAvoidCollisions(e,t){const o=this.getters.getActiveSheetId();let s=0;for(const i of we(e.top,e.bottom+1)){const n={sheetId:o,col:e.left,row:i},r=t[i-e.top],a=this.getColsToAddToAvoidCollision(n,r);s=Math.max(s,a)}s&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:e.left,sheetId:o,quantity:s,position:"after"})}getColsToAddToAvoidCollision(e,t){const o=t.length;for(let t=1;t<o;t++){const s=e.col+t,i=this.getters.getCell({...e,col:s});if(i&&i.content)return o-t}return 0}addColumnsToNotOverflowSheet(e,t){const o=this.getters.getActiveSheetId(),s=Math.max(...t.map((e=>e.length-1))),i=this.getters.getNumberCols(o)-1;e.left+s>i&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:i,sheetId:o,quantity:e.left+s-i,position:"after"})}checkSingleColSelected(){return this.getters.isSingleColSelected()?"Success":"MoreThanOneColumnSelected"}checkNonEmptySelector(e){return""===e.separator?"EmptySplitSeparator":"Success"}checkNotOverwritingContent(e){if(e.addNewColumns||e.force)return"Success";const t=this.getters.getSelectedZones()[0],o=this.getSplittedCols(t,e.separator);return this.willSplittedColsOverwriteContent(t,o)?"SplitWillOverwriteContent":"Success"}checkSeparatorInSelection({separator:e}){const t=this.getters.getSelectedCells();for(const o of t)if(o.formattedValue.includes(e))return"Success";return"NoSplitSeparatorInSelection"}}).add("collaborative",class extends d_{static getters=["getClientsToDisplay","getClient","getConnectedClients","isFullySynchronized"];static layers=["Selection"];availableColors=new Set(dD);colors={};session;constructor(e){super(e),this.session=e.session}isPositionValid(e){return e.row<this.getters.getNumberRows(e.sheetId)&&e.col<this.getters.getNumberCols(e.sheetId)}chooseNewColor(){0===this.availableColors.size&&(this.availableColors=new Set(dD));const e=(t=[...this.availableColors.values()])[Math.floor(Math.random()*t.length)];var t;return this.availableColors.delete(e),e}getClient(){return this.session.getClient()}getConnectedClients(){return this.session.getConnectedClients()}isFullySynchronized(){return this.session.isFullySynchronized()}getClientsToDisplay(){try{this.getters.getClient()}catch(e){if(e instanceof cD)return[];throw e}const e=this.getters.getActiveSheetId(),t=[];for(const o of this.getters.getConnectedClients())if(o.id!==this.getters.getClient().id&&o.position&&o.position.sheetId===e&&this.isPositionValid(o.position)){const e=o.position;this.colors[o.id]||(this.colors[o.id]=this.chooseNewColor());const s=this.colors[o.id];t.push({...o,position:e,color:s})}return t}drawLayer(e){if(this.getters.isDashboard())return;const{ctx:t,thinLineWidth:o}=e,s=this.getters.getActiveSheetId();for(const e of this.getClientsToDisplay()){const{row:i,col:n}=e.position,r=this.getters.expandZone(s,{top:i,bottom:i,left:n,right:n}),{x:a,y:l,width:c,height:h}=this.getters.getVisibleRect(r);if(c<=0||h<=0)continue;const d=e.color,u=`${d}10`;t.fillStyle=u,t.lineWidth=4*o,t.strokeStyle=d,t.globalCompositeOperation="multiply",t.fillRect(a,l,c,h),t.globalCompositeOperation="source-over",t.strokeRect(a,l,c,h),t.font=`bold ${j+1}px ${Y}`}}}).add("history",class extends d_{static getters=["canUndo","canRedo"];undoStack=[];redoStack=[];session;constructor(e){super(e),this.session=e.session,this.session.on("new-local-state-update",this,this.onNewLocalStateUpdate),this.session.on("pending-revisions-dropped",this,(({revisionIds:e})=>this.drop(e))),this.session.on("snapshot",this,(()=>{this.undoStack=[],this.redoStack=[]}))}allowDispatch(e){switch(e.type){case"REQUEST_UNDO":if(!this.canUndo())return"EmptyUndoStack";break;case"REQUEST_REDO":if(!this.canRedo())return"EmptyRedoStack"}return"Success"}handle(e){switch(e.type){case"REQUEST_UNDO":case"REQUEST_REDO":this.requestHistoryChange("REQUEST_UNDO"===e.type?"UNDO":"REDO")}}finalize(){}requestHistoryChange(e){const t="UNDO"===e?this.undoStack.pop():this.redoStack.pop();if(t)"UNDO"===e?(this.session.undo(t),this.redoStack.push(t)):(this.session.redo(t),this.undoStack.push(t));else{const e=this.getPossibleRevisionToRepeat();if(!e)return;const t=ID(e,this.getters);if(!t)return;if(!Array.isArray(t))return void this.dispatch(t.type,t);for(const e of t)this.dispatch(e.type,e)}}canUndo(){return this.undoStack.length>0}canRedo(){if(this.redoStack.length>0)return!0;const e=this.getPossibleRevisionToRepeat();return!(!(t=e)||!t.rootCommand||"object"!=typeof t.rootCommand)&&(To(t.rootCommand)?wD.contains(t.rootCommand.type):xD.contains(t.rootCommand.type));var t}drop(e){this.undoStack=this.undoStack.filter((t=>!e.includes(t))),this.redoStack=[]}onNewLocalStateUpdate({id:e}){this.undoStack.push(e),this.redoStack=[],this.undoStack.length>99&&this.undoStack.shift()}getPossibleRevisionToRepeat(){return this.session.getLastLocalNonEmptyRevision()}}).add("data_cleanup",class extends d_{allowDispatch(e){return"REMOVE_DUPLICATES"===e.type?this.checkValidations(e,this.chainValidations(this.checkSingleRangeSelected,this.checkNoMergeInZone,this.checkRangeContainsValues,this.checkColumnsIncludedInZone),this.chainValidations(this.checkNoColumnProvided,this.checkColumnsAreUnique)):"Success"}handle(e){switch(e.type){case"REMOVE_DUPLICATES":this.removeDuplicates(e.columns,e.hasHeader);break;case"TRIM_WHITESPACE":this.trimWhitespace()}}removeDuplicates(e,t){const o=this.getters.getActiveSheetId(),s=this.getters.getSelectedZone();t&&(s.top+=1);const i=this.getUniqueRowsIndexes(o,s.top,s.bottom,e),n=i.length;if(n===tn(s).numberOfRows)return void this.notifyRowsRemovedAndRemaining(0,n);const r=i.map((e=>({left:s.left,top:e,right:s.right,bottom:e}))),a=new ra(this.getters,this.dispatch),l=a.copy(zn(o,r));if(!l)return;this.dispatch("CLEAR_CELLS",{target:[s],sheetId:o});const c={left:s.left,top:s.top,right:s.left,bottom:s.top};a.paste({zones:[c],sheetId:o},l,{isCutOperation:!1});const h={left:s.left,top:s.top-(t?1:0),right:s.right,bottom:s.top+n-1};this.selection.selectZone({cell:{col:h.left,row:h.top},zone:h});const d=s.bottom-s.top+1-n;this.notifyRowsRemovedAndRemaining(d,n)}getUniqueRowsIndexes(e,t,o,s){const i=new Map;for(const n of we(t,o+1)){const t=s.map((t=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:n}).value));!Object.values(i).some((e=>Ge(e,t)))&&(i[n]=t)}return Object.keys(i).map((e=>parseInt(e)))}notifyRowsRemovedAndRemaining(e,t){this.ui.notifyUI({type:"info",text:bo("%s duplicate rows found and removed.\n%s unique rows remain.",e.toString(),t.toString()),sticky:!1})}checkSingleRangeSelected(){return 1!==this.getters.getSelectedZones().length?"MoreThanOneRangeSelected":"Success"}checkNoMergeInZone(){const e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZone();return this.getters.getMergesInZone(e,t).length>0?"WillRemoveExistingMerge":"Success"}checkRangeContainsValues(e){const t=this.getters.getActiveSheetId(),o=this.getters.getSelectedZone();e.hasHeader&&(o.top+=1);return this.getters.getEvaluatedCellsInZone(t,o).every((e=>"empty"===e.type))?"EmptyTarget":"Success"}checkNoColumnProvided(e){return 0===e.columns.length?"NoColumnsProvided":"Success"}checkColumnsIncludedInZone(e){const t=this.getters.getSelectedZone();return e.columns.some((e=>e<t.left||e>t.right))?"ColumnsNotIncludedInZone":"Success"}checkColumnsAreUnique(e){return e.columns.length!==new Set(e.columns).size?"DuplicatesColumnsSelected":"Success"}trimWhitespace(){const e=Pi(this.getters.getSelectedZones()),t=this.getters.getActiveSheetId();let o=0;for(const{col:s,row:i}of e.map(sn).flat()){const e=this.getters.getCell({col:s,row:i,sheetId:t});if(!e)continue;const n=tt(e.content);n!==e.content&&(o+=1,this.dispatch("UPDATE_CELL",{sheetId:t,col:s,row:i,content:n}))}const s=o?bo("Trimmed whitespace from %s cells.",o):bo("No selected cells had whitespace trimmed.");this.ui.notifyUI({type:"info",text:s,sticky:!1})}}).add("table_autofill",class extends d_{handle(e){if("AUTOFILL_TABLE_COLUMN"===e.type){const t=this.getters.getCoreTable(e),o=this.getters.getCell(e);if(!t?.config.automaticAutofill||"dynamic"===t.type||!o?.isFormula)return;const{col:s,row:i}=e,n=function(e,t){const o=t.numberOfHeaders,s={...e,top:e.top+o};return s.top<=s.bottom?s:void 0}(t.range.zone,t.config);if(n&&Ji(s,i,n)){const t=e.autofillRowStart??n.top,o=e.autofillRowEnd??n.bottom,s={...n,top:t,bottom:o};this.autofillTableZone(e,s)}}}autofillTableZone(e,t){if(t.top===t.bottom)return;const{col:o,row:s,sheetId:i}=e;for(let e=t.top;e<=t.bottom;e++)if(e!==s&&this.getters.getEvaluatedCell({col:o,row:e,sheetId:i}).type!==So.empty)return;const n={zone:this.getters.getSelectedZone(),cell:this.getters.getActivePosition()};this.selection.selectCell(o,s),this.dispatch("AUTOFILL_SELECT",{col:o,row:t.bottom}),this.dispatch("AUTOFILL"),this.selection.selectCell(o,s),this.dispatch("AUTOFILL_SELECT",{col:o,row:t.top}),this.dispatch("AUTOFILL"),this.selection.selectZone(n)}}).add("table_ui_resize",class extends d_{allowDispatch(e){if("RESIZE_TABLE"===e.type){const t=this.getters.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!t)return"TableNotFound";const o=t.range.zone,s=this.getters.getRangeFromRangeData(e.newTableRange).zone;return s.top!==o.top||s.left!==o.left?"InvalidTableResize":this.canDispatch("UPDATE_TABLE",{...e}).reasons}return"Success"}handle(e){switch(e.type){case"RESIZE_TABLE":{const t=this.getters.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(this.dispatch("UPDATE_TABLE",{...e}),!t||!t.config.automaticAutofill)return;const o=t.range.zone,s=this.getters.getRangeFromRangeData(e.newTableRange).zone;if(s.bottom>=o.bottom){for(let t=s.left;t<=s.right;t++){const i={col:t,row:o.bottom,sheetId:e.sheetId};this.getters.getCell(i)?.content.startsWith("=")&&this.dispatch("AUTOFILL_TABLE_COLUMN",{...i,autofillRowStart:o.bottom,autofillRowEnd:s.bottom})}break}}}}}).add("datavalidation_insert",class extends d_{handle(e){if("ADD_DATA_VALIDATION_RULE"===e.type)if("isBoolean"===e.rule.criterion.type){const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e)));for(const e of bn(t)){const t=this.getters.getCell(e),o=this.getters.getEvaluatedCell(e);if(t?.content)if(t?.content&&o.type===So.empty){let o;if(t.content.startsWith("=")){const s=this.getters.evaluateFormula(e.sheetId,t.content);o=(No(s)?s[0][0]:s)?.toString()}else o=t.content;o&&Ie(o)||this.dispatch("UPDATE_CELL",{...e,content:"FALSE"})}else o.type!==So.boolean&&this.dispatch("UPDATE_CELL",{...e,content:"FALSE"});else this.dispatch("UPDATE_CELL",{...e,content:"FALSE"})}}}}),OD=(new n).add("selection",class extends d_{static layers=["Selection"];static getters=["getActiveSheet","getActiveSheetId","getActiveCell","getActiveCols","getActiveRows","getCurrentStyle","getSelectedZones","getSelectedZone","getSelectedCells","getSelectedFigureId","getSelection","getActivePosition","getSheetPosition","isSingleColSelected","getElementsFromSelection","tryGetActiveSheetId","isGridSelectionActive"];gridSelection={anchor:{cell:{col:0,row:0},zone:{top:0,left:0,bottom:0,right:0}},zones:[{top:0,left:0,bottom:0,right:0}]};selectedFigureId=null;sheetsData={};moveClient;activeSheet=null;constructor(e){super(e),this.moveClient=e.moveClient}allowDispatch(e){switch(e.type){case"ACTIVATE_SHEET":try{if(!this.getters.getSheet(e.sheetIdTo).isVisible)return"SheetIsHidden";break}catch(e){return"InvalidSheetId"}case"MOVE_COLUMNS_ROWS":return this.isMoveElementAllowed(e)}return"Success"}handleEvent(e){const t=e.anchor;let o=[];switch(e.mode){case"overrideSelection":o=[t.zone];break;case"updateAnchor":o=[...this.gridSelection.zones];const s=o.findIndex((t=>Ki(t,e.previousAnchor.zone)));s>=0&&(o[s]=t.zone);break;case"newAnchor":o=[...this.gridSelection.zones,t.zone]}this.setSelectionMixin(e.anchor,o),this.selection.resetDefaultAnchor(this,be(this.gridSelection.anchor));const{col:s,row:i}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.getters.getActiveSheetId(),col:s,row:i}),this.selectedFigureId=null}handle(e){switch(e.type){case"ACTIVATE_SHEET":this.selectedFigureId=null;break;case"DELETE_FIGURE":this.selectedFigureId===e.id&&(this.selectedFigureId=null);break;case"DELETE_SHEET":this.selectedFigureId&&this.getters.getFigure(e.sheetId,this.selectedFigureId)&&(this.selectedFigureId=null)}switch(e.type){case"START":const t=this.getters.getVisibleSheetIds()[0];this.activateSheet(t,t);const{col:o,row:s}=this.getters.getNextVisibleCellPosition({sheetId:t,col:0,row:0});this.selectCell(o,s),this.selection.registerAsDefault(this,this.gridSelection.anchor,{handleEvent:this.handleEvent.bind(this)}),this.moveClient({sheetId:t,col:0,row:0});break;case"ACTIVATE_SHEET":this.activateSheet(e.sheetIdFrom,e.sheetIdTo);break;case"REMOVE_COLUMNS_ROWS":{const t=this.getters.getActiveSheetId();if(e.sheetId===t){"COL"===e.dimension?this.onColumnsRemoved(e):this.onRowsRemoved(e);const{col:o,row:s}=this.gridSelection.anchor.cell;this.moveClient({sheetId:t,col:o,row:s})}break}case"ADD_COLUMNS_ROWS":{const t=this.getters.getActiveSheetId();if(e.sheetId===t){this.onAddElements(e);const{col:o,row:s}=this.gridSelection.anchor.cell;this.moveClient({sheetId:t,col:o,row:s})}break}case"MOVE_COLUMNS_ROWS":e.sheetId===this.getActiveSheetId()&&this.onMoveElements(e);break;case"SELECT_FIGURE":this.selectedFigureId=e.id;break;case"ACTIVATE_NEXT_SHEET":this.activateNextSheet("right");break;case"ACTIVATE_PREVIOUS_SHEET":this.activateNextSheet("left");break;case"HIDE_SHEET":e.sheetId===this.getActiveSheetId()&&this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:e.sheetId,sheetIdTo:this.getters.getVisibleSheetIds()[0]});break;case"UNDO":case"REDO":case"DELETE_SHEET":const i=Object.keys(this.sheetsData).filter((e=>!this.getters.tryGetSheet(e)));for(const e of i)delete this.sheetsData[e];for(const e in this.sheetsData){const t=this.clipSelection(e,this.sheetsData[e].gridSelection);this.sheetsData[e]={gridSelection:be(t)}}if(!this.getters.tryGetSheet(this.getters.getActiveSheetId())){const e=this.getters.getVisibleSheetIds();if(this.activeSheet=this.getters.getSheet(e[0]),this.activeSheet.id in this.sheetsData){const{anchor:e}=this.clipSelection(this.activeSheet.id,this.sheetsData[this.activeSheet.id].gridSelection);this.selectCell(e.cell.col,e.cell.row)}else this.selectCell(0,0);const{col:t,row:o}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.getters.getActiveSheetId(),col:t,row:o})}const n=this.getters.getActiveSheetId();this.gridSelection.zones=this.gridSelection.zones.map((e=>this.getters.expandZone(n,e))),this.gridSelection.anchor.zone=this.getters.expandZone(n,this.gridSelection.anchor.zone),this.setSelectionMixin(this.gridSelection.anchor,this.gridSelection.zones),this.selectedFigureId=null}}finalize(){this.selection.resetDefaultAnchor(this,be(this.gridSelection.anchor))}isGridSelectionActive(){return this.selection.isListening(this)}getActiveSheet(){return this.activeSheet}getActiveSheetId(){return this.activeSheet.id}tryGetActiveSheetId(){return this.activeSheet?.id}getActiveCell(){return this.getters.getEvaluatedCell(this.getActivePosition())}getActiveCols(){const e=new Set;for(let t of this.gridSelection.zones)if(0===t.top&&t.bottom===this.getters.getNumberRows(this.getters.getActiveSheetId())-1)for(let o=t.left;o<=t.right;o++)e.add(o);return e}getActiveRows(){const e=new Set,t=this.getters.getActiveSheetId();for(let o of this.gridSelection.zones)if(0===o.left&&o.right===this.getters.getNumberCols(t)-1)for(let t=o.top;t<=o.bottom;t++)e.add(t);return e}getCurrentStyle(){const e=this.getters.getSelectedZone(),t=this.getters.getActiveSheetId();return this.getters.getCellStyle({sheetId:t,col:e.left,row:e.top})}getSelectedZones(){return be(this.gridSelection.zones)}getSelectedZone(){return be(this.gridSelection.anchor.zone)}getSelection(){return be(this.gridSelection)}getSelectedCells(){const e=this.getters.getActiveSheetId(),t=[];for(const o of this.gridSelection.zones)t.push(...this.getters.getEvaluatedCellsInZone(e,o));return t}getSelectedFigureId(){return this.selectedFigureId}getActivePosition(){return this.getters.getMainCellPosition({sheetId:this.getActiveSheetId(),col:this.gridSelection.anchor.cell.col,row:this.gridSelection.anchor.cell.row})}getSheetPosition(e){if(e===this.getters.getActiveSheetId())return this.getActivePosition();{const t=this.sheetsData[e];return t?{sheetId:e,col:t.gridSelection.anchor.cell.col,row:t.gridSelection.anchor.cell.row}:this.getters.getNextVisibleCellPosition({sheetId:e,col:0,row:0})}}isSingleColSelected(){const e=this.getters.getSelectedZones();return 1===e.length&&e[0].left===e[0].right}getElementsFromSelection(e){if("COL"===e&&0===this.getters.getActiveCols().size)return[];if("ROW"===e&&0===this.getters.getActiveRows().size)return[];const t=this.getters.getSelectedZones();let o=[];const s="COL"===e?"left":"top",i="COL"===e?"right":"bottom";for(const e of t){const t=Array.from({length:e[i]-e[s]+1},((t,o)=>e[s]+o));o=o.concat(t)}return[...new Set(o)].sort()}activateSheet(e,t){if(this.setActiveSheet(t),this.sheetsData[e]={gridSelection:be(this.gridSelection)},t in this.sheetsData)Object.assign(this,this.sheetsData[t]),this.selection.resetDefaultAnchor(this,be(this.gridSelection.anchor));else{const{col:e,row:o}=this.getters.getNextVisibleCellPosition({sheetId:t,col:0,row:0});this.selectCell(e,o)}}setSelectionMixin(e,t){const{anchor:o,zones:s}=this.clipSelection(this.getters.getActiveSheetId(),{anchor:e,zones:t});this.gridSelection.anchor=o,this.gridSelection.zones=function(e){return e.reverse().filter(((e,t,o)=>t===o.findIndex((t=>t.top===e.top&&t.bottom===e.bottom&&t.left===e.left&&t.right===e.right)))).reverse()}(s)}selectCell(e,t){const o=this.getters.getActiveSheetId(),s=this.getters.expandZone(o,{left:e,right:e,top:t,bottom:t});this.setSelectionMixin({zone:s,cell:{col:e,row:t}},[s])}setActiveSheet(e){const t=this.getters.getSheet(e);this.activeSheet=t}activateNextSheet(e){const t=this.getters.getSheetIds(),o=(t.findIndex((e=>e===this.activeSheet.id))+("left"===e?t.length-1:1))%t.length;this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:this.getActiveSheetId(),sheetIdTo:t[o]})}onColumnsRemoved(e){const{cell:t,zone:o}=this.gridSelection.anchor,s=Zi(o,"left",[...e.elements]);let i={left:t.col,right:t.col,top:t.row,bottom:t.row};i=Zi(i,"left",[...e.elements]);const n={cell:{col:i.left,row:i.top},zone:s},r=this.gridSelection.zones.map((t=>Zi(t,"left",[...e.elements])));this.setSelectionMixin(n,r)}onRowsRemoved(e){const{cell:t,zone:o}=this.gridSelection.anchor,s=Zi(o,"top",[...e.elements]);let i={left:t.col,right:t.col,top:t.row,bottom:t.row};i=Zi(i,"top",[...e.elements]);const n={cell:{col:i.left,row:i.top},zone:s},r=this.gridSelection.zones.map((t=>Zi(t,"top",[...e.elements])));this.setSelectionMixin(n,r)}onAddElements(e){const t="COL"===e.dimension?"left":"top",o=qi(this.gridSelection.anchor.zone,t,e.base,e.position,e.quantity),s=this.gridSelection.zones.map((o=>qi(o,t,e.base,e.position,e.quantity))),i={cell:{col:o.left,row:o.top},zone:o};this.setSelectionMixin(i,s)}onMoveElements(e){const t=e.elements.length;this.dispatch("ADD_COLUMNS_ROWS",{dimension:e.dimension,sheetId:e.sheetId,base:e.base,quantity:t,position:e.position});const o="COL"===e.dimension,s=e.elements[0],i=e.elements[t-1],n=e.base<s,r=n&&o?t:0,a=n&&!o?t:0,l=[{left:o?s+r:0,right:o?i+r:this.getters.getNumberCols(e.sheetId)-1,top:o?0:s+a,bottom:o?this.getters.getNumberRows(e.sheetId)-1:i+a}],c=this.getActiveSheetId(),h=new ra(this.getters,this.dispatch),d=h.copy(zn(c,l));if(!d)return;const u=n?e.base:e.base+1,g=[{left:o?u:0,right:o?u+t-1:this.getters.getNumberCols(e.sheetId)-1,top:o?0:u,bottom:o?this.getters.getNumberRows(e.sheetId)-1:u+t-1}];h.paste({zones:g,sheetId:c},d,{isCutOperation:!0});const p=n?e.elements.map((e=>e+t)):e.elements;let m=e.base;for(const t of p){const o=this.getters.getHeaderSize(e.sheetId,e.dimension,t);this.dispatch("RESIZE_COLUMNS_ROWS",{dimension:e.dimension,sheetId:e.sheetId,size:o,elements:[m]}),m+=1}this.dispatch("REMOVE_COLUMNS_ROWS",{dimension:e.dimension,sheetId:e.sheetId,elements:p})}isMoveElementAllowed(e){const t="COL"===e.dimension,o=e.elements[0],s=e.elements[e.elements.length-1],i=e.sheetId,n=t?this.getters.doesColumnsHaveCommonMerges:this.getters.doesRowsHaveCommonMerges;if(n(i,o-1,o)||n(i,s,s+1)||n(i,e.base-1,e.base))return"WillRemoveExistingMerge";const r=[e.base,...e.elements],a=t?this.getters.getNumberCols(i):this.getters.getNumberRows(i);return r.some((e=>e<0||e>=a))?"InvalidHeaderIndex":"Success"}clipSelection(e,t){const o=this.getters.getNumberCols(e)-1,s=this.getters.getNumberRows(e)-1;return{zones:t.zones.map((e=>({left:Ce(e.left,0,o),right:Ce(e.right,0,o),top:Ce(e.top,0,s),bottom:Ce(e.bottom,0,s)}))),anchor:{cell:{col:Ce(t.anchor.cell.col,0,o),row:Ce(t.anchor.cell.row,0,s)},zone:{left:Ce(t.anchor.zone.left,0,o),right:Ce(t.anchor.zone.right,0,o),top:Ce(t.anchor.zone.top,0,s),bottom:Ce(t.anchor.zone.bottom,0,s)}}}}drawLayer(e){if(this.getters.isDashboard())return;const{ctx:t,thinLineWidth:o}=e,s=this.getSelectedZones();t.fillStyle="#f3f7fe";const i=1===s.length&&s[0].left===s[0].right&&s[0].top===s[0].bottom;t.fillStyle=i?"#f3f7fe":"#e9f0ff",t.strokeStyle=p,t.lineWidth=1.5*o;for(const e of s){const{x:o,y:s,width:i,height:n}=this.getters.getVisibleRect(e);t.globalCompositeOperation="multiply",t.fillRect(o,s,i,n),t.globalCompositeOperation="source-over",t.strokeRect(o,s,i,n)}t.globalCompositeOperation="source-over";const n=this.getActivePosition();let r;t.strokeStyle=p,t.lineWidth=3*o,r=this.getters.isInMerge(n)?this.getters.getMerge(n):ln(n);const{x:a,y:l,width:c,height:h}=this.getters.getVisibleRect(r);c>0&&h>0&&t.strokeRect(a,l,c,h)}}).add("evaluation_filter",class extends d_{static getters=["getFilterHiddenValues","getFirstTableInSelection","isRowFiltered","isFilterActive"];filterValues={};hiddenRows={};isEvaluationDirty=!1;allowDispatch(e){if("UPDATE_FILTER"===e.type)if(!this.getters.getFilterId(e))return"FilterNotFound";return"Success"}handle(e){switch(e.type){case"UNDO":case"REDO":case"UPDATE_CELL":case"EVALUATE_CELLS":case"ACTIVATE_SHEET":case"REMOVE_TABLE":case"ADD_COLUMNS_ROWS":case"REMOVE_COLUMNS_ROWS":case"UPDATE_TABLE":this.isEvaluationDirty=!0;break;case"START":for(const e of this.getters.getSheetIds())this.filterValues[e]={};break;case"CREATE_SHEET":this.filterValues[e.sheetId]={};break;case"HIDE_COLUMNS_ROWS":case"UNHIDE_COLUMNS_ROWS":case"GROUP_HEADERS":case"UNGROUP_HEADERS":case"FOLD_HEADER_GROUP":case"UNFOLD_HEADER_GROUP":case"FOLD_ALL_HEADER_GROUPS":case"UNFOLD_ALL_HEADER_GROUPS":case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":this.updateHiddenRows(e.sheetId);break;case"UPDATE_FILTER":this.updateFilter(e),this.updateHiddenRows(e.sheetId);break;case"DUPLICATE_SHEET":this.filterValues[e.sheetIdTo]=be(this.filterValues[e.sheetId])}}finalize(){if(this.isEvaluationDirty){for(const e of this.getters.getSheetIds())this.updateHiddenRows(e);this.isEvaluationDirty=!1}}isRowFiltered(e,t){return!!this.hiddenRows[e]?.has(t)}getFilterHiddenValues(e){const t=this.getters.getFilterId(e),o=e.sheetId;return t&&this.filterValues[o]&&this.filterValues[o][t]||[]}isFilterActive(e){const t=this.getters.getFilterId(e),o=e.sheetId;return Boolean(t&&this.filterValues[o]?.[t]?.length)}getFirstTableInSelection(){const e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZones();return this.getters.getTablesOverlappingZones(e,t)[0]}updateFilter({col:e,row:t,hiddenValues:o,sheetId:s}){const i=this.getters.getFilterId({sheetId:s,col:e,row:t});i&&(this.filterValues[s]||(this.filterValues[s]={}),this.filterValues[s][i]=o)}updateHiddenRows(e){const t=this.getters.getFilters(e).sort(((e,t)=>e.rangeWithHeaders.zone.top-t.rangeWithHeaders.zone.top)),o=new Set;for(let s of t){if(o.has(s.rangeWithHeaders.zone.top)||this.getters.isRowHiddenByUser(e,s.rangeWithHeaders.zone.top))continue;const t=this.filterValues[e]?.[s.id]?.map(Nn),i=s.filteredRange?.zone;if(t&&i)for(let n=i.top;n<=i.bottom;n++){const i=this.getCellValueAsString(e,s.col,n);t.includes(i)&&o.add(n)}}this.hiddenRows[e]=o}getCellValueAsString(e,t,o){return this.getters.getEvaluatedCell({sheetId:e,col:t,row:o}).formattedValue.toLowerCase()}exportForExcel(e){for(const t of e.sheets){const e=t.id;for(const o of t.tables){const s=zi(o.range),i=[],n=[];for(const o of we(0,tn(s).numberOfCols)){const r={sheetId:t.id,col:s.left+o,row:s.top},a=this.getFilterHiddenValues(r),l=this.getters.getFilter(r),c=l?.filteredRange?sn(l.filteredRange.zone).map((t=>this.getters.getEvaluatedCell({sheetId:e,...t}).formattedValue)):[];if(a.length){const e=c.filter((e=>e)).filter((e=>!a.includes(e)));i.push({colId:o,displayedValues:[...new Set(e)],displayBlanks:!a.includes("")&&c.some((e=>!e))})}const h=this.getters.getEvaluatedCell(r).formattedValue,d=this.getUniqueColNameForExcel(o,h,n);n.push(d),t.cells[_t(r.col,r.row)]={...t.cells[_t(r.col,r.row)],content:d,value:d,isFormula:!1}}o.filters=i}}}getUniqueColNameForExcel(e,t,o){t||(t=`Column${e}`);let s=t,i=2;for(;o.includes(s);)s=t+String(i),i++;return s}}).add("header_visibility_ui",class extends d_{static getters=["getNextVisibleCellPosition","findVisibleHeader","findLastVisibleColRowIndex","findFirstVisibleColRowIndex","isRowHidden","isColHidden","isHeaderHidden"];isRowHidden(e,t){return this.getters.isRowHiddenByUser(e,t)||this.getters.isRowFiltered(e,t)}isColHidden(e,t){return this.getters.isColHiddenByUser(e,t)}isHeaderHidden(e,t,o){return"COL"===t?this.isColHidden(e,o):this.isRowHidden(e,o)}getNextVisibleCellPosition({sheetId:e,col:t,row:o}){return{sheetId:e,col:this.findVisibleHeader(e,"COL",t,this.getters.getNumberCols(e)-1),row:this.findVisibleHeader(e,"ROW",o,this.getters.getNumberRows(e)-1)}}findVisibleHeader(e,t,o,s){if(o<=s)for(let i=o;i<=s;i++)if(this.getters.doesHeaderExist(e,t,i)&&!this.isHeaderHidden(e,t,i))return i;if(o>s)for(let i=o;i>=s;i--)if(this.getters.doesHeaderExist(e,t,i)&&!this.isHeaderHidden(e,t,i))return i}findLastVisibleColRowIndex(e,t,{last:o,first:s}){return we(o,s,-1).find((o=>!this.isHeaderHidden(e,t,o)))||s}findFirstVisibleColRowIndex(e,t){const o=this.getters.getNumberHeaders(e,t);for(let s=0;s<o;s++){if("COL"===t&&!this.isColHidden(e,s))return s;if("ROW"===t&&!this.isRowHidden(e,s))return s}}exportForExcel(e){for(const t of e.sheets)for(const[e,o]of Object.entries(t.rows)){const s=this.isRowHidden(t.id,Number(e));o.isHidden=s}}}).add("cell_computed_style",class extends d_{static getters=["getCellComputedBorder","getCellComputedStyle"];styles={};borders={};handle(e){if(Co.has(e.type)||"UPDATE_CELL"===e.type||"SET_FORMATTING"===e.type||"EVALUATE_CELLS"===e.type)return this.styles={},void(this.borders={});gD(e)?"sheetId"in e?(delete this.styles[e.sheetId],delete this.borders[e.sheetId]):(this.styles={},this.borders={}):xo.has(e.type)?this.styles={}:Eo.has(e.type)&&(this.borders={})}getCellComputedBorder(e){const{sheetId:t,row:o,col:s}=e;return void 0!==this.borders[t]?.[o]?.[s]||(this.borders[t]||(this.borders[t]={}),this.borders[t][o]||(this.borders[t][o]={}),this.borders[t][o][s]||(this.borders[t][o][s]=this.computeCellBorder(e))),this.borders[t][o][s]}getCellComputedStyle(e){const{sheetId:t,row:o,col:s}=e;return void 0!==this.styles[t]?.[o]?.[s]||(this.styles[t]||(this.styles[t]={}),this.styles[t][o]||(this.styles[t][o]={}),this.styles[t][o][s]||(this.styles[t][o][s]=this.computeCellStyle(e))),this.styles[t][o][s]}computeCellBorder(e){const t=this.getters.getCellBorder(e)||{},o={...je(this.getters.getCellTableBorder(e)||{}),...je(t)};return Ve(o)?null:o}computeCellStyle(e){const t=this.getters.getCell(e),o=this.getters.getCellConditionalFormatStyle(e),s={...je(this.getters.getCellTableStyle(e)),...je(t?.style),...je(o)};return this.getters.getEvaluatedCell(e).link&&!s.textColor&&(s.textColor=S),s}}).add("table_computed_style",class extends d_{static getters=["getCellTableStyle","getCellTableBorder"];tableStyles={};handle(e){Co.has(e.type)||"UPDATE_CELL"===e.type&&"content"in e||"EVALUATE_CELLS"===e.type?this.tableStyles={}:gD(e)&&("sheetId"in e?delete this.tableStyles[e.sheetId]:this.tableStyles={})}finalize(){for(const e of this.getters.getSheetIds()){this.tableStyles[e]||(this.tableStyles[e]={});for(const t of this.getters.getTables(e))this.tableStyles[e][t.id]||(this.tableStyles[e][t.id]=this.computeTableStyle(e,t))}}getCellTableStyle(e){const t=this.getters.getTable(e);if(t)return this.tableStyles[e.sheetId][t.id]().styles[e.col]?.[e.row]}getCellTableBorder(e){const t=this.getters.getTable(e);if(t)return this.tableStyles[e.sheetId][t.id]().borders[e.col]?.[e.row]}computeTableStyle(e,t){return Be((()=>{const{config:o,numberOfCols:s,numberOfRows:i}=this.getTableRuntimeConfig(e,t),n=bR(o,this.getters.getTableStyle(t.config.styleId),s,i),r=this.getTableMapping(e,t),a={borders:{},styles:{}};for(let e=0;e<s;e++){const t=r.colMapping[e];a.borders[t]={},a.styles[t]={};for(let o=0;o<i;o++){const s=r.rowMapping[o];a.borders[t][s]=n.borders[e][o],a.styles[t][s]=n.styles[e][o]}}return a}))}getTableRuntimeConfig(e,t){const o=t.range.zone,s={...t.config};let i=o.right-o.left+1,n=o.bottom-o.top+1;for(let i=o.top;i<=o.bottom;i++)this.getters.isRowHidden(e,i)&&(n--,i-o.top<t.config.numberOfHeaders&&(s.numberOfHeaders--,s.numberOfHeaders<0&&(s.numberOfHeaders=0)),i===o.bottom&&(s.totalRow=!1));for(let t=o.left;t<=o.right;t++)this.getters.isColHidden(e,t)&&(i--,t===o.left&&(s.firstColumn=!1),t===o.right&&(s.lastColumn=!1));return{config:s,numberOfCols:i,numberOfRows:n}}getTableMapping(e,t){const o={},s={};let i=0,n=0;const r=t.range.zone;for(let t=r.left;t<=r.right;t++)if(!this.getters.isColHidden(e,t)){o[i]=t,i++;for(let t=r.top;t<=r.bottom;t++)this.getters.isRowHidden(e,t)||(s[n]=t,n++)}return{colMapping:o,rowMapping:s}}}).add("header_positions",class extends d_{static getters=["getColDimensions","getRowDimensions","getColRowOffset"];headerPositions={};isDirty=!0;handle(e){switch(Co.has(e.type)&&(this.headerPositions={},this.isDirty=!0),e.type){case"START":for(const e of this.getters.getSheetIds())this.headerPositions[e]=this.computeHeaderPositionsOfSheet(e);break;case"UPDATE_CELL":case"UPDATE_FILTER":case"UPDATE_TABLE":case"REMOVE_TABLE":this.headerPositions={},this.isDirty=!0;break;case"REMOVE_COLUMNS_ROWS":case"RESIZE_COLUMNS_ROWS":case"HIDE_COLUMNS_ROWS":case"ADD_COLUMNS_ROWS":case"UNHIDE_COLUMNS_ROWS":case"FOLD_HEADER_GROUP":case"UNFOLD_HEADER_GROUP":case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_ALL_HEADER_GROUPS":case"FOLD_ALL_HEADER_GROUPS":case"UNGROUP_HEADERS":case"GROUP_HEADERS":case"CREATE_SHEET":this.headerPositions[e.sheetId]=this.computeHeaderPositionsOfSheet(e.sheetId);break;case"DUPLICATE_SHEET":this.headerPositions[e.sheetIdTo]=be(this.headerPositions[e.sheetId])}}finalize(){if(this.isDirty){for(const e of this.getters.getSheetIds())this.headerPositions[e]=this.computeHeaderPositionsOfSheet(e);this.isDirty=!1}}getColDimensions(e,t){const o=this.headerPositions[e].COL[t],s=this.getters.getColSize(e,t);return{start:o,size:s,end:o+(this.getters.isColHidden(e,t)?0:s)}}getRowDimensions(e,t){const o=this.headerPositions[e].ROW[t],s=this.getters.getRowSize(e,t);return{start:o,size:s,end:o+(this.getters.isRowHidden(e,t)?0:s)}}getColRowOffset(e,t,o,s=this.getters.getActiveSheetId()){const i=this.headerPositions[s][e][t];return this.headerPositions[s][e][o]-i}computeHeaderPositionsOfSheet(e){return{COL:this.computePositions(e,"COL"),ROW:this.computePositions(e,"ROW")}}computePositions(e,t){const o={};let s=0;for(let i=0;i<this.getters.getNumberHeaders(e,t)+1;i++)o[i]=s,this.getters.isHeaderHidden(e,t,i)||(s+=this.getters.getHeaderSize(e,t,i));return o}}).add("viewport",class extends d_{static getters=["getColIndex","getRowIndex","getActiveMainViewport","getSheetViewDimension","getSheetViewDimensionWithHeaders","getMainViewportRect","isVisibleInViewport","getEdgeScrollCol","getEdgeScrollRow","getVisibleFigures","getVisibleRect","getVisibleRectWithoutHeaders","getVisibleCellPositions","getColRowOffsetInViewport","getMainViewportCoordinates","getActiveSheetScrollInfo","getActiveSheetDOMScrollInfo","getSheetViewVisibleCols","getSheetViewVisibleRows","getFrozenSheetViewRatio","isPositionVisible","getColDimensionsInViewport","getRowDimensionsInViewport"];viewports={};sheetViewWidth=de();sheetViewHeight=de();gridOffsetX=0;gridOffsetY=0;sheetsWithDirtyViewports=new Set;shouldAdjustViewports=!1;allowDispatch(e){switch(e.type){case"SET_VIEWPORT_OFFSET":return this.chainValidations(this.checkScrollingDirection,this.checkIfViewportsWillChange)(e);case"RESIZE_SHEETVIEW":return this.chainValidations(this.checkValuesAreDifferent,this.checkPositiveDimension)(e);default:return"Success"}}handleEvent(e){const t=this.getters.getActiveSheetId();if(e.options.scrollIntoView){let{col:o,row:s}=an(e.previousAnchor.zone,e.anchor.zone);if("updateAnchor"===e.mode){const i=e.previousAnchor.zone,n=e.anchor.zone,{top:r,bottom:a,left:l,right:c}=this.getMainInternalViewport(t);i.left===n.left&&i.right===n.right&&(o=l>o||o>c?l:o),i.top===n.top&&i.bottom===n.bottom&&(s=r>s||s>a?r:s)}o=Math.min(o,this.getters.getNumberCols(t)-1),s=Math.min(s,this.getters.getNumberRows(t)-1),this.sheetsWithDirtyViewports.has(t)||this.refreshViewport(this.getters.getActiveSheetId(),{col:o,row:s})}}handle(e){if(Co.has(e.type))for(const e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);switch(e.type){case"START":this.selection.observe(this,{handleEvent:this.handleEvent.bind(this)}),this.resetViewports(this.getters.getActiveSheetId());break;case"UNDO":case"REDO":this.cleanViewports();for(const e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);this.shouldAdjustViewports=!0;break;case"RESIZE_SHEETVIEW":this.resizeSheetView(e.height,e.width,e.gridOffsetX,e.gridOffsetY);break;case"SET_VIEWPORT_OFFSET":this.setSheetViewOffset(e.offsetX,e.offsetY);break;case"SHIFT_VIEWPORT_DOWN":const t=this.getters.getActiveSheetId(),{top:o,viewportHeight:s,offsetCorrectionY:i}=this.getMainInternalViewport(t),n=this.getters.getRowDimensions(t,o);this.shiftVertically(n.start+s-i);break;case"SHIFT_VIEWPORT_UP":{const e=this.getters.getActiveSheetId(),{top:t,viewportHeight:o,offsetCorrectionY:s}=this.getMainInternalViewport(e),i=this.getters.getRowDimensions(e,t);this.shiftVertically(i.end-s-o);break}case"REMOVE_TABLE":case"UPDATE_TABLE":case"UPDATE_FILTER":this.sheetsWithDirtyViewports.add(e.sheetId);break;case"REMOVE_COLUMNS_ROWS":case"RESIZE_COLUMNS_ROWS":case"HIDE_COLUMNS_ROWS":case"ADD_COLUMNS_ROWS":case"UNHIDE_COLUMNS_ROWS":case"UNGROUP_HEADERS":case"GROUP_HEADERS":case"FOLD_HEADER_GROUP":case"UNFOLD_HEADER_GROUP":case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_ALL_HEADER_GROUPS":case"FOLD_ALL_HEADER_GROUPS":{const t="sheetId"in e?e.sheetId:this.getters.getActiveSheetId();this.sheetsWithDirtyViewports.add(t);break}case"UPDATE_CELL":if("content"in e||"format"in e||void 0!==e.style?.fontSize)for(const e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);break;case"DELETE_SHEET":this.cleanViewports();break;case"ACTIVATE_SHEET":this.sheetsWithDirtyViewports.add(e.sheetIdTo);break;case"UNFREEZE_ROWS":case"UNFREEZE_COLUMNS":case"FREEZE_COLUMNS":case"FREEZE_ROWS":case"UNFREEZE_COLUMNS_ROWS":this.resetViewports(this.getters.getActiveSheetId());break;case"DELETE_SHEET":this.sheetsWithDirtyViewports.delete(e.sheetId);break;case"SCROLL_TO_CELL":this.refreshViewport(this.getters.getActiveSheetId(),{col:e.col,row:e.row})}}finalize(){for(const e of this.sheetsWithDirtyViewports)if(this.resetViewports(e),this.shouldAdjustViewports){const t=this.getters.getSheetPosition(e);this.getSubViewports(e).forEach((e=>{e.adjustPosition(t)}))}this.sheetsWithDirtyViewports=new Set,this.shouldAdjustViewports=!1,this.setViewports()}setViewports(){const e=this.getters.getSheetIds();for(const t of e)this.viewports[t]?.bottomRight||this.resetViewports(t)}getColIndex(e){const t=this.getters.getActiveSheetId();return Math.max(...this.getSubViewports(t).map((t=>t.getColIndex(e))))}getRowIndex(e){const t=this.getters.getActiveSheetId();return Math.max(...this.getSubViewports(t).map((t=>t.getRowIndex(e))))}getSheetViewDimensionWithHeaders(){return{width:this.sheetViewWidth+this.gridOffsetX,height:this.sheetViewHeight+this.gridOffsetY}}getSheetViewDimension(){return{width:this.sheetViewWidth,height:this.sheetViewHeight}}getActiveMainViewport(){const e=this.getters.getActiveSheetId();return this.getMainViewport(e)}getActiveSheetScrollInfo(){const e=this.getters.getActiveSheetId(),t=this.getMainInternalViewport(e);return{scrollX:t.offsetX,scrollY:t.offsetY}}getActiveSheetDOMScrollInfo(){const e=this.getters.getActiveSheetId(),t=this.getMainInternalViewport(e);return{scrollX:t.offsetScrollbarX,scrollY:t.offsetScrollbarY}}getSheetViewVisibleCols(){const e=this.getters.getActiveSheetId(),t=this.getSubViewports(e);return[...new Set(t.map((e=>we(e.left,e.right+1))).flat())].filter((t=>!this.getters.isHeaderHidden(e,"COL",t)))}getSheetViewVisibleRows(){const e=this.getters.getActiveSheetId(),t=this.getSubViewports(e);return[...new Set(t.map((e=>we(e.top,e.bottom+1))).flat())].filter((t=>!this.getters.isHeaderHidden(e,"ROW",t)))}getVisibleCellPositions(){const e=this.getSheetViewVisibleCols(),t=this.getSheetViewVisibleRows(),o=this.getters.getActiveSheetId(),s=[];for(const i of e)for(const e of t){const t={sheetId:o,col:i,row:e},n=this.getters.getMainCellPosition(t);n.row===e&&n.col===i&&s.push(t)}return s}getMainViewportRect(){const e=this.getters.getActiveSheetId(),t=this.getMainInternalViewport(e),{xSplit:o,ySplit:s}=this.getters.getPaneDivisions(e);let{width:i,height:n}=t.getMaxSize();return{x:this.getters.getColDimensions(e,o).start,y:this.getters.getRowDimensions(e,s).start,width:i,height:n}}getMaximumSheetOffset(){const e=this.getters.getActiveSheetId(),{width:t,height:o}=this.getMainViewportRect(),s=this.getMainInternalViewport(e);return{maxOffsetX:Math.max(0,t-s.viewportWidth+1),maxOffsetY:Math.max(0,o-s.viewportHeight+1)}}getColRowOffsetInViewport(e,t,o){const s=this.getters.getActiveSheetId(),i=this.getters.getSheetViewVisibleCols(),n=this.getters.getSheetViewVisibleRows();if(o<t)return-this.getColRowOffsetInViewport(e,o,t);let r=0;const a="COL"===e?i:n;for(let i=t;i<o;i++)a.includes(i)&&(r+=this.getters.getHeaderSize(s,e,i));return r}isVisibleInViewport({sheetId:e,col:t,row:o}){return this.getSubViewports(e).some((e=>e.isVisible(t,o)))}getEdgeScrollCol(e,t,o){let s=!1,i=0,n=0;const{xSplit:r}=this.getters.getPaneDivisions(this.getters.getActiveSheetId()),{width:a}=this.getSheetViewDimension(),{x:l}=this.getMainViewportCoordinates(),c=this.getActiveSheetScrollInfo().scrollX;return e>a?(s=!0,n=ks(e-a),i=1):e<l&&o>=l&&c>0?(s=!0,n=ks(l-e),i=-1):r&&t<l&&e>l&&(s=!0,n=ks(e),i="reset"),{canEdgeScroll:s,direction:i,delay:n}}getEdgeScrollRow(e,t,o){let s=!1,i=0,n=0;const{ySplit:r}=this.getters.getPaneDivisions(this.getters.getActiveSheetId()),{height:a}=this.getSheetViewDimension(),{y:l}=this.getMainViewportCoordinates(),c=this.getActiveSheetScrollInfo().scrollY;return e>a?(s=!0,n=ks(e-a),i=1):e<l&&o>=l&&c>0?(s=!0,n=ks(l-e),i=-1):r&&t<l&&e>l&&(s=!0,n=ks(e),i="reset"),{canEdgeScroll:s,direction:i,delay:n}}getVisibleRect(e){const t=this.getVisibleRectWithoutHeaders(e);return{...t,x:t.x+this.gridOffsetX,y:t.y+this.gridOffsetY}}getVisibleRectWithoutHeaders(e){const t=this.getters.getActiveSheetId(),o=this.getSubViewports(t).map((t=>t.getRect(e))).filter(Le);if(0===o.length)return{x:0,y:0,width:0,height:0};const s=Math.min(...o.map((e=>e.x))),i=Math.min(...o.map((e=>e.y)));return{x:s,y:i,width:Math.max(...o.map((e=>e.x+e.width)))-s,height:Math.max(...o.map((e=>e.y+e.height)))-i}}getMainViewportCoordinates(){const e=this.getters.getActiveSheetId(),{xSplit:t,ySplit:o}=this.getters.getPaneDivisions(e);return{x:this.getters.getColDimensions(e,t).start,y:this.getters.getRowDimensions(e,o).start}}getColDimensionsInViewport(e,t){const o=nt(this.getters.getSheetViewVisibleCols()),s=this.getters.getColRowOffsetInViewport("COL",o,t),i=this.getters.getColSize(e,t);return{start:s,size:i,end:s+(this.getters.isColHidden(e,t)?0:i)}}getRowDimensionsInViewport(e,t){const o=nt(this.getters.getSheetViewVisibleRows()),s=this.getters.getColRowOffsetInViewport("ROW",o,t),i=this.getters.getRowSize(e,t);return{start:s,size:i,end:s+(this.getters.isRowHidden(e,t)?0:i)}}ensureMainViewportExist(e){this.viewports[e]||this.resetViewports(e)}getSubViewports(e){return this.ensureMainViewportExist(e),Object.values(this.viewports[e]).filter(Le)}checkPositiveDimension(e){return e.width<0||e.height<0?"InvalidViewportSize":"Success"}checkValuesAreDifferent(e){const{height:t,width:o}=this.getSheetViewDimension();return e.gridOffsetX===this.gridOffsetX&&e.gridOffsetY===this.gridOffsetY&&e.width===o&&e.height===t?"ValuesNotChanged":"Success"}checkScrollingDirection({offsetX:e,offsetY:t}){const o=this.getMainInternalViewport(this.getters.getActiveSheetId());return!o.canScrollHorizontally&&e>0||!o.canScrollVertically&&t>0?"InvalidScrollingDirection":"Success"}checkIfViewportsWillChange({offsetX:e,offsetY:t}){const o=this.getters.getActiveSheetId(),{maxOffsetX:s,maxOffsetY:i}=this.getMaximumSheetOffset();return this.getSubViewports(o).some((o=>o.willNewOffsetScrollViewport(Ce(e,0,s),Ce(t,0,i))))?"Success":"ViewportScrollLimitsReached"}getMainViewport(e){const t=this.getMainInternalViewport(e);return{top:t.top,left:t.left,bottom:t.bottom,right:t.right}}getMainInternalViewport(e){return this.ensureMainViewportExist(e),this.viewports[e].bottomRight}cleanViewports(){const e=this.getters.getSheetIds();for(let t of Object.keys(this.viewports))e.includes(t)||delete this.viewports[t]}resizeSheetView(e,t,o=0,s=0){this.sheetViewHeight=e,this.sheetViewWidth=t,this.gridOffsetX=o,this.gridOffsetY=s,this.recomputeViewports()}recomputeViewports(){for(let e of Object.keys(this.viewports))this.resetViewports(e)}setSheetViewOffset(e,t){const o=this.getters.getActiveSheetId(),{maxOffsetX:s,maxOffsetY:i}=this.getMaximumSheetOffset();this.getSubViewports(o).forEach((o=>o.setViewportOffset(Ce(e,0,s),Ce(t,0,i))))}getViewportOffset(e){return{x:this.viewports[e]?.bottomRight.offsetScrollbarX||0,y:this.viewports[e]?.bottomRight.offsetScrollbarY||0}}resetViewports(e){if(!this.getters.tryGetSheet(e))return;const{xSplit:t,ySplit:o}=this.getters.getPaneDivisions(e),s=this.getters.getNumberCols(e),i=this.getters.getNumberRows(e),n=this.getters.getColRowOffset("COL",0,t,e),r=this.getters.getColRowOffset("ROW",0,o,e),{xRatio:a,yRatio:l}=this.getFrozenSheetViewRatio(e),c=a<1,h=l<1,d=this.getViewportOffset(e),u={topLeft:o&&t&&new RD(this.getters,e,{left:0,right:t-1,top:0,bottom:o-1},{width:n,height:r},{canScrollHorizontally:!1,canScrollVertically:!1},{x:0,y:0})||void 0,topRight:o&&new RD(this.getters,e,{left:t,right:s-1,top:0,bottom:o-1},{width:this.sheetViewWidth-n,height:r},{canScrollHorizontally:c,canScrollVertically:!1},{x:c?d.x:0,y:0})||void 0,bottomLeft:t&&new RD(this.getters,e,{left:0,right:t-1,top:o,bottom:i-1},{width:n,height:this.sheetViewHeight-r},{canScrollHorizontally:!1,canScrollVertically:h},{x:0,y:h?d.y:0})||void 0,bottomRight:new RD(this.getters,e,{left:t,right:s-1,top:o,bottom:i-1},{width:this.sheetViewWidth-n,height:this.sheetViewHeight-r},{canScrollHorizontally:c,canScrollVertically:h},{x:c?d.x:0,y:h?d.y:0})};this.viewports[e]=u}refreshViewport(e,t){this.getSubViewports(e).forEach((e=>{e.adjustViewportZone(),e.adjustPosition(t)}))}shiftVertically(e){const t=this.getters.getActiveSheetId(),{top:o}=this.getMainInternalViewport(t),{scrollX:s}=this.getActiveSheetScrollInfo();this.setSheetViewOffset(s,e);const{anchor:i}=this.getters.getSelection();if(i.cell.row>=this.getters.getPaneDivisions(t).ySplit){const e=this.getMainInternalViewport(t).top-o;this.selection.selectCell(i.cell.col,i.cell.row+e)}}getVisibleFigures(){const e=this.getters.getActiveSheetId(),t=[],o=this.getters.getFigures(e),{scrollX:s,scrollY:i}=this.getActiveSheetScrollInfo(),{x:n,y:r}=this.getters.getMainViewportCoordinates(),{width:a,height:l}=this.getters.getSheetViewDimensionWithHeaders();for(const e of o)e.x>=n&&(e.x+e.width<=n+s||e.x>=a+s+n)||e.y>=r&&(e.y+e.height<=r+i||e.y>=l+i+r)||t.push(e);return t}isPositionVisible(e){const{scrollX:t,scrollY:o}=this.getters.getActiveSheetScrollInfo(),{x:s,y:i}=this.getters.getMainViewportCoordinates(),{width:n,height:r}=this.getters.getSheetViewDimension();return!(e.x>=s&&(e.x<s+t||e.x>n+t+s))&&!(e.y>=i&&(e.y<i+o||e.y>r+o+i))}getFrozenSheetViewRatio(e){const{xSplit:t,ySplit:o}=this.getters.getPaneDivisions(e),s=this.getters.getColDimensions(e,t).start,i=this.getters.getRowDimensions(e,o).start;return{xRatio:s/(this.sheetViewWidth+this.gridOffsetX),yRatio:i/(this.sheetViewHeight+this.gridOffsetY)}}}).add("clipboard",class extends d_{static layers=["Clipboard"];static getters=["getClipboardContent","getClipboardTextContent","isCutOperation","isPaintingFormat"];status="invisible";paintFormatStatus="inactive";originSheetId;copiedData;_isCutOperation=!1;allowDispatch(e){switch(e.type){case"CUT":const t=this.getters.getSelectedZones();return this.isCutAllowedOn(t);case"PASTE_FROM_OS_CLIPBOARD":{const t=this.convertOSClipboardData(e.text),o=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);return this.isPasteAllowed(e.target,t,{pasteOption:o,isCutOperation:!1})}case"PASTE":{if(!this.copiedData)return"EmptyClipboard";const t=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);return this.isPasteAllowed(e.target,this.copiedData,{pasteOption:t,isCutOperation:this._isCutOperation})}case"COPY_PASTE_CELLS_ABOVE":{const e=this.getters.getSelectedZones();if(e.length>1||0===e[0].top&&0===e[0].bottom)return"InvalidCopyPasteSelection";break}case"COPY_PASTE_CELLS_ON_LEFT":{const e=this.getters.getSelectedZones();if(e.length>1||0===e[0].left&&0===e[0].right)return"InvalidCopyPasteSelection";break}case"INSERT_CELL":{const{cut:t,paste:o}=this.getInsertCellsTargets(e.zone,e.shiftDimension),s=this.copy(t);return this.isPasteAllowed(o,s,{isCutOperation:!0})}case"DELETE_CELL":{const{cut:t,paste:o}=this.getDeleteCellsTargets(e.zone,e.shiftDimension),s=this.copy(t);return this.isPasteAllowed(o,s,{isCutOperation:!0})}case"ACTIVATE_PAINT_FORMAT":return"inactive"!==this.paintFormatStatus?"AlreadyInPaintingFormatMode":"Success"}return"Success"}handle(e){switch(e.type){case"COPY":case"CUT":const t=this.getters.getSelectedZones();this.status="visible",this.originSheetId=this.getters.getActiveSheetId(),this.copiedData=this.copy(t),this._isCutOperation="CUT"===e.type;break;case"PASTE_FROM_OS_CLIPBOARD":{this._isCutOperation=!1,this.copiedData=this.convertOSClipboardData(e.text);const t=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);this.paste(e.target,this.copiedData,{pasteOption:t,selectTarget:!0,isCutOperation:!1}),this.status="invisible";break}case"PASTE":{const t=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);this.paste(e.target,this.copiedData,{pasteOption:t,selectTarget:!0,isCutOperation:this._isCutOperation}),"oneOff"===this.paintFormatStatus&&(this.paintFormatStatus="inactive"),this.status="invisible",this._isCutOperation&&(this.copiedData=void 0,this._isCutOperation=!1);break}case"COPY_PASTE_CELLS_ABOVE":{const e=this.getters.getSelectedZone(),t=e.top!==e.bottom,o={...e,bottom:t?e.top:e.top-1,top:t?e.top:e.top-1};this.originSheetId=this.getters.getActiveSheetId();const s=this.copy([o]);this.paste([e],s,{isCutOperation:!1,selectTarget:!0})}break;case"COPY_PASTE_CELLS_ON_LEFT":{const e=this.getters.getSelectedZone(),t=e.left!==e.right,o={...e,right:t?e.left:e.left-1,left:t?e.left:e.left-1};this.originSheetId=this.getters.getActiveSheetId();const s=this.copy([o]);this.paste([e],s,{isCutOperation:!1,selectTarget:!0})}break;case"CLEAN_CLIPBOARD_HIGHLIGHT":this.status="invisible";break;case"DELETE_CELL":{const{cut:t,paste:o}=this.getDeleteCellsTargets(e.zone,e.shiftDimension);if(!Bi(t[0])){this.dispatch("CLEAR_CELLS",{target:[e.zone],sheetId:this.getters.getActiveSheetId()});break}const s=this.copy(t);this.paste(o,s,{isCutOperation:!0});break}case"INSERT_CELL":{const{cut:t,paste:o}=this.getInsertCellsTargets(e.zone,e.shiftDimension),s=this.copy(t);this.paste(o,s,{isCutOperation:!0});break}case"ADD_COLUMNS_ROWS":if(this.status="invisible",!0!==this._isCutOperation||e.sheetId!==this.copiedData?.sheetId)return;this.isColRowDirtyingClipboard("before"===e.position?e.base:e.base+1,e.dimension)&&(this.copiedData=void 0);break;case"REMOVE_COLUMNS_ROWS":if(this.status="invisible",!0!==this._isCutOperation||e.sheetId!==this.copiedData?.sheetId)return;for(let t of e.elements){if(this.isColRowDirtyingClipboard(t,e.dimension)){this.copiedData=void 0;break}}this.status="invisible";break;case"REPEAT_PASTE":this.paste(e.target,this.copiedData,{isCutOperation:!1,pasteOption:e.pasteOption,selectTarget:!0});break;case"ACTIVATE_PAINT_FORMAT":{const t=this.getters.getSelectedZones();this._isCutOperation=!1,this.copiedData=this.copy(t),this.status="visible",e.persistent?this.paintFormatStatus="persistent":this.paintFormatStatus="oneOff";break}case"DELETE_SHEET":if(!0!==this._isCutOperation)return;this.originSheetId===e.sheetId&&(this.copiedData=void 0,this.status="invisible");break;case"CANCEL_PAINT_FORMAT":this.paintFormatStatus="inactive",this.status="invisible";break;default:To(e)&&(this.status="invisible")}}convertOSClipboardData(e){const t=this.selectClipboardHandlers({figureId:!0}).concat(this.selectClipboardHandlers({}));let o={};for(const{handlerName:s,handler:i}of t){const t=i.convertOSClipboardData(e);o[s]=t;const n=["sheetId","cells","zones","figureId"];for(const e of n)t&&e in t&&(o[e]=t[e])}return o}selectClipboardHandlers(e){const t="figureId"in e?la.figureHandlers:la.cellHandlers;return t.getKeys().map((e=>({handlerName:e,handler:new(t.get(e))(this.getters,this.dispatch)})))}isCutAllowedOn(e){const t=this.getClipboardData(e);for(const{handler:e}of this.selectClipboardHandlers(t)){const o=e.isCutAllowed(t);if("Success"!==o)return o}return"Success"}isPasteAllowed(e,t,o){for(const{handler:s}of this.selectClipboardHandlers(t)){const i=s.isPasteAllowed(this.getters.getActiveSheetId(),e,t,{...o});if("Success"!==i)return i}return"Success"}isColRowDirtyingClipboard(e,t){if(!this.copiedData||!this.copiedData.zones)return!1;const{zones:o}=this.copiedData;for(let s of o){if("COL"===t&&e<=s.right)return!0;if("ROW"===t&&e<=s.bottom)return!0}return!1}copy(e){let t={};const o=this.getClipboardData(e);for(const{handlerName:e,handler:s}of this.selectClipboardHandlers(o)){const i=s.copy(o);t[e]=i;const n=["sheetId","cells","zones","figureId"];for(const e of n)i&&e in i&&(t[e]=i[e])}return t}paste(e,t,o){if(!t)return;let s,i=[];const n=this.getters.getActiveSheetId();let r={sheetId:n,zones:e};const a=this.selectClipboardHandlers(t);for(const{handlerName:l,handler:c}of a){const a=t[l];if(!a)continue;const h=c.getPasteTarget(n,e,a,o);h.figureId&&(r.figureId=h.figureId);for(const e of h.zones)i.push(e),s=void 0!==s?Yi(s,e):e}if(void 0!==s&&this.addMissingDimensions(this.getters.getActiveSheetId(),s.right-s.left+1,s.bottom-s.top+1,s.left,s.top),a.forEach((({handlerName:e,handler:s})=>{const i=t[e];i&&s.paste(r,i,o)})),!o?.selectTarget)return;const l=e[0],c=l.left,h=l.top;this.selection.getBackToDefault(),this.selection.selectZone({cell:{col:c,row:h},zone:Yi(...i)},{scrollIntoView:!1})}addMissingDimensions(e,t,o,s,i){const n=o+i-this.getters.getNumberRows(e);n>0&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"ROW",base:this.getters.getNumberRows(e)-1,sheetId:e,quantity:n,position:"after"});const r=t+s-this.getters.getNumberCols(e);r>0&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:this.getters.getNumberCols(e)-1,sheetId:e,quantity:r,position:"after"})}getClipboardTextContent(){return this.getPlainTextContent()}getClipboardContent(){return{[yo.PlainText]:this.getPlainTextContent(),[yo.Html]:this.getHTMLContent()}}getPlainTextContent(){return this.copiedData?.cells&&this.copiedData.cells.map((e=>e.map((e=>this.getters.shouldShowFormulas()&&e.cell?.isFormula?e.cell?.content||"":e.evaluatedCell?.formattedValue||"")).join("\t"))).join("\n")||"\t"}getHTMLContent(){if(!this.copiedData?.cells)return;const e=this.copiedData.cells;if(1===e.length&&1===e[0].length)return this.getters.getCellText(e[0][0].position);if(!e[0][0])return"";let t='<table border="1" style="border-collapse:collapse">';for(const o of e){t+="<tr>";for(const e of o){if(!e)continue;t+=`<td style="${Fb(Db(this.getters.getCellComputedStyle(e.position)))}">`+yO(this.getters.getCellText(e.position))+"</td>"}t+="</tr>"}return t+="</table>",t}isCutOperation(){return this._isCutOperation??!1}isPaintingFormat(){return"inactive"!==this.paintFormatStatus}getDeleteCellsTargets(e,t){const o=this.getters.getActiveSheetId();let s;return s="COL"===t?{...e,left:e.right+1,right:this.getters.getNumberCols(o)-1}:{...e,top:e.bottom+1,bottom:this.getters.getNumberRows(o)-1},{cut:[s],paste:[e]}}getInsertCellsTargets(e,t){const o=this.getters.getActiveSheetId();let s,i;return"COL"===t?(s={...e,right:this.getters.getNumberCols(o)-1},i={...e,left:e.right+1,right:e.right+1}):(s={...e,bottom:this.getters.getNumberRows(o)-1},i={...e,top:e.bottom+1,bottom:this.getters.getNumberRows(o)-1}),{cut:[s],paste:[i]}}getClipboardData(e){const t=this.getters.getActiveSheetId(),o=this.getters.getSelectedFigureId();return o?{figureId:o,sheetId:t}:zn(t,e)}drawLayer(e){if("visible"!==this.status||!this.copiedData)return;const{sheetId:t,zones:o}=this.copiedData;if(t!==this.getters.getActiveSheetId()||!o||!o.length)return;const{ctx:s,thinLineWidth:i}=e;s.setLineDash([8,5]),s.strokeStyle=p,s.lineWidth=3.3*i;for(const e of o){const{x:t,y:o,width:i,height:n}=this.getters.getVisibleRect(e);i>0&&n>0&&s.strokeRect(t,o,i,n)}}}),_D=(new n).add("evaluation",class extends d_{static getters=["evaluateFormula","evaluateFormulaResult","getCorrespondingFormulaCell","getRangeFormattedValues","getRangeValues","getRangeFormats","getEvaluatedCell","getEvaluatedCells","getEvaluatedCellsInZone","getEvaluatedCellsPositions","getSpreadZone","getArrayFormulaSpreadingOn","isEmpty"];shouldRebuildDependenciesGraph=!0;evaluator;positionsToUpdate=[];constructor(e){super(e),this.evaluator=new W_(e.custom,this.getters)}beforeHandle(e){(Co.has(e.type)||wo.has(e.type))&&(this.shouldRebuildDependenciesGraph=!0)}handle(e){switch(e.type){case"UPDATE_CELL":if(!("content"in e)&&!("format"in e)||this.shouldRebuildDependenciesGraph)return;this.positionsToUpdate.push(e),"content"in e&&this.evaluator.updateDependencies(e);break;case"EVALUATE_CELLS":this.evaluator.evaluateAllCells()}}finalize(){this.shouldRebuildDependenciesGraph?(this.evaluator.buildDependencyGraph(),this.evaluator.evaluateAllCells(),this.shouldRebuildDependenciesGraph=!1):this.positionsToUpdate.length&&this.evaluator.evaluateCells(this.positionsToUpdate),this.positionsToUpdate=[]}evaluateFormula(e,t){const o=this.evaluateFormulaResult(e,t);return No(o)?ys(o,(e=>e.value)):o.value}evaluateFormulaResult(e,t){return this.evaluator.evaluateFormulaResult(e,t)}getRangeFormattedValues(e){const t=this.getters.tryGetSheet(e.sheetId);return void 0===t?[]:this.getters.getEvaluatedCellsInZone(t.id,e.zone).map((e=>e.formattedValue))}getRangeValues(e){const t=this.getters.tryGetSheet(e.sheetId);return void 0===t?[]:this.getters.getEvaluatedCellsInZone(t.id,e.zone).map((e=>e.value))}getRangeFormats(e){const t=this.getters.tryGetSheet(e.sheetId);return void 0===t?[]:this.getters.getEvaluatedCellsInZone(t.id,e.zone).map((e=>e.format))}getEvaluatedCell(e){return this.evaluator.getEvaluatedCell(e)}getEvaluatedCells(e){return this.evaluator.getEvaluatedPositionsInSheet(e).map((e=>this.getEvaluatedCell(e)))}getEvaluatedCellsPositions(e){return this.evaluator.getEvaluatedPositionsInSheet(e)}getEvaluatedCellsInZone(e,t){return sn(t).map((({col:t,row:o})=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:o})))}getSpreadZone(e,t={ignoreSpillError:!1}){return this.evaluator.getSpreadZone(e,t)}getArrayFormulaSpreadingOn(e){return this.evaluator.getArrayFormulaSpreadingOn(e)}isEmpty(e,t){return sn(t).map((({col:t,row:o})=>this.getEvaluatedCell({sheetId:e,col:t,row:o}))).every((e=>e.type===So.empty))}exportForExcel(e){for(const t of this.evaluator.getEvaluatedPositions()){const o=this.evaluator.getEvaluatedCell(t),s=_t(t.col,t.row),i=o.value;let n,r,a=!1,l=!0;const c=e.sheets.find((e=>e.id===t.sheetId)),h=this.getCorrespondingFormulaCell(t);h&&(l=fv(h.compiledFormula.tokens),a=l,l||""!==i&&(n=(i??"").toString(),r=o.format));const d=c.cells[s]||{},u=r?Ue(r,e.formats):d.format;let g;g=l&&a&&h instanceof i_?h.contentWithFixedReferences:l?d.content:n,c.cells[s]={...d,value:i,isFormula:a,content:g,format:u}}}getCorrespondingFormulaCell(e){const t=this.getters.getCell(e);if(t&&t.isFormula)return function(e){try{return pv(e),!1}catch(e){return!0}}(t.compiledFormula.tokens)?void 0:t;if(t&&t.content)return;const o=this.getArrayFormulaSpreadingOn(e);if(void 0===o)return;const s=this.getters.getCell(o);return s?.isFormula?s:void 0}}).add("evaluation_chart",class extends d_{static getters=["getChartRuntime","getStyleOfSingleCellChart"];charts={};createRuntimeChart=function(e){const t=US.getAll().sort(((e,t)=>e.sequence-t.sequence));return function(o){const s=t.find((e=>e.match(o.type)));if(!s)throw new Error("No runtime builder for this chart.");return s.getChartRuntime(o,e)}}(this.getters);handle(e){if(Co.has(e.type)||xo.has(e.type)||"EVALUATE_CELLS"===e.type||"UPDATE_CELL"===e.type)for(const e in this.charts)this.charts[e]=void 0;switch(e.type){case"UPDATE_CHART":case"CREATE_CHART":case"DELETE_FIGURE":this.charts[e.id]=void 0;break;case"DELETE_SHEET":for(let e in this.charts)this.getters.isChartDefined(e)||(this.charts[e]=void 0)}}getChartRuntime(e){if(!this.charts[e]){const t=this.getters.getChart(e);if(!t)throw new Error(`No chart for the given id: ${e}`);this.charts[e]=this.createRuntimeChart(t)}return this.charts[e]}getStyleOfSingleCellChart(e,t){if(e)return{background:e,fontColor:Xl(e)};if(!t)return{background:m,fontColor:Xl(m)};const o=t.zone.left,s=t.zone.top,i=t.sheetId,n=this.getters.getCellComputedStyle({sheetId:i,col:o,row:s}),r=n.fillColor||m;return{background:r,fontColor:n.textColor||Xl(r)}}exportForExcel(e){for(const t of e.sheets){t.images||(t.images=[]);const e=this.getters.getFigures(t.id),o=[];for(const s of e){if(!s||"chart"!==s.tag)continue;const e=s.id,i=this.getters.getChart(e)?.getDefinitionForExcel();if(i)o.push({...s,data:i});else{if(!this.getters.getChart(e))continue;const o=this.getters.getChartType(e),i=uS(this.getters.getChartRuntime(e),s,o);i&&t.images.push({...s,tag:"image",data:{mimetype:"image/png",path:i,size:{width:s.width,height:s.height}}})}}t.charts=o}}}).add("evaluation_cf",class extends d_{static getters=["getConditionalIcon","getCellConditionalFormatStyle"];isStale=!0;computedStyles={};computedIcons={};handle(e){(Co.has(e.type)||xo.has(e.type)||"UPDATE_CELL"===e.type&&("content"in e||"format"in e))&&(this.isStale=!0)}finalize(){if(this.isStale){for(const e of this.getters.getSheetIds())this.computedStyles[e]=Be((()=>this.getComputedStyles(e))),this.computedIcons[e]=Be((()=>this.getComputedIcons(e)));this.isStale=!1}}getCellConditionalFormatStyle(e){const{sheetId:t,col:o,row:s}=e,i=this.computedStyles[t]();return i&&i[o]?.[s]}getConditionalIcon({sheetId:e,col:t,row:o}){const s=this.computedIcons[e]();return s&&s[t]?.[o]}getComputedStyles(e){const t={};for(let o of this.getters.getConditionalFormats(e).reverse())switch(o.rule.type){case"ColorScaleRule":for(let s of o.ranges)this.applyColorScale(e,s,o.rule,t);break;case"CellIsRule":const s=o.rule.values.map((e=>e.startsWith("=")?gv(e):void 0));for(let i of o.ranges){const n=this.getters.getRangeFromSheetXC(e,i).zone;for(let i=n.top;i<=n.bottom;i++)for(let r=n.left;r<=n.right;r++){const a=this.rulePredicate[o.rule.type],l={sheetId:e,col:r,row:i},c=o.rule.values.map(((t,o)=>{const a=s[o];return a?this.getters.getTranslatedCellFormula(e,r-n.left,i-n.top,{...a,dependencies:a.dependencies.map((t=>this.getters.getRangeFromSheetXC(e,t)))}):t}));a&&a(l,{...o.rule,values:c})&&(t[r]||(t[r]=[]),t[r][i]=Object.assign(t[r]?.[i]||{},o.rule.style))}}}return t}getComputedIcons(e){const t={};for(let o of this.getters.getConditionalFormats(e).reverse())if("IconSetRule"===o.rule.type)for(let s of o.ranges)this.applyIcon(e,s,o.rule,t);return t}parsePoint(e,t,o,s){const i=this.getters.getEvaluatedCellsInZone(e,this.getters.getRangeFromSheetXC(e,t).zone).filter((e=>e.type===So.number)).map((e=>e.value));switch(o.type){case"value":return"max"===s?it(i):nt(i);case"number":return Number(o.value);case"percentage":const t=nt(i);return t+(it(i)-t)*Number(o.value)/100;case"percentile":return ho(i,Number(o.value)/100,!0);case"formula":const n=o.value&&this.getters.evaluateFormula(e,o.value);return"number"==typeof n?n:null;default:return null}}applyIcon(e,t,o,s){const i=this.parsePoint(e,t,o.lowerInflectionPoint),n=this.parsePoint(e,t,o.upperInflectionPoint);if(null===i||null===n||i>n)return;const r=this.getters.getRangeFromSheetXC(e,t).zone,a=[o.icons.upper,o.icons.middle,o.icons.lower];for(let t=r.top;t<=r.bottom;t++)for(let l=r.left;l<=r.right;l++){const r=this.getters.getEvaluatedCell({sheetId:e,col:l,row:t});if(r.type!==So.number)continue;const c=this.computeIcon(r.value,n,o.upperInflectionPoint.operator,i,o.lowerInflectionPoint.operator,a);s[l]||(s[l]=[]),s[l][t]=c}}computeIcon(e,t,o,s,i,n){return"ge"===o&&e>=t||"gt"===o&&e>t?n[0]:"ge"===i&&e>=s||"gt"===i&&e>s?n[1]:n[2]}applyColorScale(e,t,o,s){const i=this.parsePoint(e,t,o.minimum,"min"),n=o.midpoint?this.parsePoint(e,t,o.midpoint):null,r=this.parsePoint(e,t,o.maximum,"max");if(null===i||null===r||i>=r||n&&(i>=n||n>=r))return;const a=this.getters.getRangeFromSheetXC(e,t).zone,l=[];o.midpoint&&n?(l.push({minValue:i,minColor:o.minimum.color,colorDiffUnit:this.computeColorDiffUnits(i,n,o.minimum.color,o.midpoint.color)}),l.push({minValue:n,minColor:o.midpoint.color,colorDiffUnit:this.computeColorDiffUnits(n,r,o.midpoint.color,o.maximum.color)})):l.push({minValue:i,minColor:o.minimum.color,colorDiffUnit:this.computeColorDiffUnits(i,r,o.minimum.color,o.maximum.color)});for(let t=a.top;t<=a.bottom;t++)for(let o=a.left;o<=a.right;o++){const a=this.getters.getEvaluatedCell({sheetId:e,col:o,row:t});if(a.type===So.number){const e=Ce(a.value,i,r);let c;c=2===l.length&&n?e<=n?this.colorCell(e,l[0].minValue,l[0].minColor,l[0].colorDiffUnit):this.colorCell(e,l[1].minValue,l[1].minColor,l[1].colorDiffUnit):this.colorCell(e,l[0].minValue,l[0].minColor,l[0].colorDiffUnit),s[o]||(s[o]=[]),s[o][t]=s[o]?.[t]||{},s[o][t].fillColor=ct(c)}}}computeColorDiffUnits(e,t,o,s){const i=t-e;return[((o>>16)%256-(s>>16)%256)/i,((o>>8)%256-(s>>8)%256)/i,(o%256-s%256)/i]}colorCell(e,t,o,s){const[i,n,r]=s;return Math.round((o>>16)%256-i*(e-t))<<16|Math.round((o>>8)%256-n*(e-t))<<8|Math.round(o%256-r*(e-t))}rulePredicate={CellIsRule:(e,t)=>{const o=this.getters.getEvaluatedCell(e);if(o.type===So.error)return!1;let[s,i]=t.values.map((t=>t.startsWith("=")?this.getters.evaluateFormula(e.sheetId,t)??"":Ga(t,Mo)));if(No(s)||No(i))return!1;const n=o.value??"";switch(s=s??"",i=i??"",t.operator){case"IsEmpty":return""===n.toString().trim();case"IsNotEmpty":return""!==n.toString().trim();case"BeginsWith":return""!==s&&n.toString().startsWith(s.toString());case"EndsWith":return""!==s&&n.toString().endsWith(s.toString());case"Between":return n>=s&&n<=i;case"NotBetween":return!(n>=s&&n<=i);case"ContainsText":return n.toString().indexOf(s.toString())>-1;case"NotContains":return!n||-1===n.toString().indexOf(s.toString());case"GreaterThan":return n>s;case"GreaterThanOrEqual":return n>=s;case"LessThan":return n<s;case"LessThanOrEqual":return n<=s;case"NotEqual":return""!==s&&n!==s;case"Equal":return""===s||n===s;default:console.warn(bo("Not implemented operator %s for kind of conditional formatting: %s",t.operator,t.type))}return!1}}}).add("row_size",class extends d_{static getters=["getRowSize","getHeaderSize"];tallestCellInRow={};ctx=document.createElement("canvas").getContext("2d");handle(e){switch(e.type){case"START":for(const e of this.getters.getSheetIds())this.initializeSheet(e);break;case"CREATE_SHEET":this.initializeSheet(e.sheetId);break;case"DUPLICATE_SHEET":{const t=be(this.tallestCellInRow[e.sheetId]);this.history.update("tallestCellInRow",e.sheetIdTo,t);break}case"DELETE_SHEET":const t={...this.tallestCellInRow};delete t[e.sheetId],this.history.update("tallestCellInRow",t);break;case"REMOVE_COLUMNS_ROWS":{if("COL"===e.dimension)return;const t=et(this.tallestCellInRow[e.sheetId],e.elements);this.history.update("tallestCellInRow",e.sheetId,t);break}case"ADD_COLUMNS_ROWS":{if("COL"===e.dimension)return;const t=We(e.position,e.base),o=Array(e.quantity).fill(void 0),s=function(e,t,o){const s=[...e];return s.splice(o,0,...t),s}(this.tallestCellInRow[e.sheetId],o,t);this.history.update("tallestCellInRow",e.sheetId,s);break}case"RESIZE_COLUMNS_ROWS":{const t=e.sheetId;if("ROW"===e.dimension)for(const o of e.elements){const e=this.getRowTallestCell(t,o);this.history.update("tallestCellInRow",t,o,e)}else for(const o of we(0,this.getters.getNumberRows(t)))for(const s of e.elements)this.updateRowSizeForCellChange(t,o,s)}break;case"UPDATE_CELL":this.updateRowSizeForCellChange(e.sheetId,e.row,e.col);break;case"ADD_MERGE":case"REMOVE_MERGE":for(const t of e.target)for(const o of sn(t))this.updateRowSizeForCellChange(e.sheetId,o.row,o.col)}}getRowSize(e,t){return Math.round(this.getters.getUserRowSize(e,t)??this.tallestCellInRow[e][t]?.size??L)}getHeaderSize(e,t,o){return this.getters.isHeaderHidden(e,t,o)?0:"ROW"===t?this.getRowSize(e,o):this.getters.getColSize(e,o)}updateRowSizeForCellChange(e,t,o){const s=this.tallestCellInRow[e]?.[t];if(s?.cell.col===o){const o=this.getRowTallestCell(e,t);this.history.update("tallestCellInRow",e,t,o)}const i=this.getCellHeight({sheetId:e,col:o,row:t});if(!(i<=L)&&(!s&&i>L||s&&i>s.size)){const s={cell:{sheetId:e,col:o,row:t},size:i};this.history.update("tallestCellInRow",e,t,s)}}initializeSheet(e){const t=[];for(let o=0;o<this.getters.getNumberRows(e);o++){const s=this.getRowTallestCell(e,o);t.push(s)}this.history.update("tallestCellInRow",e,t)}getCellHeight(e){if(this.isInMultiRowMerge(e))return L;const t=this.getters.getCell(e),o=this.getters.getColSize(e.sheetId,e.col);return function(e,t,o){if(!t||!t.isFormula&&!t.content)return L;const s="wrap"===t.style?.wrapping?o-2*V:void 0,i=t.isFormula?1:Mn(e,t.content,t.style,s).length;return wn(Dn(t.style),i)+6}(this.ctx,t,o)}isInMultiRowMerge(e){const t=this.getters.getMerge(e);return!!t&&t.bottom!==t.top}getRowTallestCell(e,t){if(void 0!==this.getters.getUserRowSize(e,t))return;const o=this.getters.getRowCells(e,t);let s,i=0;for(let e=0;e<o.length;e++){const t=this.getters.getCellById(o[e]);if(!t)continue;const n=this.getters.getCellPosition(t.id),r=this.getCellHeight(n);r>i&&r>L&&(i=r,s={cell:n,size:r})}return s&&s.size>L?s:void 0}}).add("data_validation_ui",class extends d_{static getters=["getDataValidationInvalidCriterionValueMessage","getInvalidDataValidationMessage","getValidationResultForCellValue","isCellValidCheckbox","isDataValidationInvalid"];validationResults={};handle(e){if(Co.has(e.type)||"EVALUATE_CELLS"===e.type||"UPDATE_CELL"===e.type&&("content"in e||"format"in e))this.validationResults={};else switch(e.type){case"ADD_DATA_VALIDATION_RULE":case"REMOVE_DATA_VALIDATION_RULE":delete this.validationResults[e.sheetId]}}isDataValidationInvalid(e){return!this.getValidationResultForCell(e).isValid}getInvalidDataValidationMessage(e){const t=this.getValidationResultForCell(e);return t.isValid?void 0:t.error}getDataValidationInvalidCriterionValueMessage(e,t){const o=pl.get(e);return t.startsWith("=")?"onlyLiterals"===o.allowedValues?bo("The value must not be a formula"):void 0:"onlyFormulas"===o.allowedValues?bo("The value must be a formula"):o.isCriterionValueValid(t)?void 0:o.criterionValueErrorString}isCellValidCheckbox(e){if(!this.getters.isMainCellPosition(e))return!1;const t=this.getters.getValidationRuleForCell(e);return!(!t||"isBoolean"!==t.criterion.type)&&this.getValidationResultForCell(e).isValid}getValidationResultForCellValue(e,t){const o=this.getters.getValidationRuleForCell(t);if(!o)return j_;const s=this.getRuleErrorForCellValue(e,t,o);return s?{error:s,rule:o,isValid:!1}:j_}getValidationResultForCell(e){const{col:t,row:o,sheetId:s}=e;return this.validationResults[s]||(this.validationResults[s]=this.computeSheetValidationResults(s)),this.validationResults[s][t]?.[o]?.()||j_}computeSheetValidationResults(e){const t={},o=this.getters.getDataValidationRules(e).map((e=>e.ranges));for(const e of bn(o.flat())){const{col:o,row:s}=e;t[o]||(t[o]=[]),t[o][s]=Be((()=>{const t=this.getters.getEvaluatedCell(e);return t.type===So.empty?j_:this.getValidationResultForCellValue(t.value,e)}))}return t}getRuleErrorForCellValue(e,t,o){const{sheetId:s}=t,i=o.criterion,n=pl.get(i.type),r=this.getCellOffsetInRule(t,o),a=this.getEvaluatedCriterionValues(s,r,i),l={...i,values:a};if(!n.isValueValid(e,l,this.getters,s))return n.getErrorString(l,this.getters,s)}getCellOffsetInRule(e,t){const o=t.ranges.find((t=>Ji(e.col,e.row,t.zone)));if(!o)throw new Error("The cell is not in any range of the rule");return{col:e.col-o.zone.left,row:e.row-o.zone.top}}getEvaluatedCriterionValues(e,t,o){return o.values.map((o=>{if(!o.startsWith("="))return o;const s=gv(o),i=this.getters.getTranslatedCellFormula(e,t.col,t.row,{...s,dependencies:s.dependencies.map((t=>this.getters.getRangeFromSheetXC(e,t)))}),n=this.getters.evaluateFormula(e,i);return n&&!No(n)?n.toString():""}))}}).add("dynamic_tables",class extends d_{static getters=["canCreateDynamicTableOnZones","doesZonesContainFilter","getFilter","getFilters","getTable","getTables","getTablesOverlappingZones","getFilterId","getFilterHeaders","isFilterHeader"];tables={};handle(e){if(Co.has(e.type)||"UPDATE_CELL"===e.type&&"content"in e||"EVALUATE_CELLS"===e.type)this.tables={};else switch(e.type){case"CREATE_TABLE":case"REMOVE_TABLE":case"UPDATE_TABLE":case"DELETE_CONTENT":this.tables={}}}finalize(){for(const e of this.getters.getSheetIds())this.tables[e]||(this.tables[e]=this.computeTables(e))}computeTables(e){const t=[],o=this.getters.getCoreTables(e);for(const e of o)"dynamic"!==e.type&&t.push(e);const s=[...t];for(const i of o){if("dynamic"!==i.type)continue;const o=this.coreTableToTable(e,i);let n=o.range.zone;for(const e of s)Qi(n,e.range.zone)&&(n={...n,right:e.range.zone.left-1});t.push({...o,range:this.getters.getRangeFromZone(e,n)})}return t}getFilters(e){return this.getTables(e).filter((e=>e.config.hasFilters)).map((e=>e.filters)).flat()}getTables(e){return this.tables[e]||[]}getFilter(e){const t=this.getTable(e);if(t&&t.config.hasFilters)return t.filters.find((t=>t.col===e.col))}getFilterId(e){return this.getFilter(e)?.id}getTable({sheetId:e,col:t,row:o}){return this.getTables(e).find((e=>Ji(t,o,e.range.zone)))}getTablesOverlappingZones(e,t){return this.getTables(e).filter((e=>t.some((t=>Qi(e.range.zone,t)))))}doesZonesContainFilter(e,t){return this.getTablesOverlappingZones(e,t).some((e=>e.config.hasFilters))}getFilterHeaders(e){const t=[];for(const o of this.getTables(e)){if(!o.config.hasFilters)continue;const s=o.range.zone,i=s.top;for(let o=s.left;o<=s.right;o++)t.push({sheetId:e,col:o,row:i})}return t}isFilterHeader({sheetId:e,col:t,row:o}){return this.getFilterHeaders(e).some((e=>e.col===t&&e.row===o))}canCreateDynamicTableOnZones(e,t){if(!un(t))return!1;const o=Yi(...t),s={col:o.left,row:o.top,sheetId:e},i=this.getters.getArrayFormulaSpreadingOn(s);if(!i)return!1;if(Ge(i,s)&&1===dn(o))return!0;return Ge(o,this.getters.getSpreadZone(i))}coreTableToTable(e,t){if("dynamic"!==t.type)return t;const o=t.range.zone,s={sheetId:e,col:o.left,row:o.top},i=this.getters.getSpreadZone(s)??t.range.zone,n=this.getters.getRangeFromZone(e,i),r=this.getDynamicTableFilters(e,t,i);return{id:t.id,range:n,filters:r,config:t.config}}getDynamicTableFilters(e,t,o){const s=[],{top:i,bottom:n,left:r,right:a}=o;for(let o=r;o<=a;o++){const a=o-r,l={left:o,right:o,top:i,bottom:n},c=mR(this.getDynamicTableFilterId(t.id,a),this.getters.getRangeFromZone(e,l),t.config,this.getters.getRangeFromZone);s.push(c)}return s}getDynamicTableFilterId(e,t){return e+"_"+t}exportForExcel(e){for(const t of e.sheets)for(const e of t.tables){const o=zi(e.range),s={sheetId:t.id,col:o.left,row:o.top},i=this.getters.getCoreTable(s),n=this.getTable(s);"dynamic"===i?.type&&n&&(e.range=Wi(n.range.zone))}}}).add("custom_colors",class extends d_{customColors={};shouldUpdateColors=!0;static getters=["getCustomColors"];constructor(e){super(e);for(const t of e.customColors??[])this.tryToAddColor(t)}handle(e){switch(e.type){case"UPDATE_CELL":case"UPDATE_CHART":case"CREATE_CHART":case"ADD_CONDITIONAL_FORMAT":case"SET_BORDER":case"SET_ZONE_BORDERS":case"SET_FORMATTING":case"CREATE_TABLE":case"UPDATE_TABLE":this.history.update("shouldUpdateColors",!0)}}finalize(){if(this.shouldUpdateColors){this.history.update("shouldUpdateColors",!1);for(const e of this.computeCustomColors())this.tryToAddColor(e)}}getCustomColors(){return function(e){const t=[{leadColor:gt(255,0,0),colors:[]},{leadColor:gt(255,128,0),colors:[]},{leadColor:gt(128,128,0),colors:[]},{leadColor:gt(128,255,0),colors:[]},{leadColor:gt(0,255,0),colors:[]},{leadColor:gt(0,255,128),colors:[]},{leadColor:gt(0,255,255),colors:[]},{leadColor:gt(0,127,255),colors:[]},{leadColor:gt(0,0,255),colors:[]},{leadColor:gt(127,0,255),colors:[]},{leadColor:gt(128,0,128),colors:[]},{leadColor:gt(255,0,128),colors:[]}];for(const o of e.map(ft)){let e=500,s=0;t.forEach(((t,i)=>{const n=(r=o,a=t.leadColor,Math.sqrt(Math.pow(r.r-a.r,2)+Math.pow(r.g-a.g,2)+Math.pow(r.b-a.b,2)));var r,a;e>n&&(e=n,s=i)})),t[s].colors.push(o)}return t.map((e=>e.colors.sort(((e,t)=>vt(e).s-vt(t).s)))).flat().map(mt)}(Object.keys(this.customColors))}computeCustomColors(){let e=[];for(const t of this.getters.getSheetIds())e=e.concat(this.getColorsFromCells(t),this.getFormattingColors(t),this.getChartColors(t),this.getTableColors(t));return[...new Set([...e])]}getColorsFromCells(e){const t=Object.values(this.getters.getCells(e)),o=new Set;for(const e of t)e.style?.textColor&&o.add(e.style.textColor),e.style?.fillColor&&o.add(e.style.fillColor);for(const t of this.getters.getBordersColors(e))o.add(t);return[...o]}getFormattingColors(e){const t=this.getters.getConditionalFormats(e),o=[];for(const e of t){const t=e.rule;"CellIsRule"===t.type?(o.push(t.style.textColor),o.push(t.style.fillColor)):"ColorScaleRule"===t.type&&(o.push(ct(t.minimum.color)),o.push(t.midpoint?ct(t.midpoint.color):void 0),o.push(ct(t.maximum.color)))}return o.filter(Le)}getChartColors(e){const t=this.getters.getChartIds(e).map((e=>this.getters.getChart(e)));let o=new Set;for(let e of t){if(void 0===e)continue;const t=e.getDefinition().background;switch(void 0!==t&&o.add(t),e.type){case"gauge":const t=e.sectionRule.colors;o.add(t.lowerColor),o.add(t.middleColor),o.add(t.upperColor);break;case"scorecard":const s=e;o.add(s.baselineColorDown),o.add(s.baselineColorUp)}}return[...o]}getTableColors(e){return this.getters.getTables(e).flatMap((e=>{const t=e.config,o=this.getters.getTableStyle(t.styleId);return[this.getTableStyleElementColors(o.wholeTable),t.numberOfHeaders>0?this.getTableStyleElementColors(o.headerRow):[],t.totalRow?this.getTableStyleElementColors(o.totalRow):[],t.bandedColumns?this.getTableStyleElementColors(o.firstColumnStripe):[],t.bandedColumns?this.getTableStyleElementColors(o.secondColumnStripe):[],t.bandedRows?this.getTableStyleElementColors(o.firstRowStripe):[],t.bandedRows?this.getTableStyleElementColors(o.secondRowStripe):[],t.firstColumn?this.getTableStyleElementColors(o.firstColumn):[],t.lastColumn?this.getTableStyleElementColors(o.lastColumn):[]].flat()}))}getTableStyleElementColors(e){return e?[e.style?.fillColor,e.style?.textColor,e.border?.bottom?.color,e.border?.top?.color,e.border?.left?.color,e.border?.right?.color,e.border?.horizontal?.color,e.border?.vertical?.color].filter(Le):[]}tryToAddColor(e){if(!dt(e))return;const t=ht(e);e&&!F.includes(t)&&this.history.update("customColors",t,!0)}}).add("pivot_ui",class extends d_{static getters=["getPivot","getFirstPivotFunction","getPivotIdFromPosition","getPivotCellFromPosition","isPivotUnused","isSpillPivotFormula"];pivots={};unusedPivots;custom;constructor(e){super(e),this.custom=e.custom}beforeHandle(e){if("START"===e.type)for(const e of this.getters.getPivotIds())this.setupPivot(e)}handle(e){if(Co.has(e.type))for(const e of this.getters.getPivotIds())sR.get(this.getters.getPivotCoreDefinition(e).type).externalData||this.setupPivot(e,{recreate:!0});switch(e.type){case"REFRESH_PIVOT":this.refreshPivot(e.id);break;case"ADD_PIVOT":this.setupPivot(e.pivotId);break;case"DUPLICATE_PIVOT":this.setupPivot(e.newPivotId);break;case"UPDATE_PIVOT":this.setupPivot(e.pivotId,{recreate:!0});break;case"DELETE_SHEET":case"UPDATE_CELL":this.unusedPivots=void 0;break;case"UNDO":case"REDO":{this.unusedPivots=void 0;const t=e.commands.filter(X_);for(const e of t){const t=e.pivotId;this.getters.isExistingPivot(t)&&this.setupPivot(t,{recreate:!0})}break}}}getPivotIdFromPosition(e){const t=this.getters.getCorrespondingFormulaCell(e);if(t&&t.isFormula){const o=this.getFirstPivotFunction(e.sheetId,t.compiledFormula.tokens);if(o){const e=o.args[0]?.toString();return e&&this.getters.getPivotId(e)}}}isSpillPivotFormula(e){const t=this.getters.getCorrespondingFormulaCell(e);if(t&&t.isFormula){const o=this.getFirstPivotFunction(e.sheetId,t.compiledFormula.tokens);return"PIVOT"===o?.functionName}return!1}getFirstPivotFunction(e,t){const o=xv(t);if(!o)return;const{functionName:s,args:i}=o;return{functionName:s,args:i.map((t=>{if("EMPTY"==t.type)return;if("STRING"===t.type||"BOOLEAN"===t.type||"NUMBER"===t.type)return t.value;const o=Fa(t);return this.getters.evaluateFormula(e,o)}))}}getPivotCellFromPosition(e){const t=this.getters.getCorrespondingFormulaCell(e);if(!t||!t.isFormula||0===Ev(t.compiledFormula.tokens))return ZI;const o=this.getters.getCellPosition(t.id),s=this.getters.getFirstPivotFunction(e.sheetId,t.compiledFormula.tokens);if(!s)return ZI;const{functionName:i,args:n}=s,r=n[0];if(!r)return ZI;const a=this.getters.getPivotId(r.toString());if(!a)return ZI;const l=this.getPivot(a);if(!l.isValid())return ZI;if("PIVOT"===i&&!t.content.replaceAll(" ","").toUpperCase().startsWith("=PIVOT"))return ZI;if("PIVOT"===i){const t=!1!==n[2]&&void 0,s=!1!==n[3]&&void 0,i=l.getTableStructure().getPivotCells(t,s),r=e.col-o.col,a=e.row-o.row;return i[r][a]}try{if("PIVOT.HEADER"===i&&"measure"===n.at(-2)){return{type:"MEASURE_HEADER",domain:l.parseArgsToPivotDomain(n.slice(1,-2).map((e=>({value:e})))),measure:n.at(-1)?.toString()||""}}if("PIVOT.HEADER"===i){return{type:"HEADER",domain:l.parseArgsToPivotDomain(n.slice(1).map((e=>({value:e}))))}}const[e,...t]=n.slice(1);return{type:"VALUE",domain:l.parseArgsToPivotDomain(t.map((e=>({value:e})))),measure:e?.toString()||""}}catch(e){return ZI}}getPivot(e){if(!this.getters.isExistingPivot(e))throw new Error(`pivot ${e} not found`);return this.pivots[e]}isPivotUnused(e){return this._getUnusedPivots().includes(e)}refreshPivot(e){this.getters.getPivot(e).init({reload:!0})}setupPivot(e,{recreate:t}={recreate:!1}){const o=this.getters.getPivotCoreDefinition(e);if(t||!(e in this.pivots)){const t=sR.get(o.type).ui;this.pivots[e]=new t(this.custom,{definition:o,getters:this.getters})}}_getUnusedPivots(){if(void 0!==this.unusedPivots)return this.unusedPivots;const e=new Set(this.getters.getPivotIds());for(const t of this.getters.getSheetIds())for(const o in this.getters.getCells(t)){const t=this.getters.getCellPosition(o),s=this.getPivotIdFromPosition(t);if(s&&(e.delete(s),!e.size))return this.unusedPivots=[],[]}return this.unusedPivots=[...e],this.unusedPivots}}),DD=new n;DD.add("link",{condition:(e,t)=>!!t.getEvaluatedCell(e).link,execute:(e,t)=>Ba(t.model.getters.getEvaluatedCell(e).link,t),sequence:5});class FD{fileStore;constructor(e){this.fileStore=e}async requestImage(){const e=await this.getImageFromUser(),t=await this.fileStore.upload(e);return{path:t,size:await this.getImageOriginalSize(t),mimetype:e.type}}getImageFromUser(){return new Promise(((e,t)=>{const o=document.createElement("input");o.setAttribute("type","file"),o.setAttribute("accept","image/*"),o.addEventListener("change",(async()=>{null===o.files||1!=o.files.length?t():e(o.files[0])})),o.click()}))}getImageOriginalSize(e){return new Promise(((t,o)=>{const s=new Image;s.src=e,s.addEventListener("load",(()=>{const e={width:s.width,height:s.height};t(e)})),s.addEventListener("error",o)}))}}const MD=[{transform:"scale(0)"},{transform:"scale(0.8)",offset:.33},{opacity:"0",transform:"scale(1)",offset:1}];Ob`
1789
+ `}function IO(e){return new AT(e.join("\n"))}function RO(e,...t){let o=[e[0]];for(let s=0;s<t.length;s++){const i=t[s]instanceof AT?t[s]:yO(t[s]);o.push(i+e[s+1])}return new AT(ze(o))}function TO(e){return e.replace(/NAMESPACE.*NAMESPACE(.*)/,"$1")}function AO(e){return e.replaceAll(/([a-zA-Z0-9]+):([a-zA-Z0-9]+)/g,"NAMESPACE$1NAMESPACE$2")}class OO{value;constructor(e){this.value=e}asString(){return CA(String(this.value))}asBool(){return"true"===this.value||"false"!==this.value&&Boolean(Number(this.value))}asNum(){return Number(this.value)}}class _O{rootFile;xlsxFileStructure;warningManager;relationships;currentFile=void 0;constructor(e,t,o){this.rootFile=e,this.currentFile=e.file.fileName,this.xlsxFileStructure=t,this.warningManager=o,this.relationships={},e.rels&&this.extractRelationships(e.rels).map((e=>{this.relationships[e.id]=e}))}extractRelationships(e){return this.mapOnElements({parent:e.xml,query:"Relationship"},(e=>({id:this.extractAttr(e,"Id",{required:!0}).asString(),target:this.extractAttr(e,"Target",{required:!0}).asString(),type:this.extractAttr(e,"Type",{required:!0}).asString()})))}getListOfXMLFiles(){return Object.entries(this.xlsxFileStructure).filter((([e])=>"images"!==e)).map((([e,t])=>t)).flat().filter(Le)}mapOnElements(e,t){const o=[],s=this.currentFile;let i;if(e.children){const t=this.querySelector(e.parent,e.query)?.children;i=t||[]}else i=this.querySelectorAll(e.parent,e.query);if(i)for(let e of i)try{o.push(t(e))}catch(t){this.catchErrorOnElement(t,e)}return this.currentFile=s,o}catchErrorOnElement(e,t){const o=t?`Error when parsing an element <${t.tagName}> of file ${this.currentFile}, skip this element. \n${e.stack}`:`Error when parsing file ${this.currentFile}.`;this.warningManager.addParsingWarning([o,e.message].join("\n"))}extractAttr(e,t,o){const s=e.attributes[t];s||this.handleMissingValue(e,`attribute "${t}"`,o);const i=s?.value?s.value:o?.default;return void 0===i?void 0:new OO(i)}extractTextContent(e,t){if(void 0!==t?.default&&"string"!=typeof t.default)throw new Error("extractTextContent default value should be a string");const o="preserve"===e?.attributes["xml:space"]?.value;let s=e?.textContent;return e&&null!==s||this.handleMissingValue(e,"text content",t),s&&(s=o?s:s.trim()),s?CA(s):t?.default}extractChildAttr(e,t,o,s){let i;i="number"==typeof t?e.children[t]:this.querySelector(e,t),i||this.handleMissingValue(e,"number"==typeof t?`child at index ${t}`:`child <${t}>`,s);const n=i?this.extractAttr(i,o,s)?.asString():s?.default;return void 0!==n?new OO(n):void 0}extractChildTextContent(e,t,o){if(void 0!==o?.default&&"string"!=typeof o.default)throw new Error("extractTextContent default value should be a string");let s=this.querySelector(e,t);return s||this.handleMissingValue(e,`child <${t}>`,o),s?this.extractTextContent(s,o):o?.default}handleMissingValue(e,t,o){if(o?.required){if(!o?.default)throw new Error(`Missing required ${t} in element <${e.tagName}> of ${this.currentFile}, and no default value was set`);this.warningManager.addParsingWarning(`Missing required ${t} in element <${e.tagName}> of ${this.currentFile}, replacing it by the default value ${o.default}`)}}extractColor(e,t,o){if(!e)return o?{rgb:o}:void 0;const s=this.extractAttr(e,"theme")?.asString();let i;if(void 0!==s){if(!t||!t.clrScheme)throw new Error("Color referencing a theme but no theme was provided");i=this.getThemeColor(s,t.clrScheme)}else i=this.extractAttr(e,"rgb")?.asString(),i="FF000000"===i?void 0:i;return{rgb:i||o,auto:this.extractAttr(e,"auto")?.asBool(),indexed:this.extractAttr(e,"indexed")?.asNum(),tint:this.extractAttr(e,"tint")?.asNum()}}getTargetXmlFile(e){if(!e)throw new Error("Undefined target file");const t=this.processRelationshipTargetName(e.target),o=this.getListOfXMLFiles().find((e=>e.file.fileName.endsWith(t)));if(!o||!o.file)throw new Error("Cannot find target file");return o}getTargetImageFile(e){if(!e)throw new Error("Undefined target file");const t=this.processRelationshipTargetName(e.target),o=this.xlsxFileStructure.images.find((e=>e.fileName.endsWith(t)));if(!o)throw new Error("Cannot find target file");return o}querySelector(e,t){const o=AO(t);return e.querySelector(o)}querySelectorAll(e,t){const o=AO(t);return e.querySelectorAll(o)}getThemeColor(e,t){switch(e){case"0":return"FFFFFF";case"1":return"000000";case"2":return t[3].value;case"3":return t[2].value;default:return t[e].value}}processRelationshipTargetName(e){return e.replace(/\.+\//,"")}}class DO extends _O{getTheme(){return{clrScheme:this.mapOnElements({query:"a:clrScheme",parent:this.rootFile.file.xml,children:!0},(e=>({name:e.tagName,value:this.extractChildAttr(e,0,"val",{required:!0,default:_T}).asString(),lastClr:this.extractChildAttr(e,0,"lastClr",{default:_T}).asString()})))}}getSharedStrings(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"si"},(e=>"t"===e.children[0].tagName?this.extractTextContent(e)||"":this.mapOnElements({parent:e,query:"t"},(e=>this.extractTextContent(e)||"")).join("")))}}class FO extends _O{theme;constructor(e,t,o,s){super(e,t,o),this.theme=s}extractConditionalFormattings(){const e=this.mapOnElements({parent:this.rootFile.file.xml,query:"worksheet > conditionalFormatting"},(e=>({sqref:this.extractAttr(e,"sqref",{required:!0}).asString().split(" "),pivot:this.extractAttr(e,"pivot")?.asBool(),cfRules:this.extractCFRules(e,this.theme)})));return e.push(...this.mapOnElements({parent:this.rootFile.file.xml,query:"extLst x14:conditionalFormatting"},(e=>({sqref:this.extractChildTextContent(e,"xm:sqref",{required:!0}).split(" "),pivot:this.extractAttr(e,"xm:pivot")?.asBool(),cfRules:this.extractCFRules(e,this.theme)})))),e}extractCFRules(e,t){return this.mapOnElements({parent:e,query:"cfRule, x14:cfRule"},(e=>{const o=this.extractAttr(e,"type",{required:!0}).asString();if("dataBar"===o)throw new Error("Databars conditional formats are not supported.");return{type:o,priority:this.extractAttr(e,"priority",{required:!0}).asNum(),colorScale:this.extractCfColorScale(e,t),formula:this.extractCfFormula(e),iconSet:this.extractCfIconSet(e),dxfId:this.extractAttr(e,"dxfId")?.asNum(),stopIfTrue:this.extractAttr(e,"stopIfTrue")?.asBool(),aboveAverage:this.extractAttr(e,"aboveAverage")?.asBool(),percent:this.extractAttr(e,"percent")?.asBool(),bottom:this.extractAttr(e,"bottom")?.asBool(),operator:this.extractAttr(e,"operator")?.asString(),text:this.extractAttr(e,"text")?.asString(),timePeriod:this.extractAttr(e,"timePeriod")?.asString(),rank:this.extractAttr(e,"rank")?.asNum(),stdDev:this.extractAttr(e,"stdDev")?.asNum(),equalAverage:this.extractAttr(e,"equalAverage")?.asBool()}}))}extractCfFormula(e){return this.mapOnElements({parent:e,query:"formula"},(e=>this.extractTextContent(e,{required:!0})))}extractCfColorScale(e,t){const o=this.querySelector(e,"colorScale");if(o)return{colors:this.mapOnElements({parent:o,query:"color"},(e=>this.extractColor(e,t,"ffffff"))),cfvos:this.extractCFVos(o)}}extractCfIconSet(e){const t=this.querySelector(e,"iconSet, x14:iconSet");if(t)return{iconSet:this.extractAttr(t,"iconSet",{default:"3TrafficLights1"}).asString(),showValue:this.extractAttr(t,"showValue",{default:!0}).asBool(),percent:this.extractAttr(t,"percent",{default:!0}).asBool(),reverse:this.extractAttr(t,"reverse")?.asBool(),custom:this.extractAttr(t,"custom")?.asBool(),cfvos:this.extractCFVos(t),cfIcons:this.extractCfIcons(t)}}extractCfIcons(e){const t=this.mapOnElements({parent:e,query:"cfIcon, x14:cfIcon"},(e=>({iconSet:this.extractAttr(e,"iconSet",{required:!0}).asString(),iconId:this.extractAttr(e,"iconId",{required:!0}).asNum()})));return 0===t.length?void 0:t}extractCFVos(e){return this.mapOnElements({parent:e,query:"cfvo, x14:cfvo"},(e=>({type:this.extractAttr(e,"type",{required:!0}).asString(),gte:this.extractAttr(e,"gte",{default:!0})?.asBool(),value:e.attributes.val?this.extractAttr(e,"val")?.asString():this.extractChildTextContent(e,"f, xm:f")})))}}class MO extends _O{extractChart(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"c:chartSpace"},(e=>{const t=this.getChartType(e);if(!dA[t])throw new Error(`Unsupported chart type ${t}`);if("combo"===dA[t])return this.extractComboChart(e);const o=this.mapOnElements({parent:e,query:"c:chart > c:title a:t"},(e=>e.textContent||"")).join(""),s=this.extractChildAttr(e,"c:grouping","val",{default:"clustered"}).asString();return{title:{text:o},type:dA[t],dataSets:this.extractChartDatasets(this.querySelectorAll(e,`c:${t}`),t),labelRange:this.extractChildTextContent(e,`c:ser ${"scatterChart"===t?"c:numRef":"c:cat"} c:f`),backgroundColor:this.extractChildAttr(e,"c:chartSpace > c:spPr a:srgbClr","val",{default:"ffffff"}).asString(),legendPosition:hA[this.extractChildAttr(e,"c:legendPos","val",{default:"b"}).asString()],stacked:"stacked"===s,fontColor:"000000"}}))[0]}extractComboChart(e){const t=this.mapOnElements({parent:e,query:"c:title a:t"},(e=>e.textContent||"")).join(""),o=this.extractChildAttr(e,"c:grouping","val",{default:"clustered"}).asString();return{title:{text:t},type:"combo",dataSets:[...this.extractChartDatasets(this.querySelectorAll(e,"c:barChart"),"comboChart"),...this.extractChartDatasets(this.querySelectorAll(e,"c:lineChart"),"comboChart")],labelRange:this.extractChildTextContent(e,"c:ser c:cat c:f"),backgroundColor:this.extractChildAttr(e,"c:chartSpace > c:spPr a:srgbClr","val",{default:"ffffff"}).asString(),legendPosition:hA[this.extractChildAttr(e,"c:legendPos","val",{default:"b"}).asString()],stacked:"stacked"===o,fontColor:"000000"}}extractChartDatasets(e,t){return Array.from(e).map((e=>"scatterChart"===t?this.extractScatterChartDatasets(e):this.mapOnElements({parent:e,query:"c:ser"},(e=>{let t={};const o=this.extractChildTextContent(e,"c:tx c:f");if(o)t={reference:o};else{const o=this.extractChildTextContent(e,"c:tx c:v");o&&(t={text:o})}const s=this.extractChildAttr(e,"c:spPr a:solidFill a:srgbClr","val");return{label:t,range:this.extractChildTextContent(e,"c:val c:f",{required:!0}),backgroundColor:s?`${ht(s.asString())}`:void 0}})))).flat()}extractScatterChartDatasets(e){return this.mapOnElements({parent:e,query:"c:ser"},(e=>{let t={};const o=this.extractChildTextContent(e,"c:tx c:f");if(o)t={reference:o};else{const o=this.extractChildTextContent(e,"c:tx c:v");o&&(t={text:o})}return{label:t,range:this.extractChildTextContent(e,"c:yVal c:f",{required:!0})}}))}getChartType(e){const t=this.querySelector(e,"c:plotArea");if(!t)throw new Error("Missing plot area in the chart definition.");let o;for(let e of t.children){const t=TO(e.tagName);OT.some((e=>e===t))&&(o?o!==t&&(o="comboChart"):o=t)}if(o)return o;throw new Error("Unknown chart type")}}const PO="oneCellAnchor",NO="twoCellAnchor";class LO extends _O{extractFigures(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"xdr:wsDr",children:!0},(e=>{const t=TO(e.tagName),o=this.extractFigureAnchorsByType(e,t),s=this.querySelector(e,"c:chart"),i=this.querySelector(e,"a:blip");if(!s&&!i)throw new Error("Only chart and image figures are currently supported.");return{anchors:o,data:s?this.extractChart(s):this.extractImage(e),figureSize:t===PO?this.extractFigureSizeFromSizeTag(e,"xdr:ext"):void 0}}))}extractFigureAnchorsByType(e,t){switch(t){case PO:return[this.extractFigureAnchor("xdr:from",e)];case NO:return[this.extractFigureAnchor("xdr:from",e),this.extractFigureAnchor("xdr:to",e)];default:throw new Error(`${t} is not supported for xlsx drawings. `)}}extractFigureSizeFromSizeTag(e,t){const o=this.querySelector(e,t);if(!o)throw new Error(`Missing size element '${t}'`);return{cx:this.extractAttr(o,"cx",{required:!0}).asNum(),cy:this.extractAttr(o,"cy",{required:!0}).asNum()}}extractFigureAnchor(e,t){const o=this.querySelector(t,e);if(!o)throw new Error(`Missing anchor element ${e}`);return{col:Number(this.extractChildTextContent(o,"xdr:col",{required:!0})),colOffset:Number(this.extractChildTextContent(o,"xdr:colOff",{required:!0})),row:Number(this.extractChildTextContent(o,"xdr:row",{required:!0})),rowOffset:Number(this.extractChildTextContent(o,"xdr:rowOff",{required:!0}))}}extractChart(e){const t=this.extractAttr(e,"r:id",{required:!0}).asString(),o=this.getTargetXmlFile(this.relationships[t]),s=new MO(o,this.xlsxFileStructure,this.warningManager).extractChart();if(!s)throw new Error("Unable to extract chart definition");return s}extractImage(e){const t=this.querySelector(e,"a:blip"),o=this.extractAttr(t,"r:embed",{required:!0}).asString(),s=this.getTargetImageFile(this.relationships[o]);if(!s)throw new Error("Unable to extract image");const i=s.fileName.split(".").at(-1),n=TO(e.tagName),r=n===NO?this.querySelector(e,"a:xfrm"):e,a=n===NO?"a:ext":"xdr:ext",l=this.extractFigureSizeFromSizeTag(r,a);return{imageSrc:s.imageSrc,mimetype:i?bA[i]:void 0,size:l}}}class kO extends _O{getPivotTable(){return this.mapOnElements({query:":root",parent:this.rootFile.file.xml},(e=>({name:this.extractAttr(e,"name",{required:!0}).asString(),rowGrandTotals:this.extractAttr(e,"rowGrandTotals",{default:!0}).asBool(),location:this.extractPivotLocation(e),style:this.extractPivotStyleInfo(e)})))[0]}extractPivotLocation(e){return this.mapOnElements({query:"location",parent:e},(e=>({ref:this.extractAttr(e,"ref",{required:!0}).asString(),firstHeaderRow:this.extractAttr(e,"firstHeaderRow",{required:!0}).asNum(),firstDataRow:this.extractAttr(e,"firstDataRow",{required:!0}).asNum(),firstDataCol:this.extractAttr(e,"firstDataCol",{required:!0}).asNum()})))[0]}extractPivotStyleInfo(e){return this.mapOnElements({query:"pivotTableStyleInfo",parent:e},(e=>({name:this.extractAttr(e,"name",{required:!0}).asString(),showRowHeaders:this.extractAttr(e,"showRowHeaders",{required:!0}).asBool(),showColHeaders:this.extractAttr(e,"showColHeaders",{required:!0}).asBool(),showRowStripes:this.extractAttr(e,"showRowStripes",{required:!0}).asBool(),showColStripes:this.extractAttr(e,"showColStripes",{required:!0}).asBool(),showLastColumn:this.extractAttr(e,"showLastColumn")?.asBool()})))[0]}}class VO extends _O{getTable(){return this.mapOnElements({query:"table",parent:this.rootFile.file.xml},(e=>({displayName:this.extractAttr(e,"displayName",{required:!0}).asString(),name:this.extractAttr(e,"name")?.asString(),id:this.extractAttr(e,"id",{required:!0}).asString(),ref:this.extractAttr(e,"ref",{required:!0}).asString(),headerRowCount:this.extractAttr(e,"headerRowCount",{default:1}).asNum(),totalsRowCount:this.extractAttr(e,"totalsRowCount",{default:0}).asNum(),cols:this.extractTableCols(e),style:this.extractTableStyleInfo(e),autoFilter:this.extractTableAutoFilter(e)})))[0]}extractTableCols(e){return this.mapOnElements({query:"tableColumn",parent:e},(e=>({id:this.extractAttr(e,"id",{required:!0}).asString(),name:this.extractAttr(e,"name",{required:!0}).asString(),colFormula:this.extractChildTextContent(e,"calculatedColumnFormula")})))}extractTableStyleInfo(e){return this.mapOnElements({query:"tableStyleInfo",parent:e},(e=>({name:this.extractAttr(e,"name")?.asString(),showFirstColumn:this.extractAttr(e,"showFirstColumn")?.asBool(),showLastColumn:this.extractAttr(e,"showLastColumn")?.asBool(),showRowStripes:this.extractAttr(e,"showRowStripes")?.asBool(),showColumnStripes:this.extractAttr(e,"showColumnStripes")?.asBool()})))[0]}extractTableAutoFilter(e){return this.mapOnElements({query:"autoFilter",parent:e},(e=>({columns:this.extractFilterColumns(e),zone:this.extractAttr(e,"ref",{required:!0}).asString()})))[0]}extractFilterColumns(e){return this.mapOnElements({query:"tableColumn",parent:e},(t=>({colId:this.extractAttr(e,"colId",{required:!0}).asNum(),hiddenButton:this.extractAttr(e,"hiddenButton",{default:!1}).asBool(),filters:this.extractSimpleFilter(t)})))}extractSimpleFilter(e){return this.mapOnElements({query:"filter",parent:e},(e=>({val:this.extractAttr(e,"val",{required:!0}).asString()})))}}class UO extends _O{theme;constructor(e,t,o,s){super(e,t,o),this.theme=s}getSheet(){return this.mapOnElements({query:"worksheet",parent:this.rootFile.file.xml},(e=>{const t=this.getSheetWorkbookInfo();return{sheetName:this.extractSheetName(),sheetViews:this.extractSheetViews(e),sheetFormat:this.extractSheetFormat(e),sheetProperties:this.extractSheetProperties(e),cols:this.extractCols(e),rows:this.extractRows(e),sharedFormulas:this.extractSharedFormulas(e),merges:this.extractMerges(e),cfs:this.extractConditionalFormats(),figures:this.extractFigures(e),hyperlinks:this.extractHyperLinks(e),tables:this.extractTables(e),pivotTables:this.extractPivotTables(),isVisible:"visible"===t.state}}))[0]}extractSheetViews(e){return this.mapOnElements({parent:e,query:"sheetView"},(e=>{const t=this.querySelector(e,"pane");return{tabSelected:this.extractAttr(e,"tabSelected",{default:!1}).asBool(),showFormulas:this.extractAttr(e,"showFormulas",{default:!1}).asBool(),showGridLines:this.extractAttr(e,"showGridLines",{default:!0}).asBool(),showRowColHeaders:this.extractAttr(e,"showRowColHeaders",{default:!0}).asBool(),pane:{xSplit:t?this.extractAttr(t,"xSplit",{default:0}).asNum():0,ySplit:t?this.extractAttr(t,"ySplit",{default:0}).asNum():0}}}))}extractSheetName(){const e=SA(this.xlsxFileStructure.workbook.file.fileName,this.rootFile.file.fileName),t=this.extractRelationships(this.xlsxFileStructure.workbook.rels).find((t=>t.target===e)).id;for(let e of this.querySelectorAll(this.xlsxFileStructure.workbook.file.xml,"sheet"))if(e.attributes["r:id"].value===t)return e.attributes.name.value;throw new Error("Missing sheet name")}getSheetWorkbookInfo(){const e=SA(this.xlsxFileStructure.workbook.file.fileName,this.rootFile.file.fileName),t=this.extractRelationships(this.xlsxFileStructure.workbook.rels).find((t=>t.target===e)).id,o=this.mapOnElements({parent:this.xlsxFileStructure.workbook.file.xml,query:"sheet"},(e=>({relationshipId:this.extractAttr(e,"r:id",{required:!0}).asString(),sheetId:this.extractAttr(e,"sheetId",{required:!0}).asString(),sheetName:this.extractAttr(e,"name",{required:!0}).asString(),state:this.extractAttr(e,"state",{default:"visible"}).asString()}))).find((e=>e.relationshipId===t));if(!o)throw new Error("Cannot find corresponding workbook sheet");return o}extractConditionalFormats(){return new FO(this.rootFile,this.xlsxFileStructure,this.warningManager,this.theme).extractConditionalFormattings()}extractFigures(e){return this.mapOnElements({parent:e,query:"drawing"},(e=>{const t=this.extractAttr(e,"r:id",{required:!0})?.asString(),o=this.getTargetXmlFile(this.relationships[t]);return new LO(o,this.xlsxFileStructure,this.warningManager).extractFigures()}))[0]||[]}extractTables(e){return this.mapOnElements({query:"tablePart",parent:e},(e=>{const t=this.extractAttr(e,"r:id",{required:!0})?.asString(),o=this.getTargetXmlFile(this.relationships[t]);return new VO(o,this.xlsxFileStructure,this.warningManager).getTable()}))}extractPivotTables(){try{return Object.values(this.relationships).filter((e=>e.type.endsWith("pivotTable"))).map((e=>{const t=this.getTargetXmlFile(e);return new kO(t,this.xlsxFileStructure,this.warningManager).getPivotTable()}))}catch(e){return this.catchErrorOnElement(e),[]}}extractMerges(e){return this.mapOnElements({parent:e,query:"mergeCell"},(e=>this.extractAttr(e,"ref",{required:!0}).asString()))}extractSheetFormat(e){const t=this.querySelector(e,"sheetFormatPr");if(t)return{defaultColWidth:this.extractAttr(t,"defaultColWidth",{default:HT.toString()}).asNum(),defaultRowHeight:this.extractAttr(t,"defaultRowHeight",{default:zT.toString()}).asNum()}}extractSheetProperties(e){const t=this.querySelector(e,"sheetPr");if(t)return{outlinePr:this.extractSheetOutlineProperties(t)}}extractSheetOutlineProperties(e){const t=this.querySelector(e,"outlinePr");if(t)return{summaryBelow:this.extractAttr(t,"summaryBelow",{default:!0}).asBool(),summaryRight:this.extractAttr(t,"summaryRight",{default:!0}).asBool()}}extractCols(e){return this.mapOnElements({parent:e,query:"cols col"},(e=>({width:this.extractAttr(e,"width")?.asNum(),customWidth:this.extractAttr(e,"customWidth")?.asBool(),bestFit:this.extractAttr(e,"bestFit")?.asBool(),hidden:this.extractAttr(e,"hidden")?.asBool(),min:this.extractAttr(e,"min",{required:!0})?.asNum(),max:this.extractAttr(e,"max",{required:!0})?.asNum(),styleIndex:this.extractAttr(e,"style")?.asNum(),outlineLevel:this.extractAttr(e,"outlineLevel")?.asNum(),collapsed:this.extractAttr(e,"collapsed")?.asBool()})))}extractRows(e){return this.mapOnElements({parent:e,query:"sheetData row"},(e=>({index:this.extractAttr(e,"r",{required:!0})?.asNum(),cells:this.extractCells(e),height:this.extractAttr(e,"ht")?.asNum(),customHeight:this.extractAttr(e,"customHeight")?.asBool(),hidden:this.extractAttr(e,"hidden")?.asBool(),styleIndex:this.extractAttr(e,"s")?.asNum(),outlineLevel:this.extractAttr(e,"outlineLevel")?.asNum(),collapsed:this.extractAttr(e,"collapsed")?.asBool()})))}extractCells(e){return this.mapOnElements({parent:e,query:"c"},(e=>({xc:this.extractAttr(e,"r",{required:!0})?.asString(),styleIndex:this.extractAttr(e,"s")?.asNum(),type:oA[this.extractAttr(e,"t",{default:"n"})?.asString()],value:this.extractChildTextContent(e,"v"),formula:this.extractCellFormula(e)})))}extractCellFormula(e){const t=this.querySelector(e,"f");if(t)return{content:this.extractTextContent(t),sharedIndex:this.extractAttr(t,"si")?.asNum(),ref:this.extractAttr(t,"ref")?.asString()}}extractHyperLinks(e){return this.mapOnElements({parent:e,query:"hyperlink"},(e=>{const t=this.extractAttr(e,"r:id")?.asString();return{xc:this.extractAttr(e,"ref",{required:!0})?.asString(),location:this.extractAttr(e,"location")?.asString(),display:this.extractAttr(e,"display")?.asString(),relTarget:t?this.relationships[t].target:void 0}}))}extractSharedFormulas(e){const t=this.querySelectorAll(e,"f[si][ref]"),o={};for(let e of t){const t=this.extractAttr(e,"si",{required:!0}).asNum(),s=this.extractTextContent(e,{required:!0});o[t]=s}const s=[];for(let e=0;e<Object.keys(o).length;e++)o[e]?s.push(o[e]):(this.warningManager.addParsingWarning(`Missing shared formula ${e}, replacing it by empty formula`),s.push(""));return s}}class HO extends _O{theme;constructor(e,t,o){super(e.styles,e,t),this.theme=o}getNumFormats(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"numFmt"},(e=>this.extractNumFormats(e)))}extractNumFormats(e){return{id:this.extractAttr(e,"numFmtId",{required:!0}).asNum(),format:this.extractAttr(e,"formatCode",{required:!0,default:""}).asString()}}getFonts(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"font"},(e=>this.extractFont(e)))}extractFont(e){const t=this.extractChildAttr(e,"name","val",{default:"Arial"}).asString(),o=this.extractChildAttr(e,"sz","val",{default:j.toString()}).asNum(),s=this.extractColor(this.querySelector(e,"color"),this.theme),i=this.querySelector(e,"i")||void 0,n=i&&"0"!==i.attributes.val?.value,r=this.querySelector(e,"b")||void 0,a=r&&"0"!==r.attributes.val?.value,l=this.querySelector(e,"strike")||void 0,c=l&&"0"!==l.attributes.val?.value,h=this.querySelector(e,"u")||void 0;return{name:t,size:o,color:s,italic:n,bold:a,underline:h&&"none"!==h.attributes.val?.value,strike:c}}getFills(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"fill"},(e=>this.extractFill(e)))}extractFill(e){const t=e.children[0];return"patternFill"===t.tagName?{patternType:t.attributes.patternType?.value,bgColor:this.extractColor(this.querySelector(t,"bgColor"),this.theme),fgColor:this.extractColor(this.querySelector(t,"fgColor"),this.theme)}:{patternType:"solid",fgColor:this.extractColor(this.querySelectorAll(t,"color")[1],this.theme)}}getBorders(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"border"},(e=>this.extractBorder(e)))}extractBorder(e){const t={left:this.extractSingleBorder(e,"left",this.theme),right:this.extractSingleBorder(e,"right",this.theme),top:this.extractSingleBorder(e,"top",this.theme),bottom:this.extractSingleBorder(e,"bottom",this.theme),diagonal:this.extractSingleBorder(e,"diagonal",this.theme)};return t.diagonal&&(t.diagonalUp=this.extractAttr(e,"diagonalUp")?.asBool(),t.diagonalDown=this.extractAttr(e,"diagonalDown")?.asBool()),t}extractSingleBorder(e,t,o){const s=this.querySelector(e,t);if(s&&s.attributes.style)return{style:this.extractAttr(s,"style",{required:!0,default:"thin"}).asString(),color:this.extractColor(s.children[0],o,"000000")}}extractAlignment(e){return{horizontal:this.extractAttr(e,"horizontal",{default:"general"}).asString(),vertical:this.extractAttr(e,"vertical",{default:"bottom"}).asString(),textRotation:this.extractAttr(e,"textRotation")?.asNum(),wrapText:this.extractAttr(e,"wrapText")?.asBool(),indent:this.extractAttr(e,"indent")?.asNum(),relativeIndent:this.extractAttr(e,"relativeIndent")?.asNum(),justifyLastLine:this.extractAttr(e,"justifyLastLine")?.asBool(),shrinkToFit:this.extractAttr(e,"shrinkToFit")?.asBool(),readingOrder:this.extractAttr(e,"readingOrder")?.asNum()}}getDxfs(){return this.mapOnElements({query:"dxf",parent:this.rootFile.file.xml},(e=>{const t=this.querySelector(e,"font"),o=this.querySelector(e,"fill"),s=this.querySelector(e,"border"),i=this.querySelector(e,"numFmt"),n=this.querySelector(e,"alignment");return{font:t?this.extractFont(t):void 0,fill:o?this.extractFill(o):void 0,numFmt:i?this.extractNumFormats(i):void 0,alignment:n?this.extractAlignment(n):void 0,border:s?this.extractBorder(s):void 0}}))}getStyles(){return this.mapOnElements({query:"cellXfs xf",parent:this.rootFile.file.xml},(e=>{const t=this.querySelector(e,"alignment");return{fontId:this.extractAttr(e,"fontId",{required:!0,default:0}).asNum(),fillId:this.extractAttr(e,"fillId",{required:!0,default:0}).asNum(),borderId:this.extractAttr(e,"borderId",{required:!0,default:0}).asNum(),numFmtId:this.extractAttr(e,"numFmtId",{required:!0,default:0}).asNum(),alignment:t?this.extractAlignment(t):void 0}}))}}class zO extends _O{getExternalBook(){return this.mapOnElements({parent:this.rootFile.file.xml,query:"externalBook"},(e=>({rId:this.extractAttr(e,"r:id",{required:!0}).asString(),sheetNames:this.mapOnElements({parent:e,query:"sheetName"},(e=>this.extractAttr(e,"val",{required:!0}).asString())),datasets:this.extractExternalSheetData(e)})))[0]}extractExternalSheetData(e){return this.mapOnElements({parent:e,query:"sheetData"},(e=>{const t=this.mapOnElements({parent:e,query:"cell"},(e=>({xc:this.extractAttr(e,"r",{required:!0}).asString(),value:this.extractChildTextContent(e,"v",{required:!0})}))),o={};for(let e of t)o[e.xc]=e.value;return{sheetId:this.extractAttr(e,"sheetId",{required:!0}).asNum(),data:o}}))}}function BO(e,t){const o=function(e,t){const o=t[ZT],s=o.querySelectorAll(`Override[ContentType="${e}"]`),i=[];for(let e of s){const t=e?.attributes.PartName.value;i.push(t.substring(1))}return i}(e,t);return function(e,t){const o=[];for(let s of e){const e=$O(s,t);o.push({file:{fileName:s,xml:t[s]},rels:e?{fileName:e,xml:t[e]}:void 0})}return o}(o,t)}function $O(e,t){if(e===ZT)return"_rels/.rels";let o="";const s=e.split("/");for(let e=0;e<s.length-1;e++)o+=s[e]+"/";return o+="_rels/",o+=s[s.length-1]+".rels",t[o]||(o=void 0),o}class WO{warningManager;xmls;images;constructor(e){this.warningManager=new YT,this.xmls={},this.images=[];for(let t of Object.keys(e))if(t.endsWith(".xml")||t.endsWith(".rels")){const o=e[t].replaceAll(/(<\/?)([a-zA-Z0-9]+):([a-zA-Z0-9]+)/g,"$1NAMESPACE$2NAMESPACE$3");this.xmls[t]=wO(new AT(o))}else t.includes("media/image")&&this.images.push({fileName:t,imageSrc:e[t].imageSrc})}convertXlsx(){const e=this.getXlsxData();return this.convertImportedData(e)}getXlsxData(){const e=this.buildXlsxFileStructure(),t=e.theme?new DO(e.theme,e,this.warningManager).getTheme():void 0,o=e.sharedStrings?new DO(e.sharedStrings,e,this.warningManager).getSharedStrings():[],s=e.sheets.sort(((e,t)=>e.file.fileName.localeCompare(t.file.fileName,void 0,{numeric:!0}))).map((o=>new UO(o,e,this.warningManager,t).getSheet())),i=e.externalLinks.map((t=>new zO(t,e,this.warningManager).getExternalBook())),n=new HO(e,this.warningManager,t);return{fonts:n.getFonts(),fills:n.getFills(),borders:n.getBorders(),dxfs:n.getDxfs(),numFmts:n.getNumFormats(),styles:n.getStyles(),sheets:s,sharedStrings:o,externalBooks:i}}buildXlsxFileStructure(){const e={sheets:BO(NT.sheet,this.xmls),workbook:BO(NT.workbook,this.xmls)[0],styles:BO(NT.styles,this.xmls)[0],sharedStrings:BO(NT.sharedStrings,this.xmls)[0],theme:BO(NT.themes,this.xmls)[0],charts:BO(NT.chart,this.xmls),figures:BO(NT.drawing,this.xmls),tables:BO(NT.table,this.xmls),pivots:BO(NT.pivot,this.xmls),externalLinks:BO(NT.externalLink,this.xmls),images:this.images};if(!e.workbook.rels)throw Error(bo("Cannot find workbook relations file"));return e}convertImportedData(e){const t={version:17,sheets:aO(e,this.warningManager),styles:TA(e,this.warningManager),formats:OA(e,this.warningManager),borders:IA(e,this.warningManager),revisionId:Q};return mO(t,e),Object.keys(e.styles).map((t=>{e.styles[t]=je(e.styles[t])})),t}}function GO(e){const t=fa(e);let o=[];return{text:"".concat(...t.map((e=>{if("REFERENCE"===e.type&&yi.test(e.value)){const t=e.value.trim();return o.includes(t)||o.push(t),`${le}${o.indexOf(t)}${le}`}return e.value}))),dependencies:o}}const qO=17,ZO="Sheet1";function jO(e,t){if(!e)return e_();console.debug("### Loading data ###");const o=performance.now();if(e["[Content_Types].xml"]){const o=new WO(e);if(e=o.convertXlsx(),t)for(let e of o.warningManager.warnings.sort())console.warn(e)}return"version"in e&&e.version<qO&&(console.debug("Migrating data from version",e.version),e=function(e){const t=performance.now();for(let t=YO.findIndex((t=>t.from===e.version));t<YO.length;t++)e=YO[t].applyMigration(e);return console.debug("Data migrated in",performance.now()-t,"ms"),e}(e)),e=function(e){return e=function(e){if(e.uniqueFigureIds)return e;const t=new Set,o=new Hn;for(const s of e.sheets||[])for(const e of s.figures||[])t.has(e.id)&&(e.id+=o.uuidv4()),t.add(e.id);return e.uniqueFigureIds=!0,e}(e),e=function(e){const t=Object.assign(e_(),e,{version:qO});t.sheets=t.sheets?t.sheets.map(((e,t)=>Object.assign(JO(`Sheet${t+1}`,`Sheet${t+1}`),e))):[],0===t.sheets.length&&t.sheets.push(JO(ZO,"Sheet1"));ar(t.settings.locale)||(t.settings.locale=Mo);return t}(e),e}(e),console.debug("Data loaded in",performance.now()-o,"ms"),console.debug("###"),e}const YO=[{description:"add the `activeSheet` field on data",from:1,to:2,applyMigration:e=>(e.sheets&&e.sheets[0]&&(e.activeSheet=e.sheets[0].name),e)},{description:"add an id field in each sheet",from:2,to:3,applyMigration(e){if(e.sheets&&e.sheets.length)for(let t of e.sheets)t.id=t.id||t.name;return e}},{description:"activeSheet is now an id, not the name of a sheet",from:3,to:4,applyMigration(e){if(e.sheets&&e.activeSheet){const t=e.sheets.find((t=>t.name===e.activeSheet));e.activeSheet=t.id}return e}},{description:"add figures object in each sheets",from:4,to:5,applyMigration(e){for(let t of e.sheets||[])t.figures=t.figures||[];return e}},{description:"normalize the content of the cell if it is a formula to avoid parsing all the formula that vary only by the cells they use",from:5,to:6,applyMigration(e){for(let t of e.sheets||[])for(let e in t.cells||[]){const o=t.cells[e];o.content&&o.content.startsWith("=")&&(o.formula=GO(o.content))}return e}},{description:"transform chart data structure",from:6,to:7,applyMigration(e){for(let t of e.sheets||[])for(let e in t.figures||[]){const{dataSets:o,...s}=t.figures[e].data,i=[];for(let e of o)if(e.labelCell){const t=zi(e.dataRange),o=e.labelCell+":"+_t(t.right,t.bottom);i.push(o)}else i.push(e.dataRange);s.dataSetsHaveTitle=Boolean(o[0].labelCell),s.dataSets=i,t.figures[e].data=s}return e}},{description:"remove single quotes in sheet names",from:7,to:8,applyMigration(e){const t=[],o=new RegExp(ae,"g");for(let s of e.sheets||[]){if(!s.name)continue;const e=s.name,i=e.replace(o,"_");let n=1,r=i;for(;t.includes(r);)r=`${i}${n}`,n++;s.name=r,t.push(r);const a=t=>{if(void 0===t)return t;let o=t.replace(e,r),s=t;for(;s!==o;)s=o,o=s.replace(e,r);return s};for(let e in s.cells){const t=s.cells[e];t.formula&&(t.formula.dependencies=t.formula.dependencies.map(a))}for(let e of s.figures||[])if("chart"===e.type){const t=e.data.dataSets.map(a),o=a(e.data.labelRange);e.data={...e.data,dataSets:t,labelRange:o}}for(let e of s.conditionalFormats||[]){e.ranges=e.ranges.map(a);for(const t of["minimum","maximum","midpoint","upperInflectionPoint","lowerInflectionPoint"])"formula"===e.rule[t]?.type&&(e.rule[t].value=a(e.rule[t].value))}}return e}},{description:"transform chart data structure with design attributes",from:8,to:9,applyMigration(e){for(const t of e.sheets||[])for(const e of t.figures||[])e.data.background=m,e.data.verticalAxisPosition="left",e.data.legendPosition="top",e.data.stacked=!1;return e}},{description:"de-normalize formula to reduce exported json size (~30%)",from:9,to:10,applyMigration(e){for(let t of e.sheets||[])for(let e in t.cells||[]){const o=t.cells[e];if(o.formula){let{text:e,dependencies:t}=o.formula;for(let[o,s]of Object.entries(t)){const t=`\\${le}${o}\\${le}`;e=e.replace(new RegExp(t,"g"),s)}o.content=e,delete o.formula}}return e}},{description:"normalize the formats of the cells",from:10,to:11,applyMigration(e){const t={};for(let o of e.sheets||[])for(let e in o.cells||[]){const s=o.cells[e];s.format&&(s.format=Ue(s.format,t))}return e.formats=t,e}},{description:"Add isVisible to sheets",from:11,to:12,applyMigration(e){for(let t of e.sheets||[])t.isVisible=!0;return e}},{description:"Fix datafilter duplication",from:12,to:12.5,applyMigration:e=>QO(e)},{description:"Change Border description structure",from:12.5,to:13,applyMigration(e){for(const t in e.borders){const o=e.borders[t];for(const e in o)Array.isArray(o[e])&&(o[e]={style:o[e][0],color:o[e][1]})}return e}},{description:"Add locale to spreadsheet settings",from:13,to:14,applyMigration:e=>(e.settings||(e.settings={}),e.settings.locale||(e.settings.locale=Mo),e)},{description:"Fix datafilter duplication (post saas-17.1)",from:14,to:14.5,applyMigration:e=>QO(e)},{description:"Rename filterTable to tables",from:14.5,to:15,applyMigration(e){for(const t of e.sheets||[])t.tables=t.tables||t.filterTables||[],delete t.filterTables;return e}},{description:"Add pivots",from:15,to:16,applyMigration:e=>(e.pivots||(e.pivots={}),e.pivotNextId||(e.pivotNextId=qr(e.pivots)+1),e)},{description:"transform chart data structure (2)",from:16,to:17,applyMigration(e){for(const t of e.sheets||[])for(const e in t.figures||[]){const o=t.figures[e];"title"in o.data&&"string"==typeof o.data.title&&(o.data.title={text:o.data.title});const s=o.data.type;if(!["line","bar","pie","scatter","waterfall","combo"].includes(s))continue;const{dataSets:i,...n}=t.figures[e].data,r=i.map((e=>({dataRange:e})));n.dataSets=r,t.figures[e].data=n}return e}}];function XO(e,t){return t=function(e,t){if(0!==Object.keys(e).length)return t;const o=[],s=[],i=e=>{if("CREATE_SHEET"===e.type)o.push(e.sheetId);else if("sheetId"in e&&!o.includes(e.sheetId))return{...e,sheetId:ZO};return e};for(const e of t)"REMOTE_REVISION"===e.type?s.push({...e,commands:e.commands.map(i)}):s.push(e);return s}(e,t),t=KO(t,"SORT_CELLS"),t=function(e,t){const o=[],s={};for(const t of e.sheets||[])t.figures?.forEach((e=>{"chart"===e.tag&&(s[e.id]=e.data)}));for(const e of t)if("REMOTE_REVISION"===e.type){const t=[];for(const o of e.commands){let e=o;switch(o.type){case"CREATE_CHART":s[o.id]=o.definition;break;case"UPDATE_CHART":if(!s[o.id]){console.log(`Fix chart definition: chart with id ${o.id} not found.`);continue}const t={...s[o.id],...o.definition};e={...o,definition:t},s[o.id]=t}t.push(e)}o.push({...e,commands:t})}else o.push(e);return o}(e,t=KO(t,"SET_DECIMAL")),t}function KO(e,t){const o=[];for(const s of e)"REMOTE_REVISION"===s.type?o.push({...s,commands:s.commands.filter((e=>e.type!==t))}):o.push(s);return o}function QO(e){for(let t of e.sheets||[]){let e=[];for(let o of t.filterTables||[]){const t=zi(o.range),s=e.findIndex((e=>Qi(e,t)));-1!==s?e[s]=t:e.push(t)}t.filterTables=e.map((e=>({range:Wi(e)})))}return e}function JO(e,t){return{id:e,name:t,colNumber:26,rowNumber:100,cells:{},cols:{},rows:{},merges:[],conditionalFormats:[],figures:[],tables:[],isVisible:!0}}function e_(e="Sheet1"){return{version:qO,sheets:[JO(ZO,e)],styles:{},formats:{},borders:{},revisionId:Q,uniqueFigureIds:!0,settings:{locale:Mo},pivots:{},pivotNextId:1,customTableStyles:{}}}function t_(e,t){return{...JO(e,t),charts:[],images:[]}}class o_{static getters=[];history;dispatch;canDispatch;constructor(e,t,o){this.history=Object.assign(Object.create(e),{update:e.addChange.bind(e,this),selectCell:()=>{}}),this.dispatch=t,this.canDispatch=o}exportForExcel(e){}allowDispatch(e){return"Success"}beforeHandle(e){}handle(e){}finalize(){}batchValidations(...e){return t=>e.map((e=>e.call(this,t))).flat()}chainValidations(...e){return t=>{for(const o of e){let e=o.call(this,t);Array.isArray(e)||(e=[e]);const s=e.filter((e=>"Success"!==e));if(s.length)return s}return"Success"}}checkValidations(e,...t){return this.batchValidations(...t)(e)}}class s_ extends o_{getters;uuidGenerator;constructor({getters:e,stateObserver:t,range:o,dispatch:s,canDispatch:i,uuidGenerator:n}){super(t,s,i),o.addRangeProvider(this.adaptRanges.bind(this)),this.getters=e,this.uuidGenerator=n}import(e){}export(e){}adaptRanges(e,t){}garbageCollectExternalResources(){}}class i_{id;format;style;sheetId;getRangeString;isFormula=!0;compiledFormula;constructor(e,t,o,s,i,n,r){this.id=e,this.format=o,this.style=s,this.sheetId=n,this.getRangeString=r;let a=0;const l=t.tokens.map((e=>{if("REFERENCE"===e.type){const e=a++;return new n_(i,e,this.sheetId,this.getRangeString)}return e}));this.compiledFormula={...t,dependencies:i,tokens:l}}get content(){return ze(this.compiledFormula.tokens.map((e=>e.value)))}get contentWithFixedReferences(){let e=0;return ze(this.compiledFormula.tokens.map((t=>{if("REFERENCE"===t.type){const t=e++;return this.getRangeString(this.compiledFormula.dependencies[t],this.sheetId,{useFixedReference:!0})}return t.value})))}}class n_{ranges;rangeIndex;sheetId;getRangeString;type="REFERENCE";constructor(e,t,o,s){this.ranges=e,this.rangeIndex=t,this.sheetId=o,this.getRangeString=s}get value(){const e=this.ranges[this.rangeIndex];return this.getRangeString(e,this.sheetId)}}function r_(e){return""===e?NaN:Number(e)}function a_(e){return Object.entries(e).map((([e,t])=>t?l_(parseInt(e,10),t):void 0)).filter(Le).map((e=>_t(e.left,e.top)+":"+_t(e.right,e.bottom)))}function l_(e,t){return{...t.zone,id:e}}class c_{getters;providers=[];constructor(e){this.getters=e}static getters=["extendRange","getRangeString","getRangeFromSheetXC","createAdaptedRanges","getRangeDataFromXc","getRangeDataFromZone","getRangeFromRangeData","getRangeFromZone","getRangesUnion","recomputeRanges","isRangeValid","removeRangesSheetPrefix"];allowDispatch(e){return"MOVE_RANGES"===e.type?1===e.target.length?"Success":"InvalidZones":"Success"}beforeHandle(e){}handle(e){switch(e.type){case"REMOVE_COLUMNS_ROWS":{let t="COL"===e.dimension?"left":"top",o="COL"===e.dimension?"right":"bottom",s="COL"===e.dimension?"columns":"rows";const i=[...e.elements];i.sort(((e,t)=>t-e));const n=xe(i);this.executeOnAllRanges((i=>{if(i.sheetId!==e.sheetId)return{changeType:"NONE"};let r=i,a="NONE";for(let e of n){const n=nt(e),l=it(e);if(i.zone[t]<=n&&n<=i.zone[o]){const e=Math.min(i.zone[o],l)-n+1;a="RESIZE",r=this.createAdaptedRange(r,s,a,-e)}else if(i.zone[t]>=n&&i.zone[o]<=l)a="REMOVE",r=i.clone({...this.getInvalidRange()});else if(i.zone[t]<=l&&i.zone[o]>=l){const e=l-i.zone[t]+1;a="RESIZE",r=this.createAdaptedRange(r,s,a,-e),r=this.createAdaptedRange(r,s,"MOVE",-(i.zone[t]-n))}else n<i.zone[t]&&(a="MOVE",r=this.createAdaptedRange(r,s,a,-(l-n+1)))}return"NONE"!==a?{changeType:a,range:r}:{changeType:"NONE"}}),e.sheetId);break}case"ADD_COLUMNS_ROWS":{let t="COL"===e.dimension?"left":"top",o="COL"===e.dimension?"right":"bottom",s="COL"===e.dimension?"columns":"rows";this.executeOnAllRanges((i=>{if(i.sheetId!==e.sheetId)return{changeType:"NONE"};if("after"===e.position){if(i.zone[t]<=e.base&&e.base<i.zone[o])return{changeType:"RESIZE",range:this.createAdaptedRange(i,s,"RESIZE",e.quantity)};if(e.base<i.zone[t])return{changeType:"MOVE",range:this.createAdaptedRange(i,s,"MOVE",e.quantity)}}else{if(i.zone[t]<e.base&&e.base<=i.zone[o])return{changeType:"RESIZE",range:this.createAdaptedRange(i,s,"RESIZE",e.quantity)};if(e.base<=i.zone[t])return{changeType:"MOVE",range:this.createAdaptedRange(i,s,"MOVE",e.quantity)}}return{changeType:"NONE"}}),e.sheetId);break}case"DELETE_SHEET":this.executeOnAllRanges((t=>{if(t.sheetId!==e.sheetId)return{changeType:"NONE"};const o=this.getters.getSheetName(e.sheetId);return{changeType:"REMOVE",range:t=t.clone({...this.getInvalidRange(),invalidSheetName:o})}}),e.sheetId);break;case"RENAME_SHEET":this.executeOnAllRanges((t=>{if(t.sheetId===e.sheetId)return{changeType:"CHANGE",range:t};if(e.name&&t.invalidSheetName===e.name){const o=void 0,s=e.sheetId;return{changeType:"CHANGE",range:t.clone({sheetId:s,invalidSheetName:o})}}return{changeType:"NONE"}}));break;case"MOVE_RANGES":{const t=e.target[0];this.executeOnAllRanges((o=>{if(o.sheetId!==e.sheetId||!en(o.zone,t))return{changeType:"NONE"};const s=e.targetSheetId,i=e.col-t.left,n=e.row-t.top,r=this.createAdaptedRange(o,"both","MOVE",[i,n]),a=e.sheetId!==s||r.prefixSheet;return{changeType:"MOVE",range:r.clone({sheetId:s,prefixSheet:a})}}));break}}}finalize(){}verifyRangeRemoved(e){return t=>{const o=e(t);return"NONE"===o.changeType||Bi(o.range.zone)?o:{range:o.range,changeType:"REMOVE"}}}createAdaptedRange(e,t,o,s){const i=rn(e.unboundedZone,t,o,s);return e.clone({zone:i})}executeOnAllRanges(e,t){const o=this.verifyRangeRemoved(e);for(const e of this.providers)e(o,t)}addRangeProvider(e){this.providers.push(e)}createAdaptedRanges(e,t,o,s){const i=e.map((e=>pn.fromRange(e,this.getters)));return i.map((e=>{if(!Bi(e.zone))return e;const i=e.prefixSheet?e.sheetId:s,n={...e.unboundedZone,left:e.isFullRow&&!e.unboundedZone.hasHeader?e.unboundedZone.left:e.unboundedZone.left+(e.parts[0].colFixed?0:t),right:e.isFullRow?e.unboundedZone.right:e.unboundedZone.right+((e.parts[1]||e.parts[0]).colFixed?0:t),top:e.isFullCol&&!e.unboundedZone.hasHeader?e.unboundedZone.top:e.unboundedZone.top+(e.parts[0].rowFixed?0:o),bottom:e.isFullCol?e.unboundedZone.bottom:e.unboundedZone.bottom+((e.parts[1]||e.parts[0]).rowFixed?0:o)};return e.clone({sheetId:i,zone:n}).orderZone()}))}removeRangesSheetPrefix(e,t){return t.map((t=>{const o=pn.fromRange(t,this.getters);return o.prefixSheet&&o.sheetId===e?o.clone({prefixSheet:!1}):o}))}extendRange(e,t,o){const s=pn.fromRange(e,this.getters),i="COL"===t?s.zone.right+o:s.zone.right,n="ROW"===t?s.zone.bottom+o:s.zone.bottom,r={left:s.zone.left,top:s.zone.top,right:s.isFullRow?void 0:i,bottom:s.isFullCol?void 0:n};return new pn({...s,zone:r},this.getters.getSheetSize).orderZone()}getRangeFromSheetXC(e,t){if(!Ri.test(t)||!this.getters.tryGetSheet(e))return new pn({sheetId:"",zone:{left:-1,top:-1,right:-1,bottom:-1},parts:[],invalidXc:t,prefixSheet:!1},this.getters.getSheetSize);let o,s=t,i=!1;t.includes("!")&&(({xc:s,sheetName:o}=Fi(t)),o&&(i=!0));const n=Hi(s),r=pn.getRangeParts(s,n),a=o&&!this.getters.getSheetIdByName(o)?o:void 0,l=this.getters.getSheetIdByName(o)||e;return new pn({prefixSheet:i,zone:n,sheetId:l,invalidSheetName:a,parts:r},this.getters.getSheetSize).orderZone()}getRangeString(e,t,o={useFixedReference:!1}){if(!e)return Uo.InvalidReference;if(e.invalidXc)return e.invalidXc;if(!this.getters.tryGetSheet(e.sheetId))return Uo.InvalidReference;if(e.zone.bottom-e.zone.top<0||e.zone.right-e.zone.left<0)return Uo.InvalidReference;if(e.zone.left<0||e.zone.top<0)return Uo.InvalidReference;const s=pn.fromRange(e,this.getters);let i=s.sheetId!==t||s.invalidSheetName||s.prefixSheet,n="";if(i&&(n=s.invalidSheetName?s.invalidSheetName:ye(this.getters.getSheetName(s.sheetId))),i&&!n)return Uo.InvalidReference;let r=this.getRangePartString(s,0,o);return s.parts&&2===s.parts.length&&(s.zone.top!==s.zone.bottom||s.zone.left!==s.zone.right||s.parts[0].rowFixed||s.parts[0].colFixed||s.parts[1].rowFixed||s.parts[1].colFixed)&&(r+=":",r+=this.getRangePartString(s,1,o)),`${i?n+"!":""}${r}`}getRangeDataFromXc(e,t){return this.getters.getRangeFromSheetXC(e,t).rangeData}getRangeDataFromZone(e,t){return{_sheetId:e,_zone:t=this.getters.getUnboundedZone(e,t)}}getRangeFromZone(e,t){return new pn({sheetId:e,zone:t,parts:[{colFixed:!1,rowFixed:!1},{colFixed:!1,rowFixed:!1}],prefixSheet:!1},this.getters.getSheetSize)}recomputeRanges(e,t){const o=e.map((e=>pn.fromRange(e,this.getters).unboundedZone)),s=t.map((e=>pn.fromRange(e,this.getters).unboundedZone));return Pi(o,s).map((t=>this.getRangeFromZone(e[0].sheetId,t)))}getRangeFromRangeData(e){const t={prefixSheet:!1,zone:e._zone,sheetId:e._sheetId,invalidSheetName:void 0,parts:[{colFixed:!1,rowFixed:!1},{colFixed:!1,rowFixed:!1}]};return new pn(t,this.getters.getSheetSize)}isRangeValid(e){if(!e)return!1;const{xc:t,sheetName:o}=Fi(e);return null!==t.match(Ri)&&(!o||void 0!==this.getters.getSheetIdByName(o))}getRangesUnion(e){const t=e.map((e=>pn.fromRange(e,this.getters).unboundedZone)),o=function(...e){return{top:Math.min(...e.map((e=>e.top))),left:Math.min(...e.map((e=>e.left))),bottom:e.some((e=>void 0===e.bottom))?void 0:Math.max(...e.map((e=>e.bottom))),right:e.some((e=>void 0===e.right))?void 0:Math.max(...e.map((e=>e.right)))}}(...t);return this.getRangeFromZone(e[0].sheetId,o)}getRangePartString(e,t,o={useFixedReference:!1}){const s=e.parts&&e.parts[t]?.colFixed?"$":"",i=Rt(0===t?e.zone.left:e.zone.right),n=e.parts&&e.parts[t]?.rowFixed?"$":"",r=String(0===t?e.zone.top+1:e.zone.bottom+1);let a="";return a=e.isFullCol&&!o.useFixedReference?0===t&&e.unboundedZone.hasHeader?s+i+n+r:s+i:e.isFullRow&&!o.useFixedReference?0===t&&e.unboundedZone.hasHeader?s+i+n+r:n+r:s+i+n+r,a}getInvalidRange(){return{parts:[],prefixSheet:!1,zone:{left:-1,top:-1,right:-1,bottom:-1},sheetId:"",invalidXc:Uo.InvalidReference}}}function h_(e,t){if(!e)return;const o=t(e);switch(o.changeType){case"NONE":return e;case"REMOVE":return;default:return o.range}}class d_ extends o_{static layers=[];getters;ui;selection;constructor({getters:e,stateObserver:t,dispatch:o,canDispatch:s,uiActions:i,selection:n}){super(t,o,s),this.getters=e,this.ui=i,this.selection=n}drawLayer(e,t){}}const u_=new n;u_.add("pivots",(e=>{for(const t of e.getPivotIds()){const o=e.getPivot(t);sR.get(o.type).onIterationEndEvaluation(o)}}));const g_=yb.mapping;function p_(e,t,o){return new m_(e,t,o).getParameters()}class m_{getters;computeCell;evalContext;rangeCache={};constructor(e,t,o){this.getters=t,this.computeCell=o,this.evalContext=Object.assign(Object.create(g_),e,{getters:this.getters,locale:this.getters.getLocale()})}getParameters(){return{referenceDenormalizer:this.refFn.bind(this),ensureRange:this.range.bind(this),evalContext:this.evalContext}}refFn(e,t){const o=this.getRangeError(e);if(o)return o;if(t){return{value:Mi(this.getters.getSheetName(e.sheetId),Wi(e.zone))}}const s={sheetId:e.sheetId,col:e.zone.left,row:e.zone.top};return this.computeCell(s)}range(e){const t=this.getRangeError(e);if(t)return[[t]];const o=e.sheetId,s=e.zone,i=Xi(s,this.getters.getSheetZone(o));if(!i)return[[]];const{top:n,left:r,bottom:a,right:l}=s,c=`${o}-${n}-${r}-${a}-${l}`;if(c in this.rangeCache)return this.rangeCache[c];const h=i.bottom-i.top+1,d=i.right-i.left+1,u=new Array(d);for(let e=i.left;e<=i.right;e++){const t=e-i.left;u[t]=new Array(h);for(let s=i.top;s<=i.bottom;s++){const n=s-i.top;u[t][n]=this.computeCell({sheetId:o,col:e,row:s})}}return this.rangeCache[c]=u,u}getRangeError(e){return Bi(e.zone)?e.invalidSheetName?new zo(bo("Invalid sheet name: %s",e.invalidSheetName)):void 0:new $o}}class f_{map={};set({sheetId:e,col:t,row:o},s){const i=this.map;i[e]||(i[e]={}),i[e][t]||(i[e][t]={}),i[e][t][o]=s}get({sheetId:e,col:t,row:o}){return this.map[e]?.[t]?.[o]}getSheet(e){return this.map[e]}has({sheetId:e,col:t,row:o}){return void 0!==this.map[e]?.[t]?.[o]}delete({sheetId:e,col:t,row:o}){delete this.map[e]?.[t]?.[o]}keys(){const e=this.map,t=[];for(const o in e)for(const s in e[o])for(const i in e[o][s])t.push({sheetId:o,col:parseInt(s),row:parseInt(i)});return t}keysForSheet(e){const t=this.map[e];if(!t)return[];const o=[];for(const s in t)for(const i in t[s])o.push({sheetId:e,col:parseInt(s),row:parseInt(i)});return o}}function b_(e,t,o,s,i){v_(e,t,o||0,s||e.length-1,i||y_)}function v_(e,t,o,s,i){for(;s>o;){if(s-o>600){var n=s-o+1,r=t-o+1,a=Math.log(n),l=.5*Math.exp(2*a/3),c=.5*Math.sqrt(a*l*(n-l)/n)*(r-n/2<0?-1:1);v_(e,t,Math.max(o,Math.floor(t-r*l/n+c)),Math.min(s,Math.floor(t+(n-r)*l/n+c)),i)}var h=e[t],d=o,u=s;for(S_(e,o,t),i(e[s],h)>0&&S_(e,o,s);d<u;){for(S_(e,d,u),d++,u--;i(e[d],h)<0;)d++;for(;i(e[u],h)>0;)u--}0===i(e[o],h)?S_(e,o,u):S_(e,++u,s),u<=t&&(o=u+1),t<=u&&(s=u-1)}}function S_(e,t,o){var s=e[t];e[t]=e[o],e[o]=s}function y_(e,t){return e<t?-1:e>t?1:0}class C_{constructor(e=9){this._maxEntries=Math.max(4,e),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()}all(){return this._all(this.data,[])}search(e){let t=this.data;const o=[];if(!F_(e,t))return o;const s=this.toBBox,i=[];for(;t;){for(let n=0;n<t.children.length;n++){const r=t.children[n],a=t.leaf?s(r):r;F_(e,a)&&(t.leaf?o.push(r):D_(e,a)?this._all(r,o):i.push(r))}t=i.pop()}return o}collides(e){let t=this.data;if(!F_(e,t))return!1;const o=[];for(;t;){for(let s=0;s<t.children.length;s++){const i=t.children[s],n=t.leaf?this.toBBox(i):i;if(F_(e,n)){if(t.leaf||D_(e,n))return!0;o.push(i)}}t=o.pop()}return!1}load(e){if(!e||!e.length)return this;if(e.length<this._minEntries){for(let t=0;t<e.length;t++)this.insert(e[t]);return this}let t=this._build(e.slice(),0,e.length-1,0);if(this.data.children.length)if(this.data.height===t.height)this._splitRoot(this.data,t);else{if(this.data.height<t.height){const e=this.data;this.data=t,t=e}this._insert(t,this.data.height-t.height-1,!0)}else this.data=t;return this}insert(e){return e&&this._insert(e,this.data.height-1),this}clear(){return this.data=M_([]),this}remove(e,t){if(!e)return this;let o=this.data;const s=this.toBBox(e),i=[],n=[];let r,a,l;for(;o||i.length;){if(o||(o=i.pop(),a=i[i.length-1],r=n.pop(),l=!0),o.leaf){const s=w_(e,o.children,t);if(-1!==s)return o.children.splice(s,1),i.push(o),this._condense(i),this}l||o.leaf||!D_(o,s)?a?(r++,o=a.children[r],l=!1):o=null:(i.push(o),n.push(r),r=0,a=o,o=o.children[0])}return this}toBBox(e){return e}compareMinX(e,t){return e.minX-t.minX}compareMinY(e,t){return e.minY-t.minY}toJSON(){return this.data}fromJSON(e){return this.data=e,this}_all(e,t){const o=[];for(;e;)e.leaf?t.push(...e.children):o.push(...e.children),e=o.pop();return t}_build(e,t,o,s){const i=o-t+1;let n,r=this._maxEntries;if(i<=r)return n=M_(e.slice(t,o+1)),x_(n,this.toBBox),n;s||(s=Math.ceil(Math.log(i)/Math.log(r)),r=Math.ceil(i/Math.pow(r,s-1))),n=M_([]),n.leaf=!1,n.height=s;const a=Math.ceil(i/r),l=a*Math.ceil(Math.sqrt(r));P_(e,t,o,l,this.compareMinX);for(let i=t;i<=o;i+=l){const t=Math.min(i+l-1,o);P_(e,i,t,a,this.compareMinY);for(let o=i;o<=t;o+=a){const i=Math.min(o+a-1,t);n.children.push(this._build(e,o,i,s-1))}}return x_(n,this.toBBox),n}_chooseSubtree(e,t,o,s){for(;s.push(t),!t.leaf&&s.length-1!==o;){let o,s=1/0,r=1/0;for(let a=0;a<t.children.length;a++){const l=t.children[a],c=A_(l),h=(i=e,n=l,(Math.max(n.maxX,i.maxX)-Math.min(n.minX,i.minX))*(Math.max(n.maxY,i.maxY)-Math.min(n.minY,i.minY))-c);h<r?(r=h,s=c<s?c:s,o=l):h===r&&c<s&&(s=c,o=l)}t=o||t.children[0]}var i,n;return t}_insert(e,t,o){const s=o?e:this.toBBox(e),i=[],n=this._chooseSubtree(s,this.data,t,i);for(n.children.push(e),I_(n,s);t>=0&&i[t].children.length>this._maxEntries;)this._split(i,t),t--;this._adjustParentBBoxes(s,i,t)}_split(e,t){const o=e[t],s=o.children.length,i=this._minEntries;this._chooseSplitAxis(o,i,s);const n=this._chooseSplitIndex(o,i,s),r=M_(o.children.splice(n,o.children.length-n));r.height=o.height,r.leaf=o.leaf,x_(o,this.toBBox),x_(r,this.toBBox),t?e[t-1].children.push(r):this._splitRoot(o,r)}_splitRoot(e,t){this.data=M_([e,t]),this.data.height=e.height+1,this.data.leaf=!1,x_(this.data,this.toBBox)}_chooseSplitIndex(e,t,o){let s,i=1/0,n=1/0;for(let r=t;r<=o-t;r++){const t=E_(e,0,r,this.toBBox),a=E_(e,r,o,this.toBBox),l=__(t,a),c=A_(t)+A_(a);l<i?(i=l,s=r,n=c<n?c:n):l===i&&c<n&&(n=c,s=r)}return s||o-t}_chooseSplitAxis(e,t,o){const s=e.leaf?this.compareMinX:R_,i=e.leaf?this.compareMinY:T_;this._allDistMargin(e,t,o,s)<this._allDistMargin(e,t,o,i)&&e.children.sort(s)}_allDistMargin(e,t,o,s){e.children.sort(s);const i=this.toBBox,n=E_(e,0,t,i),r=E_(e,o-t,o,i);let a=O_(n)+O_(r);for(let s=t;s<o-t;s++){const t=e.children[s];I_(n,e.leaf?i(t):t),a+=O_(n)}for(let s=o-t-1;s>=t;s--){const t=e.children[s];I_(r,e.leaf?i(t):t),a+=O_(r)}return a}_adjustParentBBoxes(e,t,o){for(let s=o;s>=0;s--)I_(t[s],e)}_condense(e){for(let t,o=e.length-1;o>=0;o--)0===e[o].children.length?o>0?(t=e[o-1].children,t.splice(t.indexOf(e[o]),1)):this.clear():x_(e[o],this.toBBox)}}function w_(e,t,o){if(!o)return t.indexOf(e);for(let s=0;s<t.length;s++)if(o(e,t[s]))return s;return-1}function x_(e,t){E_(e,0,e.children.length,t,e)}function E_(e,t,o,s,i){i||(i=M_(null)),i.minX=1/0,i.minY=1/0,i.maxX=-1/0,i.maxY=-1/0;for(let n=t;n<o;n++){const t=e.children[n];I_(i,e.leaf?s(t):t)}return i}function I_(e,t){return e.minX=Math.min(e.minX,t.minX),e.minY=Math.min(e.minY,t.minY),e.maxX=Math.max(e.maxX,t.maxX),e.maxY=Math.max(e.maxY,t.maxY),e}function R_(e,t){return e.minX-t.minX}function T_(e,t){return e.minY-t.minY}function A_(e){return(e.maxX-e.minX)*(e.maxY-e.minY)}function O_(e){return e.maxX-e.minX+(e.maxY-e.minY)}function __(e,t){const o=Math.max(e.minX,t.minX),s=Math.max(e.minY,t.minY),i=Math.min(e.maxX,t.maxX),n=Math.min(e.maxY,t.maxY);return Math.max(0,i-o)*Math.max(0,n-s)}function D_(e,t){return e.minX<=t.minX&&e.minY<=t.minY&&t.maxX<=e.maxX&&t.maxY<=e.maxY}function F_(e,t){return t.minX<=e.maxX&&t.minY<=e.maxY&&t.maxX>=e.minX&&t.maxY>=e.minY}function M_(e){return{children:e,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function P_(e,t,o,s,i){const n=[t,o];for(;n.length;){if((o=n.pop())-(t=n.pop())<=s)continue;const r=t+Math.ceil((o-t)/s/2)*s;b_(e,r,t,o,i),n.push(t,r,r,o)}}class N_{rTrees={};constructor(e=[]){const t={};for(const o of e){const e=o.boundingBox.sheetId;t[e]||(t[e]=[]),t[e].push(o)}for(const e in t)this.rTrees[e]=new L_,this.rTrees[e].load(t[e])}insert(e){const t=e.boundingBox.sheetId;this.rTrees[t]||(this.rTrees[t]=new L_),this.rTrees[t].insert(e)}search({zone:e,sheetId:t}){return this.rTrees[t]?this.rTrees[t].search({minX:e.left,minY:e.top,maxX:e.right,maxY:e.bottom}):[]}remove(e){const t=e.boundingBox.sheetId;this.rTrees[t]&&this.rTrees[t].remove(e,this.rtreeItemComparer)}rtreeItemComparer(e,t){return e.data==t.data&&e.boundingBox.sheetId===t.boundingBox.sheetId&&e.boundingBox?.zone.left===t.boundingBox.zone.left&&e.boundingBox?.zone.top===t.boundingBox.zone.top&&e.boundingBox?.zone.right===t.boundingBox.zone.right&&e.boundingBox?.zone.bottom===t.boundingBox.zone.bottom}}class L_ extends C_{toBBox({boundingBox:e}){const t=e.zone;return{minX:t.left,minY:t.top,maxX:t.right,maxY:t.bottom}}compareMinX(e,t){return e.boundingBox.zone.left-t.boundingBox.zone.left}compareMinY(e,t){return e.boundingBox.zone.top-t.boundingBox.zone.top}}class k_{createEmptyPositionSet;dependencies=new f_;rTree;constructor(e,t=[]){this.createEmptyPositionSet=e,this.rTree=new N_(t)}removeAllDependencies(e){const t=this.dependencies.get(e);if(t){for(const e of t)this.rTree.remove(e);this.dependencies.delete(e)}}addDependencies(e,t){const o=t.map((({sheetId:t,zone:o})=>({data:e,boundingBox:{zone:o,sheetId:t}})));for(const e of o)this.rTree.insert(e);const s=this.dependencies.get(e);s?s.push(...o):this.dependencies.set(e,o)}getCellsDependingOn(e){const t=this.createEmptyPositionSet(),o=Array.from(e).reverse();for(;o.length>0;){const e=o.pop(),s=e.zone,i=e.sheetId;for(let e=s.left;e<=s.right;e++)for(let o=s.top;o<=s.bottom;o++)t.add({sheetId:i,col:e,row:o});const n=this.rTree.search(e).map((e=>e.data)),r={};for(const e of n)t.has(e)||(r[e.sheetId]||(r[e.sheetId]=[]),r[e.sheetId].push(ln(e)));for(const e in r){const t=Pi(r[e],[]);o.push(...t.map((t=>({sheetId:e,zone:t}))))}}for(const o of e){const e=o.zone,s=o.sheetId;for(let o=e.left;o<=e.right;o++)for(let i=e.top;i<=e.bottom;i++)t.delete({sheetId:s,col:o,row:i})}return t}}class V_ extends Uint32Array{columnOffset=0;cols=0;rows=0;static create(e,t){const o=function(e){if(0===e)return-1/0;if(e<0)return NaN;return 32-Math.clz32(--e)}(t),s=new this((e<<o>>5)+1);return s.columnOffset=o,s.cols=t,s.rows=e,s}getValue(e){const[t,o]=this.getCoordinates(e);return this[t]>>o&1}setValue(e,t){const[o,s]=this.getCoordinates(e),i=0===(this[o]>>s&1)&&1===t;return this[o]=this[o]&~(1<<s)|t<<s,i}isEmpty(){return!this.some((e=>0!==e))}fillAllPositions(){this.fill(-1>>>0)}clear(){this.fill(0)}getCoordinates(e){const{row:t,col:o}=e,s=(t<<this.columnOffset)+o,i=s>>5;return[i,s-(i<<5)]}}class U_{sheets={};insertions=[];maxSize=0;constructor(e){for(const t in e){const o=e[t].cols,s=e[t].rows;this.maxSize+=o*s,this.sheets[t]=V_.create(s,o)}}add(e){this.sheets[e.sheetId].setValue(e,1)&&this.insertions.push(e)}addMany(e){for(const t of e)this.add(t)}delete(e){this.sheets[e.sheetId].setValue(e,0)}deleteMany(e){for(const t of e)this.delete(t)}has(e){return 1===this.sheets[e.sheetId].getValue(e)}clear(){const e=[...this];this.insertions=[];for(const e in this.sheets)this.sheets[e].clear();return e}isEmpty(){if(0===this.insertions.length)return!0;for(const e in this.sheets)if(!this.sheets[e].isEmpty())return!1;return!0}fillAllPositions(){this.insertions=new Array(this.maxSize);let e=0;for(const t in this.sheets){const o=this.sheets[t];o.fillAllPositions();for(let s=0;s<o.rows;s++)for(let i=0;i<o.cols;i++)this.insertions[e++]={sheetId:t,row:s,col:i}}}*[Symbol.iterator](){for(const e of this.insertions)1===this.sheets[e.sheetId].getValue(e)&&(yield e)}}class H_{resultsToArrayFormulas=new f_;arrayFormulasToResults=new f_;getFormulaPositionsSpreadingOn(e){return this.resultsToArrayFormulas.get(e)||z_}getArrayResultPositions(e){return this.arrayFormulasToResults.get(e)||z_}removeNode(e){this.resultsToArrayFormulas.delete(e),this.arrayFormulasToResults.delete(e)}addRelation({arrayFormulaPosition:e,resultPosition:t}){this.resultsToArrayFormulas.has(t)||this.resultsToArrayFormulas.set(t,[]),this.resultsToArrayFormulas.get(t)?.push(e),this.arrayFormulasToResults.has(e)||this.arrayFormulasToResults.set(e,[]),this.arrayFormulasToResults.get(e)?.push(t)}hasArrayFormulaResult(e){return this.resultsToArrayFormulas.has(e)}isArrayFormula(e){return this.arrayFormulasToResults.has(e)}}const z_=[],B_=qa(new class extends zo{constructor(e=bo("Circular reference")){super(e,Uo.CircularDependency)}}),$_=qa({value:null});class W_{context;getters;compilationParams;evaluatedCells=new f_;formulaDependencies=Be(new k_(this.createEmptyPositionSet.bind(this)));blockedArrayFormulas=new U_({});spreadingRelations=new H_;constructor(e,t){this.context=e,this.getters=t,this.compilationParams=p_(this.context,this.getters,this.computeAndSave.bind(this))}getEvaluatedCell(e){return this.evaluatedCells.get(e)||$_}getSpreadZone(e,t={ignoreSpillError:!1}){if(!this.spreadingRelations.isArrayFormula(e))return;const o=this.evaluatedCells.get(e);if(o?.type===So.error&&(!t.ignoreSpillError||o?.value!==Uo.SpilledBlocked))return ln(e);const s=Array.from(this.spreadingRelations.getArrayResultPositions(e));return Yi(ln(e),function(e){const t={top:1/0,left:1/0,bottom:-1/0,right:-1/0};for(const{col:o,row:s}of e)t.top=Math.min(t.top,s),t.left=Math.min(t.left,o),t.bottom=Math.max(t.bottom,s),t.right=Math.max(t.right,o);return t}(s))}getEvaluatedPositions(){return this.evaluatedCells.keys()}getEvaluatedPositionsInSheet(e){return this.evaluatedCells.keysForSheet(e)}getArrayFormulaSpreadingOn(e){if(!this.spreadingRelations.hasArrayFormulaResult(e))return this.spreadingRelations.isArrayFormula(e)?e:void 0;const t=this.spreadingRelations.getFormulaPositionsSpreadingOn(e);return Array.from(t).find((e=>!this.blockedArrayFormulas.has(e)))}updateDependencies(e){this.formulaDependencies().removeAllDependencies(e);const t=this.getDirectDependencies(e);this.formulaDependencies().addDependencies(e,t)}addDependencies(e,t){this.formulaDependencies().addDependencies(e,t);for(const e of t){const t=e.sheetId,{left:o,bottom:s,right:i,top:n}=e.zone;for(let e=o;e<=i;e++)for(let o=n;o<=s;o++)this.computeAndSave({sheetId:t,col:e,row:o})}}updateCompilationParameters(){this.compilationParams=p_(this.context,this.getters,this.computeAndSave.bind(this)),this.compilationParams.evalContext.updateDependencies=this.updateDependencies.bind(this),this.compilationParams.evalContext.addDependencies=this.addDependencies.bind(this)}createEmptyPositionSet(){const e={};for(const t of this.getters.getSheetIds())e[t]={rows:this.getters.getNumberRows(t),cols:this.getters.getNumberCols(t)};return new U_(e)}evaluateCells(e){const t=performance.now(),o=this.createEmptyPositionSet();o.addMany(e);const s=this.getArrayFormulasImpactedByChangesOf(e);o.addMany(this.getCellsDependingOn(e)),o.addMany(s),o.addMany(this.getCellsDependingOn(s)),this.evaluate(o),console.debug("evaluate Cells",performance.now()-t,"ms")}getArrayFormulasImpactedByChangesOf(e){const t=this.createEmptyPositionSet();for(const o of e){const e=this.getters.getCell(o)?.content,s=this.getArrayFormulaSpreadingOn(o);void 0!==s&&t.add(s),e||t.add(o)}return t.addMany(this.getArrayFormulasBlockedBy(t)),t}buildDependencyGraph(){this.blockedArrayFormulas=this.createEmptyPositionSet(),this.spreadingRelations=new H_,this.formulaDependencies=Be((()=>{const e=[...this.getAllCells()].flatMap((e=>this.getDirectDependencies(e).filter((e=>!e.invalidSheetName&&!e.invalidXc)).map((t=>({data:e,boundingBox:{zone:t.zone,sheetId:t.sheetId}})))));return new k_(this.createEmptyPositionSet.bind(this),e)}))}evaluateAllCells(){const e=performance.now();this.evaluatedCells=new f_,this.evaluate(this.getAllCells()),console.debug("evaluate all cells",performance.now()-e,"ms")}evaluateFormulaResult(e,t){try{const o=gv(t),s=o.dependencies.map((t=>this.getters.getRangeFromSheetXC(e,t)));this.updateCompilationParameters();const i=Z_({...o,dependencies:s},this.compilationParams,e);return No(i)?i:null===i.value?{value:0,format:i.format}:i}catch(e){return wb(e,"")}}getAllCells(){const e=this.createEmptyPositionSet();return e.fillAllPositions(),e}getArrayFormulasBlockedBy(e){const t=this.createEmptyPositionSet();for(const o of e){if(!this.spreadingRelations.hasArrayFormulaResult(o))continue;const e=this.spreadingRelations.getFormulaPositionsSpreadingOn(o);t.addMany(e);const s=this.getArrayFormulaSpreadingOn(o);s&&t.delete(s)}return t.addMany(this.getCellsDependingOn(t)),t}nextPositionsToUpdate=new U_({});cellsBeingComputed=new Set;evaluate(e){this.cellsBeingComputed=new Set,this.nextPositionsToUpdate=e;let t=0;for(;!this.nextPositionsToUpdate.isEmpty()&&t++<30;){this.updateCompilationParameters();const e=this.nextPositionsToUpdate.clear();for(let t=0;t<e.length;++t)this.evaluatedCells.delete(e[t]);for(let t=0;t<e.length;++t){const o=e[t];if(this.nextPositionsToUpdate.has(o))continue;const s=this.computeCell(o);s!==$_&&this.evaluatedCells.set(o,s)}u_.getAll().forEach((e=>e(this.getters)))}t>=30&&console.warn("Maximum iteration reached while evaluating cells")}computeCell(e){const t=this.evaluatedCells.get(e);if(t)return t;this.blockedArrayFormulas.has(e)||this.invalidateSpreading(e),this.spreadingRelations.isArrayFormula(e)&&this.spreadingRelations.removeNode(e);const o=this.getters.getCell(e);if(void 0===o)return $_;const s=o.id,i={format:o.format,locale:this.getters.getLocale()};try{return this.cellsBeingComputed.has(s)?B_:(this.cellsBeingComputed.add(s),o.isFormula?this.computeFormulaCell(e.sheetId,o):Wa(o,i))}catch(e){return e.value=e?.value||Uo.GenericError,e.message=e?.message||Eb,qa(e)}finally{this.cellsBeingComputed.delete(s)}}computeAndSave(e){const t=this.computeCell(e);return this.evaluatedCells.has(e)||this.evaluatedCells.set(e,t),t}computeFormulaCell(e,t){const o=t.id,s=Z_(t.compiledFormula,this.compilationParams,e,o);if(!No(s))return qa(q_(s),this.getters.getLocale(),t);const i=this.getters.getCellPosition(o);this.assertSheetHasEnoughSpaceToSpreadFormulaResult(i,s);const n=s.length,r=s[0].length;return G_(n,r,this.updateSpreadRelation(i)),this.assertNoMergedCellsInSpreadZone(i,s),G_(n,r,this.checkCollision(i)),G_(n,r,this.spreadValues(i,s)),this.invalidatePositionsDependingOnSpread(i,n,r),qa(q_(s[0][0]),this.getters.getLocale(),t)}invalidatePositionsDependingOnSpread(e,t,o){const s=e.row,i=e.col,n=s+o-1,r={top:s+1,bottom:n,left:i,right:i},a={top:s,bottom:n,left:i+1,right:i+t-1},l=e.sheetId,c=this.formulaDependencies().getCellsDependingOn([{sheetId:l,zone:a},{sheetId:l,zone:r}]);c.delete(e),this.nextPositionsToUpdate.addMany(c)}assertSheetHasEnoughSpaceToSpreadFormulaResult({sheetId:e,col:t,row:o},s){const i=this.getters.getNumberCols(e),n=this.getters.getNumberRows(e),r=t+s.length<=i,a=o+s[0].length<=n;if(!r||!a){if(r)throw new qo(bo("Result couldn't be automatically expanded. Please insert more rows."));if(a)throw new qo(bo("Result couldn't be automatically expanded. Please insert more columns."));throw new qo(bo("Result couldn't be automatically expanded. Please insert more columns and rows."))}}assertNoMergedCellsInSpreadZone({sheetId:e,col:t,row:o},s){if(0!==this.getters.getMergesInZone(e,{top:o,bottom:o+s[0].length-1,left:t,right:t+s.length-1}).length)throw new qo(bo("Merged cells found in the spill zone. Please unmerge cells before using array formulas."))}updateSpreadRelation({sheetId:e,col:t,row:o}){const s={sheetId:e,col:t,row:o};return(i,n)=>{const r={sheetId:e,col:i+t,row:n+o};this.spreadingRelations.addRelation({resultPosition:r,arrayFormulaPosition:s})}}checkCollision(e){const{sheetId:t,col:o,row:s}=e;return(i,n)=>{const r={sheetId:t,col:i+o,row:n+s},a=this.getters.getCell(r);if(a?.content||this.getters.getEvaluatedCell(r).type!==So.empty)throw this.blockedArrayFormulas.add(e),new qo(bo("Array result was not expanded because it would overwrite data in %s.",_t(r.col,r.row)));this.blockedArrayFormulas.delete(e)}}spreadValues({sheetId:e,col:t,row:o},s){return(i,n)=>{const r={sheetId:e,col:i+t,row:n+o},a=this.getters.getCell(r),l=qa(q_(s[i][n]),this.getters.getLocale(),a);this.evaluatedCells.set(r,l)}}invalidateSpreading(e){if(!this.spreadingRelations.isArrayFormula(e))return;const t=this.createEmptyPositionSet();for(const o of this.spreadingRelations.getArrayResultPositions(e)){const e=this.getters.getCell(o)?.content;e||(t.add(o),this.evaluatedCells.delete(o))}this.nextPositionsToUpdate.addMany(this.getCellsDependingOn(t)),this.nextPositionsToUpdate.addMany(this.getArrayFormulasBlockedBy(t)),[...t].forEach((e=>this.spreadingRelations.removeNode(e))),this.spreadingRelations.removeNode(e)}getDirectDependencies(e){const t=this.getters.getCell(e);return t?.isFormula?t.compiledFormula.dependencies:[]}getCellsDependingOn(e){const t=[],o=function(e){const t={};for(const o of e)t[o.sheetId]??=[],t[o.sheetId].push(ln(o));for(const e in t)t[e]=Pi(t[e]);return t}(e);for(const e in o)t.push(...o[e].map((t=>({sheetId:e,zone:t}))));return this.formulaDependencies().getCellsDependingOn(t)}}function G_(e,t,o){for(let s=0;s<e;++s)for(let e=0;e<t;++e)0===s&&0===e||o(s,e)}function q_(e){return null===e.value||void 0===e.value?{...e,value:0}:e}function Z_(e,t,o,s){return t.evalContext.__originCellXC=Be((()=>{if(!s)return;const e=t.evalContext.getters.getCellPosition(s);return _t(e.col,e.row)})),t.evalContext.__originSheetId=o,e.execute(e.dependencies,t.referenceDenormalizer,t.ensureRange,t.evalContext)}const j_={isValid:!0};const Y_=["ADD_PIVOT","UPDATE_PIVOT"];function X_(e){return Y_.includes(e.type)}class K_{cells;getters;index=0;direction;constructor(e,t,o){this.cells=e,this.getters=t,this.direction=o}next(){const e=this.cells[this.index++%this.cells.length],t=e.rule,{cellData:o,tooltip:s}=Rv.get(t.type).apply(t,e.data,this.getters,this.direction);return{cellData:o,tooltip:s,origin:{col:e.data.col,row:e.data.row}}}}function Q_(e,t){if("SPREADSHEET"!==e.pivot.type)return e;if(e.pivot.dataSet?.sheetId!==t.sheetId)return e;const o=ca(e.pivot.dataSet.zone,t),s=o?{...e.pivot.dataSet,zone:o}:void 0;return{...e,pivot:{...e.pivot,dataSet:s}}}function J_(e,t){return{...e,definition:_y(e.definition,t)}}function eD(e,t){if(e.sheetId!==t.sheetId)return e;if(("FREEZE_COLUMNS"===e.type?"COL":"ROW")!==t.dimension)return e;let o=e.quantity;if("REMOVE_COLUMNS_ROWS"===t.type){const e=[...t.elements].sort(((e,t)=>t-e));for(let t of e)o>t&&o--}if("ADD_COLUMNS_ROWS"===t.type){o=o>("before"===t.position?t.base-1:t.base)?o+t.quantity:o}return o>0?{...e,quantity:o}:void 0}function tD(e,t){if(e.sheetId!==t.sheetId)return e;const o=ca(e.zone,t);if(!o)return;const s=e.newTableRange?ha(e.newTableRange,t):void 0;return{...e,newTableRange:s,zone:o}}function oD(e,t){if(e.sheetId!==t.sheetId||e.dimension!==t.dimension)return e;let o;if("REMOVE_COLUMNS_ROWS"===t.type)o=Cn(t.elements,[e.base])[0];else if("ADD_COLUMNS_ROWS"===t.type){o=yn(We(t.position,t.base),t.quantity,[e.base])[0]}return void 0!==o?{...e,base:o}:void 0}function sD(e,t){if(e.sheetId!==t.sheetId||e.dimension!==t.dimension)return e;const o=we(e.start,e.end+1);let s=[];if("REMOVE_COLUMNS_ROWS"===t.type)s=Cn(t.elements,o);else if("ADD_COLUMNS_ROWS"===t.type){s=yn(We(t.position,t.base),t.quantity,o)}return 0!==s.length?{...e,start:Math.min(...s),end:Math.max(...s)}:void 0}pE.addTransformation("ADD_COLUMNS_ROWS",["ADD_COLUMNS_ROWS"],oD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["ADD_COLUMNS_ROWS"],oD),pE.addTransformation("ADD_COLUMNS_ROWS",["CREATE_CHART","UPDATE_CHART"],J_),pE.addTransformation("REMOVE_COLUMNS_ROWS",["CREATE_CHART","UPDATE_CHART"],J_),pE.addTransformation("DELETE_SHEET",["MOVE_RANGES"],(function(e,t){const o=t.sheetId;if(e.targetSheetId===o||e.sheetId===o)return;return e})),pE.addTransformation("DELETE_FIGURE",["UPDATE_FIGURE","UPDATE_CHART"],(function(e,t){if(e.id===t.id)return;return e})),pE.addTransformation("CREATE_SHEET",["CREATE_SHEET"],(function(e,t){if(e.name===t.name)return{...e,name:e.name?.match(/\d+/)?e.name.replace(/\d+/,(e=>(parseInt(e)+1).toString())):`${e.name}~`,position:e.position+1};return e})),pE.addTransformation("ADD_MERGE",["ADD_MERGE","REMOVE_MERGE"],(function(e,t){if(e.sheetId!==t.sheetId)return e;const o=[];for(const s of e.target)for(const e of t.target)Qi(s,e)||o.push({...s});if(o.length)return{...e,target:o};return})),pE.addTransformation("ADD_COLUMNS_ROWS",["FREEZE_COLUMNS","FREEZE_ROWS"],eD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["FREEZE_COLUMNS","FREEZE_ROWS"],eD),pE.addTransformation("ADD_COLUMNS_ROWS",["UPDATE_TABLE"],tD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["UPDATE_TABLE"],tD),pE.addTransformation("REMOVE_TABLE_STYLE",["CREATE_TABLE","UPDATE_TABLE"],(function(e,t){if(e.config?.styleId!==t.tableStyleId)return e;return{...e,config:{...e.config,styleId:My.styleId}}})),pE.addTransformation("ADD_COLUMNS_ROWS",["GROUP_HEADERS","UNGROUP_HEADERS","FOLD_HEADER_GROUP","UNFOLD_HEADER_GROUP"],sD),pE.addTransformation("REMOVE_COLUMNS_ROWS",["GROUP_HEADERS","UNGROUP_HEADERS","FOLD_HEADER_GROUP","UNFOLD_HEADER_GROUP"],sD),pE.addTransformation("REMOVE_PIVOT",["RENAME_PIVOT","DUPLICATE_PIVOT","INSERT_PIVOT","UPDATE_PIVOT"],(function(e,t){if(e.pivotId===t.pivotId)return;return e})),pE.addTransformation("DELETE_SHEET",["ADD_PIVOT","UPDATE_PIVOT"],(function(e,t){if("SPREADSHEET"!==e.pivot.type)return e;if(e.pivot.dataSet?.sheetId===t.sheetId)return{...e,pivot:{...e.pivot,dataSet:void 0}};return e})),pE.addTransformation("ADD_COLUMNS_ROWS",["ADD_PIVOT","UPDATE_PIVOT"],Q_),pE.addTransformation("REMOVE_COLUMNS_ROWS",["ADD_PIVOT","UPDATE_PIVOT"],Q_);const iD=[{match:function(e){return"sheetId"in e},fn:aD},{match:function(e){return"target"in e&&"sheetId"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;const s=[];for(const o of e.target){const e=ca(o,t);e&&s.push(e)}if(!s.length)return"IGNORE_COMMAND";return{...e,target:s}}},{match:function(e){return"zone"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;const s=ca(e.zone,t);if(s)return{...e,zone:s};return"IGNORE_COMMAND"}},{match:function(e){return"col"in e&&"row"in e&&"sheetId"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;if("ADD_COLUMNS_ROWS"===t.type||"REMOVE_COLUMNS_ROWS"===t.type)return function(e,t){const o="COL"===t.dimension?"col":"row";let s=e[o];if("REMOVE_COLUMNS_ROWS"===t.type){const e=[...t.elements].sort(((e,t)=>t-e));if(e.includes(s))return"IGNORE_COMMAND";for(let t of e)s>=t&&s--}"ADD_COLUMNS_ROWS"===t.type&&(s>t.base||s===t.base&&"before"===t.position)&&(s+=t.quantity);return{...e,[o]:s}}(e,t);if("ADD_MERGE"===t.type)return function(e,t){for(const o of t.target){if(!(e.col===o.left&&e.row===o.top)&&Ji(e.col,e.row,o))return"IGNORE_COMMAND"}return e}(e,t);return"SKIP_TRANSFORMATION"}},{match:function(e){return"dimension"in e&&"sheetId"in e&&"elements"in e},fn:function(e,t){const o=aD(e,t);if("SKIP_TRANSFORMATION"!==o)return"IGNORE_COMMAND"===o?"IGNORE_COMMAND":e;if("ADD_COLUMNS_ROWS"!==t.type&&"REMOVE_COLUMNS_ROWS"!==t.type)return"SKIP_TRANSFORMATION";if(t.dimension!==e.dimension)return e;let s=[];if("REMOVE_COLUMNS_ROWS"===t.type)s=Cn(t.elements,e.elements);else if("ADD_COLUMNS_ROWS"===t.type){s=yn(We(t.position,t.base),t.quantity,e.elements)}if(0===s.length)return"IGNORE_COMMAND";return{...e,elements:s}}},{match:function(e){return"ranges"in e},fn:function(e,t){if(!("sheetId"in t))return e;const o=e.ranges.map((e=>ha(e,t))).filter(Le);if(!o.length)return"IGNORE_COMMAND";return{...e,ranges:o}}}];function nD(e,t){const o=pE.getTransformation(e.type,t.type);return o?o(e,t):function(e,t){for(const{match:o,fn:s}of iD)if(o(e)){const o=s(e,t);if("SKIP_TRANSFORMATION"===o)continue;if("IGNORE_COMMAND"===o)return;e=o}return e}(e,t)}function rD(e,t){let o=[...e];for(const e of t)o=o.map((t=>nD(t,e))).filter(Le);return o}function aD(e,t){if(!("sheetId"in t))return e;const o="DELETE_SHEET"===t.type&&t.sheetId;return e.sheetId===o?"IGNORE_COMMAND":"CREATE_SHEET"===e.type||"CREATE_SHEET"===t.type||e.sheetId!==t.sheetId?e:"SKIP_TRANSFORMATION"}class lD{rootCommand;timestamp;id;clientId;_commands=[];_changes=[];constructor(e,t,o,s,i,n){this.rootCommand=s,this.timestamp=n,this.id=e,this.clientId=t,this._commands=[...o],this._changes=i?[...i]:[]}setChanges(e){this._changes=e}get commands(){return this._commands}get changes(){return this._changes}}class cD extends Error{}class hD extends Cl{revisions;transportService;serverRevisionId;clients={};clientId="local";debouncedMove;pendingMessages=[];waitingAck=!1;waitingUndoRedoAck=!1;isReplayingInitialRevisions=!1;processedRevisions=new Set;uuidGenerator=new Hn;lastLocalOperation;constructor(e,t,o=Q){super(),this.revisions=e,this.transportService=t,this.serverRevisionId=o,this.debouncedMove=He(this._move.bind(this),200)}canApplyOptimisticUpdate(){return!this.waitingUndoRedoAck}save(e,t,o){if(!t.length||!o.length||!this.canApplyOptimisticUpdate())return;const s=new lD(this.uuidGenerator.uuidv4(),this.clientId,t,e,o,Date.now());this.revisions.append(s.id,s),"REQUEST_REDO"!==e.type&&(this.lastLocalOperation=s),this.trigger("new-local-state-update",{id:s.id}),this.sendUpdateMessage({type:"REMOTE_REVISION",version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:s.id,clientId:s.clientId,commands:s.commands})}undo(e){this.waitingUndoRedoAck=!0,this.sendUpdateMessage({type:"REVISION_UNDONE",version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:this.uuidGenerator.uuidv4(),undoneRevisionId:e})}redo(e){this.waitingUndoRedoAck=!0,this.sendUpdateMessage({type:"REVISION_REDONE",version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:this.uuidGenerator.uuidv4(),redoneRevisionId:e})}move(e){this.debouncedMove(e)}join(e){e?(this.clients[e.id]=e,this.clientId=e.id):(this.clients.local={id:"local",name:"local"},this.clientId="local"),this.transportService.onNewMessage(this.clientId,this.onMessageReceived.bind(this))}loadInitialMessages(e){const t=performance.now(),o=e.reduce(((e,t)=>e+("REMOTE_REVISION"===t.type?t.commands.length:1)),0);this.isReplayingInitialRevisions=!0;for(const t of e)this.onMessageReceived(t);this.isReplayingInitialRevisions=!1,console.debug("Replayed",o,"commands in",performance.now()-t,"ms")}async leave(e){e&&1===Object.keys(this.clients).length&&this.processedRevisions.size&&await this.snapshot(e()),delete this.clients[this.clientId],this.transportService.leave(this.clientId),this.transportService.sendMessage({type:"CLIENT_LEFT",clientId:this.clientId,version:1})}async snapshot(e){if(0!==this.pendingMessages.length)return;const t=this.uuidGenerator.uuidv4();await this.transportService.sendMessage({type:"SNAPSHOT",nextRevisionId:t,serverRevisionId:this.serverRevisionId,data:{...e,revisionId:t},version:1})}getClient(){const e=this.clients[this.clientId];if(!e)throw new cD("The client left the session");return e}getConnectedClients(){return new Set(Object.values(this.clients).filter(Le))}getRevisionId(){return this.serverRevisionId}isFullySynchronized(){return 0===this.pendingMessages.length}getLastLocalNonEmptyRevision(){return this.lastLocalOperation}_move(e){if(!this.clients[this.clientId])return;const t=this.clients[this.clientId]?.position;if(t?.col===e.col&&t.row===e.row&&t.sheetId===e.sheetId)return;const o=t?"CLIENT_MOVED":"CLIENT_JOINED",s=this.getClient();this.clients[this.clientId]={...s,position:e},this.transportService.sendMessage({type:o,version:1,client:{...s,position:e}})}onMessageReceived(e){if(!this.isAlreadyProcessed(e))if(this.isWrongServerRevisionId(e))this.trigger("unexpected-revision-id");else{switch(e.type){case"CLIENT_MOVED":this.onClientMoved(e);break;case"CLIENT_JOINED":this.onClientJoined(e);break;case"CLIENT_LEFT":this.onClientLeft(e);break;case"REVISION_REDONE":this.revisions.redo(e.redoneRevisionId,e.nextRevisionId,e.serverRevisionId),this.trigger("revision-redone",{revisionId:e.redoneRevisionId,commands:this.revisions.get(e.redoneRevisionId).commands});break;case"REVISION_UNDONE":this.revisions.undo(e.undoneRevisionId,e.nextRevisionId,e.serverRevisionId),this.trigger("revision-undone",{revisionId:e.undoneRevisionId,commands:this.revisions.get(e.undoneRevisionId).commands});break;case"REMOTE_REVISION":const{clientId:t,commands:o,timestamp:s}=e,i=new lD(e.nextRevisionId,t,o,void 0,void 0,s);if(i.clientId!==this.clientId){this.revisions.insert(i.id,i,e.serverRevisionId);const t=this.pendingMessages.filter((e=>"REMOTE_REVISION"===e.type)).map((e=>e.commands)).flat();this.trigger("remote-revision-received",{commands:rD(o,t)})}break;case"SNAPSHOT_CREATED":{const t=new lD(e.nextRevisionId,"server",[],void 0,void 0,Date.now());this.revisions.insert(t.id,t,e.serverRevisionId),this.dropPendingHistoryMessages(),this.trigger("snapshot"),this.lastLocalOperation=void 0;break}}this.acknowledge(e),this.trigger("collaborative-event-received")}}onClientMoved(e){e.client.id!==this.clientId&&(this.clients[e.client.id]=e.client)}onClientJoined(e){if(e.client.id!==this.clientId){this.clients[e.client.id]=e.client;const t=this.clients[this.clientId];if(t){const{position:e}=t;e&&this.transportService.sendMessage({type:"CLIENT_MOVED",version:1,client:{...t,position:e}})}}}onClientLeft(e){e.clientId!==this.clientId&&delete this.clients[e.clientId]}sendUpdateMessage(e){this.pendingMessages.push(e),this.waitingAck||(this.waitingAck=!0,this.sendPendingMessage())}sendPendingMessage(){let e=this.pendingMessages[0];if(e){if("REMOTE_REVISION"===e.type){const t=this.revisions.get(e.nextRevisionId);if(0===t.commands.length){this.revisions.drop(t.id);const e=this.pendingMessages.filter((e=>"REMOTE_REVISION"===e.type)).map((e=>e.nextRevisionId));return this.trigger("pending-revisions-dropped",{revisionIds:e}),this.waitingAck=!1,this.waitingUndoRedoAck=!1,void(this.pendingMessages=[])}e={...e,clientId:t.clientId,commands:t.commands}}if(this.isReplayingInitialRevisions)throw new Error(`Trying to send a new revision while replaying initial revision. This can lead to endless dispatches every time the spreadsheet is open.\n ${JSON.stringify(e)}`);this.transportService.sendMessage({...e,serverRevisionId:this.serverRevisionId})}}acknowledge(e){switch("REVISION_UNDONE"!==e.type&&"REVISION_REDONE"!==e.type||(this.waitingUndoRedoAck=!1),e.type){case"REMOTE_REVISION":case"REVISION_REDONE":case"REVISION_UNDONE":case"SNAPSHOT_CREATED":this.waitingAck=!1,this.pendingMessages=this.pendingMessages.filter((t=>t.nextRevisionId!==e.nextRevisionId)),this.serverRevisionId=e.nextRevisionId,this.processedRevisions.add(e.nextRevisionId),this.sendPendingMessage()}}isAlreadyProcessed(e){if("CLIENT_MOVED"===e.type&&e.client.id===this.clientId)return!0;switch(e.type){case"REMOTE_REVISION":case"REVISION_REDONE":case"REVISION_UNDONE":case"SNAPSHOT_CREATED":return this.processedRevisions.has(e.nextRevisionId);default:return!1}}isWrongServerRevisionId(e){switch(e.type){case"REMOTE_REVISION":case"REVISION_REDONE":case"REVISION_UNDONE":case"SNAPSHOT_CREATED":return e.serverRevisionId!==this.serverRevisionId;default:return!1}}dropPendingHistoryMessages(){this.waitingUndoRedoAck=!1,this.pendingMessages=this.pendingMessages.filter((({type:e})=>"REVISION_REDONE"!==e&&"REVISION_UNDONE"!==e))}}const dD=["#ff851b","#0074d9","#7fdbff","#b10dc9","#39cccc","#f012be","#3d9970","#111111","#ff4136","#aaaaaa","#85144b","#001f3f"];const uD=new Set(["HIDE_COLUMNS_ROWS","UNHIDE_COLUMNS_ROWS","UNFOLD_HEADER_GROUP","UNGROUP_HEADERS","FOLD_HEADER_GROUP","FOLD_ALL_HEADER_GROUPS","UNFOLD_ALL_HEADER_GROUPS","FOLD_HEADER_GROUPS_IN_ZONE","UNFOLD_HEADER_GROUPS_IN_ZONE","CREATE_TABLE","UPDATE_TABLE","UPDATE_FILTER","REMOVE_TABLE","RESIZE_TABLE","CREATE_TABLE_STYLE","REMOVE_TABLE_STYLE"]);function gD(e){return uD.has(e.type)}const pD=[mD,function(e,t){return"target"in t&&Array.isArray(t.target)?{...be(t),target:e.getSelectedZones()}:t},function(e,t){if(!("row"in t)||!("col"in t))return t;const{col:o,row:s}=e.getActivePosition();return{...be(t),col:o,row:s}},function(e,t){return"ranges"in t?{...be(t),ranges:e.getSelectedZones().map((t=>e.getRangeDataFromZone(e.getActiveSheetId(),t)))}:t}];function mD(e,t){return"sheetId"in t?{...be(t),sheetId:e.getActiveSheetId()}:t}function fD(e,t){return"zone"in t?{...be(t),zone:e.getSelectedZone()}:t}const bD=new Hn;function vD(e,t){const o=e.getSelectedZone();return{...mD(e,t),elements:"COL"===t.dimension?we(o.left,o.right+1):we(o.top,o.bottom+1)}}function SD(e,t){const o=e.getSelectedZone();return{...be(t),zone:o}}function yD(e,t){const o=be(t),s=e.getSelectedZone(),{top:i,bottom:n,left:r,right:a}=s;return"cols"in o?o.cols=we(r,a+1):"rows"in o&&(o.rows=we(i,n+1)),o}function CD(e,t){const o=e.getSelectedZone();return{...mD(e,t),start:"COL"===t.dimension?o.left:o.top,end:"COL"===t.dimension?o.right:o.bottom}}const wD=new n;wD.add("UPDATE_CELL",ED),wD.add("CLEAR_CELL",ED),wD.add("CLEAR_CELLS",ED),wD.add("DELETE_CONTENT",ED),wD.add("ADD_MERGE",ED),wD.add("REMOVE_MERGE",ED),wD.add("SET_FORMATTING",ED),wD.add("CLEAR_FORMATTING",ED),wD.add("SET_BORDER",ED),wD.add("CREATE_TABLE",ED),wD.add("REMOVE_TABLE",ED),wD.add("HIDE_SHEET",ED),wD.add("ADD_COLUMNS_ROWS",(function(e,t){const o=e.getActivePosition();return{...mD(e,t),base:"COL"===t.dimension?o.col:o.row}})),wD.add("REMOVE_COLUMNS_ROWS",vD),wD.add("HIDE_COLUMNS_ROWS",vD),wD.add("RESIZE_COLUMNS_ROWS",vD),wD.add("CREATE_SHEET",(function(e,t){const o=be(t);o.sheetId=bD.uuidv4();const s=t.name||e.getSheet(e.getActiveSheetId()).name,i=s.match(/(.+?)\d*$/)?.[1]||s;return o.name=e.getNextSheetName(i),o})),wD.add("CREATE_FIGURE",(function(e,t){const o=mD(e,t);return o.figure.id=bD.uuidv4(),o})),wD.add("CREATE_CHART",(function(e,t){return{...mD(e,t),id:bD.uuidv4()}})),wD.add("CREATE_IMAGE",(function(e,t){return{...mD(e,t),figureId:bD.uuidv4()}})),wD.add("GROUP_HEADERS",CD),wD.add("UNGROUP_HEADERS",CD),wD.add("UNGROUP_HEADERS",CD),wD.add("UNFOLD_HEADER_GROUPS_IN_ZONE",fD),wD.add("FOLD_HEADER_GROUPS_IN_ZONE",fD);const xD=new n;function ED(e,t){let o=be(t);for(const t of pD)o=t(e,o);return o}function ID(e,t){if(e.rootCommand&&"object"==typeof e.rootCommand)return To(e.rootCommand)?function(e,t){if(!t)return;if(!wD.contains(t.type))return;return wD.get(t.type)(e,t)}(t,e.rootCommand):function(e,t,o){if(!xD.contains(t.type))return;return xD.get(t.type)(e,t,o)}(t,e.rootCommand,e.commands)}xD.add("PASTE",(function(e,t){return{type:"REPEAT_PASTE",pasteOption:be(t.pasteOption),target:e.getSelectedZones()}})),xD.add("INSERT_CELL",SD),xD.add("DELETE_CELL",SD),xD.add("AUTORESIZE_COLUMNS",yD),xD.add("AUTORESIZE_ROWS",yD),xD.add("SORT_CELLS",(function(e,t){const o=e.getSelectedZone();return{...mD(e,t),col:o.left,row:o.top,zone:o}})),xD.add("SUM_SELECTION",ED),xD.add("SET_DECIMAL",ED);class RD{getters;sheetId;boundaries;top;bottom;left;right;offsetX;offsetY;offsetScrollbarX;offsetScrollbarY;canScrollVertically;canScrollHorizontally;viewportWidth;viewportHeight;offsetCorrectionX;offsetCorrectionY;constructor(e,t,o,s,i,n){this.getters=e,this.sheetId=t,this.boundaries=o,this.viewportWidth=s.width,this.viewportHeight=s.height,this.offsetScrollbarX=n.x,this.offsetScrollbarY=n.y,this.canScrollVertically=i.canScrollVertically,this.canScrollHorizontally=i.canScrollHorizontally,this.offsetCorrectionX=this.getters.getColDimensions(this.sheetId,this.boundaries.left).start,this.offsetCorrectionY=this.getters.getRowDimensions(this.sheetId,this.boundaries.top).start,this.adjustViewportOffsetX(),this.adjustViewportOffsetY()}getMaxSize(){const e=this.getters.findLastVisibleColRowIndex(this.sheetId,"COL",{first:this.boundaries.left,last:this.boundaries.right}),t=this.getters.findLastVisibleColRowIndex(this.sheetId,"ROW",{first:this.boundaries.top,last:this.boundaries.bottom}),{end:o,size:s}=this.getters.getColDimensions(this.sheetId,e),{end:i,size:n}=this.getters.getRowDimensions(this.sheetId,t),r=this.searchHeaderIndex("COL",o-this.viewportWidth,0),a=this.getters.getColSize(this.sheetId,r),l=this.searchHeaderIndex("ROW",i-this.viewportHeight,0),c=this.getters.getRowSize(this.sheetId,l);let h=o-this.offsetCorrectionX;this.canScrollHorizontally&&(h+=Math.max(N,Math.min(a,this.viewportWidth-s)),h=Math.max(h,this.viewportWidth));let d=i-this.offsetCorrectionY;return this.canScrollVertically&&(d+=Math.max(L+5,Math.min(c,this.viewportHeight-n)),d=Math.max(d,this.viewportHeight)),i+B>d&&!this.getters.isReadonly()&&(d+=B),{width:h,height:d}}getColIndex(e){return e<this.offsetCorrectionX||e>this.offsetCorrectionX+this.viewportWidth?-1:this.searchHeaderIndex("COL",e-this.offsetCorrectionX,this.left)}getRowIndex(e){return e<this.offsetCorrectionY||e>this.offsetCorrectionY+this.viewportHeight?-1:this.searchHeaderIndex("ROW",e-this.offsetCorrectionY,this.top)}adjustPosition(e){const t=this.sheetId,o=this.getters.getMainCellPosition({sheetId:t,...e}),{col:s,row:i}=this.getters.getNextVisibleCellPosition(o);Ji(s,this.boundaries.top,this.boundaries)&&this.adjustPositionX(s),Ji(this.boundaries.left,i,this.boundaries)&&this.adjustPositionY(i)}adjustPositionX(e){const t=this.sheetId,{end:o}=this.getters.getColDimensions(t,e);if(this.offsetX+this.offsetCorrectionX+this.viewportWidth<o){const o=this.getters.getNumberCols(t);let s=e;for(;this.getters.isColHidden(t,s)&&s<o;)s++;const i=this.getters.getColDimensions(t,s).end,n=this.searchHeaderIndex("COL",i-this.viewportWidth-this.offsetCorrectionX,this.boundaries.left);this.offsetScrollbarX=this.getters.getColDimensions(t,n).end-this.offsetCorrectionX}else if(this.left>e){let o=e;for(;this.getters.isColHidden(t,o)&&o>0;)o--;this.offsetScrollbarX=this.getters.getColDimensions(t,o).start-this.offsetCorrectionX}this.adjustViewportZoneX()}adjustPositionY(e){const t=this.sheetId,{end:o}=this.getters.getRowDimensions(t,e);if(this.offsetY+this.viewportHeight+this.offsetCorrectionY<o){const o=this.getters.getNumberRows(t);let s=e;for(;this.getters.isRowHidden(t,s)&&s<o;)s++;const i=this.getters.getRowDimensions(t,s).end,n=this.searchHeaderIndex("ROW",i-this.viewportHeight-this.offsetCorrectionY,this.boundaries.top);this.offsetScrollbarY=this.getters.getRowDimensions(t,n).end-this.offsetCorrectionY}else if(this.top>e){let o=e;for(;this.getters.isRowHidden(t,o)&&o>0;)o--;this.offsetScrollbarY=this.getters.getRowDimensions(t,o).start-this.offsetCorrectionY}this.adjustViewportZoneY()}willNewOffsetScrollViewport(e,t){return this.canScrollHorizontally&&this.offsetScrollbarX!==e||this.canScrollVertically&&this.offsetScrollbarY!==t}setViewportOffset(e,t){this.setViewportOffsetX(e),this.setViewportOffsetY(t)}adjustViewportZone(){this.adjustViewportZoneX(),this.adjustViewportZoneY()}getRect(e){const t=Xi(e,this);if(t){return{x:this.getters.getColRowOffset("COL",this.left,t.left)+this.offsetCorrectionX,y:this.getters.getColRowOffset("ROW",this.top,t.top)+this.offsetCorrectionY,width:Math.min(this.getters.getColRowOffset("COL",t.left,t.right+1),this.viewportWidth),height:Math.min(this.getters.getColRowOffset("ROW",t.top,t.bottom+1),this.viewportHeight)}}}isVisible(e,t){return t<=this.bottom&&t>=this.top&&e>=this.left&&e<=this.right&&!this.getters.isColHidden(this.sheetId,e)&&!this.getters.isRowHidden(this.sheetId,t)}searchHeaderIndex(e,t,o=0){const s=this.sheetId,i=this.getters.getNumberHeaders(s,e);let n=o,r=i;for(;n<=r&&n!==i&&-1!==r;){const i=Math.floor((n+r)/2),a=this.getters.getColRowOffset(e,o,i),l=this.getters.getHeaderSize(s,e,i);if(t>=a&&t<a+l)return i;t>=a+l?n=i+1:r=i-1}return-1}setViewportOffsetX(e){this.canScrollHorizontally&&(this.offsetScrollbarX=e,this.adjustViewportZoneX())}setViewportOffsetY(e){this.canScrollVertically&&(this.offsetScrollbarY=e,this.adjustViewportZoneY())}adjustViewportOffsetX(){if(this.canScrollHorizontally){const{width:e}=this.getMaxSize();this.viewportWidth+this.offsetScrollbarX>e&&(this.offsetScrollbarX=Math.max(0,e-this.viewportWidth))}this.adjustViewportZoneX()}adjustViewportOffsetY(){if(this.canScrollVertically){const{height:e}=this.getMaxSize();this.viewportHeight+this.offsetScrollbarY>e&&(this.offsetScrollbarY=Math.max(0,e-this.viewportHeight))}this.adjustViewportZoneY()}adjustViewportZoneX(){const e=this.sheetId;this.left=this.searchHeaderIndex("COL",this.offsetScrollbarX,this.boundaries.left),this.right=Math.min(this.boundaries.right,this.searchHeaderIndex("COL",this.viewportWidth,this.left)),-1===this.left&&(this.left=this.boundaries.left),-1===this.right&&(this.right=this.getters.getNumberCols(e)-1),this.offsetX=this.getters.getColDimensions(e,this.left).start-this.getters.getColDimensions(e,this.boundaries.left).start}adjustViewportZoneY(){const e=this.sheetId;this.top=this.searchHeaderIndex("ROW",this.offsetScrollbarY,this.boundaries.top),this.bottom=Math.min(this.boundaries.bottom,this.searchHeaderIndex("ROW",this.viewportHeight,this.top)),-1===this.top&&(this.top=this.boundaries.top),-1===this.bottom&&(this.bottom=this.getters.getNumberRows(e)-1),this.offsetY=this.getters.getRowDimensions(e,this.top).start-this.getters.getRowDimensions(e,this.boundaries.top).start}}const TD=(new n).add("settings",class extends s_{static getters=["getLocale"];locale=Mo;allowDispatch(e){return"UPDATE_LOCALE"===e.type?ar(e.locale)?"Success":"InvalidLocale":"Success"}handle(e){if("UPDATE_LOCALE"===e.type){const t=this.locale,o=e.locale;this.history.update("locale",o),this.changeCellsDateFormatWithLocale(t,o)}}getLocale(){return this.locale}changeCellsDateFormatWithLocale(e,t){for(const o of this.getters.getSheetIds())for(const[s,i]of Object.entries(this.getters.getCells(o))){let o;if(i.format===e.dateFormat&&(o=t.dateFormat),i.format===e.timeFormat&&(o=t.timeFormat),i.format===yr(e)&&(o=yr(t)),o){const{col:e,row:t,sheetId:i}=this.getters.getCellPosition(s);this.dispatch("UPDATE_CELL",{col:e,row:t,sheetId:i,format:o})}}}import(e){this.locale=e.settings?.locale??Mo}export(e){e.settings={locale:this.locale}}}).add("sheet",class extends s_{static getters=["getSheetName","tryGetSheetName","getSheet","tryGetSheet","getSheetIdByName","getSheetIds","getVisibleSheetIds","isSheetVisible","doesHeaderExist","doesHeadersExist","getCell","getCellPosition","getColsZone","getRowCells","getRowsZone","getNumberCols","getNumberRows","getNumberHeaders","getGridLinesVisibility","getNextSheetName","getSheetSize","getSheetZone","getPaneDivisions","checkZonesExistInSheet","getCommandZones","getUnboundedZone","checkElementsIncludeAllNonFrozenHeaders"];sheetIdsMapName={};orderedSheetIds=[];sheets={};cellPosition={};allowDispatch(e){const t=this.chainValidations(this.checkSheetExists,this.checkZonesAreInSheet)(e);if("Success"!==t)return t;switch(e.type){case"HIDE_SHEET":return 1===this.getVisibleSheetIds().length?"NotEnoughSheets":"Success";case"CREATE_SHEET":return this.checkValidations(e,this.checkSheetName,this.checkSheetPosition);case"MOVE_SHEET":try{const t=this.orderedSheetIds.findIndex((t=>t===e.sheetId));return this.findIndexOfTargetSheet(t,e.delta),"Success"}catch(e){return"WrongSheetMove"}case"RENAME_SHEET":return this.isRenameAllowed(e);case"DELETE_SHEET":return this.orderedSheetIds.length>1?"Success":"NotEnoughSheets";case"ADD_COLUMNS_ROWS":return this.doesHeaderExist(e.sheetId,e.dimension,e.base)?e.quantity<=0?"InvalidQuantity":"Success":"InvalidHeaderIndex";case"REMOVE_COLUMNS_ROWS":{const t=nt(e.elements),o=it(e.elements);return t<0||!this.doesHeaderExist(e.sheetId,e.dimension,o)?"InvalidHeaderIndex":this.checkElementsIncludeAllNonFrozenHeaders(e.sheetId,e.dimension,e.elements)?"NotEnoughElements":"Success"}case"FREEZE_ROWS":return this.checkValidations(e,this.checkRowFreezeQuantity,this.checkRowFreezeOverlapMerge);case"FREEZE_COLUMNS":return this.checkValidations(e,this.checkColFreezeQuantity,this.checkColFreezeOverlapMerge);default:return"Success"}}handle(e){switch(e.type){case"SET_GRID_LINES_VISIBILITY":this.setGridLinesVisibility(e.sheetId,e.areGridLinesVisible);break;case"CREATE_SHEET":const t=this.createSheet(e.sheetId,e.name||this.getNextSheetName(),e.cols||26,e.rows||100,e.position);this.history.update("sheetIdsMapName",t.name,t.id);break;case"MOVE_SHEET":this.moveSheet(e.sheetId,e.delta);break;case"RENAME_SHEET":this.renameSheet(this.sheets[e.sheetId],e.name);break;case"HIDE_SHEET":this.hideSheet(e.sheetId);break;case"SHOW_SHEET":this.showSheet(e.sheetId);break;case"DUPLICATE_SHEET":this.duplicateSheet(e.sheetId,e.sheetIdTo);break;case"DELETE_SHEET":this.deleteSheet(this.sheets[e.sheetId]);break;case"REMOVE_COLUMNS_ROWS":"COL"===e.dimension?this.removeColumns(this.sheets[e.sheetId],[...e.elements]):this.removeRows(this.sheets[e.sheetId],[...e.elements]);break;case"ADD_COLUMNS_ROWS":"COL"===e.dimension?this.addColumns(this.sheets[e.sheetId],e.base,e.position,e.quantity):this.addRows(this.sheets[e.sheetId],e.base,e.position,e.quantity);break;case"UPDATE_CELL_POSITION":this.updateCellPosition(e);break;case"FREEZE_COLUMNS":this.setPaneDivisions(e.sheetId,e.quantity,"COL");break;case"FREEZE_ROWS":this.setPaneDivisions(e.sheetId,e.quantity,"ROW");break;case"UNFREEZE_ROWS":this.setPaneDivisions(e.sheetId,0,"ROW");break;case"UNFREEZE_COLUMNS":this.setPaneDivisions(e.sheetId,0,"COL");break;case"UNFREEZE_COLUMNS_ROWS":this.setPaneDivisions(e.sheetId,0,"COL"),this.setPaneDivisions(e.sheetId,0,"ROW")}}import(e){for(let t of e.sheets)this.sheetIdsMapName[t.name]=t.id;for(let t of e.sheets){const e=t.name||bo("Sheet")+(Object.keys(this.sheets).length+1),{colNumber:o,rowNumber:s}=this.getImportedSheetSize(t),i={id:t.id,name:e,numberOfCols:o,rows:Sn(s),areGridLinesVisible:void 0===t.areGridLinesVisible||t.areGridLinesVisible,isVisible:t.isVisible,panes:{xSplit:t.panes?.xSplit||0,ySplit:t.panes?.ySplit||0}};this.orderedSheetIds.push(i.id),this.sheets[i.id]=i}}exportSheets(e){e.sheets=this.orderedSheetIds.filter(Le).map((e=>{const t=this.sheets[e],o={id:t.id,name:t.name,colNumber:t.numberOfCols,rowNumber:this.getters.getNumberRows(t.id),rows:{},cols:{},merges:[],cells:{},conditionalFormats:[],figures:[],tables:[],areGridLinesVisible:void 0===t.areGridLinesVisible||t.areGridLinesVisible,isVisible:t.isVisible};return(t.panes.xSplit||t.panes.ySplit)&&(o.panes=t.panes),o}))}export(e){this.exportSheets(e)}exportForExcel(e){this.exportSheets(e)}getGridLinesVisibility(e){return this.getSheet(e).areGridLinesVisible}tryGetSheet(e){return this.sheets[e]}getSheet(e){const t=this.sheets[e];if(!t)throw new Error(`Sheet ${e} not found.`);return t}isSheetVisible(e){return this.getSheet(e).isVisible}getSheetName(e){return this.getSheet(e).name}tryGetSheetName(e){return this.tryGetSheet(e)?.name}getSheetIdByName(e){if(e){const t=ve(e);for(const e in this.sheetIdsMapName)if(e.toUpperCase()===t.toUpperCase())return this.sheetIdsMapName[e]}}getSheetIds(){return this.orderedSheetIds}getVisibleSheetIds(){return this.orderedSheetIds.filter(this.isSheetVisible.bind(this))}doesHeaderExist(e,t,o){return"COL"===t?o>=0&&o<this.getNumberCols(e):o>=0&&o<this.getNumberRows(e)}doesHeadersExist(e,t,o){return o.every((o=>this.doesHeaderExist(e,t,o)))}getCell({sheetId:e,col:t,row:o}){const s=this.tryGetSheet(e),i=s?.rows[o]?.cells[t];if(void 0!==i)return this.getters.getCellById(i)}getColsZone(e,t,o){return{top:0,bottom:this.getNumberRows(e)-1,left:t,right:o}}getRowCells(e,t){return Object.values(this.getSheet(e).rows[t]?.cells).filter(Le)}getRowsZone(e,t,o){return{top:t,bottom:o,left:0,right:this.getSheet(e).numberOfCols-1}}getCellPosition(e){const t=this.cellPosition[e];if(!t)throw new Error(`asking for a cell position that doesn't exist, cell id: ${e}`);return t}getNumberCols(e){return this.getSheet(e).numberOfCols}getNumberRows(e){return this.getSheet(e).rows.length}getNumberHeaders(e,t){return"COL"===t?this.getNumberCols(e):this.getNumberRows(e)}getNextSheetName(e="Sheet"){let t=1;const o=this.orderedSheetIds.map(this.getSheetName.bind(this));let s=`${e}${t}`;for(;o.includes(s);)s=`${e}${t}`,t++;return s}getSheetSize(e){return{numberOfRows:this.getNumberRows(e),numberOfCols:this.getNumberCols(e)}}getSheetZone(e){return{top:0,left:0,bottom:this.getNumberRows(e)-1,right:this.getNumberCols(e)-1}}getUnboundedZone(e,t){const o=0===t.left&&t.right===this.getNumberCols(e)-1,s=0===t.top&&t.bottom===this.getNumberRows(e)-1;return{...t,bottom:s?void 0:t.bottom,right:o&&!s?void 0:t.right}}getPaneDivisions(e){return this.getSheet(e).panes}setPaneDivisions(e,t,o){const s={...this.getPaneDivisions(e)};"COL"===o?s.xSplit=t:"ROW"===o&&(s.ySplit=t),this.history.update("sheets",e,"panes",s)}checkElementsIncludeAllNonFrozenHeaders(e,t,o){const s=this.getters.getPaneDivisions(e),i="ROW"===t?s.ySplit:s.xSplit,n=this.getters.getNumberHeaders(e,t);if(!i)return!1;return Ze(o,we(i,n))}getCommandZones(e){const t=[];return"zone"in e&&t.push(e.zone),"target"in e&&t.push(...e.target),"ranges"in e&&t.push(...e.ranges.map((e=>this.getters.getRangeFromRangeData(e).zone))),"col"in e&&"row"in e&&t.push({top:e.row,left:e.col,bottom:e.row,right:e.col}),t}checkZonesExistInSheet(e,t){if(!t.every(Bi))return"InvalidRange";if(t.length){const o=this.getSheetZone(e);return t.every((e=>en(e,o)))?"Success":"TargetOutOfSheet"}return"Success"}updateCellPosition(e){const{sheetId:t,cellId:o,col:s,row:i}=e;o?this.setNewPosition(o,t,s,i):this.clearPosition(t,s,i)}setNewPosition(e,t,o,s){const i=this.cellPosition[e];i&&this.clearPosition(t,i.col,i.row),this.history.update("cellPosition",e,{row:s,col:o,sheetId:t}),this.history.update("sheets",t,"rows",s,"cells",o,e)}clearPosition(e,t,o){const s=this.sheets[e]?.rows[o].cells[t];s&&(this.history.update("cellPosition",s,void 0),this.history.update("sheets",e,"rows",o,"cells",t,void 0))}setGridLinesVisibility(e,t){this.history.update("sheets",e,"areGridLinesVisible",t)}createSheet(e,t,o,s,i){const n={id:e,name:t,numberOfCols:o,rows:Sn(s),areGridLinesVisible:!0,isVisible:!0,panes:{xSplit:0,ySplit:0}},r=this.orderedSheetIds.slice();r.splice(i,0,n.id);const a=this.sheets;return this.history.update("orderedSheetIds",r),this.history.update("sheets",Object.assign({},a,{[n.id]:n})),n}moveSheet(e,t){const o=this.orderedSheetIds.slice(),s=o.findIndex((t=>t===e)),i=o.splice(s,1);let n=this.findIndexOfTargetSheet(s,t);o.splice(n,0,i[0]),this.history.update("orderedSheetIds",o)}findIndexOfTargetSheet(e,t){for(;0!=t&&0<=e&&e<=this.orderedSheetIds.length;)t>0?(e++,this.isSheetVisible(this.orderedSheetIds[e])&&t--):t<0&&(e--,this.isSheetVisible(this.orderedSheetIds[e])&&t++);if(0===t)return e;throw new Error(bo("There is not enough visible sheets"))}checkSheetName(e){const t=this.getters.tryGetSheetName(e.sheetId);if(void 0!==t&&e.name===t)return"UnchangedSheetName";const{orderedSheetIds:o,sheets:s}=this,i=e.name&&e.name.trim().toLowerCase();return o.find((t=>s[t]?.name.toLowerCase()===i&&t!==e.sheetId))?"DuplicatedSheetName":ae.test(i)?"ForbiddenCharactersInSheetName":"Success"}checkSheetPosition(e){const{orderedSheetIds:t}=this;return e.position>t.length||e.position<0?"WrongSheetPosition":"Success"}checkRowFreezeQuantity(e){return e.quantity>=1&&e.quantity<this.getNumberRows(e.sheetId)?"Success":"InvalidFreezeQuantity"}checkColFreezeQuantity(e){return e.quantity>=1&&e.quantity<this.getNumberCols(e.sheetId)?"Success":"InvalidFreezeQuantity"}checkRowFreezeOverlapMerge(e){const t=this.getters.getMerges(e.sheetId);for(let o of t)if(o.top<e.quantity&&e.quantity<=o.bottom)return"MergeOverlap";return"Success"}checkColFreezeOverlapMerge(e){const t=this.getters.getMerges(e.sheetId);for(let o of t)if(o.left<e.quantity&&e.quantity<=o.right)return"MergeOverlap";return"Success"}isRenameAllowed(e){return e.name&&e.name.trim().toLowerCase()?this.checkSheetName(e):"MissingSheetName"}renameSheet(e,t){const o=e.name;this.history.update("sheets",e.id,"name",t.trim());const s=Object.assign({},this.sheetIdsMapName);delete s[o],s[t]=e.id,this.history.update("sheetIdsMapName",s)}hideSheet(e){this.history.update("sheets",e,"isVisible",!1)}showSheet(e){this.history.update("sheets",e,"isVisible",!0)}duplicateSheet(e,t){const o=this.getSheet(e),s=this.getDuplicateSheetName(o.name),i=be(o);i.id=t,i.name=s;for(let e=0;e<=i.numberOfCols;e++)for(let t=0;t<=i.rows.length;t++)i.rows[t]&&(i.rows[t].cells[e]=void 0);const n=this.orderedSheetIds.slice(),r=n.indexOf(e);n.splice(r+1,0,i.id),this.history.update("orderedSheetIds",n),this.history.update("sheets",Object.assign({},this.sheets,{[i.id]:i}));for(const t of Object.values(this.getters.getCells(e))){const{col:e,row:o}=this.getCellPosition(t.id);this.dispatch("UPDATE_CELL",{sheetId:i.id,col:e,row:o,content:t.content,format:t.format,style:t.style})}const a=Object.assign({},this.sheetIdsMapName);a[i.name]=i.id,this.history.update("sheetIdsMapName",a)}getDuplicateSheetName(e){let t=1;const o=this.orderedSheetIds.map(this.getSheetName.bind(this)),s=bo("Copy of %s",e);let i=s.toString();for(;o.includes(i);)i=`${s} (${t})`,t++;return i}deleteSheet(e){const t=e.name,o=Object.assign({},this.sheets);delete o[e.id],this.history.update("sheets",o);const s=this.orderedSheetIds.slice(),i=s.indexOf(e.id);s.splice(i,1),this.history.update("orderedSheetIds",s);const n=Object.assign({},this.sheetIdsMapName);delete n[t],this.history.update("sheetIdsMapName",n)}removeColumns(e,t){t.sort(((e,t)=>t-e));for(let o of t)this.moveCellOnColumnsDeletion(e,o);const o=this.sheets[e.id].numberOfCols;this.history.update("sheets",e.id,"numberOfCols",o-t.length);const s=t.filter((t=>t<e.panes.xSplit)).length;s&&this.setPaneDivisions(e.id,e.panes.xSplit-s,"COL")}removeRows(e,t){t.sort(((e,t)=>t-e));for(let o of xe(t)){const t=o[o.length-1],s=o[0];this.moveCellOnRowsDeletion(e,t,s),this.updateRowsStructureOnDeletion(e,t,s)}const o=t.filter((t=>t<e.panes.ySplit)).length;o&&this.setPaneDivisions(e.id,e.panes.ySplit-o,"ROW")}addColumns(e,t,o,s){const i="before"===o?t:t+1;this.moveCellsOnAddition(e,i,s,"columns");const n=this.sheets[e.id].numberOfCols;this.history.update("sheets",e.id,"numberOfCols",n+s),i<e.panes.xSplit&&this.setPaneDivisions(e.id,e.panes.xSplit+s,"COL")}addRows(e,t,o,s){const i="before"===o?t:t+1;this.addEmptyRows(e,s),this.moveCellsOnAddition(e,i,s,"rows"),i<e.panes.ySplit&&this.setPaneDivisions(e.id,e.panes.ySplit+s,"ROW")}moveCellOnColumnsDeletion(e,t){this.dispatch("CLEAR_CELLS",{sheetId:e.id,target:[{left:t,top:0,right:t,bottom:e.rows.length-1}]});for(let o=0;o<e.rows.length;o++){const s=e.rows[o];for(let i in s.cells){const n=Number(i),r=s.cells[i];r&&n>t&&this.setNewPosition(r,e.id,n-1,o)}}}moveCellsOnAddition(e,t,o,s){const i=[];for(let n=0;n<e.rows.length;n++){const r=e.rows[n];if("rows"!==s||n>=t)for(let a in r.cells){const l=Number(a),c=r.cells[a];c&&("rows"===s||l>=t)&&i.push({sheetId:e.id,cellId:c,col:l+("columns"===s?o:0),row:n+("rows"===s?o:0),type:"UPDATE_CELL_POSITION"})}}for(let e of i.reverse())this.updateCellPosition(e)}moveCellOnRowsDeletion(e,t,o){this.dispatch("CLEAR_CELLS",{sheetId:e.id,target:[{left:0,top:t,right:this.getters.getNumberCols(e.id),bottom:o}]});const s=o-t+1;for(let t=0;t<e.rows.length;t++){const i=e.rows[t];if(t>o)for(let o in i.cells){const n=Number(o),r=i.cells[o];r&&this.setNewPosition(r,e.id,n,t-s)}}}updateRowsStructureOnDeletion(e,t,o){const s=[],i=e.rows.map((e=>e.cells)).reverse();for(let n in e.rows){const e=Number(n);e>=t&&e<=o||s.push({cells:i.pop()})}this.history.update("sheets",e.id,"rows",s)}addEmptyRows(e,t){const o=e.rows.slice();for(let e=0;e<t;e++)o.push({cells:{}});this.history.update("sheets",e.id,"rows",o)}getImportedSheetSize(e){const t=Object.keys(e.cells).map(Ot);let o=e.rowNumber,s=e.colNumber;for(let{col:e,row:i}of t)o=Math.max(o,i+1),s=Math.max(s,e+1);return{rowNumber:o,colNumber:s}}checkSheetExists(e){return"CREATE_SHEET"!==e.type&&"sheetId"in e&&void 0===this.sheets[e.sheetId]?"InvalidSheetId":"CREATE_SHEET"===e.type&&void 0!==this.sheets[e.sheetId]?"DuplicatedSheetId":"Success"}checkZonesAreInSheet(e){return"sheetId"in e?this.checkZonesExistInSheet(e.sheetId,this.getCommandZones(e)):"Success"}}).add("header grouping",class extends s_{static getters=["getHeaderGroups","getGroupsLayers","getVisibleGroupLayers","getHeaderGroup","getHeaderGroupsInZone","isGroupFolded","isRowFolded","isColFolded"];groups={};allowDispatch(e){switch(e.type){case"GROUP_HEADERS":{const{start:t,end:o}=e;if(!this.getters.doesHeadersExist(e.sheetId,e.dimension,[t,o]))return"InvalidHeaderGroupStartEnd";if(t>o)return"InvalidHeaderGroupStartEnd";if(this.findGroupWithStartEnd(e.sheetId,e.dimension,t,o))return"HeaderGroupAlreadyExists";break}case"UNGROUP_HEADERS":{const{start:t,end:o}=e;if(!this.getters.doesHeadersExist(e.sheetId,e.dimension,[t,o]))return"InvalidHeaderGroupStartEnd";if(t>o)return"InvalidHeaderGroupStartEnd";break}case"UNFOLD_HEADER_GROUP":case"FOLD_HEADER_GROUP":const t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);if(!t)return"UnknownHeaderGroup";if(we(0,this.getters.getNumberHeaders(e.sheetId,e.dimension)).every((o=>o>=t.start&&o<=t.end||this.getters.isHeaderHiddenByUser(e.sheetId,e.dimension,o))))return"NotEnoughElements"}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("groups",e.sheetId,{ROW:[],COL:[]});break;case"GROUP_HEADERS":this.groupHeaders(e.sheetId,e.dimension,e.start,e.end);break;case"UNGROUP_HEADERS":this.unGroupHeaders(e.sheetId,e.dimension,e.start,e.end);break;case"DUPLICATE_SHEET":{const t=be(this.groups[e.sheetId]);this.history.update("groups",e.sheetIdTo,t);break}case"DELETE_SHEET":{const t={...this.groups};delete t[e.sheetId],this.history.update("groups",t);break}case"ADD_COLUMNS_ROWS":const t=We(e.position,e.base);this.moveGroupsOnHeaderInsertion(e.sheetId,e.dimension,t,e.quantity);break;case"REMOVE_COLUMNS_ROWS":this.moveGroupsOnHeaderDeletion(e.sheetId,e.dimension,e.elements);break;case"UNFOLD_HEADER_GROUP":{const t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);t&&this.unfoldHeaderGroup(e.sheetId,e.dimension,t);break}case"FOLD_HEADER_GROUP":{const t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);t&&this.foldHeaderGroup(e.sheetId,e.dimension,t);break}case"UNFOLD_ALL_HEADER_GROUPS":{const t=this.getters.getHeaderGroups(e.sheetId,e.dimension);for(const o of t)this.unfoldHeaderGroup(e.sheetId,e.dimension,o);break}case"FOLD_ALL_HEADER_GROUPS":{const t=this.getters.getHeaderGroups(e.sheetId,e.dimension);for(const o of t)this.foldHeaderGroup(e.sheetId,e.dimension,o);break}case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":{const t="UNFOLD_HEADER_GROUPS_IN_ZONE"===e.type?"unfold":"fold",o=this.getGroupsLayers(e.sheetId,e.dimension);"fold"===t&&o.reverse();const s=o.flat(),i="ROW"===e.dimension?e.zone.top:e.zone.left,n="ROW"===e.dimension?e.zone.bottom:e.zone.right,r=new Set;for(let e=i;e<=n;e++){const o=s.filter((t=>t.start-1<=e&&e<=t.end));for(const e of o)if(!("fold"===t&&e.isFolded||"unfold"===t&&!e.isFolded)){r.add(e);break}}for(const o of r)"unfold"===t?this.unfoldHeaderGroup(e.sheetId,e.dimension,o):this.foldHeaderGroup(e.sheetId,e.dimension,o);break}}}getHeaderGroups(e,t){return this.groups[e][t]}getHeaderGroup(e,t,o,s){return this.getHeaderGroups(e,t).find((e=>e.start===o&&e.end===s))}getHeaderGroupsInZone(e,t,o){return this.getHeaderGroups(e,t).filter((e=>{const s="ROW"===t?o.top:o.left,i="ROW"===t?o.bottom:o.right;return this.doGroupOverlap(e,s,i)}))}getGroupsLayers(e,t){const o=this.getHeaderGroups(e,t);return this.bricksFallingAlgorithm(o,0,0)}getVisibleGroupLayers(e,t){const o=this.getGroupsLayers(e,t);for(const s of o)for(let o=s.length-1;o>=0;o--){const i=s[o];if(0===i.start)continue;we(i.start-1,i.end+1).every((o=>this.getters.isHeaderHiddenByUser(e,t,o)))&&s.splice(o,1)}return o.filter((e=>e.length>0))}isGroupFolded(e,t,o,s){return this.getHeaderGroup(e,t,o,s)?.isFolded||!1}isRowFolded(e,t){return this.getters.getHeaderGroups(e,"ROW").some((e=>e.start<=t&&t<=e.end&&e.isFolded))}isColFolded(e,t){return this.getters.getHeaderGroups(e,"COL").some((e=>e.start<=t&&t<=e.end&&e.isFolded))}getGroupId(e){return`${e.start}-${e.end}}`}bricksFallingAlgorithm(e,t,o,s=0){const i={};for(const t of e)i[this.getGroupId(t)]=t.isFolded;const n={};for(const t of e)for(let e=t.start;e<=t.end;e++)n[e]=n[e]?n[e]+1:1;for(let e=t;e<=o;e++)n[e]=n[e]?n[e]+s:s;const r=Math.max(...Object.values(n),0),a=Array.from({length:r},(()=>[])),l=Math.max(o,...e.map((e=>e.end)));for(let o=Math.min(t,...e.map((e=>e.start)));o<=l;o++){const e=n[o]||0;for(let t=0;t<e;t++){const e=a[t].at(-1);if(e&&Qe([e.end,o]))e.end++;else{const e={start:o,end:o};a[t].push(e)}}}for(const e of a)for(const t of e)t.isFolded=i[this.getGroupId(t)];return a}groupHeaders(e,t,o,s){const i=this.getHeaderGroups(e,t),n=this.bricksFallingAlgorithm(i,o,s,1).flat();this.history.update("groups",e,t,this.removeDuplicateGroups(n))}unGroupHeaders(e,t,o,s){const i=this.getHeaderGroups(e,t),n=this.bricksFallingAlgorithm(i,o,s,-1).flat();this.history.update("groups",e,t,this.removeDuplicateGroups(n))}moveGroupsOnHeaderInsertion(e,t,o,s){const i=this.groups[e][t];for(let n=0;n<i.length;n++){const r=i[n],[a,l]=yn(o,s,[r.start,r.end]);a===r.start&&l===r.end||this.history.update("groups",e,t,n,{...r,start:a,end:l})}}moveGroupsOnHeaderDeletion(e,t,o){const s=this.getHeaderGroups(e,t),i=[];for(const e of s){const t=Cn(o,we(e.start,e.end+1));0!==t.length&&i.push({...e,start:Math.min(...t),end:Math.max(...t)})}this.history.update("groups",e,t,this.bricksFallingAlgorithm(i,0,0).flat())}doGroupOverlap(e,t,o){return e.start<=o&&e.end>=t}removeDuplicateGroups(e){const t={};for(const o of e)t[this.getGroupId(o)]=o;return Object.values(t)}findGroupWithStartEnd(e,t,o,s){return this.getHeaderGroups(e,t).find((e=>e.start===o&&e.end===s))}foldHeaderGroup(e,t,o){const s=this.getGroupIndex(e,t,o.start,o.end);if(void 0===s)return;this.history.update("groups",e,t,s,"isFolded",!0);const i=this.getters.getHeaderGroups(e,t);for(let s=0;s<i.length;s++){const n=i[s];n.start===o.start&&n.end<=o.end&&this.history.update("groups",e,t,s,"isFolded",!0)}}unfoldHeaderGroup(e,t,o){const s=this.getGroupIndex(e,t,o.start,o.end);if(void 0===s)return;this.history.update("groups",e,t,s,"isFolded",!1);const i=this.getters.getHeaderGroups(e,t);for(let s=0;s<i.length;s++){const n=i[s];n.start===o.start&&n.end>=o.end&&this.history.update("groups",e,t,s,"isFolded",!1)}}getGroupIndex(e,t,o,s){const i=this.groups[e][t].findIndex((e=>e.start===o&&e.end===s));return-1===i?void 0:i}import(e){for(const t of e.sheets)if(this.groups[t.id]={ROW:[],COL:[]},t.headerGroups)for(const e of["ROW","COL"])for(const o of t.headerGroups[e]||[])this.groups[t.id][e].push({...o})}export(e){for(const t of e.sheets)t.headerGroups=this.groups[t.id]}exportForExcel(e){for(const t of e.sheets)for(const e of["ROW","COL"]){const o=this.getGroupsLayers(t.id,e);for(let s=0;s<o.length;s++){const i=o[s];for(const o of i){for(let i=o.start;i<=o.end;i++){const n=wA(t,e,i);n.outlineLevel=s+1,o.isFolded&&(n.isHidden=!0)}if(o.isFolded){wA(t,e,o.end+1).collapsed=!0}}}}}}).add("header visibility",class extends s_{static getters=["checkElementsIncludeAllVisibleHeaders","getHiddenColsGroups","getHiddenRowsGroups","isHeaderHiddenByUser","isRowHiddenByUser","isColHiddenByUser"];hiddenHeaders={};allowDispatch(e){switch(e.type){case"HIDE_COLUMNS_ROWS":{if(!this.getters.tryGetSheet(e.sheetId))return"InvalidSheetId";const t="COL"===e.dimension?this.getHiddenColsGroups(e.sheetId):this.getHiddenRowsGroups(e.sheetId),o="COL"===e.dimension?this.getters.getNumberCols(e.sheetId):this.getters.getNumberRows(e.sheetId);return new Set((t||[]).flat().concat(e.elements)).size>=o?"TooManyHiddenElements":nt(e.elements)<0||it(e.elements)>o?"InvalidHeaderIndex":"Success"}case"REMOVE_COLUMNS_ROWS":return this.getters.tryGetSheet(e.sheetId)?this.checkElementsIncludeAllVisibleHeaders(e.sheetId,e.dimension,e.elements)?"NotEnoughElements":"Success":"InvalidSheetId"}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":const t={COL:Array(this.getters.getNumberCols(e.sheetId)).fill(!1),ROW:Array(this.getters.getNumberRows(e.sheetId)).fill(!1)};this.history.update("hiddenHeaders",e.sheetId,t);break;case"DUPLICATE_SHEET":this.history.update("hiddenHeaders",e.sheetIdTo,be(this.hiddenHeaders[e.sheetId]));break;case"DELETE_SHEET":this.history.update("hiddenHeaders",e.sheetId,void 0);break;case"REMOVE_COLUMNS_ROWS":{const t=[...this.hiddenHeaders[e.sheetId][e.dimension]];for(let o of[...e.elements].sort(((e,t)=>t-e)))t.splice(o,1);this.history.update("hiddenHeaders",e.sheetId,e.dimension,t);break}case"ADD_COLUMNS_ROWS":{const t=[...this.hiddenHeaders[e.sheetId][e.dimension]],o=We(e.position,e.base);t.splice(o,0,...Array(e.quantity).fill(!1)),this.history.update("hiddenHeaders",e.sheetId,e.dimension,t);break}case"HIDE_COLUMNS_ROWS":for(let t of e.elements)this.history.update("hiddenHeaders",e.sheetId,e.dimension,t,!0);break;case"UNHIDE_COLUMNS_ROWS":for(let t of e.elements)this.history.update("hiddenHeaders",e.sheetId,e.dimension,t,!1)}}checkElementsIncludeAllVisibleHeaders(e,t,o){return Ze(o,this.getAllVisibleHeaders(e,t))}isHeaderHiddenByUser(e,t,o){return"COL"===t?this.isColHiddenByUser(e,o):this.isRowHiddenByUser(e,o)}isRowHiddenByUser(e,t){return this.hiddenHeaders[e].ROW[t]||this.getters.isRowFolded(e,t)}isColHiddenByUser(e,t){return this.hiddenHeaders[e].COL[t]||this.getters.isColFolded(e,t)}getHiddenColsGroups(e){const t=[[]],o=this.hiddenHeaders[e].COL;for(let e=0;e<o.length;e++){o[e]?t[t.length-1].push(e):0!==t[t.length-1].length&&t.push([])}return 0===t[t.length-1].length&&t.pop(),t}getHiddenRowsGroups(e){const t=[[]],o=this.hiddenHeaders[e].ROW;for(let e=0;e<o.length;e++){o[e]?t[t.length-1].push(e):0!==t[t.length-1].length&&t.push([])}return 0===t[t.length-1].length&&t.pop(),t}getAllVisibleHeaders(e,t){const o=we(0,this.getters.getNumberHeaders(e,t)),s=[];return this.getters.getHeaderGroups(e,t).forEach((e=>{e.isFolded&&s.push(...we(e.start,e.end+1))})),o.filter((o=>!this.hiddenHeaders[e][t][o]&&!s.includes(o)))}import(e){for(let t of e.sheets){this.hiddenHeaders[t.id]={COL:[],ROW:[]};for(let e=0;e<t.rowNumber;e++)this.hiddenHeaders[t.id].ROW[e]=Boolean(t.rows[e]?.isHidden);for(let e=0;e<t.colNumber;e++)this.hiddenHeaders[t.id].COL[e]=Boolean(t.cols[e]?.isHidden)}}exportForExcel(e){this.exportData(e,!0)}export(e){this.exportData(e)}exportData(e,t=!1){for(let o of e.sheets){void 0===o.rows&&(o.rows={});for(let e=0;e<this.getters.getNumberRows(o.id);e++)(t||this.hiddenHeaders[o.id].ROW[e])&&(void 0===o.rows[e]&&(o.rows[e]={}),o.rows[e].isHidden||=this.hiddenHeaders[o.id].ROW[e]);void 0===o.cols&&(o.cols={});for(let e=0;e<this.getters.getNumberCols(o.id);e++)(t||this.hiddenHeaders[o.id].COL[e])&&(void 0===o.cols[e]&&(o.cols[e]={}),o.cols[e].isHidden||=this.hiddenHeaders[o.id].COL[e])}}}).add("tables",class extends s_{static getters=["getCoreTable","getCoreTables","getCoreTableMatchingTopLeft"];tables={};adaptRanges(e,t){const o=t?[t]:this.getters.getSheetIds();for(const t of o)for(const o of this.getCoreTables(t))this.applyRangeChangeOnTable(t,o,e)}allowDispatch(e){switch(e.type){case"CREATE_TABLE":const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e).zone));return un(t)?this.checkValidations(e,(e=>this.getTablesOverlappingZones(e.sheetId,t).length?"TableOverlap":"Success"),(e=>this.checkTableConfigUpdateIsValid(e.config))):"NonContinuousTargets";case"UPDATE_TABLE":return this.getCoreTableMatchingTopLeft(e.sheetId,e.zone)?this.checkValidations(e,this.checkUpdatedTableZoneIsValid,(e=>this.checkTableConfigUpdateIsValid(e.config))):"TableNotFound";case"ADD_MERGE":for(const t of this.getCoreTables(e.sheetId)){const o=t.range.zone;for(const t of e.target)if(Qi(o,t))return"MergeInTable"}}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("tables",e.sheetId,{});break;case"DELETE_SHEET":{const t={...this.tables};delete t[e.sheetId],this.history.update("tables",t);break}case"DUPLICATE_SHEET":{const t={};for(const o of this.getCoreTables(e.sheetId))t[o.id]="dynamic"===o.type?this.copyDynamicTableForSheet(e.sheetIdTo,o):this.copyStaticTableForSheet(e.sheetIdTo,o);this.history.update("tables",e.sheetIdTo,t);break}case"CREATE_TABLE":{const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e))),o=this.getters.getRangesUnion(t),s=this.getters.getMergesInZone(e.sheetId,o.zone);this.dispatch("REMOVE_MERGE",{sheetId:e.sheetId,target:s});const i=this.uuidGenerator.uuidv4(),n=e.config||My,r="dynamic"===e.tableType?this.createDynamicTable(i,o,n):this.createStaticTable(i,e.tableType,o,n);this.history.update("tables",e.sheetId,r.id,r);break}case"REMOVE_TABLE":{const t={};for(const o of this.getCoreTables(e.sheetId))e.target.every((e=>!Xi(o.range.zone,e)))&&(t[o.id]=o);this.history.update("tables",e.sheetId,t);break}case"UPDATE_TABLE":this.updateTable(e);break;case"UPDATE_CELL":{const t=e.sheetId;for(const o of this.getCoreTables(t)){if("dynamic"===o.type)continue;const s=this.canUpdateCellCmdExtendTable(e,o);"down"===s?this.extendTableDown(t,o):"right"===s&&this.extendTableRight(t,o)}break}case"DELETE_CONTENT":{const t={...this.tables[e.sheetId]};for(const o in t){const s=t[o];s&&e.target.some((e=>en(s.range.zone,e)))&&this.dispatch("REMOVE_TABLE",{sheetId:e.sheetId,target:[s.range.zone]})}break}}}getCoreTables(e){return this.tables[e]?Object.values(this.tables[e]).filter(Le):[]}getCoreTable({sheetId:e,col:t,row:o}){return this.getCoreTables(e).find((e=>Ji(t,o,e.range.zone)))}getTablesOverlappingZones(e,t){return this.getCoreTables(e).filter((e=>t.some((t=>Qi(e.range.zone,t)))))}extendTableDown(e,t){const o=this.getters.extendRange(t.range,"ROW",1);this.history.update("tables",e,t.id,this.updateStaticTable(t,o))}extendTableRight(e,t){const o=this.getters.extendRange(t.range,"COL",1);this.history.update("tables",e,t.id,this.updateStaticTable(t,o))}canUpdateCellCmdExtendTable({content:e,sheetId:t,col:o,row:s},i){if(!e)return"none";const n=i.range.zone;let r="none";if(n.bottom+1===s&&o>=n.left&&o<=n.right?r="down":n.right+1===o&&s>=n.top&&s<=n.bottom&&(r="right"),"none"===r)return"none";const a="down"===r?{...n,bottom:n.bottom+1,top:n.bottom+1}:{...n,right:n.right+1,left:n.right+1};for(const e of sn(a)){const o={sheetId:t,...e},s=this.getters.getCell(o)?.content;if(s||this.getters.isInMerge(o)||this.getTablesOverlappingZones(t,[ln(e)]).length)return"none"}return r}getCoreTableMatchingTopLeft(e,t){for(const o of this.getCoreTables(e)){const e=o.range.zone;if(e.left===t.left&&e.top===t.top)return o}}checkUpdatedTableZoneIsValid(e){if(!e.newTableRange)return"Success";const t=this.getters.getRangeFromRangeData(e.newTableRange).zone,o=this.getters.checkZonesExistInSheet(e.sheetId,[t]);if("Success"!==o)return o;const s=this.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!s)return"TableNotFound";return this.getTablesOverlappingZones(e.sheetId,[t]).filter((e=>e.id!==s.id)).length?"TableOverlap":"Success"}checkTableConfigUpdateIsValid(e){return e&&(void 0!==e.numberOfHeaders&&e.numberOfHeaders<0||e.hasFilters&&0===e.numberOfHeaders)?"InvalidTableConfig":"Success"}createStaticTable(e,t,o,s,i){const n=o.zone;if(!i){i=[];for(const e of we(n.left,n.right+1)){const t={...n,left:e,right:e},r=this.uuidGenerator.uuidv4();i.push(this.createFilterFromZone(r,o.sheetId,t,s))}}return{id:e,range:o,filters:i,config:s,type:t}}createDynamicTable(e,t,o){const s=cn(t.zone);return{id:e,range:this.getters.getRangeFromZone(t.sheetId,s),config:o,type:"dynamic"}}updateTable(e){const t=this.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!t)return;const o=e.newTableRange?this.getters.getRangeFromRangeData(e.newTableRange):void 0;if(o){const t=this.getters.getMergesInZone(e.sheetId,o.zone);this.dispatch("REMOVE_MERGE",{sheetId:e.sheetId,target:t})}const s=o||t.range,i=this.updateTableConfig(e.config,t.config),n=e.tableType??t.type;if("dynamic"===n&&"dynamic"!==t.type||"dynamic"!==n&&"dynamic"===t.type){const o="dynamic"===n?this.createDynamicTable(t.id,s,i):this.createStaticTable(t.id,n,s,i);this.history.update("tables",e.sheetId,t.id,o)}else{const o="dynamic"===t.type?this.updateDynamicTable(t,s,i):this.updateStaticTable(t,s,i,n);this.history.update("tables",e.sheetId,t.id,o)}}updateStaticTable(e,t,o,s=e.type){if("dynamic"===s)throw new Error("Cannot use updateStaticTable to update a dynamic table");const i=t||e.range,n=i.zone,r=this.updateTableConfig(o,e.config),a=r||e.config,l=[];if(t||r&&"numberOfHeaders"in r)for(const t of we(n.left,n.right+1)){const o=n.top===e.range.zone.top?e.filters.find((e=>e.col===t)):void 0,s={...n,left:t,right:t},r=o?.id||this.uuidGenerator.uuidv4();l.push(this.createFilterFromZone(r,i.sheetId,s,a))}return{...e,range:i,config:a,filters:l.length?l:e.filters,type:s}}updateDynamicTable(e,t,o){const s=t?this.getters.getRangeFromZone(t.sheetId,cn(t.zone)):e.range,i=o||e.config;return{...e,range:s,config:i}}updateTableConfig(e,t){if(!e)return t;const o={...t,...e};return 0===e.numberOfHeaders?o.hasFilters=!1:!0===e.hasFilters&&(o.numberOfHeaders||=1),o}createFilterFromZone(e,t,o,s){return mR(e,this.getters.getRangeFromZone(t,o),s,this.getters.getRangeFromZone)}copyStaticTableForSheet(e,t){const o=this.getters.getRangeFromZone(e,t.range.zone),s=t.filters.map((o=>{const s=this.getters.getRangeFromZone(e,o.rangeWithHeaders.zone);return mR(o.id,s,t.config,this.getters.getRangeFromZone)}));return{id:t.id,range:o,filters:s,config:be(t.config),type:t.type}}copyDynamicTableForSheet(e,t){const o=this.getters.getRangeFromZone(e,t.range.zone);return{id:t.id,range:o,config:be(t.config),type:"dynamic"}}applyRangeChangeOnTable(e,t,o){const s=o(t.range);let i;switch(s.changeType){case"REMOVE":return void this.history.update("tables",e,t.id,void 0);case"NONE":return;default:i=s.range}if("dynamic"===t.type){const o=this.updateDynamicTable(t,i);return void this.history.update("tables",e,t.id,o)}const n=[];for(const e of t.filters){const s=o(e.rangeWithHeaders);switch(s.changeType){case"REMOVE":continue;case"NONE":n.push(e);break;default:const o=s.range,i=mR(e.id,o,t.config,this.getters.getRangeFromZone);n.push(i)}}const r=i.zone;if(n.length<tn(r).numberOfCols){for(let o=r.left;o<=r.right;o++)if(!n.find((e=>e.col===o))){const s=this.uuidGenerator.uuidv4(),i={...r,left:o,right:o};n.push(this.createFilterFromZone(s,e,i,t.config))}n.sort(((e,t)=>e.col-t.col))}const a=this.createStaticTable(t.id,t.type,i,t.config,n);this.history.update("tables",e,t.id,a)}import(e){for(const t of e.sheets)for(const e of t.tables||[]){const o=this.uuidGenerator.uuidv4(),s=e.config||My,i=this.getters.getRangeFromSheetXC(t.id,e.range),n=e.type||"static",r="dynamic"===n?this.createDynamicTable(o,i,s):this.createStaticTable(o,n,i,s);this.history.update("tables",t.id,r.id,r)}}export(e){for(const t of e.sheets)for(const e of this.getCoreTables(t.id)){const o={range:Wi(e.range.zone),type:e.type};Ge(e.config,My)||(o.config=e.config),t.tables.push(o)}}exportForExcel(e){for(const t of e.sheets)for(const e of this.getCoreTables(t.id)){const o=Wi(e.range.zone);t.tables.push({range:o,filters:[],config:e.config})}}}).add("dataValidation",class extends s_{static getters=["cellHasListDataValidationIcon","getDataValidationRule","getDataValidationRules","getValidationRuleForCell"];rules={};adaptRanges(e,t){const o=t?[t]:Object.keys(this.rules);for(const t of o)this.loopThroughRangesOfSheet(t,e)}loopThroughRangesOfSheet(e,t){for(let o=this.rules[e].length-1;o>=0;o--){const s=this.rules[e][o];for(let i=s.ranges.length-1;i>=0;i--){const n=t(s.ranges[i]);switch(n.changeType){case"REMOVE":if(1===s.ranges.length)this.removeDataValidationRule(e,s.id);else{const t=s.ranges.slice();t.splice(i,1),this.history.update("rules",e,o,"ranges",t)}break;case"RESIZE":case"MOVE":case"CHANGE":this.history.update("rules",e,o,"ranges",i,n.range)}}}}allowDispatch(e){switch(e.type){case"ADD_DATA_VALIDATION_RULE":return this.checkValidations(e,this.chainValidations(this.checkCriterionTypeIsValid,this.checkCriterionHasValidNumberOfValues,this.checkCriterionValuesAreValid));case"REMOVE_DATA_VALIDATION_RULE":if(!this.rules[e.sheetId].find((t=>t.id===e.id)))return"UnknownDataValidationRule"}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("rules",e.sheetId,[]);break;case"DUPLICATE_SHEET":{const t=be(this.rules[e.sheetId]).map((t=>({...t,ranges:t.ranges.map((t=>mn(e.sheetId,e.sheetIdTo,t)))})));this.history.update("rules",e.sheetIdTo,t);break}case"DELETE_SHEET":{const t={...this.rules};delete t[e.sheetId],this.history.update("rules",t);break}case"REMOVE_DATA_VALIDATION_RULE":this.removeDataValidationRule(e.sheetId,e.id);break;case"ADD_DATA_VALIDATION_RULE":{const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e)));this.addDataValidationRule(e.sheetId,{...e.rule,ranges:t});break}case"DELETE_CONTENT":{const t=Pi(e.target),o=e.sheetId;for(const e of t)for(let t=e.top;t<=e.bottom;t++)for(let s=e.left;s<=e.right;s++){const e=this.getValidationRuleForCell({sheetId:o,col:s,row:t});if(e&&("isBoolean"===e.criterion.type||"isValueInList"===e.criterion.type&&!this.getters.getCell({sheetId:o,col:s,row:t})?.content)){const e=this.rules[o],i=[this.getters.getRangeFromSheetXC(o,_t(s,t))],n=this.removeRangesFromRules(o,i,e);this.history.update("rules",o,n)}}}}}getDataValidationRules(e){return this.rules[e]}getDataValidationRule(e,t){return this.rules[e].find((e=>e.id===t))}getValidationRuleForCell({sheetId:e,col:t,row:o}){if(this.rules[e])for(const s of this.rules[e])for(const e of s.ranges)if(Ji(t,o,e.zone))return s}cellHasListDataValidationIcon(e){const t=this.getValidationRuleForCell(e);return!!t&&(("isValueInList"===t.criterion.type||"isValueInRange"===t.criterion.type)&&"arrow"===t.criterion.displayStyle)}addDataValidationRule(e,t){const o=this.rules[e];"isBoolean"===t.criterion.type?this.setCenterStyleToBooleanCells(t):"isValueInList"===t.criterion.type&&(t.criterion.values=Array.from(new Set(t.criterion.values)));const s=this.removeRangesFromRules(e,t.ranges,o),i=s.findIndex((e=>e.id===t.id));-1!==i?(s[i]=t,this.history.update("rules",e,s)):this.history.update("rules",e,[...s,t])}removeRangesFromRules(e,t,o){o=be(o);for(const e of o)e.ranges=this.getters.recomputeRanges(e.ranges,t);return o.filter((e=>e.ranges.length>0))}removeDataValidationRule(e,t){const o=this.rules[e].filter((e=>e.id!==t));this.history.update("rules",e,o)}setCenterStyleToBooleanCells(e){for(const t of bn(e.ranges)){const e=this.getters.getCell(t),o={...e?.style,align:e?.style?.align??"center",verticalAlign:e?.style?.verticalAlign??"middle"};this.dispatch("UPDATE_CELL",{...t,style:o})}}import(e){for(const t of e.sheets)if(this.rules[t.id]=[],t.dataValidationRules)for(const e of t.dataValidationRules)this.rules[t.id].push({...e,ranges:e.ranges.map((e=>this.getters.getRangeFromSheetXC(t.id,e)))})}export(e){if(e.sheets)for(const t of e.sheets){t.dataValidationRules=[];for(const e of this.rules[t.id])t.dataValidationRules.push({...e,ranges:e.ranges.map((e=>this.getters.getRangeString(e,t.id)))})}}checkCriterionTypeIsValid(e){return pl.contains(e.rule.criterion.type)?"Success":"UnknownDataValidationCriterionType"}checkCriterionHasValidNumberOfValues(e){const t=e.rule.criterion,o=pl.get(t.type).numberOfValues(t);return void 0!==o&&t.values.length!==o?"InvalidNumberOfCriterionValues":"Success"}checkCriterionValuesAreValid(e){const t=e.rule.criterion,o=pl.get(t.type);return t.values.some((e=>e.startsWith("=")?"onlyLiterals"===o.allowedValues:"onlyFormulas"===o.allowedValues||!o.isCriterionValueValid(e)))?"InvalidDataValidationCriterionValue":"Success"}}).add("cell",class extends s_{static getters=["zoneToXC","getCells","getTranslatedCellFormula","getCellStyle","getCellById","getFormulaMovedInSheet"];nextId=1;cells={};adaptRanges(e,t){for(const o of Object.keys(this.cells))for(const s of Object.values(this.cells[o]||{}))if(s.isFormula)for(const i of s.compiledFormula.dependencies)if(!t||i.sheetId===t){const t=e(i);"NONE"!==t.changeType&&this.history.update("cells",o,s.id,"compiledFormula","dependencies",s.compiledFormula.dependencies.indexOf(i),t.range)}}allowDispatch(e){switch(e.type){case"UPDATE_CELL":return this.checkValidations(e,this.checkCellOutOfSheet,this.checkUselessUpdateCell);case"CLEAR_CELL":return this.checkValidations(e,this.checkCellOutOfSheet,this.checkUselessClearCell);default:return"Success"}}handle(e){switch(e.type){case"SET_FORMATTING":"style"in e&&this.setStyle(e.sheetId,e.target,e.style),"format"in e&&void 0!==e.format&&this.setFormatter(e.sheetId,e.target,e.format);break;case"CLEAR_FORMATTING":this.clearFormatting(e.sheetId,e.target);break;case"ADD_COLUMNS_ROWS":"COL"===e.dimension?this.handleAddColumnsRows(e,this.copyColumnStyle.bind(this)):this.handleAddColumnsRows(e,this.copyRowStyle.bind(this));break;case"UPDATE_CELL":this.updateCell(e.sheetId,e.col,e.row,e);break;case"CLEAR_CELL":this.dispatch("UPDATE_CELL",{sheetId:e.sheetId,col:e.col,row:e.row,content:"",style:null,format:""});break;case"CLEAR_CELLS":this.clearCells(e.sheetId,e.target);break;case"DELETE_CONTENT":this.clearZones(e.sheetId,e.target)}}clearZones(e,t){for(let o of Pi(t))for(let t=o.left;t<=o.right;t++)for(let s=o.top;s<=o.bottom;s++){this.getters.getCell({sheetId:e,col:t,row:s})&&this.dispatch("UPDATE_CELL",{sheetId:e,content:"",col:t,row:s})}}setFormatter(e,t,o){for(let s of Pi(t))for(let t=s.top;t<=s.bottom;t++)for(let i=s.left;i<=s.right;i++)this.dispatch("UPDATE_CELL",{sheetId:e,col:i,row:t,format:o})}clearFormatting(e,t){for(let o of Pi(t))for(let t=o.left;t<=o.right;t++)for(let s=o.top;s<=o.bottom;s++)this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,style:null,format:""})}clearCells(e,t){for(const o of t)for(let t=o.left;t<=o.right;t++)for(let s=o.top;s<=o.bottom;s++)this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,content:"",style:null,format:""})}handleAddColumnsRows(e,t){let o,s;"before"===e.position?(o=we(e.base,e.base+e.quantity),s=e.base+e.quantity):(o=we(e.base+1,e.base+e.quantity+1),s=e.base),t(e.sheetId,s,o)}import(e){for(let t of e.sheets)for(let o in t.cells){const s=t.cells[o],{col:i,row:n}=Ot(o);if(s?.content||s?.format||s?.style){const o=this.importCell(t.id,s,e.styles,e.formats);this.history.update("cells",t.id,o.id,o),this.dispatch("UPDATE_CELL_POSITION",{cellId:o.id,col:i,row:n,sheetId:t.id})}}}export(e){const t={},o={};for(let s of e.sheets){const e={},i=Object.keys(this.cells[s.id]||{}).map((e=>this.getters.getCellPosition(e))).sort(((e,t)=>e.col===t.col?e.row-t.row:e.col-t.col));for(const s of i){const i=this.getters.getCell(s),n=_t(s.col,s.row),r=this.removeDefaultStyleValues(i.style);e[n]={style:Object.keys(r).length?Ue(r,t):void 0,format:i.format?Ue(i.format,o):void 0,content:i.content||void 0}}s.cells=e}e.styles=t,e.formats=o}importCell(e,t,o,s){const i=t.style&&o[t.style]||void 0,n=t.format&&s[t.format]||void 0,r=this.getNextUid();return this.createCell(r,t?.content||"",n,i,e)}exportForExcel(e){this.export(e);const t=[];for(const o in e.formats||[])pi(e.formats[o])||(t.push(o),delete e.formats[o]);if(t.length)for(const o of e.sheets)for(const e in o.cells){const s=o.cells[e],i=s?.format;i&&t.includes(i.toString())&&delete s.format}}removeDefaultStyleValues(e){const t={...e};for(const e in W)t[e]===W[e]&&delete t[e];return t}getCells(e){return this.cells[e]||{}}getCellById(e){const t=this.getters.getCellPosition(e);return this.cells[t.sheetId][e]}getFormulaCellContent(e,t,o,s=!1){let i=0;return ze(t.tokens.map((t=>{if("REFERENCE"===t.type){const t=o[i++];return this.getters.getRangeString(t,e,{useFixedReference:s})}return t.value})))}getTranslatedCellFormula(e,t,o,s){const i=this.getters.createAdaptedRanges(s.dependencies,t,o,e);return this.getFormulaCellContent(e,s,i)}getFormulaMovedInSheet(e,t){const o=t.dependencies,s=this.getters.removeRangesSheetPrefix(e,o);return this.getFormulaCellContent(e,t,s)}getCellStyle(e){return this.getters.getCell(e)?.style||{}}zoneToXC(e,t,o=[{colFixed:!1,rowFixed:!1}]){const s=_t((t=this.getters.expandZone(e,t)).left,t.top,o[0]),i=_t(t.right,t.bottom,o.length>1?o[1]:o[0]),n=this.getters.getMainCellPosition({sheetId:e,col:t.left,row:t.top}),r=this.getters.getMainCellPosition({sheetId:e,col:t.right,row:t.bottom}),a=n.col===r.col&&n.row===r.row;return s==i||a?s:s+":"+i}setStyle(e,t,o){for(let s of Pi(t))for(let t=s.left;t<=s.right;t++)for(let i=s.top;i<=s.bottom;i++){const s=this.getters.getCell({sheetId:e,col:t,row:i});this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:i,style:o?{...s?.style,...o}:void 0})}}copyColumnStyle(e,t,o){for(let s=0;s<this.getters.getNumberRows(e);s++){const i=this.getFormat(e,t,s);if(i.style||i.format)for(let t of o)this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,...i})}}copyRowStyle(e,t,o){for(let s=0;s<this.getters.getNumberCols(e);s++){const i=this.getFormat(e,s,t);if(i.style||i.format)for(let t of o)this.dispatch("UPDATE_CELL",{sheetId:e,col:s,row:t,...i})}}getFormat(e,t,o){const s={},i=this.getters.getMainCellPosition({sheetId:e,col:t,row:o}),n=this.getters.getCell(i);return n&&(n.style&&(s.style=n.style),n.format&&(s.format=n.format)),s}getNextUid(){const e=this.nextId.toString();return this.history.update("nextId",this.nextId+1),e}updateCell(e,t,o,s){const i=this.getters.getCell({sheetId:e,col:t,row:o}),n="content"in s||"formula"in s,r=n?Ke(s?.content):i?.content||"";let a;a=void 0!==s.style?s.style||void 0:i?i.style:void 0;const l="format"in s?s.format:i&&i.format;if((n&&!r&&!s.formula||!n&&(!i||""===i.content))&&!a&&!l)return void(i&&(this.history.update("cells",e,i.id,void 0),this.dispatch("UPDATE_CELL_POSITION",{cellId:void 0,col:t,row:o,sheetId:e})));const c=i?.id||this.getNextUid(),h=this.createCell(c,r,l,a,e);this.history.update("cells",e,h.id,h),this.dispatch("UPDATE_CELL_POSITION",{cellId:h.id,col:t,row:o,sheetId:e})}createCell(e,t,o,s,i){if(!t.startsWith("="))return this.createLiteralCell(e,t,o,s);try{return this.createFormulaCell(e,t,o,s,i)}catch(i){return this.createErrorFormula(e,t,o,s,i)}}createLiteralCell(e,t,o,s){const i=this.getters.getLocale(),n=Ga(t,i);return(o=o||("number"==typeof n?ri(t,i)||ai(t):void 0))===Do||Xo(t)||(t=rs(n)),{id:e,content:t,style:s,format:o,isFormula:!1,parsedValue:n}}createFormulaCell(e,t,o,s,i){const n=gv(t);return n.dependencies.length?this.createFormulaCellWithDependencies(e,n,o,s,i):{id:e,content:t,style:s,format:o,isFormula:!0,compiledFormula:{...n,dependencies:[]}}}createFormulaCellWithDependencies(e,t,o,s,i){const n=[];for(const e of t.dependencies)n.push(this.getters.getRangeFromSheetXC(i,e));return new i_(e,t,o,s,n,i,this.getters.getRangeString)}createErrorFormula(e,t,o,s,i){return{id:e,content:t,style:s,format:o,isFormula:!0,compiledFormula:{tokens:Zn(t),dependencies:[],execute:function(){throw i}}}}checkCellOutOfSheet(e){const{sheetId:t,col:o,row:s}=e;if(!this.getters.tryGetSheet(t))return"InvalidSheetId";return Ji(o,s,this.getters.getSheetZone(t))?"Success":"TargetOutOfSheet"}checkUselessClearCell(e){const t=this.getters.getCell(e);return t&&(t.content||t.style||t.format)?"Success":"NoChanges"}checkUselessUpdateCell(e){const t=this.getters.getCell(e),o="style"in e,s="format"in e;return("content"in e||"formula"in e)&&t?.content!==e.content||o&&!Ge(t?.style,e.style)||s&&t?.format!==e.format?"Success":"NoChanges"}}).add("merge",class extends s_{static getters=["isInMerge","isInSameMerge","isMergeHidden","getMainCellPosition","expandZone","doesIntersectMerge","doesColumnsHaveCommonMerges","doesRowsHaveCommonMerges","getMerges","getMerge","getMergesInZone","isSingleCellOrMerge","getSelectionRangeString","isMainCellPosition"];nextId=1;merges={};mergeCellMap={};allowDispatch(e){const t="force"in e&&!!e.force;switch(e.type){case"ADD_MERGE":return t?this.checkValidations(e,this.checkFrozenPanes):this.checkValidations(e,this.checkDestructiveMerge,this.checkOverlap,this.checkFrozenPanes);case"UPDATE_CELL":return this.checkMergedContentUpdate(e);case"REMOVE_MERGE":return this.checkMergeExists(e);default:return"Success"}}handle(e){switch(e.type){case"CREATE_SHEET":case"DELETE_SHEET":this.history.update("merges",e.sheetId,{}),this.history.update("mergeCellMap",e.sheetId,{});break;case"DUPLICATE_SHEET":const t=this.merges[e.sheetId];if(!t)break;for(const o of Object.values(t).filter(Le))this.addMerge(e.sheetIdTo,o.zone);break;case"ADD_MERGE":for(const t of e.target)this.addMerge(e.sheetId,t);break;case"REMOVE_MERGE":for(const t of e.target)this.removeMerge(e.sheetId,t)}}adaptRanges(e,t){const o=t?[t]:Object.keys(this.merges);for(const t of o)this.applyRangeChangeOnSheet(t,e)}getMerges(e){return Object.keys(this.merges[e]||{}).map((t=>this.getMergeById(e,parseInt(t,10)))).filter(Le)}getMerge({sheetId:e,col:t,row:o}){const s=this.mergeCellMap[e],i=s?t in s&&s[t]?.[o]:void 0;return i?this.getMergeById(e,i):void 0}getMergesInZone(e,t){const o=this.mergeCellMap[e];if(!o)return[];const s=new Set;for(let e=t.left;e<=t.right;e++)for(let i=t.top;i<=t.bottom;i++){const t=o[e]?.[i];t&&s.add(t)}return Array.from(s).map((t=>this.getMergeById(e,t))).filter(Le)}getSelectionRangeString(e,t){const o=pn.fromRange(e,this.getters),s=this.getters.expandZone(o.sheetId,o.zone),i=o.clone({zone:{...s,bottom:o.isFullCol?void 0:s.bottom,right:o.isFullRow?void 0:s.right}}),n=this.getters.getRangeString(i,t);if(this.isSingleCellOrMerge(o.sheetId,o.zone)){const{sheetName:e,xc:t}=Fi(n);return Mi(e,t.split(":")[0])}return n}doesIntersectMerge(e,t){for(const o of this.getMerges(e))if(Qi(t,o))return!0;return!1}doesColumnsHaveCommonMerges(e,t,o){const s=this.getters.getSheet(e);for(let i=0;i<this.getters.getNumberRows(e);i++)if(this.isInSameMerge(s.id,t,i,o,i))return!0;return!1}doesRowsHaveCommonMerges(e,t,o){const s=this.getters.getSheet(e);for(let i=0;i<=this.getters.getNumberCols(e);i++)if(this.isInSameMerge(s.id,i,t,i,o))return!0;return!1}expandZone(e,t){let{left:o,right:s,top:i,bottom:n}=t,r={left:o,right:s,top:i,bottom:n};for(let t in this.merges[e]){const o=this.getMergeById(e,parseInt(t));o&&Qi(o,r)&&(r=Yi(o,r))}return Ki(r,t)?r:this.expandZone(e,r)}isInSameMerge(e,t,o,s,i){const n=this.getMerge({sheetId:e,col:t,row:o}),r=this.getMerge({sheetId:e,col:s,row:i});return!(!n||!r)&&Ki(n,r)}isInMerge({sheetId:e,col:t,row:o}){const s=this.mergeCellMap[e];return!!s&&(t in s&&Boolean(s[t]?.[o]))}getMainCellPosition(e){const t=this.getMerge(e);return t?{sheetId:e.sheetId,col:t.left,row:t.top}:e}isMergeHidden(e,t){const o=this.getters.getHiddenColsGroups(e),s=this.getters.getHiddenRowsGroups(e);for(let e of o)if(t.left>=e[0]&&t.right<=e[e.length-1])return!0;for(let e of s)if(t.top>=e[0]&&t.bottom<=e[e.length-1])return!0;return!1}isSingleCellOrMerge(e,t){const o=this.getMerge({sheetId:e,col:t.left,row:t.top});if(o)return Ki(t,o);const{numberOfCols:s,numberOfRows:i}=tn(t);return 1===s&&1===i}isMainCellPosition(e){return Ge(this.getMainCellPosition(e),e)}isMergeDestructive(e,t){let{left:o,right:s,top:i,bottom:n}=t;s=Ce(s,0,this.getters.getNumberCols(e)-1),n=Ce(n,0,this.getters.getNumberRows(e)-1);for(let t=i;t<=n;t++)for(let n=o;n<=s;n++)if(n!==o||t!==i){const o=this.getters.getCell({sheetId:e,col:n,row:t});if(o&&""!==o.content)return!0}return!1}getMergeById(e,t){const o=this.merges[e]?.[t];return void 0!==o?l_(t,o):void 0}checkDestructiveMerge({sheetId:e,target:t}){if(!this.getters.tryGetSheet(e))return"Success";return t.some((t=>this.isMergeDestructive(e,t)))?"MergeIsDestructive":"Success"}checkOverlap({target:e}){for(const t of e)for(const o of e)if(t!==o&&Qi(t,o))return"MergeOverlap";return"Success"}checkFrozenPanes({sheetId:e,target:t}){if(!this.getters.tryGetSheet(e))return"Success";const{xSplit:o,ySplit:s}=this.getters.getPaneDivisions(e);for(const e of t)if(e.left<o&&e.right>=o||e.top<s&&e.bottom>=s)return"FrozenPaneOverlap";return"Success"}checkMergedContentUpdate(e){const{col:t,row:o,content:s}=e;if(void 0===s)return"Success";const{col:i,row:n}=this.getMainCellPosition(e);return i===t&&n===o?"Success":"CellIsMerged"}checkMergeExists(e){const{sheetId:t,target:o}=e;for(const e of o){const{left:o,top:s}=e,i=this.getMerge({sheetId:t,col:o,row:s});if(void 0===i||!Ki(e,i))return"InvalidTarget"}return"Success"}addMerge(e,t){let{left:o,right:s,top:i,bottom:n}=t;s=Ce(s,0,this.getters.getNumberCols(e)-1),n=Ce(n,0,this.getters.getNumberRows(e)-1);if(_t(o,i)===_t(s,n))return;const r=this.getters.getCell({sheetId:e,col:o,row:i});let a=this.nextId++;this.history.update("merges",e,a,this.getters.getRangeFromSheetXC(e,Wi({left:o,top:i,right:s,bottom:n})));let l=new Set;for(let t=i;t<=n;t++)for(let n=o;n<=s;n++){n===o&&t===i||this.dispatch("UPDATE_CELL",{sheetId:e,col:n,row:t,style:r?r.style:null,content:""});const s=this.getMerge({sheetId:e,col:n,row:t});s&&l.add(s.id),this.history.update("mergeCellMap",e,n,t,a)}for(let t of l){const{top:o,bottom:s,left:i,right:n}=this.getMergeById(e,t);for(let t=o;t<=s;t++)for(let o=i;o<=n;o++){const s={sheetId:e,col:o,row:t},i=this.getMerge(s);i&&i.id===a||(this.history.update("mergeCellMap",e,o,t,void 0),this.dispatch("CLEAR_CELL",s))}this.history.update("merges",e,t,void 0)}}removeMerge(e,t){const{left:o,top:s,bottom:i,right:n}=t,r=this.getMerge({sheetId:e,col:o,row:s});if(void 0!==r&&Ki(t,r)){this.history.update("merges",e,r.id,void 0);for(let t=s;t<=i;t++)for(let s=o;s<=n;s++)this.history.update("mergeCellMap",e,s,t,void 0)}}applyRangeChangeOnSheet(e,t){const o=Object.entries(this.merges[e]||{});for(const[s,i]of o)if(i){const o=i.zone,n=t(i);switch(n.changeType){case"NONE":break;case"REMOVE":this.removeMerge(e,o);break;default:const{numberOfCols:t,numberOfRows:i}=tn(n.range.zone);1===t&&1===i?this.removeMerge(e,o):this.history.update("merges",e,parseInt(s,10),n.range)}}this.history.update("mergeCellMap",e,{});for(const t of this.getMerges(e))for(const{col:o,row:s}of sn(t))this.history.update("mergeCellMap",e,o,s,t.id)}import(e){const t=e.sheets||[];for(let e of t)this.history.update("merges",e.id,{}),this.history.update("mergeCellMap",e.id,{}),e.merges&&this.importMerges(e.id,e.merges)}importMerges(e,t){for(let o of t)this.addMerge(e,zi(o))}export(e){for(let t of e.sheets){const e=this.merges[t.id];e&&t.merges.push(...a_(e))}}exportForExcel(e){this.export(e)}}).add("headerSize",class extends s_{static getters=["getUserRowSize","getColSize"];sizes={};handle(e){switch(e.type){case"CREATE_SHEET":this.history.update("sizes",e.sheetId,{COL:Array(this.getters.getNumberCols(e.sheetId)).fill(void 0),ROW:Array(this.getters.getNumberRows(e.sheetId)).fill(void 0)});break;case"DUPLICATE_SHEET":this.history.update("sizes",e.sheetIdTo,be(this.sizes[e.sheetId]));break;case"DELETE_SHEET":const t={...this.sizes};delete t[e.sheetId],this.history.update("sizes",t);break;case"REMOVE_COLUMNS_ROWS":{const t=et(this.sizes[e.sheetId][e.dimension],e.elements);this.history.update("sizes",e.sheetId,e.dimension,t);break}case"ADD_COLUMNS_ROWS":{let t=[...this.sizes[e.sheetId][e.dimension]];const o=We(e.position,e.base),s=t[e.base];t.splice(o,0,...Array(e.quantity).fill(s)),this.history.update("sizes",e.sheetId,e.dimension,t);break}case"RESIZE_COLUMNS_ROWS":if("ROW"===e.dimension)for(const t of e.elements)this.history.update("sizes",e.sheetId,e.dimension,t,e.size||void 0);else for(const t of e.elements)this.history.update("sizes",e.sheetId,e.dimension,t,e.size||void 0)}}getColSize(e,t){return Math.round(this.sizes[e]?.COL[t]||N)}getUserRowSize(e,t){const o=this.sizes[e]?.ROW[t];return o?Math.round(o):void 0}import(e){for(let t of e.sheets){const e={COL:Array(t.colNumber).fill(void 0),ROW:Array(t.rowNumber).fill(void 0)};for(let[o,s]of Object.entries(t.rows))s.size&&(e.ROW[o]=s.size);for(let[o,s]of Object.entries(t.cols))s.size&&(e.COL[o]=s.size);this.sizes[t.id]=e}}exportForExcel(e){this.exportData(e,!0)}export(e){this.exportData(e)}exportData(e,t=!1){for(let o of e.sheets){void 0===o.rows&&(o.rows={});for(const e of we(0,this.getters.getNumberRows(o.id)))(t||this.sizes[o.id].ROW[e])&&(o.rows[e]={...o.rows[e],size:this.getUserRowSize(o.id,e)??L});void 0===o.cols&&(o.cols={});for(let e of we(0,this.getters.getNumberCols(o.id)))(t||this.sizes[o.id].COL[e])&&(o.cols[e]={...o.cols[e],size:this.getColSize(o.id,e)})}}}).add("borders",class extends s_{static getters=["getCellBorder","getBordersColors"];borders={};allowDispatch(e){return"SET_BORDER"===e.type?this.checkBordersUnchanged(e):"Success"}handle(e){switch(e.type){case"ADD_MERGE":for(const t of e.target)this.addBordersToMerge(e.sheetId,t);break;case"DUPLICATE_SHEET":const t=this.borders[e.sheetId];if(t){const o=t.slice().map((e=>e?.slice().map((e=>({...e})))));this.history.update("borders",e.sheetIdTo,o)}break;case"DELETE_SHEET":const o={...this.borders};delete o[e.sheetId],this.history.update("borders",o);break;case"SET_BORDER":this.setBorder(e.sheetId,e.col,e.row,e.border);break;case"SET_ZONE_BORDERS":if(e.border){const t=e.target.map((t=>this.getters.expandZone(e.sheetId,t)));this.setBorders(e.sheetId,t,e.border.position,""===e.border.color?void 0:{style:e.border.style||X,color:e.border.color||K})}break;case"CLEAR_FORMATTING":this.clearBorders(e.sheetId,e.target);break;case"REMOVE_COLUMNS_ROWS":const s=[...e.elements].sort(((e,t)=>t-e));for(const t of xe(s))"COL"===e.dimension?this.shiftBordersHorizontally(e.sheetId,t[t.length-1]+1,-t.length):this.shiftBordersVertically(e.sheetId,t[t.length-1]+1,-t.length);break;case"ADD_COLUMNS_ROWS":"COL"===e.dimension?this.handleAddColumns(e):this.handleAddRows(e)}}handleAddColumns(e){let t,o;"before"===e.position?(this.shiftBordersHorizontally(e.sheetId,e.base,e.quantity,{moveFirstLeftBorder:!0}),t=e.base-1,o=e.base+e.quantity):(this.shiftBordersHorizontally(e.sheetId,e.base+1,e.quantity,{moveFirstLeftBorder:!1}),t=e.base,o=e.base+e.quantity+1),this.ensureColumnBorderContinuity(e.sheetId,t,o)}handleAddRows(e){let t,o;"before"===e.position?(this.shiftBordersVertically(e.sheetId,e.base,e.quantity,{moveFirstTopBorder:!0}),t=e.base-1,o=e.base+e.quantity):(this.shiftBordersVertically(e.sheetId,e.base+1,e.quantity,{moveFirstTopBorder:!1}),t=e.base,o=e.base+e.quantity+1),this.ensureRowBorderContinuity(e.sheetId,t,o)}getCellBorder({sheetId:e,col:t,row:o}){const s={top:this.borders[e]?.[t]?.[o]?.horizontal,bottom:this.borders[e]?.[t]?.[o+1]?.horizontal,left:this.borders[e]?.[t]?.[o]?.vertical,right:this.borders[e]?.[t+1]?.[o]?.vertical};return s.bottom||s.left||s.right||s.top?s:null}getBordersColors(e){const t=[],o=this.borders[e];if(o)for(const e of o.filter(Le))for(const o of e)o?.horizontal&&t.push(o.horizontal.color),o?.vertical&&t.push(o.vertical.color);return t}ensureColumnBorderContinuity(e,t,o){const s=we(t+1,o);for(let i=0;i<this.getters.getNumberRows(e);i++){const n=this.getCellBorder({sheetId:e,col:t,row:i}),r=this.getCellBorder({sheetId:e,col:o,row:i});if(n&&r){const t=this.getCommonSides(n,r);for(let o of s)this.addBorder(e,o,i,t)}}}ensureRowBorderContinuity(e,t,o){const s=we(t+1,o);for(let i=0;i<this.getters.getNumberCols(e);i++){const n=this.getCellBorder({sheetId:e,col:i,row:t}),r=this.getCellBorder({sheetId:e,col:i,row:o});if(n&&r){const t=this.getCommonSides(n,r);for(let o of s)this.addBorder(e,i,o,t)}}}getCommonSides(e,t){const o={};for(let s of["top","bottom","left","right"])e[s]&&e[s]===t[s]&&(o[s]=e[s]);return o}getColumnsWithBorders(e){const t=this.borders[e];return t?Object.keys(t).map((e=>parseInt(e,10))):[]}getRowsWithBorders(e){const t=this.borders[e]?.filter(Le);if(!t)return[];const o=new Set;for(const e of t)for(const t in e)o.add(parseInt(t,10));return Array.from(o)}getRowsRange(e){return this.borders[e]?we(0,this.getters.getNumberRows(e)+1):[]}shiftBordersHorizontally(e,t,o,{moveFirstLeftBorder:s}={}){this.borders[e]&&(o<0&&this.moveBordersOfColumn(e,t,o,"vertical",{destructive:!1}),this.getColumnsWithBorders(e).filter((e=>e>=t)).sort(((e,t)=>o<0?e-t:t-e)).forEach((i=>{(i===t&&s||i!==t)&&this.moveBordersOfColumn(e,i,o,"vertical"),this.moveBordersOfColumn(e,i,o,"horizontal")})))}shiftBordersVertically(e,t,o,{moveFirstTopBorder:s}={}){this.borders[e]&&(o<0&&this.moveBordersOfRow(e,t,o,"horizontal",{destructive:!1}),this.getRowsWithBorders(e).filter((e=>e>=t)).sort(((e,t)=>o<0?e-t:t-e)).forEach((i=>{(i===t&&s||i!==t)&&this.moveBordersOfRow(e,i,o,"horizontal"),this.moveBordersOfRow(e,i,o,"vertical")})))}moveBordersOfRow(e,t,o,s,{destructive:i}={destructive:!0}){const n=this.borders[e];n&&this.getColumnsWithBorders(e).forEach((r=>{const a=n[r]?.[t+o]?.[s],l=n[r]?.[t]?.[s];this.history.update("borders",e,r,t+o,s,i?l:l||a),this.history.update("borders",e,r,t,s,void 0)}))}moveBordersOfColumn(e,t,o,s,{destructive:i}={destructive:!0}){const n=this.borders[e];n&&this.getRowsRange(e).forEach((r=>{const a=n[t+o]?.[r]?.[s],l=n[t]?.[r]?.[s];this.history.update("borders",e,t+o,r,s,i?l:l||a),this.history.update("borders",e,t,r,s,void 0)}))}setBorder(e,t,o,s,i=!0){!i&&this.borders?.[e]?.[t]?.[o]?.vertical||this.history.update("borders",e,t,o,"vertical",s?.left),!i&&this.borders?.[e]?.[t]?.[o]?.horizontal||this.history.update("borders",e,t,o,"horizontal",s?.top),!i&&this.borders?.[e]?.[t+1]?.[o]?.vertical||this.history.update("borders",e,t+1,o,"vertical",s?.right),!i&&this.borders?.[e]?.[t]?.[o+1]?.horizontal||this.history.update("borders",e,t,o+1,"horizontal",s?.bottom)}clearBorders(e,t){for(let o of Pi(t)){for(let t=o.top;t<=o.bottom;t++){this.history.update("borders",e,o.right+1,t,"vertical",void 0);for(let s=o.left;s<=o.right;s++)this.history.update("borders",e,s,t,void 0)}for(let t=o.left;t<=o.right;t++)this.history.update("borders",e,t,o.bottom+1,"horizontal",void 0)}}addBorder(e,t,o,s){this.setBorder(e,t,o,{...this.getCellBorder({sheetId:e,col:t,row:o}),...s})}setBorders(e,t,o,s){if("clear"===o)return this.clearBorders(e,t);for(let i of Pi(t)){if("h"===o||"hv"===o||"all"===o)for(let t=i.top+1;t<=i.bottom;t++)for(let o=i.left;o<=i.right;o++)this.addBorder(e,o,t,{top:s});if("v"===o||"hv"===o||"all"===o)for(let t=i.top;t<=i.bottom;t++)for(let o=i.left+1;o<=i.right;o++)this.addBorder(e,o,t,{left:s});if("left"===o||"all"===o||"external"===o)for(let t=i.top;t<=i.bottom;t++)this.addBorder(e,i.left,t,{left:s});if("right"===o||"all"===o||"external"===o)for(let t=i.top;t<=i.bottom;t++)this.addBorder(e,i.right+1,t,{left:s});if("top"===o||"all"===o||"external"===o)for(let t=i.left;t<=i.right;t++)this.addBorder(e,t,i.top,{top:s});if("bottom"===o||"all"===o||"external"===o)for(let t=i.left;t<=i.right;t++)this.addBorder(e,t,i.bottom+1,{top:s})}}addBordersToMerge(e,t){const{left:o,right:s,top:i,bottom:n}=t,r=this.getCellBorder({sheetId:e,col:o,row:i}),a=this.getCellBorder({sheetId:e,col:s,row:n});this.clearBorders(e,[t]),r?.top&&this.setBorders(e,[{...t,bottom:i}],"top",r.top),r?.left&&this.setBorders(e,[{...t,right:o}],"left",r.left),a?.bottom?this.setBorders(e,[{...t,top:n}],"bottom",a.bottom):r?.bottom&&this.setBorders(e,[{...t,top:n}],"bottom",r.bottom),a?.right?this.setBorders(e,[{...t,left:s}],"right",a.right):r?.right&&this.setBorders(e,[{...t,left:s}],"right",r.right)}checkBordersUnchanged(e){const t=this.getCellBorder(e),o=!(e.border?.bottom||e.border?.left||e.border?.right||e.border?.top);return!t&&o||Ge(t,e.border)?"NoChanges":"Success"}import(e){if(Object.keys(e.borders||{}).length)for(let t of e.sheets)for(const o in t.cells){const s=t.cells[o];if(s?.border){const i=e.borders[s.border],{col:n,row:r}=Ot(o);this.setBorder(t.id,n,r,i,!1)}}for(let t of e.sheets)if(t.merges)for(let e of t.merges)this.addBordersToMerge(t.id,zi(e))}export(e){const t={};for(let o of e.sheets)for(let e=0;e<o.colNumber;e++)for(let s=0;s<o.rowNumber;s++){const i=this.getCellBorder({sheetId:o.id,col:e,row:s});if(i){const n=_t(e,s),r=o.cells[n],a=Ue(i,t);r?r.border=a:o.cells[n]={border:a}}}e.borders=t}exportForExcel(e){this.export(e)}}).add("conditional formatting",class extends s_{static getters=["getConditionalFormats","getRulesSelection","getRulesByCell","getAdaptedCfRanges"];cfRules={};loopThroughRangesOfSheet(e,t){for(const o of this.cfRules[e])for(const s of o.ranges){const i=t(s);switch(i.changeType){case"REMOVE":let t=o.ranges.slice();t.splice(o.ranges.indexOf(s),1),t.length>=1?this.history.update("cfRules",e,this.cfRules[e].indexOf(o),"ranges",t):this.removeConditionalFormatting(o.id,e);break;case"RESIZE":case"MOVE":case"CHANGE":this.history.update("cfRules",e,this.cfRules[e].indexOf(o),"ranges",o.ranges.indexOf(s),i.range)}}}adaptRanges(e,t){if(t)this.loopThroughRangesOfSheet(t,e);else for(const t of Object.keys(this.cfRules))this.loopThroughRangesOfSheet(t,e)}allowDispatch(e){switch(e.type){case"ADD_CONDITIONAL_FORMAT":return this.checkValidations(e,this.checkCFRule,this.checkEmptyRange);case"CHANGE_CONDITIONAL_FORMAT_PRIORITY":return this.checkValidPriorityChange(e.cfId,e.delta,e.sheetId)}return"Success"}handle(e){switch(e.type){case"CREATE_SHEET":this.cfRules[e.sheetId]=[];break;case"DUPLICATE_SHEET":this.history.update("cfRules",e.sheetIdTo,[]);for(const t of this.getConditionalFormats(e.sheetId))this.addConditionalFormatting(t,e.sheetIdTo);break;case"DELETE_SHEET":const t=Object.assign({},this.cfRules);delete t[e.sheetId],this.history.update("cfRules",t);break;case"ADD_CONDITIONAL_FORMAT":const o={...e.cf,ranges:e.ranges.map((t=>this.getters.getRangeString(this.getters.getRangeFromRangeData(t),e.sheetId)))};this.addConditionalFormatting(o,e.sheetId);break;case"REMOVE_CONDITIONAL_FORMAT":this.removeConditionalFormatting(e.id,e.sheetId);break;case"CHANGE_CONDITIONAL_FORMAT_PRIORITY":this.changeCFPriority(e.cfId,e.delta,e.sheetId)}}import(e){for(let t of e.sheets)this.cfRules[t.id]=t.conditionalFormats.map((e=>this.mapToConditionalFormatInternal(t.id,e)))}export(e){if(e.sheets)for(let t of e.sheets)this.cfRules[t.id]&&(t.conditionalFormats=this.cfRules[t.id].map((e=>this.mapToConditionalFormat(t.id,e))))}exportForExcel(e){if(e.sheets)for(let t of e.sheets)this.cfRules[t.id]&&(t.conditionalFormats=this.cfRules[t.id].map((e=>this.mapToConditionalFormat(t.id,e,{useFixedReference:!0}))))}getConditionalFormats(e){return this.cfRules[e]?.map((t=>this.mapToConditionalFormat(e,t)))||[]}getRulesSelection(e,t){const o=new Set;return t.forEach((t=>{this.getRulesByZone(e,t).forEach((e=>{o.add(e)}))})),Array.from(o)}getRulesByZone(e,t){const o=new Set;for(let s=t.top;s<=t.bottom;s++)for(let i=t.left;i<=t.right;i++){this.getRulesByCell(e,i,s).forEach((e=>{o.add(e.id)}))}return o}getRulesByCell(e,t,o){const s=[];for(let i of this.cfRules[e])for(let e of i.ranges)Ji(t,o,e.zone)&&s.push(i);return new Set(s.map((t=>this.mapToConditionalFormat(e,t))))}getAdaptedCfRanges(e,t,o,s){if(0===o.length&&0===s.length)return;const i=this.getters.getConditionalFormats(e),n=i.findIndex((e=>e.id===t.id));let r=[];return n>-1&&(r=i[n].ranges.map(Hi)),r=r.concat(o),Pi(r,s).map((t=>this.getters.getRangeDataFromZone(e,t)))}mapToConditionalFormat(e,t,{useFixedReference:o}={useFixedReference:!1}){return{...t,ranges:t.ranges.map((t=>this.getters.getRangeString(t,e,{useFixedReference:o})))}}mapToConditionalFormatInternal(e,t){const o={...t,ranges:t.ranges.map((t=>this.getters.getRangeFromSheetXC(e,t)))};return o}addConditionalFormatting(e,t){const o=this.cfRules[t].slice(),s=o.findIndex((t=>t.id===e.id)),i=this.mapToConditionalFormatInternal(t,e);s>-1?o.splice(s,1,i):o.push(i),this.history.update("cfRules",t,o)}checkValidPriorityChange(e,t,o){if(!this.cfRules[o])return"InvalidSheetId";const s=this.cfRules[o].findIndex((t=>t.id===e));if(-1===s)return"InvalidConditionalFormatId";const i=s-t;return i<0||i>=this.cfRules[o].length?"InvalidConditionalFormatId":"Success"}checkEmptyRange(e){return e.ranges.length?"Success":"EmptyRange"}checkCFRule(e){const t=e.cf.rule;switch(t.type){case"CellIsRule":return this.checkValidations(t,this.checkOperatorArgsNumber(2,["Between","NotBetween"]),this.checkOperatorArgsNumber(1,["BeginsWith","ContainsText","EndsWith","GreaterThan","GreaterThanOrEqual","LessThan","LessThanOrEqual","NotContains"]),this.checkOperatorArgsNumber(0,["IsEmpty","IsNotEmpty"]));case"ColorScaleRule":return this.checkValidations(t,this.chainValidations(this.checkThresholds(this.checkFormulaCompilation)),this.chainValidations(this.checkThresholds(this.checkNaN),this.batchValidations(this.checkMinBiggerThanMax,this.checkMinBiggerThanMid,this.checkMidBiggerThanMax)));case"IconSetRule":return this.checkValidations(t,this.chainValidations(this.checkInflectionPoints(this.checkNaN),this.checkLowerBiggerThanUpper),this.chainValidations(this.checkInflectionPoints(this.checkFormulaCompilation)))}return"Success"}checkOperatorArgsNumber(e,t){if(e>2)throw new Error("Checking more than 2 arguments is currently not supported. Add the appropriate CommandResult if you want to.");return o=>{if(t.includes(o.operator)){const t=[],s=e=>void 0===e||""===e;return e>=1&&s(o.values[0])&&t.push("FirstArgMissing"),e>=2&&s(o.values[1])&&t.push("SecondArgMissing"),t.length?t:"Success"}return"Success"}}checkNaN(e,t){if(["number","percentage","percentile"].includes(e.type)&&(""===e.value||isNaN(e.value)))switch(t){case"min":return"MinNaN";case"max":return"MaxNaN";case"mid":return"MidNaN";case"upperInflectionPoint":return"ValueUpperInflectionNaN";case"lowerInflectionPoint":return"ValueLowerInflectionNaN"}return"Success"}checkFormulaCompilation(e,t){if("formula"!==e.type)return"Success";try{gv(e.value||"")}catch(e){switch(t){case"min":return"MinInvalidFormula";case"max":return"MaxInvalidFormula";case"mid":return"MidInvalidFormula";case"upperInflectionPoint":return"ValueUpperInvalidFormula";case"lowerInflectionPoint":return"ValueLowerInvalidFormula"}}return"Success"}checkThresholds(e){return this.batchValidations((t=>e(t.minimum,"min")),(t=>e(t.maximum,"max")),(t=>t.midpoint?e(t.midpoint,"mid"):"Success"))}checkInflectionPoints(e){return this.batchValidations((t=>e(t.lowerInflectionPoint,"lowerInflectionPoint")),(t=>e(t.upperInflectionPoint,"upperInflectionPoint")))}checkLowerBiggerThanUpper(e){const t=e.lowerInflectionPoint.value,o=e.upperInflectionPoint.value;return["number","percentage","percentile"].includes(e.lowerInflectionPoint.type)&&e.lowerInflectionPoint.type===e.upperInflectionPoint.type&&Number(t)>Number(o)?"LowerBiggerThanUpper":"Success"}checkMinBiggerThanMax(e){const t=e.minimum.value,o=e.maximum.value;return["number","percentage","percentile"].includes(e.minimum.type)&&e.minimum.type===e.maximum.type&&r_(t)>=r_(o)?"MinBiggerThanMax":"Success"}checkMidBiggerThanMax(e){const t=e.midpoint?.value,o=e.maximum.value;return e.midpoint&&["number","percentage","percentile"].includes(e.midpoint.type)&&e.midpoint.type===e.maximum.type&&r_(t)>=r_(o)?"MidBiggerThanMax":"Success"}checkMinBiggerThanMid(e){const t=e.minimum.value,o=e.midpoint?.value;return e.midpoint&&["number","percentage","percentile"].includes(e.midpoint.type)&&e.minimum.type===e.midpoint.type&&r_(t)>=r_(o)?"MinBiggerThanMid":"Success"}removeConditionalFormatting(e,t){const o=this.cfRules[t].findIndex((t=>t.id===e));if(-1!==o){const e=this.cfRules[t].slice();e.splice(o,1),this.history.update("cfRules",t,e)}}changeCFPriority(e,t,o){const s=this.cfRules[o].findIndex((t=>t.id===e)),i=this.cfRules[o][s],n=s-t,r=[...this.cfRules[o]];r.splice(s,1),r.splice(n,0,i),this.history.update("cfRules",o,r)}}).add("figures",class extends s_{static getters=["getFigures","getFigure","getFigureSheetId"];figures={};allowDispatch(e){switch(e.type){case"CREATE_FIGURE":return this.checkFigureDuplicate(e.figure.id);case"UPDATE_FIGURE":case"DELETE_FIGURE":return this.checkFigureExists(e.sheetId,e.id);default:return"Success"}}beforeHandle(e){if("DELETE_SHEET"===e.type)this.getters.getFigures(e.sheetId).forEach((t=>{this.dispatch("DELETE_FIGURE",{id:t.id,sheetId:e.sheetId})}))}handle(e){switch(e.type){case"CREATE_SHEET":this.figures[e.sheetId]={};break;case"DELETE_SHEET":this.deleteSheet(e.sheetId);break;case"CREATE_FIGURE":this.addFigure(e.figure,e.sheetId);break;case"UPDATE_FIGURE":const{type:t,sheetId:o,...s}=e,i=s;this.updateFigure(o,i);break;case"DELETE_FIGURE":this.removeFigure(e.id,e.sheetId);break;case"REMOVE_COLUMNS_ROWS":this.onRowColDelete(e.sheetId,e.dimension)}}onRowColDelete(e,t){"ROW"===t?this.onRowDeletion(e):this.onColDeletion(e)}onRowDeletion(e){const t=this.getters.getNumberRows(e);let o=0;for(let s=0;s<t;s++)o+=this.getters.getUserRowSize(e,s)||L;const s=this.getters.getFigures(e);for(const t of s){const s=Math.min(t.y,o-t.height);s!==t.y&&this.dispatch("UPDATE_FIGURE",{sheetId:e,id:t.id,y:s})}}onColDeletion(e){const t=this.getters.getNumberCols(e);let o=0;for(let s=0;s<t;s++)o+=this.getters.getColSize(e,s);const s=this.getters.getFigures(e);for(const t of s){const s=Math.min(t.x,o-t.width);s!==t.x&&this.dispatch("UPDATE_FIGURE",{sheetId:e,id:t.id,x:s})}}updateFigure(e,t){if("id"in t)for(const[o,s]of Object.entries(t))switch(o){case"x":case"y":void 0!==s&&this.history.update("figures",e,t.id,o,Math.max(s,0));break;case"width":case"height":void 0!==s&&this.history.update("figures",e,t.id,o,s)}}addFigure(e,t){this.history.update("figures",t,e.id,e)}deleteSheet(e){this.history.update("figures",e,void 0)}removeFigure(e,t){this.history.update("figures",t,e,void 0)}checkFigureExists(e,t){return void 0===this.figures[e]?.[t]?"FigureDoesNotExist":"Success"}checkFigureDuplicate(e){return Object.values(this.figures).find((t=>t?.[e]))?"DuplicatedFigureId":"Success"}getFigures(e){return Object.values(this.figures[e]||{}).filter(Le)}getFigure(e,t){return this.figures[e]?.[t]}getFigureSheetId(e){return Object.keys(this.figures).find((t=>void 0!==this.figures[t]?.[e]))}import(e){for(let t of e.sheets){const e={};t.figures.forEach((t=>{e[t.id]=t})),this.figures[t.id]=e}}export(e){for(const t of e.sheets)for(const e of this.getFigures(t.id)){const o=void 0;t.figures.push({...e,data:o})}}exportForExcel(e){this.export(e)}}).add("chart",class extends s_{static getters=["isChartDefined","getChartDefinition","getChartType","getChartIds","getChart","getContextCreationChart"];charts={};createChart=function(e){const t=US.getAll().sort(((e,t)=>e.sequence-t.sequence));return function(o,s,i){const n=t.find((e=>e.match(s.type)));if(!n)throw new Error(`No builder for this chart: ${s.type}`);return n.createChart(s,i,e)}}(this.getters);validateChartDefinition=e=>function(e,t){const o=US.getAll().find((e=>e.match(t.type)));if(!o)throw new Error("Unknown chart type.");return o.validateChartDefinition(e,t)}(this,e.definition);adaptRanges(e){for(const[t,o]of Object.entries(this.charts))this.history.update("charts",t,o?.updateRanges(e))}allowDispatch(e){switch(e.type){case"CREATE_CHART":return this.checkValidations(e,this.chainValidations(this.validateChartDefinition,this.checkChartDuplicate));case"UPDATE_CHART":return this.checkValidations(e,this.chainValidations(this.validateChartDefinition,this.checkChartExists));default:return"Success"}}handle(e){switch(e.type){case"CREATE_CHART":this.addFigure(e.id,e.sheetId,e.position,e.size),this.addChart(e.id,e.definition);break;case"UPDATE_CHART":this.addChart(e.id,e.definition);break;case"DUPLICATE_SHEET":{const t=this.getters.getFigures(e.sheetId);for(const o of t)if("chart"===o.tag){const t=o.id.split(te).pop(),s=`${e.sheetIdTo}${te}${t}`,i=this.charts[o.id]?.copyForSheetId(e.sheetIdTo);i&&this.dispatch("CREATE_CHART",{id:s,position:{x:o.x,y:o.y},size:{width:o.width,height:o.height},definition:i.getDefinition(),sheetId:e.sheetIdTo})}break}case"DELETE_FIGURE":this.history.update("charts",e.id,void 0);break;case"DELETE_SHEET":for(let t of this.getChartIds(e.sheetId))this.history.update("charts",t,void 0)}}getContextCreationChart(e){return this.charts[e]?.getContextCreation()}getChart(e){return this.charts[e]}getChartType(e){const t=this.charts[e]?.type;if(!t)throw new Error("Chart not defined.");return t}isChartDefined(e){return e in this.charts&&void 0!==this.charts}getChartIds(e){return Object.entries(this.charts).filter((([,t])=>t?.sheetId===e)).map((([e])=>e))}getChartDefinition(e){const t=this.charts[e]?.getDefinition();if(!t)throw new Error(`There is no chart with the given figureId: ${e}`);return t}import(e){for(let t of e.sheets)if(t.figures)for(let e of t.figures)"chart"===e.tag&&(this.charts[e.id]=this.createChart(e.id,e.data,t.id))}export(e){if(e.sheets)for(let t of e.sheets){const e=this.getters.getFigures(t.id),o=[];for(let t of e){const e=t;if(e&&"chart"===e.tag){const t=this.charts[e.id]?.getDefinition();t&&(e.data=t,o.push(e))}else o.push(e)}t.figures=o}}addFigure(e,t,o={x:0,y:0},s={width:536,height:335}){if(this.getters.getFigure(t,e))return;const i={id:e,x:o.x,y:o.y,width:s.width,height:s.height,tag:"chart"};this.dispatch("CREATE_FIGURE",{sheetId:t,figure:i})}addChart(e,t){const o=this.getters.getFigureSheetId(e);o&&this.history.update("charts",e,this.createChart(e,t,o))}checkChartDuplicate(e){return this.getters.getFigureSheetId(e.id)?"DuplicatedChartId":"Success"}checkChartExists(e){return this.getters.getFigureSheetId(e.id)?"Success":"ChartDoesNotExist"}}).add("image",class extends s_{static getters=["getImage","getImagePath","getImageSize"];fileStore;images={};syncedImages=new Set;constructor(e){super(e),this.fileStore=e.external.fileStore}allowDispatch(e){return"CREATE_IMAGE"===e.type&&this.getters.getFigure(e.sheetId,e.figureId)?"InvalidFigureId":"Success"}handle(e){switch(e.type){case"CREATE_IMAGE":this.addImage(e.figureId,e.sheetId,e.position,e.size),this.history.update("images",e.sheetId,e.figureId,e.definition),this.syncedImages.add(e.definition.path);break;case"DUPLICATE_SHEET":{const t=this.getters.getFigures(e.sheetId);for(const o of t)if("image"===o.tag){const t=o.id.split(te).pop(),s=`${e.sheetIdTo}${te}${t}`,i=this.getImage(o.id);if(i){const t={width:o.width,height:o.height};this.dispatch("CREATE_IMAGE",{sheetId:e.sheetIdTo,figureId:s,position:{x:o.x,y:o.y},size:t,definition:be(i)})}}break}case"DELETE_FIGURE":this.history.update("images",e.sheetId,e.id,void 0);break;case"DELETE_SHEET":this.history.update("images",e.sheetId,void 0)}}garbageCollectExternalResources(){const e=new Set(this.getAllImages().map((e=>e.path)));for(const t of this.syncedImages)e.has(t)||this.fileStore?.delete(t)}getImage(e){for(const t of Object.values(this.images))if(t&&t[e])return t[e];throw new Error(`There is no image with the given figureId: ${e}`)}getImagePath(e){return this.getImage(e).path}getImageSize(e){return this.getImage(e).size}addImage(e,t,o,s){const i={id:e,x:o.x,y:o.y,width:s.width,height:s.height,tag:"image"};this.dispatch("CREATE_FIGURE",{sheetId:t,figure:i})}import(e){for(const t of e.sheets){const e=(t.figures||[]).filter((e=>"image"===e.tag));for(const o of e)this.history.update("images",t.id,o.id,o.data),this.syncedImages.add(o.data.path)}}export(e){for(const t of e.sheets){const e=t.figures.filter((e=>"image"===e.tag));for(const o of e)o.data=this.images[t.id]?.[o.id]}}exportForExcel(e){for(const t of e.sheets){t.images||(t.images=[]);const e=this.getters.getFigures(t.id),o=[];for(const t of e)if("image"===t?.tag){const e=this.getImage(t.id);e&&o.push({...t,data:be(e)})}t.images=[...t.images,...o]}}getAllImages(){const e=[];for(const t in this.images)e.push(...Object.values(this.images[t]||{}).filter(Le));return e}}).add("pivot_core",class extends s_{static getters=["getPivotCoreDefinition","getPivotDisplayName","getPivotId","getPivotFormulaId","getPivotIds","getPivotName","isExistingPivot"];nextFormulaId=1;pivots={};formulaIds={};allowDispatch(e){switch(e.type){case"UPDATE_PIVOT":if(Ge(e.pivot,this.pivots[e.pivotId]?.definition))return"NoChanges";break;case"RENAME_PIVOT":if(!(e.pivotId in this.pivots))return"PivotIdNotFound";if(""===e.name)return"EmptyName";break;case"INSERT_PIVOT":case"DUPLICATE_PIVOT":if(!(e.pivotId in this.pivots))return"PivotIdNotFound"}return"Success"}handle(e){switch(e.type){case"ADD_PIVOT":{const{pivotId:t,pivot:o}=e;this.addPivot(t,o);break}case"INSERT_PIVOT":{const{sheetId:t,col:o,row:s,pivotId:i,table:n}=e,r={sheetId:t,col:o,row:s},{cols:a,rows:l,measures:c,fieldsType:h}=n,d=new qI(a,l,c,h||{}),u=this.getPivotFormulaId(i);this.insertPivot(r,u,d);break}case"RENAME_PIVOT":this.history.update("pivots",e.pivotId,"definition","name",e.name);break;case"REMOVE_PIVOT":{const t={...this.pivots};delete t[e.pivotId];const o=this.getPivotFormulaId(e.pivotId);this.history.update("formulaIds",o,void 0),this.history.update("pivots",t);break}case"DUPLICATE_PIVOT":{const{pivotId:t,newPivotId:o}=e,s=be(this.getPivotCore(t).definition);s.name=e.duplicatedPivotName??s.name+" (copy)",this.addPivot(o,s);break}case"UPDATE_PIVOT":this.history.update("pivots",e.pivotId,"definition",e.pivot)}}getPivotDisplayName(e){return`(#${this.getPivotFormulaId(e)}) ${this.getPivotName(e)}`}getPivotName(e){return bo(this.getPivotCore(e).definition.name)}getPivotCoreDefinition(e){return this.getPivotCore(e).definition}getPivotId(e){return this.formulaIds[e]}getPivotFormulaId(e){return this.getPivotCore(e).formulaId}getPivotIds(){return Object.keys(this.pivots)}isExistingPivot(e){return e in this.pivots}addPivot(e,t,o=this.nextFormulaId.toString()){this.history.update("pivots",e,{definition:t,formulaId:o}),this.history.update("formulaIds",o,e),this.history.update("nextFormulaId",this.nextFormulaId+1)}insertPivot(e,t,o){this.resizeSheet(e.sheetId,e,o);const s=o.getPivotCells();for(let o=0;o<s.length;o++)for(let i=0;i<s[o].length;i++){const n=s[o][i];this.dispatch("UPDATE_CELL",{sheetId:e.sheetId,col:e.col+o,row:e.row+i,content:Jr(t,n)})}}resizeSheet(e,{col:t,row:o},s){const i=s.getNumberOfDataColumns()+1,n=this.getters.getNumberCols(e),r=n-t;r<i&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:n-1,sheetId:e,quantity:i-r,position:"after"});const a=s.columns.length+s.rows.length,l=this.getters.getNumberRows(e),c=l-o;c<a&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"ROW",base:l-1,sheetId:e,quantity:a-c,position:"after"})}getPivotCore(e){const t=this.pivots[e];if(!t)throw new Error(`Pivot with id ${e} not found`);return t}import(e){if(e.pivots)for(const[t,o]of Object.entries(e.pivots))this.addPivot(t,o,o.formulaId);this.history.update("nextFormulaId",e.pivotNextId||qr(this.pivots)+1)}export(e){e.pivots={};for(const t in this.pivots)e.pivots[t]={...this.getPivotCoreDefinition(t),formulaId:this.getPivotFormulaId(t)};e.pivotNextId=this.nextFormulaId}}).add("spreadsheet_pivot_core",class extends s_{adaptRanges(e){for(const t of this.getters.getPivotIds()){const o=this.getters.getPivotCoreDefinition(t);if("SPREADSHEET"===o.type&&o.dataSet){const{sheetId:s,zone:i}=o.dataSet,n=h_(this.getters.getRangeFromZone(s,i),e),r=n&&{sheetId:n.sheetId,zone:n.zone};this.dispatch("UPDATE_PIVOT",{pivotId:t,pivot:{...o,dataSet:r}})}}}}).add("tableStyle",class extends s_{static getters=["getNewCustomTableStyleName","getTableStyle","getTableStyles","isTableStyleEditable"];styles={};allowDispatch(e){switch(e.type){case"CREATE_TABLE":case"UPDATE_TABLE":if(e.config?.styleId&&!this.styles[e.config.styleId])return"InvalidTableConfig";break;case"CREATE_TABLE_STYLE":if(!Xy[e.templateName])return"InvalidTableStyle";try{ht(e.primaryColor)}catch(e){return"InvalidTableStyle"}}return"Success"}handle(e){switch(e.type){case"CREATE_TABLE_STYLE":const t=Ky(e.tableStyleName,e.templateName,e.primaryColor);this.history.update("styles",e.tableStyleId,t);break;case"REMOVE_TABLE_STYLE":const o={...this.styles};delete o[e.tableStyleId],this.history.update("styles",o);for(const t of this.getters.getSheetIds())for(const o of this.getters.getCoreTables(t))o.config.styleId===e.tableStyleId&&this.dispatch("UPDATE_TABLE",{sheetId:t,zone:o.range.zone,config:{styleId:My.styleId}})}}getTableStyle(e){if(!this.styles[e])throw new Error(`Table style ${e} does not exist`);return this.styles[e]}getTableStyles(){return this.styles}getNewCustomTableStyleName(){let e=bo("Custom Table Style");const t=new Set(Object.values(this.styles).map((e=>e.displayName)));if(!t.has(e))return e;let o=2;for(;t.has(`${e} ${o}`);)o++;return`${e} ${o}`}isTableStyleEditable(e){return!Yy[e]}import(e){for(const e in Yy)this.styles[e]=Yy[e];for(const t in e.customTableStyles){const o=e.customTableStyles[t];this.styles[t]=Ky(o.displayName,o.templateName,o.primaryColor)}}export(e){const t={};for(const e in this.styles)Yy[e]||(t[e]={displayName:this.styles[e].displayName,templateName:this.styles[e].templateName,primaryColor:this.styles[e].primaryColor});e.customTableStyles=t}}),AD=(new n).add("ui_sheet",class extends d_{static getters=["doesCellHaveGridIcon","getCellWidth","getCellIconSrc","getTextWidth","getCellText","getCellMultiLineText","getContiguousZone"];ctx=document.createElement("canvas").getContext("2d");allowDispatch(e){return this.chainValidations(this.checkSheetExists,this.checkZonesAreInSheet)(e)}handle(e){switch(e.type){case"AUTORESIZE_COLUMNS":for(let t of e.cols){const o=this.getColMaxWidth(e.sheetId,t);0!==o&&this.dispatch("RESIZE_COLUMNS_ROWS",{elements:[t],dimension:"COL",size:o,sheetId:e.sheetId})}break;case"AUTORESIZE_ROWS":for(let t of e.rows)this.dispatch("RESIZE_COLUMNS_ROWS",{elements:[t],dimension:"ROW",size:null,sheetId:e.sheetId})}}getCellWidth(e){const t=this.getters.getCellComputedStyle(e);let o=0;const s=this.getters.getEvaluatedCell(e).formattedValue;if(s){const e=Mn(this.ctx,s,t,void 0);o+=Math.max(...e.map((e=>In(this.ctx,e,t))))}if(this.getters.getCellIconSrc(e)&&(o+=function(e){return Dn(e)+8}(t)),this.getters.doesCellHaveGridIcon(e)&&(o+=20),0===o)return 0;if(o+=2*U,"wrap"===t.wrapping){const t=this.getters.getColSize(this.getters.getActiveSheetId(),e.col);return Math.min(t,o)}return o}getCellIconSrc(e){const t=QE.getAll();for(const o of t){const t=o(this.getters,e);if(t)return t}}getTextWidth(e,t){return In(this.ctx,e,t)}getCellText(e,t=!1){const o=this.getters.getCell(e);return t&&o?.isFormula?ur(o.content,this.getters.getLocale()):t&&!o?.content?"":this.getters.getEvaluatedCell(e).formattedValue}getCellMultiLineText(e,t){const o=this.getters.getCellStyle(e),s=this.getters.getCellText(e,this.getters.shouldShowFormulas());return Mn(this.ctx,s,o,t)}doesCellHaveGridIcon(e){const t=this.getters.isFilterHeader(e),o=!this.getters.isReadonly()&&this.getters.cellHasListDataValidationIcon(e);return t||o}getContiguousZone(e,t){const o=t=>{for(const o of we(t.left,t.right+1)){if(!this.isCellEmpty({sheetId:e,col:o,row:t.top-1}))return{...t,top:t.top-1};if(!this.isCellEmpty({sheetId:e,col:o,row:t.bottom+1}))return{...t,bottom:t.bottom+1}}for(const o of we(t.top,t.bottom+1)){if(!this.isCellEmpty({sheetId:e,col:t.left-1,row:o}))return{...t,left:t.left-1};if(!this.isCellEmpty({sheetId:e,col:t.right+1,row:o}))return{...t,right:t.right+1}}return t};let s=!1,i=t;do{s=!1;const e=o(i);Ki(i,e)||(s=!0,i=e)}while(s);return i}isCellEmpty(e){const t=this.getters.getMainCellPosition(e);return this.getters.getEvaluatedCell(t).type===So.empty}getColMaxWidth(e,t){const o=sn(this.getters.getColsZone(e,t,t)).map((t=>this.getCellWidth({sheetId:e,...t})));return Math.max(0,it(o))}checkSheetExists(e){return"sheetId"in e&&void 0===this.getters.tryGetSheet(e.sheetId)?"InvalidSheetId":"Success"}checkZonesAreInSheet(e){const t="sheetId"in e?e.sheetId:this.getters.tryGetActiveSheetId(),o=this.getters.getCommandZones(e);return!t&&o.length>0?"NoActiveSheet":t&&o.length>0?this.getters.checkZonesExistInSheet(t,o):"Success"}}).add("ui_options",class extends d_{static getters=["shouldShowFormulas"];showFormulas=!1;handle(e){if("SET_FORMULA_VISIBILITY"===e.type)this.showFormulas=e.show}shouldShowFormulas(){return this.showFormulas}}).add("autofill",class extends d_{static layers=["Autofill"];static getters=["getAutofillTooltip"];autofillZone;steps;lastCellSelected={};direction;tooltip;allowDispatch(e){if("AUTOFILL_SELECT"===e.type){const t=this.getters.getActiveSheetId();return this.lastCellSelected.col=-1===e.col?this.lastCellSelected.col:Ce(e.col,0,this.getters.getNumberCols(t)),this.lastCellSelected.row=-1===e.row?this.lastCellSelected.row:Ce(e.row,0,this.getters.getNumberRows(t)),void 0!==this.lastCellSelected.col&&void 0!==this.lastCellSelected.row?"Success":"InvalidAutofillSelection"}return"Success"}handle(e){switch(e.type){case"AUTOFILL":this.autofill(!0);break;case"AUTOFILL_SELECT":this.select(e.col,e.row);break;case"AUTOFILL_AUTO":this.autofillAuto();break;case"AUTOFILL_CELL":this.autoFillMerge(e.originCol,e.originRow,e.col,e.row);const t=this.getters.getActiveSheetId();this.dispatch("UPDATE_CELL",{sheetId:t,col:e.col,row:e.row,style:e.style||null,content:e.content||"",format:e.format||""}),this.dispatch("SET_BORDER",{sheetId:t,col:e.col,row:e.row,border:e.border}),this.autofillCF(e.originCol,e.originRow,e.col,e.row),this.autofillDV(e.originCol,e.originRow,e.col,e.row)}}getAutofillTooltip(){return this.tooltip}autofill(e){if(!this.autofillZone||!this.steps||void 0===this.direction)return void(this.tooltip=void 0);const t=this.getters.getSelectedZone(),o=this.autofillZone;switch(this.direction){case"down":for(let s=t.left;s<=t.right;s++){const i=[];for(let e=t.top;e<=t.bottom;e++)i.push(_t(s,e));const n=this.createGenerator(i);for(let t=o.top;t<=o.bottom;t++)this.computeNewCell(n,s,t,e)}break;case"up":for(let s=t.left;s<=t.right;s++){const i=[];for(let e=t.bottom;e>=t.top;e--)i.push(_t(s,e));const n=this.createGenerator(i);for(let t=o.bottom;t>=o.top;t--)this.computeNewCell(n,s,t,e)}break;case"left":for(let s=t.top;s<=t.bottom;s++){const i=[];for(let e=t.right;e>=t.left;e--)i.push(_t(e,s));const n=this.createGenerator(i);for(let t=o.right;t>=o.left;t--)this.computeNewCell(n,t,s,e)}break;case"right":for(let s=t.top;s<=t.bottom;s++){const i=[];for(let e=t.left;e<=t.right;e++)i.push(_t(e,s));const n=this.createGenerator(i);for(let t=o.left;t<=o.right;t++)this.computeNewCell(n,t,s,e)}}e&&(this.autofillZone=void 0,this.selection.resizeAnchorZone(this.direction,this.steps),this.lastCellSelected={},this.direction=void 0,this.steps=0,this.tooltip=void 0)}select(e,t){const o=this.getters.getSelectedZone();if(Ji(e,t,o))this.autofillZone=void 0;else{switch(this.direction=this.getDirection(e,t),this.direction){case"up":this.saveZone(t,o.top-1,o.left,o.right),this.steps=o.top-t;break;case"down":this.saveZone(o.bottom+1,t,o.left,o.right),this.steps=t-o.bottom;break;case"left":this.saveZone(o.top,o.bottom,e,o.left-1),this.steps=o.left-e;break;case"right":this.saveZone(o.top,o.bottom,o.right+1,e),this.steps=e-o.right}this.autofill(!1)}}autofillAuto(){const e=this.getters.getActivePosition(),t=this.getters.getTable(e);let o=t?t.range.zone.bottom:this.getAutofillAutoLastRow();const s=this.getters.getSelectedZone();for(let t=s.bottom+1;t<=o;t++)if(this.getters.getEvaluatedCell({...e,row:t}).type!==So.empty){o=t-1;break}o>s.bottom&&(this.select(e.col,o),this.autofill(!0))}getAutofillAutoLastRow(){const e=this.getters.getSelectedZone(),t=this.getters.getActiveSheetId();let o=e.left,s=e.bottom;if(o>0){let e={sheetId:t,col:o-1,row:s};for(;this.getters.getEvaluatedCell(e).type!==So.empty;)s+=1,e={sheetId:t,col:o-1,row:s}}if(s===e.bottom&&(o=e.right,o<=this.getters.getNumberCols(t))){let e={sheetId:t,col:o+1,row:s};for(;this.getters.getEvaluatedCell(e).type!==So.empty;)s+=1,e={sheetId:t,col:o+1,row:s}}return s-1}computeNewCell(e,t,o,s){const{cellData:i,tooltip:n,origin:r}=e.next(),{content:a,style:l,border:c,format:h}=i;this.tooltip=n,s&&this.dispatch("AUTOFILL_CELL",{originCol:r.col,originRow:r.row,col:t,row:o,content:a,style:l,border:c,format:h})}getRule(e,t){const o=Tv.getAll().sort(((e,t)=>e.sequence-t.sequence)).find((o=>o.condition(e,t)));return o&&o.generateRule(e,t)}createGenerator(e){const t=[],o=[],s=this.getters.getActiveSheetId();for(let t of e){const{col:e,row:i}=Ot(t),n=this.getters.getCell({sheetId:s,col:e,row:i});o.push({col:e,row:i,cell:n,sheetId:s})}const i=o.map((e=>e.cell));for(let e of o){let o={type:"COPY_MODIFIER"};if(e&&e.cell){o=this.getRule(e.cell,i)||o}const s=this.getters.getCellBorder(e)||void 0;t.push({data:{...e,border:s},rule:o})}return new K_(t,this.getters,this.direction)}saveZone(e,t,o,s){this.autofillZone={top:e,bottom:t,left:o,right:s}}getDirection(e,t){const o=this.getters.getSelectedZone(),s={up:{number:o.top-t,value:"up"},down:{number:t-o.bottom,value:"down"},left:{number:o.left-e,value:"left"},right:{number:e-o.right,value:"right"}};if(1===Object.values(s).map((e=>e.number>0?1:0)).reduce(((e,t)=>e+t)))return Object.values(s).find((e=>e.number>0?1:0)).value;const i=s.up.number>0?"up":"down",n=s.left.number>0?"left":"right";return Math.abs(s[i].number)>=Math.abs(s[n].number)?s[i].value:s[n].value}autoFillMerge(e,t,o,s){const i=this.getters.getActiveSheetId(),n={sheetId:i,col:o,row:s},r={sheetId:i,col:e,row:t};if(this.getters.isInMerge(n)&&!this.getters.isInMerge(r)){const e=this.getters.getMerge(n);e&&this.dispatch("REMOVE_MERGE",{sheetId:i,target:[e]})}const a=this.getters.getMerge(r);a?.left===e&&a?.top===t&&this.dispatch("ADD_MERGE",{sheetId:i,target:[{top:s,bottom:s+a.bottom-a.top,left:o,right:o+a.right-a.left}]})}autofillCF(e,t,o,s){const i=this.getters.getActiveSheetId(),n=this.getters.getRulesByCell(i,e,t);for(const e of n){const t=this.getters.getAdaptedCfRanges(i,e,[ln({col:o,row:s})],[]);t&&this.dispatch("ADD_CONDITIONAL_FORMAT",{cf:be(e),ranges:t,sheetId:i})}}autofillDV(e,t,o,s){const i=this.getters.getActiveSheetId(),n={sheetId:i,col:e,row:t},r=this.getters.getValidationRuleForCell(n);if(!r)return;const a=r.ranges.map((e=>e.zone)),l=Pi(a.concat(ln({col:o,row:s})),[]);this.dispatch("ADD_DATA_VALIDATION_RULE",{rule:r,ranges:l.map((e=>this.getters.getRangeDataFromZone(i,e))),sheetId:i})}drawLayer(e){if(!this.autofillZone)return;const{ctx:t,thinLineWidth:o}=e,{x:s,y:i,width:n,height:r}=this.getters.getVisibleRect(this.autofillZone);n>0&&r>0&&(t.strokeStyle="black",t.lineWidth=o,t.setLineDash([3]),t.strokeRect(s,i,n,r),t.setLineDash([]))}}).add("sort",class extends d_{allowDispatch(e){if("SORT_CELLS"===e.type){if(!Ji(e.col,e.row,e.zone))throw new Error(bo("The anchor must be part of the provided zone"));return this.checkValidations(e,this.checkMerge,this.checkMergeSizes)}return"Success"}handle(e){if("SORT_CELLS"===e.type)this.sortZone(e.sheetId,e,e.zone,e.sortDirection,e.sortOptions||{})}checkMerge({sheetId:e,zone:t}){if(!this.getters.doesIntersectMerge(e,t))return"Success";return sn(t).some((({col:t,row:o})=>!this.getters.isInMerge({sheetId:e,col:t,row:o})))?"InvalidSortZone":"Success"}checkMergeSizes({sheetId:e,zone:t}){if(!this.getters.doesIntersectMerge(e,t))return"Success";const o=this.getters.getMerges(e).filter((e=>Qi(e,t))),s=tn(o[0]);let[i,n]=[s.numberOfCols,s.numberOfRows];return o.every((e=>{let[t,o]=[e.right-e.left+1,e.bottom-e.top+1];return t===i&&o===n}))?"Success":"InvalidSortZone"}hasHeader(e,t){if(1===t[0].length)return!1;let o=t.map((t=>t.map((({col:t,row:o})=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:o}).type))));return o[0][0]===So.empty&&(o=o.slice(1)),!o.some((e=>e[0]===So.empty))&&!!o.some((e=>e[1]!==So.empty&&e[0]!==e[1]))}sortZone(e,t,o,s,i){const[n,r]=this.mainCellsSteps(e,o);let a=this.getters.getMainCellPosition({sheetId:e,col:t.col,row:t.row}).col,l=Object.assign({},o),c=this.mainCells(e,o);!i.sortHeaders&&this.hasHeader(e,c)&&(l.top+=r),c=this.mainCells(e,l);const h=function(e,t,o){const s=e.map(((e,t)=>({index:t,type:e.type,value:e.value})));return(o?s.map((e=>e.type===So.empty?{...e,type:So.number,value:0}:e)):s).sort(Ng(t))}(c[a-l.left].map((e=>this.getters.getEvaluatedCell(e))),s,Boolean(i.emptyCellAsZero)),d=h.map((e=>e.index)),[u,g]=[c.length,c[0].length],p=[];for(let e=0;e<u;e++)for(let t=0;t<g;t++){let{col:o,row:s,sheetId:i}=c[e][d[t]];const a=this.getters.getCell({sheetId:i,col:o,row:s});let h=l.left+e*n,u=l.top+t*r,g={sheetId:i,col:h,row:u,content:""};if(a){let e=a.content;if(a.isFormula){const t=this.getters.getCellPosition(a.id);e=this.getters.getTranslatedCellFormula(i,0,u-t.row,a.compiledFormula)}g.style=a.style,g.content=e,g.format=a.format}p.push(g)}p.forEach((e=>this.dispatch("UPDATE_CELL",e)))}mainCellsSteps(e,t){const o=this.getters.getMerge({sheetId:e,col:t.left,row:t.top});return[o?o.right-o.left+1:1,o?o.bottom-o.top+1:1]}mainCells(e,t){const[o,s]=this.mainCellsSteps(e,t),i=[],n=we(t.left,t.right+1,o),r=we(t.top,t.bottom+1,s);for(const t of n){const o=[];i.push(o);for(const s of r)o.push({sheetId:e,col:t,row:s})}return i}}).add("automatic_sum",class extends d_{static getters=["getAutomaticSums"];handle(e){if("SUM_SELECTION"===e.type){const e=this.getters.getActiveSheetId(),{zones:t,anchor:o}=this.getters.getSelection();for(const s of t){const t=this.getAutomaticSums(e,s,o.cell);this.dispatchCellUpdates(e,t)}}}getAutomaticSums(e,t,o){return this.shouldFindData(e,t)?this.sumAdjacentData(e,t,o):this.sumData(e,t)}sumData(e,t){const o=this.dimensionsToSum(e,t),s=this.sumDimensions(e,t,o).filter((({zone:t})=>!this.getters.isEmpty(e,t)));return o.has("ROW")&&o.has("COL")&&s.push(this.sumTotal(t)),s}sumAdjacentData(e,t,o){const{col:s,row:i}=Ji(o.col,o.row,t)?o:{col:t.left,row:t.top},n=this.findAdjacentData(e,s,i);return n?this.getters.isSingleCellOrMerge(e,t)||on(Yi(n,t))?[{position:{col:s,row:i},zone:n}]:this.sumDimensions(e,Yi(n,t),this.transpose(this.dimensionsToSum(e,t))):[]}findAdjacentData(e,t,o){const s=this.getters.getSheet(e),i=this.getters.getMainCellPosition({sheetId:e,col:t,row:o}),n=this.findSuitableZoneToSum(s,i.col,i.row);if(n)return this.getters.expandZone(e,n)}findSuitableZoneToSum(e,t,o){const s=this.getters.getEvaluatedCell({sheetId:e.id,col:t,row:o-1}),i=this.getters.getEvaluatedCell({sheetId:e.id,col:t-1,row:o});if(this.isNumber(i)&&!this.isNumber(s))return this.findHorizontalZone(e,t,o);const n=this.findVerticalZone(e,t,o);if(this.isZoneValid(n))return n;const r=this.findHorizontalZone(e,t,o);return this.isZoneValid(r)?r:void 0}findVerticalZone(e,t,o){const s={top:0,bottom:o-1,left:t,right:t},i=this.reduceZoneStart(e,s,s.bottom);return{...s,top:i}}findHorizontalZone(e,t,o){const s={top:o,bottom:o,left:0,right:t-1},i=this.reduceZoneStart(e,s,s.right);return{...s,left:i}}reduceZoneStart(e,t,o){const s=this.getters.getEvaluatedCellsInZone(e.id,t),i=we(o,-1,-1),n=it(i.filter((e=>s[e]&&!s[e].isAutoSummable))),r=xe(i.filter((e=>this.isNumber(s[e]))))[0]||[];return it(r)<n?1/0:nt(r)}shouldFindData(e,t){return this.getters.isEmpty(e,t)||this.getters.isSingleCellOrMerge(e,t)}isNumber(e){return e.type===So.number&&!(e.format&&Js(e.format))}isZoneValid(e){return e.bottom>=e.top&&e.right>=e.left}lastColIsEmpty(e,t){return this.getters.isEmpty(e,{...t,left:t.right})}lastRowIsEmpty(e,t){return this.getters.isEmpty(e,{...t,top:t.bottom})}dimensionsToSum(e,t){const o=new Set;return on(t)?(o.add(1===tn(t).numberOfCols?"COL":"ROW"),o):(this.lastColIsEmpty(e,t)&&o.add("ROW"),this.lastRowIsEmpty(e,t)&&o.add("COL"),0===o.size&&o.add("COL"),o)}sumDimensions(e,t,o){return[...o.has("COL")?this.sumColumns(t,e):[],...o.has("ROW")?this.sumRows(t,e):[]]}sumTotal(e){const{bottom:t,right:o}=e;return{position:{col:o,row:t},zone:{...e,top:t,right:o-1}}}sumColumns(e,t){const o=this.nextEmptyRow(t,{...e,bottom:e.bottom-1});return e={...e,bottom:Math.min(e.bottom,o.bottom-1)},sn(o).map((t=>({position:t,zone:{...e,right:t.col,left:t.col}})))}sumRows(e,t){const o=this.nextEmptyCol(t,{...e,right:e.right-1});return e={...e,right:Math.min(e.right,o.right-1)},sn(o).map((t=>({position:t,zone:{...e,top:t.row,bottom:t.row}})))}dispatchCellUpdates(e,t){for(const o of t){const{col:t,row:s}=o.position;this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:s,content:`=SUM(${this.getters.zoneToXC(e,o.zone)})`})}}nextEmptyRow(e,t){let o=t.bottom+1;const{left:s,right:i}=t;for(;!this.getters.isEmpty(e,{bottom:o,top:o,left:s,right:i});)o++;return{...t,top:o,bottom:o}}nextEmptyCol(e,t){let o=t.right+1;const{top:s,bottom:i}=t;for(;!this.getters.isEmpty(e,{left:o,right:o,top:s,bottom:i});)o++;return{...t,left:o,right:o}}transpose(e){return new Set([...e.values()].map((e=>"COL"===e?"ROW":"COL")))}}).add("format",class extends d_{handle(e){if("SET_DECIMAL"===e.type)this.setDecimal(e.sheetId,e.target,e.step)}setDecimal(e,t,o){const s={};for(const i of Pi(t))for(const t of sn(i)){const i=this.getCellNumberFormat({sheetId:e,...t});if(void 0!==i){this.getters.getLocale();const e=gi(i,o);s[e]=s[e]||[],s[e].push(t)}}for(const t in s){const o=Pi(s[t].map((e=>ln(e))));this.dispatch("SET_FORMATTING",{sheetId:e,format:t,target:o})}}getCellNumberFormat(e){for(const t of[e]){const e=this.getters.getEvaluatedCell(t);if(!(e.type!==So.number||e.format&&Js(e.format)))return e.format||ni(e.value)}}}).add("insert_pivot",class extends d_{static getters=[];handle(e){switch(e.type){case"INSERT_NEW_PIVOT":this.insertNewPivot(e.pivotId,e.newSheetId);break;case"DUPLICATE_PIVOT_IN_NEW_SHEET":this.duplicatePivotInNewSheet(e.pivotId,e.newPivotId,e.newSheetId);break;case"INSERT_PIVOT_WITH_TABLE":this.insertPivotWithTable(e.sheetId,e.col,e.row,e.pivotId,e.table,e.pivotMode)}}insertNewPivot(e,t){1===dn(this.getters.getSelectedZone())&&this.selection.selectTableAroundSelection();const o=this.getters.getActiveSheetId();this.dispatch("ADD_PIVOT",{pivotId:e,pivot:{dataSet:{zone:this.getters.getSelectedZone(),sheetId:o},columns:[],rows:[],measures:[],name:bo("New pivot"),type:"SPREADSHEET"}});const s=this.getters.getSheetIds().findIndex((e=>e===o))+1,i=this.getters.getPivotFormulaId(e);this.dispatch("CREATE_SHEET",{sheetId:t,name:bo("Pivot #%(formulaId)s",{formulaId:i}),position:s}),this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:o,sheetIdTo:t}),this.dispatch("UPDATE_CELL",{sheetId:t,col:0,row:0,content:`=PIVOT(${i})`})}duplicatePivotInNewSheet(e,t,o){this.dispatch("DUPLICATE_PIVOT",{pivotId:e,newPivotId:t,duplicatedPivotName:bo("%s (copy)",this.getters.getPivotCoreDefinition(e).name)});const s=this.getters.getActiveSheetId(),i=this.getters.getSheetIds().indexOf(s)+1,n=this.getters.getPivotFormulaId(t),r=this.getters.getPivotName(t);this.dispatch("CREATE_SHEET",{sheetId:o,name:this.getPivotDuplicateSheetName(bo("%(newPivotName)s (Pivot #%(formulaId)s)",{newPivotName:r,formulaId:n})),position:i}).isSuccessful&&(this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:s,sheetIdTo:o}),this.dispatch("UPDATE_CELL",{sheetId:o,col:0,row:0,content:`=PIVOT(${n})`}))}getPivotDuplicateSheetName(e){let t=1;const o=this.getters.getSheetIds().map((e=>this.getters.getSheetName(e))),s=e.replace(new RegExp(ae,"g")," ");let i=s;for(;o.includes(i);)i=`${s} (${t})`,t++;return i}insertPivotWithTable(e,t,o,s,i,n){const{cols:r,rows:a,measures:l,fieldsType:c}=i,h=new qI(r,a,l,c||{}),d=h.columns.length-1;this.resizeSheet(e,t,o,h);const u=this.getters.getPivotFormulaId(s);let g;"dynamic"===n?(this.dispatch("UPDATE_CELL",{sheetId:e,col:t,row:o,content:`=PIVOT(${u})`}),g={left:t,right:t,top:o,bottom:o}):(this.dispatch("INSERT_PIVOT",{sheetId:e,col:t,row:o,pivotId:s,table:h.export()}),g={left:t,right:t+h.getNumberOfDataColumns(),top:o,bottom:o+d+h.rows.length}),this.dispatch("CREATE_TABLE",{tableType:n,sheetId:e,ranges:[this.getters.getRangeDataFromZone(e,g)],config:{...pe,numberOfHeaders:d}})}resizeSheet(e,t,o,s){const i=s.getNumberOfDataColumns()+1,n=this.getters.getNumberCols(e),r=n-t;r<i&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:n-1,sheetId:e,quantity:i-r,position:"after"});const a=s.columns.length+s.rows.length,l=this.getters.getNumberRows(e),c=l-o;c<a&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"ROW",base:l-1,sheetId:e,quantity:a-c,position:"after"})}}).add("split_to_columns",class extends d_{static getters=["getAutomaticSeparator"];allowDispatch(e){return"SPLIT_TEXT_INTO_COLUMNS"===e.type?this.chainValidations(this.batchValidations(this.checkSingleColSelected,this.checkNonEmptySelector),this.batchValidations(this.checkNotOverwritingContent,this.checkSeparatorInSelection))(e):"Success"}handle(e){if("SPLIT_TEXT_INTO_COLUMNS"===e.type)this.splitIntoColumns(e)}getAutomaticSeparator(){const e=this.getters.getSelectedCells();for(const t of e)if(t.value&&t.type===So.text){const e=this.getAutoSeparatorForString(t.value);if(e)return e}return" "}getAutoSeparatorForString(e){const t=[ue,";",","," ","."];for(const o of t)if(e.includes(o))return o}splitIntoColumns({separator:e,addNewColumns:t}){const o=this.getters.getSelectedZone(),s=this.getters.getActiveSheetId(),i=this.getSplittedCols(o,e);t&&this.addColsToAvoidCollisions(o,i),this.removeMergesInSplitZone(o,i),this.addColumnsToNotOverflowSheet(o,i);for(let e=0;e<i.length;e++){const t=o.top+e,n=i[e],r=o.left,a=this.getters.getCell({sheetId:s,col:r,row:t});if(1!==n.length||n[0]!==a?.content)for(const[e,o]of n.entries())this.dispatch("UPDATE_CELL",{sheetId:s,col:r+e,row:t,content:lr(o,this.getters.getLocale()),format:"",style:a?.style||null})}}getSplittedCols(e,t){if(!t)throw new Error("Separator cannot be empty");const o=this.getters.getActiveSheetId(),s=[];for(const i of we(e.top,e.bottom+1)){const n=this.getters.getEvaluatedCell({sheetId:o,col:e.left,row:i}).formattedValue;s.push(this.splitAndRemoveTrailingEmpty(n,t))}return s}splitAndRemoveTrailingEmpty(e,t){const o=e.split(t);for(;o.length>1&&""===o[o.length-1];)o.pop();return o}willSplittedColsOverwriteContent(e,t){const o=this.getters.getActiveSheetId();for(const s of we(e.top,e.bottom+1)){const i=t[s-e.top];for(let t=1;t<i.length;t++){const i=this.getters.getCell({sheetId:o,col:e.left+t,row:s});if(i&&i.content)return!0}}return!1}removeMergesInSplitZone(e,t){const o=this.getters.getActiveSheetId(),s=Math.max(...t.map((e=>e.length))),i={...e,right:e.left+s-1},n=this.getters.getMergesInZone(o,i);this.dispatch("REMOVE_MERGE",{sheetId:o,target:n})}addColsToAvoidCollisions(e,t){const o=this.getters.getActiveSheetId();let s=0;for(const i of we(e.top,e.bottom+1)){const n={sheetId:o,col:e.left,row:i},r=t[i-e.top],a=this.getColsToAddToAvoidCollision(n,r);s=Math.max(s,a)}s&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:e.left,sheetId:o,quantity:s,position:"after"})}getColsToAddToAvoidCollision(e,t){const o=t.length;for(let t=1;t<o;t++){const s=e.col+t,i=this.getters.getCell({...e,col:s});if(i&&i.content)return o-t}return 0}addColumnsToNotOverflowSheet(e,t){const o=this.getters.getActiveSheetId(),s=Math.max(...t.map((e=>e.length-1))),i=this.getters.getNumberCols(o)-1;e.left+s>i&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:i,sheetId:o,quantity:e.left+s-i,position:"after"})}checkSingleColSelected(){return this.getters.isSingleColSelected()?"Success":"MoreThanOneColumnSelected"}checkNonEmptySelector(e){return""===e.separator?"EmptySplitSeparator":"Success"}checkNotOverwritingContent(e){if(e.addNewColumns||e.force)return"Success";const t=this.getters.getSelectedZones()[0],o=this.getSplittedCols(t,e.separator);return this.willSplittedColsOverwriteContent(t,o)?"SplitWillOverwriteContent":"Success"}checkSeparatorInSelection({separator:e}){const t=this.getters.getSelectedCells();for(const o of t)if(o.formattedValue.includes(e))return"Success";return"NoSplitSeparatorInSelection"}}).add("collaborative",class extends d_{static getters=["getClientsToDisplay","getClient","getConnectedClients","isFullySynchronized"];static layers=["Selection"];availableColors=new Set(dD);colors={};session;constructor(e){super(e),this.session=e.session}isPositionValid(e){return e.row<this.getters.getNumberRows(e.sheetId)&&e.col<this.getters.getNumberCols(e.sheetId)}chooseNewColor(){0===this.availableColors.size&&(this.availableColors=new Set(dD));const e=(t=[...this.availableColors.values()])[Math.floor(Math.random()*t.length)];var t;return this.availableColors.delete(e),e}getClient(){return this.session.getClient()}getConnectedClients(){return this.session.getConnectedClients()}isFullySynchronized(){return this.session.isFullySynchronized()}getClientsToDisplay(){try{this.getters.getClient()}catch(e){if(e instanceof cD)return[];throw e}const e=this.getters.getActiveSheetId(),t=[];for(const o of this.getters.getConnectedClients())if(o.id!==this.getters.getClient().id&&o.position&&o.position.sheetId===e&&this.isPositionValid(o.position)){const e=o.position;this.colors[o.id]||(this.colors[o.id]=this.chooseNewColor());const s=this.colors[o.id];t.push({...o,position:e,color:s})}return t}drawLayer(e){if(this.getters.isDashboard())return;const{ctx:t,thinLineWidth:o}=e,s=this.getters.getActiveSheetId();for(const e of this.getClientsToDisplay()){const{row:i,col:n}=e.position,r=this.getters.expandZone(s,{top:i,bottom:i,left:n,right:n}),{x:a,y:l,width:c,height:h}=this.getters.getVisibleRect(r);if(c<=0||h<=0)continue;const d=e.color,u=`${d}10`;t.fillStyle=u,t.lineWidth=4*o,t.strokeStyle=d,t.globalCompositeOperation="multiply",t.fillRect(a,l,c,h),t.globalCompositeOperation="source-over",t.strokeRect(a,l,c,h),t.font=`bold ${j+1}px ${Y}`}}}).add("history",class extends d_{static getters=["canUndo","canRedo"];undoStack=[];redoStack=[];session;constructor(e){super(e),this.session=e.session,this.session.on("new-local-state-update",this,this.onNewLocalStateUpdate),this.session.on("pending-revisions-dropped",this,(({revisionIds:e})=>this.drop(e))),this.session.on("snapshot",this,(()=>{this.undoStack=[],this.redoStack=[]}))}allowDispatch(e){switch(e.type){case"REQUEST_UNDO":if(!this.canUndo())return"EmptyUndoStack";break;case"REQUEST_REDO":if(!this.canRedo())return"EmptyRedoStack"}return"Success"}handle(e){switch(e.type){case"REQUEST_UNDO":case"REQUEST_REDO":this.requestHistoryChange("REQUEST_UNDO"===e.type?"UNDO":"REDO")}}finalize(){}requestHistoryChange(e){const t="UNDO"===e?this.undoStack.pop():this.redoStack.pop();if(t)"UNDO"===e?(this.session.undo(t),this.redoStack.push(t)):(this.session.redo(t),this.undoStack.push(t));else{const e=this.getPossibleRevisionToRepeat();if(!e)return;const t=ID(e,this.getters);if(!t)return;if(!Array.isArray(t))return void this.dispatch(t.type,t);for(const e of t)this.dispatch(e.type,e)}}canUndo(){return this.undoStack.length>0}canRedo(){if(this.redoStack.length>0)return!0;const e=this.getPossibleRevisionToRepeat();return!(!(t=e)||!t.rootCommand||"object"!=typeof t.rootCommand)&&(To(t.rootCommand)?wD.contains(t.rootCommand.type):xD.contains(t.rootCommand.type));var t}drop(e){this.undoStack=this.undoStack.filter((t=>!e.includes(t))),this.redoStack=[]}onNewLocalStateUpdate({id:e}){this.undoStack.push(e),this.redoStack=[],this.undoStack.length>99&&this.undoStack.shift()}getPossibleRevisionToRepeat(){return this.session.getLastLocalNonEmptyRevision()}}).add("data_cleanup",class extends d_{allowDispatch(e){return"REMOVE_DUPLICATES"===e.type?this.checkValidations(e,this.chainValidations(this.checkSingleRangeSelected,this.checkNoMergeInZone,this.checkRangeContainsValues,this.checkColumnsIncludedInZone),this.chainValidations(this.checkNoColumnProvided,this.checkColumnsAreUnique)):"Success"}handle(e){switch(e.type){case"REMOVE_DUPLICATES":this.removeDuplicates(e.columns,e.hasHeader);break;case"TRIM_WHITESPACE":this.trimWhitespace()}}removeDuplicates(e,t){const o=this.getters.getActiveSheetId(),s=this.getters.getSelectedZone();t&&(s.top+=1);const i=this.getUniqueRowsIndexes(o,s.top,s.bottom,e),n=i.length;if(n===tn(s).numberOfRows)return void this.notifyRowsRemovedAndRemaining(0,n);const r=i.map((e=>({left:s.left,top:e,right:s.right,bottom:e}))),a=new ra(this.getters,this.dispatch),l=a.copy(zn(o,r));if(!l)return;this.dispatch("CLEAR_CELLS",{target:[s],sheetId:o});const c={left:s.left,top:s.top,right:s.left,bottom:s.top};a.paste({zones:[c],sheetId:o},l,{isCutOperation:!1});const h={left:s.left,top:s.top-(t?1:0),right:s.right,bottom:s.top+n-1};this.selection.selectZone({cell:{col:h.left,row:h.top},zone:h});const d=s.bottom-s.top+1-n;this.notifyRowsRemovedAndRemaining(d,n)}getUniqueRowsIndexes(e,t,o,s){const i=new Map;for(const n of we(t,o+1)){const t=s.map((t=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:n}).value));!Object.values(i).some((e=>Ge(e,t)))&&(i[n]=t)}return Object.keys(i).map((e=>parseInt(e)))}notifyRowsRemovedAndRemaining(e,t){this.ui.notifyUI({type:"info",text:bo("%s duplicate rows found and removed.\n%s unique rows remain.",e.toString(),t.toString()),sticky:!1})}checkSingleRangeSelected(){return 1!==this.getters.getSelectedZones().length?"MoreThanOneRangeSelected":"Success"}checkNoMergeInZone(){const e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZone();return this.getters.getMergesInZone(e,t).length>0?"WillRemoveExistingMerge":"Success"}checkRangeContainsValues(e){const t=this.getters.getActiveSheetId(),o=this.getters.getSelectedZone();e.hasHeader&&(o.top+=1);return this.getters.getEvaluatedCellsInZone(t,o).every((e=>"empty"===e.type))?"EmptyTarget":"Success"}checkNoColumnProvided(e){return 0===e.columns.length?"NoColumnsProvided":"Success"}checkColumnsIncludedInZone(e){const t=this.getters.getSelectedZone();return e.columns.some((e=>e<t.left||e>t.right))?"ColumnsNotIncludedInZone":"Success"}checkColumnsAreUnique(e){return e.columns.length!==new Set(e.columns).size?"DuplicatesColumnsSelected":"Success"}trimWhitespace(){const e=Pi(this.getters.getSelectedZones()),t=this.getters.getActiveSheetId();let o=0;for(const{col:s,row:i}of e.map(sn).flat()){const e=this.getters.getCell({col:s,row:i,sheetId:t});if(!e)continue;const n=tt(e.content);n!==e.content&&(o+=1,this.dispatch("UPDATE_CELL",{sheetId:t,col:s,row:i,content:n}))}const s=o?bo("Trimmed whitespace from %s cells.",o):bo("No selected cells had whitespace trimmed.");this.ui.notifyUI({type:"info",text:s,sticky:!1})}}).add("table_autofill",class extends d_{handle(e){if("AUTOFILL_TABLE_COLUMN"===e.type){const t=this.getters.getCoreTable(e),o=this.getters.getCell(e);if(!t?.config.automaticAutofill||"dynamic"===t.type||!o?.isFormula)return;const{col:s,row:i}=e,n=function(e,t){const o=t.numberOfHeaders,s={...e,top:e.top+o};return s.top<=s.bottom?s:void 0}(t.range.zone,t.config);if(n&&Ji(s,i,n)){const t=e.autofillRowStart??n.top,o=e.autofillRowEnd??n.bottom,s={...n,top:t,bottom:o};this.autofillTableZone(e,s)}}}autofillTableZone(e,t){if(t.top===t.bottom)return;const{col:o,row:s,sheetId:i}=e;for(let e=t.top;e<=t.bottom;e++)if(e!==s&&this.getters.getEvaluatedCell({col:o,row:e,sheetId:i}).type!==So.empty)return;const n={zone:this.getters.getSelectedZone(),cell:this.getters.getActivePosition()};this.selection.selectCell(o,s),this.dispatch("AUTOFILL_SELECT",{col:o,row:t.bottom}),this.dispatch("AUTOFILL"),this.selection.selectCell(o,s),this.dispatch("AUTOFILL_SELECT",{col:o,row:t.top}),this.dispatch("AUTOFILL"),this.selection.selectZone(n)}}).add("table_ui_resize",class extends d_{allowDispatch(e){if("RESIZE_TABLE"===e.type){const t=this.getters.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!t)return"TableNotFound";const o=t.range.zone,s=this.getters.getRangeFromRangeData(e.newTableRange).zone;return s.top!==o.top||s.left!==o.left?"InvalidTableResize":this.canDispatch("UPDATE_TABLE",{...e}).reasons}return"Success"}handle(e){switch(e.type){case"RESIZE_TABLE":{const t=this.getters.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(this.dispatch("UPDATE_TABLE",{...e}),!t||!t.config.automaticAutofill)return;const o=t.range.zone,s=this.getters.getRangeFromRangeData(e.newTableRange).zone;if(s.bottom>=o.bottom){for(let t=s.left;t<=s.right;t++){const i={col:t,row:o.bottom,sheetId:e.sheetId};this.getters.getCell(i)?.content.startsWith("=")&&this.dispatch("AUTOFILL_TABLE_COLUMN",{...i,autofillRowStart:o.bottom,autofillRowEnd:s.bottom})}break}}}}}).add("datavalidation_insert",class extends d_{handle(e){if("ADD_DATA_VALIDATION_RULE"===e.type)if("isBoolean"===e.rule.criterion.type){const t=e.ranges.map((e=>this.getters.getRangeFromRangeData(e)));for(const e of bn(t)){const t=this.getters.getCell(e),o=this.getters.getEvaluatedCell(e);if(t?.content)if(t?.content&&o.type===So.empty){let o;if(t.content.startsWith("=")){const s=this.getters.evaluateFormula(e.sheetId,t.content);o=(No(s)?s[0][0]:s)?.toString()}else o=t.content;o&&Ie(o)||this.dispatch("UPDATE_CELL",{...e,content:"FALSE"})}else o.type!==So.boolean&&this.dispatch("UPDATE_CELL",{...e,content:"FALSE"});else this.dispatch("UPDATE_CELL",{...e,content:"FALSE"})}}}}),OD=(new n).add("selection",class extends d_{static layers=["Selection"];static getters=["getActiveSheet","getActiveSheetId","getActiveCell","getActiveCols","getActiveRows","getCurrentStyle","getSelectedZones","getSelectedZone","getSelectedCells","getSelectedFigureId","getSelection","getActivePosition","getSheetPosition","isSingleColSelected","getElementsFromSelection","tryGetActiveSheetId","isGridSelectionActive"];gridSelection={anchor:{cell:{col:0,row:0},zone:{top:0,left:0,bottom:0,right:0}},zones:[{top:0,left:0,bottom:0,right:0}]};selectedFigureId=null;sheetsData={};moveClient;activeSheet=null;constructor(e){super(e),this.moveClient=e.moveClient}allowDispatch(e){switch(e.type){case"ACTIVATE_SHEET":try{if(!this.getters.getSheet(e.sheetIdTo).isVisible)return"SheetIsHidden";break}catch(e){return"InvalidSheetId"}case"MOVE_COLUMNS_ROWS":return this.isMoveElementAllowed(e)}return"Success"}handleEvent(e){const t=e.anchor;let o=[];switch(e.mode){case"overrideSelection":o=[t.zone];break;case"updateAnchor":o=[...this.gridSelection.zones];const s=o.findIndex((t=>Ki(t,e.previousAnchor.zone)));s>=0&&(o[s]=t.zone);break;case"newAnchor":o=[...this.gridSelection.zones,t.zone]}this.setSelectionMixin(e.anchor,o),this.selection.resetDefaultAnchor(this,be(this.gridSelection.anchor));const{col:s,row:i}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.getters.getActiveSheetId(),col:s,row:i}),this.selectedFigureId=null}handle(e){switch(e.type){case"ACTIVATE_SHEET":this.selectedFigureId=null;break;case"DELETE_FIGURE":this.selectedFigureId===e.id&&(this.selectedFigureId=null);break;case"DELETE_SHEET":this.selectedFigureId&&this.getters.getFigure(e.sheetId,this.selectedFigureId)&&(this.selectedFigureId=null)}switch(e.type){case"START":const t=this.getters.getVisibleSheetIds()[0];this.activateSheet(t,t);const{col:o,row:s}=this.getters.getNextVisibleCellPosition({sheetId:t,col:0,row:0});this.selectCell(o,s),this.selection.registerAsDefault(this,this.gridSelection.anchor,{handleEvent:this.handleEvent.bind(this)}),this.moveClient({sheetId:t,col:0,row:0});break;case"ACTIVATE_SHEET":this.activateSheet(e.sheetIdFrom,e.sheetIdTo);break;case"REMOVE_COLUMNS_ROWS":{const t=this.getters.getActiveSheetId();if(e.sheetId===t){"COL"===e.dimension?this.onColumnsRemoved(e):this.onRowsRemoved(e);const{col:o,row:s}=this.gridSelection.anchor.cell;this.moveClient({sheetId:t,col:o,row:s})}break}case"ADD_COLUMNS_ROWS":{const t=this.getters.getActiveSheetId();if(e.sheetId===t){this.onAddElements(e);const{col:o,row:s}=this.gridSelection.anchor.cell;this.moveClient({sheetId:t,col:o,row:s})}break}case"MOVE_COLUMNS_ROWS":e.sheetId===this.getActiveSheetId()&&this.onMoveElements(e);break;case"SELECT_FIGURE":this.selectedFigureId=e.id;break;case"ACTIVATE_NEXT_SHEET":this.activateNextSheet("right");break;case"ACTIVATE_PREVIOUS_SHEET":this.activateNextSheet("left");break;case"HIDE_SHEET":e.sheetId===this.getActiveSheetId()&&this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:e.sheetId,sheetIdTo:this.getters.getVisibleSheetIds()[0]});break;case"UNDO":case"REDO":case"DELETE_SHEET":const i=Object.keys(this.sheetsData).filter((e=>!this.getters.tryGetSheet(e)));for(const e of i)delete this.sheetsData[e];for(const e in this.sheetsData){const t=this.clipSelection(e,this.sheetsData[e].gridSelection);this.sheetsData[e]={gridSelection:be(t)}}if(!this.getters.tryGetSheet(this.getters.getActiveSheetId())){const e=this.getters.getVisibleSheetIds();if(this.activeSheet=this.getters.getSheet(e[0]),this.activeSheet.id in this.sheetsData){const{anchor:e}=this.clipSelection(this.activeSheet.id,this.sheetsData[this.activeSheet.id].gridSelection);this.selectCell(e.cell.col,e.cell.row)}else this.selectCell(0,0);const{col:t,row:o}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.getters.getActiveSheetId(),col:t,row:o})}const n=this.getters.getActiveSheetId();this.gridSelection.zones=this.gridSelection.zones.map((e=>this.getters.expandZone(n,e))),this.gridSelection.anchor.zone=this.getters.expandZone(n,this.gridSelection.anchor.zone),this.setSelectionMixin(this.gridSelection.anchor,this.gridSelection.zones),this.selectedFigureId=null}}finalize(){this.selection.resetDefaultAnchor(this,be(this.gridSelection.anchor))}isGridSelectionActive(){return this.selection.isListening(this)}getActiveSheet(){return this.activeSheet}getActiveSheetId(){return this.activeSheet.id}tryGetActiveSheetId(){return this.activeSheet?.id}getActiveCell(){return this.getters.getEvaluatedCell(this.getActivePosition())}getActiveCols(){const e=new Set;for(let t of this.gridSelection.zones)if(0===t.top&&t.bottom===this.getters.getNumberRows(this.getters.getActiveSheetId())-1)for(let o=t.left;o<=t.right;o++)e.add(o);return e}getActiveRows(){const e=new Set,t=this.getters.getActiveSheetId();for(let o of this.gridSelection.zones)if(0===o.left&&o.right===this.getters.getNumberCols(t)-1)for(let t=o.top;t<=o.bottom;t++)e.add(t);return e}getCurrentStyle(){const e=this.getters.getSelectedZone(),t=this.getters.getActiveSheetId();return this.getters.getCellStyle({sheetId:t,col:e.left,row:e.top})}getSelectedZones(){return be(this.gridSelection.zones)}getSelectedZone(){return be(this.gridSelection.anchor.zone)}getSelection(){return be(this.gridSelection)}getSelectedCells(){const e=this.getters.getActiveSheetId(),t=[];for(const o of this.gridSelection.zones)t.push(...this.getters.getEvaluatedCellsInZone(e,o));return t}getSelectedFigureId(){return this.selectedFigureId}getActivePosition(){return this.getters.getMainCellPosition({sheetId:this.getActiveSheetId(),col:this.gridSelection.anchor.cell.col,row:this.gridSelection.anchor.cell.row})}getSheetPosition(e){if(e===this.getters.getActiveSheetId())return this.getActivePosition();{const t=this.sheetsData[e];return t?{sheetId:e,col:t.gridSelection.anchor.cell.col,row:t.gridSelection.anchor.cell.row}:this.getters.getNextVisibleCellPosition({sheetId:e,col:0,row:0})}}isSingleColSelected(){const e=this.getters.getSelectedZones();return 1===e.length&&e[0].left===e[0].right}getElementsFromSelection(e){if("COL"===e&&0===this.getters.getActiveCols().size)return[];if("ROW"===e&&0===this.getters.getActiveRows().size)return[];const t=this.getters.getSelectedZones();let o=[];const s="COL"===e?"left":"top",i="COL"===e?"right":"bottom";for(const e of t){const t=Array.from({length:e[i]-e[s]+1},((t,o)=>e[s]+o));o=o.concat(t)}return[...new Set(o)].sort()}activateSheet(e,t){if(this.setActiveSheet(t),this.sheetsData[e]={gridSelection:be(this.gridSelection)},t in this.sheetsData)Object.assign(this,this.sheetsData[t]),this.selection.resetDefaultAnchor(this,be(this.gridSelection.anchor));else{const{col:e,row:o}=this.getters.getNextVisibleCellPosition({sheetId:t,col:0,row:0});this.selectCell(e,o)}}setSelectionMixin(e,t){const{anchor:o,zones:s}=this.clipSelection(this.getters.getActiveSheetId(),{anchor:e,zones:t});this.gridSelection.anchor=o,this.gridSelection.zones=function(e){return e.reverse().filter(((e,t,o)=>t===o.findIndex((t=>t.top===e.top&&t.bottom===e.bottom&&t.left===e.left&&t.right===e.right)))).reverse()}(s)}selectCell(e,t){const o=this.getters.getActiveSheetId(),s=this.getters.expandZone(o,{left:e,right:e,top:t,bottom:t});this.setSelectionMixin({zone:s,cell:{col:e,row:t}},[s])}setActiveSheet(e){const t=this.getters.getSheet(e);this.activeSheet=t}activateNextSheet(e){const t=this.getters.getSheetIds(),o=(t.findIndex((e=>e===this.activeSheet.id))+("left"===e?t.length-1:1))%t.length;this.dispatch("ACTIVATE_SHEET",{sheetIdFrom:this.getActiveSheetId(),sheetIdTo:t[o]})}onColumnsRemoved(e){const{cell:t,zone:o}=this.gridSelection.anchor,s=Zi(o,"left",[...e.elements]);let i={left:t.col,right:t.col,top:t.row,bottom:t.row};i=Zi(i,"left",[...e.elements]);const n={cell:{col:i.left,row:i.top},zone:s},r=this.gridSelection.zones.map((t=>Zi(t,"left",[...e.elements])));this.setSelectionMixin(n,r)}onRowsRemoved(e){const{cell:t,zone:o}=this.gridSelection.anchor,s=Zi(o,"top",[...e.elements]);let i={left:t.col,right:t.col,top:t.row,bottom:t.row};i=Zi(i,"top",[...e.elements]);const n={cell:{col:i.left,row:i.top},zone:s},r=this.gridSelection.zones.map((t=>Zi(t,"top",[...e.elements])));this.setSelectionMixin(n,r)}onAddElements(e){const t="COL"===e.dimension?"left":"top",o=qi(this.gridSelection.anchor.zone,t,e.base,e.position,e.quantity),s=this.gridSelection.zones.map((o=>qi(o,t,e.base,e.position,e.quantity))),i={cell:{col:o.left,row:o.top},zone:o};this.setSelectionMixin(i,s)}onMoveElements(e){const t=e.elements.length;this.dispatch("ADD_COLUMNS_ROWS",{dimension:e.dimension,sheetId:e.sheetId,base:e.base,quantity:t,position:e.position});const o="COL"===e.dimension,s=e.elements[0],i=e.elements[t-1],n=e.base<s,r=n&&o?t:0,a=n&&!o?t:0,l=[{left:o?s+r:0,right:o?i+r:this.getters.getNumberCols(e.sheetId)-1,top:o?0:s+a,bottom:o?this.getters.getNumberRows(e.sheetId)-1:i+a}],c=this.getActiveSheetId(),h=new ra(this.getters,this.dispatch),d=h.copy(zn(c,l));if(!d)return;const u=n?e.base:e.base+1,g=[{left:o?u:0,right:o?u+t-1:this.getters.getNumberCols(e.sheetId)-1,top:o?0:u,bottom:o?this.getters.getNumberRows(e.sheetId)-1:u+t-1}];h.paste({zones:g,sheetId:c},d,{isCutOperation:!0});const p=n?e.elements.map((e=>e+t)):e.elements;let m=e.base;for(const t of p){const o=this.getters.getHeaderSize(e.sheetId,e.dimension,t);this.dispatch("RESIZE_COLUMNS_ROWS",{dimension:e.dimension,sheetId:e.sheetId,size:o,elements:[m]}),m+=1}this.dispatch("REMOVE_COLUMNS_ROWS",{dimension:e.dimension,sheetId:e.sheetId,elements:p})}isMoveElementAllowed(e){const t="COL"===e.dimension,o=e.elements[0],s=e.elements[e.elements.length-1],i=e.sheetId,n=t?this.getters.doesColumnsHaveCommonMerges:this.getters.doesRowsHaveCommonMerges;if(n(i,o-1,o)||n(i,s,s+1)||n(i,e.base-1,e.base))return"WillRemoveExistingMerge";const r=[e.base,...e.elements],a=t?this.getters.getNumberCols(i):this.getters.getNumberRows(i);return r.some((e=>e<0||e>=a))?"InvalidHeaderIndex":"Success"}clipSelection(e,t){const o=this.getters.getNumberCols(e)-1,s=this.getters.getNumberRows(e)-1;return{zones:t.zones.map((e=>({left:Ce(e.left,0,o),right:Ce(e.right,0,o),top:Ce(e.top,0,s),bottom:Ce(e.bottom,0,s)}))),anchor:{cell:{col:Ce(t.anchor.cell.col,0,o),row:Ce(t.anchor.cell.row,0,s)},zone:{left:Ce(t.anchor.zone.left,0,o),right:Ce(t.anchor.zone.right,0,o),top:Ce(t.anchor.zone.top,0,s),bottom:Ce(t.anchor.zone.bottom,0,s)}}}}drawLayer(e){if(this.getters.isDashboard())return;const{ctx:t,thinLineWidth:o}=e,s=this.getSelectedZones();t.fillStyle="#f3f7fe";const i=1===s.length&&s[0].left===s[0].right&&s[0].top===s[0].bottom;t.fillStyle=i?"#f3f7fe":"#e9f0ff",t.strokeStyle=p,t.lineWidth=1.5*o;for(const e of s){const{x:o,y:s,width:i,height:n}=this.getters.getVisibleRect(e);t.globalCompositeOperation="multiply",t.fillRect(o,s,i,n),t.globalCompositeOperation="source-over",t.strokeRect(o,s,i,n)}t.globalCompositeOperation="source-over";const n=this.getActivePosition();let r;t.strokeStyle=p,t.lineWidth=3*o,r=this.getters.isInMerge(n)?this.getters.getMerge(n):ln(n);const{x:a,y:l,width:c,height:h}=this.getters.getVisibleRect(r);c>0&&h>0&&t.strokeRect(a,l,c,h)}}).add("evaluation_filter",class extends d_{static getters=["getFilterHiddenValues","getFirstTableInSelection","isRowFiltered","isFilterActive"];filterValues={};hiddenRows={};isEvaluationDirty=!1;allowDispatch(e){if("UPDATE_FILTER"===e.type)if(!this.getters.getFilterId(e))return"FilterNotFound";return"Success"}handle(e){switch(e.type){case"UNDO":case"REDO":case"UPDATE_CELL":case"EVALUATE_CELLS":case"ACTIVATE_SHEET":case"REMOVE_TABLE":case"ADD_COLUMNS_ROWS":case"REMOVE_COLUMNS_ROWS":case"UPDATE_TABLE":this.isEvaluationDirty=!0;break;case"START":for(const e of this.getters.getSheetIds())this.filterValues[e]={};break;case"CREATE_SHEET":this.filterValues[e.sheetId]={};break;case"HIDE_COLUMNS_ROWS":case"UNHIDE_COLUMNS_ROWS":case"GROUP_HEADERS":case"UNGROUP_HEADERS":case"FOLD_HEADER_GROUP":case"UNFOLD_HEADER_GROUP":case"FOLD_ALL_HEADER_GROUPS":case"UNFOLD_ALL_HEADER_GROUPS":case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":this.updateHiddenRows(e.sheetId);break;case"UPDATE_FILTER":this.updateFilter(e),this.updateHiddenRows(e.sheetId);break;case"DUPLICATE_SHEET":this.filterValues[e.sheetIdTo]=be(this.filterValues[e.sheetId])}}finalize(){if(this.isEvaluationDirty){for(const e of this.getters.getSheetIds())this.updateHiddenRows(e);this.isEvaluationDirty=!1}}isRowFiltered(e,t){return!!this.hiddenRows[e]?.has(t)}getFilterHiddenValues(e){const t=this.getters.getFilterId(e),o=e.sheetId;return t&&this.filterValues[o]&&this.filterValues[o][t]||[]}isFilterActive(e){const t=this.getters.getFilterId(e),o=e.sheetId;return Boolean(t&&this.filterValues[o]?.[t]?.length)}getFirstTableInSelection(){const e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZones();return this.getters.getTablesOverlappingZones(e,t)[0]}updateFilter({col:e,row:t,hiddenValues:o,sheetId:s}){const i=this.getters.getFilterId({sheetId:s,col:e,row:t});i&&(this.filterValues[s]||(this.filterValues[s]={}),this.filterValues[s][i]=o)}updateHiddenRows(e){const t=this.getters.getFilters(e).sort(((e,t)=>e.rangeWithHeaders.zone.top-t.rangeWithHeaders.zone.top)),o=new Set;for(let s of t){if(o.has(s.rangeWithHeaders.zone.top)||this.getters.isRowHiddenByUser(e,s.rangeWithHeaders.zone.top))continue;const t=this.filterValues[e]?.[s.id]?.map(Nn),i=s.filteredRange?.zone;if(t&&i)for(let n=i.top;n<=i.bottom;n++){const i=this.getCellValueAsString(e,s.col,n);t.includes(i)&&o.add(n)}}this.hiddenRows[e]=o}getCellValueAsString(e,t,o){return this.getters.getEvaluatedCell({sheetId:e,col:t,row:o}).formattedValue.toLowerCase()}exportForExcel(e){for(const t of e.sheets){const e=t.id;for(const o of t.tables){const s=zi(o.range),i=[],n=[];for(const o of we(0,tn(s).numberOfCols)){const r={sheetId:t.id,col:s.left+o,row:s.top},a=this.getFilterHiddenValues(r),l=this.getters.getFilter(r),c=l?.filteredRange?sn(l.filteredRange.zone).map((t=>this.getters.getEvaluatedCell({sheetId:e,...t}).formattedValue)):[];if(a.length){const e=c.filter((e=>e)).filter((e=>!a.includes(e)));i.push({colId:o,displayedValues:[...new Set(e)],displayBlanks:!a.includes("")&&c.some((e=>!e))})}const h=this.getters.getEvaluatedCell(r).formattedValue,d=this.getUniqueColNameForExcel(o,h,n);n.push(d),t.cells[_t(r.col,r.row)]={...t.cells[_t(r.col,r.row)],content:d,value:d,isFormula:!1}}o.filters=i}}}getUniqueColNameForExcel(e,t,o){t||(t=`Column${e}`);let s=t,i=2;for(;o.includes(s);)s=t+String(i),i++;return s}}).add("header_visibility_ui",class extends d_{static getters=["getNextVisibleCellPosition","findVisibleHeader","findLastVisibleColRowIndex","findFirstVisibleColRowIndex","isRowHidden","isColHidden","isHeaderHidden"];isRowHidden(e,t){return this.getters.isRowHiddenByUser(e,t)||this.getters.isRowFiltered(e,t)}isColHidden(e,t){return this.getters.isColHiddenByUser(e,t)}isHeaderHidden(e,t,o){return"COL"===t?this.isColHidden(e,o):this.isRowHidden(e,o)}getNextVisibleCellPosition({sheetId:e,col:t,row:o}){return{sheetId:e,col:this.findVisibleHeader(e,"COL",t,this.getters.getNumberCols(e)-1),row:this.findVisibleHeader(e,"ROW",o,this.getters.getNumberRows(e)-1)}}findVisibleHeader(e,t,o,s){if(o<=s)for(let i=o;i<=s;i++)if(this.getters.doesHeaderExist(e,t,i)&&!this.isHeaderHidden(e,t,i))return i;if(o>s)for(let i=o;i>=s;i--)if(this.getters.doesHeaderExist(e,t,i)&&!this.isHeaderHidden(e,t,i))return i}findLastVisibleColRowIndex(e,t,{last:o,first:s}){return we(o,s,-1).find((o=>!this.isHeaderHidden(e,t,o)))||s}findFirstVisibleColRowIndex(e,t){const o=this.getters.getNumberHeaders(e,t);for(let s=0;s<o;s++){if("COL"===t&&!this.isColHidden(e,s))return s;if("ROW"===t&&!this.isRowHidden(e,s))return s}}exportForExcel(e){for(const t of e.sheets)for(const[e,o]of Object.entries(t.rows)){const s=this.isRowHidden(t.id,Number(e));o.isHidden=s}}}).add("cell_computed_style",class extends d_{static getters=["getCellComputedBorder","getCellComputedStyle"];styles={};borders={};handle(e){if(Co.has(e.type)||"UPDATE_CELL"===e.type||"SET_FORMATTING"===e.type||"EVALUATE_CELLS"===e.type)return this.styles={},void(this.borders={});gD(e)?"sheetId"in e?(delete this.styles[e.sheetId],delete this.borders[e.sheetId]):(this.styles={},this.borders={}):xo.has(e.type)?this.styles={}:Eo.has(e.type)&&(this.borders={})}getCellComputedBorder(e){const{sheetId:t,row:o,col:s}=e;return void 0!==this.borders[t]?.[o]?.[s]||(this.borders[t]||(this.borders[t]={}),this.borders[t][o]||(this.borders[t][o]={}),this.borders[t][o][s]||(this.borders[t][o][s]=this.computeCellBorder(e))),this.borders[t][o][s]}getCellComputedStyle(e){const{sheetId:t,row:o,col:s}=e;return void 0!==this.styles[t]?.[o]?.[s]||(this.styles[t]||(this.styles[t]={}),this.styles[t][o]||(this.styles[t][o]={}),this.styles[t][o][s]||(this.styles[t][o][s]=this.computeCellStyle(e))),this.styles[t][o][s]}computeCellBorder(e){const t=this.getters.getCellBorder(e)||{},o={...je(this.getters.getCellTableBorder(e)||{}),...je(t)};return Ve(o)?null:o}computeCellStyle(e){const t=this.getters.getCell(e),o=this.getters.getCellConditionalFormatStyle(e),s={...je(this.getters.getCellTableStyle(e)),...je(t?.style),...je(o)};return this.getters.getEvaluatedCell(e).link&&!s.textColor&&(s.textColor=S),s}}).add("table_computed_style",class extends d_{static getters=["getCellTableStyle","getCellTableBorder"];tableStyles={};handle(e){Co.has(e.type)||"UPDATE_CELL"===e.type&&"content"in e||"EVALUATE_CELLS"===e.type?this.tableStyles={}:gD(e)&&("sheetId"in e?delete this.tableStyles[e.sheetId]:this.tableStyles={})}finalize(){for(const e of this.getters.getSheetIds()){this.tableStyles[e]||(this.tableStyles[e]={});for(const t of this.getters.getTables(e))this.tableStyles[e][t.id]||(this.tableStyles[e][t.id]=this.computeTableStyle(e,t))}}getCellTableStyle(e){const t=this.getters.getTable(e);if(t)return this.tableStyles[e.sheetId][t.id]().styles[e.col]?.[e.row]}getCellTableBorder(e){const t=this.getters.getTable(e);if(t)return this.tableStyles[e.sheetId][t.id]().borders[e.col]?.[e.row]}computeTableStyle(e,t){return Be((()=>{const{config:o,numberOfCols:s,numberOfRows:i}=this.getTableRuntimeConfig(e,t),n=bR(o,this.getters.getTableStyle(t.config.styleId),s,i),r=this.getTableMapping(e,t),a={borders:{},styles:{}};for(let e=0;e<s;e++){const t=r.colMapping[e];a.borders[t]={},a.styles[t]={};for(let o=0;o<i;o++){const s=r.rowMapping[o];a.borders[t][s]=n.borders[e][o],a.styles[t][s]=n.styles[e][o]}}return a}))}getTableRuntimeConfig(e,t){const o=t.range.zone,s={...t.config};let i=o.right-o.left+1,n=o.bottom-o.top+1;for(let i=o.top;i<=o.bottom;i++)this.getters.isRowHidden(e,i)&&(n--,i-o.top<t.config.numberOfHeaders&&(s.numberOfHeaders--,s.numberOfHeaders<0&&(s.numberOfHeaders=0)),i===o.bottom&&(s.totalRow=!1));for(let t=o.left;t<=o.right;t++)this.getters.isColHidden(e,t)&&(i--,t===o.left&&(s.firstColumn=!1),t===o.right&&(s.lastColumn=!1));return{config:s,numberOfCols:i,numberOfRows:n}}getTableMapping(e,t){const o={},s={};let i=0,n=0;const r=t.range.zone;for(let t=r.left;t<=r.right;t++)if(!this.getters.isColHidden(e,t)){o[i]=t,i++;for(let t=r.top;t<=r.bottom;t++)this.getters.isRowHidden(e,t)||(s[n]=t,n++)}return{colMapping:o,rowMapping:s}}}).add("header_positions",class extends d_{static getters=["getColDimensions","getRowDimensions","getColRowOffset"];headerPositions={};isDirty=!0;handle(e){switch(Co.has(e.type)&&(this.headerPositions={},this.isDirty=!0),e.type){case"START":for(const e of this.getters.getSheetIds())this.headerPositions[e]=this.computeHeaderPositionsOfSheet(e);break;case"UPDATE_CELL":case"UPDATE_FILTER":case"UPDATE_TABLE":case"REMOVE_TABLE":this.headerPositions={},this.isDirty=!0;break;case"REMOVE_COLUMNS_ROWS":case"RESIZE_COLUMNS_ROWS":case"HIDE_COLUMNS_ROWS":case"ADD_COLUMNS_ROWS":case"UNHIDE_COLUMNS_ROWS":case"FOLD_HEADER_GROUP":case"UNFOLD_HEADER_GROUP":case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_ALL_HEADER_GROUPS":case"FOLD_ALL_HEADER_GROUPS":case"UNGROUP_HEADERS":case"GROUP_HEADERS":case"CREATE_SHEET":this.headerPositions[e.sheetId]=this.computeHeaderPositionsOfSheet(e.sheetId);break;case"DUPLICATE_SHEET":this.headerPositions[e.sheetIdTo]=be(this.headerPositions[e.sheetId])}}finalize(){if(this.isDirty){for(const e of this.getters.getSheetIds())this.headerPositions[e]=this.computeHeaderPositionsOfSheet(e);this.isDirty=!1}}getColDimensions(e,t){const o=this.headerPositions[e].COL[t],s=this.getters.getColSize(e,t);return{start:o,size:s,end:o+(this.getters.isColHidden(e,t)?0:s)}}getRowDimensions(e,t){const o=this.headerPositions[e].ROW[t],s=this.getters.getRowSize(e,t);return{start:o,size:s,end:o+(this.getters.isRowHidden(e,t)?0:s)}}getColRowOffset(e,t,o,s=this.getters.getActiveSheetId()){const i=this.headerPositions[s][e][t];return this.headerPositions[s][e][o]-i}computeHeaderPositionsOfSheet(e){return{COL:this.computePositions(e,"COL"),ROW:this.computePositions(e,"ROW")}}computePositions(e,t){const o={};let s=0;for(let i=0;i<this.getters.getNumberHeaders(e,t)+1;i++)o[i]=s,this.getters.isHeaderHidden(e,t,i)||(s+=this.getters.getHeaderSize(e,t,i));return o}}).add("viewport",class extends d_{static getters=["getColIndex","getRowIndex","getActiveMainViewport","getSheetViewDimension","getSheetViewDimensionWithHeaders","getMainViewportRect","isVisibleInViewport","getEdgeScrollCol","getEdgeScrollRow","getVisibleFigures","getVisibleRect","getVisibleRectWithoutHeaders","getVisibleCellPositions","getColRowOffsetInViewport","getMainViewportCoordinates","getActiveSheetScrollInfo","getActiveSheetDOMScrollInfo","getSheetViewVisibleCols","getSheetViewVisibleRows","getFrozenSheetViewRatio","isPositionVisible","getColDimensionsInViewport","getRowDimensionsInViewport"];viewports={};sheetViewWidth=de();sheetViewHeight=de();gridOffsetX=0;gridOffsetY=0;sheetsWithDirtyViewports=new Set;shouldAdjustViewports=!1;allowDispatch(e){switch(e.type){case"SET_VIEWPORT_OFFSET":return this.chainValidations(this.checkScrollingDirection,this.checkIfViewportsWillChange)(e);case"RESIZE_SHEETVIEW":return this.chainValidations(this.checkValuesAreDifferent,this.checkPositiveDimension)(e);default:return"Success"}}handleEvent(e){const t=this.getters.getActiveSheetId();if(e.options.scrollIntoView){let{col:o,row:s}=an(e.previousAnchor.zone,e.anchor.zone);if("updateAnchor"===e.mode){const i=e.previousAnchor.zone,n=e.anchor.zone,{top:r,bottom:a,left:l,right:c}=this.getMainInternalViewport(t);i.left===n.left&&i.right===n.right&&(o=l>o||o>c?l:o),i.top===n.top&&i.bottom===n.bottom&&(s=r>s||s>a?r:s)}o=Math.min(o,this.getters.getNumberCols(t)-1),s=Math.min(s,this.getters.getNumberRows(t)-1),this.sheetsWithDirtyViewports.has(t)||this.refreshViewport(this.getters.getActiveSheetId(),{col:o,row:s})}}handle(e){if(Co.has(e.type))for(const e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);switch(e.type){case"START":this.selection.observe(this,{handleEvent:this.handleEvent.bind(this)}),this.resetViewports(this.getters.getActiveSheetId());break;case"UNDO":case"REDO":this.cleanViewports();for(const e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);this.shouldAdjustViewports=!0;break;case"RESIZE_SHEETVIEW":this.resizeSheetView(e.height,e.width,e.gridOffsetX,e.gridOffsetY);break;case"SET_VIEWPORT_OFFSET":this.setSheetViewOffset(e.offsetX,e.offsetY);break;case"SHIFT_VIEWPORT_DOWN":const t=this.getters.getActiveSheetId(),{top:o,viewportHeight:s,offsetCorrectionY:i}=this.getMainInternalViewport(t),n=this.getters.getRowDimensions(t,o);this.shiftVertically(n.start+s-i);break;case"SHIFT_VIEWPORT_UP":{const e=this.getters.getActiveSheetId(),{top:t,viewportHeight:o,offsetCorrectionY:s}=this.getMainInternalViewport(e),i=this.getters.getRowDimensions(e,t);this.shiftVertically(i.end-s-o);break}case"REMOVE_TABLE":case"UPDATE_TABLE":case"UPDATE_FILTER":this.sheetsWithDirtyViewports.add(e.sheetId);break;case"REMOVE_COLUMNS_ROWS":case"RESIZE_COLUMNS_ROWS":case"HIDE_COLUMNS_ROWS":case"ADD_COLUMNS_ROWS":case"UNHIDE_COLUMNS_ROWS":case"UNGROUP_HEADERS":case"GROUP_HEADERS":case"FOLD_HEADER_GROUP":case"UNFOLD_HEADER_GROUP":case"FOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_HEADER_GROUPS_IN_ZONE":case"UNFOLD_ALL_HEADER_GROUPS":case"FOLD_ALL_HEADER_GROUPS":{const t="sheetId"in e?e.sheetId:this.getters.getActiveSheetId();this.sheetsWithDirtyViewports.add(t);break}case"UPDATE_CELL":if("content"in e||"format"in e||void 0!==e.style?.fontSize)for(const e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);break;case"DELETE_SHEET":this.cleanViewports();break;case"ACTIVATE_SHEET":this.sheetsWithDirtyViewports.add(e.sheetIdTo);break;case"UNFREEZE_ROWS":case"UNFREEZE_COLUMNS":case"FREEZE_COLUMNS":case"FREEZE_ROWS":case"UNFREEZE_COLUMNS_ROWS":this.resetViewports(this.getters.getActiveSheetId());break;case"DELETE_SHEET":this.sheetsWithDirtyViewports.delete(e.sheetId);break;case"SCROLL_TO_CELL":this.refreshViewport(this.getters.getActiveSheetId(),{col:e.col,row:e.row})}}finalize(){for(const e of this.sheetsWithDirtyViewports)if(this.resetViewports(e),this.shouldAdjustViewports){const t=this.getters.getSheetPosition(e);this.getSubViewports(e).forEach((e=>{e.adjustPosition(t)}))}this.sheetsWithDirtyViewports=new Set,this.shouldAdjustViewports=!1,this.setViewports()}setViewports(){const e=this.getters.getSheetIds();for(const t of e)this.viewports[t]?.bottomRight||this.resetViewports(t)}getColIndex(e){const t=this.getters.getActiveSheetId();return Math.max(...this.getSubViewports(t).map((t=>t.getColIndex(e))))}getRowIndex(e){const t=this.getters.getActiveSheetId();return Math.max(...this.getSubViewports(t).map((t=>t.getRowIndex(e))))}getSheetViewDimensionWithHeaders(){return{width:this.sheetViewWidth+this.gridOffsetX,height:this.sheetViewHeight+this.gridOffsetY}}getSheetViewDimension(){return{width:this.sheetViewWidth,height:this.sheetViewHeight}}getActiveMainViewport(){const e=this.getters.getActiveSheetId();return this.getMainViewport(e)}getActiveSheetScrollInfo(){const e=this.getters.getActiveSheetId(),t=this.getMainInternalViewport(e);return{scrollX:t.offsetX,scrollY:t.offsetY}}getActiveSheetDOMScrollInfo(){const e=this.getters.getActiveSheetId(),t=this.getMainInternalViewport(e);return{scrollX:t.offsetScrollbarX,scrollY:t.offsetScrollbarY}}getSheetViewVisibleCols(){const e=this.getters.getActiveSheetId(),t=this.getSubViewports(e);return[...new Set(t.map((e=>we(e.left,e.right+1))).flat())].filter((t=>!this.getters.isHeaderHidden(e,"COL",t)))}getSheetViewVisibleRows(){const e=this.getters.getActiveSheetId(),t=this.getSubViewports(e);return[...new Set(t.map((e=>we(e.top,e.bottom+1))).flat())].filter((t=>!this.getters.isHeaderHidden(e,"ROW",t)))}getVisibleCellPositions(){const e=this.getSheetViewVisibleCols(),t=this.getSheetViewVisibleRows(),o=this.getters.getActiveSheetId(),s=[];for(const i of e)for(const e of t){const t={sheetId:o,col:i,row:e},n=this.getters.getMainCellPosition(t);n.row===e&&n.col===i&&s.push(t)}return s}getMainViewportRect(){const e=this.getters.getActiveSheetId(),t=this.getMainInternalViewport(e),{xSplit:o,ySplit:s}=this.getters.getPaneDivisions(e);let{width:i,height:n}=t.getMaxSize();return{x:this.getters.getColDimensions(e,o).start,y:this.getters.getRowDimensions(e,s).start,width:i,height:n}}getMaximumSheetOffset(){const e=this.getters.getActiveSheetId(),{width:t,height:o}=this.getMainViewportRect(),s=this.getMainInternalViewport(e);return{maxOffsetX:Math.max(0,t-s.viewportWidth+1),maxOffsetY:Math.max(0,o-s.viewportHeight+1)}}getColRowOffsetInViewport(e,t,o){const s=this.getters.getActiveSheetId(),i=this.getters.getSheetViewVisibleCols(),n=this.getters.getSheetViewVisibleRows();if(o<t)return-this.getColRowOffsetInViewport(e,o,t);let r=0;const a="COL"===e?i:n;for(let i=t;i<o;i++)a.includes(i)&&(r+=this.getters.getHeaderSize(s,e,i));return r}isVisibleInViewport({sheetId:e,col:t,row:o}){return this.getSubViewports(e).some((e=>e.isVisible(t,o)))}getEdgeScrollCol(e,t,o){let s=!1,i=0,n=0;const{xSplit:r}=this.getters.getPaneDivisions(this.getters.getActiveSheetId()),{width:a}=this.getSheetViewDimension(),{x:l}=this.getMainViewportCoordinates(),c=this.getActiveSheetScrollInfo().scrollX;return e>a?(s=!0,n=ks(e-a),i=1):e<l&&o>=l&&c>0?(s=!0,n=ks(l-e),i=-1):r&&t<l&&e>l&&(s=!0,n=ks(e),i="reset"),{canEdgeScroll:s,direction:i,delay:n}}getEdgeScrollRow(e,t,o){let s=!1,i=0,n=0;const{ySplit:r}=this.getters.getPaneDivisions(this.getters.getActiveSheetId()),{height:a}=this.getSheetViewDimension(),{y:l}=this.getMainViewportCoordinates(),c=this.getActiveSheetScrollInfo().scrollY;return e>a?(s=!0,n=ks(e-a),i=1):e<l&&o>=l&&c>0?(s=!0,n=ks(l-e),i=-1):r&&t<l&&e>l&&(s=!0,n=ks(e),i="reset"),{canEdgeScroll:s,direction:i,delay:n}}getVisibleRect(e){const t=this.getVisibleRectWithoutHeaders(e);return{...t,x:t.x+this.gridOffsetX,y:t.y+this.gridOffsetY}}getVisibleRectWithoutHeaders(e){const t=this.getters.getActiveSheetId(),o=this.getSubViewports(t).map((t=>t.getRect(e))).filter(Le);if(0===o.length)return{x:0,y:0,width:0,height:0};const s=Math.min(...o.map((e=>e.x))),i=Math.min(...o.map((e=>e.y)));return{x:s,y:i,width:Math.max(...o.map((e=>e.x+e.width)))-s,height:Math.max(...o.map((e=>e.y+e.height)))-i}}getMainViewportCoordinates(){const e=this.getters.getActiveSheetId(),{xSplit:t,ySplit:o}=this.getters.getPaneDivisions(e);return{x:this.getters.getColDimensions(e,t).start,y:this.getters.getRowDimensions(e,o).start}}getColDimensionsInViewport(e,t){const o=nt(this.getters.getSheetViewVisibleCols()),s=this.getters.getColRowOffsetInViewport("COL",o,t),i=this.getters.getColSize(e,t);return{start:s,size:i,end:s+(this.getters.isColHidden(e,t)?0:i)}}getRowDimensionsInViewport(e,t){const o=nt(this.getters.getSheetViewVisibleRows()),s=this.getters.getColRowOffsetInViewport("ROW",o,t),i=this.getters.getRowSize(e,t);return{start:s,size:i,end:s+(this.getters.isRowHidden(e,t)?0:i)}}ensureMainViewportExist(e){this.viewports[e]||this.resetViewports(e)}getSubViewports(e){return this.ensureMainViewportExist(e),Object.values(this.viewports[e]).filter(Le)}checkPositiveDimension(e){return e.width<0||e.height<0?"InvalidViewportSize":"Success"}checkValuesAreDifferent(e){const{height:t,width:o}=this.getSheetViewDimension();return e.gridOffsetX===this.gridOffsetX&&e.gridOffsetY===this.gridOffsetY&&e.width===o&&e.height===t?"ValuesNotChanged":"Success"}checkScrollingDirection({offsetX:e,offsetY:t}){const o=this.getMainInternalViewport(this.getters.getActiveSheetId());return!o.canScrollHorizontally&&e>0||!o.canScrollVertically&&t>0?"InvalidScrollingDirection":"Success"}checkIfViewportsWillChange({offsetX:e,offsetY:t}){const o=this.getters.getActiveSheetId(),{maxOffsetX:s,maxOffsetY:i}=this.getMaximumSheetOffset();return this.getSubViewports(o).some((o=>o.willNewOffsetScrollViewport(Ce(e,0,s),Ce(t,0,i))))?"Success":"ViewportScrollLimitsReached"}getMainViewport(e){const t=this.getMainInternalViewport(e);return{top:t.top,left:t.left,bottom:t.bottom,right:t.right}}getMainInternalViewport(e){return this.ensureMainViewportExist(e),this.viewports[e].bottomRight}cleanViewports(){const e=this.getters.getSheetIds();for(let t of Object.keys(this.viewports))e.includes(t)||delete this.viewports[t]}resizeSheetView(e,t,o=0,s=0){this.sheetViewHeight=e,this.sheetViewWidth=t,this.gridOffsetX=o,this.gridOffsetY=s,this.recomputeViewports()}recomputeViewports(){for(let e of Object.keys(this.viewports))this.resetViewports(e)}setSheetViewOffset(e,t){const o=this.getters.getActiveSheetId(),{maxOffsetX:s,maxOffsetY:i}=this.getMaximumSheetOffset();this.getSubViewports(o).forEach((o=>o.setViewportOffset(Ce(e,0,s),Ce(t,0,i))))}getViewportOffset(e){return{x:this.viewports[e]?.bottomRight.offsetScrollbarX||0,y:this.viewports[e]?.bottomRight.offsetScrollbarY||0}}resetViewports(e){if(!this.getters.tryGetSheet(e))return;const{xSplit:t,ySplit:o}=this.getters.getPaneDivisions(e),s=this.getters.getNumberCols(e),i=this.getters.getNumberRows(e),n=this.getters.getColRowOffset("COL",0,t,e),r=this.getters.getColRowOffset("ROW",0,o,e),{xRatio:a,yRatio:l}=this.getFrozenSheetViewRatio(e),c=a<1,h=l<1,d=this.getViewportOffset(e),u={topLeft:o&&t&&new RD(this.getters,e,{left:0,right:t-1,top:0,bottom:o-1},{width:n,height:r},{canScrollHorizontally:!1,canScrollVertically:!1},{x:0,y:0})||void 0,topRight:o&&new RD(this.getters,e,{left:t,right:s-1,top:0,bottom:o-1},{width:this.sheetViewWidth-n,height:r},{canScrollHorizontally:c,canScrollVertically:!1},{x:c?d.x:0,y:0})||void 0,bottomLeft:t&&new RD(this.getters,e,{left:0,right:t-1,top:o,bottom:i-1},{width:n,height:this.sheetViewHeight-r},{canScrollHorizontally:!1,canScrollVertically:h},{x:0,y:h?d.y:0})||void 0,bottomRight:new RD(this.getters,e,{left:t,right:s-1,top:o,bottom:i-1},{width:this.sheetViewWidth-n,height:this.sheetViewHeight-r},{canScrollHorizontally:c,canScrollVertically:h},{x:c?d.x:0,y:h?d.y:0})};this.viewports[e]=u}refreshViewport(e,t){this.getSubViewports(e).forEach((e=>{e.adjustViewportZone(),e.adjustPosition(t)}))}shiftVertically(e){const t=this.getters.getActiveSheetId(),{top:o}=this.getMainInternalViewport(t),{scrollX:s}=this.getActiveSheetScrollInfo();this.setSheetViewOffset(s,e);const{anchor:i}=this.getters.getSelection();if(i.cell.row>=this.getters.getPaneDivisions(t).ySplit){const e=this.getMainInternalViewport(t).top-o;this.selection.selectCell(i.cell.col,i.cell.row+e)}}getVisibleFigures(){const e=this.getters.getActiveSheetId(),t=[],o=this.getters.getFigures(e),{scrollX:s,scrollY:i}=this.getActiveSheetScrollInfo(),{x:n,y:r}=this.getters.getMainViewportCoordinates(),{width:a,height:l}=this.getters.getSheetViewDimensionWithHeaders();for(const e of o)e.x>=n&&(e.x+e.width<=n+s||e.x>=a+s+n)||e.y>=r&&(e.y+e.height<=r+i||e.y>=l+i+r)||t.push(e);return t}isPositionVisible(e){const{scrollX:t,scrollY:o}=this.getters.getActiveSheetScrollInfo(),{x:s,y:i}=this.getters.getMainViewportCoordinates(),{width:n,height:r}=this.getters.getSheetViewDimension();return!(e.x>=s&&(e.x<s+t||e.x>n+t+s))&&!(e.y>=i&&(e.y<i+o||e.y>r+o+i))}getFrozenSheetViewRatio(e){const{xSplit:t,ySplit:o}=this.getters.getPaneDivisions(e),s=this.getters.getColDimensions(e,t).start,i=this.getters.getRowDimensions(e,o).start;return{xRatio:s/(this.sheetViewWidth+this.gridOffsetX),yRatio:i/(this.sheetViewHeight+this.gridOffsetY)}}}).add("clipboard",class extends d_{static layers=["Clipboard"];static getters=["getClipboardContent","getClipboardTextContent","isCutOperation","isPaintingFormat"];status="invisible";paintFormatStatus="inactive";originSheetId;copiedData;_isCutOperation=!1;allowDispatch(e){switch(e.type){case"CUT":const t=this.getters.getSelectedZones();return this.isCutAllowedOn(t);case"PASTE_FROM_OS_CLIPBOARD":{const t=this.convertOSClipboardData(e.text),o=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);return this.isPasteAllowed(e.target,t,{pasteOption:o,isCutOperation:!1})}case"PASTE":{if(!this.copiedData)return"EmptyClipboard";const t=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);return this.isPasteAllowed(e.target,this.copiedData,{pasteOption:t,isCutOperation:this._isCutOperation})}case"COPY_PASTE_CELLS_ABOVE":{const e=this.getters.getSelectedZones();if(e.length>1||0===e[0].top&&0===e[0].bottom)return"InvalidCopyPasteSelection";break}case"COPY_PASTE_CELLS_ON_LEFT":{const e=this.getters.getSelectedZones();if(e.length>1||0===e[0].left&&0===e[0].right)return"InvalidCopyPasteSelection";break}case"INSERT_CELL":{const{cut:t,paste:o}=this.getInsertCellsTargets(e.zone,e.shiftDimension),s=this.copy(t);return this.isPasteAllowed(o,s,{isCutOperation:!0})}case"DELETE_CELL":{const{cut:t,paste:o}=this.getDeleteCellsTargets(e.zone,e.shiftDimension),s=this.copy(t);return this.isPasteAllowed(o,s,{isCutOperation:!0})}case"ACTIVATE_PAINT_FORMAT":return"inactive"!==this.paintFormatStatus?"AlreadyInPaintingFormatMode":"Success"}return"Success"}handle(e){switch(e.type){case"COPY":case"CUT":const t=this.getters.getSelectedZones();this.status="visible",this.originSheetId=this.getters.getActiveSheetId(),this.copiedData=this.copy(t),this._isCutOperation="CUT"===e.type;break;case"PASTE_FROM_OS_CLIPBOARD":{this._isCutOperation=!1,this.copiedData=this.convertOSClipboardData(e.text);const t=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);this.paste(e.target,this.copiedData,{pasteOption:t,selectTarget:!0,isCutOperation:!1}),this.status="invisible";break}case"PASTE":{const t=e.pasteOption||("inactive"!==this.paintFormatStatus?"onlyFormat":void 0);this.paste(e.target,this.copiedData,{pasteOption:t,selectTarget:!0,isCutOperation:this._isCutOperation}),"oneOff"===this.paintFormatStatus&&(this.paintFormatStatus="inactive"),this.status="invisible",this._isCutOperation&&(this.copiedData=void 0,this._isCutOperation=!1);break}case"COPY_PASTE_CELLS_ABOVE":{const e=this.getters.getSelectedZone(),t=e.top!==e.bottom,o={...e,bottom:t?e.top:e.top-1,top:t?e.top:e.top-1};this.originSheetId=this.getters.getActiveSheetId();const s=this.copy([o]);this.paste([e],s,{isCutOperation:!1,selectTarget:!0})}break;case"COPY_PASTE_CELLS_ON_LEFT":{const e=this.getters.getSelectedZone(),t=e.left!==e.right,o={...e,right:t?e.left:e.left-1,left:t?e.left:e.left-1};this.originSheetId=this.getters.getActiveSheetId();const s=this.copy([o]);this.paste([e],s,{isCutOperation:!1,selectTarget:!0})}break;case"CLEAN_CLIPBOARD_HIGHLIGHT":this.status="invisible";break;case"DELETE_CELL":{const{cut:t,paste:o}=this.getDeleteCellsTargets(e.zone,e.shiftDimension);if(!Bi(t[0])){this.dispatch("CLEAR_CELLS",{target:[e.zone],sheetId:this.getters.getActiveSheetId()});break}const s=this.copy(t);this.paste(o,s,{isCutOperation:!0});break}case"INSERT_CELL":{const{cut:t,paste:o}=this.getInsertCellsTargets(e.zone,e.shiftDimension),s=this.copy(t);this.paste(o,s,{isCutOperation:!0});break}case"ADD_COLUMNS_ROWS":if(this.status="invisible",!0!==this._isCutOperation||e.sheetId!==this.copiedData?.sheetId)return;this.isColRowDirtyingClipboard("before"===e.position?e.base:e.base+1,e.dimension)&&(this.copiedData=void 0);break;case"REMOVE_COLUMNS_ROWS":if(this.status="invisible",!0!==this._isCutOperation||e.sheetId!==this.copiedData?.sheetId)return;for(let t of e.elements){if(this.isColRowDirtyingClipboard(t,e.dimension)){this.copiedData=void 0;break}}this.status="invisible";break;case"REPEAT_PASTE":this.paste(e.target,this.copiedData,{isCutOperation:!1,pasteOption:e.pasteOption,selectTarget:!0});break;case"ACTIVATE_PAINT_FORMAT":{const t=this.getters.getSelectedZones();this._isCutOperation=!1,this.copiedData=this.copy(t),this.status="visible",e.persistent?this.paintFormatStatus="persistent":this.paintFormatStatus="oneOff";break}case"DELETE_SHEET":if(!0!==this._isCutOperation)return;this.originSheetId===e.sheetId&&(this.copiedData=void 0,this.status="invisible");break;case"CANCEL_PAINT_FORMAT":this.paintFormatStatus="inactive",this.status="invisible";break;default:To(e)&&(this.status="invisible")}}convertOSClipboardData(e){const t=this.selectClipboardHandlers({figureId:!0}).concat(this.selectClipboardHandlers({}));let o={};for(const{handlerName:s,handler:i}of t){const t=i.convertOSClipboardData(e);o[s]=t;const n=["sheetId","cells","zones","figureId"];for(const e of n)t&&e in t&&(o[e]=t[e])}return o}selectClipboardHandlers(e){const t="figureId"in e?la.figureHandlers:la.cellHandlers;return t.getKeys().map((e=>({handlerName:e,handler:new(t.get(e))(this.getters,this.dispatch)})))}isCutAllowedOn(e){const t=this.getClipboardData(e);for(const{handler:e}of this.selectClipboardHandlers(t)){const o=e.isCutAllowed(t);if("Success"!==o)return o}return"Success"}isPasteAllowed(e,t,o){for(const{handler:s}of this.selectClipboardHandlers(t)){const i=s.isPasteAllowed(this.getters.getActiveSheetId(),e,t,{...o});if("Success"!==i)return i}return"Success"}isColRowDirtyingClipboard(e,t){if(!this.copiedData||!this.copiedData.zones)return!1;const{zones:o}=this.copiedData;for(let s of o){if("COL"===t&&e<=s.right)return!0;if("ROW"===t&&e<=s.bottom)return!0}return!1}copy(e){let t={};const o=this.getClipboardData(e);for(const{handlerName:e,handler:s}of this.selectClipboardHandlers(o)){const i=s.copy(o);t[e]=i;const n=["sheetId","cells","zones","figureId"];for(const e of n)i&&e in i&&(t[e]=i[e])}return t}paste(e,t,o){if(!t)return;let s,i=[];const n=this.getters.getActiveSheetId();let r={sheetId:n,zones:e};const a=this.selectClipboardHandlers(t);for(const{handlerName:l,handler:c}of a){const a=t[l];if(!a)continue;const h=c.getPasteTarget(n,e,a,o);h.figureId&&(r.figureId=h.figureId);for(const e of h.zones)i.push(e),s=void 0!==s?Yi(s,e):e}if(void 0!==s&&this.addMissingDimensions(this.getters.getActiveSheetId(),s.right-s.left+1,s.bottom-s.top+1,s.left,s.top),a.forEach((({handlerName:e,handler:s})=>{const i=t[e];i&&s.paste(r,i,o)})),!o?.selectTarget)return;const l=e[0],c=l.left,h=l.top;this.selection.getBackToDefault(),this.selection.selectZone({cell:{col:c,row:h},zone:Yi(...i)},{scrollIntoView:!1})}addMissingDimensions(e,t,o,s,i){const n=o+i-this.getters.getNumberRows(e);n>0&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"ROW",base:this.getters.getNumberRows(e)-1,sheetId:e,quantity:n,position:"after"});const r=t+s-this.getters.getNumberCols(e);r>0&&this.dispatch("ADD_COLUMNS_ROWS",{dimension:"COL",base:this.getters.getNumberCols(e)-1,sheetId:e,quantity:r,position:"after"})}getClipboardTextContent(){return this.getPlainTextContent()}getClipboardContent(){return{[yo.PlainText]:this.getPlainTextContent(),[yo.Html]:this.getHTMLContent()}}getPlainTextContent(){return this.copiedData?.cells&&this.copiedData.cells.map((e=>e.map((e=>this.getters.shouldShowFormulas()&&e.cell?.isFormula?e.cell?.content||"":e.evaluatedCell?.formattedValue||"")).join("\t"))).join("\n")||"\t"}getHTMLContent(){if(!this.copiedData?.cells)return;const e=this.copiedData.cells;if(1===e.length&&1===e[0].length)return this.getters.getCellText(e[0][0].position);if(!e[0][0])return"";let t='<table border="1" style="border-collapse:collapse">';for(const o of e){t+="<tr>";for(const e of o){if(!e)continue;t+=`<td style="${Fb(Db(this.getters.getCellComputedStyle(e.position)))}">`+yO(this.getters.getCellText(e.position))+"</td>"}t+="</tr>"}return t+="</table>",t}isCutOperation(){return this._isCutOperation??!1}isPaintingFormat(){return"inactive"!==this.paintFormatStatus}getDeleteCellsTargets(e,t){const o=this.getters.getActiveSheetId();let s;return s="COL"===t?{...e,left:e.right+1,right:this.getters.getNumberCols(o)-1}:{...e,top:e.bottom+1,bottom:this.getters.getNumberRows(o)-1},{cut:[s],paste:[e]}}getInsertCellsTargets(e,t){const o=this.getters.getActiveSheetId();let s,i;return"COL"===t?(s={...e,right:this.getters.getNumberCols(o)-1},i={...e,left:e.right+1,right:e.right+1}):(s={...e,bottom:this.getters.getNumberRows(o)-1},i={...e,top:e.bottom+1,bottom:this.getters.getNumberRows(o)-1}),{cut:[s],paste:[i]}}getClipboardData(e){const t=this.getters.getActiveSheetId(),o=this.getters.getSelectedFigureId();return o?{figureId:o,sheetId:t}:zn(t,e)}drawLayer(e){if("visible"!==this.status||!this.copiedData)return;const{sheetId:t,zones:o}=this.copiedData;if(t!==this.getters.getActiveSheetId()||!o||!o.length)return;const{ctx:s,thinLineWidth:i}=e;s.setLineDash([8,5]),s.strokeStyle=p,s.lineWidth=3.3*i;for(const e of o){const{x:t,y:o,width:i,height:n}=this.getters.getVisibleRect(e);i>0&&n>0&&s.strokeRect(t,o,i,n)}}}),_D=(new n).add("evaluation",class extends d_{static getters=["evaluateFormula","evaluateFormulaResult","getCorrespondingFormulaCell","getRangeFormattedValues","getRangeValues","getRangeFormats","getEvaluatedCell","getEvaluatedCells","getEvaluatedCellsInZone","getEvaluatedCellsPositions","getSpreadZone","getArrayFormulaSpreadingOn","isEmpty"];shouldRebuildDependenciesGraph=!0;evaluator;positionsToUpdate=[];constructor(e){super(e),this.evaluator=new W_(e.custom,this.getters)}beforeHandle(e){(Co.has(e.type)||wo.has(e.type))&&(this.shouldRebuildDependenciesGraph=!0)}handle(e){switch(e.type){case"UPDATE_CELL":if(!("content"in e)&&!("format"in e)||this.shouldRebuildDependenciesGraph)return;this.positionsToUpdate.push(e),"content"in e&&this.evaluator.updateDependencies(e);break;case"EVALUATE_CELLS":this.evaluator.evaluateAllCells()}}finalize(){this.shouldRebuildDependenciesGraph?(this.evaluator.buildDependencyGraph(),this.evaluator.evaluateAllCells(),this.shouldRebuildDependenciesGraph=!1):this.positionsToUpdate.length&&this.evaluator.evaluateCells(this.positionsToUpdate),this.positionsToUpdate=[]}evaluateFormula(e,t){const o=this.evaluateFormulaResult(e,t);return No(o)?ys(o,(e=>e.value)):o.value}evaluateFormulaResult(e,t){return this.evaluator.evaluateFormulaResult(e,t)}getRangeFormattedValues(e){const t=this.getters.tryGetSheet(e.sheetId);return void 0===t?[]:this.getters.getEvaluatedCellsInZone(t.id,e.zone).map((e=>e.formattedValue))}getRangeValues(e){const t=this.getters.tryGetSheet(e.sheetId);return void 0===t?[]:this.getters.getEvaluatedCellsInZone(t.id,e.zone).map((e=>e.value))}getRangeFormats(e){const t=this.getters.tryGetSheet(e.sheetId);return void 0===t?[]:this.getters.getEvaluatedCellsInZone(t.id,e.zone).map((e=>e.format))}getEvaluatedCell(e){return this.evaluator.getEvaluatedCell(e)}getEvaluatedCells(e){return this.evaluator.getEvaluatedPositionsInSheet(e).map((e=>this.getEvaluatedCell(e)))}getEvaluatedCellsPositions(e){return this.evaluator.getEvaluatedPositionsInSheet(e)}getEvaluatedCellsInZone(e,t){return sn(t).map((({col:t,row:o})=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:o})))}getSpreadZone(e,t={ignoreSpillError:!1}){return this.evaluator.getSpreadZone(e,t)}getArrayFormulaSpreadingOn(e){return this.evaluator.getArrayFormulaSpreadingOn(e)}isEmpty(e,t){return sn(t).map((({col:t,row:o})=>this.getEvaluatedCell({sheetId:e,col:t,row:o}))).every((e=>e.type===So.empty))}exportForExcel(e){for(const t of this.evaluator.getEvaluatedPositions()){const o=this.evaluator.getEvaluatedCell(t),s=_t(t.col,t.row),i=o.value;let n,r,a=!1,l=!0;const c=e.sheets.find((e=>e.id===t.sheetId)),h=this.getCorrespondingFormulaCell(t);h&&(l=fv(h.compiledFormula.tokens),a=l,l||""!==i&&(n=(i??"").toString(),r=o.format));const d=c.cells[s]||{},u=r?Ue(r,e.formats):d.format;let g;g=l&&a&&h instanceof i_?h.contentWithFixedReferences:l?d.content:n,c.cells[s]={...d,value:i,isFormula:a,content:g,format:u}}}getCorrespondingFormulaCell(e){const t=this.getters.getCell(e);if(t&&t.isFormula)return function(e){try{return pv(e),!1}catch(e){return!0}}(t.compiledFormula.tokens)?void 0:t;if(t&&t.content)return;const o=this.getArrayFormulaSpreadingOn(e);if(void 0===o)return;const s=this.getters.getCell(o);return s?.isFormula?s:void 0}}).add("evaluation_chart",class extends d_{static getters=["getChartRuntime","getStyleOfSingleCellChart"];charts={};createRuntimeChart=function(e){const t=US.getAll().sort(((e,t)=>e.sequence-t.sequence));return function(o){const s=t.find((e=>e.match(o.type)));if(!s)throw new Error("No runtime builder for this chart.");return s.getChartRuntime(o,e)}}(this.getters);handle(e){if(Co.has(e.type)||xo.has(e.type)||"EVALUATE_CELLS"===e.type||"UPDATE_CELL"===e.type)for(const e in this.charts)this.charts[e]=void 0;switch(e.type){case"UPDATE_CHART":case"CREATE_CHART":case"DELETE_FIGURE":this.charts[e.id]=void 0;break;case"DELETE_SHEET":for(let e in this.charts)this.getters.isChartDefined(e)||(this.charts[e]=void 0)}}getChartRuntime(e){if(!this.charts[e]){const t=this.getters.getChart(e);if(!t)throw new Error(`No chart for the given id: ${e}`);this.charts[e]=this.createRuntimeChart(t)}return this.charts[e]}getStyleOfSingleCellChart(e,t){if(e)return{background:e,fontColor:Xl(e)};if(!t)return{background:m,fontColor:Xl(m)};const o=t.zone.left,s=t.zone.top,i=t.sheetId,n=this.getters.getCellComputedStyle({sheetId:i,col:o,row:s}),r=n.fillColor||m;return{background:r,fontColor:n.textColor||Xl(r)}}exportForExcel(e){for(const t of e.sheets){t.images||(t.images=[]);const e=this.getters.getFigures(t.id),o=[];for(const s of e){if(!s||"chart"!==s.tag)continue;const e=s.id,i=this.getters.getChart(e)?.getDefinitionForExcel();if(i)o.push({...s,data:i});else{if(!this.getters.getChart(e))continue;const o=this.getters.getChartType(e),i=uS(this.getters.getChartRuntime(e),s,o);i&&t.images.push({...s,tag:"image",data:{mimetype:"image/png",path:i,size:{width:s.width,height:s.height}}})}}t.charts=o}}}).add("evaluation_cf",class extends d_{static getters=["getConditionalIcon","getCellConditionalFormatStyle"];isStale=!0;computedStyles={};computedIcons={};handle(e){(Co.has(e.type)||xo.has(e.type)||"UPDATE_CELL"===e.type&&("content"in e||"format"in e))&&(this.isStale=!0)}finalize(){if(this.isStale){for(const e of this.getters.getSheetIds())this.computedStyles[e]=Be((()=>this.getComputedStyles(e))),this.computedIcons[e]=Be((()=>this.getComputedIcons(e)));this.isStale=!1}}getCellConditionalFormatStyle(e){const{sheetId:t,col:o,row:s}=e,i=this.computedStyles[t]();return i&&i[o]?.[s]}getConditionalIcon({sheetId:e,col:t,row:o}){const s=this.computedIcons[e]();return s&&s[t]?.[o]}getComputedStyles(e){const t={};for(let o of this.getters.getConditionalFormats(e).reverse())switch(o.rule.type){case"ColorScaleRule":for(let s of o.ranges)this.applyColorScale(e,s,o.rule,t);break;case"CellIsRule":const s=o.rule.values.map((e=>e.startsWith("=")?gv(e):void 0));for(let i of o.ranges){const n=this.getters.getRangeFromSheetXC(e,i).zone;for(let i=n.top;i<=n.bottom;i++)for(let r=n.left;r<=n.right;r++){const a=this.rulePredicate[o.rule.type],l={sheetId:e,col:r,row:i},c=o.rule.values.map(((t,o)=>{const a=s[o];return a?this.getters.getTranslatedCellFormula(e,r-n.left,i-n.top,{...a,dependencies:a.dependencies.map((t=>this.getters.getRangeFromSheetXC(e,t)))}):t}));a&&a(l,{...o.rule,values:c})&&(t[r]||(t[r]=[]),t[r][i]=Object.assign(t[r]?.[i]||{},o.rule.style))}}}return t}getComputedIcons(e){const t={};for(let o of this.getters.getConditionalFormats(e).reverse())if("IconSetRule"===o.rule.type)for(let s of o.ranges)this.applyIcon(e,s,o.rule,t);return t}parsePoint(e,t,o,s){const i=this.getters.getEvaluatedCellsInZone(e,this.getters.getRangeFromSheetXC(e,t).zone).filter((e=>e.type===So.number)).map((e=>e.value));switch(o.type){case"value":return"max"===s?it(i):nt(i);case"number":return Number(o.value);case"percentage":const t=nt(i);return t+(it(i)-t)*Number(o.value)/100;case"percentile":return ho(i,Number(o.value)/100,!0);case"formula":const n=o.value&&this.getters.evaluateFormula(e,o.value);return"number"==typeof n?n:null;default:return null}}applyIcon(e,t,o,s){const i=this.parsePoint(e,t,o.lowerInflectionPoint),n=this.parsePoint(e,t,o.upperInflectionPoint);if(null===i||null===n||i>n)return;const r=this.getters.getRangeFromSheetXC(e,t).zone,a=[o.icons.upper,o.icons.middle,o.icons.lower];for(let t=r.top;t<=r.bottom;t++)for(let l=r.left;l<=r.right;l++){const r=this.getters.getEvaluatedCell({sheetId:e,col:l,row:t});if(r.type!==So.number)continue;const c=this.computeIcon(r.value,n,o.upperInflectionPoint.operator,i,o.lowerInflectionPoint.operator,a);s[l]||(s[l]=[]),s[l][t]=c}}computeIcon(e,t,o,s,i,n){return"ge"===o&&e>=t||"gt"===o&&e>t?n[0]:"ge"===i&&e>=s||"gt"===i&&e>s?n[1]:n[2]}applyColorScale(e,t,o,s){const i=this.parsePoint(e,t,o.minimum,"min"),n=o.midpoint?this.parsePoint(e,t,o.midpoint):null,r=this.parsePoint(e,t,o.maximum,"max");if(null===i||null===r||i>=r||n&&(i>=n||n>=r))return;const a=this.getters.getRangeFromSheetXC(e,t).zone,l=[];o.midpoint&&n?(l.push({minValue:i,minColor:o.minimum.color,colorDiffUnit:this.computeColorDiffUnits(i,n,o.minimum.color,o.midpoint.color)}),l.push({minValue:n,minColor:o.midpoint.color,colorDiffUnit:this.computeColorDiffUnits(n,r,o.midpoint.color,o.maximum.color)})):l.push({minValue:i,minColor:o.minimum.color,colorDiffUnit:this.computeColorDiffUnits(i,r,o.minimum.color,o.maximum.color)});for(let t=a.top;t<=a.bottom;t++)for(let o=a.left;o<=a.right;o++){const a=this.getters.getEvaluatedCell({sheetId:e,col:o,row:t});if(a.type===So.number){const e=Ce(a.value,i,r);let c;c=2===l.length&&n?e<=n?this.colorCell(e,l[0].minValue,l[0].minColor,l[0].colorDiffUnit):this.colorCell(e,l[1].minValue,l[1].minColor,l[1].colorDiffUnit):this.colorCell(e,l[0].minValue,l[0].minColor,l[0].colorDiffUnit),s[o]||(s[o]=[]),s[o][t]=s[o]?.[t]||{},s[o][t].fillColor=ct(c)}}}computeColorDiffUnits(e,t,o,s){const i=t-e;return[((o>>16)%256-(s>>16)%256)/i,((o>>8)%256-(s>>8)%256)/i,(o%256-s%256)/i]}colorCell(e,t,o,s){const[i,n,r]=s;return Math.round((o>>16)%256-i*(e-t))<<16|Math.round((o>>8)%256-n*(e-t))<<8|Math.round(o%256-r*(e-t))}rulePredicate={CellIsRule:(e,t)=>{const o=this.getters.getEvaluatedCell(e);if(o.type===So.error)return!1;let[s,i]=t.values.map((t=>t.startsWith("=")?this.getters.evaluateFormula(e.sheetId,t)??"":Ga(t,Mo)));if(No(s)||No(i))return!1;const n=o.value??"";switch(s=s??"",i=i??"",t.operator){case"IsEmpty":return""===n.toString().trim();case"IsNotEmpty":return""!==n.toString().trim();case"BeginsWith":return""!==s&&n.toString().startsWith(s.toString());case"EndsWith":return""!==s&&n.toString().endsWith(s.toString());case"Between":return n>=s&&n<=i;case"NotBetween":return!(n>=s&&n<=i);case"ContainsText":return n.toString().indexOf(s.toString())>-1;case"NotContains":return!n||-1===n.toString().indexOf(s.toString());case"GreaterThan":return n>s;case"GreaterThanOrEqual":return n>=s;case"LessThan":return n<s;case"LessThanOrEqual":return n<=s;case"NotEqual":return""!==s&&n!==s;case"Equal":return""===s||n===s;default:console.warn(bo("Not implemented operator %s for kind of conditional formatting: %s",t.operator,t.type))}return!1}}}).add("row_size",class extends d_{static getters=["getRowSize","getHeaderSize"];tallestCellInRow={};ctx=document.createElement("canvas").getContext("2d");handle(e){switch(e.type){case"START":for(const e of this.getters.getSheetIds())this.initializeSheet(e);break;case"CREATE_SHEET":this.initializeSheet(e.sheetId);break;case"DUPLICATE_SHEET":{const t=be(this.tallestCellInRow[e.sheetId]);this.history.update("tallestCellInRow",e.sheetIdTo,t);break}case"DELETE_SHEET":const t={...this.tallestCellInRow};delete t[e.sheetId],this.history.update("tallestCellInRow",t);break;case"REMOVE_COLUMNS_ROWS":{if("COL"===e.dimension)return;const t=et(this.tallestCellInRow[e.sheetId],e.elements);this.history.update("tallestCellInRow",e.sheetId,t);break}case"ADD_COLUMNS_ROWS":{if("COL"===e.dimension)return;const t=We(e.position,e.base),o=Array(e.quantity).fill(void 0),s=function(e,t,o){const s=[...e];return s.splice(o,0,...t),s}(this.tallestCellInRow[e.sheetId],o,t);this.history.update("tallestCellInRow",e.sheetId,s);break}case"RESIZE_COLUMNS_ROWS":{const t=e.sheetId;if("ROW"===e.dimension)for(const o of e.elements){const e=this.getRowTallestCell(t,o);this.history.update("tallestCellInRow",t,o,e)}else for(const o of we(0,this.getters.getNumberRows(t)))for(const s of e.elements)this.updateRowSizeForCellChange(t,o,s)}break;case"UPDATE_CELL":this.updateRowSizeForCellChange(e.sheetId,e.row,e.col);break;case"ADD_MERGE":case"REMOVE_MERGE":for(const t of e.target)for(const o of sn(t))this.updateRowSizeForCellChange(e.sheetId,o.row,o.col)}}getRowSize(e,t){return Math.round(this.getters.getUserRowSize(e,t)??this.tallestCellInRow[e][t]?.size??L)}getHeaderSize(e,t,o){return this.getters.isHeaderHidden(e,t,o)?0:"ROW"===t?this.getRowSize(e,o):this.getters.getColSize(e,o)}updateRowSizeForCellChange(e,t,o){const s=this.tallestCellInRow[e]?.[t];if(s?.cell.col===o){const o=this.getRowTallestCell(e,t);this.history.update("tallestCellInRow",e,t,o)}const i=this.getCellHeight({sheetId:e,col:o,row:t});if(!(i<=L)&&(!s&&i>L||s&&i>s.size)){const s={cell:{sheetId:e,col:o,row:t},size:i};this.history.update("tallestCellInRow",e,t,s)}}initializeSheet(e){const t=[];for(let o=0;o<this.getters.getNumberRows(e);o++){const s=this.getRowTallestCell(e,o);t.push(s)}this.history.update("tallestCellInRow",e,t)}getCellHeight(e){if(this.isInMultiRowMerge(e))return L;const t=this.getters.getCell(e),o=this.getters.getColSize(e.sheetId,e.col);return function(e,t,o){if(!t||!t.isFormula&&!t.content)return L;const s="wrap"===t.style?.wrapping?o-2*V:void 0,i=t.isFormula?1:Mn(e,t.content,t.style,s).length;return wn(Dn(t.style),i)+6}(this.ctx,t,o)}isInMultiRowMerge(e){const t=this.getters.getMerge(e);return!!t&&t.bottom!==t.top}getRowTallestCell(e,t){if(void 0!==this.getters.getUserRowSize(e,t))return;const o=this.getters.getRowCells(e,t);let s,i=0;for(let e=0;e<o.length;e++){const t=this.getters.getCellById(o[e]);if(!t)continue;const n=this.getters.getCellPosition(t.id),r=this.getCellHeight(n);r>i&&r>L&&(i=r,s={cell:n,size:r})}return s&&s.size>L?s:void 0}}).add("data_validation_ui",class extends d_{static getters=["getDataValidationInvalidCriterionValueMessage","getInvalidDataValidationMessage","getValidationResultForCellValue","isCellValidCheckbox","isDataValidationInvalid"];validationResults={};handle(e){if(Co.has(e.type)||"EVALUATE_CELLS"===e.type||"UPDATE_CELL"===e.type&&("content"in e||"format"in e))this.validationResults={};else switch(e.type){case"ADD_DATA_VALIDATION_RULE":case"REMOVE_DATA_VALIDATION_RULE":delete this.validationResults[e.sheetId]}}isDataValidationInvalid(e){return!this.getValidationResultForCell(e).isValid}getInvalidDataValidationMessage(e){const t=this.getValidationResultForCell(e);return t.isValid?void 0:t.error}getDataValidationInvalidCriterionValueMessage(e,t){const o=pl.get(e);return t.startsWith("=")?"onlyLiterals"===o.allowedValues?bo("The value must not be a formula"):void 0:"onlyFormulas"===o.allowedValues?bo("The value must be a formula"):o.isCriterionValueValid(t)?void 0:o.criterionValueErrorString}isCellValidCheckbox(e){if(!this.getters.isMainCellPosition(e))return!1;const t=this.getters.getValidationRuleForCell(e);return!(!t||"isBoolean"!==t.criterion.type)&&this.getValidationResultForCell(e).isValid}getValidationResultForCellValue(e,t){const o=this.getters.getValidationRuleForCell(t);if(!o)return j_;const s=this.getRuleErrorForCellValue(e,t,o);return s?{error:s,rule:o,isValid:!1}:j_}getValidationResultForCell(e){const{col:t,row:o,sheetId:s}=e;return this.validationResults[s]||(this.validationResults[s]=this.computeSheetValidationResults(s)),this.validationResults[s][t]?.[o]?.()||j_}computeSheetValidationResults(e){const t={},o=this.getters.getDataValidationRules(e).map((e=>e.ranges));for(const e of bn(o.flat())){const{col:o,row:s}=e;t[o]||(t[o]=[]),t[o][s]=Be((()=>{const t=this.getters.getEvaluatedCell(e);return t.type===So.empty?j_:this.getValidationResultForCellValue(t.value,e)}))}return t}getRuleErrorForCellValue(e,t,o){const{sheetId:s}=t,i=o.criterion,n=pl.get(i.type),r=this.getCellOffsetInRule(t,o),a=this.getEvaluatedCriterionValues(s,r,i),l={...i,values:a};if(!n.isValueValid(e,l,this.getters,s))return n.getErrorString(l,this.getters,s)}getCellOffsetInRule(e,t){const o=t.ranges.find((t=>Ji(e.col,e.row,t.zone)));if(!o)throw new Error("The cell is not in any range of the rule");return{col:e.col-o.zone.left,row:e.row-o.zone.top}}getEvaluatedCriterionValues(e,t,o){return o.values.map((o=>{if(!o.startsWith("="))return o;const s=gv(o),i=this.getters.getTranslatedCellFormula(e,t.col,t.row,{...s,dependencies:s.dependencies.map((t=>this.getters.getRangeFromSheetXC(e,t)))}),n=this.getters.evaluateFormula(e,i);return n&&!No(n)?n.toString():""}))}}).add("dynamic_tables",class extends d_{static getters=["canCreateDynamicTableOnZones","doesZonesContainFilter","getFilter","getFilters","getTable","getTables","getTablesOverlappingZones","getFilterId","getFilterHeaders","isFilterHeader"];tables={};handle(e){if(Co.has(e.type)||"UPDATE_CELL"===e.type&&"content"in e||"EVALUATE_CELLS"===e.type)this.tables={};else switch(e.type){case"CREATE_TABLE":case"REMOVE_TABLE":case"UPDATE_TABLE":case"DELETE_CONTENT":this.tables={}}}finalize(){for(const e of this.getters.getSheetIds())this.tables[e]||(this.tables[e]=this.computeTables(e))}computeTables(e){const t=[],o=this.getters.getCoreTables(e);for(const e of o)"dynamic"!==e.type&&t.push(e);const s=[...t];for(const i of o){if("dynamic"!==i.type)continue;const o=this.coreTableToTable(e,i);let n=o.range.zone;for(const e of s)Qi(n,e.range.zone)&&(n={...n,right:e.range.zone.left-1});t.push({...o,range:this.getters.getRangeFromZone(e,n)})}return t}getFilters(e){return this.getTables(e).filter((e=>e.config.hasFilters)).map((e=>e.filters)).flat()}getTables(e){return this.tables[e]||[]}getFilter(e){const t=this.getTable(e);if(t&&t.config.hasFilters)return t.filters.find((t=>t.col===e.col))}getFilterId(e){return this.getFilter(e)?.id}getTable({sheetId:e,col:t,row:o}){return this.getTables(e).find((e=>Ji(t,o,e.range.zone)))}getTablesOverlappingZones(e,t){return this.getTables(e).filter((e=>t.some((t=>Qi(e.range.zone,t)))))}doesZonesContainFilter(e,t){return this.getTablesOverlappingZones(e,t).some((e=>e.config.hasFilters))}getFilterHeaders(e){const t=[];for(const o of this.getTables(e)){if(!o.config.hasFilters)continue;const s=o.range.zone,i=s.top;for(let o=s.left;o<=s.right;o++)t.push({sheetId:e,col:o,row:i})}return t}isFilterHeader({sheetId:e,col:t,row:o}){return this.getFilterHeaders(e).some((e=>e.col===t&&e.row===o))}canCreateDynamicTableOnZones(e,t){if(!un(t))return!1;const o=Yi(...t),s={col:o.left,row:o.top,sheetId:e},i=this.getters.getArrayFormulaSpreadingOn(s);if(!i)return!1;if(Ge(i,s)&&1===dn(o))return!0;return Ge(o,this.getters.getSpreadZone(i))}coreTableToTable(e,t){if("dynamic"!==t.type)return t;const o=t.range.zone,s={sheetId:e,col:o.left,row:o.top},i=this.getters.getSpreadZone(s)??t.range.zone,n=this.getters.getRangeFromZone(e,i),r=this.getDynamicTableFilters(e,t,i);return{id:t.id,range:n,filters:r,config:t.config}}getDynamicTableFilters(e,t,o){const s=[],{top:i,bottom:n,left:r,right:a}=o;for(let o=r;o<=a;o++){const a=o-r,l={left:o,right:o,top:i,bottom:n},c=mR(this.getDynamicTableFilterId(t.id,a),this.getters.getRangeFromZone(e,l),t.config,this.getters.getRangeFromZone);s.push(c)}return s}getDynamicTableFilterId(e,t){return e+"_"+t}exportForExcel(e){for(const t of e.sheets)for(const e of t.tables){const o=zi(e.range),s={sheetId:t.id,col:o.left,row:o.top},i=this.getters.getCoreTable(s),n=this.getTable(s);"dynamic"===i?.type&&n&&(e.range=Wi(n.range.zone))}}}).add("custom_colors",class extends d_{customColors={};shouldUpdateColors=!0;static getters=["getCustomColors"];constructor(e){super(e);for(const t of e.customColors??[])this.tryToAddColor(t)}handle(e){switch(e.type){case"UPDATE_CELL":case"UPDATE_CHART":case"CREATE_CHART":case"ADD_CONDITIONAL_FORMAT":case"SET_BORDER":case"SET_ZONE_BORDERS":case"SET_FORMATTING":case"CREATE_TABLE":case"UPDATE_TABLE":this.history.update("shouldUpdateColors",!0)}}finalize(){if(this.shouldUpdateColors){this.history.update("shouldUpdateColors",!1);for(const e of this.computeCustomColors())this.tryToAddColor(e)}}getCustomColors(){return function(e){const t=[{leadColor:gt(255,0,0),colors:[]},{leadColor:gt(255,128,0),colors:[]},{leadColor:gt(128,128,0),colors:[]},{leadColor:gt(128,255,0),colors:[]},{leadColor:gt(0,255,0),colors:[]},{leadColor:gt(0,255,128),colors:[]},{leadColor:gt(0,255,255),colors:[]},{leadColor:gt(0,127,255),colors:[]},{leadColor:gt(0,0,255),colors:[]},{leadColor:gt(127,0,255),colors:[]},{leadColor:gt(128,0,128),colors:[]},{leadColor:gt(255,0,128),colors:[]}];for(const o of e.map(ft)){let e=500,s=0;t.forEach(((t,i)=>{const n=(r=o,a=t.leadColor,Math.sqrt(Math.pow(r.r-a.r,2)+Math.pow(r.g-a.g,2)+Math.pow(r.b-a.b,2)));var r,a;e>n&&(e=n,s=i)})),t[s].colors.push(o)}return t.map((e=>e.colors.sort(((e,t)=>vt(e).s-vt(t).s)))).flat().map(mt)}(Object.keys(this.customColors))}computeCustomColors(){let e=[];for(const t of this.getters.getSheetIds())e=e.concat(this.getColorsFromCells(t),this.getFormattingColors(t),this.getChartColors(t),this.getTableColors(t));return[...new Set([...e])]}getColorsFromCells(e){const t=Object.values(this.getters.getCells(e)),o=new Set;for(const e of t)e.style?.textColor&&o.add(e.style.textColor),e.style?.fillColor&&o.add(e.style.fillColor);for(const t of this.getters.getBordersColors(e))o.add(t);return[...o]}getFormattingColors(e){const t=this.getters.getConditionalFormats(e),o=[];for(const e of t){const t=e.rule;"CellIsRule"===t.type?(o.push(t.style.textColor),o.push(t.style.fillColor)):"ColorScaleRule"===t.type&&(o.push(ct(t.minimum.color)),o.push(t.midpoint?ct(t.midpoint.color):void 0),o.push(ct(t.maximum.color)))}return o.filter(Le)}getChartColors(e){const t=this.getters.getChartIds(e).map((e=>this.getters.getChart(e)));let o=new Set;for(let e of t){if(void 0===e)continue;const t=e.getDefinition().background;switch(void 0!==t&&o.add(t),e.type){case"gauge":const t=e.sectionRule.colors;o.add(t.lowerColor),o.add(t.middleColor),o.add(t.upperColor);break;case"scorecard":const s=e;o.add(s.baselineColorDown),o.add(s.baselineColorUp)}}return[...o]}getTableColors(e){return this.getters.getTables(e).flatMap((e=>{const t=e.config,o=this.getters.getTableStyle(t.styleId);return[this.getTableStyleElementColors(o.wholeTable),t.numberOfHeaders>0?this.getTableStyleElementColors(o.headerRow):[],t.totalRow?this.getTableStyleElementColors(o.totalRow):[],t.bandedColumns?this.getTableStyleElementColors(o.firstColumnStripe):[],t.bandedColumns?this.getTableStyleElementColors(o.secondColumnStripe):[],t.bandedRows?this.getTableStyleElementColors(o.firstRowStripe):[],t.bandedRows?this.getTableStyleElementColors(o.secondRowStripe):[],t.firstColumn?this.getTableStyleElementColors(o.firstColumn):[],t.lastColumn?this.getTableStyleElementColors(o.lastColumn):[]].flat()}))}getTableStyleElementColors(e){return e?[e.style?.fillColor,e.style?.textColor,e.border?.bottom?.color,e.border?.top?.color,e.border?.left?.color,e.border?.right?.color,e.border?.horizontal?.color,e.border?.vertical?.color].filter(Le):[]}tryToAddColor(e){if(!dt(e))return;const t=ht(e);e&&!F.includes(t)&&this.history.update("customColors",t,!0)}}).add("pivot_ui",class extends d_{static getters=["getPivot","getFirstPivotFunction","getPivotIdFromPosition","getPivotCellFromPosition","isPivotUnused","isSpillPivotFormula"];pivots={};unusedPivots;custom;constructor(e){super(e),this.custom=e.custom}beforeHandle(e){if("START"===e.type)for(const e of this.getters.getPivotIds())this.setupPivot(e)}handle(e){if(Co.has(e.type))for(const e of this.getters.getPivotIds())sR.get(this.getters.getPivotCoreDefinition(e).type).externalData||this.setupPivot(e,{recreate:!0});switch(e.type){case"REFRESH_PIVOT":this.refreshPivot(e.id);break;case"ADD_PIVOT":this.setupPivot(e.pivotId);break;case"DUPLICATE_PIVOT":this.setupPivot(e.newPivotId);break;case"UPDATE_PIVOT":this.setupPivot(e.pivotId,{recreate:!0});break;case"DELETE_SHEET":case"UPDATE_CELL":this.unusedPivots=void 0;break;case"UNDO":case"REDO":{this.unusedPivots=void 0;const t=e.commands.filter(X_);for(const e of t){const t=e.pivotId;this.getters.isExistingPivot(t)&&this.setupPivot(t,{recreate:!0})}break}}}getPivotIdFromPosition(e){const t=this.getters.getCorrespondingFormulaCell(e);if(t&&t.isFormula){const o=this.getFirstPivotFunction(e.sheetId,t.compiledFormula.tokens);if(o){const e=o.args[0]?.toString();return e&&this.getters.getPivotId(e)}}}isSpillPivotFormula(e){const t=this.getters.getCorrespondingFormulaCell(e);if(t&&t.isFormula){const o=this.getFirstPivotFunction(e.sheetId,t.compiledFormula.tokens);return"PIVOT"===o?.functionName}return!1}getFirstPivotFunction(e,t){const o=xv(t);if(!o)return;const{functionName:s,args:i}=o;return{functionName:s,args:i.map((t=>{if("EMPTY"==t.type)return;if("STRING"===t.type||"BOOLEAN"===t.type||"NUMBER"===t.type)return t.value;const o=Fa(t);return this.getters.evaluateFormula(e,o)}))}}getPivotCellFromPosition(e){const t=this.getters.getCorrespondingFormulaCell(e);if(!t||!t.isFormula||0===Ev(t.compiledFormula.tokens))return ZI;const o=this.getters.getCellPosition(t.id),s=this.getters.getFirstPivotFunction(e.sheetId,t.compiledFormula.tokens);if(!s)return ZI;const{functionName:i,args:n}=s,r=n[0];if(!r)return ZI;const a=this.getters.getPivotId(r.toString());if(!a)return ZI;const l=this.getPivot(a);if(!l.isValid())return ZI;if("PIVOT"===i&&!t.content.replaceAll(" ","").toUpperCase().startsWith("=PIVOT"))return ZI;if("PIVOT"===i){const t=!1!==n[2]&&void 0,s=!1!==n[3]&&void 0,i=l.getTableStructure().getPivotCells(t,s),r=e.col-o.col,a=e.row-o.row;return i[r][a]}try{if("PIVOT.HEADER"===i&&"measure"===n.at(-2)){return{type:"MEASURE_HEADER",domain:l.parseArgsToPivotDomain(n.slice(1,-2).map((e=>({value:e})))),measure:n.at(-1)?.toString()||""}}if("PIVOT.HEADER"===i){return{type:"HEADER",domain:l.parseArgsToPivotDomain(n.slice(1).map((e=>({value:e}))))}}const[e,...t]=n.slice(1);return{type:"VALUE",domain:l.parseArgsToPivotDomain(t.map((e=>({value:e})))),measure:e?.toString()||""}}catch(e){return ZI}}getPivot(e){if(!this.getters.isExistingPivot(e))throw new Error(`pivot ${e} not found`);return this.pivots[e]}isPivotUnused(e){return this._getUnusedPivots().includes(e)}refreshPivot(e){this.getters.getPivot(e).init({reload:!0})}setupPivot(e,{recreate:t}={recreate:!1}){const o=this.getters.getPivotCoreDefinition(e);if(t||!(e in this.pivots)){const t=sR.get(o.type).ui;this.pivots[e]=new t(this.custom,{definition:o,getters:this.getters})}}_getUnusedPivots(){if(void 0!==this.unusedPivots)return this.unusedPivots;const e=new Set(this.getters.getPivotIds());for(const t of this.getters.getSheetIds())for(const o in this.getters.getCells(t)){const t=this.getters.getCellPosition(o),s=this.getPivotIdFromPosition(t);if(s&&(e.delete(s),!e.size))return this.unusedPivots=[],[]}return this.unusedPivots=[...e],this.unusedPivots}}),DD=new n;DD.add("link",{condition:(e,t)=>!!t.getEvaluatedCell(e).link,execute:(e,t)=>Ba(t.model.getters.getEvaluatedCell(e).link,t),sequence:5});class FD{fileStore;constructor(e){this.fileStore=e}async requestImage(){const e=await this.getImageFromUser(),t=await this.fileStore.upload(e);return{path:t,size:await this.getImageOriginalSize(t),mimetype:e.type}}getImageFromUser(){return new Promise(((e,t)=>{const o=document.createElement("input");o.setAttribute("type","file"),o.setAttribute("accept","image/*"),o.addEventListener("change",(async()=>{null===o.files||1!=o.files.length?t():e(o.files[0])})),o.click()}))}getImageOriginalSize(e){return new Promise(((t,o)=>{const s=new Image;s.src=e,s.addEventListener("load",(()=>{const e={width:s.width,height:s.height};t(e)})),s.addEventListener("error",o)}))}}const MD=[{transform:"scale(0)"},{transform:"scale(0.8)",offset:.33},{opacity:"0",transform:"scale(1)",offset:1}];Ob`
1790
1790
  .o-ripple {
1791
1791
  z-index: 1;
1792
1792
  }
@@ -3121,4 +3121,4 @@
3121
3121
  <tableParts count="${e.tables.length}">
3122
3122
  ${IO(a)}
3123
3123
  </tableParts>
3124
- `}var hM;!function(e){e[e.Ready=0]="Ready",e[e.Running=1]="Running",e[e.RunningCore=2]="RunningCore",e[e.Finalizing=3]="Finalizing"}(hM||(hM={}));function dM(e,t={}){const o=be(t);return o.type=e,o}const uM={},gM={MIN_ROW_HEIGHT:10,MIN_COL_WIDTH:5,HEADER_HEIGHT:M,HEADER_WIDTH:P,TOPBAR_HEIGHT:63,BOTTOMBAR_HEIGHT:36,DEFAULT_CELL_WIDTH:N,DEFAULT_CELL_HEIGHT:L,SCROLLBAR_WIDTH:k},pM={autoCompleteProviders:el,autofillModifiersRegistry:Rv,autofillRulesRegistry:Tv,cellMenuRegistry:Cw,colMenuRegistry:aE,errorTypes:Ho,linkMenuRegistry:Ry,functionRegistry:yb,featurePluginRegistry:AD,iconsOnCellRegistry:QE,statefulUIPluginRegistry:OD,coreViewsPluginRegistry:_D,corePluginRegistry:TD,rowMenuRegistry:dE,sidePanelRegistry:OR,figureRegistry:ZS,chartSidePanelComponentRegistry:jE,chartComponentRegistry:HS,chartRegistry:US,chartSubtypeRegistry:BS,topbarMenuRegistry:gE,topbarComponentRegistry:_R,clickableCellRegistry:DD,otRegistry:pE,inverseCommandRegistry:KS,urlRegistry:ka,cellPopoverRegistry:Mv,numberFormatMenuRegistry:lE,repeatLocalCommandTransformRegistry:xD,repeatCommandTransformRegistry:wD,clipboardHandlersRegistries:la,pivotRegistry:sR,pivotTimeAdapterRegistry:Fr,pivotSidePanelRegistry:rR,pivotNormalizationValueRegistry:ia,supportedPivotPositionalFormulaRegistry:Iv,pivotToFunctionValueRegistry:na},mM={arg:Ac,isEvaluationError:Xo,toBoolean:cs,toJsDate:hs,toNumber:Qo,toString:rs,toNormalizedPivotValue:ea,toXC:_t,toZone:zi,toUnboundedZone:Hi,toCartesian:Ot,numberToLetters:Rt,lettersToNumber:Tt,UuidGenerator:Hn,formatValue:qs,createCurrencyFormat:li,ColorGenerator:It,computeTextWidth:In,createEmptyWorkbookData:e_,createEmptySheet:JO,createEmptyExcelSheet:t_,getDefaultChartJsRuntime:rS,chartFontColor:Xl,getChartAxisTitleRuntime:ec,getFillingMode:dS,rgbaToHex:mt,colorToRGBA:ft,positionToZone:ln,isDefined:Le,isMatrix:No,lazy:Be,genericRepeat:ED,createAction:i,createActions:o,transformRangeData:ha,deepEquals:Ge,overlap:Qi,union:Yi,isInside:Ji,deepCopy:be,expandZoneOnInsertion:Gi,reduceZoneOnDeletion:ji,unquote:Se,getMaxObjectId:qr,getFunctionsFromTokens:bv,getFirstPivotFunction:xv,getNumberOfPivotFunctions:Ev,parseDimension:Yr,isDateField:Xr,makeFieldProposal:Sv,insertTokenAfterArgSeparator:yv,insertTokenAfterLeftParenthesis:Cv,mergeContiguousZones:gn,getPivotHighlights:uE,pivotTimeAdapter:Mr,UNDO_REDO_PIVOT_COMMANDS:Y_,createPivotFormula:Jr,areDomainArgsFieldsValid:Qr,formatTickValue:oc},fM={isMarkdownLink:Ae,parseMarkdownLink:De,markdownLink:_e,openLink:Ba,urlRepresentation:za},bM={Checkbox:mE,Section:fE,RoundColorPicker:LE,ChartDataSeries:yE,ChartErrorSection:wE,ChartLabelRange:xE,ChartTitle:kE,ChartPanel:KE,ChartFigure:WS,ChartJsComponent:lc,Grid:TT,GridOverlay:rT,ScorecardChart:Ec,LineConfigPanel:$E,BarConfigPanel:IE,PieChartDesignPanel:WE,GenericChartConfigPanel:EE,ChartWithAxisDesignPanel:HE,GaugeChartConfigPanel:zE,GaugeChartDesignPanel:BE,ScorecardChartConfigPanel:GE,ScorecardChartDesignPanel:qE,ChartTypePicker:YE,FigureComponent:DR,Menu:Ty,Popover:ay,SelectionInput:SE,ValidationMessages:CE,AddDimensionButton:NI,PivotDimensionGranularity:kI,PivotDimensionOrder:VI,PivotDimension:LI,PivotLayoutConfigurator:UI,EditableName:zI,PivotDeferUpdate:PI,PivotTitleSection:BI,CogWheelMenu:HI},vM={useDragAndDropListItems:sI,useHighlights:hI,useHighlightsOnHover:cI},SM={useStoreProvider:Il,DependencyContainer:wl,CellPopoverStore:sy,ComposerFocusStore:Hl,ComposerStore:Ul,FindAndReplaceStore:_I,HighlightStore:Ll,HoveredCellStore:oy,ModelStore:Dl,NotificationStore:kl,RendererStore:Ml,SelectionInputStore:vE,SpreadsheetStore:Pl,useStore:Rl,useLocalStore:Tl,SidePanelStore:xT,PivotSidePanelStore:iR};const yM={DEFAULT_LOCALE:Mo,HIGHLIGHT_COLOR:a,PIVOT_TABLE_CONFIG:pe,ChartTerms:al};e.AbstractCellClipboardHandler=Wn,e.AbstractChart=cc,e.AbstractFigureClipboardHandler=aa,e.CellErrorType=Uo,e.CorePlugin=s_,e.DispatchResult=Ao,e.EvaluationError=zo,e.Model=class extends Cl{corePlugins=[];featurePlugins=[];statefulUIPlugins=[];coreViewsPlugins=[];range;session;isReplayingCommand=!1;renderers={};status=0;config;corePluginConfig;uiPluginConfig;state;selection;getters;coreGetters;uuidGenerator;handlers=[];uiHandlers=[];coreHandlers=[];constructor(e={},o={},s=[],i=new Hn,n=!0){const r=performance.now();console.debug("##### Model creation #####"),super(),po===uo&&mo===go&&(mo=()=>!0),s=XO(e,s);const a=jO(e,n);this.state=new SF,this.uuidGenerator=i,this.config=this.setupConfig(o),this.session=this.setupSession(a.revisionId),this.coreGetters={},this.range=new c_(this.coreGetters),this.coreGetters.getRangeString=this.range.getRangeString.bind(this.range),this.coreGetters.getRangeFromSheetXC=this.range.getRangeFromSheetXC.bind(this.range),this.coreGetters.createAdaptedRanges=this.range.createAdaptedRanges.bind(this.range),this.coreGetters.getRangeDataFromXc=this.range.getRangeDataFromXc.bind(this.range),this.coreGetters.getRangeDataFromZone=this.range.getRangeDataFromZone.bind(this.range),this.coreGetters.getRangeFromRangeData=this.range.getRangeFromRangeData.bind(this.range),this.coreGetters.getRangeFromZone=this.range.getRangeFromZone.bind(this.range),this.coreGetters.recomputeRanges=this.range.recomputeRanges.bind(this.range),this.coreGetters.isRangeValid=this.range.isRangeValid.bind(this.range),this.coreGetters.extendRange=this.range.extendRange.bind(this.range),this.coreGetters.getRangesUnion=this.range.getRangesUnion.bind(this.range),this.coreGetters.removeRangesSheetPrefix=this.range.removeRangesSheetPrefix.bind(this.range),this.getters={isReadonly:()=>"readonly"===this.config.mode||"dashboard"===this.config.mode,isDashboard:()=>"dashboard"===this.config.mode},this.selection=new bF(this.getters),this.coreHandlers.push(this.range),this.handlers.push(this.range),this.corePluginConfig=this.setupCorePluginConfig(),this.uiPluginConfig=this.setupUiPluginConfig();for(let e of TD.getAll())this.setupCorePlugin(e,a);Object.assign(this.getters,this.coreGetters),this.session.loadInitialMessages(s);for(let e of _D.getAll()){const t=this.setupUiPlugin(e);this.coreViewsPlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t),this.coreHandlers.push(t)}for(let e of OD.getAll()){const t=this.setupUiPlugin(e);this.statefulUIPlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t)}for(let e of AD.getAll()){const t=this.setupUiPlugin(e);this.featurePlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t)}if(this.uuidGenerator.setIsFastStrategy(!1),this.dispatch("START"),this.selection.observe(this,{handleEvent:()=>this.trigger("update")}),this.setupSessionEvents(),this.joinSession(),o.snapshotRequested){const e=performance.now();console.debug("Snapshot requested"),this.session.snapshot(this.exportData()),this.garbageCollectExternalResources(),console.debug("Snapshot taken in",performance.now()-e,"ms")}t.markRaw(this),console.debug("Model created in",performance.now()-r,"ms"),console.debug("######")}joinSession(){this.session.join(this.config.client)}async leaveSession(){const e=this.getters.isReadonly()?void 0:Be((()=>this.exportData()));await this.session.leave(e)}setupUiPlugin(e){const t=new e(this.uiPluginConfig);for(let o of e.getters){if(!(o in t))throw new Error(`Invalid getter name: ${o} for plugin ${t.constructor}`);if(o in this.getters)throw new Error(`Getter "${o}" is already defined.`);this.getters[o]=t[o].bind(t)}for(const o of e.layers)this.renderers[o]||(this.renderers[o]=[]),this.renderers[o].push(t);return t}setupCorePlugin(e,t){const o=new e(this.corePluginConfig);for(let t of e.getters){if(!(t in o))throw new Error(`Invalid getter name: ${t} for plugin ${o.constructor}`);if(t in this.coreGetters)throw new Error(`Getter "${t}" is already defined.`);this.coreGetters[t]=o[t].bind(o)}o.import(t),this.corePlugins.push(o),this.coreHandlers.push(o),this.handlers.push(o)}onRemoteRevisionReceived({commands:e}){for(let t of e){const e=this.status;this.status=2,this.dispatchToHandlers(this.statefulUIPlugins,t),this.status=e}this.finalize()}setupSession(e){return new hD(pF({initialRevisionId:e,recordChanges:this.state.recordChanges.bind(this.state),dispatch:e=>{this.checkDispatchAllowed(e).isSuccessful&&(this.isReplayingCommand=!0,this.dispatchToHandlers(this.coreHandlers,e),this.isReplayingCommand=!1)}}),this.config.transportService,e)}setupSessionEvents(){this.session.on("remote-revision-received",this,this.onRemoteRevisionReceived),this.session.on("revision-undone",this,(({commands:e})=>{this.dispatchFromCorePlugin("UNDO",{commands:e}),this.finalize()})),this.session.on("revision-redone",this,(({commands:e})=>{this.dispatchFromCorePlugin("REDO",{commands:e}),this.finalize()})),this.session.on("unexpected-revision-id",this,(()=>this.trigger("unexpected-revision-id"))),this.session.on("collaborative-event-received",this,(()=>{this.trigger("update")}))}setupConfig(e){const t=e.client||{id:this.uuidGenerator.uuidv4(),name:bo("Anonymous").toString()},o=e.transportService||new rF;return{...e,mode:e.mode||"normal",custom:e.custom||{},external:this.setupExternalConfig(e.external||{}),transportService:o,client:t,moveClient:()=>{},snapshotRequested:!1,notifyUI:e=>this.trigger("notify-ui",e),raiseBlockingErrorUI:e=>this.trigger("raise-error-ui",{text:e}),customColors:e.customColors||[]}}setupExternalConfig(e){const t=e.loadLocales||(()=>Promise.resolve(Fo));return{...e,loadLocales:t}}setupCorePluginConfig(){return{getters:this.coreGetters,stateObserver:this.state,range:this.range,dispatch:this.dispatchFromCorePlugin,canDispatch:this.canDispatch,uuidGenerator:this.uuidGenerator,custom:this.config.custom,external:this.config.external}}setupUiPluginConfig(){return{getters:this.getters,stateObserver:this.state,dispatch:this.dispatch,canDispatch:this.canDispatch,selection:this.selection,moveClient:this.session.move.bind(this.session),custom:this.config.custom,uiActions:this.config,session:this.session,defaultCurrencyFormat:this.config.defaultCurrencyFormat,customColors:this.config.customColors||[]}}checkDispatchAllowed(e){const t=To(e)?this.checkDispatchAllowedCoreCommand(e):this.checkDispatchAllowedLocalCommand(e);return t.some((e=>"Success"!==e))?new Ao(t.flat()):Ao.Success}checkDispatchAllowedCoreCommand(e){const t=this.corePlugins.map((t=>t.allowDispatch(e)));return t.push(this.range.allowDispatch(e)),t}checkDispatchAllowedLocalCommand(e){return this.uiHandlers.map((t=>t.allowDispatch(e)))}finalize(){this.status=3;for(const e of this.handlers)e.finalize();this.status=0,this.trigger("command-finalized")}canDispatch=(e,t)=>this.checkDispatchAllowed(dM(e,t));dispatch=(e,t)=>{const o=dM(e,t);let s=this.status;if(this.getters.isReadonly()&&(i=o,!Io.has(i.type)))return new Ao("Readonly");var i;if(!this.session.canApplyOptimisticUpdate())return new Ao("WaitingSessionConfirmation");switch(s){case 0:const t=this.checkDispatchAllowed(o);if(!t.isSuccessful)return t;this.status=1;const{changes:s,commands:i}=this.state.recordChanges((()=>{const t=performance.now();To(o)&&this.state.addCommand(o),this.dispatchToHandlers(this.handlers,o),this.finalize();const s=performance.now()-t;s>5&&console.debug(e,s,"ms")}));this.session.save(o,i,s),this.status=0,this.trigger("update");break;case 1:if(To(o)){const e=this.checkDispatchAllowed(o);if(!e.isSuccessful)return e;this.state.addCommand(o)}this.dispatchToHandlers(this.handlers,o);break;case 3:throw new Error("Cannot dispatch commands in the finalize state");case 2:if(To(o))throw new Error(`A UI plugin cannot dispatch ${e} while handling a core command`);this.dispatchToHandlers(this.handlers,o)}return Ao.Success};dispatchFromCorePlugin=(e,t)=>{const o=dM(e,t),s=this.status;this.status=2;const i=this.isReplayingCommand?this.coreHandlers:this.handlers;return this.dispatchToHandlers(i,o),this.status=s,Ao.Success};dispatchToHandlers(e,t){const o=To(t);for(const s of e)!o&&s instanceof s_||s.beforeHandle(t);for(const s of e)!o&&s instanceof s_||s.handle(t);this.trigger("command-dispatched",t)}drawLayer(e,t){const o=this.renderers[t];if(o)for(const s of o)e.ctx.save(),s.drawLayer(e,t),e.ctx.restore()}exportData(){let e=e_();for(let t of this.handlers)t instanceof s_&&t.export(e);return e.revisionId=this.session.getRevisionId()||Q,e=be(e),e}updateMode(e){this.config.mode=e,this.trigger("update")}exportXLSX(){this.dispatch("EVALUATE_CELLS");let e={...e_(),sheets:[t_(ZO,"Sheet1")]};for(let t of this.handlers)t instanceof o_&&t.exportForExcel(e);return e=be(e),lM(e)}garbageCollectExternalResources(){for(const e of this.corePlugins)e.garbageCollectExternalResources()}},e.PivotRuntimeDefinition=$I,e.Registry=n,e.Revision=lD,e.SPREADSHEET_DIMENSIONS=gM,e.Spreadsheet=nF,e.SpreadsheetPivotTable=qI,e.UIPlugin=d_,e.__info__=uM,e.addFunction=function e(t,o){return yb.add(t,o),{addFunction:(t,o)=>e(t,o)}},e.addRenderingLayer=function(e,t){if(ko[e])throw new Error(`Layer ${e} already exists`);ko[e]=t},e.astToFormula=Fa,e.compile=gv,e.compileTokens=pv,e.components=bM,e.constants=yM,e.convertAstNodes=Aa,e.coreTypes=Ro,e.findCellInNewZone=an,e.functionCache=uv,e.helpers=mM,e.hooks=vM,e.invalidateCFEvaluationCommands=xo,e.invalidateDependenciesCommands=wo,e.invalidateEvaluationCommands=Co,e.iterateAstNodes=Oa,e.links=fM,e.load=jO,e.parse=Ra,e.parseTokens=Ta,e.readonlyAllowedCommands=Io,e.registries=pM,e.setDefaultSheetViewSize=function(e){he=e},e.setTranslationMethod=function(e,t=(()=>!0)){po=e,mo=t},e.stores=SM,e.tokenColors=sv,e.tokenize=Zn,uM.version="17.4.13",uM.date="2024-11-22T14:17:01.675Z",uM.hash="a5e4e16"}(this.o_spreadsheet=this.o_spreadsheet||{},owl);
3124
+ `}var hM;!function(e){e[e.Ready=0]="Ready",e[e.Running=1]="Running",e[e.RunningCore=2]="RunningCore",e[e.Finalizing=3]="Finalizing"}(hM||(hM={}));function dM(e,t={}){const o=be(t);return o.type=e,o}const uM={},gM={MIN_ROW_HEIGHT:10,MIN_COL_WIDTH:5,HEADER_HEIGHT:M,HEADER_WIDTH:P,TOPBAR_HEIGHT:63,BOTTOMBAR_HEIGHT:36,DEFAULT_CELL_WIDTH:N,DEFAULT_CELL_HEIGHT:L,SCROLLBAR_WIDTH:k},pM={autoCompleteProviders:el,autofillModifiersRegistry:Rv,autofillRulesRegistry:Tv,cellMenuRegistry:Cw,colMenuRegistry:aE,errorTypes:Ho,linkMenuRegistry:Ry,functionRegistry:yb,featurePluginRegistry:AD,iconsOnCellRegistry:QE,statefulUIPluginRegistry:OD,coreViewsPluginRegistry:_D,corePluginRegistry:TD,rowMenuRegistry:dE,sidePanelRegistry:OR,figureRegistry:ZS,chartSidePanelComponentRegistry:jE,chartComponentRegistry:HS,chartRegistry:US,chartSubtypeRegistry:BS,topbarMenuRegistry:gE,topbarComponentRegistry:_R,clickableCellRegistry:DD,otRegistry:pE,inverseCommandRegistry:KS,urlRegistry:ka,cellPopoverRegistry:Mv,numberFormatMenuRegistry:lE,repeatLocalCommandTransformRegistry:xD,repeatCommandTransformRegistry:wD,clipboardHandlersRegistries:la,pivotRegistry:sR,pivotTimeAdapterRegistry:Fr,pivotSidePanelRegistry:rR,pivotNormalizationValueRegistry:ia,supportedPivotPositionalFormulaRegistry:Iv,pivotToFunctionValueRegistry:na},mM={arg:Ac,isEvaluationError:Xo,toBoolean:cs,toJsDate:hs,toNumber:Qo,toString:rs,toNormalizedPivotValue:ea,toXC:_t,toZone:zi,toUnboundedZone:Hi,toCartesian:Ot,numberToLetters:Rt,lettersToNumber:Tt,UuidGenerator:Hn,formatValue:qs,createCurrencyFormat:li,ColorGenerator:It,computeTextWidth:In,createEmptyWorkbookData:e_,createEmptySheet:JO,createEmptyExcelSheet:t_,getDefaultChartJsRuntime:rS,chartFontColor:Xl,getChartAxisTitleRuntime:ec,getFillingMode:dS,rgbaToHex:mt,colorToRGBA:ft,positionToZone:ln,isDefined:Le,isMatrix:No,lazy:Be,genericRepeat:ED,createAction:i,createActions:o,transformRangeData:ha,deepEquals:Ge,overlap:Qi,union:Yi,isInside:Ji,deepCopy:be,expandZoneOnInsertion:Gi,reduceZoneOnDeletion:ji,unquote:Se,getMaxObjectId:qr,getFunctionsFromTokens:bv,getFirstPivotFunction:xv,getNumberOfPivotFunctions:Ev,parseDimension:Yr,isDateField:Xr,makeFieldProposal:Sv,insertTokenAfterArgSeparator:yv,insertTokenAfterLeftParenthesis:Cv,mergeContiguousZones:gn,getPivotHighlights:uE,pivotTimeAdapter:Mr,UNDO_REDO_PIVOT_COMMANDS:Y_,createPivotFormula:Jr,areDomainArgsFieldsValid:Qr,formatTickValue:oc},fM={isMarkdownLink:Ae,parseMarkdownLink:De,markdownLink:_e,openLink:Ba,urlRepresentation:za},bM={Checkbox:mE,Section:fE,RoundColorPicker:LE,ChartDataSeries:yE,ChartErrorSection:wE,ChartLabelRange:xE,ChartTitle:kE,ChartPanel:KE,ChartFigure:WS,ChartJsComponent:lc,Grid:TT,GridOverlay:rT,ScorecardChart:Ec,LineConfigPanel:$E,BarConfigPanel:IE,PieChartDesignPanel:WE,GenericChartConfigPanel:EE,ChartWithAxisDesignPanel:HE,GaugeChartConfigPanel:zE,GaugeChartDesignPanel:BE,ScorecardChartConfigPanel:GE,ScorecardChartDesignPanel:qE,ChartTypePicker:YE,FigureComponent:DR,Menu:Ty,Popover:ay,SelectionInput:SE,ValidationMessages:CE,AddDimensionButton:NI,PivotDimensionGranularity:kI,PivotDimensionOrder:VI,PivotDimension:LI,PivotLayoutConfigurator:UI,EditableName:zI,PivotDeferUpdate:PI,PivotTitleSection:BI,CogWheelMenu:HI},vM={useDragAndDropListItems:sI,useHighlights:hI,useHighlightsOnHover:cI},SM={useStoreProvider:Il,DependencyContainer:wl,CellPopoverStore:sy,ComposerFocusStore:Hl,ComposerStore:Ul,FindAndReplaceStore:_I,HighlightStore:Ll,HoveredCellStore:oy,ModelStore:Dl,NotificationStore:kl,RendererStore:Ml,SelectionInputStore:vE,SpreadsheetStore:Pl,useStore:Rl,useLocalStore:Tl,SidePanelStore:xT,PivotSidePanelStore:iR};const yM={DEFAULT_LOCALE:Mo,HIGHLIGHT_COLOR:a,PIVOT_TABLE_CONFIG:pe,ChartTerms:al};e.AbstractCellClipboardHandler=Wn,e.AbstractChart=cc,e.AbstractFigureClipboardHandler=aa,e.CellErrorType=Uo,e.CorePlugin=s_,e.DispatchResult=Ao,e.EvaluationError=zo,e.Model=class extends Cl{corePlugins=[];featurePlugins=[];statefulUIPlugins=[];coreViewsPlugins=[];range;session;isReplayingCommand=!1;renderers={};status=0;config;corePluginConfig;uiPluginConfig;state;selection;getters;coreGetters;uuidGenerator;handlers=[];uiHandlers=[];coreHandlers=[];constructor(e={},o={},s=[],i=new Hn,n=!0){const r=performance.now();console.debug("##### Model creation #####"),super(),po===uo&&mo===go&&(mo=()=>!0),s=XO(e,s);const a=jO(e,n);this.state=new SF,this.uuidGenerator=i,this.config=this.setupConfig(o),this.session=this.setupSession(a.revisionId),this.coreGetters={},this.range=new c_(this.coreGetters),this.coreGetters.getRangeString=this.range.getRangeString.bind(this.range),this.coreGetters.getRangeFromSheetXC=this.range.getRangeFromSheetXC.bind(this.range),this.coreGetters.createAdaptedRanges=this.range.createAdaptedRanges.bind(this.range),this.coreGetters.getRangeDataFromXc=this.range.getRangeDataFromXc.bind(this.range),this.coreGetters.getRangeDataFromZone=this.range.getRangeDataFromZone.bind(this.range),this.coreGetters.getRangeFromRangeData=this.range.getRangeFromRangeData.bind(this.range),this.coreGetters.getRangeFromZone=this.range.getRangeFromZone.bind(this.range),this.coreGetters.recomputeRanges=this.range.recomputeRanges.bind(this.range),this.coreGetters.isRangeValid=this.range.isRangeValid.bind(this.range),this.coreGetters.extendRange=this.range.extendRange.bind(this.range),this.coreGetters.getRangesUnion=this.range.getRangesUnion.bind(this.range),this.coreGetters.removeRangesSheetPrefix=this.range.removeRangesSheetPrefix.bind(this.range),this.getters={isReadonly:()=>"readonly"===this.config.mode||"dashboard"===this.config.mode,isDashboard:()=>"dashboard"===this.config.mode},this.selection=new bF(this.getters),this.coreHandlers.push(this.range),this.handlers.push(this.range),this.corePluginConfig=this.setupCorePluginConfig(),this.uiPluginConfig=this.setupUiPluginConfig();for(let e of TD.getAll())this.setupCorePlugin(e,a);Object.assign(this.getters,this.coreGetters),this.session.loadInitialMessages(s);for(let e of _D.getAll()){const t=this.setupUiPlugin(e);this.coreViewsPlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t),this.coreHandlers.push(t)}for(let e of OD.getAll()){const t=this.setupUiPlugin(e);this.statefulUIPlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t)}for(let e of AD.getAll()){const t=this.setupUiPlugin(e);this.featurePlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t)}if(this.uuidGenerator.setIsFastStrategy(!1),this.dispatch("START"),this.selection.observe(this,{handleEvent:()=>this.trigger("update")}),this.setupSessionEvents(),this.joinSession(),o.snapshotRequested){const e=performance.now();console.debug("Snapshot requested"),this.session.snapshot(this.exportData()),this.garbageCollectExternalResources(),console.debug("Snapshot taken in",performance.now()-e,"ms")}t.markRaw(this),console.debug("Model created in",performance.now()-r,"ms"),console.debug("######")}joinSession(){this.session.join(this.config.client)}async leaveSession(){const e=this.getters.isReadonly()?void 0:Be((()=>this.exportData()));await this.session.leave(e)}setupUiPlugin(e){const t=new e(this.uiPluginConfig);for(let o of e.getters){if(!(o in t))throw new Error(`Invalid getter name: ${o} for plugin ${t.constructor}`);if(o in this.getters)throw new Error(`Getter "${o}" is already defined.`);this.getters[o]=t[o].bind(t)}for(const o of e.layers)this.renderers[o]||(this.renderers[o]=[]),this.renderers[o].push(t);return t}setupCorePlugin(e,t){const o=new e(this.corePluginConfig);for(let t of e.getters){if(!(t in o))throw new Error(`Invalid getter name: ${t} for plugin ${o.constructor}`);if(t in this.coreGetters)throw new Error(`Getter "${t}" is already defined.`);this.coreGetters[t]=o[t].bind(o)}o.import(t),this.corePlugins.push(o),this.coreHandlers.push(o),this.handlers.push(o)}onRemoteRevisionReceived({commands:e}){for(let t of e){const e=this.status;this.status=2,this.dispatchToHandlers(this.statefulUIPlugins,t),this.status=e}this.finalize()}setupSession(e){return new hD(pF({initialRevisionId:e,recordChanges:this.state.recordChanges.bind(this.state),dispatch:e=>{this.checkDispatchAllowed(e).isSuccessful&&(this.isReplayingCommand=!0,this.dispatchToHandlers(this.coreHandlers,e),this.isReplayingCommand=!1)}}),this.config.transportService,e)}setupSessionEvents(){this.session.on("remote-revision-received",this,this.onRemoteRevisionReceived),this.session.on("revision-undone",this,(({commands:e})=>{this.dispatchFromCorePlugin("UNDO",{commands:e}),this.finalize()})),this.session.on("revision-redone",this,(({commands:e})=>{this.dispatchFromCorePlugin("REDO",{commands:e}),this.finalize()})),this.session.on("unexpected-revision-id",this,(()=>this.trigger("unexpected-revision-id"))),this.session.on("collaborative-event-received",this,(()=>{this.trigger("update")}))}setupConfig(e){const t=e.client||{id:this.uuidGenerator.uuidv4(),name:bo("Anonymous").toString()},o=e.transportService||new rF;return{...e,mode:e.mode||"normal",custom:e.custom||{},external:this.setupExternalConfig(e.external||{}),transportService:o,client:t,moveClient:()=>{},snapshotRequested:!1,notifyUI:e=>this.trigger("notify-ui",e),raiseBlockingErrorUI:e=>this.trigger("raise-error-ui",{text:e}),customColors:e.customColors||[]}}setupExternalConfig(e){const t=e.loadLocales||(()=>Promise.resolve(Fo));return{...e,loadLocales:t}}setupCorePluginConfig(){return{getters:this.coreGetters,stateObserver:this.state,range:this.range,dispatch:this.dispatchFromCorePlugin,canDispatch:this.canDispatch,uuidGenerator:this.uuidGenerator,custom:this.config.custom,external:this.config.external}}setupUiPluginConfig(){return{getters:this.getters,stateObserver:this.state,dispatch:this.dispatch,canDispatch:this.canDispatch,selection:this.selection,moveClient:this.session.move.bind(this.session),custom:this.config.custom,uiActions:this.config,session:this.session,defaultCurrencyFormat:this.config.defaultCurrencyFormat,customColors:this.config.customColors||[]}}checkDispatchAllowed(e){const t=To(e)?this.checkDispatchAllowedCoreCommand(e):this.checkDispatchAllowedLocalCommand(e);return t.some((e=>"Success"!==e))?new Ao(t.flat()):Ao.Success}checkDispatchAllowedCoreCommand(e){const t=this.corePlugins.map((t=>t.allowDispatch(e)));return t.push(this.range.allowDispatch(e)),t}checkDispatchAllowedLocalCommand(e){return this.uiHandlers.map((t=>t.allowDispatch(e)))}finalize(){this.status=3;for(const e of this.handlers)e.finalize();this.status=0,this.trigger("command-finalized")}canDispatch=(e,t)=>this.checkDispatchAllowed(dM(e,t));dispatch=(e,t)=>{const o=dM(e,t);let s=this.status;if(this.getters.isReadonly()&&(i=o,!Io.has(i.type)))return new Ao("Readonly");var i;if(!this.session.canApplyOptimisticUpdate())return new Ao("WaitingSessionConfirmation");switch(s){case 0:const t=this.checkDispatchAllowed(o);if(!t.isSuccessful)return t;this.status=1;const{changes:s,commands:i}=this.state.recordChanges((()=>{const t=performance.now();To(o)&&this.state.addCommand(o),this.dispatchToHandlers(this.handlers,o),this.finalize();const s=performance.now()-t;s>5&&console.debug(e,s,"ms")}));this.session.save(o,i,s),this.status=0,this.trigger("update");break;case 1:if(To(o)){const e=this.checkDispatchAllowed(o);if(!e.isSuccessful)return e;this.state.addCommand(o)}this.dispatchToHandlers(this.handlers,o);break;case 3:throw new Error("Cannot dispatch commands in the finalize state");case 2:if(To(o))throw new Error(`A UI plugin cannot dispatch ${e} while handling a core command`);this.dispatchToHandlers(this.handlers,o)}return Ao.Success};dispatchFromCorePlugin=(e,t)=>{const o=dM(e,t),s=this.status;this.status=2;const i=this.isReplayingCommand?this.coreHandlers:this.handlers;return this.dispatchToHandlers(i,o),this.status=s,Ao.Success};dispatchToHandlers(e,t){const o=To(t);for(const s of e)!o&&s instanceof s_||s.beforeHandle(t);for(const s of e)!o&&s instanceof s_||s.handle(t);this.trigger("command-dispatched",t)}drawLayer(e,t){const o=this.renderers[t];if(o)for(const s of o)e.ctx.save(),s.drawLayer(e,t),e.ctx.restore()}exportData(){let e=e_();for(let t of this.handlers)t instanceof s_&&t.export(e);return e.revisionId=this.session.getRevisionId()||Q,e=be(e),e}updateMode(e){this.config.mode=e,this.trigger("update")}exportXLSX(){this.dispatch("EVALUATE_CELLS");let e={...e_(),sheets:[t_(ZO,"Sheet1")]};for(let t of this.handlers)t instanceof o_&&t.exportForExcel(e);return e=be(e),lM(e)}garbageCollectExternalResources(){for(const e of this.corePlugins)e.garbageCollectExternalResources()}},e.PivotRuntimeDefinition=$I,e.Registry=n,e.Revision=lD,e.SPREADSHEET_DIMENSIONS=gM,e.Spreadsheet=nF,e.SpreadsheetPivotTable=qI,e.UIPlugin=d_,e.__info__=uM,e.addFunction=function e(t,o){return yb.add(t,o),{addFunction:(t,o)=>e(t,o)}},e.addRenderingLayer=function(e,t){if(ko[e])throw new Error(`Layer ${e} already exists`);ko[e]=t},e.astToFormula=Fa,e.compile=gv,e.compileTokens=pv,e.components=bM,e.constants=yM,e.convertAstNodes=Aa,e.coreTypes=Ro,e.findCellInNewZone=an,e.functionCache=uv,e.helpers=mM,e.hooks=vM,e.invalidateCFEvaluationCommands=xo,e.invalidateDependenciesCommands=wo,e.invalidateEvaluationCommands=Co,e.iterateAstNodes=Oa,e.links=fM,e.load=jO,e.parse=Ra,e.parseTokens=Ta,e.readonlyAllowedCommands=Io,e.registries=pM,e.setDefaultSheetViewSize=function(e){he=e},e.setTranslationMethod=function(e,t=(()=>!0)){po=e,mo=t},e.stores=SM,e.tokenColors=sv,e.tokenize=Zn,uM.version="17.4.14",uM.date="2024-11-28T09:08:12.462Z",uM.hash="81bf386"}(this.o_spreadsheet=this.o_spreadsheet||{},owl);