@knowsuchagency/fulcrum 2.3.3 → 2.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/fulcrum.js
CHANGED
|
@@ -45641,7 +45641,7 @@ async function runMcpServer(urlOverride, portOverride) {
|
|
|
45641
45641
|
const client = new FulcrumClient(urlOverride, portOverride);
|
|
45642
45642
|
const server = new McpServer({
|
|
45643
45643
|
name: "fulcrum",
|
|
45644
|
-
version: "2.3.
|
|
45644
|
+
version: "2.3.5"
|
|
45645
45645
|
});
|
|
45646
45646
|
registerTools(server, client);
|
|
45647
45647
|
const transport = new StdioServerTransport;
|
|
@@ -47990,7 +47990,7 @@ var marketplace_default = `{
|
|
|
47990
47990
|
"name": "fulcrum",
|
|
47991
47991
|
"source": "./",
|
|
47992
47992
|
"description": "Task orchestration for Claude Code",
|
|
47993
|
-
"version": "2.3.
|
|
47993
|
+
"version": "2.3.5",
|
|
47994
47994
|
"skills": [
|
|
47995
47995
|
"./skills/fulcrum"
|
|
47996
47996
|
],
|
|
@@ -49178,7 +49178,7 @@ function compareVersions(v1, v2) {
|
|
|
49178
49178
|
var package_default = {
|
|
49179
49179
|
name: "@knowsuchagency/fulcrum",
|
|
49180
49180
|
private: true,
|
|
49181
|
-
version: "2.3.
|
|
49181
|
+
version: "2.3.5",
|
|
49182
49182
|
description: "Harness Attention. Orchestrate Agents. Ship.",
|
|
49183
49183
|
license: "PolyForm-Perimeter-1.0.0",
|
|
49184
49184
|
type: "module",
|
|
@@ -112,7 +112,7 @@ WARNING: This link could potentially be dangerous`)){let n=window.open();if(n){t
|
|
|
112
112
|
`)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(e){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),mX&&e&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:this._activeSelectionMode===3})}_isClickInSelection(e){let t=this._getMouseBufferCoords(e),n=this._model.finalSelectionStart,r=this._model.finalSelectionEnd;return!n||!r||!t?!1:this._areCoordsInSelection(t,n,r)}isCellInSelection(e,t){let n=this._model.finalSelectionStart,r=this._model.finalSelectionEnd;return!n||!r?!1:this._areCoordsInSelection([e,t],n,r)}_areCoordsInSelection(e,t,n){return e[1]>t[1]&&e[1]<n[1]||t[1]===n[1]&&e[1]===t[1]&&e[0]>=t[0]&&e[0]<n[0]||t[1]<n[1]&&e[1]===n[1]&&e[0]<n[0]||t[1]<n[1]&&e[1]===t[1]&&e[0]>=t[0]}_selectWordAtCursor(e,t){let n=this._linkifier.currentLink?.link?.range;if(n)return this._model.selectionStart=[n.start.x-1,n.start.y-1],this._model.selectionStartLength=koe(n,this._bufferService.cols),this._model.selectionEnd=void 0,!0;let r=this._getMouseBufferCoords(e);return r?(this._selectWordAt(r,t),this._model.selectionEnd=void 0,!0):!1}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(e,t){this._model.clearSelection(),e=Math.max(e,0),t=Math.min(t,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,e],this._model.selectionEnd=[this._bufferService.cols,t],this.refresh(),this._onSelectionChange.fire()}_handleTrim(e){this._model.handleTrim(e)&&this.refresh()}_getMouseBufferCoords(e){let t=this._mouseService.getCoords(e,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(t)return t[0]--,t[1]--,t[1]+=this._bufferService.buffer.ydisp,t}_getMouseEventScrollAmount(e){let t=pX(this._coreBrowserService.window,e,this._screenElement)[1],n=this._renderService.dimensions.css.canvas.height;return t>=0&&t<=n?0:(t>n&&(t-=n),t=Math.min(Math.max(t,-Kj),Kj),t/=Kj,t/Math.abs(t)+Math.round(t*(jyt-1)))}shouldForceSelection(e){return dO?e.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:e.shiftKey}handleMouseDown(e){if(this._mouseDownTimeStamp=e.timeStamp,!(e.button===2&&this.hasSelection)&&e.button===0){if(!this._enabled){if(!this.shouldForceSelection(e))return;e.stopPropagation()}e.preventDefault(),this._dragScrollAmount=0,this._enabled&&e.shiftKey?this._handleIncrementalClick(e):e.detail===1?this._handleSingleClick(e):e.detail===2?this._handleDoubleClick(e):e.detail===3&&this._handleTripleClick(e),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener("mouseup",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),Myt)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener("mouseup",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))}_handleSingleClick(e){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(e)?3:0,this._model.selectionStart=this._getMouseBufferCoords(e),!this._model.selectionStart)return;this._model.selectionEnd=void 0;let t=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);t&&t.length!==this._model.selectionStart[0]&&t.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(e){this._selectWordAtCursor(e,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(e){let t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=2,this._selectLineAt(t[1]))}shouldColumnSelect(e){return e.altKey&&!(dO&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(e){if(e.stopImmediatePropagation(),!this._model.selectionStart)return;let t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),!this._model.selectionEnd){this.refresh(!0);return}this._activeSelectionMode===2?this._model.selectionEnd[1]<this._model.selectionStart[1]?this._model.selectionEnd[0]=0:this._model.selectionEnd[0]=this._bufferService.cols:this._activeSelectionMode===1&&this._selectToWordAt(this._model.selectionEnd),this._dragScrollAmount=this._getMouseEventScrollAmount(e),this._activeSelectionMode!==3&&(this._dragScrollAmount>0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));let n=this._bufferService.buffer;if(this._model.selectionEnd[1]<n.lines.length){let r=n.lines.get(this._model.selectionEnd[1]);r&&r.hasWidth(this._model.selectionEnd[0])===0&&this._model.selectionEnd[0]<this._bufferService.cols&&this._model.selectionEnd[0]++}(!t||t[0]!==this._model.selectionEnd[0]||t[1]!==this._model.selectionEnd[1])&&this.refresh(!0)}_dragScroll(){if(!(!this._model.selectionEnd||!this._model.selectionStart)&&this._dragScrollAmount){this._onRequestScrollLines.fire({amount:this._dragScrollAmount,suppressScrollEvent:!1});let e=this._bufferService.buffer;this._dragScrollAmount>0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(e.ydisp+this._bufferService.rows,e.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=e.ydisp),this.refresh()}}_handleMouseUp(e){let t=e.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&t<Fyt&&e.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){let n=this._mouseService.getCoords(e,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(n&&n[0]!==void 0&&n[1]!==void 0){let r=Ayt(n[0]-1,n[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(r,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd,n=!!e&&!!t&&(e[0]!==t[0]||e[1]!==t[1]);if(!n){this._oldHasSelection&&this._fireOnSelectionChange(e,t,n);return}!e||!t||(!this._oldSelectionStart||!this._oldSelectionEnd||e[0]!==this._oldSelectionStart[0]||e[1]!==this._oldSelectionStart[1]||t[0]!==this._oldSelectionEnd[0]||t[1]!==this._oldSelectionEnd[1])&&this._fireOnSelectionChange(e,t,n)}_fireOnSelectionChange(e,t,n){this._oldSelectionStart=e,this._oldSelectionEnd=t,this._oldHasSelection=n,this._onSelectionChange.fire()}_handleBufferActivate(e){this.clearSelection(),this._trimListener.dispose(),this._trimListener=e.activeBuffer.lines.onTrim(t=>this._handleTrim(t))}_convertViewportColToCharacterIndex(e,t){let n=t;for(let r=0;t>=r;r++){let i=e.loadCell(r,this._workCell).getChars().length;this._workCell.getWidth()===0?n--:i>1&&t!==r&&(n+=i-1)}return n}setSelection(e,t,n){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[e,t],this._model.selectionStartLength=n,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(e){this._isClickInSelection(e)||(this._selectWordAtCursor(e,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(e,t,n=!0,r=!0){if(e[0]>=this._bufferService.cols)return;let i=this._bufferService.buffer,a=i.lines.get(e[1]);if(!a)return;let s=i.translateBufferLineToString(e[1],!1),o=this._convertViewportColToCharacterIndex(a,e[0]),l=o,u=e[0]-o,d=0,f=0,p=0,m=0;if(s.charAt(o)===" "){for(;o>0&&s.charAt(o-1)===" ";)o--;for(;l<s.length&&s.charAt(l+1)===" ";)l++}else{let v=e[0],_=e[0];a.getWidth(v)===0&&(d++,v--),a.getWidth(_)===2&&(f++,_++);let w=a.getString(_).length;for(w>1&&(m+=w-1,l+=w-1);v>0&&o>0&&!this._isCharWordSeparator(a.loadCell(v-1,this._workCell));){a.loadCell(v-1,this._workCell);let C=this._workCell.getChars().length;this._workCell.getWidth()===0?(d++,v--):C>1&&(p+=C-1,o-=C-1),o--,v--}for(;_<a.length&&l+1<s.length&&!this._isCharWordSeparator(a.loadCell(_+1,this._workCell));){a.loadCell(_+1,this._workCell);let C=this._workCell.getChars().length;this._workCell.getWidth()===2?(f++,_++):C>1&&(m+=C-1,l+=C-1),l++,_++}}l++;let b=o+u-d+p,y=Math.min(this._bufferService.cols,l-o+d+f-p-m);if(!(!t&&s.slice(o,l).trim()==="")){if(n&&b===0&&a.getCodePoint(0)!==32){let v=i.lines.get(e[1]-1);if(v&&a.isWrapped&&v.getCodePoint(this._bufferService.cols-1)!==32){let _=this._getWordAt([this._bufferService.cols-1,e[1]-1],!1,!0,!1);if(_){let w=this._bufferService.cols-_.start;b-=w,y+=w}}}if(r&&b+y===this._bufferService.cols&&a.getCodePoint(this._bufferService.cols-1)!==32){let v=i.lines.get(e[1]+1);if(v?.isWrapped&&v.getCodePoint(0)!==32){let _=this._getWordAt([0,e[1]+1],!1,!1,!0);_&&(y+=_.length)}}return{start:b,length:y}}}_selectWordAt(e,t){let n=this._getWordAt(e,t);if(n){for(;n.start<0;)n.start+=this._bufferService.cols,e[1]--;this._model.selectionStart=[n.start,e[1]],this._model.selectionStartLength=n.length}}_selectToWordAt(e){let t=this._getWordAt(e,!0);if(t){let n=e[1];for(;t.start<0;)t.start+=this._bufferService.cols,n--;if(!this._model.areSelectionValuesReversed())for(;t.start+t.length>this._bufferService.cols;)t.length-=this._bufferService.cols,n++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?t.start:t.start+t.length,n]}}_isCharWordSeparator(e){return e.getWidth()===0?!1:this._optionsService.rawOptions.wordSeparator.indexOf(e.getChars())>=0}_selectLineAt(e){let t=this._bufferService.buffer.getWrappedRangeForLine(e),n={start:{x:0,y:t.first},end:{x:this._bufferService.cols-1,y:t.last}};this._model.selectionStart=[0,t.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=koe(n,this._bufferService.cols)}};C$=Ea([Zt(3,Xo),Zt(4,xy),Zt(5,oX),Zt(6,Zo),Zt(7,ep),Zt(8,Jh)],C$);var Toe=class{constructor(){this._data={}}set(e,t,n){this._data[e]||(this._data[e]={}),this._data[e][t]=n}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}},Aoe=class{constructor(){this._color=new Toe,this._css=new Toe}setCss(e,t,n){this._css.set(e,t,n)}getCss(e,t){return this._css.get(e,t)}setColor(e,t,n){this._color.set(e,t,n)}getColor(e,t){return this._color.get(e,t)}clear(){this._color.clear(),this._css.clear()}},Ja=Object.freeze((()=>{let e=[aa.toColor("#2e3436"),aa.toColor("#cc0000"),aa.toColor("#4e9a06"),aa.toColor("#c4a000"),aa.toColor("#3465a4"),aa.toColor("#75507b"),aa.toColor("#06989a"),aa.toColor("#d3d7cf"),aa.toColor("#555753"),aa.toColor("#ef2929"),aa.toColor("#8ae234"),aa.toColor("#fce94f"),aa.toColor("#729fcf"),aa.toColor("#ad7fa8"),aa.toColor("#34e2e2"),aa.toColor("#eeeeec")],t=[0,95,135,175,215,255];for(let n=0;n<216;n++){let r=t[n/36%6|0],i=t[n/6%6|0],a=t[n%6];e.push({css:Ha.toCss(r,i,a),rgba:Ha.toRgba(r,i,a)})}for(let n=0;n<24;n++){let r=8+n*10;e.push({css:Ha.toCss(r,r,r),rgba:Ha.toRgba(r,r,r)})}return e})()),Lg=aa.toColor("#ffffff"),SS=aa.toColor("#000000"),Noe=aa.toColor("#ffffff"),Ooe=SS,V_={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117},Uyt=Lg,k$=class extends or{constructor(e){super(),this._optionsService=e,this._contrastCache=new Aoe,this._halfContrastCache=new Aoe,this._onChangeColors=this._register(new $t),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:Lg,background:SS,cursor:Noe,cursorAccent:Ooe,selectionForeground:void 0,selectionBackgroundTransparent:V_,selectionBackgroundOpaque:Ui.blend(SS,V_),selectionInactiveBackgroundTransparent:V_,selectionInactiveBackgroundOpaque:Ui.blend(SS,V_),scrollbarSliderBackground:Ui.opacity(Lg,.2),scrollbarSliderHoverBackground:Ui.opacity(Lg,.4),scrollbarSliderActiveBackground:Ui.opacity(Lg,.5),overviewRulerBorder:Lg,ansi:Ja.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this._register(this._optionsService.onSpecificOptionChange("minimumContrastRatio",()=>this._contrastCache.clear())),this._register(this._optionsService.onSpecificOptionChange("theme",()=>this._setTheme(this._optionsService.rawOptions.theme)))}get colors(){return this._colors}_setTheme(e={}){let t=this._colors;if(t.foreground=ui(e.foreground,Lg),t.background=ui(e.background,SS),t.cursor=Ui.blend(t.background,ui(e.cursor,Noe)),t.cursorAccent=Ui.blend(t.background,ui(e.cursorAccent,Ooe)),t.selectionBackgroundTransparent=ui(e.selectionBackground,V_),t.selectionBackgroundOpaque=Ui.blend(t.background,t.selectionBackgroundTransparent),t.selectionInactiveBackgroundTransparent=ui(e.selectionInactiveBackground,t.selectionBackgroundTransparent),t.selectionInactiveBackgroundOpaque=Ui.blend(t.background,t.selectionInactiveBackgroundTransparent),t.selectionForeground=e.selectionForeground?ui(e.selectionForeground,woe):void 0,t.selectionForeground===woe&&(t.selectionForeground=void 0),Ui.isOpaque(t.selectionBackgroundTransparent)&&(t.selectionBackgroundTransparent=Ui.opacity(t.selectionBackgroundTransparent,.3)),Ui.isOpaque(t.selectionInactiveBackgroundTransparent)&&(t.selectionInactiveBackgroundTransparent=Ui.opacity(t.selectionInactiveBackgroundTransparent,.3)),t.scrollbarSliderBackground=ui(e.scrollbarSliderBackground,Ui.opacity(t.foreground,.2)),t.scrollbarSliderHoverBackground=ui(e.scrollbarSliderHoverBackground,Ui.opacity(t.foreground,.4)),t.scrollbarSliderActiveBackground=ui(e.scrollbarSliderActiveBackground,Ui.opacity(t.foreground,.5)),t.overviewRulerBorder=ui(e.overviewRulerBorder,Uyt),t.ansi=Ja.slice(),t.ansi[0]=ui(e.black,Ja[0]),t.ansi[1]=ui(e.red,Ja[1]),t.ansi[2]=ui(e.green,Ja[2]),t.ansi[3]=ui(e.yellow,Ja[3]),t.ansi[4]=ui(e.blue,Ja[4]),t.ansi[5]=ui(e.magenta,Ja[5]),t.ansi[6]=ui(e.cyan,Ja[6]),t.ansi[7]=ui(e.white,Ja[7]),t.ansi[8]=ui(e.brightBlack,Ja[8]),t.ansi[9]=ui(e.brightRed,Ja[9]),t.ansi[10]=ui(e.brightGreen,Ja[10]),t.ansi[11]=ui(e.brightYellow,Ja[11]),t.ansi[12]=ui(e.brightBlue,Ja[12]),t.ansi[13]=ui(e.brightMagenta,Ja[13]),t.ansi[14]=ui(e.brightCyan,Ja[14]),t.ansi[15]=ui(e.brightWhite,Ja[15]),e.extendedAnsi){let n=Math.min(t.ansi.length-16,e.extendedAnsi.length);for(let r=0;r<n;r++)t.ansi[r+16]=ui(e.extendedAnsi[r],Ja[r+16])}this._contrastCache.clear(),this._halfContrastCache.clear(),this._updateRestoreColors(),this._onChangeColors.fire(this.colors)}restoreColor(e){this._restoreColor(e),this._onChangeColors.fire(this.colors)}_restoreColor(e){if(e===void 0){for(let t=0;t<this._restoreColors.ansi.length;++t)this._colors.ansi[t]=this._restoreColors.ansi[t];return}switch(e){case 256:this._colors.foreground=this._restoreColors.foreground;break;case 257:this._colors.background=this._restoreColors.background;break;case 258:this._colors.cursor=this._restoreColors.cursor;break;default:this._colors.ansi[e]=this._restoreColors.ansi[e]}}modifyColors(e){e(this._colors),this._onChangeColors.fire(this.colors)}_updateRestoreColors(){this._restoreColors={foreground:this._colors.foreground,background:this._colors.background,cursor:this._colors.cursor,ansi:this._colors.ansi.slice()}}};k$=Ea([Zt(0,Zo)],k$);function ui(e,t){if(e!==void 0)try{return aa.toColor(e)}catch{}return t}var zyt=class{constructor(...e){this._entries=new Map;for(let[t,n]of e)this.set(t,n)}set(e,t){let n=this._entries.get(e);return this._entries.set(e,t),n}forEach(e){for(let[t,n]of this._entries.entries())e(t,n)}has(e){return this._entries.has(e)}get(e){return this._entries.get(e)}},Hyt=class{constructor(){this._services=new zyt,this._services.set(sX,this)}setService(t,n){this._services.set(t,n)}getService(t){return this._services.get(t)}createInstance(t,...n){let r=jgt(t).sort((s,o)=>s.index-o.index),i=[];for(let s of r){let o=this._services.get(s.id);if(!o)throw new Error(`[createInstance] ${t.name} depends on UNKNOWN service ${s.id._id}.`);i.push(o)}let a=r.length>0?r[0].index:n.length;if(n.length!==a)throw new Error(`[createInstance] First service dependency of ${t.name} at position ${a+1} conflicts with ${n.length} static arguments`);return new t(...n,...i)}},Vyt={trace:0,debug:1,info:2,warn:3,error:4,off:5},Wyt="xterm.js: ",T$=class extends or{constructor(e){super(),this._optionsService=e,this._logLevel=5,this._updateLogLevel(),this._register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel()))}get logLevel(){return this._logLevel}_updateLogLevel(){this._logLevel=Vyt[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;t<e.length;t++)typeof e[t]=="function"&&(e[t]=e[t]())}_log(e,t,n){this._evalLazyOptionalParams(n),e.call(console,(this._optionsService.options.logger?"":Wyt)+t,...n)}trace(e,...t){this._logLevel<=0&&this._log(this._optionsService.options.logger?.trace.bind(this._optionsService.options.logger)??console.log,e,t)}debug(e,...t){this._logLevel<=1&&this._log(this._optionsService.options.logger?.debug.bind(this._optionsService.options.logger)??console.log,e,t)}info(e,...t){this._logLevel<=2&&this._log(this._optionsService.options.logger?.info.bind(this._optionsService.options.logger)??console.info,e,t)}warn(e,...t){this._logLevel<=3&&this._log(this._optionsService.options.logger?.warn.bind(this._optionsService.options.logger)??console.warn,e,t)}error(e,...t){this._logLevel<=4&&this._log(this._optionsService.options.logger?.error.bind(this._optionsService.options.logger)??console.error,e,t)}};T$=Ea([Zt(0,Zo)],T$);var Roe=class extends or{constructor(e){super(),this._maxLength=e,this.onDeleteEmitter=this._register(new $t),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this._register(new $t),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this._register(new $t),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(e){if(this._maxLength===e)return;let t=new Array(e);for(let n=0;n<Math.min(e,this.length);n++)t[n]=this._array[this._getCyclicIndex(n)];this._array=t,this._maxLength=e,this._startIndex=0}get length(){return this._length}set length(e){if(e>this._length)for(let t=this._length;t<e;t++)this._array[t]=void 0;this._length=e}get(e){return this._array[this._getCyclicIndex(e)]}set(e,t){this._array[this._getCyclicIndex(e)]=t}push(e){this._array[this._getCyclicIndex(this._length)]=e,this._length===this._maxLength?(this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1)):this._length++}recycle(){if(this._length!==this._maxLength)throw new Error("Can only recycle when the buffer is full");return this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1),this._array[this._getCyclicIndex(this._length-1)]}get isFull(){return this._length===this._maxLength}pop(){return this._array[this._getCyclicIndex(this._length---1)]}splice(e,t,...n){if(t){for(let r=e;r<this._length-t;r++)this._array[this._getCyclicIndex(r)]=this._array[this._getCyclicIndex(r+t)];this._length-=t,this.onDeleteEmitter.fire({index:e,amount:t})}for(let r=this._length-1;r>=e;r--)this._array[this._getCyclicIndex(r+n.length)]=this._array[this._getCyclicIndex(r)];for(let r=0;r<n.length;r++)this._array[this._getCyclicIndex(e+r)]=n[r];if(n.length&&this.onInsertEmitter.fire({index:e,amount:n.length}),this._length+n.length>this._maxLength){let r=this._length+n.length-this._maxLength;this._startIndex+=r,this._length=this._maxLength,this.onTrimEmitter.fire(r)}else this._length+=n.length}trimStart(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.onTrimEmitter.fire(e)}shiftElements(e,t,n){if(!(t<=0)){if(e<0||e>=this._length)throw new Error("start argument out of range");if(e+n<0)throw new Error("Cannot shift elements in list beyond index 0");if(n>0){for(let i=t-1;i>=0;i--)this.set(e+i+n,this.get(e+i));let r=e+t+n-this._length;if(r>0)for(this._length+=r;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let r=0;r<t;r++)this.set(e+r+n,this.get(e+r))}}_getCyclicIndex(e){return(this._startIndex+e)%this._maxLength}},tr=3,Ua=Object.freeze(new l2),WT=0,Yj=2,wS=class Gke{constructor(t,n,r=!1){this.isWrapped=r,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(t*tr);let i=n||lc.fromCharData([0,fke,1,0]);for(let a=0;a<t;++a)this.setCell(a,i);this.length=t}get(t){let n=this._data[t*tr+0],r=n&2097151;return[this._data[t*tr+1],n&2097152?this._combined[t]:r?Wp(r):"",n>>22,n&2097152?this._combined[t].charCodeAt(this._combined[t].length-1):r]}set(t,n){this._data[t*tr+1]=n[0],n[1].length>1?(this._combined[t]=n[1],this._data[t*tr+0]=t|2097152|n[2]<<22):this._data[t*tr+0]=n[1].charCodeAt(0)|n[2]<<22}getWidth(t){return this._data[t*tr+0]>>22}hasWidth(t){return this._data[t*tr+0]&12582912}getFg(t){return this._data[t*tr+1]}getBg(t){return this._data[t*tr+2]}hasContent(t){return this._data[t*tr+0]&4194303}getCodePoint(t){let n=this._data[t*tr+0];return n&2097152?this._combined[t].charCodeAt(this._combined[t].length-1):n&2097151}isCombined(t){return this._data[t*tr+0]&2097152}getString(t){let n=this._data[t*tr+0];return n&2097152?this._combined[t]:n&2097151?Wp(n&2097151):""}isProtected(t){return this._data[t*tr+2]&536870912}loadCell(t,n){return WT=t*tr,n.content=this._data[WT+0],n.fg=this._data[WT+1],n.bg=this._data[WT+2],n.content&2097152&&(n.combinedData=this._combined[t]),n.bg&268435456&&(n.extended=this._extendedAttrs[t]),n}setCell(t,n){n.content&2097152&&(this._combined[t]=n.combinedData),n.bg&268435456&&(this._extendedAttrs[t]=n.extended),this._data[t*tr+0]=n.content,this._data[t*tr+1]=n.fg,this._data[t*tr+2]=n.bg}setCellFromCodepoint(t,n,r,i){i.bg&268435456&&(this._extendedAttrs[t]=i.extended),this._data[t*tr+0]=n|r<<22,this._data[t*tr+1]=i.fg,this._data[t*tr+2]=i.bg}addCodepointToCell(t,n,r){let i=this._data[t*tr+0];i&2097152?this._combined[t]+=Wp(n):i&2097151?(this._combined[t]=Wp(i&2097151)+Wp(n),i&=-2097152,i|=2097152):i=n|1<<22,r&&(i&=-12582913,i|=r<<22),this._data[t*tr+0]=i}insertCells(t,n,r){if(t%=this.length,t&&this.getWidth(t-1)===2&&this.setCellFromCodepoint(t-1,0,1,r),n<this.length-t){let i=new lc;for(let a=this.length-t-n-1;a>=0;--a)this.setCell(t+n+a,this.loadCell(t+a,i));for(let a=0;a<n;++a)this.setCell(t+a,r)}else for(let i=t;i<this.length;++i)this.setCell(i,r);this.getWidth(this.length-1)===2&&this.setCellFromCodepoint(this.length-1,0,1,r)}deleteCells(t,n,r){if(t%=this.length,n<this.length-t){let i=new lc;for(let a=0;a<this.length-t-n;++a)this.setCell(t+a,this.loadCell(t+n+a,i));for(let a=this.length-n;a<this.length;++a)this.setCell(a,r)}else for(let i=t;i<this.length;++i)this.setCell(i,r);t&&this.getWidth(t-1)===2&&this.setCellFromCodepoint(t-1,0,1,r),this.getWidth(t)===0&&!this.hasContent(t)&&this.setCellFromCodepoint(t,0,1,r)}replaceCells(t,n,r,i=!1){if(i){for(t&&this.getWidth(t-1)===2&&!this.isProtected(t-1)&&this.setCellFromCodepoint(t-1,0,1,r),n<this.length&&this.getWidth(n-1)===2&&!this.isProtected(n)&&this.setCellFromCodepoint(n,0,1,r);t<n&&t<this.length;)this.isProtected(t)||this.setCell(t,r),t++;return}for(t&&this.getWidth(t-1)===2&&this.setCellFromCodepoint(t-1,0,1,r),n<this.length&&this.getWidth(n-1)===2&&this.setCellFromCodepoint(n,0,1,r);t<n&&t<this.length;)this.setCell(t++,r)}resize(t,n){if(t===this.length)return this._data.length*4*Yj<this._data.buffer.byteLength;let r=t*tr;if(t>this.length){if(this._data.buffer.byteLength>=r*4)this._data=new Uint32Array(this._data.buffer,0,r);else{let i=new Uint32Array(r);i.set(this._data),this._data=i}for(let i=this.length;i<t;++i)this.setCell(i,n)}else{this._data=this._data.subarray(0,r);let i=Object.keys(this._combined);for(let s=0;s<i.length;s++){let o=parseInt(i[s],10);o>=t&&delete this._combined[o]}let a=Object.keys(this._extendedAttrs);for(let s=0;s<a.length;s++){let o=parseInt(a[s],10);o>=t&&delete this._extendedAttrs[o]}}return this.length=t,r*4*Yj<this._data.buffer.byteLength}cleanupMemory(){if(this._data.length*4*Yj<this._data.buffer.byteLength){let t=new Uint32Array(this._data.length);return t.set(this._data),this._data=t,1}return 0}fill(t,n=!1){if(n){for(let r=0;r<this.length;++r)this.isProtected(r)||this.setCell(r,t);return}this._combined={},this._extendedAttrs={};for(let r=0;r<this.length;++r)this.setCell(r,t)}copyFrom(t){this.length!==t.length?this._data=new Uint32Array(t._data):this._data.set(t._data),this.length=t.length,this._combined={};for(let n in t._combined)this._combined[n]=t._combined[n];this._extendedAttrs={};for(let n in t._extendedAttrs)this._extendedAttrs[n]=t._extendedAttrs[n];this.isWrapped=t.isWrapped}clone(){let t=new Gke(0);t._data=new Uint32Array(this._data),t.length=this.length;for(let n in this._combined)t._combined[n]=this._combined[n];for(let n in this._extendedAttrs)t._extendedAttrs[n]=this._extendedAttrs[n];return t.isWrapped=this.isWrapped,t}getTrimmedLength(){for(let t=this.length-1;t>=0;--t)if(this._data[t*tr+0]&4194303)return t+(this._data[t*tr+0]>>22);return 0}getNoBgTrimmedLength(){for(let t=this.length-1;t>=0;--t)if(this._data[t*tr+0]&4194303||this._data[t*tr+2]&50331648)return t+(this._data[t*tr+0]>>22);return 0}copyCellsFrom(t,n,r,i,a){let s=t._data;if(a)for(let l=i-1;l>=0;l--){for(let u=0;u<tr;u++)this._data[(r+l)*tr+u]=s[(n+l)*tr+u];s[(n+l)*tr+2]&268435456&&(this._extendedAttrs[r+l]=t._extendedAttrs[n+l])}else for(let l=0;l<i;l++){for(let u=0;u<tr;u++)this._data[(r+l)*tr+u]=s[(n+l)*tr+u];s[(n+l)*tr+2]&268435456&&(this._extendedAttrs[r+l]=t._extendedAttrs[n+l])}let o=Object.keys(t._combined);for(let l=0;l<o.length;l++){let u=parseInt(o[l],10);u>=n&&(this._combined[u-n+r]=t._combined[u])}}translateToString(t,n,r,i){n=n??0,r=r??this.length,t&&(r=Math.min(r,this.getTrimmedLength())),i&&(i.length=0);let a="";for(;n<r;){let s=this._data[n*tr+0],o=s&2097151,l=s&2097152?this._combined[n]:o?Wp(o):sm;if(a+=l,i)for(let u=0;u<l.length;++u)i.push(n);n+=s>>22||1}return i&&i.push(n),a}};function qyt(e,t,n,r,i,a){let s=[];for(let o=0;o<e.length-1;o++){let l=o,u=e.get(++l);if(!u.isWrapped)continue;let d=[e.get(o)];for(;l<e.length&&u.isWrapped;)d.push(u),u=e.get(++l);if(!a&&r>=o&&r<l){o+=d.length-1;continue}let f=0,p=sE(d,f,t),m=1,b=0;for(;m<d.length;){let v=sE(d,m,t),_=v-b,w=n-p,C=Math.min(_,w);d[f].copyCellsFrom(d[m],b,p,C,!1),p+=C,p===n&&(f++,p=0),b+=C,b===v&&(m++,b=0),p===0&&f!==0&&d[f-1].getWidth(n-1)===2&&(d[f].copyCellsFrom(d[f-1],n-1,p++,1,!1),d[f-1].setCell(n-1,i))}d[f].replaceCells(p,n,i);let y=0;for(let v=d.length-1;v>0&&(v>f||d[v].getTrimmedLength()===0);v--)y++;y>0&&(s.push(o+d.length-y),s.push(y)),o+=d.length-1}return s}function Gyt(e,t){let n=[],r=0,i=t[r],a=0;for(let s=0;s<e.length;s++)if(i===s){let o=t[++r];e.onDeleteEmitter.fire({index:s-a,amount:o}),s+=o-1,a+=o,i=t[++r]}else n.push(s);return{layout:n,countRemoved:a}}function Kyt(e,t){let n=[];for(let r=0;r<t.length;r++)n.push(e.get(t[r]));for(let r=0;r<n.length;r++)e.set(r,n[r]);e.length=t.length}function Yyt(e,t,n){let r=[],i=e.map((l,u)=>sE(e,u,t)).reduce((l,u)=>l+u),a=0,s=0,o=0;for(;o<i;){if(i-o<n){r.push(i-o);break}a+=n;let l=sE(e,s,t);a>l&&(a-=l,s++);let u=e[s].getWidth(a-1)===2;u&&a--;let d=u?n-1:n;r.push(d),o+=d}return r}function sE(e,t,n){if(t===e.length-1)return e[t].getTrimmedLength();let r=!e[t].hasContent(n-1)&&e[t].getWidth(n-1)===1,i=e[t+1].getWidth(0)===2;return r&&i?n-1:n}var Kke=class Yke{constructor(t){this.line=t,this.isDisposed=!1,this._disposables=[],this._id=Yke._nextId++,this._onDispose=this.register(new $t),this.onDispose=this._onDispose.event}get id(){return this._id}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),zb(this._disposables),this._disposables.length=0)}register(t){return this._disposables.push(t),t}};Kke._nextId=1;var Xyt=Kke,ps={},jg=ps.B;ps[0]={"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"};ps.A={"#":"£"};ps.B=void 0;ps[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"};ps.C=ps[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"};ps.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"};ps.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"};ps.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"};ps.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"};ps.E=ps[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"};ps.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"};ps.H=ps[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"};ps["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"};var Ioe=4294967295,Doe=class{constructor(e,t,n){this._hasScrollback=e,this._optionsService=t,this._bufferService=n,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=Ua.clone(),this.savedCharset=jg,this.markers=[],this._nullCell=lc.fromCharData([0,fke,1,0]),this._whitespaceCell=lc.fromCharData([0,sm,1,32]),this._isClearing=!1,this._memoryCleanupQueue=new fO,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new Roe(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(e){return e?(this._nullCell.fg=e.fg,this._nullCell.bg=e.bg,this._nullCell.extended=e.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new lO),this._nullCell}getWhitespaceCell(e){return e?(this._whitespaceCell.fg=e.fg,this._whitespaceCell.bg=e.bg,this._whitespaceCell.extended=e.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new lO),this._whitespaceCell}getBlankLine(e,t){return new wS(this._bufferService.cols,this.getNullCell(e),t)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){let e=this.ybase+this.y-this.ydisp;return e>=0&&e<this._rows}_getCorrectBufferLength(e){if(!this._hasScrollback)return e;let t=e+this._optionsService.rawOptions.scrollback;return t>Ioe?Ioe:t}fillViewportRows(e){if(this.lines.length===0){e===void 0&&(e=Ua);let t=this._rows;for(;t--;)this.lines.push(this.getBlankLine(e))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new Roe(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(e,t){let n=this.getNullCell(Ua),r=0,i=this._getCorrectBufferLength(t);if(i>this.lines.maxLength&&(this.lines.maxLength=i),this.lines.length>0){if(this._cols<e)for(let s=0;s<this.lines.length;s++)r+=+this.lines.get(s).resize(e,n);let a=0;if(this._rows<t)for(let s=this._rows;s<t;s++)this.lines.length<t+this.ybase&&(this._optionsService.rawOptions.windowsMode||this._optionsService.rawOptions.windowsPty.backend!==void 0||this._optionsService.rawOptions.windowsPty.buildNumber!==void 0?this.lines.push(new wS(e,n)):this.ybase>0&&this.lines.length<=this.ybase+this.y+a+1?(this.ybase--,a++,this.ydisp>0&&this.ydisp--):this.lines.push(new wS(e,n)));else for(let s=this._rows;s>t;s--)this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(i<this.lines.maxLength){let s=this.lines.length-i;s>0&&(this.lines.trimStart(s),this.ybase=Math.max(this.ybase-s,0),this.ydisp=Math.max(this.ydisp-s,0),this.savedY=Math.max(this.savedY-s,0)),this.lines.maxLength=i}this.x=Math.min(this.x,e-1),this.y=Math.min(this.y,t-1),a&&(this.y+=a),this.savedX=Math.min(this.savedX,e-1),this.scrollTop=0}if(this.scrollBottom=t-1,this._isReflowEnabled&&(this._reflow(e,t),this._cols>e))for(let a=0;a<this.lines.length;a++)r+=+this.lines.get(a).resize(e,n);this._cols=e,this._rows=t,this._memoryCleanupQueue.clear(),r>.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let e=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,e=!1);let t=0;for(;this._memoryCleanupPosition<this.lines.length;)if(t+=this.lines.get(this._memoryCleanupPosition++).cleanupMemory(),t>100)return!0;return e}get _isReflowEnabled(){let e=this._optionsService.rawOptions.windowsPty;return e&&e.buildNumber?this._hasScrollback&&e.backend==="conpty"&&e.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(e,t){this._cols!==e&&(e>this._cols?this._reflowLarger(e,t):this._reflowSmaller(e,t))}_reflowLarger(e,t){let n=this._optionsService.rawOptions.reflowCursorLine,r=qyt(this.lines,this._cols,e,this.ybase+this.y,this.getNullCell(Ua),n);if(r.length>0){let i=Gyt(this.lines,r);Kyt(this.lines,i.layout),this._reflowLargerAdjustViewport(e,t,i.countRemoved)}}_reflowLargerAdjustViewport(e,t,n){let r=this.getNullCell(Ua),i=n;for(;i-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length<t&&this.lines.push(new wS(e,r))):(this.ydisp===this.ybase&&this.ydisp--,this.ybase--);this.savedY=Math.max(this.savedY-n,0)}_reflowSmaller(e,t){let n=this._optionsService.rawOptions.reflowCursorLine,r=this.getNullCell(Ua),i=[],a=0;for(let s=this.lines.length-1;s>=0;s--){let o=this.lines.get(s);if(!o||!o.isWrapped&&o.getTrimmedLength()<=e)continue;let l=[o];for(;o.isWrapped&&s>0;)o=this.lines.get(--s),l.unshift(o);if(!n){let C=this.ybase+this.y;if(C>=s&&C<s+l.length)continue}let u=l[l.length-1].getTrimmedLength(),d=Yyt(l,this._cols,e),f=d.length-l.length,p;this.ybase===0&&this.y!==this.lines.length-1?p=Math.max(0,this.y-this.lines.maxLength+f):p=Math.max(0,this.lines.length-this.lines.maxLength+f);let m=[];for(let C=0;C<f;C++){let T=this.getBlankLine(Ua,!0);m.push(T)}m.length>0&&(i.push({start:s+l.length+a,newLines:m}),a+=m.length),l.push(...m);let b=d.length-1,y=d[b];y===0&&(b--,y=d[b]);let v=l.length-f-1,_=u;for(;v>=0;){let C=Math.min(_,y);if(l[b]===void 0)break;if(l[b].copyCellsFrom(l[v],_-C,y-C,C,!0),y-=C,y===0&&(b--,y=d[b]),_-=C,_===0){v--;let T=Math.max(v,0);_=sE(l,T,this._cols)}}for(let C=0;C<l.length;C++)d[C]<e&&l[C].setCell(d[C],r);let w=f-p;for(;w-- >0;)this.ybase===0?this.y<t-1?(this.y++,this.lines.pop()):(this.ybase++,this.ydisp++):this.ybase<Math.min(this.lines.maxLength,this.lines.length+a)-t&&(this.ybase===this.ydisp&&this.ydisp++,this.ybase++);this.savedY=Math.min(this.savedY+f,this.ybase+t-1)}if(i.length>0){let s=[],o=[];for(let y=0;y<this.lines.length;y++)o.push(this.lines.get(y));let l=this.lines.length,u=l-1,d=0,f=i[d];this.lines.length=Math.min(this.lines.maxLength,this.lines.length+a);let p=0;for(let y=Math.min(this.lines.maxLength-1,l+a-1);y>=0;y--)if(f&&f.start>u+p){for(let v=f.newLines.length-1;v>=0;v--)this.lines.set(y--,f.newLines[v]);y++,s.push({index:u+1,amount:f.newLines.length}),p+=f.newLines.length,f=i[++d]}else this.lines.set(y,o[u--]);let m=0;for(let y=s.length-1;y>=0;y--)s[y].index+=m,this.lines.onInsertEmitter.fire(s[y]),m+=s[y].amount;let b=Math.max(0,l+a-this.lines.maxLength);b>0&&this.lines.onTrimEmitter.fire(b)}}translateBufferLineToString(e,t,n=0,r){let i=this.lines.get(e);return i?i.translateToString(t,n,r):""}getWrappedRangeForLine(e){let t=e,n=e;for(;t>0&&this.lines.get(t).isWrapped;)t--;for(;n+1<this.lines.length&&this.lines.get(n+1).isWrapped;)n++;return{first:t,last:n}}setupTabStops(e){for(e!=null?this.tabs[e]||(e=this.prevStop(e)):(this.tabs={},e=0);e<this._cols;e+=this._optionsService.rawOptions.tabStopWidth)this.tabs[e]=!0}prevStop(e){for(e==null&&(e=this.x);!this.tabs[--e]&&e>0;);return e>=this._cols?this._cols-1:e<0?0:e}nextStop(e){for(e==null&&(e=this.x);!this.tabs[++e]&&e<this._cols;);return e>=this._cols?this._cols-1:e<0?0:e}clearMarkers(e){this._isClearing=!0;for(let t=0;t<this.markers.length;t++)this.markers[t].line===e&&(this.markers[t].dispose(),this.markers.splice(t--,1));this._isClearing=!1}clearAllMarkers(){this._isClearing=!0;for(let e=0;e<this.markers.length;e++)this.markers[e].dispose();this.markers.length=0,this._isClearing=!1}addMarker(e){let t=new Xyt(e);return this.markers.push(t),t.register(this.lines.onTrim(n=>{t.line-=n,t.line<0&&t.dispose()})),t.register(this.lines.onInsert(n=>{t.line>=n.index&&(t.line+=n.amount)})),t.register(this.lines.onDelete(n=>{t.line>=n.index&&t.line<n.index+n.amount&&t.dispose(),t.line>n.index&&(t.line-=n.amount)})),t.register(t.onDispose(()=>this._removeMarker(t))),t}_removeMarker(e){this._isClearing||this.markers.splice(this.markers.indexOf(e),1)}},Zyt=class extends or{constructor(e,t){super(),this._optionsService=e,this._bufferService=t,this._onBufferActivate=this._register(new $t),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this._register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this._register(this._optionsService.onSpecificOptionChange("tabStopWidth",()=>this.setupTabStops()))}reset(){this._normal=new Doe(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new Doe(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(e){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(e),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(e,t){this._normal.resize(e,t),this._alt.resize(e,t),this.setupTabStops(e)}setupTabStops(e){this._normal.setupTabStops(e),this._alt.setupTabStops(e)}},Xke=2,Zke=1,A$=class extends or{constructor(e){super(),this.isUserScrolling=!1,this._onResize=this._register(new $t),this.onResize=this._onResize.event,this._onScroll=this._register(new $t),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,Xke),this.rows=Math.max(e.rawOptions.rows||0,Zke),this.buffers=this._register(new Zyt(e,this)),this._register(this.buffers.onBufferActivate(t=>{this._onScroll.fire(t.activeBuffer.ydisp)}))}get buffer(){return this.buffers.active}resize(e,t){let n=this.cols!==e,r=this.rows!==t;this.cols=e,this.rows=t,this.buffers.resize(e,t),this._onResize.fire({cols:e,rows:t,colsChanged:n,rowsChanged:r})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,t=!1){let n=this.buffer,r;r=this._cachedBlankLine,(!r||r.length!==this.cols||r.getFg(0)!==e.fg||r.getBg(0)!==e.bg)&&(r=n.getBlankLine(e,t),this._cachedBlankLine=r),r.isWrapped=t;let i=n.ybase+n.scrollTop,a=n.ybase+n.scrollBottom;if(n.scrollTop===0){let s=n.lines.isFull;a===n.lines.length-1?s?n.lines.recycle().copyFrom(r):n.lines.push(r.clone()):n.lines.splice(a+1,0,r.clone()),s?this.isUserScrolling&&(n.ydisp=Math.max(n.ydisp-1,0)):(n.ybase++,this.isUserScrolling||n.ydisp++)}else{let s=a-i+1;n.lines.shiftElements(i+1,s-1,-1),n.lines.set(a,r.clone())}this.isUserScrolling||(n.ydisp=n.ybase),this._onScroll.fire(n.ydisp)}scrollLines(e,t){let n=this.buffer;if(e<0){if(n.ydisp===0)return;this.isUserScrolling=!0}else e+n.ydisp>=n.ybase&&(this.isUserScrolling=!1);let r=n.ydisp;n.ydisp=Math.max(Math.min(n.ydisp+e,n.ybase),0),r!==n.ydisp&&(t||this._onScroll.fire(n.ydisp))}};A$=Ea([Zt(0,Zo)],A$);var yv={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,documentOverride:null,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnEraseInDisplay:!1,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},reflowCursorLine:!1,rescaleOverlappingGlyphs:!1,rightClickSelectsWord:dO,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRuler:{}},Qyt=["normal","bold","100","200","300","400","500","600","700","800","900"],Jyt=class extends or{constructor(e){super(),this._onOptionChange=this._register(new $t),this.onOptionChange=this._onOptionChange.event;let t={...yv};for(let n in e)if(n in t)try{let r=e[n];t[n]=this._sanitizeAndValidateOption(n,r)}catch(r){console.error(r)}this.rawOptions=t,this.options={...t},this._setupOptions(),this._register(ta(()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null}))}onSpecificOptionChange(e,t){return this.onOptionChange(n=>{n===e&&t(this.rawOptions[e])})}onMultipleOptionChange(e,t){return this.onOptionChange(n=>{e.indexOf(n)!==-1&&t()})}_setupOptions(){let e=n=>{if(!(n in yv))throw new Error(`No option with key "${n}"`);return this.rawOptions[n]},t=(n,r)=>{if(!(n in yv))throw new Error(`No option with key "${n}"`);r=this._sanitizeAndValidateOption(n,r),this.rawOptions[n]!==r&&(this.rawOptions[n]=r,this._onOptionChange.fire(n))};for(let n in this.rawOptions){let r={get:e.bind(this,n),set:t.bind(this,n)};Object.defineProperty(this.options,n,r)}}_sanitizeAndValidateOption(e,t){switch(e){case"cursorStyle":if(t||(t=yv[e]),!evt(t))throw new Error(`"${t}" is not a valid value for ${e}`);break;case"wordSeparator":t||(t=yv[e]);break;case"fontWeight":case"fontWeightBold":if(typeof t=="number"&&1<=t&&t<=1e3)break;t=Qyt.includes(t)?t:yv[e];break;case"cursorWidth":t=Math.floor(t);case"lineHeight":case"tabStopWidth":if(t<1)throw new Error(`${e} cannot be less than 1, value: ${t}`);break;case"minimumContrastRatio":t=Math.max(1,Math.min(21,Math.round(t*10)/10));break;case"scrollback":if(t=Math.min(t,4294967295),t<0)throw new Error(`${e} cannot be less than 0, value: ${t}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(t<=0)throw new Error(`${e} cannot be less than or equal to 0, value: ${t}`);break;case"rows":case"cols":if(!t&&t!==0)throw new Error(`${e} must be numeric, value: ${t}`);break;case"windowsPty":t=t??{};break}return t}};function evt(e){return e==="block"||e==="underline"||e==="bar"}function ES(e,t=5){if(typeof e!="object")return e;let n=Array.isArray(e)?[]:{};for(let r in e)n[r]=t<=1?e[r]:e[r]&&ES(e[r],t-1);return n}var Poe=Object.freeze({insertMode:!1}),Loe=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,cursorBlink:void 0,cursorStyle:void 0,origin:!1,reverseWraparound:!1,sendFocus:!1,synchronizedOutput:!1,wraparound:!0}),N$=class extends or{constructor(t,n,r){super(),this._bufferService=t,this._logService=n,this._optionsService=r,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this._register(new $t),this.onData=this._onData.event,this._onUserInput=this._register(new $t),this.onUserInput=this._onUserInput.event,this._onBinary=this._register(new $t),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this._register(new $t),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=ES(Poe),this.decPrivateModes=ES(Loe)}reset(){this.modes=ES(Poe),this.decPrivateModes=ES(Loe)}triggerDataEvent(t,n=!1){if(this._optionsService.rawOptions.disableStdin)return;let r=this._bufferService.buffer;n&&this._optionsService.rawOptions.scrollOnUserInput&&r.ybase!==r.ydisp&&this._onRequestScrollToBottom.fire(),n&&this._onUserInput.fire(),this._logService.debug(`sending data "${t}"`),this._logService.trace("sending data (codes)",()=>t.split("").map(i=>i.charCodeAt(0))),this._onData.fire(t)}triggerBinaryEvent(t){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${t}"`),this._logService.trace("sending binary (codes)",()=>t.split("").map(n=>n.charCodeAt(0))),this._onBinary.fire(t))}};N$=Ea([Zt(0,Xo),Zt(1,bke),Zt(2,Zo)],N$);var joe={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:e=>e.button===4||e.action!==1?!1:(e.ctrl=!1,e.alt=!1,e.shift=!1,!0)},VT200:{events:19,restrict:e=>e.action!==32},DRAG:{events:23,restrict:e=>!(e.action===32&&e.button===3)},ANY:{events:31,restrict:e=>!0}};function Xj(e,t){let n=(e.ctrl?16:0)|(e.shift?4:0)|(e.alt?8:0);return e.button===4?(n|=64,n|=e.action):(n|=e.button&3,e.button&4&&(n|=64),e.button&8&&(n|=128),e.action===32?n|=32:e.action===0&&!t&&(n|=3)),n}var Zj=String.fromCharCode,Moe={DEFAULT:e=>{let t=[Xj(e,!1)+32,e.col+32,e.row+32];return t[0]>255||t[1]>255||t[2]>255?"":`\x1B[M${Zj(t[0])}${Zj(t[1])}${Zj(t[2])}`},SGR:e=>{let t=e.action===0&&e.button!==4?"m":"M";return`\x1B[<${Xj(e,!0)};${e.col};${e.row}${t}`},SGR_PIXELS:e=>{let t=e.action===0&&e.button!==4?"m":"M";return`\x1B[<${Xj(e,!0)};${e.x};${e.y}${t}`}},O$=class extends or{constructor(e,t,n){super(),this._bufferService=e,this._coreService=t,this._optionsService=n,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._wheelPartialScroll=0,this._onProtocolChange=this._register(new $t),this.onProtocolChange=this._onProtocolChange.event;for(let r of Object.keys(joe))this.addProtocol(r,joe[r]);for(let r of Object.keys(Moe))this.addEncoding(r,Moe[r]);this.reset()}addProtocol(e,t){this._protocols[e]=t}addEncoding(e,t){this._encodings[e]=t}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(e){if(!this._protocols[e])throw new Error(`unknown protocol "${e}"`);this._activeProtocol=e,this._onProtocolChange.fire(this._protocols[e].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(e){if(!this._encodings[e])throw new Error(`unknown encoding "${e}"`);this._activeEncoding=e}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null,this._wheelPartialScroll=0}consumeWheelEvent(e,t,n){if(e.deltaY===0||e.shiftKey||t===void 0||n===void 0)return 0;let r=t/n,i=this._applyScrollModifier(e.deltaY,e);return e.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(i/=r+0,Math.abs(e.deltaY)<50&&(i*=.3),this._wheelPartialScroll+=i,i=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(i*=this._bufferService.rows),i}_applyScrollModifier(e,t){return t.altKey||t.ctrlKey||t.shiftKey?e*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:e*this._optionsService.rawOptions.scrollSensitivity}triggerMouseEvent(e){if(e.col<0||e.col>=this._bufferService.cols||e.row<0||e.row>=this._bufferService.rows||e.button===4&&e.action===32||e.button===3&&e.action!==32||e.button!==4&&(e.action===2||e.action===3)||(e.col++,e.row++,e.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,e,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(e))return!1;let t=this._encodings[this._activeEncoding](e);return t&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(t):this._coreService.triggerDataEvent(t,!0)),this._lastEvent=e,!0}explainEvents(e){return{down:!!(e&1),up:!!(e&2),drag:!!(e&4),move:!!(e&8),wheel:!!(e&16)}}_equalEvents(e,t,n){if(n){if(e.x!==t.x||e.y!==t.y)return!1}else if(e.col!==t.col||e.row!==t.row)return!1;return!(e.button!==t.button||e.action!==t.action||e.ctrl!==t.ctrl||e.alt!==t.alt||e.shift!==t.shift)}};O$=Ea([Zt(0,Xo),Zt(1,xy),Zt(2,Zo)],O$);var Qj=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],tvt=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]],es;function nvt(e,t){let n=0,r=t.length-1,i;if(e<t[0][0]||e>t[r][1])return!1;for(;r>=n;)if(i=n+r>>1,e>t[i][1])n=i+1;else if(e<t[i][0])r=i-1;else return!0;return!1}var rvt=class{constructor(){if(this.version="6",!es){es=new Uint8Array(65536),es.fill(1),es[0]=0,es.fill(0,1,32),es.fill(0,127,160),es.fill(2,4352,4448),es[9001]=2,es[9002]=2,es.fill(2,11904,42192),es[12351]=1,es.fill(2,44032,55204),es.fill(2,63744,64256),es.fill(2,65040,65050),es.fill(2,65072,65136),es.fill(2,65280,65377),es.fill(2,65504,65511);for(let e=0;e<Qj.length;++e)es.fill(0,Qj[e][0],Qj[e][1]+1)}}wcwidth(e){return e<32?0:e<127?1:e<65536?es[e]:nvt(e,tvt)?0:e>=131072&&e<=196605||e>=196608&&e<=262141?2:1}charProperties(e,t){let n=this.wcwidth(e),r=n===0&&t!==0;if(r){let i=eb.extractWidth(t);i===0?r=!1:i>n&&(n=i)}return eb.createPropertyValue(0,n,r)}},eb=class ZA{constructor(){this._providers=Object.create(null),this._active="",this._onChange=new $t,this.onChange=this._onChange.event;let t=new rvt;this.register(t),this._active=t.version,this._activeProvider=t}static extractShouldJoin(t){return(t&1)!==0}static extractWidth(t){return t>>1&3}static extractCharKind(t){return t>>3}static createPropertyValue(t,n,r=!1){return(t&16777215)<<3|(n&3)<<1|(r?1:0)}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(t){if(!this._providers[t])throw new Error(`unknown Unicode version "${t}"`);this._active=t,this._activeProvider=this._providers[t],this._onChange.fire(t)}register(t){this._providers[t.version]=t}wcwidth(t){return this._activeProvider.wcwidth(t)}getStringCellWidth(t){let n=0,r=0,i=t.length;for(let a=0;a<i;++a){let s=t.charCodeAt(a);if(55296<=s&&s<=56319){if(++a>=i)return n+this.wcwidth(s);let u=t.charCodeAt(a);56320<=u&&u<=57343?s=(s-55296)*1024+u-56320+65536:n+=this.wcwidth(u)}let o=this.charProperties(s,r),l=ZA.extractWidth(o);ZA.extractShouldJoin(o)&&(l-=ZA.extractWidth(r)),n+=l,r=o}return n}charProperties(t,n){return this._activeProvider.charProperties(t,n)}},ivt=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(e){this.glevel=e,this.charset=this._charsets[e]}setgCharset(e,t){this._charsets[e]=t,this.glevel===e&&(this.charset=t)}};function Foe(e){let t=e.buffer.lines.get(e.buffer.ybase+e.buffer.y-1)?.get(e.cols-1),n=e.buffer.lines.get(e.buffer.ybase+e.buffer.y);n&&t&&(n.isWrapped=t[3]!==0&&t[3]!==32)}var W_=2147483647,avt=256,Qke=class R${constructor(t=32,n=32){if(this.maxLength=t,this.maxSubParamsLength=n,n>avt)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(t),this.length=0,this._subParams=new Int32Array(n),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(t),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}static fromArray(t){let n=new R$;if(!t.length)return n;for(let r=Array.isArray(t[0])?1:0;r<t.length;++r){let i=t[r];if(Array.isArray(i))for(let a=0;a<i.length;++a)n.addSubParam(i[a]);else n.addParam(i)}return n}clone(){let t=new R$(this.maxLength,this.maxSubParamsLength);return t.params.set(this.params),t.length=this.length,t._subParams.set(this._subParams),t._subParamsLength=this._subParamsLength,t._subParamsIdx.set(this._subParamsIdx),t._rejectDigits=this._rejectDigits,t._rejectSubDigits=this._rejectSubDigits,t._digitIsSub=this._digitIsSub,t}toArray(){let t=[];for(let n=0;n<this.length;++n){t.push(this.params[n]);let r=this._subParamsIdx[n]>>8,i=this._subParamsIdx[n]&255;i-r>0&&t.push(Array.prototype.slice.call(this._subParams,r,i))}return t}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(t){if(this._digitIsSub=!1,this.length>=this.maxLength){this._rejectDigits=!0;return}if(t<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=t>W_?W_:t}addSubParam(t){if(this._digitIsSub=!0,!!this.length){if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength){this._rejectSubDigits=!0;return}if(t<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=t>W_?W_:t,this._subParamsIdx[this.length-1]++}}hasSubParams(t){return(this._subParamsIdx[t]&255)-(this._subParamsIdx[t]>>8)>0}getSubParams(t){let n=this._subParamsIdx[t]>>8,r=this._subParamsIdx[t]&255;return r-n>0?this._subParams.subarray(n,r):null}getSubParamsAll(){let t={};for(let n=0;n<this.length;++n){let r=this._subParamsIdx[n]>>8,i=this._subParamsIdx[n]&255;i-r>0&&(t[n]=this._subParams.slice(r,i))}return t}addDigit(t){let n;if(this._rejectDigits||!(n=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;let r=this._digitIsSub?this._subParams:this.params,i=r[n-1];r[n-1]=~i?Math.min(i*10+t,W_):t}},q_=[],svt=class{constructor(){this._state=0,this._active=q_,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(e,t){this._handlers[e]===void 0&&(this._handlers[e]=[]);let n=this._handlers[e];return n.push(t),{dispose:()=>{let r=n.indexOf(t);r!==-1&&n.splice(r,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=q_}reset(){if(this._state===2)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].end(!1);this._stack.paused=!1,this._active=q_,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||q_,!this._active.length)this._handlerFb(this._id,"START");else for(let e=this._active.length-1;e>=0;e--)this._active[e].start()}_put(e,t,n){if(!this._active.length)this._handlerFb(this._id,"PUT",Z3(e,t,n));else for(let r=this._active.length-1;r>=0;r--)this._active[r].put(e,t,n)}start(){this.reset(),this._state=1}put(e,t,n){if(this._state!==3){if(this._state===1)for(;t<n;){let r=e[t++];if(r===59){this._state=2,this._start();break}if(r<48||57<r){this._state=3;return}this._id===-1&&(this._id=0),this._id=this._id*10+r-48}this._state===2&&n-t>0&&this._put(e,t,n)}}end(e,t=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),!this._active.length)this._handlerFb(this._id,"END",e);else{let n=!1,r=this._active.length-1,i=!1;if(this._stack.paused&&(r=this._stack.loopPosition-1,n=t,i=this._stack.fallThrough,this._stack.paused=!1),!i&&n===!1){for(;r>=0&&(n=this._active[r].end(e),n!==!0);r--)if(n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!1,n;r--}for(;r>=0;r--)if(n=this._active[r].end(!1),n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!0,n}this._active=q_,this._id=-1,this._state=0}}},Gl=class{constructor(e){this._handler=e,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(e,t,n){this._hitLimit||(this._data+=Z3(e,t,n),this._data.length>1e7&&(this._data="",this._hitLimit=!0))}end(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data),t instanceof Promise))return t.then(n=>(this._data="",this._hitLimit=!1,n));return this._data="",this._hitLimit=!1,t}},G_=[],ovt=class{constructor(){this._handlers=Object.create(null),this._active=G_,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=G_}registerHandler(e,t){this._handlers[e]===void 0&&(this._handlers[e]=[]);let n=this._handlers[e];return n.push(t),{dispose:()=>{let r=n.indexOf(t);r!==-1&&n.splice(r,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}reset(){if(this._active.length)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].unhook(!1);this._stack.paused=!1,this._active=G_,this._ident=0}hook(e,t){if(this.reset(),this._ident=e,this._active=this._handlers[e]||G_,!this._active.length)this._handlerFb(this._ident,"HOOK",t);else for(let n=this._active.length-1;n>=0;n--)this._active[n].hook(t)}put(e,t,n){if(!this._active.length)this._handlerFb(this._ident,"PUT",Z3(e,t,n));else for(let r=this._active.length-1;r>=0;r--)this._active[r].put(e,t,n)}unhook(e,t=!0){if(!this._active.length)this._handlerFb(this._ident,"UNHOOK",e);else{let n=!1,r=this._active.length-1,i=!1;if(this._stack.paused&&(r=this._stack.loopPosition-1,n=t,i=this._stack.fallThrough,this._stack.paused=!1),!i&&n===!1){for(;r>=0&&(n=this._active[r].unhook(e),n!==!0);r--)if(n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!1,n;r--}for(;r>=0;r--)if(n=this._active[r].unhook(!1),n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!0,n}this._active=G_,this._ident=0}},CS=new Qke;CS.addParam(0);var Boe=class{constructor(e){this._handler=e,this._data="",this._params=CS,this._hitLimit=!1}hook(e){this._params=e.length>1||e.params[0]?e.clone():CS,this._data="",this._hitLimit=!1}put(e,t,n){this._hitLimit||(this._data+=Z3(e,t,n),this._data.length>1e7&&(this._data="",this._hitLimit=!0))}unhook(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data,this._params),t instanceof Promise))return t.then(n=>(this._params=CS,this._data="",this._hitLimit=!1,n));return this._params=CS,this._data="",this._hitLimit=!1,t}},lvt=class{constructor(e){this.table=new Uint8Array(e)}setDefault(e,t){this.table.fill(e<<4|t)}add(e,t,n,r){this.table[t<<8|e]=n<<4|r}addMany(e,t,n,r){for(let i=0;i<e.length;i++)this.table[t<<8|e[i]]=n<<4|r}},zu=160,uvt=(function(){let e=new lvt(4095),t=Array.apply(null,Array(256)).map((o,l)=>l),n=(o,l)=>t.slice(o,l),r=n(32,127),i=n(0,24);i.push(25),i.push.apply(i,n(28,32));let a=n(0,14),s;e.setDefault(1,0),e.addMany(r,0,2,0);for(s in a)e.addMany([24,26,153,154],s,3,0),e.addMany(n(128,144),s,3,0),e.addMany(n(144,152),s,3,0),e.add(156,s,0,0),e.add(27,s,11,1),e.add(157,s,4,8),e.addMany([152,158,159],s,0,7),e.add(155,s,11,3),e.add(144,s,11,9);return e.addMany(i,0,3,0),e.addMany(i,1,3,1),e.add(127,1,0,1),e.addMany(i,8,0,8),e.addMany(i,3,3,3),e.add(127,3,0,3),e.addMany(i,4,3,4),e.add(127,4,0,4),e.addMany(i,6,3,6),e.addMany(i,5,3,5),e.add(127,5,0,5),e.addMany(i,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(r,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(n(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(r,7,0,7),e.addMany(i,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(n(64,127),3,7,0),e.addMany(n(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(n(48,60),4,8,4),e.addMany(n(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(n(32,64),6,0,6),e.add(127,6,0,6),e.addMany(n(64,127),6,0,0),e.addMany(n(32,48),3,9,5),e.addMany(n(32,48),5,9,5),e.addMany(n(48,64),5,0,6),e.addMany(n(64,127),5,7,0),e.addMany(n(32,48),4,9,5),e.addMany(n(32,48),1,9,2),e.addMany(n(32,48),2,9,2),e.addMany(n(48,127),2,10,0),e.addMany(n(48,80),1,10,0),e.addMany(n(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(n(96,127),1,10,0),e.add(80,1,11,9),e.addMany(i,9,0,9),e.add(127,9,0,9),e.addMany(n(28,32),9,0,9),e.addMany(n(32,48),9,9,12),e.addMany(n(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(i,11,0,11),e.addMany(n(32,128),11,0,11),e.addMany(n(28,32),11,0,11),e.addMany(i,10,0,10),e.add(127,10,0,10),e.addMany(n(28,32),10,0,10),e.addMany(n(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(n(32,48),10,9,12),e.addMany(i,12,0,12),e.add(127,12,0,12),e.addMany(n(28,32),12,0,12),e.addMany(n(32,48),12,9,12),e.addMany(n(48,64),12,0,11),e.addMany(n(64,127),12,12,13),e.addMany(n(64,127),10,12,13),e.addMany(n(64,127),9,12,13),e.addMany(i,13,13,13),e.addMany(r,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(zu,0,2,0),e.add(zu,8,5,8),e.add(zu,6,0,6),e.add(zu,11,0,11),e.add(zu,13,13,13),e})(),cvt=class extends or{constructor(e=uvt){super(),this._transitions=e,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new Qke,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(t,n,r)=>{},this._executeHandlerFb=t=>{},this._csiHandlerFb=(t,n)=>{},this._escHandlerFb=t=>{},this._errorHandlerFb=t=>t,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this._register(ta(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this._register(new svt),this._dcsParser=this._register(new ovt),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(e,t=[64,126]){let n=0;if(e.prefix){if(e.prefix.length>1)throw new Error("only one byte as prefix supported");if(n=e.prefix.charCodeAt(0),n&&60>n||n>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(e.intermediates){if(e.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let i=0;i<e.intermediates.length;++i){let a=e.intermediates.charCodeAt(i);if(32>a||a>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");n<<=8,n|=a}}if(e.final.length!==1)throw new Error("final must be a single byte");let r=e.final.charCodeAt(0);if(t[0]>r||r>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return n<<=8,n|=r,n}identToString(e){let t=[];for(;e;)t.push(String.fromCharCode(e&255)),e>>=8;return t.reverse().join("")}setPrintHandler(e){this._printHandler=e}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(e,t){let n=this._identifier(e,[48,126]);this._escHandlers[n]===void 0&&(this._escHandlers[n]=[]);let r=this._escHandlers[n];return r.push(t),{dispose:()=>{let i=r.indexOf(t);i!==-1&&r.splice(i,1)}}}clearEscHandler(e){this._escHandlers[this._identifier(e,[48,126])]&&delete this._escHandlers[this._identifier(e,[48,126])]}setEscHandlerFallback(e){this._escHandlerFb=e}setExecuteHandler(e,t){this._executeHandlers[e.charCodeAt(0)]=t}clearExecuteHandler(e){this._executeHandlers[e.charCodeAt(0)]&&delete this._executeHandlers[e.charCodeAt(0)]}setExecuteHandlerFallback(e){this._executeHandlerFb=e}registerCsiHandler(e,t){let n=this._identifier(e);this._csiHandlers[n]===void 0&&(this._csiHandlers[n]=[]);let r=this._csiHandlers[n];return r.push(t),{dispose:()=>{let i=r.indexOf(t);i!==-1&&r.splice(i,1)}}}clearCsiHandler(e){this._csiHandlers[this._identifier(e)]&&delete this._csiHandlers[this._identifier(e)]}setCsiHandlerFallback(e){this._csiHandlerFb=e}registerDcsHandler(e,t){return this._dcsParser.registerHandler(this._identifier(e),t)}clearDcsHandler(e){this._dcsParser.clearHandler(this._identifier(e))}setDcsHandlerFallback(e){this._dcsParser.setHandlerFallback(e)}registerOscHandler(e,t){return this._oscParser.registerHandler(e,t)}clearOscHandler(e){this._oscParser.clearHandler(e)}setOscHandlerFallback(e){this._oscParser.setHandlerFallback(e)}setErrorHandler(e){this._errorHandler=e}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._parseStack.state!==0&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(e,t,n,r,i){this._parseStack.state=e,this._parseStack.handlers=t,this._parseStack.handlerPos=n,this._parseStack.transition=r,this._parseStack.chunkPos=i}parse(e,t,n){let r=0,i=0,a=0,s;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,a=this._parseStack.chunkPos+1;else{if(n===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");let o=this._parseStack.handlers,l=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(n===!1&&l>-1){for(;l>=0&&(s=o[l](this._params),s!==!0);l--)if(s instanceof Promise)return this._parseStack.handlerPos=l,s}this._parseStack.handlers=[];break;case 4:if(n===!1&&l>-1){for(;l>=0&&(s=o[l](),s!==!0);l--)if(s instanceof Promise)return this._parseStack.handlerPos=l,s}this._parseStack.handlers=[];break;case 6:if(r=e[this._parseStack.chunkPos],s=this._dcsParser.unhook(r!==24&&r!==26,n),s)return s;r===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(r=e[this._parseStack.chunkPos],s=this._oscParser.end(r!==24&&r!==26,n),s)return s;r===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break}this._parseStack.state=0,a=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=this._parseStack.transition&15}for(let o=a;o<t;++o){switch(r=e[o],i=this._transitions.table[this.currentState<<8|(r<160?r:zu)],i>>4){case 2:for(let p=o+1;;++p){if(p>=t||(r=e[p])<32||r>126&&r<zu){this._printHandler(e,o,p),o=p-1;break}if(++p>=t||(r=e[p])<32||r>126&&r<zu){this._printHandler(e,o,p),o=p-1;break}if(++p>=t||(r=e[p])<32||r>126&&r<zu){this._printHandler(e,o,p),o=p-1;break}if(++p>=t||(r=e[p])<32||r>126&&r<zu){this._printHandler(e,o,p),o=p-1;break}}break;case 3:this._executeHandlers[r]?this._executeHandlers[r]():this._executeHandlerFb(r),this.precedingJoinState=0;break;case 0:break;case 1:if(this._errorHandler({position:o,code:r,currentState:this.currentState,collect:this._collect,params:this._params,abort:!1}).abort)return;break;case 7:let l=this._csiHandlers[this._collect<<8|r],u=l?l.length-1:-1;for(;u>=0&&(s=l[u](this._params),s!==!0);u--)if(s instanceof Promise)return this._preserveStack(3,l,u,i,o),s;u<0&&this._csiHandlerFb(this._collect<<8|r,this._params),this.precedingJoinState=0;break;case 8:do switch(r){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(r-48)}while(++o<t&&(r=e[o])>47&&r<60);o--;break;case 9:this._collect<<=8,this._collect|=r;break;case 10:let d=this._escHandlers[this._collect<<8|r],f=d?d.length-1:-1;for(;f>=0&&(s=d[f](),s!==!0);f--)if(s instanceof Promise)return this._preserveStack(4,d,f,i,o),s;f<0&&this._escHandlerFb(this._collect<<8|r),this.precedingJoinState=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|r,this._params);break;case 13:for(let p=o+1;;++p)if(p>=t||(r=e[p])===24||r===26||r===27||r>127&&r<zu){this._dcsParser.put(e,o,p),o=p-1;break}break;case 14:if(s=this._dcsParser.unhook(r!==24&&r!==26),s)return this._preserveStack(6,[],0,i,o),s;r===27&&(i|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0;break;case 4:this._oscParser.start();break;case 5:for(let p=o+1;;p++)if(p>=t||(r=e[p])<32||r>127&&r<zu){this._oscParser.put(e,o,p),o=p-1;break}break;case 6:if(s=this._oscParser.end(r!==24&&r!==26),s)return this._preserveStack(5,[],0,i,o),s;r===27&&(i|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0;break}this.currentState=i&15}}},dvt=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,fvt=/^[\da-f]+$/;function $oe(e){if(!e)return;let t=e.toLowerCase();if(t.indexOf("rgb:")===0){t=t.slice(4);let n=dvt.exec(t);if(n){let r=n[1]?15:n[4]?255:n[7]?4095:65535;return[Math.round(parseInt(n[1]||n[4]||n[7]||n[10],16)/r*255),Math.round(parseInt(n[2]||n[5]||n[8]||n[11],16)/r*255),Math.round(parseInt(n[3]||n[6]||n[9]||n[12],16)/r*255)]}}else if(t.indexOf("#")===0&&(t=t.slice(1),fvt.exec(t)&&[3,6,9,12].includes(t.length))){let n=t.length/3,r=[0,0,0];for(let i=0;i<3;++i){let a=parseInt(t.slice(n*i,n*i+n),16);r[i]=n===1?a<<4:n===2?a:n===3?a>>4:a>>8}return r}}function Jj(e,t){let n=e.toString(16),r=n.length<2?"0"+n:n;switch(t){case 4:return n[0];case 8:return r;case 12:return(r+r).slice(0,3);default:return r+r}}function hvt(e,t=16){let[n,r,i]=e;return`rgb:${Jj(n,t)}/${Jj(r,t)}/${Jj(i,t)}`}var pvt={"(":0,")":1,"*":2,"+":3,"-":1,".":2},Fp=131072,Uoe=10;function zoe(e,t){if(e>24)return t.setWinLines||!1;switch(e){case 1:return!!t.restoreWin;case 2:return!!t.minimizeWin;case 3:return!!t.setWinPosition;case 4:return!!t.setWinSizePixels;case 5:return!!t.raiseWin;case 6:return!!t.lowerWin;case 7:return!!t.refreshWin;case 8:return!!t.setWinSizeChars;case 9:return!!t.maximizeWin;case 10:return!!t.fullscreenWin;case 11:return!!t.getWinState;case 13:return!!t.getWinPosition;case 14:return!!t.getWinSizePixels;case 15:return!!t.getScreenSizePixels;case 16:return!!t.getCellSizePixels;case 18:return!!t.getWinSizeChars;case 19:return!!t.getScreenSizeChars;case 20:return!!t.getIconTitle;case 21:return!!t.getWinTitle;case 22:return!!t.pushTitle;case 23:return!!t.popTitle;case 24:return!!t.setWinLines}return!1}var Hoe=5e3,Voe=0,mvt=class extends or{constructor(e,t,n,r,i,a,s,o,l=new cvt){super(),this._bufferService=e,this._charsetService=t,this._coreService=n,this._logService=r,this._optionsService=i,this._oscLinkService=a,this._coreMouseService=s,this._unicodeService=o,this._parser=l,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new Pgt,this._utf8Decoder=new Lgt,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=Ua.clone(),this._eraseAttrDataInternal=Ua.clone(),this._onRequestBell=this._register(new $t),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this._register(new $t),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this._register(new $t),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this._register(new $t),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this._register(new $t),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this._register(new $t),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this._register(new $t),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this._register(new $t),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this._register(new $t),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this._register(new $t),this.onLineFeed=this._onLineFeed.event,this._onScroll=this._register(new $t),this.onScroll=this._onScroll.event,this._onTitleChange=this._register(new $t),this.onTitleChange=this._onTitleChange.event,this._onColor=this._register(new $t),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this._register(this._parser),this._dirtyRowTracker=new I$(this._bufferService),this._activeBuffer=this._bufferService.buffer,this._register(this._bufferService.buffers.onBufferActivate(u=>this._activeBuffer=u.activeBuffer)),this._parser.setCsiHandlerFallback((u,d)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(u),params:d.toArray()})}),this._parser.setEscHandlerFallback(u=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(u)})}),this._parser.setExecuteHandlerFallback(u=>{this._logService.debug("Unknown EXECUTE code: ",{code:u})}),this._parser.setOscHandlerFallback((u,d,f)=>{this._logService.debug("Unknown OSC code: ",{identifier:u,action:d,data:f})}),this._parser.setDcsHandlerFallback((u,d,f)=>{d==="HOOK"&&(f=f.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(u),action:d,payload:f})}),this._parser.setPrintHandler((u,d,f)=>this.print(u,d,f)),this._parser.registerCsiHandler({final:"@"},u=>this.insertChars(u)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},u=>this.scrollLeft(u)),this._parser.registerCsiHandler({final:"A"},u=>this.cursorUp(u)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},u=>this.scrollRight(u)),this._parser.registerCsiHandler({final:"B"},u=>this.cursorDown(u)),this._parser.registerCsiHandler({final:"C"},u=>this.cursorForward(u)),this._parser.registerCsiHandler({final:"D"},u=>this.cursorBackward(u)),this._parser.registerCsiHandler({final:"E"},u=>this.cursorNextLine(u)),this._parser.registerCsiHandler({final:"F"},u=>this.cursorPrecedingLine(u)),this._parser.registerCsiHandler({final:"G"},u=>this.cursorCharAbsolute(u)),this._parser.registerCsiHandler({final:"H"},u=>this.cursorPosition(u)),this._parser.registerCsiHandler({final:"I"},u=>this.cursorForwardTab(u)),this._parser.registerCsiHandler({final:"J"},u=>this.eraseInDisplay(u,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},u=>this.eraseInDisplay(u,!0)),this._parser.registerCsiHandler({final:"K"},u=>this.eraseInLine(u,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},u=>this.eraseInLine(u,!0)),this._parser.registerCsiHandler({final:"L"},u=>this.insertLines(u)),this._parser.registerCsiHandler({final:"M"},u=>this.deleteLines(u)),this._parser.registerCsiHandler({final:"P"},u=>this.deleteChars(u)),this._parser.registerCsiHandler({final:"S"},u=>this.scrollUp(u)),this._parser.registerCsiHandler({final:"T"},u=>this.scrollDown(u)),this._parser.registerCsiHandler({final:"X"},u=>this.eraseChars(u)),this._parser.registerCsiHandler({final:"Z"},u=>this.cursorBackwardTab(u)),this._parser.registerCsiHandler({final:"`"},u=>this.charPosAbsolute(u)),this._parser.registerCsiHandler({final:"a"},u=>this.hPositionRelative(u)),this._parser.registerCsiHandler({final:"b"},u=>this.repeatPrecedingCharacter(u)),this._parser.registerCsiHandler({final:"c"},u=>this.sendDeviceAttributesPrimary(u)),this._parser.registerCsiHandler({prefix:">",final:"c"},u=>this.sendDeviceAttributesSecondary(u)),this._parser.registerCsiHandler({final:"d"},u=>this.linePosAbsolute(u)),this._parser.registerCsiHandler({final:"e"},u=>this.vPositionRelative(u)),this._parser.registerCsiHandler({final:"f"},u=>this.hVPosition(u)),this._parser.registerCsiHandler({final:"g"},u=>this.tabClear(u)),this._parser.registerCsiHandler({final:"h"},u=>this.setMode(u)),this._parser.registerCsiHandler({prefix:"?",final:"h"},u=>this.setModePrivate(u)),this._parser.registerCsiHandler({final:"l"},u=>this.resetMode(u)),this._parser.registerCsiHandler({prefix:"?",final:"l"},u=>this.resetModePrivate(u)),this._parser.registerCsiHandler({final:"m"},u=>this.charAttributes(u)),this._parser.registerCsiHandler({final:"n"},u=>this.deviceStatus(u)),this._parser.registerCsiHandler({prefix:"?",final:"n"},u=>this.deviceStatusPrivate(u)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},u=>this.softReset(u)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},u=>this.setCursorStyle(u)),this._parser.registerCsiHandler({final:"r"},u=>this.setScrollRegion(u)),this._parser.registerCsiHandler({final:"s"},u=>this.saveCursor(u)),this._parser.registerCsiHandler({final:"t"},u=>this.windowOptions(u)),this._parser.registerCsiHandler({final:"u"},u=>this.restoreCursor(u)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},u=>this.insertColumns(u)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},u=>this.deleteColumns(u)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},u=>this.selectProtected(u)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},u=>this.requestMode(u,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},u=>this.requestMode(u,!1)),this._parser.setExecuteHandler(yt.BEL,()=>this.bell()),this._parser.setExecuteHandler(yt.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(yt.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(yt.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(yt.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(yt.BS,()=>this.backspace()),this._parser.setExecuteHandler(yt.HT,()=>this.tab()),this._parser.setExecuteHandler(yt.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(yt.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(YA.IND,()=>this.index()),this._parser.setExecuteHandler(YA.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(YA.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new Gl(u=>(this.setTitle(u),this.setIconName(u),!0))),this._parser.registerOscHandler(1,new Gl(u=>this.setIconName(u))),this._parser.registerOscHandler(2,new Gl(u=>this.setTitle(u))),this._parser.registerOscHandler(4,new Gl(u=>this.setOrReportIndexedColor(u))),this._parser.registerOscHandler(8,new Gl(u=>this.setHyperlink(u))),this._parser.registerOscHandler(10,new Gl(u=>this.setOrReportFgColor(u))),this._parser.registerOscHandler(11,new Gl(u=>this.setOrReportBgColor(u))),this._parser.registerOscHandler(12,new Gl(u=>this.setOrReportCursorColor(u))),this._parser.registerOscHandler(104,new Gl(u=>this.restoreIndexedColor(u))),this._parser.registerOscHandler(110,new Gl(u=>this.restoreFgColor(u))),this._parser.registerOscHandler(111,new Gl(u=>this.restoreBgColor(u))),this._parser.registerOscHandler(112,new Gl(u=>this.restoreCursorColor(u))),this._parser.registerEscHandler({final:"7"},()=>this.saveCursor()),this._parser.registerEscHandler({final:"8"},()=>this.restoreCursor()),this._parser.registerEscHandler({final:"D"},()=>this.index()),this._parser.registerEscHandler({final:"E"},()=>this.nextLine()),this._parser.registerEscHandler({final:"H"},()=>this.tabSet()),this._parser.registerEscHandler({final:"M"},()=>this.reverseIndex()),this._parser.registerEscHandler({final:"="},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:">"},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:"c"},()=>this.fullReset()),this._parser.registerEscHandler({final:"n"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"o"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"|"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"}"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"~"},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:"%",final:"@"},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:"%",final:"G"},()=>this.selectDefaultCharset());for(let u in ps)this._parser.registerEscHandler({intermediates:"(",final:u},()=>this.selectCharset("("+u)),this._parser.registerEscHandler({intermediates:")",final:u},()=>this.selectCharset(")"+u)),this._parser.registerEscHandler({intermediates:"*",final:u},()=>this.selectCharset("*"+u)),this._parser.registerEscHandler({intermediates:"+",final:u},()=>this.selectCharset("+"+u)),this._parser.registerEscHandler({intermediates:"-",final:u},()=>this.selectCharset("-"+u)),this._parser.registerEscHandler({intermediates:".",final:u},()=>this.selectCharset("."+u)),this._parser.registerEscHandler({intermediates:"/",final:u},()=>this.selectCharset("/"+u));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(u=>(this._logService.error("Parsing error: ",u),u)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new Boe((u,d)=>this.requestStatusString(u,d)))}getAttrData(){return this._curAttrData}_preserveStack(e,t,n,r){this._parseStack.paused=!0,this._parseStack.cursorStartX=e,this._parseStack.cursorStartY=t,this._parseStack.decodedLength=n,this._parseStack.position=r}_logSlowResolvingAsync(e){this._logService.logLevel<=3&&Promise.race([e,new Promise((t,n)=>setTimeout(()=>n("#SLOW_TIMEOUT"),Hoe))]).catch(t=>{if(t!=="#SLOW_TIMEOUT")throw t;console.warn(`async parser handler taking longer than ${Hoe} ms`)})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(e,t){let n,r=this._activeBuffer.x,i=this._activeBuffer.y,a=0,s=this._parseStack.paused;if(s){if(n=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,t))return this._logSlowResolvingAsync(n),n;r=this._parseStack.cursorStartX,i=this._parseStack.cursorStartY,this._parseStack.paused=!1,e.length>Fp&&(a=this._parseStack.position+Fp)}if(this._logService.logLevel<=1&&this._logService.debug(`parsing data ${typeof e=="string"?` "${e}"`:` "${Array.prototype.map.call(e,u=>String.fromCharCode(u)).join("")}"`}`),this._logService.logLevel===0&&this._logService.trace("parsing data (codes)",typeof e=="string"?e.split("").map(u=>u.charCodeAt(0)):e),this._parseBuffer.length<e.length&&this._parseBuffer.length<Fp&&(this._parseBuffer=new Uint32Array(Math.min(e.length,Fp))),s||this._dirtyRowTracker.clearRange(),e.length>Fp)for(let u=a;u<e.length;u+=Fp){let d=u+Fp<e.length?u+Fp:e.length,f=typeof e=="string"?this._stringDecoder.decode(e.substring(u,d),this._parseBuffer):this._utf8Decoder.decode(e.subarray(u,d),this._parseBuffer);if(n=this._parser.parse(this._parseBuffer,f))return this._preserveStack(r,i,f,u),this._logSlowResolvingAsync(n),n}else if(!s){let u=typeof e=="string"?this._stringDecoder.decode(e,this._parseBuffer):this._utf8Decoder.decode(e,this._parseBuffer);if(n=this._parser.parse(this._parseBuffer,u))return this._preserveStack(r,i,u,0),this._logSlowResolvingAsync(n),n}(this._activeBuffer.x!==r||this._activeBuffer.y!==i)&&this._onCursorMove.fire();let o=this._dirtyRowTracker.end+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp),l=this._dirtyRowTracker.start+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp);l<this._bufferService.rows&&this._onRequestRefreshRows.fire({start:Math.min(l,this._bufferService.rows-1),end:Math.min(o,this._bufferService.rows-1)})}print(e,t,n){let r,i,a=this._charsetService.charset,s=this._optionsService.rawOptions.screenReaderMode,o=this._bufferService.cols,l=this._coreService.decPrivateModes.wraparound,u=this._coreService.modes.insertMode,d=this._curAttrData,f=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._activeBuffer.x&&n-t>0&&f.getWidth(this._activeBuffer.x-1)===2&&f.setCellFromCodepoint(this._activeBuffer.x-1,0,1,d);let p=this._parser.precedingJoinState;for(let m=t;m<n;++m){if(r=e[m],r<127&&a){let _=a[String.fromCharCode(r)];_&&(r=_.charCodeAt(0))}let b=this._unicodeService.charProperties(r,p);i=eb.extractWidth(b);let y=eb.extractShouldJoin(b),v=y?eb.extractWidth(p):0;if(p=b,s&&this._onA11yChar.fire(Wp(r)),this._getCurrentLinkId()&&this._oscLinkService.addLineToLink(this._getCurrentLinkId(),this._activeBuffer.ybase+this._activeBuffer.y),this._activeBuffer.x+i-v>o){if(l){let _=f,w=this._activeBuffer.x-v;for(this._activeBuffer.x=v,this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData(),!0)):(this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),f=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),v>0&&f instanceof wS&&f.copyCellsFrom(_,w,0,v,!1);w<o;)_.setCellFromCodepoint(w++,0,1,d)}else if(this._activeBuffer.x=o-1,i===2)continue}if(y&&this._activeBuffer.x){let _=f.getWidth(this._activeBuffer.x-1)?1:2;f.addCodepointToCell(this._activeBuffer.x-_,r,i);for(let w=i-v;--w>=0;)f.setCellFromCodepoint(this._activeBuffer.x++,0,0,d);continue}if(u&&(f.insertCells(this._activeBuffer.x,i-v,this._activeBuffer.getNullCell(d)),f.getWidth(o-1)===2&&f.setCellFromCodepoint(o-1,0,1,d)),f.setCellFromCodepoint(this._activeBuffer.x++,r,i,d),i>0)for(;--i;)f.setCellFromCodepoint(this._activeBuffer.x++,0,0,d)}this._parser.precedingJoinState=p,this._activeBuffer.x<o&&n-t>0&&f.getWidth(this._activeBuffer.x)===0&&!f.hasContent(this._activeBuffer.x)&&f.setCellFromCodepoint(this._activeBuffer.x,0,1,d),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(e,t){return e.final==="t"&&!e.prefix&&!e.intermediates?this._parser.registerCsiHandler(e,n=>zoe(n.params[0],this._optionsService.rawOptions.windowOptions)?t(n):!0):this._parser.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._parser.registerDcsHandler(e,new Boe(t))}registerEscHandler(e,t){return this._parser.registerEscHandler(e,t)}registerOscHandler(e,t){return this._parser.registerOscHandler(e,new Gl(t))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(this._activeBuffer.x===0&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)?.isWrapped){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);e.hasWidth(this._activeBuffer.x)&&!e.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let e=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-e),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(e=this._bufferService.cols-1){this._activeBuffer.x=Math.min(e,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(e,t){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=e,this._activeBuffer.y=this._activeBuffer.scrollTop+t):(this._activeBuffer.x=e,this._activeBuffer.y=t),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(e,t){this._restrictCursor(),this._setCursor(this._activeBuffer.x+e,this._activeBuffer.y+t)}cursorUp(e){let t=this._activeBuffer.y-this._activeBuffer.scrollTop;return t>=0?this._moveCursor(0,-Math.min(t,e.params[0]||1)):this._moveCursor(0,-(e.params[0]||1)),!0}cursorDown(e){let t=this._activeBuffer.scrollBottom-this._activeBuffer.y;return t>=0?this._moveCursor(0,Math.min(t,e.params[0]||1)):this._moveCursor(0,e.params[0]||1),!0}cursorForward(e){return this._moveCursor(e.params[0]||1,0),!0}cursorBackward(e){return this._moveCursor(-(e.params[0]||1),0),!0}cursorNextLine(e){return this.cursorDown(e),this._activeBuffer.x=0,!0}cursorPrecedingLine(e){return this.cursorUp(e),this._activeBuffer.x=0,!0}cursorCharAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(e){return this._setCursor(e.length>=2?(e.params[1]||1)-1:0,(e.params[0]||1)-1),!0}charPosAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(e){return this._moveCursor(e.params[0]||1,0),!0}linePosAbsolute(e){return this._setCursor(this._activeBuffer.x,(e.params[0]||1)-1),!0}vPositionRelative(e){return this._moveCursor(0,e.params[0]||1),!0}hVPosition(e){return this.cursorPosition(e),!0}tabClear(e){let t=e.params[0];return t===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:t===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(e){let t=e.params[0];return t===1&&(this._curAttrData.bg|=536870912),(t===2||t===0)&&(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(e,t,n,r=!1,i=!1){let a=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);a.replaceCells(t,n,this._activeBuffer.getNullCell(this._eraseAttrData()),i),r&&(a.isWrapped=!1)}_resetBufferLine(e,t=!1){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n&&(n.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),t),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+e),n.isWrapped=!1)}eraseInDisplay(e,t=!1){this._restrictCursor(this._bufferService.cols);let n;switch(e.params[0]){case 0:for(n=this._activeBuffer.y,this._dirtyRowTracker.markDirty(n),this._eraseInBufferLine(n++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,t);n<this._bufferService.rows;n++)this._resetBufferLine(n,t);this._dirtyRowTracker.markDirty(n);break;case 1:for(n=this._activeBuffer.y,this._dirtyRowTracker.markDirty(n),this._eraseInBufferLine(n,0,this._activeBuffer.x+1,!0,t),this._activeBuffer.x+1>=this._bufferService.cols&&(this._activeBuffer.lines.get(n+1).isWrapped=!1);n--;)this._resetBufferLine(n,t);this._dirtyRowTracker.markDirty(0);break;case 2:if(this._optionsService.rawOptions.scrollOnEraseInDisplay){for(n=this._bufferService.rows,this._dirtyRowTracker.markRangeDirty(0,n-1);n--&&!this._activeBuffer.lines.get(this._activeBuffer.ybase+n)?.getTrimmedLength(););for(;n>=0;n--)this._bufferService.scroll(this._eraseAttrData())}else{for(n=this._bufferService.rows,this._dirtyRowTracker.markDirty(n-1);n--;)this._resetBufferLine(n,t);this._dirtyRowTracker.markDirty(0)}break;case 3:let r=this._activeBuffer.lines.length-this._bufferService.rows;r>0&&(this._activeBuffer.lines.trimStart(r),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-r,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-r,0),this._onScroll.fire(0));break}return!0}eraseInLine(e,t=!1){switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,t);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,t);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,t);break}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let n=this._activeBuffer.ybase+this._activeBuffer.y,r=this._bufferService.rows-1-this._activeBuffer.scrollBottom,i=this._bufferService.rows-1+this._activeBuffer.ybase-r+1;for(;t--;)this._activeBuffer.lines.splice(i-1,1),this._activeBuffer.lines.splice(n,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}deleteLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let n=this._activeBuffer.ybase+this._activeBuffer.y,r;for(r=this._bufferService.rows-1-this._activeBuffer.scrollBottom,r=this._bufferService.rows-1+this._activeBuffer.ybase-r;t--;)this._activeBuffer.lines.splice(n,1),this._activeBuffer.lines.splice(r,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}insertChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.insertCells(this._activeBuffer.x,e.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}deleteChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.deleteCells(this._activeBuffer.x,e.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}scrollUp(e){let t=e.params[0]||1;for(;t--;)this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollTop,1),this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollBottom,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollDown(e){let t=e.params[0]||1;for(;t--;)this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollBottom,1),this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollTop,0,this._activeBuffer.getBlankLine(Ua));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollLeft(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let n=this._activeBuffer.scrollTop;n<=this._activeBuffer.scrollBottom;++n){let r=this._activeBuffer.lines.get(this._activeBuffer.ybase+n);r.deleteCells(0,t,this._activeBuffer.getNullCell(this._eraseAttrData())),r.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollRight(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let n=this._activeBuffer.scrollTop;n<=this._activeBuffer.scrollBottom;++n){let r=this._activeBuffer.lines.get(this._activeBuffer.ybase+n);r.insertCells(0,t,this._activeBuffer.getNullCell(this._eraseAttrData())),r.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}insertColumns(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let n=this._activeBuffer.scrollTop;n<=this._activeBuffer.scrollBottom;++n){let r=this._activeBuffer.lines.get(this._activeBuffer.ybase+n);r.insertCells(this._activeBuffer.x,t,this._activeBuffer.getNullCell(this._eraseAttrData())),r.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}deleteColumns(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let n=this._activeBuffer.scrollTop;n<=this._activeBuffer.scrollBottom;++n){let r=this._activeBuffer.lines.get(this._activeBuffer.ybase+n);r.deleteCells(this._activeBuffer.x,t,this._activeBuffer.getNullCell(this._eraseAttrData())),r.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}eraseChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.replaceCells(this._activeBuffer.x,this._activeBuffer.x+(e.params[0]||1),this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}repeatPrecedingCharacter(e){let t=this._parser.precedingJoinState;if(!t)return!0;let n=e.params[0]||1,r=eb.extractWidth(t),i=this._activeBuffer.x-r,a=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).getString(i),s=new Uint32Array(a.length*n),o=0;for(let u=0;u<a.length;){let d=a.codePointAt(u)||0;s[o++]=d,u+=d>65535?2:1}let l=o;for(let u=1;u<n;++u)s.copyWithin(l,0,o),l+=o;return this.print(s,0,l),!0}sendDeviceAttributesPrimary(e){return e.params[0]>0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(yt.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(yt.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(e){return e.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(yt.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(yt.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(e.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(yt.ESC+"[>83;40003;0c")),!0}_is(e){return(this._optionsService.rawOptions.termName+"").indexOf(e)===0}setMode(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 4:this._coreService.modes.insertMode=!0;break;case 20:this._optionsService.options.convertEol=!0;break}return!0}setModePrivate(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!0;break;case 2:this._charsetService.setgCharset(0,jg),this._charsetService.setgCharset(1,jg),this._charsetService.setgCharset(2,jg),this._charsetService.setgCharset(3,jg);break;case 3:this._optionsService.rawOptions.windowOptions.setWinLines&&(this._bufferService.resize(132,this._bufferService.rows),this._onRequestReset.fire());break;case 6:this._coreService.decPrivateModes.origin=!0,this._setCursor(0,0);break;case 7:this._coreService.decPrivateModes.wraparound=!0;break;case 12:this._optionsService.options.cursorBlink=!0;break;case 45:this._coreService.decPrivateModes.reverseWraparound=!0;break;case 66:this._logService.debug("Serial port requested application keypad."),this._coreService.decPrivateModes.applicationKeypad=!0,this._onRequestSyncScrollBar.fire();break;case 9:this._coreMouseService.activeProtocol="X10";break;case 1e3:this._coreMouseService.activeProtocol="VT200";break;case 1002:this._coreMouseService.activeProtocol="DRAG";break;case 1003:this._coreMouseService.activeProtocol="ANY";break;case 1004:this._coreService.decPrivateModes.sendFocus=!0,this._onRequestSendFocus.fire();break;case 1005:this._logService.debug("DECSET 1005 not supported (see #2507)");break;case 1006:this._coreMouseService.activeEncoding="SGR";break;case 1015:this._logService.debug("DECSET 1015 not supported (see #2507)");break;case 1016:this._coreMouseService.activeEncoding="SGR_PIXELS";break;case 25:this._coreService.isCursorHidden=!1;break;case 1048:this.saveCursor();break;case 1049:this.saveCursor();case 47:case 1047:this._bufferService.buffers.activateAltBuffer(this._eraseAttrData()),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(void 0),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!0;break;case 2026:this._coreService.decPrivateModes.synchronizedOutput=!0;break}return!0}resetMode(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 4:this._coreService.modes.insertMode=!1;break;case 20:this._optionsService.options.convertEol=!1;break}return!0}resetModePrivate(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!1;break;case 3:this._optionsService.rawOptions.windowOptions.setWinLines&&(this._bufferService.resize(80,this._bufferService.rows),this._onRequestReset.fire());break;case 6:this._coreService.decPrivateModes.origin=!1,this._setCursor(0,0);break;case 7:this._coreService.decPrivateModes.wraparound=!1;break;case 12:this._optionsService.options.cursorBlink=!1;break;case 45:this._coreService.decPrivateModes.reverseWraparound=!1;break;case 66:this._logService.debug("Switching back to normal keypad."),this._coreService.decPrivateModes.applicationKeypad=!1,this._onRequestSyncScrollBar.fire();break;case 9:case 1e3:case 1002:case 1003:this._coreMouseService.activeProtocol="NONE";break;case 1004:this._coreService.decPrivateModes.sendFocus=!1;break;case 1005:this._logService.debug("DECRST 1005 not supported (see #2507)");break;case 1006:this._coreMouseService.activeEncoding="DEFAULT";break;case 1015:this._logService.debug("DECRST 1015 not supported (see #2507)");break;case 1016:this._coreMouseService.activeEncoding="DEFAULT";break;case 25:this._coreService.isCursorHidden=!0;break;case 1048:this.restoreCursor();break;case 1049:case 47:case 1047:this._bufferService.buffers.activateNormalBuffer(),e.params[t]===1049&&this.restoreCursor(),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(void 0),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!1;break;case 2026:this._coreService.decPrivateModes.synchronizedOutput=!1,this._onRequestRefreshRows.fire(void 0);break}return!0}requestMode(e,t){let n;(y=>(y[y.NOT_RECOGNIZED=0]="NOT_RECOGNIZED",y[y.SET=1]="SET",y[y.RESET=2]="RESET",y[y.PERMANENTLY_SET=3]="PERMANENTLY_SET",y[y.PERMANENTLY_RESET=4]="PERMANENTLY_RESET"))(n||={});let r=this._coreService.decPrivateModes,{activeProtocol:i,activeEncoding:a}=this._coreMouseService,s=this._coreService,{buffers:o,cols:l}=this._bufferService,{active:u,alt:d}=o,f=this._optionsService.rawOptions,p=(y,v)=>(s.triggerDataEvent(`${yt.ESC}[${t?"":"?"}${y};${v}$y`),!0),m=y=>y?1:2,b=e.params[0];return t?b===2?p(b,4):b===4?p(b,m(s.modes.insertMode)):b===12?p(b,3):b===20?p(b,m(f.convertEol)):p(b,0):b===1?p(b,m(r.applicationCursorKeys)):b===3?p(b,f.windowOptions.setWinLines?l===80?2:l===132?1:0:0):b===6?p(b,m(r.origin)):b===7?p(b,m(r.wraparound)):b===8?p(b,3):b===9?p(b,m(i==="X10")):b===12?p(b,m(f.cursorBlink)):b===25?p(b,m(!s.isCursorHidden)):b===45?p(b,m(r.reverseWraparound)):b===66?p(b,m(r.applicationKeypad)):b===67?p(b,4):b===1e3?p(b,m(i==="VT200")):b===1002?p(b,m(i==="DRAG")):b===1003?p(b,m(i==="ANY")):b===1004?p(b,m(r.sendFocus)):b===1005?p(b,4):b===1006?p(b,m(a==="SGR")):b===1015?p(b,4):b===1016?p(b,m(a==="SGR_PIXELS")):b===1048?p(b,1):b===47||b===1047||b===1049?p(b,m(u===d)):b===2004?p(b,m(r.bracketedPasteMode)):b===2026?p(b,m(r.synchronizedOutput)):p(b,0)}_updateAttrColor(e,t,n,r,i){return t===2?(e|=50331648,e&=-16777216,e|=l2.fromColorRGB([n,r,i])):t===5&&(e&=-50331904,e|=33554432|n&255),e}_extractColor(e,t,n){let r=[0,0,-1,0,0,0],i=0,a=0;do{if(r[a+i]=e.params[t+a],e.hasSubParams(t+a)){let s=e.getSubParams(t+a),o=0;do r[1]===5&&(i=1),r[a+o+1+i]=s[o];while(++o<s.length&&o+a+1+i<r.length);break}if(r[1]===5&&a+i>=2||r[1]===2&&a+i>=5)break;r[1]&&(i=1)}while(++a+t<e.length&&a+i<r.length);for(let s=2;s<r.length;++s)r[s]===-1&&(r[s]=0);switch(r[0]){case 38:n.fg=this._updateAttrColor(n.fg,r[1],r[3],r[4],r[5]);break;case 48:n.bg=this._updateAttrColor(n.bg,r[1],r[3],r[4],r[5]);break;case 58:n.extended=n.extended.clone(),n.extended.underlineColor=this._updateAttrColor(n.extended.underlineColor,r[1],r[3],r[4],r[5])}return a}_processUnderline(e,t){t.extended=t.extended.clone(),(!~e||e>5)&&(e=1),t.extended.underlineStyle=e,t.fg|=268435456,e===0&&(t.fg&=-268435457),t.updateExtended()}_processSGR0(e){e.fg=Ua.fg,e.bg=Ua.bg,e.extended=e.extended.clone(),e.extended.underlineStyle=0,e.extended.underlineColor&=-67108864,e.updateExtended()}charAttributes(e){if(e.length===1&&e.params[0]===0)return this._processSGR0(this._curAttrData),!0;let t=e.length,n,r=this._curAttrData;for(let i=0;i<t;i++)n=e.params[i],n>=30&&n<=37?(r.fg&=-50331904,r.fg|=16777216|n-30):n>=40&&n<=47?(r.bg&=-50331904,r.bg|=16777216|n-40):n>=90&&n<=97?(r.fg&=-50331904,r.fg|=16777216|n-90|8):n>=100&&n<=107?(r.bg&=-50331904,r.bg|=16777216|n-100|8):n===0?this._processSGR0(r):n===1?r.fg|=134217728:n===3?r.bg|=67108864:n===4?(r.fg|=268435456,this._processUnderline(e.hasSubParams(i)?e.getSubParams(i)[0]:1,r)):n===5?r.fg|=536870912:n===7?r.fg|=67108864:n===8?r.fg|=1073741824:n===9?r.fg|=2147483648:n===2?r.bg|=134217728:n===21?this._processUnderline(2,r):n===22?(r.fg&=-134217729,r.bg&=-134217729):n===23?r.bg&=-67108865:n===24?(r.fg&=-268435457,this._processUnderline(0,r)):n===25?r.fg&=-536870913:n===27?r.fg&=-67108865:n===28?r.fg&=-1073741825:n===29?r.fg&=2147483647:n===39?(r.fg&=-67108864,r.fg|=Ua.fg&16777215):n===49?(r.bg&=-67108864,r.bg|=Ua.bg&16777215):n===38||n===48||n===58?i+=this._extractColor(e,i,r):n===53?r.bg|=1073741824:n===55?r.bg&=-1073741825:n===59?(r.extended=r.extended.clone(),r.extended.underlineColor=-1,r.updateExtended()):n===100?(r.fg&=-67108864,r.fg|=Ua.fg&16777215,r.bg&=-67108864,r.bg|=Ua.bg&16777215):this._logService.debug("Unknown SGR attribute: %d.",n);return!0}deviceStatus(e){switch(e.params[0]){case 5:this._coreService.triggerDataEvent(`${yt.ESC}[0n`);break;case 6:let t=this._activeBuffer.y+1,n=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${yt.ESC}[${t};${n}R`);break}return!0}deviceStatusPrivate(e){if(e.params[0]===6){let t=this._activeBuffer.y+1,n=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${yt.ESC}[?${t};${n}R`)}return!0}softReset(e){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=Ua.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(e){let t=e.length===0?1:e.params[0];if(t===0)this._coreService.decPrivateModes.cursorStyle=void 0,this._coreService.decPrivateModes.cursorBlink=void 0;else{switch(t){case 1:case 2:this._coreService.decPrivateModes.cursorStyle="block";break;case 3:case 4:this._coreService.decPrivateModes.cursorStyle="underline";break;case 5:case 6:this._coreService.decPrivateModes.cursorStyle="bar";break}let n=t%2===1;this._coreService.decPrivateModes.cursorBlink=n}return!0}setScrollRegion(e){let t=e.params[0]||1,n;return(e.length<2||(n=e.params[1])>this._bufferService.rows||n===0)&&(n=this._bufferService.rows),n>t&&(this._activeBuffer.scrollTop=t-1,this._activeBuffer.scrollBottom=n-1,this._setCursor(0,0)),!0}windowOptions(e){if(!zoe(e.params[0],this._optionsService.rawOptions.windowOptions))return!0;let t=e.length>1?e.params[1]:0;switch(e.params[0]){case 14:t!==2&&this._onRequestWindowsOptionsReport.fire(0);break;case 16:this._onRequestWindowsOptionsReport.fire(1);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${yt.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:(t===0||t===2)&&(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>Uoe&&this._windowTitleStack.shift()),(t===0||t===1)&&(this._iconNameStack.push(this._iconName),this._iconNameStack.length>Uoe&&this._iconNameStack.shift());break;case 23:(t===0||t===2)&&this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),(t===0||t===1)&&this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop());break}return!0}saveCursor(e){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(e){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(e){return this._windowTitle=e,this._onTitleChange.fire(e),!0}setIconName(e){return this._iconName=e,!0}setOrReportIndexedColor(e){let t=[],n=e.split(";");for(;n.length>1;){let r=n.shift(),i=n.shift();if(/^\d+$/.exec(r)){let a=parseInt(r);if(Woe(a))if(i==="?")t.push({type:0,index:a});else{let s=$oe(i);s&&t.push({type:1,index:a,color:s})}}}return t.length&&this._onColor.fire(t),!0}setHyperlink(e){let t=e.indexOf(";");if(t===-1)return!0;let n=e.slice(0,t).trim(),r=e.slice(t+1);return r?this._createHyperlink(n,r):n.trim()?!1:this._finishHyperlink()}_createHyperlink(e,t){this._getCurrentLinkId()&&this._finishHyperlink();let n=e.split(":"),r,i=n.findIndex(a=>a.startsWith("id="));return i!==-1&&(r=n[i].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:r,uri:t}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(e,t){let n=e.split(";");for(let r=0;r<n.length&&!(t>=this._specialColors.length);++r,++t)if(n[r]==="?")this._onColor.fire([{type:0,index:this._specialColors[t]}]);else{let i=$oe(n[r]);i&&this._onColor.fire([{type:1,index:this._specialColors[t],color:i}])}return!0}setOrReportFgColor(e){return this._setOrReportSpecialColor(e,0)}setOrReportBgColor(e){return this._setOrReportSpecialColor(e,1)}setOrReportCursorColor(e){return this._setOrReportSpecialColor(e,2)}restoreIndexedColor(e){if(!e)return this._onColor.fire([{type:2}]),!0;let t=[],n=e.split(";");for(let r=0;r<n.length;++r)if(/^\d+$/.exec(n[r])){let i=parseInt(n[r]);Woe(i)&&t.push({type:2,index:i})}return t.length&&this._onColor.fire(t),!0}restoreFgColor(e){return this._onColor.fire([{type:2,index:256}]),!0}restoreBgColor(e){return this._onColor.fire([{type:2,index:257}]),!0}restoreCursorColor(e){return this._onColor.fire([{type:2,index:258}]),!0}nextLine(){return this._activeBuffer.x=0,this.index(),!0}keypadApplicationMode(){return this._logService.debug("Serial port requested application keypad."),this._coreService.decPrivateModes.applicationKeypad=!0,this._onRequestSyncScrollBar.fire(),!0}keypadNumericMode(){return this._logService.debug("Switching back to normal keypad."),this._coreService.decPrivateModes.applicationKeypad=!1,this._onRequestSyncScrollBar.fire(),!0}selectDefaultCharset(){return this._charsetService.setgLevel(0),this._charsetService.setgCharset(0,jg),!0}selectCharset(e){return e.length!==2?(this.selectDefaultCharset(),!0):(e[0]==="/"||this._charsetService.setgCharset(pvt[e[0]],ps[e[1]]||jg),!0)}index(){return this._restrictCursor(),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){let e=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,e,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=Ua.clone(),this._eraseAttrDataInternal=Ua.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=this._curAttrData.bg&67108863,this._eraseAttrDataInternal}setgLevel(e){return this._charsetService.setgLevel(e),!0}screenAlignmentPattern(){let e=new lc;e.content=1<<22|69,e.fg=this._curAttrData.fg,e.bg=this._curAttrData.bg,this._setCursor(0,0);for(let t=0;t<this._bufferService.rows;++t){let n=this._activeBuffer.ybase+this._activeBuffer.y+t,r=this._activeBuffer.lines.get(n);r&&(r.fill(e),r.isWrapped=!1)}return this._dirtyRowTracker.markAllDirty(),this._setCursor(0,0),!0}requestStatusString(e,t){let n=s=>(this._coreService.triggerDataEvent(`${yt.ESC}${s}${yt.ESC}\\`),!0),r=this._bufferService.buffer,i=this._optionsService.rawOptions;return n(e==='"q'?`P1$r${this._curAttrData.isProtected()?1:0}"q`:e==='"p'?'P1$r61;1"p':e==="r"?`P1$r${r.scrollTop+1};${r.scrollBottom+1}r`:e==="m"?"P1$r0m":e===" q"?`P1$r${{block:2,underline:4,bar:6}[i.cursorStyle]-(i.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(e,t){this._dirtyRowTracker.markRangeDirty(e,t)}},I$=class{constructor(e){this._bufferService=e,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(e){e<this.start?this.start=e:e>this.end&&(this.end=e)}markRangeDirty(e,t){e>t&&(Voe=e,e=t,t=Voe),e<this.start&&(this.start=e),t>this.end&&(this.end=t)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};I$=Ea([Zt(0,Xo)],I$);function Woe(e){return 0<=e&&e<256}var gvt=5e7,qoe=12,bvt=50,yvt=class extends or{constructor(e){super(),this._action=e,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this._register(new $t),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(e,t){if(t!==void 0&&this._syncCalls>t){this._syncCalls=0;return}if(this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;this._isSyncWriting=!0;let n;for(;n=this._writeBuffer.shift();){this._action(n);let r=this._callbacks.shift();r&&r()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(e,t){if(this._pendingData>gvt)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput){this._didUserInput=!1,this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t),this._innerWrite();return}setTimeout(()=>this._innerWrite())}this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t)}_innerWrite(e=0,t=!0){let n=e||performance.now();for(;this._writeBuffer.length>this._bufferOffset;){let r=this._writeBuffer[this._bufferOffset],i=this._action(r,t);if(i){let s=o=>performance.now()-n>=qoe?setTimeout(()=>this._innerWrite(0,o)):this._innerWrite(n,o);i.catch(o=>(queueMicrotask(()=>{throw o}),Promise.resolve(!1))).then(s);return}let a=this._callbacks[this._bufferOffset];if(a&&a(),this._bufferOffset++,this._pendingData-=r.length,performance.now()-n>=qoe)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>bvt&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}},D$=class{constructor(e){this._bufferService=e,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(e){let t=this._bufferService.buffer;if(e.id===void 0){let o=t.addMarker(t.ybase+t.y),l={data:e,id:this._nextId++,lines:[o]};return o.onDispose(()=>this._removeMarkerFromLink(l,o)),this._dataByLinkId.set(l.id,l),l.id}let n=e,r=this._getEntryIdKey(n),i=this._entriesWithId.get(r);if(i)return this.addLineToLink(i.id,t.ybase+t.y),i.id;let a=t.addMarker(t.ybase+t.y),s={id:this._nextId++,key:this._getEntryIdKey(n),data:n,lines:[a]};return a.onDispose(()=>this._removeMarkerFromLink(s,a)),this._entriesWithId.set(s.key,s),this._dataByLinkId.set(s.id,s),s.id}addLineToLink(e,t){let n=this._dataByLinkId.get(e);if(n&&n.lines.every(r=>r.line!==t)){let r=this._bufferService.buffer.addMarker(t);n.lines.push(r),r.onDispose(()=>this._removeMarkerFromLink(n,r))}}getLinkData(e){return this._dataByLinkId.get(e)?.data}_getEntryIdKey(e){return`${e.id};;${e.uri}`}_removeMarkerFromLink(e,t){let n=e.lines.indexOf(t);n!==-1&&(e.lines.splice(n,1),e.lines.length===0&&(e.data.id!==void 0&&this._entriesWithId.delete(e.key),this._dataByLinkId.delete(e.id)))}};D$=Ea([Zt(0,Xo)],D$);var Goe=!1,vvt=class extends or{constructor(e){super(),this._windowsWrappingHeuristics=this._register(new F0),this._onBinary=this._register(new $t),this.onBinary=this._onBinary.event,this._onData=this._register(new $t),this.onData=this._onData.event,this._onLineFeed=this._register(new $t),this.onLineFeed=this._onLineFeed.event,this._onResize=this._register(new $t),this.onResize=this._onResize.event,this._onWriteParsed=this._register(new $t),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this._register(new $t),this._instantiationService=new Hyt,this.optionsService=this._register(new Jyt(e)),this._instantiationService.setService(Zo,this.optionsService),this._bufferService=this._register(this._instantiationService.createInstance(A$)),this._instantiationService.setService(Xo,this._bufferService),this._logService=this._register(this._instantiationService.createInstance(T$)),this._instantiationService.setService(bke,this._logService),this.coreService=this._register(this._instantiationService.createInstance(N$)),this._instantiationService.setService(xy,this.coreService),this.coreMouseService=this._register(this._instantiationService.createInstance(O$)),this._instantiationService.setService(gke,this.coreMouseService),this.unicodeService=this._register(this._instantiationService.createInstance(eb)),this._instantiationService.setService(Bgt,this.unicodeService),this._charsetService=this._instantiationService.createInstance(ivt),this._instantiationService.setService(Fgt,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(D$),this._instantiationService.setService(yke,this._oscLinkService),this._inputHandler=this._register(new mvt(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this._register(Zs.forward(this._inputHandler.onLineFeed,this._onLineFeed)),this._register(this._inputHandler),this._register(Zs.forward(this._bufferService.onResize,this._onResize)),this._register(Zs.forward(this.coreService.onData,this._onData)),this._register(Zs.forward(this.coreService.onBinary,this._onBinary)),this._register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom(!0))),this._register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this._register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this._register(this._bufferService.onScroll(()=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this._register(new yvt((t,n)=>this._inputHandler.parse(t,n))),this._register(Zs.forward(this._writeBuffer.onWriteParsed,this._onWriteParsed))}get onScroll(){return this._onScrollApi||(this._onScrollApi=this._register(new $t),this._onScroll.event(e=>{this._onScrollApi?.fire(e.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(e){for(let t in e)this.optionsService.options[t]=e[t]}write(e,t){this._writeBuffer.write(e,t)}writeSync(e,t){this._logService.logLevel<=3&&!Goe&&(this._logService.warn("writeSync is unreliable and will be removed soon."),Goe=!0),this._writeBuffer.writeSync(e,t)}input(e,t=!0){this.coreService.triggerDataEvent(e,t)}resize(e,t){isNaN(e)||isNaN(t)||(e=Math.max(e,Xke),t=Math.max(t,Zke),this._bufferService.resize(e,t))}scroll(e,t=!1){this._bufferService.scroll(e,t)}scrollLines(e,t){this._bufferService.scrollLines(e,t)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(e){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){let t=e-this._bufferService.buffer.ydisp;t!==0&&this.scrollLines(t)}registerEscHandler(e,t){return this._inputHandler.registerEscHandler(e,t)}registerDcsHandler(e,t){return this._inputHandler.registerDcsHandler(e,t)}registerCsiHandler(e,t){return this._inputHandler.registerCsiHandler(e,t)}registerOscHandler(e,t){return this._inputHandler.registerOscHandler(e,t)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let e=!1,t=this.optionsService.rawOptions.windowsPty;t&&t.buildNumber!==void 0&&t.buildNumber!==void 0?e=t.backend==="conpty"&&t.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(e=!0),e?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){let e=[];e.push(this.onLineFeed(Foe.bind(null,this._bufferService))),e.push(this.registerCsiHandler({final:"H"},()=>(Foe(this._bufferService),!1))),this._windowsWrappingHeuristics.value=ta(()=>{for(let t of e)t.dispose()})}}},xvt={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};function _vt(e,t,n,r){let i={type:0,cancel:!1,key:void 0},a=(e.shiftKey?1:0)|(e.altKey?2:0)|(e.ctrlKey?4:0)|(e.metaKey?8:0);switch(e.keyCode){case 0:e.key==="UIKeyInputUpArrow"?t?i.key=yt.ESC+"OA":i.key=yt.ESC+"[A":e.key==="UIKeyInputLeftArrow"?t?i.key=yt.ESC+"OD":i.key=yt.ESC+"[D":e.key==="UIKeyInputRightArrow"?t?i.key=yt.ESC+"OC":i.key=yt.ESC+"[C":e.key==="UIKeyInputDownArrow"&&(t?i.key=yt.ESC+"OB":i.key=yt.ESC+"[B");break;case 8:i.key=e.ctrlKey?"\b":yt.DEL,e.altKey&&(i.key=yt.ESC+i.key);break;case 9:if(e.shiftKey){i.key=yt.ESC+"[Z";break}i.key=yt.HT,i.cancel=!0;break;case 13:i.key=e.altKey?yt.ESC+yt.CR:yt.CR,i.cancel=!0;break;case 27:i.key=yt.ESC,e.altKey&&(i.key=yt.ESC+yt.ESC),i.cancel=!0;break;case 37:if(e.metaKey)break;a?i.key=yt.ESC+"[1;"+(a+1)+"D":t?i.key=yt.ESC+"OD":i.key=yt.ESC+"[D";break;case 39:if(e.metaKey)break;a?i.key=yt.ESC+"[1;"+(a+1)+"C":t?i.key=yt.ESC+"OC":i.key=yt.ESC+"[C";break;case 38:if(e.metaKey)break;a?i.key=yt.ESC+"[1;"+(a+1)+"A":t?i.key=yt.ESC+"OA":i.key=yt.ESC+"[A";break;case 40:if(e.metaKey)break;a?i.key=yt.ESC+"[1;"+(a+1)+"B":t?i.key=yt.ESC+"OB":i.key=yt.ESC+"[B";break;case 45:!e.shiftKey&&!e.ctrlKey&&(i.key=yt.ESC+"[2~");break;case 46:a?i.key=yt.ESC+"[3;"+(a+1)+"~":i.key=yt.ESC+"[3~";break;case 36:a?i.key=yt.ESC+"[1;"+(a+1)+"H":t?i.key=yt.ESC+"OH":i.key=yt.ESC+"[H";break;case 35:a?i.key=yt.ESC+"[1;"+(a+1)+"F":t?i.key=yt.ESC+"OF":i.key=yt.ESC+"[F";break;case 33:e.shiftKey?i.type=2:e.ctrlKey?i.key=yt.ESC+"[5;"+(a+1)+"~":i.key=yt.ESC+"[5~";break;case 34:e.shiftKey?i.type=3:e.ctrlKey?i.key=yt.ESC+"[6;"+(a+1)+"~":i.key=yt.ESC+"[6~";break;case 112:a?i.key=yt.ESC+"[1;"+(a+1)+"P":i.key=yt.ESC+"OP";break;case 113:a?i.key=yt.ESC+"[1;"+(a+1)+"Q":i.key=yt.ESC+"OQ";break;case 114:a?i.key=yt.ESC+"[1;"+(a+1)+"R":i.key=yt.ESC+"OR";break;case 115:a?i.key=yt.ESC+"[1;"+(a+1)+"S":i.key=yt.ESC+"OS";break;case 116:a?i.key=yt.ESC+"[15;"+(a+1)+"~":i.key=yt.ESC+"[15~";break;case 117:a?i.key=yt.ESC+"[17;"+(a+1)+"~":i.key=yt.ESC+"[17~";break;case 118:a?i.key=yt.ESC+"[18;"+(a+1)+"~":i.key=yt.ESC+"[18~";break;case 119:a?i.key=yt.ESC+"[19;"+(a+1)+"~":i.key=yt.ESC+"[19~";break;case 120:a?i.key=yt.ESC+"[20;"+(a+1)+"~":i.key=yt.ESC+"[20~";break;case 121:a?i.key=yt.ESC+"[21;"+(a+1)+"~":i.key=yt.ESC+"[21~";break;case 122:a?i.key=yt.ESC+"[23;"+(a+1)+"~":i.key=yt.ESC+"[23~";break;case 123:a?i.key=yt.ESC+"[24;"+(a+1)+"~":i.key=yt.ESC+"[24~";break;default:if(e.ctrlKey&&!e.shiftKey&&!e.altKey&&!e.metaKey)e.keyCode>=65&&e.keyCode<=90?i.key=String.fromCharCode(e.keyCode-64):e.keyCode===32?i.key=yt.NUL:e.keyCode>=51&&e.keyCode<=55?i.key=String.fromCharCode(e.keyCode-51+27):e.keyCode===56?i.key=yt.DEL:e.keyCode===219?i.key=yt.ESC:e.keyCode===220?i.key=yt.FS:e.keyCode===221&&(i.key=yt.GS);else if((!n||r)&&e.altKey&&!e.metaKey){let s=xvt[e.keyCode]?.[e.shiftKey?1:0];if(s)i.key=yt.ESC+s;else if(e.keyCode>=65&&e.keyCode<=90){let o=e.ctrlKey?e.keyCode-64:e.keyCode+32,l=String.fromCharCode(o);e.shiftKey&&(l=l.toUpperCase()),i.key=yt.ESC+l}else if(e.keyCode===32)i.key=yt.ESC+(e.ctrlKey?yt.NUL:" ");else if(e.key==="Dead"&&e.code.startsWith("Key")){let o=e.code.slice(3,4);e.shiftKey||(o=o.toLowerCase()),i.key=yt.ESC+o,i.cancel=!0}}else n&&!e.altKey&&!e.ctrlKey&&!e.shiftKey&&e.metaKey?e.keyCode===65&&(i.type=1):e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.keyCode>=48&&e.key.length===1?i.key=e.key:e.key&&e.ctrlKey&&(e.key==="_"&&(i.key=yt.US),e.key==="@"&&(i.key=yt.NUL));break}return i}var Oa=0,Svt=class{constructor(e){this._getKey=e,this._array=[],this._insertedValues=[],this._flushInsertedTask=new fO,this._isFlushingInserted=!1,this._deletedIndices=[],this._flushDeletedTask=new fO,this._isFlushingDeleted=!1}clear(){this._array.length=0,this._insertedValues.length=0,this._flushInsertedTask.clear(),this._isFlushingInserted=!1,this._deletedIndices.length=0,this._flushDeletedTask.clear(),this._isFlushingDeleted=!1}insert(e){this._flushCleanupDeleted(),this._insertedValues.length===0&&this._flushInsertedTask.enqueue(()=>this._flushInserted()),this._insertedValues.push(e)}_flushInserted(){let e=this._insertedValues.sort((i,a)=>this._getKey(i)-this._getKey(a)),t=0,n=0,r=new Array(this._array.length+this._insertedValues.length);for(let i=0;i<r.length;i++)n>=this._array.length||this._getKey(e[t])<=this._getKey(this._array[n])?(r[i]=e[t],t++):r[i]=this._array[n++];this._array=r,this._insertedValues.length=0}_flushCleanupInserted(){!this._isFlushingInserted&&this._insertedValues.length>0&&this._flushInsertedTask.flush()}delete(e){if(this._flushCleanupInserted(),this._array.length===0)return!1;let t=this._getKey(e);if(t===void 0||(Oa=this._search(t),Oa===-1)||this._getKey(this._array[Oa])!==t)return!1;do if(this._array[Oa]===e)return this._deletedIndices.length===0&&this._flushDeletedTask.enqueue(()=>this._flushDeleted()),this._deletedIndices.push(Oa),!0;while(++Oa<this._array.length&&this._getKey(this._array[Oa])===t);return!1}_flushDeleted(){this._isFlushingDeleted=!0;let e=this._deletedIndices.sort((i,a)=>i-a),t=0,n=new Array(this._array.length-e.length),r=0;for(let i=0;i<this._array.length;i++)e[t]===i?t++:n[r++]=this._array[i];this._array=n,this._deletedIndices.length=0,this._isFlushingDeleted=!1}_flushCleanupDeleted(){!this._isFlushingDeleted&&this._deletedIndices.length>0&&this._flushDeletedTask.flush()}*getKeyIterator(e){if(this._flushCleanupInserted(),this._flushCleanupDeleted(),this._array.length!==0&&(Oa=this._search(e),!(Oa<0||Oa>=this._array.length)&&this._getKey(this._array[Oa])===e))do yield this._array[Oa];while(++Oa<this._array.length&&this._getKey(this._array[Oa])===e)}forEachByKey(e,t){if(this._flushCleanupInserted(),this._flushCleanupDeleted(),this._array.length!==0&&(Oa=this._search(e),!(Oa<0||Oa>=this._array.length)&&this._getKey(this._array[Oa])===e))do t(this._array[Oa]);while(++Oa<this._array.length&&this._getKey(this._array[Oa])===e)}values(){return this._flushCleanupInserted(),this._flushCleanupDeleted(),[...this._array].values()}_search(e){let t=0,n=this._array.length-1;for(;n>=t;){let r=t+n>>1,i=this._getKey(this._array[r]);if(i>e)n=r-1;else if(i<e)t=r+1;else{for(;r>0&&this._getKey(this._array[r-1])===e;)r--;return r}}return t}},e6=0,Koe=0,wvt=class extends or{constructor(){super(),this._decorations=new Svt(e=>e?.marker.line),this._onDecorationRegistered=this._register(new $t),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this._register(new $t),this.onDecorationRemoved=this._onDecorationRemoved.event,this._register(ta(()=>this.reset()))}get decorations(){return this._decorations.values()}registerDecoration(e){if(e.marker.isDisposed)return;let t=new Evt(e);if(t){let n=t.marker.onDispose(()=>t.dispose()),r=t.onDispose(()=>{r.dispose(),t&&(this._decorations.delete(t)&&this._onDecorationRemoved.fire(t),n.dispose())});this._decorations.insert(t),this._onDecorationRegistered.fire(t)}return t}reset(){for(let e of this._decorations.values())e.dispose();this._decorations.clear()}*getDecorationsAtCell(e,t,n){let r=0,i=0;for(let a of this._decorations.getKeyIterator(t))r=a.options.x??0,i=r+(a.options.width??1),e>=r&&e<i&&(!n||(a.options.layer??"bottom")===n)&&(yield a)}forEachDecorationAtCell(e,t,n,r){this._decorations.forEachByKey(t,i=>{e6=i.options.x??0,Koe=e6+(i.options.width??1),e>=e6&&e<Koe&&(!n||(i.options.layer??"bottom")===n)&&r(i)})}},Evt=class extends _m{constructor(e){super(),this.options=e,this.onRenderEmitter=this.add(new $t),this.onRender=this.onRenderEmitter.event,this._onDispose=this.add(new $t),this.onDispose=this._onDispose.event,this._cachedBg=null,this._cachedFg=null,this.marker=e.marker,this.options.overviewRulerOptions&&!this.options.overviewRulerOptions.position&&(this.options.overviewRulerOptions.position="full")}get backgroundColorRGB(){return this._cachedBg===null&&(this.options.backgroundColor?this._cachedBg=aa.toColor(this.options.backgroundColor):this._cachedBg=void 0),this._cachedBg}get foregroundColorRGB(){return this._cachedFg===null&&(this.options.foregroundColor?this._cachedFg=aa.toColor(this.options.foregroundColor):this._cachedFg=void 0),this._cachedFg}dispose(){this._onDispose.fire(),super.dispose()}},Cvt=1e3,kvt=class{constructor(e,t=Cvt){this._renderCallback=e,this._debounceThresholdMS=t,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(e,t,n){this._rowCount=n,e=e!==void 0?e:0,t=t!==void 0?t:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,e):e,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,t):t;let r=performance.now();if(r-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=r,this._innerRefresh();else if(!this._additionalRefreshRequested){let i=r-this._lastRefreshMs,a=this._debounceThresholdMS-i;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=performance.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},a)}}_innerRefresh(){if(this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return;let e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t)}},Yoe=20,hO=class extends or{constructor(e,t,n,r){super(),this._terminal=e,this._coreBrowserService=n,this._renderService=r,this._rowColumns=new WeakMap,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="";let i=this._coreBrowserService.mainDocument;this._accessibilityContainer=i.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=i.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let a=0;a<this._terminal.rows;a++)this._rowElements[a]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[a]);if(this._topBoundaryFocusListener=a=>this._handleBoundaryFocus(a,0),this._bottomBoundaryFocusListener=a=>this._handleBoundaryFocus(a,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=i.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this._register(new kvt(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this._register(this._terminal.onResize(a=>this._handleResize(a.rows))),this._register(this._terminal.onRender(a=>this._refreshRows(a.start,a.end))),this._register(this._terminal.onScroll(()=>this._refreshRows())),this._register(this._terminal.onA11yChar(a=>this._handleChar(a))),this._register(this._terminal.onLineFeed(()=>this._handleChar(`
|
|
113
113
|
`))),this._register(this._terminal.onA11yTab(a=>this._handleTab(a))),this._register(this._terminal.onKey(a=>this._handleKey(a.key))),this._register(this._terminal.onBlur(()=>this._clearLiveRegion())),this._register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this._register(Mn(i,"selectionchange",()=>this._handleSelectionChange())),this._register(this._coreBrowserService.onDprChange(()=>this._refreshRowsDimensions())),this._refreshRowsDimensions(),this._refreshRows(),this._register(ta(()=>{this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(e){for(let t=0;t<e;t++)this._handleChar(" ")}_handleChar(e){this._liveRegionLineCount<Yoe+1&&(this._charsToConsume.length>0?this._charsToConsume.shift()!==e&&(this._charsToAnnounce+=e):this._charsToAnnounce+=e,e===`
|
|
114
114
|
`&&(this._liveRegionLineCount++,this._liveRegionLineCount===Yoe+1&&(this._liveRegion.textContent+=JB.get())))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0}_handleKey(e){this._clearLiveRegion(),new RegExp("\\p{Control}","u").test(e)||this._charsToConsume.push(e)}_refreshRows(e,t){this._liveRegionDebouncer.refresh(e,t,this._terminal.rows)}_renderRows(e,t){let n=this._terminal.buffer,r=n.lines.length.toString();for(let i=e;i<=t;i++){let a=n.lines.get(n.ydisp+i),s=[],o=a?.translateToString(!0,void 0,void 0,s)||"",l=(n.ydisp+i+1).toString(),u=this._rowElements[i];u&&(o.length===0?(u.textContent=" ",this._rowColumns.set(u,[0,1])):(u.textContent=o,this._rowColumns.set(u,s)),u.setAttribute("aria-posinset",l),u.setAttribute("aria-setsize",r),this._alignRowWidth(u))}this._announceCharacters()}_announceCharacters(){this._charsToAnnounce.length!==0&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(e,t){let n=e.target,r=this._rowElements[t===0?1:this._rowElements.length-2],i=n.getAttribute("aria-posinset"),a=t===0?"1":`${this._terminal.buffer.lines.length}`;if(i===a||e.relatedTarget!==r)return;let s,o;if(t===0?(s=n,o=this._rowElements.pop(),this._rowContainer.removeChild(o)):(s=this._rowElements.shift(),o=n,this._rowContainer.removeChild(s)),s.removeEventListener("focus",this._topBoundaryFocusListener),o.removeEventListener("focus",this._bottomBoundaryFocusListener),t===0){let l=this._createAccessibilityTreeNode();this._rowElements.unshift(l),this._rowContainer.insertAdjacentElement("afterbegin",l)}else{let l=this._createAccessibilityTreeNode();this._rowElements.push(l),this._rowContainer.appendChild(l)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(t===0?-1:1),this._rowElements[t===0?1:this._rowElements.length-2].focus(),e.preventDefault(),e.stopImmediatePropagation()}_handleSelectionChange(){if(this._rowElements.length===0)return;let e=this._coreBrowserService.mainDocument.getSelection();if(!e)return;if(e.isCollapsed){this._rowContainer.contains(e.anchorNode)&&this._terminal.clearSelection();return}if(!e.anchorNode||!e.focusNode){console.error("anchorNode and/or focusNode are null");return}let t={node:e.anchorNode,offset:e.anchorOffset},n={node:e.focusNode,offset:e.focusOffset};if((t.node.compareDocumentPosition(n.node)&Node.DOCUMENT_POSITION_PRECEDING||t.node===n.node&&t.offset>n.offset)&&([t,n]=[n,t]),t.node.compareDocumentPosition(this._rowElements[0])&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_FOLLOWING)&&(t={node:this._rowElements[0].childNodes[0],offset:0}),!this._rowContainer.contains(t.node))return;let r=this._rowElements.slice(-1)[0];if(n.node.compareDocumentPosition(r)&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_PRECEDING)&&(n={node:r,offset:r.textContent?.length??0}),!this._rowContainer.contains(n.node))return;let i=({node:o,offset:l})=>{let u=o instanceof Text?o.parentNode:o,d=parseInt(u?.getAttribute("aria-posinset"),10)-1;if(isNaN(d))return console.warn("row is invalid. Race condition?"),null;let f=this._rowColumns.get(u);if(!f)return console.warn("columns is null. Race condition?"),null;let p=l<f.length?f[l]:f.slice(-1)[0]+1;return p>=this._terminal.cols&&(++d,p=0),{row:d,column:p}},a=i(t),s=i(n);if(!(!a||!s)){if(a.row>s.row||a.row===s.row&&a.column>=s.column)throw new Error("invalid range");this._terminal.select(a.column,a.row,(s.row-a.row)*this._terminal.cols-a.column+s.column)}}_handleResize(e){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let t=this._rowContainer.children.length;t<this._terminal.rows;t++)this._rowElements[t]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[t]);for(;this._rowElements.length>e;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){let e=this._coreBrowserService.mainDocument.createElement("div");return e.setAttribute("role","listitem"),e.tabIndex=-1,this._refreshRowDimensions(e),e}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){Object.assign(this._accessibilityContainer.style,{width:`${this._renderService.dimensions.css.canvas.width}px`,fontSize:`${this._terminal.options.fontSize}px`}),this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let e=0;e<this._terminal.rows;e++)this._refreshRowDimensions(this._rowElements[e]),this._alignRowWidth(this._rowElements[e])}}_refreshRowDimensions(e){e.style.height=`${this._renderService.dimensions.css.cell.height}px`}_alignRowWidth(e){e.style.transform="";let t=e.getBoundingClientRect().width,n=this._rowColumns.get(e)?.slice(-1)?.[0];if(!n)return;let r=n*this._renderService.dimensions.css.cell.width;e.style.transform=`scaleX(${r/t})`}};hO=Ea([Zt(1,sX),Zt(2,Jh),Zt(3,ep)],hO);var P$=class extends or{constructor(e,t,n,r,i){super(),this._element=e,this._mouseService=t,this._renderService=n,this._bufferService=r,this._linkProviderService=i,this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this._register(new $t),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this._register(new $t),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this._register(ta(()=>{zb(this._linkCacheDisposables),this._linkCacheDisposables.length=0,this._lastMouseEvent=void 0,this._activeProviderReplies?.clear()})),this._register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0})),this._register(Mn(this._element,"mouseleave",()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this._register(Mn(this._element,"mousemove",this._handleMouseMove.bind(this))),this._register(Mn(this._element,"mousedown",this._handleMouseDown.bind(this))),this._register(Mn(this._element,"mouseup",this._handleMouseUp.bind(this)))}get currentLink(){return this._currentLink}_handleMouseMove(e){this._lastMouseEvent=e;let t=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!t)return;this._isMouseOut=!1;let n=e.composedPath();for(let r=0;r<n.length;r++){let i=n[r];if(i.classList.contains("xterm"))break;if(i.classList.contains("xterm-hover"))return}(!this._lastBufferCell||t.x!==this._lastBufferCell.x||t.y!==this._lastBufferCell.y)&&(this._handleHover(t),this._lastBufferCell=t)}_handleHover(e){if(this._activeLine!==e.y||this._wasResized){this._clearCurrentLink(),this._askForLink(e,!1),this._wasResized=!1;return}this._currentLink&&this._linkAtPosition(this._currentLink.link,e)||(this._clearCurrentLink(),this._askForLink(e,!0))}_askForLink(e,t){(!this._activeProviderReplies||!t)&&(this._activeProviderReplies?.forEach(r=>{r?.forEach(i=>{i.link.dispose&&i.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let n=!1;for(let[r,i]of this._linkProviderService.linkProviders.entries())t?this._activeProviderReplies?.get(r)&&(n=this._checkLinkProviderResult(r,e,n)):i.provideLinks(e.y,a=>{if(this._isMouseOut)return;let s=a?.map(o=>({link:o}));this._activeProviderReplies?.set(r,s),n=this._checkLinkProviderResult(r,e,n),this._activeProviderReplies?.size===this._linkProviderService.linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,t){let n=new Set;for(let r=0;r<t.size;r++){let i=t.get(r);if(i)for(let a=0;a<i.length;a++){let s=i[a],o=s.link.range.start.y<e?0:s.link.range.start.x,l=s.link.range.end.y>e?this._bufferService.cols:s.link.range.end.x;for(let u=o;u<=l;u++){if(n.has(u)){i.splice(a--,1);break}n.add(u)}}}}_checkLinkProviderResult(e,t,n){if(!this._activeProviderReplies)return n;let r=this._activeProviderReplies.get(e),i=!1;for(let a=0;a<e;a++)(!this._activeProviderReplies.has(a)||this._activeProviderReplies.get(a))&&(i=!0);if(!i&&r){let a=r.find(s=>this._linkAtPosition(s.link,t));a&&(n=!0,this._handleNewLink(a))}if(this._activeProviderReplies.size===this._linkProviderService.linkProviders.length&&!n)for(let a=0;a<this._activeProviderReplies.size;a++){let s=this._activeProviderReplies.get(a)?.find(o=>this._linkAtPosition(o.link,t));if(s){n=!0,this._handleNewLink(s);break}}return n}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._currentLink)return;let t=this._positionFromMouseEvent(e,this._element,this._mouseService);t&&this._mouseDownLink&&Tvt(this._mouseDownLink.link,this._currentLink.link)&&this._linkAtPosition(this._currentLink.link,t)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,t){!this._currentLink||!this._lastMouseEvent||(!e||!t||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=t)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,zb(this._linkCacheDisposables),this._linkCacheDisposables.length=0)}_handleNewLink(e){if(!this._lastMouseEvent)return;let t=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);t&&this._linkAtPosition(e.link,t)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:e.link.decorations===void 0?!0:e.link.decorations.underline,pointerCursor:e.link.decorations===void 0?!0:e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>this._currentLink?.state?.decorations.pointerCursor,set:n=>{this._currentLink?.state&&this._currentLink.state.decorations.pointerCursor!==n&&(this._currentLink.state.decorations.pointerCursor=n,this._currentLink.state.isHovered&&this._element.classList.toggle("xterm-cursor-pointer",n))}},underline:{get:()=>this._currentLink?.state?.decorations.underline,set:n=>{this._currentLink?.state&&this._currentLink?.state?.decorations.underline!==n&&(this._currentLink.state.decorations.underline=n,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,n))}}}),this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(n=>{if(!this._currentLink)return;let r=n.start===0?0:n.start+1+this._bufferService.buffer.ydisp,i=this._bufferService.buffer.ydisp+1+n.end;if(this._currentLink.link.range.start.y>=r&&this._currentLink.link.range.end.y<=i&&(this._clearCurrentLink(r,i),this._lastMouseEvent)){let a=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);a&&this._askForLink(a,!1)}})))}_linkHover(e,t,n){this._currentLink?.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add("xterm-cursor-pointer")),t.hover&&t.hover(n,t.text)}_fireUnderlineEvent(e,t){let n=e.range,r=this._bufferService.buffer.ydisp,i=this._createLinkUnderlineEvent(n.start.x-1,n.start.y-r-1,n.end.x,n.end.y-r-1,void 0);(t?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(i)}_linkLeave(e,t,n){this._currentLink?.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove("xterm-cursor-pointer")),t.leave&&t.leave(n,t.text)}_linkAtPosition(e,t){let n=e.range.start.y*this._bufferService.cols+e.range.start.x,r=e.range.end.y*this._bufferService.cols+e.range.end.x,i=t.y*this._bufferService.cols+t.x;return n<=i&&i<=r}_positionFromMouseEvent(e,t,n){let r=n.getCoords(e,t,this._bufferService.cols,this._bufferService.rows);if(r)return{x:r[0],y:r[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,t,n,r,i){return{x1:e,y1:t,x2:n,y2:r,cols:this._bufferService.cols,fg:i}}};P$=Ea([Zt(1,oX),Zt(2,ep),Zt(3,Xo),Zt(4,xke)],P$);function Tvt(e,t){return e.text===t.text&&e.range.start.x===t.range.start.x&&e.range.start.y===t.range.start.y&&e.range.end.x===t.range.end.x&&e.range.end.y===t.range.end.y}var Avt=class extends vvt{constructor(e={}){super(e),this._linkifier=this._register(new F0),this.browser=Bke,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this._register(new F0),this._onCursorMove=this._register(new $t),this.onCursorMove=this._onCursorMove.event,this._onKey=this._register(new $t),this.onKey=this._onKey.event,this._onRender=this._register(new $t),this.onRender=this._onRender.event,this._onSelectionChange=this._register(new $t),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this._register(new $t),this.onTitleChange=this._onTitleChange.event,this._onBell=this._register(new $t),this.onBell=this._onBell.event,this._onFocus=this._register(new $t),this._onBlur=this._register(new $t),this._onA11yCharEmitter=this._register(new $t),this._onA11yTabEmitter=this._register(new $t),this._onWillOpen=this._register(new $t),this._setup(),this._decorationService=this._instantiationService.createInstance(wvt),this._instantiationService.setService(u2,this._decorationService),this._linkProviderService=this._instantiationService.createInstance(byt),this._instantiationService.setService(xke,this._linkProviderService),this._linkProviderService.registerLinkProvider(this._instantiationService.createInstance(t$)),this._register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this._register(this._inputHandler.onRequestRefreshRows(t=>this.refresh(t?.start??0,t?.end??this.rows-1))),this._register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this._register(this._inputHandler.onRequestReset(()=>this.reset())),this._register(this._inputHandler.onRequestWindowsOptionsReport(t=>this._reportWindowsOptions(t))),this._register(this._inputHandler.onColor(t=>this._handleColorEvent(t))),this._register(Zs.forward(this._inputHandler.onCursorMove,this._onCursorMove)),this._register(Zs.forward(this._inputHandler.onTitleChange,this._onTitleChange)),this._register(Zs.forward(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this._register(Zs.forward(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this._register(this._bufferService.onResize(t=>this._afterResize(t.cols,t.rows))),this._register(ta(()=>{this._customKeyEventHandler=void 0,this.element?.parentNode?.removeChild(this.element)}))}get linkifier(){return this._linkifier.value}get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}_handleColorEvent(e){if(this._themeService)for(let t of e){let n,r="";switch(t.index){case 256:n="foreground",r="10";break;case 257:n="background",r="11";break;case 258:n="cursor",r="12";break;default:n="ansi",r="4;"+t.index}switch(t.type){case 0:let i=Ui.toColorRGB(n==="ansi"?this._themeService.colors.ansi[t.index]:this._themeService.colors[n]);this.coreService.triggerDataEvent(`${yt.ESC}]${r};${hvt(i)}${Mke.ST}`);break;case 1:if(n==="ansi")this._themeService.modifyColors(a=>a.ansi[t.index]=Ha.toColor(...t.color));else{let a=n;this._themeService.modifyColors(s=>s[a]=Ha.toColor(...t.color))}break;case 2:this._themeService.restoreColor(t.index);break}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(e){e?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(hO,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(e){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(yt.ESC+"[I"),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){return this.textarea?.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(yt.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;let e=this.buffer.ybase+this.buffer.y,t=this.buffer.lines.get(e);if(!t)return;let n=Math.min(this.buffer.x,this.cols-1),r=this._renderService.dimensions.css.cell.height,i=t.getWidth(n),a=this._renderService.dimensions.css.cell.width*i,s=this.buffer.y*this._renderService.dimensions.css.cell.height,o=n*this._renderService.dimensions.css.cell.width;this.textarea.style.left=o+"px",this.textarea.style.top=s+"px",this.textarea.style.width=a+"px",this.textarea.style.height=r+"px",this.textarea.style.lineHeight=r+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this._register(Mn(this.element,"copy",t=>{this.hasSelection()&&Igt(t,this._selectionService)}));let e=t=>Dgt(t,this.textarea,this.coreService,this.optionsService);this._register(Mn(this.textarea,"paste",e)),this._register(Mn(this.element,"paste",e)),$ke?this._register(Mn(this.element,"mousedown",t=>{t.button===2&&aoe(t,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this._register(Mn(this.element,"contextmenu",t=>{aoe(t,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),mX&&this._register(Mn(this.element,"auxclick",t=>{t.button===1&&dke(t,this.textarea,this.screenElement)}))}_bindKeys(){this._register(Mn(this.textarea,"keyup",e=>this._keyUp(e),!0)),this._register(Mn(this.textarea,"keydown",e=>this._keyDown(e),!0)),this._register(Mn(this.textarea,"keypress",e=>this._keyPress(e),!0)),this._register(Mn(this.textarea,"compositionstart",()=>this._compositionHelper.compositionstart())),this._register(Mn(this.textarea,"compositionupdate",e=>this._compositionHelper.compositionupdate(e))),this._register(Mn(this.textarea,"compositionend",()=>this._compositionHelper.compositionend())),this._register(Mn(this.textarea,"input",e=>this._inputEvent(e),!0)),this._register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(e){if(!e)throw new Error("Terminal requires a parent element.");if(e.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),this.element?.ownerDocument.defaultView&&this._coreBrowserService){this.element.ownerDocument.defaultView!==this._coreBrowserService.window&&(this._coreBrowserService.window=this.element.ownerDocument.defaultView);return}this._document=e.ownerDocument,this.options.documentOverride&&this.options.documentOverride instanceof Document&&(this._document=this.optionsService.rawOptions.documentOverride),this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),e.appendChild(this.element);let t=this._document.createDocumentFragment();this._viewportElement=this._document.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),t.appendChild(this._viewportElement),this.screenElement=this._document.createElement("div"),this.screenElement.classList.add("xterm-screen"),this._register(Mn(this.screenElement,"mousemove",i=>this.updateCursorStyle(i))),this._helperContainer=this._document.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),t.appendChild(this.screenElement);let n=this.textarea=this._document.createElement("textarea");this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",QB.get()),Hke||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._register(this.optionsService.onSpecificOptionChange("disableStdin",()=>n.readOnly=this.optionsService.rawOptions.disableStdin)),this.textarea.readOnly=this.optionsService.rawOptions.disableStdin,this._coreBrowserService=this._register(this._instantiationService.createInstance(myt,this.textarea,e.ownerDocument.defaultView??window,this._document??typeof window<"u"?window.document:null)),this._instantiationService.setService(Jh,this._coreBrowserService),this._register(Mn(this.textarea,"focus",i=>this._handleTextAreaFocus(i))),this._register(Mn(this.textarea,"blur",()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(S$,this._document,this._helperContainer),this._instantiationService.setService(Q3,this._charSizeService),this._themeService=this._instantiationService.createInstance(k$),this._instantiationService.setService(l1,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(cO),this._instantiationService.setService(vke,this._characterJoinerService),this._renderService=this._register(this._instantiationService.createInstance(E$,this.rows,this.screenElement)),this._instantiationService.setService(ep,this._renderService),this._register(this._renderService.onRenderedViewportChange(i=>this._onRender.fire(i))),this.onResize(i=>this._renderService.resize(i.cols,i.rows)),this._compositionView=this._document.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(v$,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this._mouseService=this._instantiationService.createInstance(w$),this._instantiationService.setService(oX,this._mouseService);let r=this._linkifier.value=this._register(this._instantiationService.createInstance(P$,this.screenElement));this.element.appendChild(t);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this._register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this._register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this._register(this.onBlur(()=>this._renderService.handleBlur())),this._register(this.onFocus(()=>this._renderService.handleFocus())),this._viewport=this._register(this._instantiationService.createInstance(b$,this.element,this.screenElement)),this._register(this._viewport.onRequestScrollLines(i=>{super.scrollLines(i,!1),this.refresh(0,this.rows-1)})),this._selectionService=this._register(this._instantiationService.createInstance(C$,this.element,this.screenElement,r)),this._instantiationService.setService(Ugt,this._selectionService),this._register(this._selectionService.onRequestScrollLines(i=>this.scrollLines(i.amount,i.suppressScrollEvent))),this._register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this._register(this._selectionService.onRequestRedraw(i=>this._renderService.handleSelectionChanged(i.start,i.end,i.columnSelectMode))),this._register(this._selectionService.onLinuxMouseSelection(i=>{this.textarea.value=i,this.textarea.focus(),this.textarea.select()})),this._register(Zs.any(this._onScroll.event,this._inputHandler.onScroll)(()=>{this._selectionService.refresh(),this._viewport?.queueSync()})),this._register(this._instantiationService.createInstance(y$,this.screenElement)),this._register(Mn(this.element,"mousedown",i=>this._selectionService.handleMouseDown(i))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(hO,this)),this._register(this.optionsService.onSpecificOptionChange("screenReaderMode",i=>this._handleScreenReaderModeOptionChange(i))),this.options.overviewRuler.width&&(this._overviewRulerRenderer=this._register(this._instantiationService.createInstance(uO,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRuler",i=>{!this._overviewRulerRenderer&&i&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this._register(this._instantiationService.createInstance(uO,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(_$,this,this._document,this.element,this.screenElement,this._viewportElement,this._helperContainer,this.linkifier)}bindMouse(){let e=this,t=this.element;function n(a){let s=e._mouseService.getMouseReportCoords(a,e.screenElement);if(!s)return!1;let o,l;switch(a.overrideType||a.type){case"mousemove":l=32,a.buttons===void 0?(o=3,a.button!==void 0&&(o=a.button<3?a.button:3)):o=a.buttons&1?0:a.buttons&4?1:a.buttons&2?2:3;break;case"mouseup":l=0,o=a.button<3?a.button:3;break;case"mousedown":l=1,o=a.button<3?a.button:3;break;case"wheel":if(e._customWheelEventHandler&&e._customWheelEventHandler(a)===!1)return!1;let u=a.deltaY;if(u===0||e.coreMouseService.consumeWheelEvent(a,e._renderService?.dimensions?.device?.cell?.height,e._coreBrowserService?.dpr)===0)return!1;l=u<0?0:1,o=4;break;default:return!1}return l===void 0||o===void 0||o>4?!1:e.coreMouseService.triggerMouseEvent({col:s.col,row:s.row,x:s.x,y:s.y,button:o,action:l,ctrl:a.ctrlKey,alt:a.altKey,shift:a.shiftKey})}let r={mouseup:null,wheel:null,mousedrag:null,mousemove:null},i={mouseup:a=>(n(a),a.buttons||(this._document.removeEventListener("mouseup",r.mouseup),r.mousedrag&&this._document.removeEventListener("mousemove",r.mousedrag)),this.cancel(a)),wheel:a=>(n(a),this.cancel(a,!0)),mousedrag:a=>{a.buttons&&n(a)},mousemove:a=>{a.buttons||n(a)}};this._register(this.coreMouseService.onProtocolChange(a=>{a?(this.optionsService.rawOptions.logLevel==="debug"&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(a)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),a&8?r.mousemove||(t.addEventListener("mousemove",i.mousemove),r.mousemove=i.mousemove):(t.removeEventListener("mousemove",r.mousemove),r.mousemove=null),a&16?r.wheel||(t.addEventListener("wheel",i.wheel,{passive:!1}),r.wheel=i.wheel):(t.removeEventListener("wheel",r.wheel),r.wheel=null),a&2?r.mouseup||(r.mouseup=i.mouseup):(this._document.removeEventListener("mouseup",r.mouseup),r.mouseup=null),a&4?r.mousedrag||(r.mousedrag=i.mousedrag):(this._document.removeEventListener("mousemove",r.mousedrag),r.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this._register(Mn(t,"mousedown",a=>{if(a.preventDefault(),this.focus(),!(!this.coreMouseService.areMouseEventsActive||this._selectionService.shouldForceSelection(a)))return n(a),r.mouseup&&this._document.addEventListener("mouseup",r.mouseup),r.mousedrag&&this._document.addEventListener("mousemove",r.mousedrag),this.cancel(a)})),this._register(Mn(t,"wheel",a=>{if(!r.wheel){if(this._customWheelEventHandler&&this._customWheelEventHandler(a)===!1)return!1;if(!this.buffer.hasScrollback){if(a.deltaY===0)return!1;if(e.coreMouseService.consumeWheelEvent(a,e._renderService?.dimensions?.device?.cell?.height,e._coreBrowserService?.dpr)===0)return this.cancel(a,!0);let s=yt.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(a.deltaY<0?"A":"B");return this.coreService.triggerDataEvent(s,!0),this.cancel(a,!0)}}},{passive:!1}))}refresh(e,t){this._renderService?.refreshRows(e,t)}updateCursorStyle(e){this._selectionService?.shouldColumnSelect(e)?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(e,t){this._viewport?this._viewport.scrollLines(e):super.scrollLines(e,t),this.refresh(0,this.rows-1)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(e){e&&this._viewport?this._viewport.scrollToLine(this.buffer.ybase,!0):this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){let t=e-this._bufferService.buffer.ydisp;t!==0&&this.scrollLines(t)}paste(e){cke(e,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(e){this._customKeyEventHandler=e}attachCustomWheelEventHandler(e){this._customWheelEventHandler=e}registerLinkProvider(e){return this._linkProviderService.registerLinkProvider(e)}registerCharacterJoiner(e){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");let t=this._characterJoinerService.register(e);return this.refresh(0,this.rows-1),t}deregisterCharacterJoiner(e){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(e)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(e){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+e)}registerDecoration(e){return this._decorationService.registerDecoration(e)}hasSelection(){return this._selectionService?this._selectionService.hasSelection:!1}select(e,t,n){this._selectionService.setSelection(e,t,n)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(!(!this._selectionService||!this._selectionService.hasSelection))return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){this._selectionService?.clearSelection()}selectAll(){this._selectionService?.selectAll()}selectLines(e,t){this._selectionService?.selectLines(e,t)}_keyDown(e){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&this._customKeyEventHandler(e)===!1)return!1;let t=this.browser.isMac&&this.options.macOptionIsMeta&&e.altKey;if(!t&&!this._compositionHelper.keydown(e))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(!0),!1;!t&&(e.key==="Dead"||e.key==="AltGraph")&&(this._unprocessedDeadKey=!0);let n=_vt(e,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(e),n.type===3||n.type===2){let r=this.rows-1;return this.scrollLines(n.type===2?-r:r),this.cancel(e,!0)}if(n.type===1&&this.selectAll(),this._isThirdLevelShift(this.browser,e)||(n.cancel&&this.cancel(e,!0),!n.key)||e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.key.length===1&&e.key.charCodeAt(0)>=65&&e.key.charCodeAt(0)<=90)return!0;if(this._unprocessedDeadKey)return this._unprocessedDeadKey=!1,!0;if((n.key===yt.ETX||n.key===yt.CR)&&(this.textarea.value=""),this._onKey.fire({key:n.key,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(n.key,!0),!this.optionsService.rawOptions.screenReaderMode||e.altKey||e.ctrlKey)return this.cancel(e,!0);this._keyDownHandled=!0}_isThirdLevelShift(e,t){let n=e.isMac&&!this.options.macOptionIsMeta&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.isWindows&&t.altKey&&t.ctrlKey&&!t.metaKey||e.isWindows&&t.getModifierState("AltGraph");return t.type==="keypress"?n:n&&(!t.keyCode||t.keyCode>47)}_keyUp(e){this._keyDownSeen=!1,!(this._customKeyEventHandler&&this._customKeyEventHandler(e)===!1)&&(Nvt(e)||this.focus(),this.updateCursorStyle(e),this._keyPressHandled=!1)}_keyPress(e){let t;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&this._customKeyEventHandler(e)===!1)return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(e.which===null||e.which===void 0)t=e.keyCode;else if(e.which!==0&&e.charCode!==0)t=e.which;else return!1;return!t||(e.altKey||e.ctrlKey||e.metaKey)&&!this._isThirdLevelShift(this.browser,e)?!1:(t=String.fromCharCode(t),this._onKey.fire({key:t,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(t,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,!0)}_inputEvent(e){if(e.data&&e.inputType==="insertText"&&(!e.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;let t=e.data;return this.coreService.triggerDataEvent(t,!0),this.cancel(e),!0}return!1}resize(e,t){if(e===this.cols&&t===this.rows){this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure();return}super.resize(e,t)}_afterResize(e,t){this._charSizeService?.measure()}clear(){if(!(this.buffer.ybase===0&&this.buffer.y===0)){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let e=1;e<this.rows;e++)this.buffer.lines.push(this.buffer.getBlankLine(Ua));this._onScroll.fire({position:this.buffer.ydisp}),this.refresh(0,this.rows-1)}}reset(){this.options.rows=this.rows,this.options.cols=this.cols;let e=this._customKeyEventHandler;this._setup(),super.reset(),this._selectionService?.reset(),this._decorationService.reset(),this._customKeyEventHandler=e,this.refresh(0,this.rows-1)}clearTextureAtlas(){this._renderService?.clearTextureAtlas()}_reportFocus(){this.element?.classList.contains("focus")?this.coreService.triggerDataEvent(yt.ESC+"[I"):this.coreService.triggerDataEvent(yt.ESC+"[O")}_reportWindowsOptions(e){if(this._renderService)switch(e){case 0:let t=this._renderService.dimensions.css.canvas.width.toFixed(0),n=this._renderService.dimensions.css.canvas.height.toFixed(0);this.coreService.triggerDataEvent(`${yt.ESC}[4;${n};${t}t`);break;case 1:let r=this._renderService.dimensions.css.cell.width.toFixed(0),i=this._renderService.dimensions.css.cell.height.toFixed(0);this.coreService.triggerDataEvent(`${yt.ESC}[6;${i};${r}t`);break}}cancel(e,t){if(!(!this.options.cancelEvents&&!t))return e.preventDefault(),e.stopPropagation(),!1}};function Nvt(e){return e.keyCode===16||e.keyCode===17||e.keyCode===18}var Ovt=class{constructor(){this._addons=[]}dispose(){for(let e=this._addons.length-1;e>=0;e--)this._addons[e].instance.dispose()}loadAddon(e,t){let n={instance:t,dispose:t.dispose,isDisposed:!1};this._addons.push(n),t.dispose=()=>this._wrappedAddonDispose(n),t.activate(e)}_wrappedAddonDispose(e){if(e.isDisposed)return;let t=-1;for(let n=0;n<this._addons.length;n++)if(this._addons[n]===e){t=n;break}if(t===-1)throw new Error("Could not dispose an addon that has not been loaded");e.isDisposed=!0,e.dispose.apply(e.instance),this._addons.splice(t,1)}},Rvt=class{constructor(e){this._line=e}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(e,t){if(!(e<0||e>=this._line.length))return t?(this._line.loadCell(e,t),t):this._line.loadCell(e,new lc)}translateToString(e,t,n){return this._line.translateToString(e,t,n)}},Xoe=class{constructor(e,t){this._buffer=e,this.type=t}init(e){return this._buffer=e,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(e){let t=this._buffer.lines.get(e);if(t)return new Rvt(t)}getNullCell(){return new lc}},Ivt=class extends or{constructor(e){super(),this._core=e,this._onBufferChange=this._register(new $t),this.onBufferChange=this._onBufferChange.event,this._normal=new Xoe(this._core.buffers.normal,"normal"),this._alternate=new Xoe(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}},Dvt=class{constructor(e){this._core=e}registerCsiHandler(e,t){return this._core.registerCsiHandler(e,n=>t(n.toArray()))}addCsiHandler(e,t){return this.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._core.registerDcsHandler(e,(n,r)=>t(n,r.toArray()))}addDcsHandler(e,t){return this.registerDcsHandler(e,t)}registerEscHandler(e,t){return this._core.registerEscHandler(e,t)}addEscHandler(e,t){return this.registerEscHandler(e,t)}registerOscHandler(e,t){return this._core.registerOscHandler(e,t)}addOscHandler(e,t){return this.registerOscHandler(e,t)}},Pvt=class{constructor(e){this._core=e}register(e){this._core.unicodeService.register(e)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(e){this._core.unicodeService.activeVersion=e}},Lvt=["cols","rows"],Od=0,Jke=class extends or{constructor(e){super(),this._core=this._register(new Avt(e)),this._addonManager=this._register(new Ovt),this._publicOptions={...this._core.options};let t=r=>this._core.options[r],n=(r,i)=>{this._checkReadonlyOptions(r),this._core.options[r]=i};for(let r in this._core.options){let i={get:t.bind(this,r),set:n.bind(this,r)};Object.defineProperty(this._publicOptions,r,i)}}_checkReadonlyOptions(e){if(Lvt.includes(e))throw new Error(`Option "${e}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new Dvt(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new Pvt(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this._register(new Ivt(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){let e=this._core.coreService.decPrivateModes,t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any";break}return{applicationCursorKeysMode:e.applicationCursorKeys,applicationKeypadMode:e.applicationKeypad,bracketedPasteMode:e.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:e.origin,reverseWraparoundMode:e.reverseWraparound,sendFocusMode:e.sendFocus,synchronizedOutputMode:e.synchronizedOutput,wraparoundMode:e.wraparound}}get options(){return this._publicOptions}set options(e){for(let t in e)this._publicOptions[t]=e[t]}blur(){this._core.blur()}focus(){this._core.focus()}input(e,t=!0){this._core.input(e,t)}resize(e,t){this._verifyIntegers(e,t),this._core.resize(e,t)}open(e){this._core.open(e)}attachCustomKeyEventHandler(e){this._core.attachCustomKeyEventHandler(e)}attachCustomWheelEventHandler(e){this._core.attachCustomWheelEventHandler(e)}registerLinkProvider(e){return this._core.registerLinkProvider(e)}registerCharacterJoiner(e){return this._checkProposedApi(),this._core.registerCharacterJoiner(e)}deregisterCharacterJoiner(e){this._checkProposedApi(),this._core.deregisterCharacterJoiner(e)}registerMarker(e=0){return this._verifyIntegers(e),this._core.registerMarker(e)}registerDecoration(e){return this._checkProposedApi(),this._verifyPositiveIntegers(e.x??0,e.width??0,e.height??0),this._core.registerDecoration(e)}hasSelection(){return this._core.hasSelection()}select(e,t,n){this._verifyIntegers(e,t,n),this._core.select(e,t,n)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(e,t){this._verifyIntegers(e,t),this._core.selectLines(e,t)}dispose(){super.dispose()}scrollLines(e){this._verifyIntegers(e),this._core.scrollLines(e)}scrollPages(e){this._verifyIntegers(e),this._core.scrollPages(e)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(e){this._verifyIntegers(e),this._core.scrollToLine(e)}clear(){this._core.clear()}write(e,t){this._core.write(e,t)}writeln(e,t){this._core.write(e),this._core.write(`\r
|
|
115
|
-
`,t)}paste(e){this._core.paste(e)}refresh(e,t){this._verifyIntegers(e,t),this._core.refresh(e,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(e){this._addonManager.loadAddon(this,e)}static get strings(){return{get promptLabel(){return QB.get()},set promptLabel(e){QB.set(e)},get tooMuchOutput(){return JB.get()},set tooMuchOutput(e){JB.set(e)}}}_verifyIntegers(...e){for(Od of e)if(Od===1/0||isNaN(Od)||Od%1!==0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...e){for(Od of e)if(Od&&(Od===1/0||isNaN(Od)||Od%1!==0||Od<0))throw new Error("This API only accepts positive integers")}};var jvt=2,Mvt=1,eTe=class{activate(e){this._terminal=e}dispose(){}fit(){let e=this.proposeDimensions();if(!e||!this._terminal||isNaN(e.cols)||isNaN(e.rows))return;let t=this._terminal._core;(this._terminal.rows!==e.rows||this._terminal.cols!==e.cols)&&(t._renderService.clear(),this._terminal.resize(e.cols,e.rows))}proposeDimensions(){if(!this._terminal||!this._terminal.element||!this._terminal.element.parentElement)return;let e=this._terminal._core._renderService.dimensions;if(e.css.cell.width===0||e.css.cell.height===0)return;let t=this._terminal.options.scrollback===0?0:this._terminal.options.overviewRuler?.width||14,n=window.getComputedStyle(this._terminal.element.parentElement),r=parseInt(n.getPropertyValue("height")),i=Math.max(0,parseInt(n.getPropertyValue("width"))),a=window.getComputedStyle(this._terminal.element),s={top:parseInt(a.getPropertyValue("padding-top")),bottom:parseInt(a.getPropertyValue("padding-bottom")),right:parseInt(a.getPropertyValue("padding-right")),left:parseInt(a.getPropertyValue("padding-left"))},o=s.top+s.bottom,l=s.right+s.left,u=r-o,d=i-l-t;return{cols:Math.max(jvt,Math.floor(d/e.css.cell.width)),rows:Math.max(Mvt,Math.floor(u/e.css.cell.height))}}};var Fvt=class{constructor(t,n,r,i={}){this._terminal=t,this._regex=n,this._handler=r,this._options=i}provideLinks(t,n){let r=$vt.computeLink(t,this._regex,this._terminal,this._handler);n(this._addCallbacks(r))}_addCallbacks(t){return t.map(n=>(n.leave=this._options.leave,n.hover=(r,i)=>{if(this._options.hover){let{range:a}=n;this._options.hover(r,i,a)}},n))}};function Bvt(e){try{let t=new URL(e),n=t.password&&t.username?`${t.protocol}//${t.username}:${t.password}@${t.host}`:t.username?`${t.protocol}//${t.username}@${t.host}`:`${t.protocol}//${t.host}`;return e.toLocaleLowerCase().startsWith(n.toLocaleLowerCase())}catch{return!1}}var $vt=class QA{static computeLink(t,n,r,i){let a=new RegExp(n.source,(n.flags||"")+"g"),[s,o]=QA._getWindowedLineStrings(t-1,r),l=s.join(""),u,d=[];for(;u=a.exec(l);){let f=u[0];if(!Bvt(f))continue;let[p,m]=QA._mapStrIdx(r,o,0,u.index),[b,y]=QA._mapStrIdx(r,p,m,f.length);if(p===-1||m===-1||b===-1||y===-1)continue;let v={start:{x:m+1,y:p+1},end:{x:y,y:b+1}};d.push({range:v,text:f,activate:i})}return d}static _getWindowedLineStrings(t,n){let r,i=t,a=t,s=0,o="",l=[];if(r=n.buffer.active.getLine(t)){let u=r.translateToString(!0);if(r.isWrapped&&u[0]!==" "){for(s=0;(r=n.buffer.active.getLine(--i))&&s<2048&&(o=r.translateToString(!0),s+=o.length,l.push(o),!(!r.isWrapped||o.indexOf(" ")!==-1)););l.reverse()}for(l.push(u),s=0;(r=n.buffer.active.getLine(++a))&&r.isWrapped&&s<2048&&(o=r.translateToString(!0),s+=o.length,l.push(o),o.indexOf(" ")===-1););}return[l,i]}static _mapStrIdx(t,n,r,i){let a=t.buffer.active,s=a.getNullCell(),o=r;for(;i;){let l=a.getLine(n);if(!l)return[-1,-1];for(let u=o;u<l.length;++u){l.getCell(u,s);let d=s.getChars();if(s.getWidth()&&(i-=d.length||1,u===l.length-1&&d==="")){let f=a.getLine(n+1);f&&f.isWrapped&&(f.getCell(0,s),s.getWidth()===2&&(i+=1))}if(i<0)return[n,u]}n++,o=0}return[n,o]}},Uvt=/(https?|HTTPS?):[/]{2}[^\s"'!*(){}|\\\^<>`]*[^\s"':,.!?{}|\\\^~\[\]`()<>]/;function zvt(e,t){let n=window.open();if(n){try{n.opener=null}catch{}n.location.href=t}else console.warn("Opening link blocked as opener could not be cleared")}var tTe=class{constructor(e=zvt,t={}){this._handler=e,this._options=t}activate(e){this._terminal=e;let t=this._options,n=t.urlRegex||Uvt;this._linkProvider=this._terminal.registerLinkProvider(new Fvt(this._terminal,n,this._handler,t))}dispose(){this._linkProvider?.dispose()}};function nTe(e){const t=e.parser.registerOscHandler(52,n=>{const r=n.indexOf(";");if(r===-1)return!1;const i=n.slice(r+1);if(i==="?"||i==="")return!0;try{const a=atob(i);navigator.clipboard.writeText(a).catch(()=>{})}catch{}return!0});return()=>{t.dispose()}}function tD(){const[e,t]=x.useState(!1);return x.useEffect(()=>{const n=window.matchMedia("(max-width: 639px)");t(n.matches);const r=i=>t(i.matches);return n.addEventListener("change",r),()=>n.removeEventListener("change",r)},[]),e}const Hvt=[{label:"Esc",icon:zn,data:"\x1B"},{label:"Up",icon:Lx,data:"\x1B[A"},{label:"Down",icon:pu,data:"\x1B[B"},{label:"Tab",icon:null,data:" "},{label:"Enter",icon:null,data:"\r"}];function pO({onSend:e}){return tD()?c.jsx("div",{className:"flex shrink-0 items-center justify-center gap-2 border-t border-border bg-card px-3 py-2",children:Hvt.map(n=>c.jsxs(Ae,{variant:"outline",className:"h-11 min-w-11 touch-manipulation",onClick:()=>e(n.data),children:[n.icon?c.jsx(ne,{icon:n.icon,size:20,strokeWidth:2}):c.jsx("span",{className:"text-xs font-medium",children:n.label}),c.jsx("span",{className:"sr-only",children:n.label})]},n.label))}):null}function Vvt(e){const t=document.createElement("div");t.style.color=e,document.body.appendChild(t);const n=getComputedStyle(t).color;document.body.removeChild(t);const r=n.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/);if(!r)return e;const i=parseInt(r[1]).toString(16).padStart(2,"0"),a=parseInt(r[2]).toString(16).padStart(2,"0"),s=parseInt(r[3]).toString(16).padStart(2,"0");return`#${i}${a}${s}`}function K_(e){const t=getComputedStyle(document.documentElement).getPropertyValue(e).trim();return t?Vvt(t):"#000000"}function rTe(e){const t=K_("--terminal-background"),n=K_("--foreground"),r=K_("--muted-foreground"),i=K_("--accent"),a=K_("--destructive");return e?{background:t,foreground:n,cursor:n,cursorAccent:t,selectionBackground:"#3f3f46",black:t,red:a,green:i,yellow:a,blue:i,magenta:r,cyan:i,white:n,brightBlack:r,brightRed:a,brightGreen:i,brightYellow:a,brightBlue:i,brightMagenta:r,brightCyan:i,brightWhite:n}:{background:t,foreground:n,cursor:n,cursorAccent:t,selectionBackground:"#d1d5db",black:n,red:a,green:i,yellow:a,blue:i,magenta:r,cyan:i,white:r,brightBlack:r,brightRed:a,brightGreen:i,brightYellow:a,brightBlue:i,brightMagenta:r,brightCyan:i,brightWhite:r}}function L$({className:e,onReady:t,onResize:n,onContainerReady:r,terminalId:i,setupImagePaste:a,onSend:s,onFocus:o}){const l=x.useRef(null),u=x.useRef(null),d=x.useRef(null),f=x.useRef(n),p=x.useRef(o),m=x.useRef(t),b=x.useRef(r),{setTerminalFocused:y}=XH(),{resolvedTheme:v}=Rl(),_=v==="dark",w=rTe(_);x.useEffect(()=>{f.current=n},[n]),x.useEffect(()=>{p.current=o},[o]),x.useEffect(()=>{m.current=t},[t]),x.useEffect(()=>{b.current=r},[r]);const C=x.useCallback(()=>{if(!d.current||!u.current)return;d.current.fit();const{cols:k,rows:S}=u.current;f.current?.(k,S)},[]);x.useEffect(()=>{if(!l.current||u.current)return;const k=new Jke({cursorBlink:!0,fontSize:14,fontFamily:"monospace",theme:w,scrollback:1e4,rightClickSelectsWord:!0,scrollOnUserInput:!1}),S=new eTe,N=new tTe;k.loadAddon(S),k.loadAddon(N),k.open(l.current);const R=nTe(k);u.current=k,d.current=S,requestAnimationFrame(()=>{C(),m.current?.(k),l.current&&b.current?.(l.current)});const I=()=>{y(!0),p.current?.()},D=()=>y(!1);k.textarea&&(k.textarea.addEventListener("focus",I),k.textarea.addEventListener("blur",D));const P=setTimeout(()=>{C(),k.refresh(0,k.rows-1)},100),L=()=>{requestAnimationFrame(C)};window.addEventListener("resize",L);const F=()=>{document.visibilityState==="visible"&&requestAnimationFrame(()=>{C(),k.refresh(0,k.rows-1)})};document.addEventListener("visibilitychange",F);const j=new ResizeObserver(L);j.observe(l.current);const $=new IntersectionObserver(B=>{B[0]?.isIntersecting&&requestAnimationFrame(()=>{C(),k.refresh(0,k.rows-1)})},{threshold:.1});return $.observe(l.current),()=>{clearTimeout(P),window.removeEventListener("resize",L),document.removeEventListener("visibilitychange",F),j.disconnect(),$.disconnect(),R(),k.textarea&&(k.textarea.removeEventListener("focus",I),k.textarea.removeEventListener("blur",D)),y(!1),k.dispose(),u.current=null,d.current=null}},[C,y]),x.useEffect(()=>!l.current||!i||!a?void 0:a(l.current,i),[i,a]),x.useEffect(()=>{u.current&&(u.current.options.theme=w,u.current.refresh(0,u.current.rows-1))},[w]);const T=x.useCallback(()=>{u.current?.scrollToBottom()},[]);return c.jsxs("div",{className:"flex h-full w-full max-w-full flex-col",children:[c.jsxs("div",{className:"relative min-h-0 flex-1",children:[c.jsx("div",{ref:l,className:Le("h-full w-full max-w-full overflow-hidden p-2 bg-terminal-background",e)}),c.jsx("button",{onClick:T,className:Le("absolute top-2 right-5 p-1 transition-colors",_?"text-white/50 hover:text-white/80":"text-black/50 hover:text-black/80"),children:c.jsx(ne,{icon:Kxe,size:20,strokeWidth:2})})]}),c.jsx("div",{className:"h-2 shrink-0 bg-terminal-background"}),s&&c.jsx(pO,{onSend:s})]})}function Wvt({name:e,status:t,exitCode:n,className:r,onRename:i}){const[a,s]=x.useState(!1),[o,l]=x.useState(e),u=x.useRef(null);x.useEffect(()=>{a&&u.current&&(u.current.focus(),u.current.select())},[a]);const d=()=>{i&&(l(e),s(!0))},f=()=>{const m=o.trim();m&&m!==e&&i&&i(m),s(!1)},p=m=>{m.key==="Enter"?f():m.key==="Escape"&&s(!1)};return c.jsxs("div",{className:Le("flex h-6 items-center gap-2 border-b border-border bg-card px-2 text-xs",r),children:[c.jsx("span",{className:Le("h-2 w-2 shrink-0 rounded-full transition-colors duration-300",{"bg-accent animate-pulse":t==="running","bg-muted-foreground":t==="exited"&&n===0,"bg-destructive":t==="exited"&&n!==0||t==="error"})}),a?c.jsx("input",{ref:u,type:"text",value:o,onChange:m=>l(m.target.value),onBlur:f,onKeyDown:p,className:"h-4 w-24 rounded border border-border bg-background px-1 text-xs font-medium text-foreground outline-none focus:border-primary"}):c.jsx("span",{className:Le("font-medium text-foreground",i&&"cursor-pointer hover:text-primary"),onDoubleClick:d,title:i?"Double-click to rename":void 0,children:e}),t==="exited"&&n!==void 0&&c.jsxs(c.Fragment,{children:[c.jsx("span",{className:"ml-auto text-muted-foreground",children:"·"}),c.jsxs("span",{className:Le({"text-muted-foreground":n===0,"text-destructive":n!==0}),children:["exit ",n]})]})]})}function Vd({...e}){return c.jsx(lze,{"data-slot":"dropdown-menu",...e})}function Wd({...e}){return c.jsx(cze,{"data-slot":"dropdown-menu-trigger",...e})}function qd({align:e="start",alignOffset:t=0,side:n="bottom",sideOffset:r=4,className:i,...a}){return c.jsx(XUe,{children:c.jsx(ZUe,{className:"isolate z-50 outline-none",align:e,alignOffset:t,side:n,sideOffset:r,children:c.jsx(KUe,{"data-slot":"dropdown-menu-content",className:Le("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground min-w-32 rounded-lg p-1 shadow-md ring-1 duration-100 z-50 max-h-(--available-height) w-(--anchor-width) origin-(--transform-origin) overflow-x-hidden overflow-y-auto outline-none data-closed:overflow-hidden",i),...a})})})}function Gr({className:e,inset:t,variant:n="default",...r}){return c.jsx(qUe,{"data-slot":"dropdown-menu-item","data-inset":t,"data-variant":n,className:Le("focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:text-destructive not-data-[variant=destructive]:focus:**:text-accent-foreground min-h-7 gap-2 rounded-md px-2 py-1 text-xs/relaxed [&_svg:not([class*='size-'])]:size-3.5 group/dropdown-menu-item relative flex cursor-default items-center outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0",e),...r})}function j$({...e}){return c.jsx(JUe,{"data-slot":"dropdown-menu-radio-group",...e})}function M$({className:e,children:t,...n}){return c.jsxs(tze,{"data-slot":"dropdown-menu-radio-item",className:Le("focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground min-h-7 gap-2 rounded-md py-1.5 pr-8 pl-2 text-xs [&_svg:not([class*='size-'])]:size-3.5 relative flex cursor-default items-center outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",e),...n,children:[c.jsx("span",{className:"pointer-events-none absolute right-2 flex items-center justify-center pointer-events-none","data-slot":"dropdown-menu-radio-item-indicator",children:c.jsx(nze,{children:c.jsx(ne,{icon:Tr,strokeWidth:2})})}),t]})}function mO({className:e,...t}){return c.jsx(JH,{"data-slot":"dropdown-menu-separator",className:Le("bg-border/50 -mx-1 my-1 h-px",e),...t})}const qvt="";function gX(){return Ut({mutationFn:async e=>{const t=await fetch(`${qvt}/api/git/sync`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Sync failed")}return t.json()}})}const Gvt="";function bX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Gvt}/api/git/merge-to-main`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Merge failed")}return t.json()}})}const Kvt="";function yX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Kvt}/api/git/push`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Push failed")}return t.json()}})}const Yvt="";function vX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Yvt}/api/git/sync-parent`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Sync parent failed")}return t.json()}})}const Xvt="";function xX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Xvt}/api/git/create-pr`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();if(n.prAlreadyExists&&n.existingPrUrl){const r=new Error(n.error||"PR already exists");throw r.existingPrUrl=n.existingPrUrl,r}throw new Error(n.error||"Failed to create PR")}return t.json()}})}const Zvt="";function _X(){return Ut({mutationFn:async e=>{const t=await fetch(`${Zvt}/api/tasks/${e}/kill-claude`,{method:"POST"});if(!t.ok){const n=await t.json();throw new Error(n.error||"Failed to kill Claude")}return t.json()}})}function Qvt({repoPath:e,worktreePath:t,baseBranch:n,taskId:r,title:i,prUrl:a,isMobile:s,terminalId:o,sendInputToTerminal:l}){const{t:u}=Mt("common"),d=gX(),f=bX(),p=yX(),m=vX(),b=xX(),y=Bx(),v=_X(),_=I=>{o&&l?(l(o,I),xt.info(u("git.sentToClaude"))):xt.error(u("git.noTerminal"))},w=async()=>{try{await d.mutateAsync({repoPath:e,worktreePath:t,baseBranch:n}),xt.success(u("git.syncedFromMain"))}catch(I){const D=I instanceof Error?I.message:"Sync failed",P=n||"main";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Rebase this worktree onto the parent repo's ${P} branch. Error: "${D}". Steps: 1) Check for uncommitted changes - stash or commit them first, 2) git fetch origin (in parent repo at ${e}) to ensure ${P} is current, 3) git rebase ${P} (in worktree), 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) If stashed, git stash pop. Worktree: ${t}, Parent repo: ${e}.`)}:void 0})}},C=async()=>{try{await f.mutateAsync({repoPath:e,worktreePath:t,baseBranch:n}),xt.success(u("git.mergedToMain")),v.mutate(r),y.mutate({taskId:r,updates:{status:"DONE"}})}catch(I){const D=I instanceof Error?I.message:"Merge failed",P=n||"main";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Merge this worktree's branch into the parent repo's ${P}. Error: "${D}". Steps: 1) Ensure all changes in worktree are committed, 2) In parent repo at ${e}, checkout ${P} and pull latest from origin, 3) Squash merge the worktree branch into ${P} (use git merge --squash, then commit), 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) Push ${P} to origin. Worktree: ${t}, Parent repo: ${e}.`)}:void 0})}},T=async()=>{try{await p.mutateAsync({worktreePath:t}),xt.success(u("git.pushedToOrigin"))}catch(I){const D=I instanceof Error?I.message:"Push failed";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Push this worktree's branch to origin. Error: "${D}". Steps: 1) Check for uncommitted changes and commit them, 2) If push is rejected, pull the latest changes first and resolve any conflicts, 3) Push to origin again. Worktree: ${t}.`)}:void 0})}},k=async()=>{try{await m.mutateAsync({repoPath:e,baseBranch:n}),xt.success(u("git.parentSynced"))}catch(I){const D=I instanceof Error?I.message:"Sync parent failed",P=n||"main";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Sync the parent repo's ${P} branch with origin. Error: "${D}". Steps: 1) git fetch origin, 2) git pull origin ${P} --ff-only, 3) If that fails, rebase with git rebase origin/${P}, 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) Once in sync, git push origin ${P}. Work in the parent repo at ${e}, not the worktree.`)}:void 0})}},S=()=>{o&&l&&l(o,"commit")},N=async()=>{try{const I=await b.mutateAsync({worktreePath:t,title:i,baseBranch:n});y.mutate({taskId:r,updates:{prUrl:I.prUrl}}),xt.success(u("git.prCreated"),{action:{label:"View PR",onClick:()=>yl(I.prUrl)}})}catch(I){const D=I instanceof Error?I.message:"Failed to create PR",P=I&&typeof I=="object"&&"existingPrUrl"in I?I.existingPrUrl:void 0;if(P){y.mutate({taskId:r,updates:{prUrl:P}}),xt.info(u("git.prExists"),{action:{label:"View PR",onClick:()=>yl(P)}});return}const L=D.split(`
|
|
115
|
+
`,t)}paste(e){this._core.paste(e)}refresh(e,t){this._verifyIntegers(e,t),this._core.refresh(e,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(e){this._addonManager.loadAddon(this,e)}static get strings(){return{get promptLabel(){return QB.get()},set promptLabel(e){QB.set(e)},get tooMuchOutput(){return JB.get()},set tooMuchOutput(e){JB.set(e)}}}_verifyIntegers(...e){for(Od of e)if(Od===1/0||isNaN(Od)||Od%1!==0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...e){for(Od of e)if(Od&&(Od===1/0||isNaN(Od)||Od%1!==0||Od<0))throw new Error("This API only accepts positive integers")}};var jvt=2,Mvt=1,eTe=class{activate(e){this._terminal=e}dispose(){}fit(){let e=this.proposeDimensions();if(!e||!this._terminal||isNaN(e.cols)||isNaN(e.rows))return;let t=this._terminal._core;(this._terminal.rows!==e.rows||this._terminal.cols!==e.cols)&&(t._renderService.clear(),this._terminal.resize(e.cols,e.rows))}proposeDimensions(){if(!this._terminal||!this._terminal.element||!this._terminal.element.parentElement)return;let e=this._terminal._core._renderService.dimensions;if(e.css.cell.width===0||e.css.cell.height===0)return;let t=this._terminal.options.scrollback===0?0:this._terminal.options.overviewRuler?.width||14,n=window.getComputedStyle(this._terminal.element.parentElement),r=parseInt(n.getPropertyValue("height")),i=Math.max(0,parseInt(n.getPropertyValue("width"))),a=window.getComputedStyle(this._terminal.element),s={top:parseInt(a.getPropertyValue("padding-top")),bottom:parseInt(a.getPropertyValue("padding-bottom")),right:parseInt(a.getPropertyValue("padding-right")),left:parseInt(a.getPropertyValue("padding-left"))},o=s.top+s.bottom,l=s.right+s.left,u=r-o,d=i-l-t;return{cols:Math.max(jvt,Math.floor(d/e.css.cell.width)),rows:Math.max(Mvt,Math.floor(u/e.css.cell.height))}}};var Fvt=class{constructor(t,n,r,i={}){this._terminal=t,this._regex=n,this._handler=r,this._options=i}provideLinks(t,n){let r=$vt.computeLink(t,this._regex,this._terminal,this._handler);n(this._addCallbacks(r))}_addCallbacks(t){return t.map(n=>(n.leave=this._options.leave,n.hover=(r,i)=>{if(this._options.hover){let{range:a}=n;this._options.hover(r,i,a)}},n))}};function Bvt(e){try{let t=new URL(e),n=t.password&&t.username?`${t.protocol}//${t.username}:${t.password}@${t.host}`:t.username?`${t.protocol}//${t.username}@${t.host}`:`${t.protocol}//${t.host}`;return e.toLocaleLowerCase().startsWith(n.toLocaleLowerCase())}catch{return!1}}var $vt=class QA{static computeLink(t,n,r,i){let a=new RegExp(n.source,(n.flags||"")+"g"),[s,o]=QA._getWindowedLineStrings(t-1,r),l=s.join(""),u,d=[];for(;u=a.exec(l);){let f=u[0];if(!Bvt(f))continue;let[p,m]=QA._mapStrIdx(r,o,0,u.index),[b,y]=QA._mapStrIdx(r,p,m,f.length);if(p===-1||m===-1||b===-1||y===-1)continue;let v={start:{x:m+1,y:p+1},end:{x:y,y:b+1}};d.push({range:v,text:f,activate:i})}return d}static _getWindowedLineStrings(t,n){let r,i=t,a=t,s=0,o="",l=[];if(r=n.buffer.active.getLine(t)){let u=r.translateToString(!0);if(r.isWrapped&&u[0]!==" "){for(s=0;(r=n.buffer.active.getLine(--i))&&s<2048&&(o=r.translateToString(!0),s+=o.length,l.push(o),!(!r.isWrapped||o.indexOf(" ")!==-1)););l.reverse()}for(l.push(u),s=0;(r=n.buffer.active.getLine(++a))&&r.isWrapped&&s<2048&&(o=r.translateToString(!0),s+=o.length,l.push(o),o.indexOf(" ")===-1););}return[l,i]}static _mapStrIdx(t,n,r,i){let a=t.buffer.active,s=a.getNullCell(),o=r;for(;i;){let l=a.getLine(n);if(!l)return[-1,-1];for(let u=o;u<l.length;++u){l.getCell(u,s);let d=s.getChars();if(s.getWidth()&&(i-=d.length||1,u===l.length-1&&d==="")){let f=a.getLine(n+1);f&&f.isWrapped&&(f.getCell(0,s),s.getWidth()===2&&(i+=1))}if(i<0)return[n,u]}n++,o=0}return[n,o]}},Uvt=/(https?|HTTPS?):[/]{2}[^\s"'!*(){}|\\\^<>`]*[^\s"':,.!?{}|\\\^~\[\]`()<>]/;function zvt(e,t){let n=window.open();if(n){try{n.opener=null}catch{}n.location.href=t}else console.warn("Opening link blocked as opener could not be cleared")}var tTe=class{constructor(e=zvt,t={}){this._handler=e,this._options=t}activate(e){this._terminal=e;let t=this._options,n=t.urlRegex||Uvt;this._linkProvider=this._terminal.registerLinkProvider(new Fvt(this._terminal,n,this._handler,t))}dispose(){this._linkProvider?.dispose()}};function nTe(e){const t=e.parser.registerOscHandler(52,n=>{const r=n.indexOf(";");if(r===-1)return!1;const i=n.slice(r+1);if(i==="?"||i==="")return!0;try{const a=atob(i);navigator.clipboard.writeText(a).catch(()=>{})}catch{}return!0});return()=>{t.dispose()}}function tD(){const[e,t]=x.useState(!1);return x.useEffect(()=>{const n=window.matchMedia("(max-width: 639px)");t(n.matches);const r=i=>t(i.matches);return n.addEventListener("change",r),()=>n.removeEventListener("change",r)},[]),e}const Hvt=[{label:"Esc",icon:zn,data:"\x1B"},{label:"Up",icon:Lx,data:"\x1B[A"},{label:"Down",icon:pu,data:"\x1B[B"},{label:"Tab",icon:null,data:" "},{label:"Enter",icon:null,data:"\r"}];function pO({onSend:e}){return tD()?c.jsx("div",{className:"flex shrink-0 items-center justify-center gap-2 border-t border-border bg-card px-3 py-2",children:Hvt.map(n=>c.jsxs(Ae,{variant:"outline",className:"h-11 min-w-11 touch-manipulation",onClick:()=>e(n.data),children:[n.icon?c.jsx(ne,{icon:n.icon,size:20,strokeWidth:2}):c.jsx("span",{className:"text-xs font-medium",children:n.label}),c.jsx("span",{className:"sr-only",children:n.label})]},n.label))}):null}function Vvt(e){const t=document.createElement("div");t.style.color=e,document.body.appendChild(t);const n=getComputedStyle(t).color;document.body.removeChild(t);const r=n.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/);if(!r)return e;const i=parseInt(r[1]).toString(16).padStart(2,"0"),a=parseInt(r[2]).toString(16).padStart(2,"0"),s=parseInt(r[3]).toString(16).padStart(2,"0");return`#${i}${a}${s}`}function K_(e){const t=getComputedStyle(document.documentElement).getPropertyValue(e).trim();return t?Vvt(t):"#000000"}function rTe(e){const t=K_("--terminal-background"),n=K_("--foreground"),r=K_("--muted-foreground"),i=K_("--accent"),a=K_("--destructive");return e?{background:t,foreground:n,cursor:n,cursorAccent:t,selectionBackground:"#3f3f46",black:t,red:a,green:i,yellow:a,blue:i,magenta:r,cyan:i,white:n,brightBlack:r,brightRed:a,brightGreen:i,brightYellow:a,brightBlue:i,brightMagenta:r,brightCyan:i,brightWhite:n}:{background:t,foreground:n,cursor:n,cursorAccent:t,selectionBackground:"#d1d5db",black:n,red:a,green:i,yellow:a,blue:i,magenta:r,cyan:i,white:r,brightBlack:r,brightRed:a,brightGreen:i,brightYellow:a,brightBlue:i,brightMagenta:r,brightCyan:i,brightWhite:r}}function L$({className:e,onReady:t,onResize:n,onContainerReady:r,terminalId:i,setupImagePaste:a,onSend:s,onFocus:o}){const l=x.useRef(null),u=x.useRef(null),d=x.useRef(null),f=x.useRef(n),p=x.useRef(o),m=x.useRef(t),b=x.useRef(r),{setTerminalFocused:y}=XH(),{resolvedTheme:v}=Rl(),_=v==="dark",w=rTe(_);x.useEffect(()=>{f.current=n},[n]),x.useEffect(()=>{p.current=o},[o]),x.useEffect(()=>{m.current=t},[t]),x.useEffect(()=>{b.current=r},[r]);const C=x.useCallback(()=>{if(!d.current||!u.current)return;d.current.fit();const{cols:k,rows:S}=u.current;f.current?.(k,S)},[]);x.useEffect(()=>{if(!l.current||u.current)return;const k=new Jke({cursorBlink:!0,fontSize:14,fontFamily:"monospace",theme:w,scrollback:1e4,rightClickSelectsWord:!0,scrollOnUserInput:!1}),S=new eTe,N=new tTe;k.loadAddon(S),k.loadAddon(N),k.open(l.current);const R=nTe(k);u.current=k,d.current=S,requestAnimationFrame(()=>{C(),m.current?.(k),l.current&&b.current?.(l.current)});const I=()=>{y(!0),p.current?.()},D=()=>y(!1);k.textarea&&(k.textarea.addEventListener("focus",I),k.textarea.addEventListener("blur",D));const P=setTimeout(()=>{C(),k.refresh(0,k.rows-1)},100),L=()=>{requestAnimationFrame(C)};window.addEventListener("resize",L);const F=()=>{document.visibilityState==="visible"&&requestAnimationFrame(()=>{C(),k.refresh(0,k.rows-1)})};document.addEventListener("visibilitychange",F);const j=new ResizeObserver(L);j.observe(l.current);const $=new IntersectionObserver(B=>{B[0]?.isIntersecting&&requestAnimationFrame(()=>{C(),k.refresh(0,k.rows-1)})},{threshold:.1});return $.observe(l.current),()=>{clearTimeout(P),window.removeEventListener("resize",L),document.removeEventListener("visibilitychange",F),j.disconnect(),$.disconnect(),R(),k.textarea&&(k.textarea.removeEventListener("focus",I),k.textarea.removeEventListener("blur",D)),y(!1),k.dispose(),u.current=null,d.current=null}},[C,y]),x.useEffect(()=>!l.current||!i||!a?void 0:a(l.current,i),[i,a]),x.useEffect(()=>{u.current&&(u.current.options.theme=w,u.current.refresh(0,u.current.rows-1))},[w]);const T=x.useCallback(()=>{u.current?.scrollToBottom()},[]);return c.jsxs("div",{className:"flex h-full w-full max-w-full flex-col",children:[c.jsxs("div",{className:"relative min-h-0 flex-1",children:[c.jsx("div",{ref:l,className:Le("h-full w-full max-w-full overflow-hidden p-2 bg-terminal-background touch-none",e)}),c.jsx("button",{onClick:T,className:Le("absolute top-2 right-5 p-1 transition-colors",_?"text-white/50 hover:text-white/80":"text-black/50 hover:text-black/80"),children:c.jsx(ne,{icon:Kxe,size:20,strokeWidth:2})})]}),c.jsx("div",{className:"h-2 shrink-0 bg-terminal-background"}),s&&c.jsx(pO,{onSend:s})]})}function Wvt({name:e,status:t,exitCode:n,className:r,onRename:i}){const[a,s]=x.useState(!1),[o,l]=x.useState(e),u=x.useRef(null);x.useEffect(()=>{a&&u.current&&(u.current.focus(),u.current.select())},[a]);const d=()=>{i&&(l(e),s(!0))},f=()=>{const m=o.trim();m&&m!==e&&i&&i(m),s(!1)},p=m=>{m.key==="Enter"?f():m.key==="Escape"&&s(!1)};return c.jsxs("div",{className:Le("flex h-6 items-center gap-2 border-b border-border bg-card px-2 text-xs",r),children:[c.jsx("span",{className:Le("h-2 w-2 shrink-0 rounded-full transition-colors duration-300",{"bg-accent animate-pulse":t==="running","bg-muted-foreground":t==="exited"&&n===0,"bg-destructive":t==="exited"&&n!==0||t==="error"})}),a?c.jsx("input",{ref:u,type:"text",value:o,onChange:m=>l(m.target.value),onBlur:f,onKeyDown:p,className:"h-4 w-24 rounded border border-border bg-background px-1 text-xs font-medium text-foreground outline-none focus:border-primary"}):c.jsx("span",{className:Le("font-medium text-foreground",i&&"cursor-pointer hover:text-primary"),onDoubleClick:d,title:i?"Double-click to rename":void 0,children:e}),t==="exited"&&n!==void 0&&c.jsxs(c.Fragment,{children:[c.jsx("span",{className:"ml-auto text-muted-foreground",children:"·"}),c.jsxs("span",{className:Le({"text-muted-foreground":n===0,"text-destructive":n!==0}),children:["exit ",n]})]})]})}function Vd({...e}){return c.jsx(lze,{"data-slot":"dropdown-menu",...e})}function Wd({...e}){return c.jsx(cze,{"data-slot":"dropdown-menu-trigger",...e})}function qd({align:e="start",alignOffset:t=0,side:n="bottom",sideOffset:r=4,className:i,...a}){return c.jsx(XUe,{children:c.jsx(ZUe,{className:"isolate z-50 outline-none",align:e,alignOffset:t,side:n,sideOffset:r,children:c.jsx(KUe,{"data-slot":"dropdown-menu-content",className:Le("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground min-w-32 rounded-lg p-1 shadow-md ring-1 duration-100 z-50 max-h-(--available-height) w-(--anchor-width) origin-(--transform-origin) overflow-x-hidden overflow-y-auto outline-none data-closed:overflow-hidden",i),...a})})})}function Gr({className:e,inset:t,variant:n="default",...r}){return c.jsx(qUe,{"data-slot":"dropdown-menu-item","data-inset":t,"data-variant":n,className:Le("focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:text-destructive not-data-[variant=destructive]:focus:**:text-accent-foreground min-h-7 gap-2 rounded-md px-2 py-1 text-xs/relaxed [&_svg:not([class*='size-'])]:size-3.5 group/dropdown-menu-item relative flex cursor-default items-center outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0",e),...r})}function j$({...e}){return c.jsx(JUe,{"data-slot":"dropdown-menu-radio-group",...e})}function M$({className:e,children:t,...n}){return c.jsxs(tze,{"data-slot":"dropdown-menu-radio-item",className:Le("focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground min-h-7 gap-2 rounded-md py-1.5 pr-8 pl-2 text-xs [&_svg:not([class*='size-'])]:size-3.5 relative flex cursor-default items-center outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",e),...n,children:[c.jsx("span",{className:"pointer-events-none absolute right-2 flex items-center justify-center pointer-events-none","data-slot":"dropdown-menu-radio-item-indicator",children:c.jsx(nze,{children:c.jsx(ne,{icon:Tr,strokeWidth:2})})}),t]})}function mO({className:e,...t}){return c.jsx(JH,{"data-slot":"dropdown-menu-separator",className:Le("bg-border/50 -mx-1 my-1 h-px",e),...t})}const qvt="";function gX(){return Ut({mutationFn:async e=>{const t=await fetch(`${qvt}/api/git/sync`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Sync failed")}return t.json()}})}const Gvt="";function bX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Gvt}/api/git/merge-to-main`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Merge failed")}return t.json()}})}const Kvt="";function yX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Kvt}/api/git/push`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Push failed")}return t.json()}})}const Yvt="";function vX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Yvt}/api/git/sync-parent`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();throw new Error(n.error||"Sync parent failed")}return t.json()}})}const Xvt="";function xX(){return Ut({mutationFn:async e=>{const t=await fetch(`${Xvt}/api/git/create-pr`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok){const n=await t.json();if(n.prAlreadyExists&&n.existingPrUrl){const r=new Error(n.error||"PR already exists");throw r.existingPrUrl=n.existingPrUrl,r}throw new Error(n.error||"Failed to create PR")}return t.json()}})}const Zvt="";function _X(){return Ut({mutationFn:async e=>{const t=await fetch(`${Zvt}/api/tasks/${e}/kill-claude`,{method:"POST"});if(!t.ok){const n=await t.json();throw new Error(n.error||"Failed to kill Claude")}return t.json()}})}function Qvt({repoPath:e,worktreePath:t,baseBranch:n,taskId:r,title:i,prUrl:a,isMobile:s,terminalId:o,sendInputToTerminal:l}){const{t:u}=Mt("common"),d=gX(),f=bX(),p=yX(),m=vX(),b=xX(),y=Bx(),v=_X(),_=I=>{o&&l?(l(o,I),xt.info(u("git.sentToClaude"))):xt.error(u("git.noTerminal"))},w=async()=>{try{await d.mutateAsync({repoPath:e,worktreePath:t,baseBranch:n}),xt.success(u("git.syncedFromMain"))}catch(I){const D=I instanceof Error?I.message:"Sync failed",P=n||"main";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Rebase this worktree onto the parent repo's ${P} branch. Error: "${D}". Steps: 1) Check for uncommitted changes - stash or commit them first, 2) git fetch origin (in parent repo at ${e}) to ensure ${P} is current, 3) git rebase ${P} (in worktree), 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) If stashed, git stash pop. Worktree: ${t}, Parent repo: ${e}.`)}:void 0})}},C=async()=>{try{await f.mutateAsync({repoPath:e,worktreePath:t,baseBranch:n}),xt.success(u("git.mergedToMain")),v.mutate(r),y.mutate({taskId:r,updates:{status:"DONE"}})}catch(I){const D=I instanceof Error?I.message:"Merge failed",P=n||"main";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Merge this worktree's branch into the parent repo's ${P}. Error: "${D}". Steps: 1) Ensure all changes in worktree are committed, 2) In parent repo at ${e}, checkout ${P} and pull latest from origin, 3) Squash merge the worktree branch into ${P} (use git merge --squash, then commit), 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) Push ${P} to origin. Worktree: ${t}, Parent repo: ${e}.`)}:void 0})}},T=async()=>{try{await p.mutateAsync({worktreePath:t}),xt.success(u("git.pushedToOrigin"))}catch(I){const D=I instanceof Error?I.message:"Push failed";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Push this worktree's branch to origin. Error: "${D}". Steps: 1) Check for uncommitted changes and commit them, 2) If push is rejected, pull the latest changes first and resolve any conflicts, 3) Push to origin again. Worktree: ${t}.`)}:void 0})}},k=async()=>{try{await m.mutateAsync({repoPath:e,baseBranch:n}),xt.success(u("git.parentSynced"))}catch(I){const D=I instanceof Error?I.message:"Sync parent failed",P=n||"main";xt.error(D,{action:o&&l?{label:"Resolve with Claude",onClick:()=>_(`Sync the parent repo's ${P} branch with origin. Error: "${D}". Steps: 1) git fetch origin, 2) git pull origin ${P} --ff-only, 3) If that fails, rebase with git rebase origin/${P}, 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) Once in sync, git push origin ${P}. Work in the parent repo at ${e}, not the worktree.`)}:void 0})}},S=()=>{o&&l&&l(o,"commit")},N=async()=>{try{const I=await b.mutateAsync({worktreePath:t,title:i,baseBranch:n});y.mutate({taskId:r,updates:{prUrl:I.prUrl}}),xt.success(u("git.prCreated"),{action:{label:"View PR",onClick:()=>yl(I.prUrl)}})}catch(I){const D=I instanceof Error?I.message:"Failed to create PR",P=I&&typeof I=="object"&&"existingPrUrl"in I?I.existingPrUrl:void 0;if(P){y.mutate({taskId:r,updates:{prUrl:P}}),xt.info(u("git.prExists"),{action:{label:"View PR",onClick:()=>yl(P)}});return}const L=D.split(`
|
|
116
116
|
`).filter(Boolean).pop()||D;xt.error(L,{action:{label:"Resolve with Claude",onClick:()=>_(`Create a PR for this task. Error: "${D}". After creating, link it using: fulcrum current-task pr <url>. Worktree: ${t}.`)}})}},R=d.isPending||f.isPending||p.isPending||m.isPending||b.isPending;return s?c.jsxs(Vd,{children:[c.jsx(Wd,{className:"flex h-5 w-5 items-center justify-center rounded text-muted-foreground hover:text-foreground",children:c.jsx(ne,{icon:YH,size:12,strokeWidth:2,className:R?"animate-pulse":""})}),c.jsxs(qd,{align:"end",children:[c.jsxs(Gr,{onClick:w,disabled:d.isPending,children:[c.jsx(ne,{icon:Nw,size:12,strokeWidth:2,className:d.isPending?"animate-spin":""}),"Pull from main"]}),c.jsxs(Gr,{onClick:C,disabled:f.isPending,children:[c.jsx(ne,{icon:Aw,size:12,strokeWidth:2,className:f.isPending?"animate-pulse":""}),"Merge to main"]}),c.jsxs(Gr,{onClick:T,disabled:p.isPending,children:[c.jsx(ne,{icon:Ow,size:12,strokeWidth:2,className:p.isPending?"animate-pulse":""}),"Push to origin"]}),c.jsxs(Gr,{onClick:k,disabled:m.isPending,children:[c.jsx(ne,{icon:Iw,size:12,strokeWidth:2,className:m.isPending?"animate-spin":""}),"Sync parent with origin"]}),o&&l&&c.jsxs(Gr,{onClick:S,children:[c.jsx(ne,{icon:Rw,size:12,strokeWidth:2}),"Commit"]}),!a&&c.jsxs(Gr,{onClick:N,disabled:b.isPending,children:[c.jsx(ne,{icon:ac,size:12,strokeWidth:2,className:b.isPending?"animate-pulse":""}),"Create PR"]})]})]}):c.jsxs(c.Fragment,{children:[c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:w,disabled:d.isPending,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:"Pull from main",children:c.jsx(ne,{icon:Nw,size:12,strokeWidth:2,className:d.isPending?"animate-spin":""})}),c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:C,disabled:f.isPending,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:"Merge to main",children:c.jsx(ne,{icon:Aw,size:12,strokeWidth:2,className:f.isPending?"animate-pulse":""})}),c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:T,disabled:p.isPending,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:"Push to origin",children:c.jsx(ne,{icon:Ow,size:12,strokeWidth:2,className:p.isPending?"animate-pulse":""})}),c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:k,disabled:m.isPending,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:"Sync parent with origin",children:c.jsx(ne,{icon:Iw,size:12,strokeWidth:2,className:m.isPending?"animate-spin":""})}),o&&l&&c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:S,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:"Commit",children:c.jsx(ne,{icon:Rw,size:12,strokeWidth:2})}),!a&&c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:N,disabled:b.isPending,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:"Create Pull Request",children:c.jsx(ne,{icon:ac,size:12,strokeWidth:2,className:b.isPending?"animate-pulse":""})})]})}function fc({...e}){return c.jsx(lUe,{"data-slot":"alert-dialog",...e})}function iTe({...e}){return c.jsx(k1e,{"data-slot":"alert-dialog-trigger",...e})}function Jvt({...e}){return c.jsx(S1e,{"data-slot":"alert-dialog-portal",...e})}function e0t({className:e,...t}){return c.jsx(y1e,{"data-slot":"alert-dialog-overlay",className:Le("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/80 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 isolate z-50",e),...t})}function hc({className:e,size:t="default",...n}){return c.jsxs(Jvt,{children:[c.jsx(e0t,{}),c.jsx(_1e,{"data-slot":"alert-dialog-content","data-size":t,className:Le("film-grain data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 ring-foreground/10 gap-3 rounded-xl p-4 ring-1 duration-100 data-[size=default]:max-w-xs data-[size=sm]:max-w-64 data-[size=default]:sm:max-w-sm group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 outline-none",e),style:{background:"var(--gradient-card)"},...n})]})}function pc({className:e,...t}){return c.jsx("div",{"data-slot":"alert-dialog-header",className:Le("grid grid-rows-[auto_1fr] place-items-center gap-1 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]",e),...t})}function mc({className:e,...t}){return c.jsx("div",{"data-slot":"alert-dialog-footer",className:Le("flex flex-col-reverse gap-2 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end",e),...t})}function gc({className:e,...t}){return c.jsx(C1e,{"data-slot":"alert-dialog-title",className:Le("text-sm font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2",e),...t})}function bc({className:e,...t}){return c.jsx(v1e,{"data-slot":"alert-dialog-description",className:Le("text-muted-foreground *:[a]:hover:text-foreground text-xs/relaxed text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3",e),...t})}function Xm({className:e,...t}){return c.jsx(Ae,{"data-slot":"alert-dialog-action",className:Le(e),...t})}function yc({className:e,variant:t="outline",size:n="default",...r}){return c.jsx(KI,{"data-slot":"alert-dialog-cancel",className:Le(e),render:c.jsx(Ae,{variant:t,size:n}),...r})}const Oi=x.forwardRef(({className:e,...t},n)=>c.jsx($Ue,{ref:n,className:Le("peer size-4 shrink-0 rounded border border-input ring-offset-background","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2","disabled:cursor-not-allowed disabled:opacity-50","data-checked:bg-primary data-checked:border-primary data-checked:text-primary-foreground","flex items-center justify-center transition-colors",e),...t,children:c.jsx(UUe,{className:"flex items-center justify-center",children:c.jsx(ne,{icon:Tr,size:12,strokeWidth:3})})}));Oi.displayName="Checkbox";function nD({task:e,open:t,onOpenChange:n,onDeleted:r}){const i=CHe(),[a,s]=x.useState(!0);x.useEffect(()=>{t&&s(!0)},[t]);const o=()=>{const u=e.pinned?!1:a;i.mutate({taskId:e.id,deleteLinkedWorktree:u},{onSuccess:()=>{n?.(!1),r?.()}})},l=e.worktreePath&&!e.pinned;return c.jsx(fc,{open:t,onOpenChange:n,children:c.jsxs(hc,{children:[c.jsxs(pc,{children:[c.jsx(gc,{children:"Delete Task"}),c.jsxs(bc,{children:['This will permanently delete "',e.title,'" and close its terminal.',a&&e.worktreePath&&!e.pinned&&" The linked worktree will also be removed."," ","This action cannot be undone."]}),e.pinned&&c.jsxs("p",{className:"flex items-center gap-1.5 text-sm text-primary",children:[c.jsx(ne,{icon:PN,size:14,strokeWidth:2}),"This worktree is pinned and will be preserved."]})]}),l&&c.jsxs("label",{className:"flex items-center gap-2 py-2 text-sm text-foreground cursor-pointer",children:[c.jsx(Oi,{checked:a,onCheckedChange:u=>s(u===!0),disabled:i.isPending}),"Also delete linked worktree"]}),c.jsxs(mc,{children:[c.jsx(yc,{disabled:i.isPending,children:"Cancel"}),c.jsx(Xm,{onClick:o,variant:"destructive",disabled:i.isPending,children:i.isPending?"Deleting...":"Delete"})]})]})})}function t0t({repoPath:e,worktreePath:t,baseBranch:n,taskId:r,title:i,prUrl:a,repoName:s,terminalId:o,sendInputToTerminal:l,pinned:u}){const{t:d}=Mt("common"),f=ca(),p=gX(),m=bX(),b=yX(),y=vX(),v=xX(),_=Bx(),w=_X(),[C,T]=x.useState(!1),k={id:r,title:i,worktreePath:t,pinned:u??!1,description:null,status:"IN_PROGRESS",position:0,repoPath:e,repoName:s,baseBranch:n,branch:null,viewState:null,prUrl:a??null,startupScript:null,agent:"claude",aiMode:null,agentOptions:null,opencodeModel:null,projectId:null,repositoryId:null,tags:[],startedAt:null,dueDate:null,notes:null,createdAt:"",updatedAt:""},S=$=>{o&&l?(l(o,$),xt.info(d("git.sentToClaude"))):xt.error(d("git.noTerminal"))},N=async()=>{try{await p.mutateAsync({repoPath:e,worktreePath:t,baseBranch:n}),xt.success(d("git.syncedFromMain"))}catch($){const B=$ instanceof Error?$.message:"Sync failed",z=n||"main";xt.error(B,{action:o&&l?{label:"Resolve with Claude",onClick:()=>S(`Rebase this worktree onto the parent repo's ${z} branch. Error: "${B}". Steps: 1) Check for uncommitted changes - stash or commit them first, 2) git fetch origin (in parent repo at ${e}) to ensure ${z} is current, 3) git rebase ${z} (in worktree), 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) If stashed, git stash pop. Worktree: ${t}, Parent repo: ${e}.`)}:void 0})}},R=async()=>{try{await m.mutateAsync({repoPath:e,worktreePath:t,baseBranch:n}),xt.success(d("git.mergedToMain")),w.mutate(r),_.mutate({taskId:r,updates:{status:"DONE"}})}catch($){const B=$ instanceof Error?$.message:"Merge failed",z=n||"main";xt.error(B,{action:o&&l?{label:"Resolve with Claude",onClick:()=>S(`Merge this worktree's branch into the parent repo's ${z}. Error: "${B}". Steps: 1) Ensure all changes in worktree are committed, 2) In parent repo at ${e}, checkout ${z} and pull latest from origin, 3) Squash merge the worktree branch into ${z} (use git merge --squash, then commit), 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) Push ${z} to origin. Worktree: ${t}, Parent repo: ${e}.`)}:void 0})}},I=async()=>{try{await b.mutateAsync({worktreePath:t}),xt.success(d("git.pushedToOrigin"))}catch($){const B=$ instanceof Error?$.message:"Push failed";xt.error(B,{action:o&&l?{label:"Resolve with Claude",onClick:()=>S(`Push this worktree's branch to origin. Error: "${B}". Steps: 1) Check for uncommitted changes and commit them, 2) If push is rejected, pull the latest changes first and resolve any conflicts, 3) Push to origin again. Worktree: ${t}.`)}:void 0})}},D=async()=>{try{await y.mutateAsync({repoPath:e,baseBranch:n}),xt.success(d("git.parentSynced"))}catch($){const B=$ instanceof Error?$.message:"Sync parent failed",z=n||"main";xt.error(B,{action:o&&l?{label:"Resolve with Claude",onClick:()=>S(`Sync the parent repo's ${z} branch with origin. Error: "${B}". Steps: 1) git fetch origin, 2) git pull origin ${z} --ff-only, 3) If that fails, rebase with git rebase origin/${z}, 4) Resolve any conflicts carefully - do not lose functionality or introduce regressions, 5) Once in sync, git push origin ${z}. Work in the parent repo at ${e}, not the worktree.`)}:void 0})}},P=()=>{o&&l&&l(o,"commit")},L=()=>{f({to:"/projects"})},F=async()=>{try{const $=await v.mutateAsync({worktreePath:t,title:i,baseBranch:n});_.mutate({taskId:r,updates:{prUrl:$.prUrl}}),xt.success(d("git.prCreated"),{action:{label:"View PR",onClick:()=>yl($.prUrl)}})}catch($){const B=$ instanceof Error?$.message:"Failed to create PR",z=$&&typeof $=="object"&&"existingPrUrl"in $?$.existingPrUrl:void 0;if(z){_.mutate({taskId:r,updates:{prUrl:z}}),xt.info(d("git.prExists"),{action:{label:"View PR",onClick:()=>yl(z)}});return}const q=B.split(`
|
|
117
117
|
`).filter(Boolean).pop()||B;xt.error(q,{action:{label:"Resolve with Claude",onClick:()=>S(`Create a PR for this task. Error: "${B}". After creating, link it using: fulcrum current-task pr <url>. Worktree: ${t}.`)}})}},j=p.isPending||m.isPending||b.isPending||y.isPending||v.isPending;return c.jsxs(c.Fragment,{children:[c.jsxs(Vd,{children:[c.jsx(Wd,{className:"flex h-5 w-5 items-center justify-center rounded text-muted-foreground hover:text-foreground",children:c.jsx(ne,{icon:YH,size:12,strokeWidth:2,className:j?"animate-pulse":""})}),c.jsxs(qd,{align:"end",children:[c.jsxs(Gr,{onClick:N,disabled:p.isPending,children:[c.jsx(ne,{icon:Nw,size:12,strokeWidth:2,className:p.isPending?"animate-spin":""}),"Pull from main"]}),c.jsxs(Gr,{onClick:R,disabled:m.isPending,children:[c.jsx(ne,{icon:Aw,size:12,strokeWidth:2,className:m.isPending?"animate-pulse":""}),"Merge to main"]}),c.jsxs(Gr,{onClick:I,disabled:b.isPending,children:[c.jsx(ne,{icon:Ow,size:12,strokeWidth:2,className:b.isPending?"animate-pulse":""}),"Push to origin"]}),c.jsxs(Gr,{onClick:D,disabled:y.isPending,children:[c.jsx(ne,{icon:Iw,size:12,strokeWidth:2,className:y.isPending?"animate-spin":""}),"Sync parent with origin"]}),o&&l&&c.jsxs(Gr,{onClick:P,children:[c.jsx(ne,{icon:Rw,size:12,strokeWidth:2}),"Commit"]}),!a&&c.jsxs(Gr,{onClick:F,disabled:v.isPending,children:[c.jsx(ne,{icon:ac,size:12,strokeWidth:2,className:v.isPending?"animate-pulse":""}),"Create PR"]}),c.jsx(mO,{}),c.jsxs(Gr,{onClick:L,children:[c.jsx(ne,{icon:Dw,size:12,strokeWidth:2}),s]}),c.jsx(mO,{}),c.jsxs(Gr,{onClick:()=>T(!0),className:"text-destructive focus:text-destructive",children:[c.jsx(ne,{icon:qo,size:12,strokeWidth:2}),"Delete task"]})]})]}),c.jsx(nD,{task:k,open:C,onOpenChange:T})]})}function nw({worktreePath:e}){const{data:t,isLoading:n}=jHe(e);if(!e||n||!t)return null;if(t.clean)return c.jsxs(Hr,{className:"bg-green-500/20 text-green-600 dark:text-green-400 border-transparent",children:[c.jsx(ne,{icon:Tr,size:12,strokeWidth:2}),"Clean"]});const r=t.files.length;return c.jsxs(Hr,{className:"bg-amber-500/20 text-amber-600 dark:text-amber-400 border-transparent",children:[c.jsx(ne,{icon:Kr,size:12,strokeWidth:2}),r," ",r===1?"change":"changes"]})}const n0t=600,r0t=450,i0t=250;function a0t({taskInfo:e,terminalId:t,terminalCwd:n,isMobile:r,sendInputToTerminal:i}){const a=x.useRef(null),[s,o]=x.useState(1/0),[l,u]=x.useState(!1);x.useEffect(()=>{const b=a.current;if(!b)return;const y=new ResizeObserver(v=>{for(const _ of v)o(_.contentRect.width)});return y.observe(b),()=>y.disconnect()},[]);const d=s>=n0t,f=s>=r0t&&!r,p=s>=i0t,m={id:e.taskId,title:e.title,worktreePath:e.worktreePath,pinned:e.pinned??!1,description:null,status:"IN_PROGRESS",position:0,repoPath:e.repoPath,repoName:e.repoName,baseBranch:e.baseBranch,branch:e.branch,viewState:null,prUrl:e.prUrl??null,startupScript:null,agent:"claude",aiMode:null,agentOptions:null,opencodeModel:null,projectId:null,repositoryId:null,tags:[],startedAt:null,dueDate:null,notes:null,createdAt:"",updatedAt:""};return c.jsx("div",{ref:a,className:"flex shrink-0 items-center justify-between border-b border-border bg-card",children:c.jsxs("div",{className:"flex min-w-0 flex-1 items-center gap-2 px-2 py-1",children:[c.jsxs(gi,{to:"/tasks/$taskId",params:{taskId:e.taskId},className:"flex shrink-0 items-center gap-1.5 rounded px-2 py-0.5 text-xs font-medium text-primary hover:bg-primary/10 max-w-[50%]",children:[c.jsx(ne,{icon:GI,size:12,strokeWidth:2,className:"shrink-0"}),c.jsx("span",{className:"truncate",children:e.title})]}),d&&c.jsxs(c.Fragment,{children:[e.repoId?c.jsxs(gi,{to:"/repositories/$repoId",params:{repoId:e.repoId},className:"flex min-w-0 items-center gap-1 text-xs font-medium text-foreground hover:text-primary",children:[c.jsx(ne,{icon:$d,size:12,strokeWidth:2,className:"shrink-0"}),c.jsx("span",{className:"truncate hover:underline",children:e.repoName})]}):c.jsxs("span",{className:"flex min-w-0 items-center gap-1 text-xs font-medium text-foreground",children:[c.jsx(ne,{icon:$d,size:12,strokeWidth:2,className:"shrink-0"}),c.jsx("span",{className:"truncate",children:e.repoName})]}),n&&c.jsxs("span",{className:"flex min-w-0 items-center gap-1 text-xs text-muted-foreground",children:[c.jsx(ne,{icon:VI,size:12,strokeWidth:2,className:"shrink-0"}),c.jsx("span",{className:"truncate",children:n.split("/").pop()})]})]}),c.jsxs("div",{className:"ml-auto flex items-center gap-1",children:[p&&c.jsx(nw,{worktreePath:e.worktreePath}),f?c.jsxs(c.Fragment,{children:[c.jsx(Qvt,{repoPath:e.repoPath,worktreePath:e.worktreePath,baseBranch:e.baseBranch,taskId:e.taskId,title:e.title,prUrl:e.prUrl,isMobile:r,terminalId:t,sendInputToTerminal:i}),c.jsx(Ae,{variant:"ghost",size:"icon-xs",className:"h-5 w-5 text-muted-foreground hover:text-destructive",title:"Delete task",onClick:()=>u(!0),children:c.jsx(ne,{icon:qo,size:12,strokeWidth:2})}),c.jsx(nD,{task:m,open:l,onOpenChange:u})]}):c.jsx(t0t,{repoPath:e.repoPath,worktreePath:e.worktreePath,baseBranch:e.baseBranch,taskId:e.taskId,title:e.title,prUrl:e.prUrl,repoName:e.repoName,terminalId:t,sendInputToTerminal:i,pinned:e.pinned})]})]})})}function s0t({repoInfo:e,isMaximized:t,onMaximize:n,onMinimize:r,canMaximize:i}){return c.jsxs("div",{className:"flex shrink-0 items-center justify-between border-b border-border bg-card",children:[c.jsxs("div",{className:"flex min-w-0 flex-1 items-center gap-2 px-2 py-1",children:[c.jsxs(gi,{to:"/repositories/$repoId",params:{repoId:e.repoId},className:"flex shrink-0 items-center gap-1.5 rounded px-2 py-0.5 text-xs font-medium text-primary hover:bg-primary/10 max-w-[50%]",children:[c.jsx(ne,{icon:$d,size:12,strokeWidth:2,className:"shrink-0"}),c.jsx("span",{className:"truncate",children:e.repoName})]}),c.jsx("span",{className:"flex min-w-0 items-center gap-1 text-xs text-muted-foreground truncate",children:e.repoPath})]}),i&&c.jsx("div",{className:"flex items-center gap-1 mr-1",children:c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:t?r:n,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:t?"Restore":"Maximize",children:c.jsx(ne,{icon:t?Yxe:a1e,size:12,strokeWidth:2})})})]})}function o0t({terminals:e,activeIndex:t,onSelect:n,taskInfoByCwd:r}){const i=x.useRef(null),a=x.useRef(null);x.useEffect(()=>{a.current&&i.current&&a.current.scrollIntoView({behavior:"smooth",block:"nearest",inline:"center"})},[t]);const s=(o,l)=>{if(o.cwd&&r){const u=r.get(o.cwd);if(u)return u.title}return o.name||`Terminal ${l+1}`};return c.jsx("div",{ref:i,className:"flex shrink-0 gap-1 overflow-x-auto border-b border-border bg-card px-2 py-1.5",style:{WebkitOverflowScrolling:"touch"},children:e.map((o,l)=>{const u=l===t,d=s(o,l);return c.jsx("button",{ref:u?a:null,onClick:()=>n(l),className:Le("shrink-0 rounded-md px-3 py-1.5 text-xs font-medium transition-colors touch-manipulation","max-w-[150px] truncate",u?"bg-primary text-primary-foreground":"bg-muted text-muted-foreground hover:bg-muted/80"),children:d},o.id)})})}const l0t=uy(function({terminal:t,taskInfo:n,repoInfo:r,isMobile:i,onClose:a,onReady:s,onResize:o,onRename:l,onContainerReady:u,setupImagePaste:d,onFocus:f,sendInputToTerminal:p,isMaximized:m,onMaximize:b,onMinimize:y,canMaximize:v}){const _=ly(),{resolvedTheme:w}=Rl(),C=w==="dark",T=n?_.terminals.get(t.id):null,k=T?.isStartingUp??!1;x.useEffect(()=>{n&&Kt.terminal.info("TerminalPane isStartingUp check",{terminalId:t.id,hasTaskInfo:!!n,hasTerminalModel:!!T,isStartingUp:T?.isStartingUp,isStartingClaude:k})},[t.id,n,T,k,T?.isStartingUp]);const S=()=>n?c.jsx(a0t,{taskInfo:n,terminalId:t.id,terminalCwd:t.cwd,isMobile:i,sendInputToTerminal:p}):r?c.jsx(s0t,{repoInfo:r,isMaximized:m,onMaximize:b,onMinimize:y,canMaximize:v}):c.jsxs("div",{className:"flex shrink-0 items-center justify-between border-b border-border bg-card",children:[c.jsx(Wvt,{name:t.name,status:t.status,exitCode:t.exitCode,className:"flex-1 border-b-0",onRename:l}),c.jsxs("div",{className:"flex items-center gap-1 mr-1",children:[v&&c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:m?y:b,className:"h-5 w-5 text-muted-foreground hover:text-foreground",title:m?"Restore":"Maximize",children:c.jsx(ne,{icon:m?Yxe:a1e,size:12,strokeWidth:2})}),a&&c.jsx(Ae,{variant:"ghost",size:"icon-xs",onClick:a,className:"h-5 w-5 text-muted-foreground hover:text-foreground",children:c.jsx(ne,{icon:zn,size:12,strokeWidth:2})})]})]});return c.jsxs("div",{className:"flex h-full min-w-0 flex-col overflow-hidden",children:[S(),c.jsxs("div",{className:"relative min-h-0 min-w-0 flex-1",children:[c.jsx(L$,{onReady:s,onResize:o,onContainerReady:u,terminalId:t.id,setupImagePaste:d,onFocus:f}),k&&c.jsx("div",{className:"pointer-events-none absolute inset-0 z-10 flex items-center justify-center bg-terminal-background/90",children:c.jsxs("div",{className:"flex flex-col items-center gap-3",children:[c.jsx(ne,{icon:Ft,size:24,strokeWidth:2,className:Le("animate-spin",C?"text-white/60":"text-black/60")}),c.jsx("span",{className:Le("font-mono text-sm",C?"text-white/60":"text-black/60"),children:"Starting Claude Code..."})]})})]})]})});function u0t({onAdd:e,message:t}){return c.jsxs("div",{className:"relative flex h-full items-center justify-center bg-terminal-background overflow-hidden",children:[c.jsxs("div",{className:"absolute inset-0 blur-3xl pointer-events-none",children:[c.jsx("div",{className:"absolute w-[40%] h-[50%] animate-blob-1",style:{background:"var(--gradient-glow)",left:"0%",top:"0%"}}),c.jsx("div",{className:"absolute w-[35%] h-[45%] animate-blob-2",style:{background:"var(--gradient-glow)",right:"0%",top:"0%"}}),c.jsx("div",{className:"absolute w-[38%] h-[48%] animate-blob-3",style:{background:"var(--gradient-glow)",left:"0%",bottom:"0%"}}),c.jsx("div",{className:"absolute w-[42%] h-[45%] animate-blob-4",style:{background:"var(--gradient-glow)",right:"0%",bottom:"0%"}})]}),c.jsx("div",{className:"absolute inset-0 pointer-events-none",children:c.jsx(xEe,{rows:100,cols:50,tileSize:"sm"})}),e?c.jsxs(Ae,{variant:"outline",size:"sm",onClick:e,className:"gap-2 relative z-10 bg-background",children:[c.jsx(ne,{icon:x0,size:14,strokeWidth:2}),"New Terminal"]}):c.jsx("p",{className:"text-xs text-muted-foreground relative z-10 bg-background/80 px-2 py-1 rounded",children:t||"No terminals"})]})}function c0t(e){return e<=1?{rows:1,cols:1}:e<=2?{rows:1,cols:2}:e<=4?{rows:2,cols:2}:e<=6?{rows:2,cols:3}:e<=9?{rows:3,cols:3}:{rows:3,cols:4}}function d0t({terminals:e,onTerminalClose:t,onTerminalAdd:n,onTerminalReady:r,onTerminalResize:i,onTerminalRename:a,onTerminalContainerReady:s,setupImagePaste:o,writeToTerminal:l,sendInputToTerminal:u,taskInfoByCwd:d,repoInfoByCwd:f,emptyMessage:p}){const m=tD(),[b,y]=x.useState(e.length>0?e[0].id:null),[v,_]=x.useState(0),[w,C]=x.useState(null);if(x.useEffect(()=>{v>=e.length&&e.length>0&&_(e.length-1)},[e.length,v]),x.useEffect(()=>{w&&!e.find(D=>D.id===w)&&C(null)},[e,w]),e.length===0)return c.jsx(u0t,{onAdd:n,message:p});const{rows:T,cols:k}=c0t(e.length),S=[];for(let D=0;D<T;D++){const P=D*k,L=Math.min(P+k,e.length);P<e.length&&S.push(e.slice(P,L))}const N=D=>{const P=m&&e.length>1?e[v]?.id:b;P&&l&&l(P,D)},R=D=>{const P=D.cwd?d?.get(D.cwd):void 0,L=D.cwd?f?.get(D.cwd):void 0,F=!P&&e.length>1;return c.jsx(l0t,{terminal:D,taskInfo:P,repoInfo:L,isMobile:m,onClose:t?()=>t(D.id):void 0,onReady:r?j=>r(D.id,j):void 0,onResize:i?(j,$)=>i(D.id,j,$):void 0,onRename:a?j=>a(D.id,j):void 0,onContainerReady:s?j=>s(D.id,j):void 0,setupImagePaste:o,onFocus:()=>y(D.id),sendInputToTerminal:u,isMaximized:w===D.id,onMaximize:()=>C(D.id),onMinimize:()=>C(null),canMaximize:F})},I=D=>c.jsxs("div",{className:"flex h-full w-full flex-col",children:[c.jsx("div",{className:"min-h-0 flex-1",children:D}),m&&l&&c.jsx(pO,{onSend:N})]});if(m&&e.length>1){const D=e[v]??e[0];return c.jsxs("div",{className:"flex h-full w-full flex-col",children:[c.jsx(o0t,{terminals:e,activeIndex:v,onSelect:_,taskInfoByCwd:d}),c.jsx("div",{className:"min-h-0 flex-1",children:R(D)},D.id),l&&c.jsx(pO,{onSend:N})]})}if(e.length===1)return I(c.jsx("div",{className:"h-full w-full max-w-full min-w-0 overflow-hidden",children:R(e[0])},e[0].id));if(w){const D=e.find(P=>P.id===w);if(D)return I(c.jsx("div",{className:"h-full w-full max-w-full min-w-0 overflow-hidden",children:R(D)},D.id))}return e.length===2?I(c.jsxs(Hg,{direction:m?"vertical":"horizontal",className:"h-full max-w-full",children:[c.jsx($u,{defaultSize:50,minSize:15,children:R(e[0])},e[0].id),c.jsx(Vg,{}),c.jsx($u,{defaultSize:50,minSize:15,children:R(e[1])},e[1].id)]})):e.length===3?I(c.jsxs(Hg,{direction:"horizontal",className:"h-full max-w-full",children:[c.jsx($u,{defaultSize:50,minSize:15,children:R(e[0])},e[0].id),c.jsx(Vg,{}),c.jsx($u,{defaultSize:50,minSize:15,children:c.jsxs(Hg,{direction:"vertical",className:"h-full max-w-full",children:[c.jsx($u,{defaultSize:50,minSize:15,children:R(e[1])},e[1].id),c.jsx(Vg,{}),c.jsx($u,{defaultSize:50,minSize:15,children:R(e[2])},e[2].id)]})})]})):I(c.jsx(Hg,{direction:"vertical",className:"h-full max-w-full",children:S.map((D,P)=>c.jsxs(x.Fragment,{children:[P>0&&c.jsx(Vg,{}),c.jsx($u,{defaultSize:100/S.length,minSize:15,children:D.length===1?R(D[0]):c.jsx(Hg,{direction:"horizontal",className:"h-full max-w-full",children:D.map((L,F)=>c.jsxs(x.Fragment,{children:[F>0&&c.jsx(Vg,{}),c.jsx($u,{defaultSize:100/k,minSize:15,children:R(L)})]},L.id))})})]},`row-${P}`))}))}function f0t(e){if(Array.isArray(e))return e}function h0t(e,t){var n=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(n!=null){var r,i,a,s,o=[],l=!0,u=!1;try{if(a=(n=n.call(e)).next,t!==0)for(;!(l=(r=a.call(n)).done)&&(o.push(r.value),o.length!==t);l=!0);}catch(d){u=!0,i=d}finally{try{if(!l&&n.return!=null&&(s=n.return(),Object(s)!==s))return}finally{if(u)throw i}}return o}}function F$(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function aTe(e,t){if(e){if(typeof e=="string")return F$(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?F$(e,t):void 0}}function p0t(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
118
118
|
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function sTe(e,t){return f0t(e)||h0t(e,t)||aTe(e,t)||p0t()}var t6={},Y_={},Zoe;function oTe(){if(Zoe)return Y_;Zoe=1,Object.defineProperty(Y_,"__esModule",{value:!0}),Y_.bind=void 0;function e(t,n){var r=n.type,i=n.listener,a=n.options;return t.addEventListener(r,i,a),function(){t.removeEventListener(r,i,a)}}return Y_.bind=e,Y_}var Ng={},Qoe;function m0t(){if(Qoe)return Ng;Qoe=1;var e=Ng&&Ng.__assign||function(){return e=Object.assign||function(a){for(var s,o=1,l=arguments.length;o<l;o++){s=arguments[o];for(var u in s)Object.prototype.hasOwnProperty.call(s,u)&&(a[u]=s[u])}return a},e.apply(this,arguments)};Object.defineProperty(Ng,"__esModule",{value:!0}),Ng.bindAll=void 0;var t=oTe();function n(a){if(!(typeof a>"u"))return typeof a=="boolean"?{capture:a}:a}function r(a,s){if(s==null)return a;var o=e(e({},a),{options:e(e({},n(s)),n(a.options))});return o}function i(a,s,o){var l=s.map(function(u){var d=r(u,o);return(0,t.bind)(a,d)});return function(){l.forEach(function(d){return d()})}}return Ng.bindAll=i,Ng}var Joe;function g0t(){return Joe||(Joe=1,(function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.bindAll=e.bind=void 0;var t=oTe();Object.defineProperty(e,"bind",{enumerable:!0,get:function(){return t.bind}});var n=m0t();Object.defineProperty(e,"bindAll",{enumerable:!0,get:function(){return n.bindAll}})})(t6)),t6}var B0=g0t(),lTe="data-pdnd-honey-pot";function uTe(e){return e instanceof Element&&e.hasAttribute(lTe)}function cTe(e){var t=document.elementsFromPoint(e.x,e.y),n=sTe(t,2),r=n[0],i=n[1];return r?uTe(r)?i??null:r:null}function oE(e){"@babel/helpers - typeof";return oE=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},oE(e)}function b0t(e,t){if(oE(e)!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(oE(r)!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function y0t(e){var t=b0t(e,"string");return oE(t)=="symbol"?t:t+""}function f2(e,t,n){return(t=y0t(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var dTe=2147483647;function ele(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function tle(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?ele(Object(n),!0).forEach(function(r){f2(e,r,n[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ele(Object(n)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(n,r))})}return e}var lE=2,nle=lE/2;function v0t(e){return{x:Math.floor(e.x),y:Math.floor(e.y)}}function x0t(e){return{x:e.x-nle,y:e.y-nle}}function _0t(e){return{x:Math.max(e.x,0),y:Math.max(e.y,0)}}function S0t(e){return{x:Math.min(e.x,window.innerWidth-lE),y:Math.min(e.y,window.innerHeight-lE)}}function rle(e){var t=e.client,n=S0t(_0t(x0t(v0t(t))));return DOMRect.fromRect({x:n.x,y:n.y,width:lE,height:lE})}function ile(e){var t=e.clientRect;return{left:"".concat(t.left,"px"),top:"".concat(t.top,"px"),width:"".concat(t.width,"px"),height:"".concat(t.height,"px")}}function w0t(e){var t=e.client,n=e.clientRect;return t.x>=n.x&&t.x<=n.x+n.width&&t.y>=n.y&&t.y<=n.y+n.height}function E0t(e){var t=e.initial,n=document.createElement("div");n.setAttribute(lTe,"true");var r=rle({client:t});Object.assign(n.style,tle(tle({backgroundColor:"transparent",position:"fixed",padding:0,margin:0,boxSizing:"border-box"},ile({clientRect:r})),{},{pointerEvents:"auto",zIndex:dTe})),document.body.appendChild(n);var i=B0.bind(window,{type:"pointermove",listener:function(s){var o={x:s.clientX,y:s.clientY};r=rle({client:o}),Object.assign(n.style,ile({clientRect:r}))},options:{capture:!0}});return function(s){var o=s.current;if(i(),w0t({client:o,clientRect:r})){n.remove();return}function l(){u(),n.remove()}var u=B0.bindAll(window,[{type:"pointerdown",listener:l},{type:"pointermove",listener:l},{type:"focusin",listener:l},{type:"focusout",listener:l},{type:"dragstart",listener:l},{type:"dragenter",listener:l},{type:"dragover",listener:l}],{capture:!0})}}function C0t(){var e=null;function t(){return e=null,B0.bind(window,{type:"pointermove",listener:function(i){e={x:i.clientX,y:i.clientY}},options:{capture:!0}})}function n(){var r=null;return function(a){var s=a.eventName,o=a.payload;if(s==="onDragStart"){var l=o.location.initial.input,u=e??{x:l.clientX,y:l.clientY};r=E0t({initial:u})}if(s==="onDrop"){var d,f=o.location.current.input;(d=r)===null||d===void 0||d({current:{x:f.clientX,y:f.clientY}}),r=null,e=null}}}return{bindEvents:t,getOnPostDispatch:n}}function k0t(e){if(Array.isArray(e))return F$(e)}function T0t(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function A0t(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
package/dist/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<link rel="icon" type="image/png" href="/logo.png" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Fulcrum</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-DSaPCUvd.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-D6ht7k3-.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -71286,6 +71286,7 @@ function getSession(id) {
|
|
|
71286
71286
|
function listSessions(options) {
|
|
71287
71287
|
const { limit: limit2 = 50, offset = 0, projectId, search, favorites } = options;
|
|
71288
71288
|
const conditions2 = [];
|
|
71289
|
+
conditions2.push(or(isNull(chatSessions.connectionId), not(like(chatSessions.connectionId, "assistant-%"))));
|
|
71289
71290
|
if (projectId) {
|
|
71290
71291
|
conditions2.push(eq(chatSessions.projectId, projectId));
|
|
71291
71292
|
}
|
|
@@ -410994,6 +410995,8 @@ If you create an actionable_event, set an appropriate status:
|
|
|
410994
410995
|
function getSweepSystemPrompt(context) {
|
|
410995
410996
|
return `## Hourly Sweep
|
|
410996
410997
|
|
|
410998
|
+
**This is a non-interactive background session. Do not ask questions or wait for user input.**
|
|
410999
|
+
|
|
410997
411000
|
You are performing your hourly sweep.
|
|
410998
411001
|
|
|
410999
411002
|
**Context:**
|
|
@@ -411032,6 +411035,8 @@ function getRitualSystemPrompt(type) {
|
|
|
411032
411035
|
if (type === "morning") {
|
|
411033
411036
|
return `## Morning Ritual
|
|
411034
411037
|
|
|
411038
|
+
**This is a non-interactive background session. Do not ask questions or wait for user input.**
|
|
411039
|
+
|
|
411035
411040
|
You are performing your morning ritual.
|
|
411036
411041
|
|
|
411037
411042
|
## Output Channels
|
|
@@ -411041,6 +411046,8 @@ Then use the \`message\` tool to send your briefing to the connected channels.`;
|
|
|
411041
411046
|
}
|
|
411042
411047
|
return `## Evening Ritual
|
|
411043
411048
|
|
|
411049
|
+
**This is a non-interactive background session. Do not ask questions or wait for user input.**
|
|
411050
|
+
|
|
411044
411051
|
You are performing your evening ritual.
|
|
411045
411052
|
|
|
411046
411053
|
## Output Channels
|
|
@@ -463732,7 +463739,7 @@ mcpRoutes.all("/", async (c) => {
|
|
|
463732
463739
|
});
|
|
463733
463740
|
const server = new McpServer({
|
|
463734
463741
|
name: "fulcrum",
|
|
463735
|
-
version: "2.3.
|
|
463742
|
+
version: "2.3.5"
|
|
463736
463743
|
});
|
|
463737
463744
|
const client = new FulcrumClient(`http://localhost:${port}`);
|
|
463738
463745
|
registerTools(server, client);
|