{"version":3,"sources":["node_modules/ngx-autosize/fesm2020/ngx-autosize.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { Injectable, EventEmitter, Directive, Input, Output, HostListener, NgModule } from '@angular/core';\nlet WindowRef = /*#__PURE__*/(() => {\n class WindowRef {\n get nativeWindow() {\n return window;\n }\n }\n WindowRef.ɵfac = function WindowRef_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || WindowRef)();\n };\n WindowRef.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: WindowRef,\n factory: WindowRef.ɵfac\n });\n return WindowRef;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst MAX_LOOKUP_RETRIES = 3;\nlet AutosizeDirective = /*#__PURE__*/(() => {\n class AutosizeDirective {\n constructor(element, _window, _zone) {\n this.element = element;\n this._window = _window;\n this._zone = _zone;\n this.onlyGrow = false;\n this.useImportant = false;\n this.resized = new EventEmitter();\n this.autosize = true;\n this.retries = 0;\n this._destroyed = false;\n if (this.element.nativeElement.tagName !== 'TEXTAREA') {\n this._findNestedTextArea();\n } else {\n this.textAreaEl = this.element.nativeElement;\n this.textAreaEl.style['overflow-y'] = 'hidden';\n this._onTextAreaFound();\n }\n }\n set minRows(value) {\n this._minRows = +value;\n if (this.textAreaEl) {\n this.textAreaEl.rows = this._minRows;\n }\n }\n set _autosize(autosize) {\n this.autosize = typeof autosize === 'boolean' ? autosize : true;\n }\n onInput(textArea) {\n this.adjust();\n }\n ngOnDestroy() {\n this._destroyed = true;\n if (this._windowResizeHandler) {\n this._window.nativeWindow.removeEventListener('resize', this._windowResizeHandler, false);\n }\n }\n ngAfterContentChecked() {\n this.adjust();\n }\n ngOnChanges(changes) {\n this.adjust(true);\n }\n _findNestedTextArea() {\n this.textAreaEl = this.element.nativeElement.querySelector('TEXTAREA');\n if (!this.textAreaEl && this.element.nativeElement.shadowRoot) {\n this.textAreaEl = this.element.nativeElement.shadowRoot.querySelector('TEXTAREA');\n }\n if (!this.textAreaEl) {\n if (this.retries >= MAX_LOOKUP_RETRIES) {\n console.warn('ngx-autosize: textarea not found');\n } else {\n this.retries++;\n setTimeout(() => {\n this._findNestedTextArea();\n }, 100);\n }\n return;\n }\n this.textAreaEl.style['overflow-y'] = 'hidden';\n this._onTextAreaFound();\n }\n _onTextAreaFound() {\n this._addWindowResizeHandler();\n setTimeout(() => {\n this.adjust();\n });\n }\n _addWindowResizeHandler() {\n this._windowResizeHandler = debounce(() => {\n this._zone.run(() => {\n this.adjust();\n });\n }, 200);\n this._zone.runOutsideAngular(() => {\n this._window.nativeWindow.addEventListener('resize', this._windowResizeHandler, false);\n });\n }\n adjust(inputsChanged = false) {\n if (this.autosize && !this._destroyed && this.textAreaEl && this.textAreaEl.parentNode) {\n const currentText = this.textAreaEl.value;\n if (inputsChanged === false && currentText === this._oldContent && this.textAreaEl.offsetWidth === this._oldWidth) {\n return;\n }\n this._oldContent = currentText;\n this._oldWidth = this.textAreaEl.offsetWidth;\n const clone = this.textAreaEl.cloneNode(true);\n const parent = this.textAreaEl.parentNode;\n clone.style.width = this.textAreaEl.offsetWidth + 'px';\n clone.style.visibility = 'hidden';\n clone.style.position = 'absolute';\n clone.textContent = currentText;\n parent.appendChild(clone);\n clone.style['overflow-y'] = 'hidden';\n clone.style.height = 'auto';\n let height = clone.scrollHeight;\n // add into height top and bottom borders' width\n let computedStyle = this._window.nativeWindow.getComputedStyle(clone, null);\n height += parseInt(computedStyle.getPropertyValue('border-top-width'));\n height += parseInt(computedStyle.getPropertyValue('border-bottom-width'));\n if (computedStyle.getPropertyValue('box-sizing') === 'content-box') {\n height -= parseInt(computedStyle.getPropertyValue('padding-top'));\n height -= parseInt(computedStyle.getPropertyValue('padding-bottom'));\n }\n const oldHeight = this.textAreaEl.offsetHeight;\n const willGrow = height > oldHeight;\n if (this.onlyGrow === false || willGrow) {\n const lineHeight = this._getLineHeight();\n const rowsCount = height / lineHeight;\n if (this._minRows && this._minRows >= rowsCount) {\n height = this._minRows * lineHeight;\n } else if (this.maxRows && this.maxRows <= rowsCount) {\n // never shrink the textarea if onlyGrow is true\n const maxHeight = this.maxRows * lineHeight;\n height = this.onlyGrow ? Math.max(maxHeight, oldHeight) : maxHeight;\n this.textAreaEl.style['overflow-y'] = 'auto';\n } else {\n this.textAreaEl.style['overflow-y'] = 'hidden';\n }\n const heightStyle = height + 'px';\n const important = this.useImportant ? 'important' : '';\n this.textAreaEl.style.setProperty('height', heightStyle, important);\n this.resized.emit(height);\n }\n parent.removeChild(clone);\n }\n }\n _getLineHeight() {\n let lineHeight = parseInt(this.textAreaEl.style.lineHeight, 10);\n if (isNaN(lineHeight) && this._window.nativeWindow.getComputedStyle) {\n const styles = this._window.nativeWindow.getComputedStyle(this.textAreaEl);\n lineHeight = parseInt(styles.lineHeight, 10);\n }\n if (isNaN(lineHeight)) {\n const fontSize = this._window.nativeWindow.getComputedStyle(this.textAreaEl, null).getPropertyValue('font-size');\n lineHeight = Math.floor(parseInt(fontSize.replace('px', ''), 10) * 1.5);\n }\n return lineHeight;\n }\n }\n AutosizeDirective.ɵfac = function AutosizeDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || AutosizeDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(WindowRef), i0.ɵɵdirectiveInject(i0.NgZone));\n };\n AutosizeDirective.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: AutosizeDirective,\n selectors: [[\"\", \"autosize\", \"\"]],\n hostBindings: function AutosizeDirective_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"input\", function AutosizeDirective_input_HostBindingHandler($event) {\n return ctx.onInput($event.target);\n });\n }\n },\n inputs: {\n minRows: \"minRows\",\n _autosize: [0, \"autosize\", \"_autosize\"],\n maxRows: \"maxRows\",\n onlyGrow: \"onlyGrow\",\n useImportant: \"useImportant\"\n },\n outputs: {\n resized: \"resized\"\n },\n standalone: false,\n features: [i0.ɵɵNgOnChangesFeature]\n });\n return AutosizeDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction debounce(func, timeout) {\n let timer;\n return (...args) => {\n clearTimeout(timer);\n timer = setTimeout(() => {\n func(...args);\n }, timeout);\n };\n}\nlet AutosizeModule = /*#__PURE__*/(() => {\n class AutosizeModule {}\n AutosizeModule.ɵfac = function AutosizeModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || AutosizeModule)();\n };\n AutosizeModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: AutosizeModule\n });\n AutosizeModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [WindowRef],\n imports: [[]]\n });\n return AutosizeModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/*\n * Public API Surface of ngx-autosize\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { AutosizeDirective, AutosizeModule, WindowRef };\n"],"names":["WindowRef","__ngFactoryType__","ɵɵdefineInjectable","MAX_LOOKUP_RETRIES","AutosizeDirective","element","_window","_zone","EventEmitter","value","autosize","textArea","changes","debounce","inputsChanged","currentText","clone","parent","height","computedStyle","oldHeight","willGrow","lineHeight","rowsCount","maxHeight","heightStyle","important","styles","fontSize","ɵɵdirectiveInject","ElementRef","NgZone","ɵɵdefineDirective","rf","ctx","ɵɵlistener","$event","ɵɵNgOnChangesFeature","func","timeout","timer","args","AutosizeModule","ɵɵdefineNgModule","ɵɵdefineInjector"],"mappings":"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","debug_id":"7eec3d17-8a51-5ee0-823d-2544e54ff361"}