{"version":3,"names":["resizeObservers","hasActiveObservations","some","ro","activeTargets","length","hasSkippedObservations","skippedTargets","msg","deliverResizeLoopError","event","ErrorEvent","message","document","createEvent","initEvent","window","dispatchEvent","ResizeObserverBoxOptions","freeze","obj","Object","ResizeObserverSize","inlineSize","blockSize","this","DOMRectReadOnly","x","y","width","height","top","left","bottom","right","prototype","toJSON","_a","fromRect","rectangle","isSVG","target","SVGElement","isHidden","getBBox","_b","offsetWidth","offsetHeight","getClientRects","isElement","Element","scope","ownerDocument","defaultView","isReplacedElement","tagName","type","global","cache","WeakMap","scrollRegexp","verticalRegexp","IE","test","navigator","userAgent","parseDimension","pixel","parseFloat","size","switchSizes","zeroBoxes","devicePixelContentBoxSize","borderBoxSize","contentBoxSize","contentRect","calculateBoxSizes","forceRecalculation","has","get","set","cs","getComputedStyle","svg","ownerSVGElement","removePadding","boxSizing","writingMode","canScrollVertically","overflowY","canScrollHorizontally","overflowX","paddingTop","paddingRight","paddingBottom","paddingLeft","borderTop","borderTopWidth","borderRight","borderRightWidth","borderBottom","borderBottomWidth","borderLeft","borderLeftWidth","horizontalPadding","verticalPadding","horizontalBorderArea","verticalBorderArea","horizontalScrollbarThickness","clientHeight","verticalScrollbarThickness","clientWidth","widthReduction","heightReduction","contentWidth","contentHeight","borderBoxWidth","borderBoxHeight","boxes","Math","round","devicePixelRatio","calculateBoxSize","observedBox","DEVICE_PIXEL_CONTENT_BOX","BORDER_BOX","ResizeObserverEntry","calculateDepthForNode","node","Infinity","depth","parent","parentNode","broadcastActiveObservations","shallowestDepth","callbacks","forEach","processObserver","entries","processTarget","ot","entry","targetDepth","push","lastReportedSize","resizeObserverCallback","callback","call","observer","splice","_i","callbacks_1","gatherActiveObservationsAtDepth","observationTargets","isActive","process","trigger","notify","cb","queueMicroTask","toggle_1","el_1","createTextNode","config","characterData","MutationObserver","observe","textContent","concat","queueResizeObserver","ResizeObserver","requestAnimationFrame","watching","isWatching","CATCH_PERIOD","observerConfig","attributes","childList","subtree","events","time","timeout","Date","now","scheduled","Scheduler","_this","stopped","listener","schedule","run","until","elementsHaveResized","start","stop","body","addEventListener","name","disconnect","removeEventListener","scheduler","updateCount","n","skipNotifyOnElement","display","ResizeObservation","CONTENT_BOX","ResizeObserverDetail","resizeObserver","observerMap","getObservationIndex","i","ResizeObserverController","connect","detail","options","firstObservation","box","unobserve","index","lastObservation","indexOf","slice","arguments","TypeError","toString"],"sources":["node_modules/@juggle/resize-observer/lib/utils/resizeObservers.js","node_modules/@juggle/resize-observer/lib/algorithms/hasActiveObservations.js","node_modules/@juggle/resize-observer/lib/algorithms/hasSkippedObservations.js","node_modules/@juggle/resize-observer/lib/algorithms/deliverResizeLoopError.js","node_modules/@juggle/resize-observer/lib/ResizeObserverBoxOptions.js","node_modules/@juggle/resize-observer/lib/utils/freeze.js","node_modules/@juggle/resize-observer/lib/ResizeObserverSize.js","node_modules/@juggle/resize-observer/lib/DOMRectReadOnly.js","node_modules/@juggle/resize-observer/lib/utils/element.js","node_modules/@juggle/resize-observer/lib/utils/global.js","node_modules/@juggle/resize-observer/lib/algorithms/calculateBoxSize.js","node_modules/@juggle/resize-observer/lib/ResizeObserverEntry.js","node_modules/@juggle/resize-observer/lib/algorithms/calculateDepthForNode.js","node_modules/@juggle/resize-observer/lib/algorithms/broadcastActiveObservations.js","node_modules/@juggle/resize-observer/lib/algorithms/gatherActiveObservationsAtDepth.js","node_modules/@juggle/resize-observer/lib/utils/process.js","node_modules/@juggle/resize-observer/lib/utils/queueMicroTask.js","node_modules/@juggle/resize-observer/lib/utils/queueResizeObserver.js","node_modules/@juggle/resize-observer/lib/utils/scheduler.js","node_modules/@juggle/resize-observer/lib/ResizeObservation.js","node_modules/@juggle/resize-observer/lib/ResizeObserverDetail.js","node_modules/@juggle/resize-observer/lib/ResizeObserverController.js","node_modules/@juggle/resize-observer/lib/ResizeObserver.js"],"sourcesContent":["var resizeObservers = [];\nexport { resizeObservers };\n","import { resizeObservers } from '../utils/resizeObservers';\nvar hasActiveObservations = function () {\n return resizeObservers.some(function (ro) { return ro.activeTargets.length > 0; });\n};\nexport { hasActiveObservations };\n","import { resizeObservers } from '../utils/resizeObservers';\nvar hasSkippedObservations = function () {\n return resizeObservers.some(function (ro) { return ro.skippedTargets.length > 0; });\n};\nexport { hasSkippedObservations };\n","var msg = 'ResizeObserver loop completed with undelivered notifications.';\nvar deliverResizeLoopError = function () {\n var event;\n if (typeof ErrorEvent === 'function') {\n event = new ErrorEvent('error', {\n message: msg\n });\n }\n else {\n event = document.createEvent('Event');\n event.initEvent('error', false, false);\n event.message = msg;\n }\n window.dispatchEvent(event);\n};\nexport { deliverResizeLoopError };\n","var ResizeObserverBoxOptions;\n(function (ResizeObserverBoxOptions) {\n ResizeObserverBoxOptions[\"BORDER_BOX\"] = \"border-box\";\n ResizeObserverBoxOptions[\"CONTENT_BOX\"] = \"content-box\";\n ResizeObserverBoxOptions[\"DEVICE_PIXEL_CONTENT_BOX\"] = \"device-pixel-content-box\";\n})(ResizeObserverBoxOptions || (ResizeObserverBoxOptions = {}));\nexport { ResizeObserverBoxOptions };\n","export var freeze = function (obj) { return Object.freeze(obj); };\n","import { freeze } from './utils/freeze';\nvar ResizeObserverSize = (function () {\n function ResizeObserverSize(inlineSize, blockSize) {\n this.inlineSize = inlineSize;\n this.blockSize = blockSize;\n freeze(this);\n }\n return ResizeObserverSize;\n}());\nexport { ResizeObserverSize };\n","import { freeze } from './utils/freeze';\nvar DOMRectReadOnly = (function () {\n function DOMRectReadOnly(x, y, width, height) {\n this.x = x;\n this.y = y;\n this.width = width;\n this.height = height;\n this.top = this.y;\n this.left = this.x;\n this.bottom = this.top + this.height;\n this.right = this.left + this.width;\n return freeze(this);\n }\n DOMRectReadOnly.prototype.toJSON = function () {\n var _a = this, x = _a.x, y = _a.y, top = _a.top, right = _a.right, bottom = _a.bottom, left = _a.left, width = _a.width, height = _a.height;\n return { x: x, y: y, top: top, right: right, bottom: bottom, left: left, width: width, height: height };\n };\n DOMRectReadOnly.fromRect = function (rectangle) {\n return new DOMRectReadOnly(rectangle.x, rectangle.y, rectangle.width, rectangle.height);\n };\n return DOMRectReadOnly;\n}());\nexport { DOMRectReadOnly };\n","var isSVG = function (target) { return target instanceof SVGElement && 'getBBox' in target; };\nvar isHidden = function (target) {\n if (isSVG(target)) {\n var _a = target.getBBox(), width = _a.width, height = _a.height;\n return !width && !height;\n }\n var _b = target, offsetWidth = _b.offsetWidth, offsetHeight = _b.offsetHeight;\n return !(offsetWidth || offsetHeight || target.getClientRects().length);\n};\nvar isElement = function (obj) {\n var _a;\n if (obj instanceof Element) {\n return true;\n }\n var scope = (_a = obj === null || obj === void 0 ? void 0 : obj.ownerDocument) === null || _a === void 0 ? void 0 : _a.defaultView;\n return !!(scope && obj instanceof scope.Element);\n};\nvar isReplacedElement = function (target) {\n switch (target.tagName) {\n case 'INPUT':\n if (target.type !== 'image') {\n break;\n }\n case 'VIDEO':\n case 'AUDIO':\n case 'EMBED':\n case 'OBJECT':\n case 'CANVAS':\n case 'IFRAME':\n case 'IMG':\n return true;\n }\n return false;\n};\nexport { isSVG, isHidden, isElement, isReplacedElement };\n","export var global = typeof window !== 'undefined' ? window : {};\n","import { ResizeObserverBoxOptions } from '../ResizeObserverBoxOptions';\nimport { ResizeObserverSize } from '../ResizeObserverSize';\nimport { DOMRectReadOnly } from '../DOMRectReadOnly';\nimport { isSVG, isHidden } from '../utils/element';\nimport { freeze } from '../utils/freeze';\nimport { global } from '../utils/global';\nvar cache = new WeakMap();\nvar scrollRegexp = /auto|scroll/;\nvar verticalRegexp = /^tb|vertical/;\nvar IE = (/msie|trident/i).test(global.navigator && global.navigator.userAgent);\nvar parseDimension = function (pixel) { return parseFloat(pixel || '0'); };\nvar size = function (inlineSize, blockSize, switchSizes) {\n if (inlineSize === void 0) { inlineSize = 0; }\n if (blockSize === void 0) { blockSize = 0; }\n if (switchSizes === void 0) { switchSizes = false; }\n return new ResizeObserverSize((switchSizes ? blockSize : inlineSize) || 0, (switchSizes ? inlineSize : blockSize) || 0);\n};\nvar zeroBoxes = freeze({\n devicePixelContentBoxSize: size(),\n borderBoxSize: size(),\n contentBoxSize: size(),\n contentRect: new DOMRectReadOnly(0, 0, 0, 0)\n});\nvar calculateBoxSizes = function (target, forceRecalculation) {\n if (forceRecalculation === void 0) { forceRecalculation = false; }\n if (cache.has(target) && !forceRecalculation) {\n return cache.get(target);\n }\n if (isHidden(target)) {\n cache.set(target, zeroBoxes);\n return zeroBoxes;\n }\n var cs = getComputedStyle(target);\n var svg = isSVG(target) && target.ownerSVGElement && target.getBBox();\n var removePadding = !IE && cs.boxSizing === 'border-box';\n var switchSizes = verticalRegexp.test(cs.writingMode || '');\n var canScrollVertically = !svg && scrollRegexp.test(cs.overflowY || '');\n var canScrollHorizontally = !svg && scrollRegexp.test(cs.overflowX || '');\n var paddingTop = svg ? 0 : parseDimension(cs.paddingTop);\n var paddingRight = svg ? 0 : parseDimension(cs.paddingRight);\n var paddingBottom = svg ? 0 : parseDimension(cs.paddingBottom);\n var paddingLeft = svg ? 0 : parseDimension(cs.paddingLeft);\n var borderTop = svg ? 0 : parseDimension(cs.borderTopWidth);\n var borderRight = svg ? 0 : parseDimension(cs.borderRightWidth);\n var borderBottom = svg ? 0 : parseDimension(cs.borderBottomWidth);\n var borderLeft = svg ? 0 : parseDimension(cs.borderLeftWidth);\n var horizontalPadding = paddingLeft + paddingRight;\n var verticalPadding = paddingTop + paddingBottom;\n var horizontalBorderArea = borderLeft + borderRight;\n var verticalBorderArea = borderTop + borderBottom;\n var horizontalScrollbarThickness = !canScrollHorizontally ? 0 : target.offsetHeight - verticalBorderArea - target.clientHeight;\n var verticalScrollbarThickness = !canScrollVertically ? 0 : target.offsetWidth - horizontalBorderArea - target.clientWidth;\n var widthReduction = removePadding ? horizontalPadding + horizontalBorderArea : 0;\n var heightReduction = removePadding ? verticalPadding + verticalBorderArea : 0;\n var contentWidth = svg ? svg.width : parseDimension(cs.width) - widthReduction - verticalScrollbarThickness;\n var contentHeight = svg ? svg.height : parseDimension(cs.height) - heightReduction - horizontalScrollbarThickness;\n var borderBoxWidth = contentWidth + horizontalPadding + verticalScrollbarThickness + horizontalBorderArea;\n var borderBoxHeight = contentHeight + verticalPadding + horizontalScrollbarThickness + verticalBorderArea;\n var boxes = freeze({\n devicePixelContentBoxSize: size(Math.round(contentWidth * devicePixelRatio), Math.round(contentHeight * devicePixelRatio), switchSizes),\n borderBoxSize: size(borderBoxWidth, borderBoxHeight, switchSizes),\n contentBoxSize: size(contentWidth, contentHeight, switchSizes),\n contentRect: new DOMRectReadOnly(paddingLeft, paddingTop, contentWidth, contentHeight)\n });\n cache.set(target, boxes);\n return boxes;\n};\nvar calculateBoxSize = function (target, observedBox, forceRecalculation) {\n var _a = calculateBoxSizes(target, forceRecalculation), borderBoxSize = _a.borderBoxSize, contentBoxSize = _a.contentBoxSize, devicePixelContentBoxSize = _a.devicePixelContentBoxSize;\n switch (observedBox) {\n case ResizeObserverBoxOptions.DEVICE_PIXEL_CONTENT_BOX:\n return devicePixelContentBoxSize;\n case ResizeObserverBoxOptions.BORDER_BOX:\n return borderBoxSize;\n default:\n return contentBoxSize;\n }\n};\nexport { calculateBoxSize, calculateBoxSizes };\n","import { calculateBoxSizes } from './algorithms/calculateBoxSize';\nimport { freeze } from './utils/freeze';\nvar ResizeObserverEntry = (function () {\n function ResizeObserverEntry(target) {\n var boxes = calculateBoxSizes(target);\n this.target = target;\n this.contentRect = boxes.contentRect;\n this.borderBoxSize = freeze([boxes.borderBoxSize]);\n this.contentBoxSize = freeze([boxes.contentBoxSize]);\n this.devicePixelContentBoxSize = freeze([boxes.devicePixelContentBoxSize]);\n }\n return ResizeObserverEntry;\n}());\nexport { ResizeObserverEntry };\n","import { isHidden } from '../utils/element';\nvar calculateDepthForNode = function (node) {\n if (isHidden(node)) {\n return Infinity;\n }\n var depth = 0;\n var parent = node.parentNode;\n while (parent) {\n depth += 1;\n parent = parent.parentNode;\n }\n return depth;\n};\nexport { calculateDepthForNode };\n","import { resizeObservers } from '../utils/resizeObservers';\nimport { ResizeObserverEntry } from '../ResizeObserverEntry';\nimport { calculateDepthForNode } from './calculateDepthForNode';\nimport { calculateBoxSize } from './calculateBoxSize';\nvar broadcastActiveObservations = function () {\n var shallowestDepth = Infinity;\n var callbacks = [];\n resizeObservers.forEach(function processObserver(ro) {\n if (ro.activeTargets.length === 0) {\n return;\n }\n var entries = [];\n ro.activeTargets.forEach(function processTarget(ot) {\n var entry = new ResizeObserverEntry(ot.target);\n var targetDepth = calculateDepthForNode(ot.target);\n entries.push(entry);\n ot.lastReportedSize = calculateBoxSize(ot.target, ot.observedBox);\n if (targetDepth < shallowestDepth) {\n shallowestDepth = targetDepth;\n }\n });\n callbacks.push(function resizeObserverCallback() {\n ro.callback.call(ro.observer, entries, ro.observer);\n });\n ro.activeTargets.splice(0, ro.activeTargets.length);\n });\n for (var _i = 0, callbacks_1 = callbacks; _i < callbacks_1.length; _i++) {\n var callback = callbacks_1[_i];\n callback();\n }\n return shallowestDepth;\n};\nexport { broadcastActiveObservations };\n","import { resizeObservers } from '../utils/resizeObservers';\nimport { calculateDepthForNode } from './calculateDepthForNode';\nvar gatherActiveObservationsAtDepth = function (depth) {\n resizeObservers.forEach(function processObserver(ro) {\n ro.activeTargets.splice(0, ro.activeTargets.length);\n ro.skippedTargets.splice(0, ro.skippedTargets.length);\n ro.observationTargets.forEach(function processTarget(ot) {\n if (ot.isActive()) {\n if (calculateDepthForNode(ot.target) > depth) {\n ro.activeTargets.push(ot);\n }\n else {\n ro.skippedTargets.push(ot);\n }\n }\n });\n });\n};\nexport { gatherActiveObservationsAtDepth };\n","import { hasActiveObservations } from '../algorithms/hasActiveObservations';\nimport { hasSkippedObservations } from '../algorithms/hasSkippedObservations';\nimport { deliverResizeLoopError } from '../algorithms/deliverResizeLoopError';\nimport { broadcastActiveObservations } from '../algorithms/broadcastActiveObservations';\nimport { gatherActiveObservationsAtDepth } from '../algorithms/gatherActiveObservationsAtDepth';\nvar process = function () {\n var depth = 0;\n gatherActiveObservationsAtDepth(depth);\n while (hasActiveObservations()) {\n depth = broadcastActiveObservations();\n gatherActiveObservationsAtDepth(depth);\n }\n if (hasSkippedObservations()) {\n deliverResizeLoopError();\n }\n return depth > 0;\n};\nexport { process };\n","var trigger;\nvar callbacks = [];\nvar notify = function () { return callbacks.splice(0).forEach(function (cb) { return cb(); }); };\nvar queueMicroTask = function (callback) {\n if (!trigger) {\n var toggle_1 = 0;\n var el_1 = document.createTextNode('');\n var config = { characterData: true };\n new MutationObserver(function () { return notify(); }).observe(el_1, config);\n trigger = function () { el_1.textContent = \"\".concat(toggle_1 ? toggle_1-- : toggle_1++); };\n }\n callbacks.push(callback);\n trigger();\n};\nexport { queueMicroTask };\n","import { queueMicroTask } from './queueMicroTask';\nvar queueResizeObserver = function (cb) {\n queueMicroTask(function ResizeObserver() {\n requestAnimationFrame(cb);\n });\n};\nexport { queueResizeObserver };\n","import { process } from './process';\nimport { global } from './global';\nimport { queueResizeObserver } from './queueResizeObserver';\nvar watching = 0;\nvar isWatching = function () { return !!watching; };\nvar CATCH_PERIOD = 250;\nvar observerConfig = { attributes: true, characterData: true, childList: true, subtree: true };\nvar events = [\n 'resize',\n 'load',\n 'transitionend',\n 'animationend',\n 'animationstart',\n 'animationiteration',\n 'keyup',\n 'keydown',\n 'mouseup',\n 'mousedown',\n 'mouseover',\n 'mouseout',\n 'blur',\n 'focus'\n];\nvar time = function (timeout) {\n if (timeout === void 0) { timeout = 0; }\n return Date.now() + timeout;\n};\nvar scheduled = false;\nvar Scheduler = (function () {\n function Scheduler() {\n var _this = this;\n this.stopped = true;\n this.listener = function () { return _this.schedule(); };\n }\n Scheduler.prototype.run = function (timeout) {\n var _this = this;\n if (timeout === void 0) { timeout = CATCH_PERIOD; }\n if (scheduled) {\n return;\n }\n scheduled = true;\n var until = time(timeout);\n queueResizeObserver(function () {\n var elementsHaveResized = false;\n try {\n elementsHaveResized = process();\n }\n finally {\n scheduled = false;\n timeout = until - time();\n if (!isWatching()) {\n return;\n }\n if (elementsHaveResized) {\n _this.run(1000);\n }\n else if (timeout > 0) {\n _this.run(timeout);\n }\n else {\n _this.start();\n }\n }\n });\n };\n Scheduler.prototype.schedule = function () {\n this.stop();\n this.run();\n };\n Scheduler.prototype.observe = function () {\n var _this = this;\n var cb = function () { return _this.observer && _this.observer.observe(document.body, observerConfig); };\n document.body ? cb() : global.addEventListener('DOMContentLoaded', cb);\n };\n Scheduler.prototype.start = function () {\n var _this = this;\n if (this.stopped) {\n this.stopped = false;\n this.observer = new MutationObserver(this.listener);\n this.observe();\n events.forEach(function (name) { return global.addEventListener(name, _this.listener, true); });\n }\n };\n Scheduler.prototype.stop = function () {\n var _this = this;\n if (!this.stopped) {\n this.observer && this.observer.disconnect();\n events.forEach(function (name) { return global.removeEventListener(name, _this.listener, true); });\n this.stopped = true;\n }\n };\n return Scheduler;\n}());\nvar scheduler = new Scheduler();\nvar updateCount = function (n) {\n !watching && n > 0 && scheduler.start();\n watching += n;\n !watching && scheduler.stop();\n};\nexport { scheduler, updateCount };\n","import { ResizeObserverBoxOptions } from './ResizeObserverBoxOptions';\nimport { calculateBoxSize } from './algorithms/calculateBoxSize';\nimport { isSVG, isReplacedElement } from './utils/element';\nvar skipNotifyOnElement = function (target) {\n return !isSVG(target)\n && !isReplacedElement(target)\n && getComputedStyle(target).display === 'inline';\n};\nvar ResizeObservation = (function () {\n function ResizeObservation(target, observedBox) {\n this.target = target;\n this.observedBox = observedBox || ResizeObserverBoxOptions.CONTENT_BOX;\n this.lastReportedSize = {\n inlineSize: 0,\n blockSize: 0\n };\n }\n ResizeObservation.prototype.isActive = function () {\n var size = calculateBoxSize(this.target, this.observedBox, true);\n if (skipNotifyOnElement(this.target)) {\n this.lastReportedSize = size;\n }\n if (this.lastReportedSize.inlineSize !== size.inlineSize\n || this.lastReportedSize.blockSize !== size.blockSize) {\n return true;\n }\n return false;\n };\n return ResizeObservation;\n}());\nexport { ResizeObservation };\n","var ResizeObserverDetail = (function () {\n function ResizeObserverDetail(resizeObserver, callback) {\n this.activeTargets = [];\n this.skippedTargets = [];\n this.observationTargets = [];\n this.observer = resizeObserver;\n this.callback = callback;\n }\n return ResizeObserverDetail;\n}());\nexport { ResizeObserverDetail };\n","import { scheduler, updateCount } from './utils/scheduler';\nimport { ResizeObservation } from './ResizeObservation';\nimport { ResizeObserverDetail } from './ResizeObserverDetail';\nimport { resizeObservers } from './utils/resizeObservers';\nvar observerMap = new WeakMap();\nvar getObservationIndex = function (observationTargets, target) {\n for (var i = 0; i < observationTargets.length; i += 1) {\n if (observationTargets[i].target === target) {\n return i;\n }\n }\n return -1;\n};\nvar ResizeObserverController = (function () {\n function ResizeObserverController() {\n }\n ResizeObserverController.connect = function (resizeObserver, callback) {\n var detail = new ResizeObserverDetail(resizeObserver, callback);\n observerMap.set(resizeObserver, detail);\n };\n ResizeObserverController.observe = function (resizeObserver, target, options) {\n var detail = observerMap.get(resizeObserver);\n var firstObservation = detail.observationTargets.length === 0;\n if (getObservationIndex(detail.observationTargets, target) < 0) {\n firstObservation && resizeObservers.push(detail);\n detail.observationTargets.push(new ResizeObservation(target, options && options.box));\n updateCount(1);\n scheduler.schedule();\n }\n };\n ResizeObserverController.unobserve = function (resizeObserver, target) {\n var detail = observerMap.get(resizeObserver);\n var index = getObservationIndex(detail.observationTargets, target);\n var lastObservation = detail.observationTargets.length === 1;\n if (index >= 0) {\n lastObservation && resizeObservers.splice(resizeObservers.indexOf(detail), 1);\n detail.observationTargets.splice(index, 1);\n updateCount(-1);\n }\n };\n ResizeObserverController.disconnect = function (resizeObserver) {\n var _this = this;\n var detail = observerMap.get(resizeObserver);\n detail.observationTargets.slice().forEach(function (ot) { return _this.unobserve(resizeObserver, ot.target); });\n detail.activeTargets.splice(0, detail.activeTargets.length);\n };\n return ResizeObserverController;\n}());\nexport { ResizeObserverController };\n","import { ResizeObserverController } from './ResizeObserverController';\nimport { isElement } from './utils/element';\nvar ResizeObserver = (function () {\n function ResizeObserver(callback) {\n if (arguments.length === 0) {\n throw new TypeError(\"Failed to construct 'ResizeObserver': 1 argument required, but only 0 present.\");\n }\n if (typeof callback !== 'function') {\n throw new TypeError(\"Failed to construct 'ResizeObserver': The callback provided as parameter 1 is not a function.\");\n }\n ResizeObserverController.connect(this, callback);\n }\n ResizeObserver.prototype.observe = function (target, options) {\n if (arguments.length === 0) {\n throw new TypeError(\"Failed to execute 'observe' on 'ResizeObserver': 1 argument required, but only 0 present.\");\n }\n if (!isElement(target)) {\n throw new TypeError(\"Failed to execute 'observe' on 'ResizeObserver': parameter 1 is not of type 'Element\");\n }\n ResizeObserverController.observe(this, target, options);\n };\n ResizeObserver.prototype.unobserve = function (target) {\n if (arguments.length === 0) {\n throw new TypeError(\"Failed to execute 'unobserve' on 'ResizeObserver': 1 argument required, but only 0 present.\");\n }\n if (!isElement(target)) {\n throw new TypeError(\"Failed to execute 'unobserve' on 'ResizeObserver': parameter 1 is not of type 'Element\");\n }\n ResizeObserverController.unobserve(this, target);\n };\n ResizeObserver.prototype.disconnect = function () {\n ResizeObserverController.disconnect(this);\n };\n ResizeObserver.toString = function () {\n return 'function ResizeObserver () { [polyfill code] }';\n };\n return ResizeObserver;\n}());\nexport { ResizeObserver };\n"],"mappings":"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","ignoreList":[]}