{"version":3,"file":"ej2-popups.min.js","sources":["../../src/common/position.js","../../src/common/collision.js","../../src/popup/popup.js","../../src/common/resize.js","../../src/spinner/spinner.js","../../src/dialog/dialog.js","../../src/tooltip/tooltip.js"],"sourcesContent":["/**\n * Position library\n */\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nvar elementRect;\nvar popupRect;\nvar element;\nvar parentDocument;\nvar fixedParent = false;\n/**\n *\n * @param {HTMLElement} anchor - specifies the element\n * @param {HTMLElement} element - specifies the element\n * @returns {OffsetPosition} - returns the value\n */\nexport function calculateRelativeBasedPosition(anchor, element) {\n var fixedElement = false;\n var anchorPos = { left: 0, top: 0 };\n var tempAnchor = anchor;\n if (!anchor || !element) {\n return anchorPos;\n }\n if (isNullOrUndefined(element.offsetParent) && element.style.position === 'fixed') {\n fixedElement = true;\n }\n while ((element.offsetParent || fixedElement) && anchor && element.offsetParent !== anchor) {\n anchorPos.left += anchor.offsetLeft;\n anchorPos.top += anchor.offsetTop;\n anchor = anchor.offsetParent;\n }\n anchor = tempAnchor;\n while ((element.offsetParent || fixedElement) && anchor && element.offsetParent !== anchor) {\n anchorPos.left -= anchor.scrollLeft;\n anchorPos.top -= anchor.scrollTop;\n anchor = anchor.parentElement;\n }\n return anchorPos;\n}\n/**\n *\n * @param {Element} currentElement - specifies the element\n * @param {string} positionX - specifies the position\n * @param {string} positionY - specifies the position\n * @param {boolean} parentElement - specifies the boolean\n * @param {ClientRect} targetValues - specifies the client\n * @returns {OffsetPosition} - returns the position\n */\nexport function calculatePosition(currentElement, positionX, positionY, parentElement, targetValues) {\n popupRect = undefined;\n popupRect = targetValues;\n fixedParent = parentElement ? true : false;\n if (!currentElement) {\n return { left: 0, top: 0 };\n }\n if (!positionX) {\n positionX = 'left';\n }\n if (!positionY) {\n positionY = 'top';\n }\n parentDocument = currentElement.ownerDocument;\n element = currentElement;\n var pos = { left: 0, top: 0 };\n return updatePosition(positionX.toLowerCase(), positionY.toLowerCase(), pos);\n}\n/**\n *\n * @param {number} value - specifies the number\n * @param {OffsetPosition} pos - specifies the position\n * @returns {void}\n */\nfunction setPosx(value, pos) {\n pos.left = value;\n}\n/**\n *\n * @param {number} value - specifies the number\n * @param {OffsetPosition} pos - specifies the position\n * @returns {void}\n */\nfunction setPosy(value, pos) {\n pos.top = value;\n}\n/**\n *\n * @param {string} posX - specifies the position\n * @param {string} posY - specifies the position\n * @param {OffsetPosition} pos - specifies the position\n * @returns {OffsetPosition} - returns the postion\n */\nfunction updatePosition(posX, posY, pos) {\n elementRect = element.getBoundingClientRect();\n switch (posY + posX) {\n case 'topcenter':\n setPosx(getElementHCenter(), pos);\n setPosy(getElementTop(), pos);\n break;\n case 'topright':\n setPosx(getElementRight(), pos);\n setPosy(getElementTop(), pos);\n break;\n case 'centercenter':\n setPosx(getElementHCenter(), pos);\n setPosy(getElementVCenter(), pos);\n break;\n case 'centerright':\n setPosx(getElementRight(), pos);\n setPosy(getElementVCenter(), pos);\n break;\n case 'centerleft':\n setPosx(getElementLeft(), pos);\n setPosy(getElementVCenter(), pos);\n break;\n case 'bottomcenter':\n setPosx(getElementHCenter(), pos);\n setPosy(getElementBottom(), pos);\n break;\n case 'bottomright':\n setPosx(getElementRight(), pos);\n setPosy(getElementBottom(), pos);\n break;\n case 'bottomleft':\n setPosx(getElementLeft(), pos);\n setPosy(getElementBottom(), pos);\n break;\n default:\n case 'topleft':\n setPosx(getElementLeft(), pos);\n setPosy(getElementTop(), pos);\n break;\n }\n element = null;\n return pos;\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getBodyScrollTop() {\n return parentDocument.documentElement.scrollTop || parentDocument.body.scrollTop;\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getBodyScrollLeft() {\n return parentDocument.documentElement.scrollLeft || parentDocument.body.scrollLeft;\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getElementBottom() {\n return fixedParent ? elementRect.bottom : elementRect.bottom + getBodyScrollTop();\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getElementVCenter() {\n return getElementTop() + (elementRect.height / 2);\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getElementTop() {\n return fixedParent ? elementRect.top : elementRect.top + getBodyScrollTop();\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getElementLeft() {\n return elementRect.left + getBodyScrollLeft();\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getElementRight() {\n var popupWidth = (element && element.classList.contains('e-date-range-wrapper')) ? (popupRect ? popupRect.width : 0) :\n (popupRect && (elementRect.width >= popupRect.width) ? popupRect.width : 0);\n return elementRect.right + getBodyScrollLeft() - popupWidth;\n}\n/**\n * @returns {number} - specifies the number value\n */\nfunction getElementHCenter() {\n return getElementLeft() + (elementRect.width / 2);\n}\n","/**\n * Collision module.\n */\nimport { calculatePosition } from './position';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nvar parentDocument;\nvar targetContainer;\n/**\n *\n * @param {HTMLElement} element - specifies the element\n * @param {HTMLElement} viewPortElement - specifies the element\n * @param {CollisionCoordinates} axis - specifies the collision coordinates\n * @param {OffsetPosition} position - specifies the position\n * @returns {void}\n */\nexport function fit(element, viewPortElement, axis, position) {\n if (viewPortElement === void 0) { viewPortElement = null; }\n if (axis === void 0) { axis = { X: false, Y: false }; }\n if (!axis.Y && !axis.X) {\n return { left: 0, top: 0 };\n }\n var elemData = element.getBoundingClientRect();\n targetContainer = viewPortElement;\n parentDocument = element.ownerDocument;\n if (!position) {\n position = calculatePosition(element, 'left', 'top');\n }\n if (axis.X) {\n var containerWidth = targetContainer ? getTargetContainerWidth() : getViewPortWidth();\n var containerLeft = ContainerLeft();\n var containerRight = ContainerRight();\n var overLeft = containerLeft - position.left;\n var overRight = position.left + elemData.width - containerRight;\n if (elemData.width > containerWidth) {\n if (overLeft > 0 && overRight <= 0) {\n position.left = containerRight - elemData.width;\n }\n else if (overRight > 0 && overLeft <= 0) {\n position.left = containerLeft;\n }\n else {\n position.left = overLeft > overRight ? (containerRight - elemData.width) : containerLeft;\n }\n }\n else if (overLeft > 0) {\n position.left += overLeft;\n }\n else if (overRight > 0) {\n position.left -= overRight;\n }\n }\n if (axis.Y) {\n var containerHeight = targetContainer ? getTargetContainerHeight() : getViewPortHeight();\n var containerTop = ContainerTop();\n var containerBottom = ContainerBottom();\n var overTop = containerTop - position.top;\n var overBottom = position.top + elemData.height - containerBottom;\n if (elemData.height > containerHeight) {\n if (overTop > 0 && overBottom <= 0) {\n position.top = containerBottom - elemData.height;\n }\n else if (overBottom > 0 && overTop <= 0) {\n position.top = containerTop;\n }\n else {\n position.top = overTop > overBottom ? (containerBottom - elemData.height) : containerTop;\n }\n }\n else if (overTop > 0) {\n position.top += overTop;\n }\n else if (overBottom > 0) {\n position.top -= overBottom;\n }\n }\n return position;\n}\n/**\n *\n * @param {HTMLElement} element - specifies the html element\n * @param {HTMLElement} viewPortElement - specifies the html element\n * @param {number} x - specifies the number\n * @param {number} y - specifies the number\n * @returns {string[]} - returns the string value\n */\nexport function isCollide(element, viewPortElement, x, y) {\n if (viewPortElement === void 0) { viewPortElement = null; }\n var elemOffset = calculatePosition(element, 'left', 'top');\n if (x) {\n elemOffset.left = x;\n }\n if (y) {\n elemOffset.top = y;\n }\n var data = [];\n targetContainer = viewPortElement;\n parentDocument = element.ownerDocument;\n var elementRect = element.getBoundingClientRect();\n var top = elemOffset.top;\n var left = elemOffset.left;\n var right = elemOffset.left + elementRect.width;\n var bottom = elemOffset.top + elementRect.height;\n // eslint-disable-next-line\n var topData = '', leftData = '';\n var yAxis = topCollideCheck(top, bottom);\n var xAxis = leftCollideCheck(left, right);\n if (yAxis.topSide) {\n data.push('top');\n }\n if (xAxis.rightSide) {\n data.push('right');\n }\n if (xAxis.leftSide) {\n data.push('left');\n }\n if (yAxis.bottomSide) {\n data.push('bottom');\n }\n return data;\n}\n/**\n *\n * @param {HTMLElement} element - specifies the element\n * @param {HTMLElement} target - specifies the element\n * @param {number} offsetX - specifies the number\n * @param {number} offsetY - specifies the number\n * @param {string} positionX - specifies the string value\n * @param {string} positionY - specifies the string value\n * @param {HTMLElement} viewPortElement - specifies the element\n * @param {CollisionCoordinates} axis - specifies the collision axis\n * @param {boolean} fixedParent - specifies the boolean\n * @returns {void}\n */\nexport function flip(element, target, offsetX, offsetY, positionX, positionY, viewPortElement, \n/* eslint-disable */\naxis, fixedParent) {\n if (viewPortElement === void 0) { viewPortElement = null; }\n if (axis === void 0) { axis = { X: true, Y: true }; }\n if (!target || !element || !positionX || !positionY || (!axis.X && !axis.Y)) {\n return;\n }\n var tEdge = { TL: null,\n TR: null,\n BL: null,\n BR: null\n }, eEdge = {\n TL: null,\n TR: null,\n BL: null,\n BR: null\n /* eslint-enable */\n };\n var elementRect;\n if (window.getComputedStyle(element).display === 'none') {\n var oldVisibility = element.style.visibility;\n element.style.visibility = 'hidden';\n element.style.display = 'block';\n elementRect = element.getBoundingClientRect();\n element.style.removeProperty('display');\n element.style.visibility = oldVisibility;\n }\n else {\n elementRect = element.getBoundingClientRect();\n }\n var pos = {\n posX: positionX, posY: positionY, offsetX: offsetX, offsetY: offsetY, position: { left: 0, top: 0 }\n };\n targetContainer = viewPortElement;\n parentDocument = target.ownerDocument;\n updateElementData(target, tEdge, pos, fixedParent, elementRect);\n setPosition(eEdge, pos, elementRect);\n if (axis.X) {\n leftFlip(target, eEdge, tEdge, pos, elementRect, true);\n }\n if (axis.Y && tEdge.TL.top > -1) {\n topFlip(target, eEdge, tEdge, pos, elementRect, true);\n }\n setPopup(element, pos, elementRect);\n}\n/**\n *\n * @param {HTMLElement} element - specifies the element\n * @param {PositionLocation} pos - specifies the location\n * @param {ClientRect} elementRect - specifies the client rect\n * @returns {void}\n */\nfunction setPopup(element, pos, elementRect) {\n //eslint-disable-next-line\n var left = 0, top = 0;\n if (element.offsetParent != null\n && (getComputedStyle(element.offsetParent).position === 'absolute' ||\n getComputedStyle(element.offsetParent).position === 'relative')) {\n var data = calculatePosition(element.offsetParent, 'left', 'top', false, elementRect);\n left = data.left;\n top = data.top;\n }\n element.style.top = (pos.position.top + pos.offsetY - (top)) + 'px';\n element.style.left = (pos.position.left + pos.offsetX - (left)) + 'px';\n}\n/**\n *\n * @param {HTMLElement} target - specifies the element\n * @param {EdgeOffset} edge - specifies the offset\n * @param {PositionLocation} pos - specifies theloaction\n * @param {boolean} fixedParent - specifies the boolean\n * @param {ClientRect} elementRect - specifies the client rect\n * @returns {void}\n */\nfunction updateElementData(target, edge, pos, fixedParent, elementRect) {\n pos.position = calculatePosition(target, pos.posX, pos.posY, fixedParent, elementRect);\n edge.TL = calculatePosition(target, 'left', 'top', fixedParent, elementRect);\n edge.TR = calculatePosition(target, 'right', 'top', fixedParent, elementRect);\n edge.BR = calculatePosition(target, 'left', 'bottom', fixedParent, elementRect);\n edge.BL = calculatePosition(target, 'right', 'bottom', fixedParent, elementRect);\n}\n/**\n *\n * @param {EdgeOffset} eStatus - specifies the status\n * @param {PositionLocation} pos - specifies the location\n * @param {ClientRect} elementRect - specifies the client\n * @returns {void}\n */\nfunction setPosition(eStatus, pos, elementRect) {\n eStatus.TL = { top: pos.position.top + pos.offsetY, left: pos.position.left + pos.offsetX };\n eStatus.TR = { top: eStatus.TL.top, left: eStatus.TL.left + elementRect.width };\n eStatus.BL = { top: eStatus.TL.top + elementRect.height,\n left: eStatus.TL.left };\n eStatus.BR = { top: eStatus.TL.top + elementRect.height,\n left: eStatus.TL.left + elementRect.width };\n}\n/**\n *\n * @param {number} left - specifies the number\n * @param {number} right - specifies the number\n * @returns {LeftCorners} - returns the value\n */\nfunction leftCollideCheck(left, right) {\n //eslint-disable-next-line\n var leftSide = false, rightSide = false;\n if (((left - getBodyScrollLeft()) < ContainerLeft())) {\n leftSide = true;\n }\n if (right > ContainerRight()) {\n rightSide = true;\n }\n return { leftSide: leftSide, rightSide: rightSide };\n}\n/**\n *\n * @param {HTMLElement} target - specifies the element\n * @param {EdgeOffset} edge - specifes the element\n * @param {EdgeOffset} tEdge - specifies the edge offset\n * @param {PositionLocation} pos - specifes the location\n * @param {ClientRect} elementRect - specifies the client\n * @param {boolean} deepCheck - specifies the boolean value\n * @returns {void}\n */\nfunction leftFlip(target, edge, tEdge, pos, elementRect, deepCheck) {\n var collideSide = leftCollideCheck(edge.TL.left, edge.TR.left);\n if ((tEdge.TL.left - getBodyScrollLeft()) <= ContainerLeft()) {\n collideSide.leftSide = false;\n }\n if (tEdge.TR.left > ContainerRight()) {\n collideSide.rightSide = false;\n }\n if ((collideSide.leftSide && !collideSide.rightSide) || (!collideSide.leftSide && collideSide.rightSide)) {\n if (pos.posX === 'right') {\n pos.posX = 'left';\n }\n else {\n pos.posX = 'right';\n }\n pos.offsetX = pos.offsetX + elementRect.width;\n pos.offsetX = -1 * pos.offsetX;\n pos.position = calculatePosition(target, pos.posX, pos.posY, false);\n setPosition(edge, pos, elementRect);\n if (deepCheck) {\n leftFlip(target, edge, tEdge, pos, elementRect, false);\n }\n }\n}\n/**\n *\n * @param {HTMLElement} target - specifies the element\n * @param {EdgeOffset} edge - specifies the offset\n * @param {EdgeOffset} tEdge - specifies the offset\n * @param {PositionLocation} pos - specifies the location\n * @param {ClientRect} elementRect - specifies the client rect\n * @param {boolean} deepCheck - specifies the boolean\n * @returns {void}\n */\nfunction topFlip(target, edge, tEdge, pos, elementRect, deepCheck) {\n var collideSide = topCollideCheck(edge.TL.top, edge.BL.top);\n if ((tEdge.TL.top - getBodyScrollTop()) <= ContainerTop()) {\n collideSide.topSide = false;\n }\n if (tEdge.BL.top >= ContainerBottom() && target.getBoundingClientRect().bottom < window.innerHeight) {\n collideSide.bottomSide = false;\n }\n if ((collideSide.topSide && !collideSide.bottomSide) || (!collideSide.topSide && collideSide.bottomSide)) {\n if (pos.posY === 'top') {\n pos.posY = 'bottom';\n }\n else {\n pos.posY = 'top';\n }\n pos.offsetY = pos.offsetY + elementRect.height;\n pos.offsetY = -1 * pos.offsetY;\n pos.position = calculatePosition(target, pos.posX, pos.posY, false, elementRect);\n setPosition(edge, pos, elementRect);\n if (deepCheck) {\n topFlip(target, edge, tEdge, pos, elementRect, false);\n }\n }\n}\n/**\n *\n * @param {number} top - specifies the number\n * @param {number} bottom - specifies the number\n * @returns {TopCorners} - retyrns the value\n */\nfunction topCollideCheck(top, bottom) {\n //eslint-disable-next-line\n var topSide = false, bottomSide = false;\n if ((top - getBodyScrollTop()) < ContainerTop()) {\n topSide = true;\n }\n if (bottom > ContainerBottom()) {\n bottomSide = true;\n }\n return { topSide: topSide, bottomSide: bottomSide };\n}\n/**\n * @returns {void}\n */\nfunction getTargetContainerWidth() {\n return targetContainer.getBoundingClientRect().width;\n}\n/**\n * @returns {void}\n */\nfunction getTargetContainerHeight() {\n return targetContainer.getBoundingClientRect().height;\n}\n/**\n * @returns {void}\n */\nfunction getTargetContainerLeft() {\n return targetContainer.getBoundingClientRect().left;\n}\n/**\n * @returns {void}\n */\nfunction getTargetContainerTop() {\n return targetContainer.getBoundingClientRect().top;\n}\n//eslint-disable-next-line\nfunction ContainerTop() {\n if (targetContainer) {\n return getTargetContainerTop();\n }\n return 0;\n}\n//eslint-disable-next-line\nfunction ContainerLeft() {\n if (targetContainer) {\n return getTargetContainerLeft();\n }\n return 0;\n}\n//eslint-disable-next-line\nfunction ContainerRight() {\n if (targetContainer) {\n return (getBodyScrollLeft() + getTargetContainerLeft() + getTargetContainerWidth());\n }\n return (getBodyScrollLeft() + getViewPortWidth());\n}\n//eslint-disable-next-line\nfunction ContainerBottom() {\n if (targetContainer) {\n return (getBodyScrollTop() + getTargetContainerTop() + getTargetContainerHeight());\n }\n return (getBodyScrollTop() + getViewPortHeight());\n}\n/**\n * @returns {void}\n */\nfunction getBodyScrollTop() {\n // if(targetContainer)\n // return targetContainer.scrollTop;\n return parentDocument.documentElement.scrollTop || parentDocument.body.scrollTop;\n}\n/**\n * @returns {void}\n */\nfunction getBodyScrollLeft() {\n // if(targetContainer)\n // return targetContainer.scrollLeft;\n return parentDocument.documentElement.scrollLeft || parentDocument.body.scrollLeft;\n}\n/**\n * @returns {void}\n */\nfunction getViewPortHeight() {\n return window.innerHeight;\n}\n/**\n * @returns {void}\n */\nfunction getViewPortWidth() {\n var windowWidth = window.innerWidth;\n var documentReact = document.documentElement.getBoundingClientRect();\n var offsetWidth = (isNullOrUndefined(document.documentElement)) ? 0 : documentReact.width;\n return windowWidth - (windowWidth - offsetWidth);\n}\n","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nimport { setStyleAttribute, addClass, removeClass, ChildProperty, Complex } from '@syncfusion/ej2-base';\nimport { isNullOrUndefined, formatUnit } from '@syncfusion/ej2-base';\nimport { Browser } from '@syncfusion/ej2-base';\nimport { calculatePosition, calculateRelativeBasedPosition } from '../common/position';\nimport { Animation, Property, Event, Component } from '@syncfusion/ej2-base';\nimport { NotifyPropertyChanges } from '@syncfusion/ej2-base';\nimport { EventHandler } from '@syncfusion/ej2-base';\nimport { flip, fit, isCollide } from '../common/collision';\n/**\n * Specifies the offset position values.\n */\nvar PositionData = /** @class */ (function (_super) {\n __extends(PositionData, _super);\n function PositionData() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n __decorate([\n Property('left')\n ], PositionData.prototype, \"X\", void 0);\n __decorate([\n Property('top')\n ], PositionData.prototype, \"Y\", void 0);\n return PositionData;\n}(ChildProperty));\nexport { PositionData };\n// don't use space in classNames\nvar CLASSNAMES = {\n ROOT: 'e-popup',\n RTL: 'e-rtl',\n OPEN: 'e-popup-open',\n CLOSE: 'e-popup-close'\n};\n/**\n * Represents the Popup Component\n * ```html\n *
\n *
Popup Content
\n * ```\n * ```typescript\n * \n * ```\n */\nvar Popup = /** @class */ (function (_super) {\n __extends(Popup, _super);\n function Popup(element, options) {\n return _super.call(this, options, element) || this;\n }\n /**\n * Called internally if any of the property value changed.\n *\n * @param {PopupModel} newProp - specifies the new property\n * @param {PopupModel} oldProp - specifies the old property\n * @private\n * @returns {void}\n */\n Popup.prototype.onPropertyChanged = function (newProp, oldProp) {\n for (var _i = 0, _a = Object.keys(newProp); _i < _a.length; _i++) {\n var prop = _a[_i];\n switch (prop) {\n case 'width':\n setStyleAttribute(this.element, { 'width': formatUnit(newProp.width) });\n break;\n case 'height':\n setStyleAttribute(this.element, { 'height': formatUnit(newProp.height) });\n break;\n case 'zIndex':\n setStyleAttribute(this.element, { 'zIndex': newProp.zIndex });\n break;\n case 'enableRtl':\n this.setEnableRtl();\n break;\n case 'position':\n case 'relateTo':\n this.refreshPosition();\n break;\n case 'offsetX':\n // eslint-disable-next-line\n var x = newProp.offsetX - oldProp.offsetX;\n this.element.style.left = (parseInt(this.element.style.left, 10) + (x)).toString() + 'px';\n break;\n case 'offsetY':\n // eslint-disable-next-line\n var y = newProp.offsetY - oldProp.offsetY;\n this.element.style.top = (parseInt(this.element.style.top, 10) + (y)).toString() + 'px';\n break;\n case 'content':\n this.setContent();\n break;\n case 'actionOnScroll':\n if (newProp.actionOnScroll !== 'none') {\n this.wireScrollEvents();\n }\n else {\n this.unwireScrollEvents();\n }\n break;\n }\n }\n };\n /**\n * gets the Component module name.\n *\n * @returns {void}\n * @private\n */\n Popup.prototype.getModuleName = function () {\n return 'popup';\n };\n /**\n * To resolve if any collision occurs.\n *\n * @returns {void}\n */\n Popup.prototype.resolveCollision = function () {\n this.checkCollision();\n };\n /**\n * gets the persisted state properties of the Component.\n *\n * @returns {void}\n */\n Popup.prototype.getPersistData = function () {\n return this.addOnPersist([]);\n };\n /**\n * To destroy the control.\n *\n * @returns {void}\n */\n Popup.prototype.destroy = function () {\n if (this.element.classList.contains('e-popup-open')) {\n this.unwireEvents();\n }\n this.element.classList.remove(CLASSNAMES.ROOT, CLASSNAMES.RTL, CLASSNAMES.OPEN, CLASSNAMES.CLOSE);\n this.content = null;\n this.relateTo = null;\n _super.prototype.destroy.call(this);\n };\n /**\n * To Initialize the control rendering\n *\n * @returns {void}\n * @private\n */\n Popup.prototype.render = function () {\n this.element.classList.add(CLASSNAMES.ROOT);\n var styles = {};\n if (this.zIndex !== 1000) {\n styles.zIndex = this.zIndex;\n }\n if (this.width !== 'auto') {\n styles.width = formatUnit(this.width);\n }\n if (this.height !== 'auto') {\n styles.height = formatUnit(this.height);\n }\n setStyleAttribute(this.element, styles);\n this.fixedParent = false;\n this.setEnableRtl();\n this.setContent();\n };\n Popup.prototype.wireEvents = function () {\n if (Browser.isDevice) {\n EventHandler.add(window, 'orientationchange', this.orientationOnChange, this);\n }\n if (this.actionOnScroll !== 'none') {\n this.wireScrollEvents();\n }\n };\n Popup.prototype.wireScrollEvents = function () {\n if (this.getRelateToElement()) {\n for (var _i = 0, _a = this.getScrollableParent(this.getRelateToElement()); _i < _a.length; _i++) {\n var parent_1 = _a[_i];\n EventHandler.add(parent_1, 'scroll', this.scrollRefresh, this);\n }\n }\n };\n Popup.prototype.unwireEvents = function () {\n if (Browser.isDevice) {\n EventHandler.remove(window, 'orientationchange', this.orientationOnChange);\n }\n if (this.actionOnScroll !== 'none') {\n this.unwireScrollEvents();\n }\n };\n Popup.prototype.unwireScrollEvents = function () {\n if (this.getRelateToElement()) {\n for (var _i = 0, _a = this.getScrollableParent(this.getRelateToElement()); _i < _a.length; _i++) {\n var parent_2 = _a[_i];\n EventHandler.remove(parent_2, 'scroll', this.scrollRefresh);\n }\n }\n };\n Popup.prototype.getRelateToElement = function () {\n var relateToElement = this.relateTo === '' || isNullOrUndefined(this.relateTo) ?\n document.body : this.relateTo;\n this.setProperties({ relateTo: relateToElement }, true);\n return ((typeof this.relateTo) === 'string') ?\n document.querySelector(this.relateTo) : this.relateTo;\n };\n Popup.prototype.scrollRefresh = function (e) {\n if (this.actionOnScroll === 'reposition') {\n if (!isNullOrUndefined(this.element) && !(this.element.offsetParent === e.target ||\n (this.element.offsetParent && this.element.offsetParent.tagName === 'BODY' &&\n e.target.parentElement == null))) {\n this.refreshPosition();\n }\n }\n else if (this.actionOnScroll === 'hide') {\n this.hide();\n }\n if (this.actionOnScroll !== 'none') {\n if (this.getRelateToElement()) {\n var targetVisible = this.isElementOnViewport(this.getRelateToElement(), e.target);\n if (!targetVisible && !this.targetInvisibleStatus) {\n this.trigger('targetExitViewport');\n this.targetInvisibleStatus = true;\n }\n else if (targetVisible) {\n this.targetInvisibleStatus = false;\n }\n }\n }\n };\n /**\n * This method is to get the element visibility on viewport when scroll\n * the page. This method will returns true even though 1 px of element\n * part is in visible.\n *\n * @param {HTMLElement} relateToElement - specifies the element\n * @param {HTMLElement} scrollElement - specifies the scroll element\n * @returns {boolean} - retruns the boolean\n */\n // eslint-disable-next-line\n Popup.prototype.isElementOnViewport = function (relateToElement, scrollElement) {\n var scrollParents = this.getScrollableParent(relateToElement);\n for (var parent_3 = 0; parent_3 < scrollParents.length; parent_3++) {\n if (this.isElementVisible(relateToElement, scrollParents[parent_3])) {\n continue;\n }\n else {\n return false;\n }\n }\n return true;\n };\n Popup.prototype.isElementVisible = function (relateToElement, scrollElement) {\n var rect = this.checkGetBoundingClientRect(relateToElement);\n if (!rect.height || !rect.width) {\n return false;\n }\n if (!isNullOrUndefined(this.checkGetBoundingClientRect(scrollElement))) {\n var parent_4 = scrollElement.getBoundingClientRect();\n return !(rect.bottom < parent_4.top) &&\n (!(rect.bottom > parent_4.bottom) &&\n (!(rect.right > parent_4.right) &&\n !(rect.left < parent_4.left)));\n }\n else {\n var win = window;\n var windowView = {\n top: win.scrollY,\n left: win.scrollX,\n right: win.scrollX + win.outerWidth,\n bottom: win.scrollY + win.outerHeight\n };\n var off = calculatePosition(relateToElement);\n var ele = {\n top: off.top,\n left: off.left,\n right: off.left + rect.width,\n bottom: off.top + rect.height\n };\n var elementView = {\n top: windowView.bottom - ele.top,\n left: windowView.right - ele.left,\n bottom: ele.bottom - windowView.top,\n right: ele.right - windowView.left\n };\n return elementView.top > 0\n && elementView.left > 0\n && elementView.right > 0\n && elementView.bottom > 0;\n }\n };\n /**\n * Initialize the event handler\n *\n * @returns {void}\n * @private\n */\n Popup.prototype.preRender = function () {\n //There is no event handler\n };\n Popup.prototype.setEnableRtl = function () {\n this.reposition();\n // eslint-disable-next-line\n this.enableRtl ? this.element.classList.add(CLASSNAMES.RTL) : this.element.classList.remove(CLASSNAMES.RTL);\n };\n Popup.prototype.setContent = function () {\n if (!isNullOrUndefined(this.content)) {\n this.element.innerHTML = '';\n if (typeof (this.content) === 'string') {\n this.element.textContent = this.content;\n }\n else {\n var relateToElem = this.getRelateToElement();\n // eslint-disable-next-line\n var props = this.content.props;\n if (!relateToElem.classList.contains('e-dropdown-btn') || isNullOrUndefined(props)) {\n this.element.appendChild(this.content);\n }\n }\n }\n };\n Popup.prototype.orientationOnChange = function () {\n var _this = this;\n setTimeout(function () {\n _this.refreshPosition();\n }, 200);\n };\n // eslint-disable-next-line\n /**\n * Based on the `relative` element and `offset` values, `Popup` element position will refreshed.\n *\n * @returns {void}\n */\n Popup.prototype.refreshPosition = function (target, collision) {\n if (!isNullOrUndefined(target)) {\n this.checkFixedParent(target);\n }\n this.reposition();\n if (!collision) {\n this.checkCollision();\n }\n };\n Popup.prototype.reposition = function () {\n var pos;\n var position;\n var relateToElement = this.getRelateToElement();\n if (typeof this.position.X === 'number' && typeof this.position.Y === 'number') {\n pos = { left: this.position.X, top: this.position.Y };\n }\n else if ((typeof this.position.X === 'string' && typeof this.position.Y === 'number') ||\n (typeof this.position.X === 'number' && typeof this.position.Y === 'string')) {\n var parentDisplay = void 0;\n var display = this.element.style.display;\n this.element.style.display = 'block';\n if (this.element.classList.contains('e-dlg-modal')) {\n parentDisplay = this.element.parentElement.style.display;\n this.element.parentElement.style.display = 'block';\n }\n position = this.getAnchorPosition(relateToElement, this.element, this.position, this.offsetX, this.offsetY);\n if (typeof this.position.X === 'string') {\n pos = { left: position.left, top: this.position.Y };\n }\n else {\n pos = { left: this.position.X, top: position.top };\n }\n this.element.style.display = display;\n if (this.element.classList.contains('e-dlg-modal')) {\n this.element.parentElement.style.display = parentDisplay;\n }\n }\n else if (relateToElement) {\n var display = this.element.style.display;\n this.element.style.display = 'block';\n pos = this.getAnchorPosition(relateToElement, this.element, this.position, this.offsetX, this.offsetY);\n this.element.style.display = display;\n }\n else {\n pos = { left: 0, top: 0 };\n }\n if (!isNullOrUndefined(pos)) {\n this.element.style.left = pos.left + 'px';\n this.element.style.top = pos.top + 'px';\n }\n };\n Popup.prototype.checkGetBoundingClientRect = function (ele) {\n var eleRect;\n try {\n eleRect = ele.getBoundingClientRect();\n return eleRect;\n }\n catch (error) {\n return null;\n }\n };\n Popup.prototype.getAnchorPosition = function (anchorEle, ele, position, offsetX, offsetY) {\n var eleRect = this.checkGetBoundingClientRect(ele);\n var anchorRect = this.checkGetBoundingClientRect(anchorEle);\n if (isNullOrUndefined(eleRect) || isNullOrUndefined(anchorRect)) {\n return null;\n }\n var anchor = anchorEle;\n var anchorPos = { left: 0, top: 0 };\n if (ele.offsetParent && ele.offsetParent.tagName === 'BODY' && anchorEle.tagName === 'BODY') {\n anchorPos = calculatePosition(anchorEle);\n }\n else {\n if ((ele.classList.contains('e-dlg-modal') && anchor.tagName !== 'BODY')) {\n ele = ele.parentElement;\n }\n anchorPos = calculateRelativeBasedPosition(anchor, ele);\n }\n switch (position.X) {\n default:\n case 'left':\n break;\n case 'center':\n if ((ele.classList.contains('e-dlg-modal') && anchor.tagName === 'BODY' && this.targetType === 'container')) {\n anchorPos.left += (window.innerWidth / 2 - eleRect.width / 2);\n }\n else if (this.targetType === 'container') {\n anchorPos.left += (anchorRect.width / 2 - eleRect.width / 2);\n }\n else {\n anchorPos.left += (anchorRect.width / 2);\n }\n break;\n case 'right':\n if ((ele.classList.contains('e-dlg-modal') && anchor.tagName === 'BODY' && this.targetType === 'container')) {\n anchorPos.left += (window.innerWidth - eleRect.width);\n }\n else if (this.targetType === 'container') {\n anchorPos.left += (anchorRect.width - eleRect.width);\n }\n else {\n anchorPos.left += (anchorRect.width);\n }\n break;\n }\n switch (position.Y) {\n default:\n case 'top':\n break;\n case 'center':\n if ((ele.classList.contains('e-dlg-modal') && anchor.tagName === 'BODY' && this.targetType === 'container')) {\n anchorPos.top += (window.innerHeight / 2 - eleRect.height / 2);\n }\n else if (this.targetType === 'container') {\n anchorPos.top += (anchorRect.height / 2 - eleRect.height / 2);\n }\n else {\n anchorPos.top += (anchorRect.height / 2);\n }\n break;\n case 'bottom':\n if ((ele.classList.contains('e-dlg-modal') && anchor.tagName === 'BODY' && this.targetType === 'container')) {\n anchorPos.top += (window.innerHeight - eleRect.height);\n }\n else if (this.targetType === 'container') {\n anchorPos.top += (anchorRect.height - eleRect.height);\n }\n else {\n anchorPos.top += (anchorRect.height);\n }\n break;\n }\n anchorPos.left += offsetX;\n anchorPos.top += offsetY;\n return anchorPos;\n };\n Popup.prototype.callFlip = function (param) {\n var relateToElement = this.getRelateToElement();\n flip(this.element, relateToElement, this.offsetX, this.offsetY, this.position.X, this.position.Y, this.viewPortElement, param, this.fixedParent);\n };\n Popup.prototype.callFit = function (param) {\n if (isCollide(this.element, this.viewPortElement).length !== 0) {\n if (isNullOrUndefined(this.viewPortElement)) {\n var data = fit(this.element, this.viewPortElement, param);\n if (param.X) {\n this.element.style.left = data.left + 'px';\n }\n if (param.Y) {\n this.element.style.top = data.top + 'px';\n }\n }\n else {\n var elementRect = this.checkGetBoundingClientRect(this.element);\n var viewPortRect = this.checkGetBoundingClientRect(this.viewPortElement);\n if (isNullOrUndefined(elementRect) || isNullOrUndefined(viewPortRect)) {\n return null;\n }\n if (param && param.Y === true) {\n if (viewPortRect.top > elementRect.top) {\n this.element.style.top = '0px';\n }\n else if (viewPortRect.bottom < elementRect.bottom) {\n this.element.style.top = parseInt(this.element.style.top, 10) - (elementRect.bottom - viewPortRect.bottom) + 'px';\n }\n }\n if (param && param.X === true) {\n if (viewPortRect.right < elementRect.right) {\n this.element.style.left = parseInt(this.element.style.left, 10) - (elementRect.right - viewPortRect.right) + 'px';\n }\n else if (viewPortRect.left > elementRect.left) {\n this.element.style.left = parseInt(this.element.style.left, 10) + (viewPortRect.left - elementRect.left) + 'px';\n }\n }\n }\n }\n };\n Popup.prototype.checkCollision = function () {\n var horz = this.collision.X;\n var vert = this.collision.Y;\n if (horz === 'none' && vert === 'none') {\n return;\n }\n if (horz === 'flip' && vert === 'flip') {\n this.callFlip({ X: true, Y: true });\n }\n else if (horz === 'fit' && vert === 'fit') {\n this.callFit({ X: true, Y: true });\n }\n else {\n if (horz === 'flip') {\n this.callFlip({ X: true, Y: false });\n }\n else if (vert === 'flip') {\n this.callFlip({ Y: true, X: false });\n }\n if (horz === 'fit') {\n this.callFit({ X: true, Y: false });\n }\n else if (vert === 'fit') {\n this.callFit({ X: false, Y: true });\n }\n }\n };\n /**\n * Shows the popup element from screen.\n *\n * @returns {void}\n * @param {AnimationModel} animationOptions - specifies the model\n * @param { HTMLElement } relativeElement - To calculate the zIndex value dynamically.\n */\n Popup.prototype.show = function (animationOptions, relativeElement) {\n var _this = this;\n var relateToElement = this.getRelateToElement();\n if (relateToElement.classList.contains('e-filemanager')) {\n this.fmDialogContainer = this.element.getElementsByClassName('e-file-select-wrap')[0];\n }\n this.wireEvents();\n if (!isNullOrUndefined(this.fmDialogContainer) && Browser.isIos) {\n this.fmDialogContainer.style.display = 'block';\n }\n if (this.zIndex === 1000 || !isNullOrUndefined(relativeElement)) {\n var zIndexElement = (isNullOrUndefined(relativeElement)) ? this.element : relativeElement;\n this.zIndex = getZindexPartial(zIndexElement);\n setStyleAttribute(this.element, { 'zIndex': this.zIndex });\n }\n animationOptions = (!isNullOrUndefined(animationOptions) && typeof animationOptions === 'object') ?\n animationOptions : this.showAnimation;\n if (this.collision.X !== 'none' || this.collision.Y !== 'none') {\n removeClass([this.element], CLASSNAMES.CLOSE);\n addClass([this.element], CLASSNAMES.OPEN);\n this.checkCollision();\n removeClass([this.element], CLASSNAMES.OPEN);\n addClass([this.element], CLASSNAMES.CLOSE);\n }\n if (!isNullOrUndefined(animationOptions)) {\n animationOptions.begin = function () {\n if (!_this.isDestroyed) {\n removeClass([_this.element], CLASSNAMES.CLOSE);\n addClass([_this.element], CLASSNAMES.OPEN);\n }\n };\n animationOptions.end = function () {\n if (!_this.isDestroyed) {\n _this.trigger('open');\n }\n };\n new Animation(animationOptions).animate(this.element);\n }\n else {\n removeClass([this.element], CLASSNAMES.CLOSE);\n addClass([this.element], CLASSNAMES.OPEN);\n this.trigger('open');\n }\n };\n /**\n * Hides the popup element from screen.\n *\n * @param {AnimationModel} animationOptions - To give the animation options.\n * @returns {void}\n */\n Popup.prototype.hide = function (animationOptions) {\n var _this = this;\n animationOptions = (!isNullOrUndefined(animationOptions) && typeof animationOptions === 'object') ?\n animationOptions : this.hideAnimation;\n if (!isNullOrUndefined(animationOptions)) {\n animationOptions.end = function () {\n if (!_this.isDestroyed) {\n removeClass([_this.element], CLASSNAMES.OPEN);\n addClass([_this.element], CLASSNAMES.CLOSE);\n _this.trigger('close');\n }\n };\n new Animation(animationOptions).animate(this.element);\n }\n else {\n removeClass([this.element], CLASSNAMES.OPEN);\n addClass([this.element], CLASSNAMES.CLOSE);\n this.trigger('close');\n }\n this.unwireEvents();\n };\n /**\n * Gets scrollable parent elements for the given element.\n *\n * @returns {void}\n * @param { HTMLElement } element - Specify the element to get the scrollable parents of it.\n */\n Popup.prototype.getScrollableParent = function (element) {\n this.checkFixedParent(element);\n return getScrollableParent(element, this.fixedParent);\n };\n Popup.prototype.checkFixedParent = function (element) {\n var parent = element.parentElement;\n while (parent && parent.tagName !== 'HTML') {\n var parentStyle = getComputedStyle(parent);\n if (parentStyle.position === 'fixed' && !isNullOrUndefined(this.element) && this.element.offsetParent &&\n this.element.offsetParent.tagName === 'BODY' && getComputedStyle(this.element.offsetParent).overflow !== 'hidden') {\n this.element.style.top = window.scrollY > parseInt(this.element.style.top, 10) ?\n formatUnit(window.scrollY - parseInt(this.element.style.top, 10))\n : formatUnit(parseInt(this.element.style.top, 10) - window.scrollY);\n this.element.style.position = 'fixed';\n this.fixedParent = true;\n }\n parent = parent.parentElement;\n if (!isNullOrUndefined(this.element) && isNullOrUndefined(this.element.offsetParent) && parentStyle.position === 'fixed'\n && this.element.style.position === 'fixed') {\n this.fixedParent = true;\n }\n }\n };\n __decorate([\n Property('auto')\n ], Popup.prototype, \"height\", void 0);\n __decorate([\n Property('auto')\n ], Popup.prototype, \"width\", void 0);\n __decorate([\n Property(null)\n ], Popup.prototype, \"content\", void 0);\n __decorate([\n Property('container')\n ], Popup.prototype, \"targetType\", void 0);\n __decorate([\n Property(null)\n ], Popup.prototype, \"viewPortElement\", void 0);\n __decorate([\n Property({ X: 'none', Y: 'none' })\n ], Popup.prototype, \"collision\", void 0);\n __decorate([\n Property('')\n ], Popup.prototype, \"relateTo\", void 0);\n __decorate([\n Complex({}, PositionData)\n ], Popup.prototype, \"position\", void 0);\n __decorate([\n Property(0)\n ], Popup.prototype, \"offsetX\", void 0);\n __decorate([\n Property(0)\n ], Popup.prototype, \"offsetY\", void 0);\n __decorate([\n Property(1000)\n ], Popup.prototype, \"zIndex\", void 0);\n __decorate([\n Property(false)\n ], Popup.prototype, \"enableRtl\", void 0);\n __decorate([\n Property('reposition')\n ], Popup.prototype, \"actionOnScroll\", void 0);\n __decorate([\n Property(null)\n ], Popup.prototype, \"showAnimation\", void 0);\n __decorate([\n Property(null)\n ], Popup.prototype, \"hideAnimation\", void 0);\n __decorate([\n Event()\n ], Popup.prototype, \"open\", void 0);\n __decorate([\n Event()\n ], Popup.prototype, \"close\", void 0);\n __decorate([\n Event()\n ], Popup.prototype, \"targetExitViewport\", void 0);\n Popup = __decorate([\n NotifyPropertyChanges\n ], Popup);\n return Popup;\n}(Component));\nexport { Popup };\n/**\n * Gets scrollable parent elements for the given element.\n *\n * @param { HTMLElement } element - Specify the element to get the scrollable parents of it.\n * @param {boolean} fixedParent - specifies the parent element\n * @private\n * @returns {void}\n */\nexport function getScrollableParent(element, fixedParent) {\n var eleStyle = getComputedStyle(element);\n var scrollParents = [];\n var overflowRegex = /(auto|scroll)/;\n var parent = element.parentElement;\n while (parent && parent.tagName !== 'HTML') {\n var parentStyle = getComputedStyle(parent);\n if (!(eleStyle.position === 'absolute' && parentStyle.position === 'static')\n && overflowRegex.test(parentStyle.overflow + parentStyle.overflowY + parentStyle.overflowX)) {\n scrollParents.push(parent);\n }\n parent = parent.parentElement;\n }\n if (!fixedParent) {\n scrollParents.push(document);\n }\n return scrollParents;\n}\n/**\n * Gets the maximum z-index of the given element.\n *\n * @returns {void}\n * @param { HTMLElement } element - Specify the element to get the maximum z-index of it.\n * @private\n */\nexport function getZindexPartial(element) {\n // upto body traversal\n var parent = element.parentElement;\n var parentZindex = [];\n while (parent) {\n if (parent.tagName !== 'BODY') {\n var index = document.defaultView.getComputedStyle(parent, null).getPropertyValue('z-index');\n var position = document.defaultView.getComputedStyle(parent, null).getPropertyValue('position');\n if (index !== 'auto' && position !== 'static') {\n parentZindex.push(index);\n }\n parent = parent.parentElement;\n }\n else {\n break;\n }\n }\n var childrenZindex = [];\n for (var i = 0; i < document.body.children.length; i++) {\n if (!element.isEqualNode(document.body.children[i])) {\n var index = document.defaultView.getComputedStyle(document.body.children[i], null).getPropertyValue('z-index');\n var position = document.defaultView.getComputedStyle(document.body.children[i], null).getPropertyValue('position');\n if (index !== 'auto' && position !== 'static') {\n childrenZindex.push(index);\n }\n }\n }\n childrenZindex.push('999');\n var siblingsZindex = [];\n if (!isNullOrUndefined(element.parentElement) && element.parentElement.tagName !== 'BODY') {\n var childNodes = [].slice.call(element.parentElement.children);\n for (var i = 0; i < childNodes.length; i++) {\n if (!element.isEqualNode(childNodes[i])) {\n var index = document.defaultView.getComputedStyle(childNodes[i], null).getPropertyValue('z-index');\n var position = document.defaultView.getComputedStyle(childNodes[i], null).getPropertyValue('position');\n if (index !== 'auto' && position !== 'static') {\n siblingsZindex.push(index);\n }\n }\n }\n }\n var finalValue = parentZindex.concat(childrenZindex, siblingsZindex);\n // eslint-disable-next-line\n var currentZindexValue = Math.max.apply(Math, finalValue) + 1;\n return currentZindexValue > 2147483647 ? 2147483647 : currentZindexValue;\n}\n/**\n * Gets the maximum z-index of the page.\n *\n * @returns {void}\n * @param { HTMLElement } tagName - Specify the tagName to get the maximum z-index of it.\n * @private\n */\nexport function getMaxZindex(tagName) {\n if (tagName === void 0) { tagName = ['*']; }\n var maxZindex = [];\n for (var i = 0; i < tagName.length; i++) {\n var elements = document.getElementsByTagName(tagName[i]);\n for (var i_1 = 0; i_1 < elements.length; i_1++) {\n var index = document.defaultView.getComputedStyle(elements[i_1], null).getPropertyValue('z-index');\n var position = document.defaultView.getComputedStyle(elements[i_1], null).getPropertyValue('position');\n if (index !== 'auto' && position !== 'static') {\n maxZindex.push(index);\n }\n }\n }\n // eslint-disable-next-line\n var currentZindexValue = Math.max.apply(Math, maxZindex) + 1;\n return currentZindexValue > 2147483647 ? 2147483647 : currentZindexValue;\n}\n","/**\n * Resize library\n */\nimport { isNullOrUndefined as isNOU, createElement, EventHandler, detach, Browser } from '@syncfusion/ej2-base';\n/* eslint-disable */\nvar elementClass = ['north-west', 'north', 'north-east', 'west', 'east', 'south-west', 'south', 'south-east'];\nvar RESIZE_HANDLER = 'e-resize-handle';\nvar FOCUSED_HANDLER = 'e-focused-handle';\nvar DIALOG_RESIZABLE = 'e-dlg-resizable';\nvar RESTRICT_LEFT = ['e-restrict-left'];\nvar RESIZE_WITHIN_VIEWPORT = 'e-resize-viewport';\nvar dialogBorderResize = ['north', 'west', 'east', 'south'];\nvar targetElement;\nvar selectedHandler;\nvar originalWidth = 0;\nvar originalHeight = 0;\nvar originalX = 0;\nvar originalY = 0;\nvar originalMouseX = 0;\nvar originalMouseY = 0;\nvar minHeight;\nvar maxHeight;\nvar minWidth;\nvar maxWidth;\nvar containerElement;\nvar resizeStart = null;\nvar resize = null;\nvar resizeEnd = null;\n/* eslint-enable */\nvar resizeWestWidth;\nvar setLeft = true;\nvar previousWidth = 0;\nvar setWidth = true;\n// eslint-disable-next-line\nvar proxy;\n/**\n *\n * @param {ResizeArgs} args - specifies the resize args\n * @returns {void}\n */\nexport function createResize(args) {\n resizeStart = args.resizeBegin;\n resize = args.resizing;\n resizeEnd = args.resizeComplete;\n targetElement = getDOMElement(args.element);\n containerElement = getDOMElement(args.boundary);\n var directions = args.direction.split(' ');\n for (var i = 0; i < directions.length; i++) {\n if (dialogBorderResize.indexOf(directions[i]) >= 0 && directions[i]) {\n setBorderResizeElm(directions[i]);\n }\n else if (directions[i].trim() !== '') {\n var resizeHandler = createElement('div', { className: 'e-icons ' + RESIZE_HANDLER + ' ' + 'e-' + directions[i] });\n targetElement.appendChild(resizeHandler);\n }\n }\n minHeight = args.minHeight;\n minWidth = args.minWidth;\n maxWidth = args.maxWidth;\n maxHeight = args.maxHeight;\n if (args.proxy && args.proxy.element && args.proxy.element.classList.contains('e-dialog')) {\n wireEvents(args.proxy);\n }\n else {\n wireEvents();\n }\n}\n/**\n *\n * @param {string} direction - specifies the string\n * @returns {void}\n */\nfunction setBorderResizeElm(direction) {\n calculateValues();\n var borderBottom = createElement('span', {\n attrs: {\n 'unselectable': 'on', 'contenteditable': 'false'\n }\n });\n borderBottom.setAttribute('class', 'e-dialog-border-resize e-' + direction);\n if (direction === 'south') {\n borderBottom.style.height = '2px';\n borderBottom.style.width = '100%';\n borderBottom.style.bottom = '0px';\n borderBottom.style.left = '0px';\n }\n if (direction === 'north') {\n borderBottom.style.height = '2px';\n borderBottom.style.width = '100%';\n borderBottom.style.top = '0px';\n borderBottom.style.left = '0px';\n }\n if (direction === 'east') {\n borderBottom.style.height = '100%';\n borderBottom.style.width = '2px';\n borderBottom.style.right = '0px';\n borderBottom.style.top = '0px';\n }\n if (direction === 'west') {\n borderBottom.style.height = '100%';\n borderBottom.style.width = '2px';\n borderBottom.style.left = '0px';\n borderBottom.style.top = '0px';\n }\n targetElement.appendChild(borderBottom);\n}\n/**\n *\n * @param {string} element - specifies the element\n * @returns {HTMLElement} - returns the element\n */\nfunction getDOMElement(element) {\n var domElement;\n if (!isNOU(element)) {\n if (typeof (element) === 'string') {\n domElement = document.querySelector(element);\n }\n else {\n domElement = element;\n }\n }\n return domElement;\n}\n// eslint-disable-next-line\nfunction wireEvents(args) {\n if (isNOU(args)) {\n args = this;\n }\n var resizers = targetElement.querySelectorAll('.' + RESIZE_HANDLER);\n for (var i = 0; i < resizers.length; i++) {\n selectedHandler = resizers[i];\n EventHandler.add(selectedHandler, 'mousedown', onMouseDown, args);\n var eventName = (Browser.info.name === 'msie') ? 'pointerdown' : 'touchstart';\n EventHandler.add(selectedHandler, eventName, onTouchStart, args);\n }\n var borderResizers = targetElement.querySelectorAll('.e-dialog-border-resize');\n if (!isNOU(borderResizers)) {\n for (var i = 0; i < borderResizers.length; i++) {\n selectedHandler = borderResizers[i];\n EventHandler.add(selectedHandler, 'mousedown', onMouseDown, args);\n var eventName = (Browser.info.name === 'msie') ? 'pointerdown' : 'touchstart';\n EventHandler.add(selectedHandler, eventName, onTouchStart, args);\n }\n }\n}\n/* istanbul ignore next */\n/**\n *\n * @param {string} e - specifies the string\n * @returns {string} - returns the string\n */\nfunction getEventType(e) {\n return (e.indexOf('mouse') > -1) ? 'mouse' : 'touch';\n}\n/* istanbul ignore next */\n/**\n *\n * @param {MouseEvent} e - specifies the mouse event\n * @returns {void}\n */\nfunction onMouseDown(e) {\n e.preventDefault();\n targetElement = e.target.parentElement;\n calculateValues();\n originalMouseX = e.pageX;\n originalMouseY = e.pageY;\n e.target.classList.add(FOCUSED_HANDLER);\n if (!isNOU(resizeStart)) {\n proxy = this;\n if (resizeStart(e, proxy) === true) {\n return;\n }\n }\n if (this.targetEle && targetElement && targetElement.querySelector('.' + DIALOG_RESIZABLE)) {\n containerElement = this.target === ('body' || 'document.body' || document.body) ? null : this.targetEle;\n maxWidth = this.targetEle.clientWidth;\n maxHeight = this.targetEle.clientHeight;\n }\n var target = (isNOU(containerElement)) ? document : containerElement;\n EventHandler.add(target, 'mousemove', onMouseMove, this);\n EventHandler.add(document, 'mouseup', onMouseUp, this);\n for (var i = 0; i < RESTRICT_LEFT.length; i++) {\n if (targetElement.classList.contains(RESTRICT_LEFT[i])) {\n setLeft = false;\n }\n else {\n setLeft = true;\n }\n }\n}\n/* istanbul ignore next */\n/**\n *\n * @param {MouseEvent} e - specifies the event\n * @returns {void}\n */\nfunction onMouseUp(e) {\n var touchMoveEvent = (Browser.info.name === 'msie') ? 'pointermove' : 'touchmove';\n var touchEndEvent = (Browser.info.name === 'msie') ? 'pointerup' : 'touchend';\n var target = (isNOU(containerElement)) ? document : containerElement;\n var eventName = (Browser.info.name === 'msie') ? 'pointerdown' : 'touchstart';\n EventHandler.remove(target, 'mousemove', onMouseMove);\n EventHandler.remove(target, touchMoveEvent, onMouseMove);\n EventHandler.remove(target, eventName, onMouseMove);\n if (!isNOU(document.body.querySelector('.' + FOCUSED_HANDLER))) {\n document.body.querySelector('.' + FOCUSED_HANDLER).classList.remove(FOCUSED_HANDLER);\n }\n if (!isNOU(resizeEnd)) {\n proxy = this;\n resizeEnd(e, proxy);\n }\n EventHandler.remove(document, 'mouseup', onMouseUp);\n EventHandler.remove(document, touchEndEvent, onMouseUp);\n}\n/* istanbul ignore next */\n/**\n * @returns {void}\n */\nfunction calculateValues() {\n originalWidth = parseFloat(getComputedStyle(targetElement, null).getPropertyValue('width').replace('px', ''));\n originalHeight = parseFloat(getComputedStyle(targetElement, null).getPropertyValue('height').replace('px', ''));\n originalX = targetElement.getBoundingClientRect().left;\n originalY = targetElement.getBoundingClientRect().top;\n}\n/* istanbul ignore next */\n/**\n *\n * @param {MouseEvent} e - specifies the event\n * @returns {void}\n */\nfunction onTouchStart(e) {\n targetElement = e.target.parentElement;\n calculateValues();\n var dialogResizeElement = targetElement.classList.contains('e-dialog');\n if ((e.target.classList.contains(RESIZE_HANDLER) || e.target.classList.contains('e-dialog-border-resize')) && dialogResizeElement) {\n e.target.classList.add(FOCUSED_HANDLER);\n }\n var coordinates = e.touches ? e.changedTouches[0] : e;\n originalMouseX = coordinates.pageX;\n originalMouseY = coordinates.pageY;\n if (!isNOU(resizeStart)) {\n proxy = this;\n if (resizeStart(e, proxy) === true) {\n return;\n }\n }\n var touchMoveEvent = (Browser.info.name === 'msie') ? 'pointermove' : 'touchmove';\n var touchEndEvent = (Browser.info.name === 'msie') ? 'pointerup' : 'touchend';\n var target = (isNOU(containerElement)) ? document : containerElement;\n EventHandler.add(target, touchMoveEvent, onMouseMove, this);\n EventHandler.add(document, touchEndEvent, onMouseUp, this);\n}\n/* istanbul ignore next */\n/**\n *\n * @param {MouseEvent} e - specifies the event\n * @returns {void}\n */\nfunction onMouseMove(e) {\n if (e.target.classList.contains(RESIZE_HANDLER) && e.target.classList.contains(FOCUSED_HANDLER)) {\n selectedHandler = e.target;\n }\n else if (!isNOU(document.body.querySelector('.' + FOCUSED_HANDLER))) {\n selectedHandler = document.body.querySelector('.' + FOCUSED_HANDLER);\n }\n if (!isNOU(selectedHandler)) {\n var resizeTowards = '';\n for (var i = 0; i < elementClass.length; i++) {\n if (selectedHandler.classList.contains('e-' + elementClass[i])) {\n resizeTowards = elementClass[i];\n }\n }\n if (!isNOU(resize)) {\n proxy = this;\n resize(e, proxy);\n }\n switch (resizeTowards) {\n case 'south':\n resizeSouth(e);\n break;\n case 'north':\n resizeNorth(e);\n break;\n case 'west':\n resizeWest(e);\n break;\n case 'east':\n resizeEast(e);\n break;\n case 'south-east':\n resizeSouth(e);\n resizeEast(e);\n break;\n case 'south-west':\n resizeSouth(e);\n resizeWest(e);\n break;\n case 'north-east':\n resizeNorth(e);\n resizeEast(e);\n break;\n case 'north-west':\n resizeNorth(e);\n resizeWest(e);\n break;\n default: break;\n }\n }\n}\n/* istanbul ignore next */\n/**\n *\n * @param {HTMLElement} element - specifies the eleemnt\n * @returns {ClientRect} - returns the client\n */\nfunction getClientRectValues(element) {\n return element.getBoundingClientRect();\n}\n/* istanbul ignore next */\n// eslint-disable-next-line\nfunction resizeSouth(e) {\n var documentHeight = document.documentElement.clientHeight;\n var calculateValue = false;\n var coordinates = e.touches ? e.changedTouches[0] : e;\n var currentpageY = coordinates.pageY;\n var targetRectValues = getClientRectValues(targetElement);\n var containerRectValues;\n if (!isNOU(containerElement)) {\n containerRectValues = getClientRectValues(containerElement);\n }\n if (!isNOU(containerElement)) {\n calculateValue = true;\n }\n else if (isNOU(containerElement) && ((documentHeight - currentpageY) >= 0 || (targetRectValues.top < 0))) {\n calculateValue = true;\n }\n var calculatedHeight = originalHeight + (currentpageY - originalMouseY);\n calculatedHeight = (calculatedHeight > minHeight) ? calculatedHeight : minHeight;\n var containerTop = 0;\n if (!isNOU(containerElement)) {\n containerTop = containerRectValues.top;\n }\n var borderValue = isNOU(containerElement) ? 0 : containerElement.offsetHeight - containerElement.clientHeight;\n var topWithoutborder = (targetRectValues.top - containerTop) - (borderValue / 2);\n topWithoutborder = (topWithoutborder < 0) ? 0 : topWithoutborder;\n if (targetRectValues.top > 0 && (topWithoutborder + calculatedHeight) > maxHeight) {\n calculateValue = false;\n if (targetElement.classList.contains(RESIZE_WITHIN_VIEWPORT)) {\n return;\n }\n targetElement.style.height = (maxHeight - parseInt(topWithoutborder.toString(), 10)) + 'px';\n return;\n }\n var targetTop = 0;\n if (calculateValue) {\n if (targetRectValues.top < 0 && (documentHeight + (targetRectValues.height + targetRectValues.top) > 0)) {\n targetTop = targetRectValues.top;\n if ((calculatedHeight + targetTop) <= 30) {\n calculatedHeight = (targetRectValues.height - (targetRectValues.height + targetRectValues.top)) + 30;\n }\n }\n if (((calculatedHeight + targetRectValues.top) >= maxHeight)) {\n targetElement.style.height = targetRectValues.height +\n (documentHeight - (targetRectValues.height + targetRectValues.top)) + 'px';\n }\n var calculatedTop = (isNOU(containerElement)) ? targetTop : topWithoutborder;\n if (calculatedHeight >= minHeight && ((calculatedHeight + calculatedTop) <= maxHeight)) {\n targetElement.style.height = calculatedHeight + 'px';\n }\n }\n}\n/* istanbul ignore next */\n// eslint-disable-next-line\nfunction resizeNorth(e) {\n var calculateValue = false;\n var boundaryRectValues;\n var pageY = (getEventType(e.type) === 'mouse') ? e.pageY : e.touches[0].pageY;\n var targetRectValues = getClientRectValues(targetElement);\n if (!isNOU(containerElement)) {\n boundaryRectValues = getClientRectValues(containerElement);\n }\n if (!isNOU(containerElement) && (targetRectValues.top - boundaryRectValues.top) > 0) {\n calculateValue = true;\n }\n else if (isNOU(containerElement) && pageY > 0) {\n calculateValue = true;\n }\n var currentHeight = originalHeight - (pageY - originalMouseY);\n if (calculateValue) {\n if (currentHeight >= minHeight && currentHeight <= maxHeight) {\n var containerTop = 0;\n if (!isNOU(containerElement)) {\n containerTop = boundaryRectValues.top;\n }\n var top_1 = (originalY - containerTop) + (pageY - originalMouseY);\n top_1 = top_1 > 0 ? top_1 : 1;\n targetElement.style.height = currentHeight + 'px';\n targetElement.style.top = top_1 + 'px';\n }\n }\n}\n/* istanbul ignore next */\n// eslint-disable-next-line\nfunction resizeWest(e) {\n var documentWidth = document.documentElement.clientWidth;\n var calculateValue = false;\n var rectValues;\n if (!isNOU(containerElement)) {\n rectValues = getClientRectValues(containerElement);\n }\n var pageX = (getEventType(e.type) === 'mouse') ? e.pageX : e.touches[0].pageX;\n var targetRectValues = getClientRectValues(targetElement);\n var borderValue = isNOU(containerElement) ? 0 : containerElement.offsetWidth - containerElement.clientWidth;\n /* eslint-disable */\n var left = isNOU(containerElement) ? 0 : rectValues.left;\n var containerWidth = isNOU(containerElement) ? 0 : rectValues.width;\n /* eslint-enable */\n if (isNOU(resizeWestWidth)) {\n if (!isNOU(containerElement)) {\n resizeWestWidth = (((targetRectValues.left - left) - borderValue / 2)) + targetRectValues.width;\n resizeWestWidth = resizeWestWidth + (containerWidth - borderValue - resizeWestWidth);\n }\n else {\n resizeWestWidth = documentWidth;\n }\n }\n if (!isNOU(containerElement) &&\n (Math.floor((targetRectValues.left - rectValues.left) + targetRectValues.width +\n (rectValues.right - targetRectValues.right)) - borderValue) <= maxWidth) {\n calculateValue = true;\n }\n else if (isNOU(containerElement) && pageX >= 0) {\n calculateValue = true;\n }\n var calculatedWidth = originalWidth - (pageX - originalMouseX);\n if (setLeft) {\n calculatedWidth = (calculatedWidth > resizeWestWidth) ? resizeWestWidth : calculatedWidth;\n }\n if (calculateValue) {\n if (calculatedWidth >= minWidth && calculatedWidth <= maxWidth) {\n var containerLeft = 0;\n if (!isNOU(containerElement)) {\n containerLeft = rectValues.left;\n }\n var left_1 = (originalX - containerLeft) + (pageX - originalMouseX);\n left_1 = (left_1 > 0) ? left_1 : 1;\n if (calculatedWidth !== previousWidth && setWidth) {\n targetElement.style.width = calculatedWidth + 'px';\n }\n if (setLeft) {\n targetElement.style.left = left_1 + 'px';\n if (left_1 === 1) {\n setWidth = false;\n }\n else {\n setWidth = true;\n }\n }\n }\n }\n previousWidth = calculatedWidth;\n}\n/* istanbul ignore next */\n// eslint-disable-next-line\nfunction resizeEast(e) {\n var documentWidth = document.documentElement.clientWidth;\n var calculateValue = false;\n var containerRectValues;\n if (!isNOU(containerElement)) {\n containerRectValues = getClientRectValues(containerElement);\n }\n var coordinates = e.touches ? e.changedTouches[0] : e;\n var pageX = coordinates.pageX;\n var targetRectValues = getClientRectValues(targetElement);\n if (!isNOU(containerElement) && (((targetRectValues.left - containerRectValues.left) + targetRectValues.width) <= maxWidth\n || (targetRectValues.right - containerRectValues.left) >= targetRectValues.width)) {\n calculateValue = true;\n }\n else if (isNOU(containerElement) && (documentWidth - pageX) > 0) {\n calculateValue = true;\n }\n var calculatedWidth = originalWidth + (pageX - originalMouseX);\n var containerLeft = 0;\n if (!isNOU(containerElement)) {\n containerLeft = containerRectValues.left;\n }\n if (((targetRectValues.left - containerLeft) + calculatedWidth) > maxWidth) {\n calculateValue = false;\n if (targetElement.classList.contains(RESIZE_WITHIN_VIEWPORT)) {\n return;\n }\n targetElement.style.width = maxWidth - (targetRectValues.left - containerLeft) + 'px';\n }\n if (calculateValue) {\n if (calculatedWidth >= minWidth && calculatedWidth <= maxWidth) {\n targetElement.style.width = calculatedWidth + 'px';\n }\n }\n}\n/* istanbul ignore next */\n/**\n *\n * @param {number} minimumHeight - specifies the number\n * @returns {void}\n */\nexport function setMinHeight(minimumHeight) {\n minHeight = minimumHeight;\n}\n/**\n *\n * @param {number} value - specifies the number value\n * @returns {void}\n */\nexport function setMaxWidth(value) {\n maxWidth = value;\n}\n/**\n *\n * @param {number} value - specifies the number value\n * @returns {void}\n */\nexport function setMaxHeight(value) {\n maxHeight = value;\n}\n/**\n * @returns {void}\n */\nexport function removeResize() {\n var handlers = targetElement.querySelectorAll('.' + RESIZE_HANDLER);\n for (var i = 0; i < handlers.length; i++) {\n detach(handlers[i]);\n }\n var borderResizers = targetElement.querySelectorAll('.e-dialog-border-resize');\n if (!isNOU(borderResizers)) {\n for (var i = 0; i < borderResizers.length; i++) {\n detach(borderResizers[i]);\n }\n }\n}\n","import { isNullOrUndefined, classList, createElement } from '@syncfusion/ej2-base';\nvar globalTimeOut = {};\nvar DEFT_MAT_WIDTH = 30;\nvar DEFT_MAT3_WIDTH = 30;\nvar DEFT_FAB_WIDTH = 30;\nvar DEFT_FLUENT_WIDTH = 30;\nvar DEFT_BOOT_WIDTH = 30;\nvar DEFT_BOOT4_WIDTH = 36;\nvar DEFT_BOOT5_WIDTH = 36;\nvar CLS_SHOWSPIN = 'e-spin-show';\nvar CLS_HIDESPIN = 'e-spin-hide';\nvar CLS_MATERIALSPIN = 'e-spin-material';\nvar CLS_MATERIAL3SPIN = 'e-spin-material3';\nvar CLS_FABRICSPIN = 'e-spin-fabric';\nvar CLS_FLUENTSPIN = 'e-spin-fluent';\nvar CLS_TAILWINDSPIN = 'e-spin-tailwind';\nvar CLS_BOOTSPIN = 'e-spin-bootstrap';\nvar CLS_BOOT4SPIN = 'e-spin-bootstrap4';\nvar CLS_BOOT5SPIN = 'e-spin-bootstrap5';\nvar CLS_HIGHCONTRASTSPIN = 'e-spin-high-contrast';\nvar CLS_SPINWRAP = 'e-spinner-pane';\nvar CLS_SPININWRAP = 'e-spinner-inner';\nvar CLS_SPINCIRCLE = 'e-path-circle';\nvar CLS_SPINARC = 'e-path-arc';\nvar CLS_SPINLABEL = 'e-spin-label';\nvar CLS_SPINTEMPLATE = 'e-spin-template';\nvar spinTemplate = null;\nvar spinCSSClass = null;\n// eslint-disable-next-line\n/**\n * Function to change the Spinners in a page globally from application end.\n * ```\n * E.g : blazorSpinner({ action: \"Create\", options: {target: targetElement}, type: \"\" });\n * ```\n *\n * @param {string} action - specifies the string\n * @param {CreateArgs} options - specifies the args\n * @param {string} target - specifies the target\n * @param {string} type - specifes the type\n * @returns {void}\n * @private\n */\nexport function Spinner(action, options, target, type) {\n switch (action) {\n case 'Create':\n /* eslint-disable */\n var element = document.querySelector(options.target);\n var args = { type: type, target: element, cssClass: options.cssClass,\n label: options.label, width: options.width };\n /* eslint-enable */\n createSpinner(args);\n break;\n case 'Show':\n showSpinner(document.querySelector(target));\n break;\n case 'Hide':\n hideSpinner(document.querySelector(target));\n break;\n case 'Set':\n // eslint-disable-next-line\n var setArgs = { cssClass: options.cssClass, type: type };\n setSpinner(setArgs);\n break;\n }\n}\n/**\n * Create a spinner for the specified target element.\n * ```\n * E.g : createSpinner({ target: targetElement, width: '34px', label: 'Loading..' });\n * ```\n *\n * @param {SpinnerArgs} args - specifies the args\n * @param {CreateElementArgs} internalCreateElement - specifis the element args\n * @returns {void}\n * @private\n */\nexport function createSpinner(args, internalCreateElement) {\n if (!args.target) {\n return;\n }\n var radius;\n var makeElement = !isNullOrUndefined(internalCreateElement) ? internalCreateElement : createElement;\n // eslint-disable-next-line\n var container = create_spinner_container(args.target, makeElement);\n if (!isNullOrUndefined(args.cssClass)) {\n container.wrap.classList.add(args.cssClass);\n }\n if (!isNullOrUndefined(args.template) || !isNullOrUndefined(spinTemplate)) {\n var template = !isNullOrUndefined(args.template) ? args.template : spinTemplate;\n container.wrap.classList.add(CLS_SPINTEMPLATE);\n replaceContent(container.wrap, template, spinCSSClass);\n }\n else {\n var theme = !isNullOrUndefined(args.type) ? args.type : getTheme(container.wrap);\n var width = !isNullOrUndefined(args.width) ? args.width : undefined;\n radius = calculateRadius(width, theme);\n setTheme(theme, container.wrap, radius, makeElement);\n if (!isNullOrUndefined(args.label)) {\n createLabel(container.inner_wrap, args.label, makeElement);\n }\n }\n container.wrap.classList.add(CLS_HIDESPIN);\n container = null;\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {string} label - specifies the string\n * @param {createElementParams} makeElement - specifies the element\n * @returns {HTMLElement} - returns the element\n */\nfunction createLabel(container, label, makeElement) {\n var labelEle = makeElement('div', {});\n labelEle.classList.add(CLS_SPINLABEL);\n labelEle.innerHTML = label;\n container.appendChild(labelEle);\n return labelEle;\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createMaterialSpinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Material', radius: radius };\n create_material_element(container, uniqueID, makeElement, CLS_MATERIALSPIN);\n mat_calculate_attributes(radius, container, 'Material', CLS_MATERIALSPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createMaterial3Spinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Material3', radius: radius };\n create_material_element(container, uniqueID, makeElement, CLS_MATERIAL3SPIN);\n mat_calculate_attributes(radius, container, 'Material3', CLS_MATERIAL3SPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createBootstrap4Spinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Bootstrap4', radius: radius };\n create_material_element(container, uniqueID, makeElement, CLS_BOOT4SPIN);\n mat_calculate_attributes(radius, container, 'Bootstrap4', CLS_BOOT4SPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createBootstrap5Spinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Bootstrap5', radius: radius };\n create_material_element(container, uniqueID, makeElement, CLS_BOOT5SPIN);\n mat_calculate_attributes(radius, container, 'Bootstrap5', CLS_BOOT5SPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {string} uniqueID - specifies the id.\n * @param {number} radius - specifies the radius\n * @returns {void}\n */\nfunction startMatAnimate(container, uniqueID, radius) {\n var globalObject = {};\n var timeOutVar = 0;\n globalTimeOut[\"\" + uniqueID].timeOut = 0;\n globalObject[\"\" + uniqueID] = globalVariables(uniqueID, radius, 0, 0);\n // eslint-disable-next-line\n var spinnerInfo = { uniqueID: uniqueID, container: container, globalInfo: globalObject, timeOutVar: timeOutVar };\n animateMaterial(spinnerInfo);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createFabricSpinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Fabric', radius: radius };\n create_fabric_element(container, uniqueID, CLS_FABRICSPIN, makeElement);\n fb_calculate_attributes(radius, container, CLS_FABRICSPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createFluentSinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Fluent', radius: radius };\n create_fabric_element(container, uniqueID, CLS_FLUENTSPIN, makeElement);\n fb_calculate_attributes(radius, container, CLS_FLUENTSPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createTailwindSpinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Tailwind', radius: radius };\n create_fabric_element(container, uniqueID, CLS_TAILWINDSPIN, makeElement);\n fb_calculate_attributes(radius, container, CLS_TAILWINDSPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createHighContrastSpinner(container, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'HighContrast', radius: radius };\n create_fabric_element(container, uniqueID, CLS_HIGHCONTRASTSPIN, makeElement);\n fb_calculate_attributes(radius, container, CLS_HIGHCONTRASTSPIN);\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @returns {string} - returns the string\n */\nfunction getTheme(container) {\n var theme = window.getComputedStyle(container, ':after').getPropertyValue('content');\n return theme.replace(/['\"]+/g, '');\n}\n/**\n *\n * @param {string} theme - specifies the theme\n * @param {HTMLElement} container - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction setTheme(theme, container, radius, makeElement) {\n var innerContainer = container.querySelector('.' + CLS_SPININWRAP);\n var svg = innerContainer.querySelector('svg');\n if (!isNullOrUndefined(svg)) {\n innerContainer.removeChild(svg);\n }\n switch (theme) {\n case 'Material':\n createMaterialSpinner(innerContainer, radius, makeElement);\n break;\n case 'Material3':\n createMaterial3Spinner(innerContainer, radius, makeElement);\n break;\n case 'Fabric':\n createFabricSpinner(innerContainer, radius, makeElement);\n break;\n case 'Fluent':\n createFluentSinner(innerContainer, radius, makeElement);\n break;\n case 'Bootstrap':\n createBootstrapSpinner(innerContainer, radius, makeElement);\n break;\n case 'HighContrast':\n createHighContrastSpinner(innerContainer, radius, makeElement);\n break;\n case 'Bootstrap4':\n createBootstrap4Spinner(innerContainer, radius, makeElement);\n break;\n case 'Bootstrap5':\n createBootstrap5Spinner(innerContainer, radius, makeElement);\n break;\n case 'Tailwind':\n case 'Tailwind-dark':\n createTailwindSpinner(innerContainer, radius, makeElement);\n break;\n }\n}\n/**\n *\n * @param {HTMLElement} innerContainer - specifies the element\n * @param {number} radius - specifies the radius\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\nfunction createBootstrapSpinner(innerContainer, radius, makeElement) {\n var uniqueID = random_generator();\n globalTimeOut[\"\" + uniqueID] = { timeOut: 0, type: 'Bootstrap', radius: radius };\n create_bootstrap_element(innerContainer, uniqueID, makeElement);\n boot_calculate_attributes(innerContainer, radius);\n}\n/**\n *\n * @param {HTMLElement} innerContainer - specifies the element\n * @param {string} uniqueID - specifies the id\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction create_bootstrap_element(innerContainer, uniqueID, makeElement) {\n var svgBoot = document.createElementNS('http://www.w3.org/2000/svg', 'svg');\n var viewBoxValue = 64;\n var trans = 32;\n var defaultRadius = 2;\n svgBoot.setAttribute('id', uniqueID);\n svgBoot.setAttribute('class', CLS_BOOTSPIN);\n svgBoot.setAttribute('viewBox', '0 0 ' + viewBoxValue + ' ' + viewBoxValue);\n innerContainer.insertBefore(svgBoot, innerContainer.firstChild);\n for (var item = 0; item <= 7; item++) {\n var bootCircle = document.createElementNS('http://www.w3.org/2000/svg', 'circle');\n bootCircle.setAttribute('class', CLS_SPINCIRCLE + '_' + item);\n bootCircle.setAttribute('r', defaultRadius + '');\n bootCircle.setAttribute('transform', 'translate(' + trans + ',' + trans + ')');\n svgBoot.appendChild(bootCircle);\n }\n}\n/**\n *\n * @param {HTMLElement} innerContainer - specifies the element\n * @param {number} radius - specifies the radius\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction boot_calculate_attributes(innerContainer, radius) {\n var svg = innerContainer.querySelector('svg.e-spin-bootstrap');\n var x = 0;\n var y = 0;\n var rad = 24;\n svg.style.width = svg.style.height = radius + 'px';\n var startArc = 90;\n for (var item = 0; item <= 7; item++) {\n var start = defineArcPoints(x, y, rad, startArc);\n var circleEle = svg.querySelector('.' + CLS_SPINCIRCLE + '_' + item);\n circleEle.setAttribute('cx', start.x + '');\n circleEle.setAttribute('cy', start.y + '');\n startArc = startArc >= 360 ? 0 : startArc;\n startArc = startArc + 45;\n }\n}\n/**\n *\n * @param {number} begin - specifies the number\n * @param {number} stop - specifirs the number\n * @returns {number[]} - returns the array of number\n */\nfunction generateSeries(begin, stop) {\n var series = [];\n var start = begin;\n var end = stop;\n // eslint-disable-next-line\n var increment = false, count = 1;\n formSeries(start);\n /**\n *\n * @param {number} i - specifies the number\n * @returns {void}\n */\n function formSeries(i) {\n series.push(i);\n if (i !== end || count === 1) {\n if (i <= start && i > 1 && !increment) {\n i = parseFloat((i - 0.2).toFixed(2));\n }\n else if (i === 1) {\n i = 7;\n i = parseFloat((i + 0.2).toFixed(2));\n increment = true;\n }\n else if (i < 8 && increment) {\n i = parseFloat((i + 0.2).toFixed(2));\n if (i === 8) {\n increment = false;\n }\n }\n else if (i <= 8 && !increment) {\n i = parseFloat((i - 0.2).toFixed(2));\n }\n ++count;\n formSeries(i);\n }\n }\n return series;\n}\n/**\n *\n * @param {HTMLElement} innerContainer - specifies the element\n * @returns {void}\n */\nfunction animateBootstrap(innerContainer) {\n var svg = innerContainer.querySelector('svg.e-spin-bootstrap');\n var id = svg.getAttribute('id');\n for (var i = 1; i <= 8; i++) {\n var circleEle = (innerContainer.getElementsByClassName('e-path-circle_' +\n (i === 8 ? 0 : i))[0]);\n rotation(circleEle, i, i, generateSeries(i, i), id);\n }\n /**\n *\n * @param {SVGCircleElement} circle - specifies the circl element\n * @param {number} start - specifies the number\n * @param {number} end - specifies the end number\n * @param {number} series - specifies the series\n * @param {string} id - specifies the id\n * @returns {void}\n */\n function rotation(circle, start, end, series, id) {\n var count = 0;\n boot_animate(start);\n // eslint-disable-next-line\n function boot_animate(radius) {\n if (globalTimeOut[\"\" + id].isAnimate) {\n ++count;\n circle.setAttribute('r', radius + '');\n if (count >= series.length) {\n count = 0;\n }\n // eslint-disable-next-line\n globalTimeOut[id].timeOut = setTimeout(boot_animate.bind(null, series[count]), 18);\n }\n }\n }\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {string} template - specifies the template\n * @param {string} cssClass - specifies the css class.\n * @returns {void}\n */\nfunction replaceContent(container, template, cssClass) {\n if (!isNullOrUndefined(cssClass)) {\n container.classList.add(cssClass);\n }\n var inner = container.querySelector('.e-spinner-inner');\n inner.innerHTML = template;\n}\n/**\n *\n * @param {string} width - specifies the width\n * @param {string} theme - specifies the string\n * @returns {number} - returns the number\n */\nfunction calculateRadius(width, theme) {\n var defaultSize;\n switch (theme) {\n case 'Material':\n defaultSize = DEFT_MAT_WIDTH;\n break;\n case 'Material3':\n defaultSize = DEFT_MAT3_WIDTH;\n break;\n case 'Fabric':\n defaultSize = DEFT_FAB_WIDTH;\n break;\n case 'Tailwind':\n case 'Tailwind-dark':\n defaultSize = DEFT_FAB_WIDTH;\n break;\n case 'Fluent':\n defaultSize = DEFT_FLUENT_WIDTH;\n break;\n case 'Bootstrap4':\n defaultSize = DEFT_BOOT4_WIDTH;\n break;\n case 'Bootstrap5':\n defaultSize = DEFT_BOOT5_WIDTH;\n break;\n default:\n defaultSize = DEFT_BOOT_WIDTH;\n }\n width = width ? parseFloat(width + '') : defaultSize;\n return theme === 'Bootstrap' ? width : width / 2;\n}\n/**\n *\n * @param {string} id - specifies the id\n * @param {number} radius - specifies the radius\n * @param {number} count - specifies the number count\n * @param {number} previousId - specifies the previous id\n * @returns {GlobalVariables} - returns the variables\n */\nfunction globalVariables(id, radius, count, previousId) {\n return {\n radius: radius,\n count: count,\n previousId: previousId\n };\n}\n/**\n * @returns {string} - returns the string\n */\n// eslint-disable-next-line\nfunction random_generator() {\n var random = '';\n var combine = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n for (var i = 0; i < 5; i++) {\n random += combine.charAt(Math.floor(Math.random() * combine.length));\n }\n return random;\n}\n/**\n *\n * @param {HTMLElement} innerCon - specifies the element\n * @param {string} uniqueID - specifies the unique id\n * @param {string} themeClass - specifies the string\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction create_fabric_element(innerCon, uniqueID, themeClass, makeElement) {\n var svgFabric = document.createElementNS('http://www.w3.org/2000/svg', 'svg');\n svgFabric.setAttribute('id', uniqueID);\n svgFabric.setAttribute('class', themeClass);\n var fabricCirclePath = document.createElementNS('http://www.w3.org/2000/svg', 'path');\n fabricCirclePath.setAttribute('class', CLS_SPINCIRCLE);\n var fabricCircleArc = document.createElementNS('http://www.w3.org/2000/svg', 'path');\n fabricCircleArc.setAttribute('class', CLS_SPINARC);\n innerCon.insertBefore(svgFabric, innerCon.firstChild);\n svgFabric.appendChild(fabricCirclePath);\n svgFabric.appendChild(fabricCircleArc);\n}\n/**\n *\n * @param {HTMLElement} innerContainer - specifies the element\n * @param {string} uniqueID - specifies the unique id\n * @param {createElementParams} makeElement - specifies the element\n * @param {string} cls - specifies the string\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction create_material_element(innerContainer, uniqueID, makeElement, cls) {\n var svgMaterial = document.createElementNS('http://www.w3.org/2000/svg', 'svg');\n var matCirclePath = document.createElementNS('http://www.w3.org/2000/svg', 'path');\n svgMaterial.setAttribute('class', cls);\n svgMaterial.setAttribute('id', uniqueID);\n matCirclePath.setAttribute('class', CLS_SPINCIRCLE);\n innerContainer.insertBefore(svgMaterial, innerContainer.firstChild);\n svgMaterial.appendChild(matCirclePath);\n}\n/**\n *\n * @param {HTMLElement} target - specifies the element\n * @param {createElementParams} makeElement - specifies the element\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction create_spinner_container(target, makeElement) {\n var spinnerContainer = makeElement('div', {});\n var spinnerInnerContainer = makeElement('div', {});\n spinnerContainer.classList.add(CLS_SPINWRAP);\n spinnerInnerContainer.classList.add(CLS_SPININWRAP);\n target.appendChild(spinnerContainer);\n spinnerContainer.appendChild(spinnerInnerContainer);\n // eslint-disable-next-line\n return { wrap: spinnerContainer, inner_wrap: spinnerInnerContainer };\n}\n/**\n *\n * @param {SpinnerInfo} spinnerInfo - specifies the spinner\n * @returns {void}\n */\nfunction animateMaterial(spinnerInfo) {\n var start = 1;\n var end = 149;\n var duration = 1333;\n var max = 75;\n createCircle(start, end, easeAnimation, duration, spinnerInfo.globalInfo[spinnerInfo.uniqueID].count, max, spinnerInfo);\n spinnerInfo.globalInfo[spinnerInfo.uniqueID].count = ++spinnerInfo.globalInfo[spinnerInfo.uniqueID].count % 4;\n}\n/**\n *\n * @param {number} start - specifies the number\n * @param {number} end - specifies the end number\n * @param {Function} easing - specifies the function\n * @param {number} duration - specifies the duration\n * @param {number} count - specifies the count\n * @param {number} max - specifies the max number\n * @param {SpinnerInfo} spinnerInfo - specifies the spinner info\n * @returns {void}\n */\nfunction createCircle(start, end, easing, duration, count, max, spinnerInfo) {\n var id = ++spinnerInfo.globalInfo[spinnerInfo.uniqueID].previousId;\n var startTime = new Date().getTime();\n var change = end - start;\n var diameter = getSize((spinnerInfo.globalInfo[spinnerInfo.uniqueID].radius * 2) + '');\n var strokeSize = getStrokeSize(diameter);\n var rotate = -90 * (spinnerInfo.globalInfo[spinnerInfo.uniqueID].count || 0);\n mat_animation(spinnerInfo);\n // eslint-disable-next-line\n function mat_animation(spinnerInfo) {\n var currentTime = Math.max(0, Math.min(new Date().getTime() - startTime, duration));\n updatePath(easing(currentTime, start, change, duration), spinnerInfo.container);\n if (id === spinnerInfo.globalInfo[spinnerInfo.uniqueID].previousId && currentTime < duration) {\n // eslint-disable-next-line\n globalTimeOut[spinnerInfo.uniqueID].timeOut = setTimeout(mat_animation.bind(null, spinnerInfo), 1);\n }\n else {\n animateMaterial(spinnerInfo);\n }\n }\n /**\n *\n * @param {number} value - specifies the number value\n * @param {HTMLElement} container - specifies the container\n * @returns {void}\n */\n function updatePath(value, container) {\n if (!isNullOrUndefined(container.querySelector('svg.e-spin-material')) || !isNullOrUndefined(container.querySelector('svg.e-spin-material3'))) {\n var svg = void 0;\n if (!isNullOrUndefined(container.querySelector('svg.e-spin-material')) && !isNullOrUndefined(container.querySelector('svg.e-spin-material').querySelector('path.e-path-circle'))) {\n svg = container.querySelector('svg.e-spin-material');\n }\n else if (!isNullOrUndefined(container.querySelector('svg.e-spin-material3')) && !isNullOrUndefined(container.querySelector('svg.e-spin-material3').querySelector('path.e-path-circle'))) {\n svg = container.querySelector('svg.e-spin-material3');\n }\n if (!isNullOrUndefined(svg)) {\n var path = svg.querySelector('path.e-path-circle');\n path.setAttribute('stroke-dashoffset', getDashOffset(diameter, strokeSize, value, max) + '');\n path.setAttribute('transform', 'rotate(' + (rotate) + ' ' + diameter / 2 + ' ' + diameter / 2 + ')');\n }\n }\n }\n}\n/**\n *\n * @param {number} radius - specifies the number\n * @param {HTMLElement} container - specifies the element\n * @param {string} type - specifies the string type\n * @param {string} cls - specifies the string\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction mat_calculate_attributes(radius, container, type, cls) {\n var diameter = radius * 2;\n var svg = container.querySelector('svg.' + cls);\n var path = svg.querySelector('path.e-path-circle');\n var strokeSize = getStrokeSize(diameter);\n var transformOrigin = (diameter / 2) + 'px';\n svg.setAttribute('viewBox', '0 0 ' + diameter + ' ' + diameter);\n svg.style.width = svg.style.height = diameter + 'px';\n svg.style.transformOrigin = transformOrigin + ' ' + transformOrigin + ' ' + transformOrigin;\n path.setAttribute('d', drawArc(diameter, strokeSize));\n if (type === 'Material' || type === 'Material3') {\n path.setAttribute('stroke-width', strokeSize + '');\n path.setAttribute('stroke-dasharray', ((diameter - strokeSize) * Math.PI * 0.75) + '');\n path.setAttribute('stroke-dashoffset', getDashOffset(diameter, strokeSize, 1, 75) + '');\n }\n}\n/**\n *\n * @param {string} value - specifies the value\n * @returns {number} - returns the number\n */\nfunction getSize(value) {\n var parsed = parseFloat(value);\n return parsed;\n}\n/**\n *\n * @param {number} diameter - specifies the diameter\n * @param {number} strokeSize - specifies the size\n * @returns {string} - returns the string\n */\nfunction drawArc(diameter, strokeSize) {\n var radius = diameter / 2;\n var offset = strokeSize / 2;\n return 'M' + radius + ',' + offset\n + 'A' + (radius - offset) + ',' + (radius - offset) + ' 0 1 1 ' + offset + ',' + radius;\n}\n/**\n *\n * @param {number} diameter - specifies the number\n * @returns {number} - returns the number\n */\nfunction getStrokeSize(diameter) {\n return 10 / 100 * diameter;\n}\n/**\n *\n * @param {number} diameter - specifies the number\n * @param {number} strokeSize - specifies the stroke size\n * @param {number} value - specifies the value\n * @param {number} max - specifies the max number\n * @returns {number} - returns the number\n */\nfunction getDashOffset(diameter, strokeSize, value, max) {\n return (diameter - strokeSize) * Math.PI * ((3 * (max) / 100) - (value / 100));\n}\n/**\n *\n * @param {number} current - specifies the number\n * @param {number} start - specifies the stroke size\n * @param {number} change - specifies the value\n * @param {number} duration - specifies the max number\n * @returns {number} - returns the number\n */\nfunction easeAnimation(current, start, change, duration) {\n var timestamp = (current /= duration) * current;\n var timecount = timestamp * current;\n return start + change * (6 * timecount * timestamp + -15 * timestamp * timestamp + 10 * timecount);\n}\n/**\n *\n * @param {number} radius - specifies the number\n * @param {HTMLElement} innerConainer - specifies the element\n * @param {string} trgClass - specifies the class\n * @returns {void}\n */\n// eslint-disable-next-line\nfunction fb_calculate_attributes(radius, innerConainer, trgClass) {\n var centerX = radius;\n var centerY = radius;\n var diameter = radius * 2;\n // eslint-disable-next-line\n var startArc = 315, endArc = 45;\n var svg = innerConainer.querySelector('.' + trgClass);\n var circle = svg.querySelector('.e-path-circle');\n var path = svg.querySelector('.e-path-arc');\n var transformOrigin = (diameter / 2) + 'px';\n circle.setAttribute('d', defineCircle(centerX, centerY, radius));\n path.setAttribute('d', defineArc(centerX, centerY, radius, startArc, endArc));\n svg.setAttribute('viewBox', '0 0 ' + diameter + ' ' + diameter);\n svg.style.transformOrigin = transformOrigin + ' ' + transformOrigin + ' ' + transformOrigin;\n svg.style.width = svg.style.height = diameter + 'px';\n}\n/**\n *\n * @param {number} centerX - specifies the number\n * @param {number} centerY - specifies the stroke size\n * @param {number} radius - specifies the value\n * @param {number} angle - specifies the max number\n * @returns {number} - returns the number\n */\nfunction defineArcPoints(centerX, centerY, radius, angle) {\n var radians = (angle - 90) * Math.PI / 180.0;\n return {\n x: centerX + (radius * Math.cos(radians)),\n y: centerY + (radius * Math.sin(radians))\n };\n}\n/**\n *\n * @param {number} x - specifies the number\n * @param {number} y - specifies the stroke size\n * @param {number} radius - specifies the radius\n * @param {number} startArc - specifies the value\n * @param {number} endArc - specifies the max number\n * @returns {number} - returns the number\n */\nfunction defineArc(x, y, radius, startArc, endArc) {\n var start = defineArcPoints(x, y, radius, endArc);\n var end = defineArcPoints(x, y, radius, startArc);\n var d = [\n 'M', start.x, start.y,\n 'A', radius, radius, 0, 0, 0, end.x, end.y\n ].join(' ');\n return d;\n}\n/**\n *\n * @param {number} x - specifies the number\n * @param {number} y - specifies the stroke size\n * @param {number} radius - specifies the value\n * @returns {string} - returns the string\n */\nfunction defineCircle(x, y, radius) {\n var d = [\n 'M', x, y,\n 'm', -radius, 0,\n 'a', radius, radius, 0, 1, 0, radius * 2, 0,\n 'a', radius, radius, 0, 1, 0, -radius * 2, 0\n ].join(' ');\n return d;\n}\n/**\n * Function to show the Spinner.\n *\n * @param {HTMLElement} container - Specify the target of the Spinner.\n * @returns {void}\n * @private\n */\nexport function showSpinner(container) {\n showHideSpinner(container, false);\n container = null;\n}\n/**\n *\n * @param {HTMLElement} container - specifies the element\n * @param {boolean} isHide - specifies the boolean\n * @returns {void}\n */\nfunction showHideSpinner(container, isHide) {\n var spinnerWrap;\n if (container) {\n if (container.classList.contains(CLS_SPINWRAP)) {\n spinnerWrap = container;\n }\n else {\n var spinWrapCollection = void 0;\n spinWrapCollection = container.querySelectorAll('.' + CLS_SPINWRAP);\n spinnerWrap = Array.from(spinWrapCollection).find(function (wrap) { return wrap.parentElement === container; }) || null;\n }\n }\n if (container && spinnerWrap) {\n var inner = spinnerWrap.querySelector('.' + CLS_SPININWRAP);\n var spinCheck = void 0;\n // eslint-disable-next-line\n spinCheck = isHide ? !spinnerWrap.classList.contains(CLS_SPINTEMPLATE) && !spinnerWrap.classList.contains(CLS_HIDESPIN) :\n !spinnerWrap.classList.contains(CLS_SPINTEMPLATE) && !spinnerWrap.classList.contains(CLS_SHOWSPIN);\n if (spinCheck) {\n var svgEle = spinnerWrap.querySelector('svg');\n if (isNullOrUndefined(svgEle)) {\n return;\n }\n var id = svgEle.getAttribute('id');\n globalTimeOut[\"\" + id].isAnimate = !isHide;\n switch (globalTimeOut[\"\" + id].type) {\n case 'Material':\n case 'Material3':\n // eslint-disable-next-line\n isHide ? clearTimeout(globalTimeOut[id].timeOut) : startMatAnimate(inner, id, globalTimeOut[id].radius);\n break;\n case 'Bootstrap':\n // eslint-disable-next-line\n isHide ? clearTimeout(globalTimeOut[id].timeOut) : animateBootstrap(inner);\n break;\n }\n }\n // eslint-disable-next-line\n isHide ? classList(spinnerWrap, [CLS_HIDESPIN], [CLS_SHOWSPIN]) : classList(spinnerWrap, [CLS_SHOWSPIN], [CLS_HIDESPIN]);\n container = null;\n }\n}\n/**\n * Function to hide the Spinner.\n *\n * @param {HTMLElement} container - Specify the target of the Spinner.\n * @returns {void}\n * @private\n */\nexport function hideSpinner(container) {\n showHideSpinner(container, true);\n container = null;\n}\n// eslint-disable-next-line\n/**\n * Function to change the Spinners in a page globally from application end.\n * ```\n * E.g : setSpinner({ cssClass: 'custom-css'; type: 'Material' });\n * ```\n *\n * @param {SetSpinnerArgs} args - specifies the args\n * @param {createElementParams} internalCreateElement - specifies the element params\n * @returns {void}\n * @private\n */\nexport function setSpinner(args, internalCreateElement) {\n var makeElement = !isNullOrUndefined(internalCreateElement) ? internalCreateElement : createElement;\n if (args.template !== undefined) {\n spinTemplate = args.template;\n if (args.template !== undefined) {\n spinCSSClass = args.cssClass;\n }\n }\n var container = document.querySelectorAll('.' + CLS_SPINWRAP);\n for (var index = 0; index < container.length; index++) {\n ensureTemplate(args.template, container[index], args.type, args.cssClass, makeElement);\n }\n}\n/**\n *\n * @param {string} template - specifies the string\n * @param {HTMLElement} container - specifies the container\n * @param {string} theme - specifies the theme\n * @param {string} cssClass - specifies the string class\n * @param {createElementParams} makeEle - specifies the params\n * @returns {void}\n */\nfunction ensureTemplate(template, container, theme, cssClass, makeEle) {\n if (isNullOrUndefined(template) && !container.classList.contains(CLS_SPINTEMPLATE)) {\n replaceTheme(container, theme, cssClass, makeEle);\n if (container.classList.contains(CLS_SHOWSPIN)) {\n container.classList.remove(CLS_SHOWSPIN);\n showSpinner(container);\n }\n else {\n container.classList.remove(CLS_HIDESPIN);\n hideSpinner(container);\n }\n }\n else {\n spinTemplate = template;\n if (!isNullOrUndefined(cssClass)) {\n spinCSSClass = cssClass;\n }\n if (!isNullOrUndefined(spinTemplate)) {\n replaceContent(container, spinTemplate, spinCSSClass);\n }\n }\n}\n/**\n *\n * @param {HTMLElement} container - specifies the container\n * @param {string} theme - specifies the theme\n * @param {string} cssClass - specifies the string class\n * @param {createElementParams} makeEle - specifies the params\n * @returns {void}\n */\nfunction replaceTheme(container, theme, cssClass, makeEle) {\n if (!isNullOrUndefined(cssClass)) {\n container.classList.add(cssClass);\n }\n var svgElement = container.querySelector('svg');\n if (!isNullOrUndefined(svgElement)) {\n var radius = theme === 'Bootstrap' ? parseFloat(svgElement.style.height) : parseFloat(svgElement.style.height) / 2;\n var classNames = svgElement.getAttribute('class');\n var svgClassList = classNames.split(/\\s/);\n if (svgClassList.indexOf('e-spin-material') >= 0) {\n var id = svgElement.getAttribute('id');\n clearTimeout(globalTimeOut[\"\" + id].timeOut);\n }\n setTheme(theme, container, radius, makeEle);\n }\n}\n","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nimport { Component, Property, Event, Collection, L10n, Complex, compile, createElement } from '@syncfusion/ej2-base';\nimport { addClass, removeClass, detach, attributes, prepend, setStyleAttribute } from '@syncfusion/ej2-base';\nimport { NotifyPropertyChanges, ChildProperty, isBlazor } from '@syncfusion/ej2-base';\nimport { isNullOrUndefined, formatUnit, append, EventHandler, Draggable, extend } from '@syncfusion/ej2-base';\nimport { SanitizeHtmlHelper, Browser } from '@syncfusion/ej2-base';\nimport { Button } from '@syncfusion/ej2-buttons';\nimport { Popup, PositionData, getZindexPartial } from '../popup/popup';\nimport { createResize, removeResize, setMinHeight, setMaxWidth, setMaxHeight } from '../common/resize';\nvar ButtonProps = /** @class */ (function (_super) {\n __extends(ButtonProps, _super);\n function ButtonProps() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n __decorate([\n Property(true)\n ], ButtonProps.prototype, \"isFlat\", void 0);\n __decorate([\n Property()\n ], ButtonProps.prototype, \"buttonModel\", void 0);\n __decorate([\n Property('Button')\n ], ButtonProps.prototype, \"type\", void 0);\n __decorate([\n Event()\n ], ButtonProps.prototype, \"click\", void 0);\n return ButtonProps;\n}(ChildProperty));\nexport { ButtonProps };\n/**\n * Configures the animation properties for both open and close the dialog.\n */\nvar AnimationSettings = /** @class */ (function (_super) {\n __extends(AnimationSettings, _super);\n function AnimationSettings() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n __decorate([\n Property('Fade')\n ], AnimationSettings.prototype, \"effect\", void 0);\n __decorate([\n Property(400)\n ], AnimationSettings.prototype, \"duration\", void 0);\n __decorate([\n Property(0)\n ], AnimationSettings.prototype, \"delay\", void 0);\n return AnimationSettings;\n}(ChildProperty));\nexport { AnimationSettings };\nvar ROOT = 'e-dialog';\nvar RTL = 'e-rtl';\nvar DLG_HEADER_CONTENT = 'e-dlg-header-content';\nvar DLG_HEADER = 'e-dlg-header';\nvar DLG_FOOTER_CONTENT = 'e-footer-content';\nvar MODAL_DLG = 'e-dlg-modal';\nvar DLG_CONTENT = 'e-dlg-content';\nvar DLG_CLOSE_ICON = 'e-icon-dlg-close';\nvar DLG_OVERLAY = 'e-dlg-overlay';\nvar DLG_TARGET = 'e-dlg-target';\nvar DLG_CONTAINER = 'e-dlg-container';\nvar SCROLL_DISABLED = 'e-scroll-disabled';\nvar DLG_PRIMARY_BUTTON = 'e-primary';\nvar ICON = 'e-icons';\nvar POPUP_ROOT = 'e-popup';\nvar DEVICE = 'e-device';\nvar FULLSCREEN = 'e-dlg-fullscreen';\nvar DLG_CLOSE_ICON_BTN = 'e-dlg-closeicon-btn';\nvar DLG_HIDE = 'e-popup-close';\nvar DLG_SHOW = 'e-popup-open';\nvar DLG_UTIL_DEFAULT_TITLE = 'Information';\nvar DLG_UTIL_ROOT = 'e-scroll-disabled';\nvar DLG_UTIL_ALERT = 'e-alert-dialog';\nvar DLG_UTIL_CONFIRM = 'e-confirm-dialog';\nvar DLG_RESIZABLE = 'e-dlg-resizable';\nvar DLG_RESTRICT_LEFT_VALUE = 'e-restrict-left';\nvar DLG_RESTRICT_WIDTH_VALUE = 'e-resize-viewport';\nvar DLG_REF_ELEMENT = 'e-dlg-ref-element';\nvar DLG_USER_ACTION_CLOSED = 'user action';\nvar DLG_CLOSE_ICON_CLOSED = 'close icon';\nvar DLG_ESCAPE_CLOSED = 'escape';\nvar DLG_OVERLAYCLICK_CLOSED = 'overlayClick';\nvar DLG_DRAG = 'e-draggable';\n/**\n * Represents the dialog component that displays the information and get input from the user.\n * Two types of dialog components are `Modal and Modeless (non-modal)` depending on its interaction with parent application.\n * ```html\n *
\n * ```\n * ```typescript\n * \n * ```\n */\nvar Dialog = /** @class */ (function (_super) {\n __extends(Dialog, _super);\n /*\n * * Constructor for creating the widget\n *\n * @param\n * @param\n * @hidden\n */\n function Dialog(options, element) {\n var _this = _super.call(this, options, element) || this;\n _this.needsID = true;\n return _this;\n }\n /**\n *Initialize the control rendering\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.render = function () {\n this.initialize();\n this.initRender();\n this.wireEvents();\n if (this.width === '100%') {\n this.element.style.width = '';\n }\n if (this.minHeight !== '') {\n this.element.style.minHeight = formatUnit(this.minHeight);\n }\n if (this.enableResize) {\n this.setResize();\n if (this.animationSettings.effect === 'None') {\n this.getMinHeight();\n }\n }\n this.renderComplete();\n };\n Dialog.prototype.initializeValue = function () {\n this.dlgClosedBy = DLG_USER_ACTION_CLOSED;\n };\n /**\n *Initialize the event handler\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.preRender = function () {\n var _this = this;\n this.initializeValue();\n this.headerContent = null;\n this.allowMaxHeight = true;\n this.preventVisibility = true;\n this.clonedEle = this.element.cloneNode(true);\n this.closeIconClickEventHandler = function (event) {\n _this.dlgClosedBy = DLG_CLOSE_ICON_CLOSED;\n _this.hide(event);\n };\n this.dlgOverlayClickEventHandler = function (event) {\n _this.dlgClosedBy = DLG_OVERLAYCLICK_CLOSED;\n event.preventFocus = false;\n _this.trigger('overlayClick', event, function (overlayClickEventArgs) {\n if (!overlayClickEventArgs.preventFocus) {\n _this.focusContent();\n }\n _this.dlgClosedBy = DLG_USER_ACTION_CLOSED;\n });\n };\n var localeText = { close: 'Close' };\n this.l10n = new L10n('dialog', localeText, this.locale);\n this.checkPositionData();\n if (isNullOrUndefined(this.target)) {\n var prevOnChange = this.isProtectedOnChange;\n this.isProtectedOnChange = true;\n this.target = document.body;\n this.isProtectedOnChange = prevOnChange;\n }\n };\n Dialog.prototype.updatePersistData = function () {\n if (this.enablePersistence) {\n this.setProperties({ width: parseFloat(this.element.style.width), height: parseFloat(this.element.style.height),\n position: { X: parseFloat(this.dragObj.element.style.left), Y: parseFloat(this.dragObj.element.style.top) } }, true);\n }\n };\n Dialog.prototype.isNumberValue = function (value) {\n var isNumber = /^[-+]?\\d*\\.?\\d+$/.test(value);\n return isNumber;\n };\n Dialog.prototype.checkPositionData = function () {\n if (!isNullOrUndefined(this.position)) {\n if (!isNullOrUndefined(this.position.X) && (typeof (this.position.X) !== 'number')) {\n var isNumber = this.isNumberValue(this.position.X);\n if (isNumber) {\n var prevOnChange = this.isProtectedOnChange;\n this.isProtectedOnChange = true;\n this.position.X = parseFloat(this.position.X);\n this.isProtectedOnChange = prevOnChange;\n }\n }\n if (!isNullOrUndefined(this.position.Y) && (typeof (this.position.Y) !== 'number')) {\n var isNumber = this.isNumberValue(this.position.Y);\n if (isNumber) {\n var prevOnChange = this.isProtectedOnChange;\n this.isProtectedOnChange = true;\n this.position.Y = parseFloat(this.position.Y);\n this.isProtectedOnChange = prevOnChange;\n }\n }\n }\n };\n Dialog.prototype.getEle = function (list, selector) {\n var element = undefined;\n for (var i = 0; i < list.length; i++) {\n if (list[i].classList.contains(selector)) {\n element = list[i];\n break;\n }\n }\n return element;\n };\n /* istanbul ignore next */\n Dialog.prototype.getMinHeight = function () {\n var computedHeaderHeight = '0px';\n var computedFooterHeight = '0px';\n if (!isNullOrUndefined(this.element.querySelector('.' + DLG_HEADER_CONTENT))) {\n computedHeaderHeight = getComputedStyle(this.headerContent).height;\n }\n var footerEle = this.getEle(this.element.children, DLG_FOOTER_CONTENT);\n if (!isNullOrUndefined(footerEle)) {\n computedFooterHeight = getComputedStyle(footerEle).height;\n }\n var headerHeight = parseInt(computedHeaderHeight.slice(0, computedHeaderHeight.indexOf('p')), 10);\n var footerHeight = parseInt(computedFooterHeight.slice(0, computedFooterHeight.indexOf('p')), 10);\n setMinHeight(headerHeight + 30 + (isNaN(footerHeight) ? 0 : footerHeight));\n return (headerHeight + 30 + footerHeight);\n };\n Dialog.prototype.onResizeStart = function (args, dialogObj) {\n dialogObj.trigger('resizeStart', args);\n return args.cancel;\n };\n Dialog.prototype.onResizing = function (args, dialogObj) {\n dialogObj.trigger('resizing', args);\n };\n Dialog.prototype.onResizeComplete = function (args, dialogObj) {\n dialogObj.trigger('resizeStop', args);\n this.updatePersistData();\n };\n Dialog.prototype.setResize = function () {\n if (this.enableResize) {\n if (this.isBlazorServerRender() && !isNullOrUndefined(this.element.querySelector('.e-icons.e-resize-handle'))) {\n return;\n }\n this.element.classList.add(DLG_RESIZABLE);\n var computedHeight = getComputedStyle(this.element).minHeight;\n var computedWidth = getComputedStyle(this.element).minWidth;\n var direction = '';\n for (var i = 0; i < this.resizeHandles.length; i++) {\n if (this.resizeHandles[i] === 'All') {\n direction = 'south north east west north-east north-west south-east south-west';\n break;\n }\n else {\n var directionValue = '';\n switch (this.resizeHandles[i].toString()) {\n case 'SouthEast':\n directionValue = 'south-east';\n break;\n case 'SouthWest':\n directionValue = 'south-west';\n break;\n case 'NorthEast':\n directionValue = 'north-east';\n break;\n case 'NorthWest':\n directionValue = 'north-west';\n break;\n default:\n directionValue = this.resizeHandles[i].toString();\n break;\n }\n direction += directionValue.toLocaleLowerCase() + ' ';\n }\n }\n if (this.enableRtl && direction.trim() === 'south-east') {\n direction = 'south-west';\n }\n else if (this.enableRtl && direction.trim() === 'south-west') {\n direction = 'south-east';\n }\n if (this.isModal && this.enableRtl) {\n this.element.classList.add(DLG_RESTRICT_LEFT_VALUE);\n }\n else if (this.isModal && this.target === document.body) {\n this.element.classList.add(DLG_RESTRICT_WIDTH_VALUE);\n }\n createResize({\n element: this.element,\n direction: direction,\n minHeight: parseInt(computedHeight.slice(0, computedWidth.indexOf('p')), 10),\n maxHeight: this.targetEle.clientHeight,\n minWidth: parseInt(computedWidth.slice(0, computedWidth.indexOf('p')), 10),\n maxWidth: this.targetEle.clientWidth,\n boundary: this.target === document.body ? null : this.targetEle,\n resizeBegin: this.onResizeStart.bind(this),\n resizeComplete: this.onResizeComplete.bind(this),\n resizing: this.onResizing.bind(this),\n proxy: this\n });\n this.wireWindowResizeEvent();\n }\n else {\n removeResize();\n this.unWireWindowResizeEvent();\n if (this.isModal) {\n this.element.classList.remove(DLG_RESTRICT_LEFT_VALUE);\n }\n else {\n this.element.classList.remove(DLG_RESTRICT_WIDTH_VALUE);\n }\n this.element.classList.remove(DLG_RESIZABLE);\n }\n };\n Dialog.prototype.getFocusElement = function (target) {\n var value = 'input,select,textarea,button:enabled,a,[contenteditable=\"true\"],[tabindex]';\n var items = target.querySelectorAll(value);\n return { element: items[items.length - 1] };\n };\n /* istanbul ignore next */\n Dialog.prototype.keyDown = function (event) {\n var _this = this;\n if (event.keyCode === 9) {\n if (this.isModal) {\n var buttonObj = void 0;\n if (!isNullOrUndefined(this.btnObj)) {\n buttonObj = this.btnObj[this.btnObj.length - 1];\n }\n if ((isNullOrUndefined(this.btnObj)) && (!isNullOrUndefined(this.ftrTemplateContent))) {\n buttonObj = this.getFocusElement(this.ftrTemplateContent);\n }\n if (isNullOrUndefined(this.btnObj) && isNullOrUndefined(this.ftrTemplateContent) && !isNullOrUndefined(this.contentEle)) {\n buttonObj = this.getFocusElement(this.contentEle);\n }\n if (!isNullOrUndefined(buttonObj) && document.activeElement === buttonObj.element && !event.shiftKey) {\n event.preventDefault();\n this.focusableElements(this.element).focus();\n }\n if (document.activeElement === this.focusableElements(this.element) && event.shiftKey) {\n event.preventDefault();\n if (!isNullOrUndefined(buttonObj)) {\n buttonObj.element.focus();\n }\n }\n }\n }\n var element = document.activeElement;\n var isTagName = (['input', 'textarea'].indexOf(element.tagName.toLowerCase()) > -1);\n var isContentEdit = false;\n if (!isTagName) {\n isContentEdit = element.hasAttribute('contenteditable') && element.getAttribute('contenteditable') === 'true';\n }\n if (event.keyCode === 27 && this.closeOnEscape) {\n this.dlgClosedBy = DLG_ESCAPE_CLOSED;\n var query = document.querySelector('.e-popup-open:not(.e-dialog)');\n // 'document.querySelector' is used to find the elements rendered based on body\n if (!(!isNullOrUndefined(query) && !query.classList.contains('e-toolbar-pop'))) {\n this.hide(event);\n }\n }\n if ((event.keyCode === 13 && !event.ctrlKey && element.tagName.toLowerCase() !== 'textarea' &&\n isTagName && !isNullOrUndefined(this.primaryButtonEle)) ||\n (event.keyCode === 13 && event.ctrlKey && (element.tagName.toLowerCase() === 'textarea' ||\n isContentEdit)) && !isNullOrUndefined(this.primaryButtonEle)) {\n var buttonIndex_1;\n var firstPrimary = this.buttons.some(function (data, index) {\n buttonIndex_1 = index;\n // eslint-disable-next-line\n var buttonModel = data.buttonModel;\n return !isNullOrUndefined(buttonModel) && buttonModel.isPrimary === true;\n });\n if (firstPrimary && typeof (this.buttons[buttonIndex_1].click) === 'function') {\n setTimeout(function () {\n _this.buttons[buttonIndex_1].click.call(_this, event);\n });\n }\n }\n };\n /**\n * Initialize the control rendering\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.initialize = function () {\n if (!isNullOrUndefined(this.target)) {\n this.targetEle = ((typeof this.target) === 'string') ?\n document.querySelector(this.target) : this.target;\n }\n if (!this.isBlazorServerRender()) {\n addClass([this.element], ROOT);\n }\n if (Browser.isDevice) {\n addClass([this.element], DEVICE);\n }\n if (!this.isBlazorServerRender()) {\n this.setCSSClass();\n }\n this.setMaxHeight();\n };\n /**\n * Initialize the rendering\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.initRender = function () {\n var _this = this;\n this.initialRender = true;\n if (!this.isBlazorServerRender()) {\n attributes(this.element, { role: 'dialog' });\n }\n if (this.zIndex === 1000) {\n this.setzIndex(this.element, false);\n this.calculatezIndex = true;\n }\n else {\n this.calculatezIndex = false;\n }\n if (this.isBlazorServerRender() && isNullOrUndefined(this.headerContent)) {\n this.headerContent = this.element.getElementsByClassName('e-dlg-header-content')[0];\n }\n if (this.isBlazorServerRender() && isNullOrUndefined(this.contentEle)) {\n this.contentEle = this.element.querySelector('#' + this.element.id + '_dialog-content');\n }\n if (!this.isBlazorServerRender()) {\n this.setTargetContent();\n if (this.header !== '' && !isNullOrUndefined(this.header)) {\n this.setHeader();\n }\n this.renderCloseIcon();\n this.setContent();\n if (this.footerTemplate !== '' && !isNullOrUndefined(this.footerTemplate)) {\n this.setFooterTemplate();\n }\n else if (!isNullOrUndefined(this.buttons[0].buttonModel)) {\n this.setButton();\n }\n }\n if (this.isBlazorServerRender()) {\n if (!isNullOrUndefined(this.buttons[0].buttonModel) && this.footerTemplate === '') {\n this.setButton();\n }\n }\n if (this.allowDragging && (!isNullOrUndefined(this.headerContent))) {\n this.setAllowDragging();\n }\n if (!this.isBlazorServerRender()) {\n attributes(this.element, { 'aria-modal': (this.isModal ? 'true' : 'false') });\n if (this.isModal) {\n this.setIsModal();\n }\n }\n if (this.isBlazorServerRender() && isNullOrUndefined(this.dlgContainer)) {\n this.dlgContainer = this.element.parentElement;\n for (var i = 0, childNodes = this.dlgContainer.children; i < childNodes.length; i++) {\n if (childNodes[i].classList.contains('e-dlg-overlay')) {\n this.dlgOverlay = childNodes[i];\n }\n }\n }\n if (this.element.classList.contains(DLG_UTIL_ALERT) !== true && this.element.classList.contains(DLG_UTIL_CONFIRM) !== true\n && !isNullOrUndefined(this.element.parentElement)) {\n var parentEle = this.isModal ? this.dlgContainer.parentElement : this.element.parentElement;\n this.refElement = this.createElement('div', { className: DLG_REF_ELEMENT });\n parentEle.insertBefore(this.refElement, (this.isModal ? this.dlgContainer : this.element));\n }\n if (!isNullOrUndefined(this.targetEle)) {\n // eslint-disable-next-line\n this.isModal ? this.targetEle.appendChild(this.dlgContainer) : this.targetEle.appendChild(this.element);\n }\n this.popupObj = new Popup(this.element, {\n height: this.height,\n width: this.width,\n zIndex: this.zIndex,\n relateTo: this.target,\n actionOnScroll: 'none',\n enableRtl: this.enableRtl,\n // eslint-disable-next-line\n open: function (event) {\n var eventArgs = {\n container: _this.isModal ? _this.dlgContainer : _this.element,\n element: _this.element,\n target: _this.target,\n preventFocus: false\n };\n if (_this.enableResize) {\n _this.resetResizeIcon();\n }\n _this.trigger('open', eventArgs, function (openEventArgs) {\n if (!openEventArgs.preventFocus) {\n _this.focusContent();\n }\n });\n },\n // eslint-disable-next-line\n close: function (event) {\n if (_this.isModal) {\n addClass([_this.dlgOverlay], 'e-fade');\n }\n _this.unBindEvent(_this.element);\n if (_this.isModal) {\n _this.dlgContainer.style.display = 'none';\n }\n _this.trigger('close', _this.closeArgs);\n var activeEle = document.activeElement;\n if (!isNullOrUndefined(activeEle) && !isNullOrUndefined((activeEle).blur)) {\n activeEle.blur();\n }\n if (!isNullOrUndefined(_this.storeActiveElement) && !isNullOrUndefined(_this.storeActiveElement.focus)) {\n _this.storeActiveElement.focus();\n }\n }\n });\n this.positionChange();\n this.setEnableRTL();\n if (!this.isBlazorServerRender()) {\n addClass([this.element], DLG_HIDE);\n if (this.isModal) {\n this.setOverlayZindex();\n }\n }\n if (this.visible) {\n this.show();\n }\n else {\n if (this.isModal) {\n this.dlgOverlay.style.display = 'none';\n }\n }\n this.initialRender = false;\n };\n Dialog.prototype.resetResizeIcon = function () {\n var dialogConHeight = this.getMinHeight();\n if (this.targetEle.offsetHeight < dialogConHeight) {\n var className = this.enableRtl ? 'e-south-west' : 'e-south-east';\n var resizeIcon = this.element.querySelector('.' + className);\n if (!isNullOrUndefined(resizeIcon)) {\n resizeIcon.style.bottom = '-' + dialogConHeight.toString() + 'px';\n }\n }\n };\n Dialog.prototype.setOverlayZindex = function (zIndexValue) {\n var zIndex;\n if (isNullOrUndefined(zIndexValue)) {\n zIndex = parseInt(this.element.style.zIndex, 10) ? parseInt(this.element.style.zIndex, 10) : this.zIndex;\n }\n else {\n zIndex = zIndexValue;\n }\n this.dlgOverlay.style.zIndex = (zIndex - 1).toString();\n this.dlgContainer.style.zIndex = zIndex.toString();\n };\n Dialog.prototype.positionChange = function () {\n if (this.isModal) {\n if (!isNaN(parseFloat(this.position.X)) && !isNaN(parseFloat(this.position.Y))) {\n this.setPopupPosition();\n }\n else if ((!isNaN(parseFloat(this.position.X)) && isNaN(parseFloat(this.position.Y)))\n || (isNaN(parseFloat(this.position.X)) && !isNaN(parseFloat(this.position.Y)))) {\n this.setPopupPosition();\n }\n else {\n this.element.style.top = '0px';\n this.element.style.left = '0px';\n this.dlgContainer.classList.add('e-dlg-' + this.position.X + '-' + this.position.Y);\n }\n }\n else {\n this.setPopupPosition();\n }\n };\n Dialog.prototype.setPopupPosition = function () {\n this.popupObj.setProperties({\n position: {\n X: this.position.X, Y: this.position.Y\n }\n });\n };\n Dialog.prototype.setAllowDragging = function () {\n var _this = this;\n var handleContent = '.' + DLG_HEADER_CONTENT;\n if (!this.element.classList.contains(DLG_DRAG)) {\n this.dragObj = new Draggable(this.element, {\n clone: false,\n isDragScroll: true,\n abort: '.e-dlg-closeicon-btn',\n handle: handleContent,\n dragStart: function (event) {\n _this.trigger('dragStart', event, function (dragEventArgs) {\n if (isBlazor()) {\n dragEventArgs.bindEvents(event.dragElement);\n }\n });\n },\n dragStop: function (event) {\n if (_this.isModal) {\n if (!isNullOrUndefined(_this.position)) {\n _this.dlgContainer.classList.remove('e-dlg-' + _this.position.X + '-' + _this.position.Y);\n }\n // Reset the dialog position after drag completion.\n _this.element.style.position = 'relative';\n }\n _this.trigger('dragStop', event);\n _this.element.classList.remove(DLG_RESTRICT_LEFT_VALUE);\n _this.updatePersistData();\n },\n drag: function (event) {\n _this.trigger('drag', event);\n }\n });\n if (!isNullOrUndefined(this.targetEle)) {\n this.dragObj.dragArea = this.targetEle;\n }\n }\n };\n Dialog.prototype.setButton = function () {\n if (!this.isBlazorServerRender()) {\n this.buttonContent = [];\n this.btnObj = [];\n // eslint-disable-next-line\n var primaryBtnFlag = true;\n for (var i = 0; i < this.buttons.length; i++) {\n var buttonType = !isNullOrUndefined(this.buttons[i].type) ? this.buttons[i].type.toLowerCase() : 'button';\n var btn = this.createElement('button', { className: this.cssClass, attrs: { type: buttonType } });\n this.buttonContent.push(btn.outerHTML);\n }\n this.setFooterTemplate();\n }\n var footerBtn;\n for (var i = 0, childNodes = this.element.children; i < childNodes.length; i++) {\n if (childNodes[i].classList.contains(DLG_FOOTER_CONTENT)) {\n footerBtn = childNodes[i].querySelectorAll('button');\n }\n }\n for (var i = 0; i < this.buttons.length; i++) {\n if (!this.isBlazorServerRender()) {\n this.btnObj[i] = new Button(this.buttons[i].buttonModel);\n }\n if (this.isBlazorServerRender()) {\n this.ftrTemplateContent = this.element.querySelector('.' + DLG_FOOTER_CONTENT);\n }\n if (!isNullOrUndefined(this.ftrTemplateContent) && footerBtn.length > 0) {\n if (typeof (this.buttons[i].click) === 'function') {\n EventHandler.add(footerBtn[i], 'click', this.buttons[i].click, this);\n }\n if (typeof (this.buttons[i].click) === 'object') {\n EventHandler.add(footerBtn[i], 'click', this.buttonClickHandler.bind(this, i), this);\n }\n }\n if (!this.isBlazorServerRender() && !isNullOrUndefined(this.ftrTemplateContent)) {\n this.btnObj[i].appendTo(this.ftrTemplateContent.children[i]);\n if (this.buttons[i].isFlat) {\n this.btnObj[i].element.classList.add('e-flat');\n }\n this.primaryButtonEle = this.element.getElementsByClassName('e-primary')[0];\n }\n }\n };\n Dialog.prototype.buttonClickHandler = function (index) {\n this.trigger('buttons[' + index + '].click', {});\n };\n Dialog.prototype.setContent = function () {\n this.contentEle = this.createElement('div', { className: DLG_CONTENT, id: this.element.id + '_dialog-content' });\n if (this.innerContentElement) {\n this.contentEle.appendChild(this.innerContentElement);\n }\n else if (!isNullOrUndefined(this.content) && this.content !== '' || !this.initialRender) {\n // eslint-disable-next-line\n var blazorContain = Object.keys(window);\n if (typeof (this.content) === 'string' && !isBlazor()) {\n this.setTemplate(this.content, this.contentEle, 'content');\n }\n else if (this.content instanceof HTMLElement) {\n this.contentEle.appendChild(this.content);\n }\n else {\n this.setTemplate(this.content, this.contentEle, 'content');\n }\n }\n if (!isNullOrUndefined(this.headerContent)) {\n this.element.insertBefore(this.contentEle, this.element.children[1]);\n }\n else {\n this.element.insertBefore(this.contentEle, this.element.children[0]);\n }\n if (this.height === 'auto') {\n if (!this.isBlazorServerRender() && Browser.isIE && this.element.style.width === '' && !isNullOrUndefined(this.width)) {\n this.element.style.width = formatUnit(this.width);\n }\n this.setMaxHeight();\n }\n };\n Dialog.prototype.setTemplate = function (template, toElement, prop) {\n var templateFn;\n var templateProps;\n // eslint-disable-next-line\n var blazorContain = Object.keys(window);\n if (toElement.classList.contains(DLG_HEADER)) {\n templateProps = this.element.id + 'header';\n }\n else if (toElement.classList.contains(DLG_FOOTER_CONTENT)) {\n templateProps = this.element.id + 'footerTemplate';\n }\n else {\n templateProps = this.element.id + 'content';\n }\n var templateValue;\n if (!isNullOrUndefined(template.outerHTML)) {\n toElement.appendChild(template);\n }\n else if ((typeof template === 'string') || (typeof template !== 'string') || (isBlazor() && !this.isStringTemplate)) {\n if ((typeof template === 'string')) {\n template = this.sanitizeHelper(template);\n }\n if (this.isVue || typeof template !== 'string') {\n templateFn = compile(template);\n templateValue = template;\n }\n else {\n toElement.innerHTML = template;\n }\n }\n var fromElements = [];\n if (!isNullOrUndefined(templateFn)) {\n var isString = (isBlazor() &&\n !this.isStringTemplate && (templateValue).indexOf('
Blazor') === 0) ?\n this.isStringTemplate : true;\n for (var _i = 0, _a = templateFn({}, this, prop, templateProps, isString); _i < _a.length; _i++) {\n var item = _a[_i];\n fromElements.push(item);\n }\n append([].slice.call(fromElements), toElement);\n }\n };\n /*\n * @returns {void}\n * @hidden\n * @value\n */\n Dialog.prototype.sanitizeHelper = function (value) {\n if (this.enableHtmlSanitizer) {\n var dialogItem = SanitizeHtmlHelper.beforeSanitize();\n var beforeEvent = {\n cancel: false,\n helper: null\n };\n extend(dialogItem, dialogItem, beforeEvent);\n this.trigger('beforeSanitizeHtml', dialogItem);\n if (dialogItem.cancel && !isNullOrUndefined(dialogItem.helper)) {\n value = dialogItem.helper(value);\n }\n else if (!dialogItem.cancel) {\n value = SanitizeHtmlHelper.serializeValue(dialogItem, value);\n }\n }\n return value;\n };\n Dialog.prototype.setMaxHeight = function () {\n if (!this.allowMaxHeight) {\n return;\n }\n var display = this.element.style.display;\n this.element.style.display = 'none';\n this.element.style.maxHeight = (!isNullOrUndefined(this.target)) && (this.targetEle.offsetHeight < window.innerHeight) ?\n (this.targetEle.offsetHeight - 20) + 'px' : (window.innerHeight - 20) + 'px';\n this.element.style.display = display;\n if (Browser.isIE && this.height === 'auto' && !isNullOrUndefined(this.contentEle)\n && this.element.offsetHeight < this.contentEle.offsetHeight) {\n this.element.style.height = 'inherit';\n }\n };\n Dialog.prototype.setEnableRTL = function () {\n if (!this.isBlazorServerRender()) {\n // eslint-disable-next-line\n this.enableRtl ? addClass([this.element], RTL) : removeClass([this.element], RTL);\n }\n if (!isNullOrUndefined(this.element.querySelector('.e-resize-handle'))) {\n removeResize();\n this.setResize();\n }\n };\n Dialog.prototype.setTargetContent = function () {\n var _this = this;\n if (isNullOrUndefined(this.content) || this.content === '') {\n var isContent = this.element.innerHTML.replace(/\\s|<(\\/?|\\/?)(!--!--)>/g, '') !== '';\n if (this.element.children.length > 0 || isContent) {\n this.innerContentElement = document.createDocumentFragment();\n [].slice.call(this.element.childNodes).forEach(function (el) {\n if (el.nodeType !== 8) {\n _this.innerContentElement.appendChild(el);\n }\n });\n }\n }\n };\n Dialog.prototype.setHeader = function () {\n if (this.headerEle) {\n this.headerEle.innerHTML = '';\n }\n else {\n this.headerEle = this.createElement('div', { id: this.element.id + '_title', className: DLG_HEADER });\n }\n this.createHeaderContent();\n this.headerContent.appendChild(this.headerEle);\n this.setTemplate(this.header, this.headerEle, 'header');\n attributes(this.element, { 'aria-labelledby': this.element.id + '_title' });\n this.element.insertBefore(this.headerContent, this.element.children[0]);\n if (this.allowDragging && (!isNullOrUndefined(this.headerContent))) {\n this.setAllowDragging();\n }\n };\n Dialog.prototype.setFooterTemplate = function () {\n if (this.ftrTemplateContent) {\n this.ftrTemplateContent.innerHTML = '';\n }\n else {\n this.ftrTemplateContent = this.createElement('div', {\n className: DLG_FOOTER_CONTENT\n });\n }\n if (this.footerTemplate !== '' && !isNullOrUndefined(this.footerTemplate)) {\n this.setTemplate(this.footerTemplate, this.ftrTemplateContent, 'footerTemplate');\n }\n else {\n this.ftrTemplateContent.innerHTML = this.buttonContent.join('');\n }\n this.element.appendChild(this.ftrTemplateContent);\n };\n Dialog.prototype.createHeaderContent = function () {\n if (isNullOrUndefined(this.headerContent)) {\n this.headerContent = this.createElement('div', { id: this.element.id + '_dialog-header', className: DLG_HEADER_CONTENT });\n }\n };\n Dialog.prototype.renderCloseIcon = function () {\n if (this.showCloseIcon) {\n this.closeIcon = this.createElement('button', { className: DLG_CLOSE_ICON_BTN, attrs: { type: 'button' } });\n this.closeIconBtnObj = new Button({ cssClass: 'e-flat', iconCss: DLG_CLOSE_ICON + ' ' + ICON });\n this.closeIconTitle();\n if (!isNullOrUndefined(this.headerContent)) {\n prepend([this.closeIcon], this.headerContent);\n }\n else {\n this.createHeaderContent();\n prepend([this.closeIcon], this.headerContent);\n this.element.insertBefore(this.headerContent, this.element.children[0]);\n }\n this.closeIconBtnObj.appendTo(this.closeIcon);\n }\n };\n Dialog.prototype.closeIconTitle = function () {\n this.l10n.setLocale(this.locale);\n var closeIconTitle = this.l10n.getConstant('close');\n this.closeIcon.setAttribute('title', closeIconTitle);\n this.closeIcon.setAttribute('aria-label', closeIconTitle);\n };\n Dialog.prototype.setCSSClass = function (oldCSSClass) {\n if (oldCSSClass) {\n removeClass([this.element], oldCSSClass.split(' '));\n if (this.isModal && !isNullOrUndefined(this.dlgContainer)) {\n removeClass([this.dlgContainer], oldCSSClass.split(' '));\n }\n }\n if (this.cssClass) {\n addClass([this.element], this.cssClass.split(' '));\n if (this.isModal && !isNullOrUndefined(this.dlgContainer)) {\n addClass([this.dlgContainer], this.cssClass.split(' '));\n }\n }\n };\n Dialog.prototype.setIsModal = function () {\n this.dlgContainer = this.createElement('div', { className: DLG_CONTAINER });\n this.setCSSClass();\n this.element.classList.remove(DLG_SHOW);\n this.element.parentNode.insertBefore(this.dlgContainer, this.element);\n this.dlgContainer.appendChild(this.element);\n addClass([this.element], MODAL_DLG);\n this.dlgOverlay = this.createElement('div', { className: DLG_OVERLAY });\n this.dlgOverlay.style.zIndex = (this.zIndex - 1).toString();\n this.dlgContainer.appendChild(this.dlgOverlay);\n };\n Dialog.prototype.getValidFocusNode = function (items) {\n var node;\n for (var u = 0; u < items.length; u++) {\n node = items[u];\n if ((node.clientHeight > 0 || (node.tagName.toLowerCase() === 'a' && node.hasAttribute('href'))) && node.tabIndex > -1 &&\n !node.disabled && !this.disableElement(node, '[disabled],[aria-disabled=\"true\"],[type=\"hidden\"]')) {\n return node;\n }\n else {\n node = null;\n }\n }\n return node;\n };\n Dialog.prototype.focusableElements = function (content) {\n if (!isNullOrUndefined(content)) {\n var value = 'input,select,textarea,button,a,[contenteditable=\"true\"],[tabindex]';\n var items = content.querySelectorAll(value);\n return this.getValidFocusNode(items);\n }\n return null;\n };\n Dialog.prototype.getAutoFocusNode = function (container) {\n var node = container.querySelector('.' + DLG_CLOSE_ICON_BTN);\n var value = '[autofocus]';\n var items = container.querySelectorAll(value);\n var validNode = this.getValidFocusNode(items);\n if (isBlazor()) {\n this.primaryButtonEle = this.element.getElementsByClassName('e-primary')[0];\n }\n if (!isNullOrUndefined(validNode)) {\n node = validNode;\n }\n else {\n validNode = this.focusableElements(this.contentEle);\n if (!isNullOrUndefined(validNode)) {\n return node = validNode;\n }\n else if (!isNullOrUndefined(this.primaryButtonEle)) {\n return this.element.querySelector('.' + DLG_PRIMARY_BUTTON);\n }\n }\n return node;\n };\n Dialog.prototype.disableElement = function (element, t) {\n var elementMatch = element ? element.matches || element.webkitMatchesSelector || element.msGetRegionContent : null;\n if (elementMatch) {\n for (; element; element = element.parentNode) {\n if (element instanceof Element && elementMatch.call(element, t)) {\n /* istanbul ignore next */\n return element;\n }\n }\n }\n return null;\n };\n Dialog.prototype.focusContent = function () {\n var element = this.getAutoFocusNode(this.element);\n var node = !isNullOrUndefined(element) ? element : this.element;\n var userAgent = Browser.userAgent;\n if (userAgent.indexOf('MSIE ') > 0 || userAgent.indexOf('Trident/') > 0) {\n this.element.focus();\n }\n node.focus();\n this.unBindEvent(this.element);\n this.bindEvent(this.element);\n };\n Dialog.prototype.bindEvent = function (element) {\n EventHandler.add(element, 'keydown', this.keyDown, this);\n };\n Dialog.prototype.unBindEvent = function (element) {\n EventHandler.remove(element, 'keydown', this.keyDown);\n };\n Dialog.prototype.updateSanitizeContent = function () {\n if (!this.isBlazorServerRender()) {\n this.contentEle.innerHTML = this.sanitizeHelper(this.content);\n }\n };\n Dialog.prototype.isBlazorServerRender = function () {\n return isBlazor() && this.isServerRendered;\n };\n /**\n * Module required function\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.getModuleName = function () {\n return 'dialog';\n };\n /**\n * Called internally if any of the property value changed\n *\n * @param {DialogModel} newProp - specifies the new property\n * @param {DialogModel} oldProp - specifies the old property\n * @private\n * @returns {void}\n */\n Dialog.prototype.onPropertyChanged = function (newProp, oldProp) {\n if (!this.element.classList.contains(ROOT)) {\n return;\n }\n for (var _i = 0, _a = Object.keys(newProp); _i < _a.length; _i++) {\n var prop = _a[_i];\n switch (prop) {\n case 'content':\n if (!isNullOrUndefined(this.content) && this.content !== '') {\n if (this.isBlazorServerRender()) {\n this.contentEle = this.element.querySelector('.e-dlg-content');\n }\n if (!isNullOrUndefined(this.contentEle) && this.contentEle.getAttribute('role') !== 'dialog') {\n if (!this.isBlazorServerRender()) {\n this.contentEle.innerHTML = '';\n }\n if (typeof (this.content) === 'function') {\n this.clearTemplate(['content']);\n detach(this.contentEle);\n this.contentEle = null;\n this.setContent();\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-unused-expressions\n typeof (this.content) === 'string' ? (this.isBlazorServerRender() && (this.contentEle.innerText === '')) ?\n this.contentEle.insertAdjacentHTML('beforeend', this.sanitizeHelper(this.content)) :\n this.updateSanitizeContent() : this.contentEle.appendChild(this.content);\n }\n this.setMaxHeight();\n }\n else {\n if (!this.isBlazorServerRender() ||\n isNullOrUndefined(this.element.querySelector('.e-dlg-content'))) {\n this.setContent();\n }\n }\n }\n else if (!isNullOrUndefined(this.contentEle)) {\n detach(this.contentEle);\n this.contentEle = null;\n }\n break;\n case 'header':\n if (this.header === '' || isNullOrUndefined(this.header)) {\n if (this.headerEle) {\n detach(this.headerEle);\n this.headerEle = null;\n }\n }\n else {\n if (!this.isBlazorServerRender() ||\n isNullOrUndefined(this.element.querySelector('.e-dlg-header-content'))) {\n this.setHeader();\n }\n }\n break;\n case 'footerTemplate':\n if (this.footerTemplate === '' || isNullOrUndefined(this.footerTemplate)) {\n if (!this.ftrTemplateContent) {\n return;\n }\n detach(this.ftrTemplateContent);\n this.ftrTemplateContent = null;\n this.buttons = [{}];\n }\n else {\n if (!this.isBlazorServerRender() ||\n isNullOrUndefined(this.element.querySelector('.e-footer-content'))) {\n this.setFooterTemplate();\n }\n this.buttons = [{}];\n }\n break;\n case 'showCloseIcon':\n if (this.element.getElementsByClassName(DLG_CLOSE_ICON).length > 0) {\n if (!this.showCloseIcon && (this.header === '' || isNullOrUndefined(this.header))) {\n detach(this.headerContent);\n this.headerContent = null;\n }\n else if (!this.showCloseIcon) {\n detach(this.closeIcon);\n }\n else {\n if (this.isBlazorServerRender()) {\n this.wireEvents();\n }\n }\n }\n else {\n if (!this.isBlazorServerRender()) {\n this.renderCloseIcon();\n }\n this.wireEvents();\n }\n break;\n case 'locale':\n if (this.showCloseIcon) {\n this.closeIconTitle();\n }\n break;\n case 'visible':\n // eslint-disable-next-line\n this.visible ? this.show() : this.hide();\n break;\n case 'isModal':\n this.updateIsModal();\n break;\n case 'height':\n setStyleAttribute(this.element, { 'height': formatUnit(newProp.height) });\n this.updatePersistData();\n break;\n case 'width':\n setStyleAttribute(this.element, { 'width': formatUnit(newProp.width) });\n this.updatePersistData();\n break;\n case 'zIndex':\n this.popupObj.zIndex = this.zIndex;\n if (this.isModal) {\n this.setOverlayZindex(this.zIndex);\n }\n if (this.element.style.zIndex !== this.zIndex.toString()) {\n this.calculatezIndex = false;\n }\n break;\n case 'cssClass':\n this.setCSSClass(oldProp.cssClass);\n break;\n case 'buttons': {\n var buttonCount = this.buttons.length;\n if (!isNullOrUndefined(this.ftrTemplateContent) && !this.isBlazorServerRender()) {\n detach(this.ftrTemplateContent);\n this.ftrTemplateContent = null;\n }\n for (var i = 0; i < buttonCount; i++) {\n if (!isNullOrUndefined(this.buttons[i].buttonModel)) {\n this.footerTemplate = '';\n this.setButton();\n }\n }\n break;\n }\n case 'allowDragging':\n if (this.allowDragging && (!isNullOrUndefined(this.headerContent))) {\n this.setAllowDragging();\n }\n else {\n this.dragObj.destroy();\n }\n break;\n case 'target':\n this.setTarget(newProp.target);\n break;\n case 'position':\n this.checkPositionData();\n if (this.isModal) {\n var positionX = !isNullOrUndefined(oldProp.position) && !isNullOrUndefined(oldProp.position.X) ? oldProp.position.X : this.position.X;\n var positionY = !isNullOrUndefined(oldProp.position) && !isNullOrUndefined(oldProp.position.Y) ? oldProp.position.Y : this.position.Y;\n if (this.dlgContainer.classList.contains('e-dlg-' + positionX + '-' + positionY)) {\n this.dlgContainer.classList.remove('e-dlg-' + positionX + '-' + positionY);\n }\n }\n this.positionChange();\n this.updatePersistData();\n break;\n case 'enableRtl':\n this.setEnableRTL();\n break;\n case 'enableResize':\n this.setResize();\n break;\n case 'minHeight':\n if (this.minHeight !== '') {\n this.element.style.minHeight = formatUnit(this.minHeight);\n }\n break;\n }\n }\n };\n Dialog.prototype.setTarget = function (target) {\n this.popupObj.relateTo = target;\n this.target = target;\n this.targetEle = ((typeof this.target) === 'string') ?\n document.querySelector(this.target) : this.target;\n if (this.dragObj) {\n this.dragObj.dragArea = this.targetEle;\n }\n this.setMaxHeight();\n if (this.isModal) {\n this.updateIsModal();\n }\n if (this.enableResize) {\n this.setResize();\n }\n };\n Dialog.prototype.updateIsModal = function () {\n this.element.setAttribute('aria-modal', this.isModal ? 'true' : 'false');\n if (this.isModal) {\n if (isNullOrUndefined(this.dlgOverlay)) {\n this.setIsModal();\n this.element.style.top = '0px';\n this.element.style.left = '0px';\n if (!isNullOrUndefined(this.targetEle)) {\n this.targetEle.appendChild(this.dlgContainer);\n }\n }\n }\n else {\n removeClass([this.element], MODAL_DLG);\n removeClass([document.body], [DLG_TARGET, SCROLL_DISABLED]);\n detach(this.dlgOverlay);\n while (this.dlgContainer.firstChild) {\n this.dlgContainer.parentElement.insertBefore(this.dlgContainer.firstChild, this.dlgContainer);\n }\n this.dlgContainer.parentElement.removeChild(this.dlgContainer);\n }\n if (this.visible) {\n this.show();\n }\n this.positionChange();\n if (this.isModal && this.dlgOverlay) {\n EventHandler.add(this.dlgOverlay, 'click', this.dlgOverlayClickEventHandler, this);\n }\n };\n Dialog.prototype.setzIndex = function (zIndexElement, setPopupZindex) {\n var prevOnChange = this.isProtectedOnChange;\n this.isProtectedOnChange = true;\n var currentzIndex = getZindexPartial(zIndexElement);\n this.zIndex = currentzIndex > this.zIndex ? currentzIndex : this.zIndex;\n this.isProtectedOnChange = prevOnChange;\n if (setPopupZindex) {\n this.popupObj.zIndex = this.zIndex;\n }\n };\n Dialog.prototype.windowResizeHandler = function () {\n setMaxWidth(this.targetEle.clientWidth);\n setMaxHeight(this.targetEle.clientHeight);\n this.setMaxHeight();\n };\n /**\n * Get the properties to be maintained in the persisted state.\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.getPersistData = function () {\n return this.addOnPersist(['width', 'height', 'position']);\n };\n /**\n * To destroy the widget\n *\n * @returns {void}\n */\n Dialog.prototype.destroy = function () {\n if (this.isDestroyed) {\n return;\n }\n var classArray = [RTL, MODAL_DLG, DLG_RESIZABLE, DLG_RESTRICT_LEFT_VALUE, FULLSCREEN, DEVICE];\n var attrs = ['role', 'aria-modal', 'aria-labelledby', 'aria-describedby', 'aria-grabbed', 'tabindex', 'style'];\n removeClass([this.targetEle], [DLG_TARGET, SCROLL_DISABLED]);\n if (!isNullOrUndefined(this.element) && this.element.classList.contains(FULLSCREEN)) {\n removeClass([document.body], [DLG_TARGET, SCROLL_DISABLED]);\n }\n if (this.isModal) {\n removeClass([(!isNullOrUndefined(this.targetEle) ? this.targetEle : document.body)], SCROLL_DISABLED);\n }\n this.unWireEvents();\n if (!isNullOrUndefined(this.btnObj)) {\n for (var i = 0; i < this.btnObj.length; i++) {\n this.btnObj[i].destroy();\n }\n }\n if (!isNullOrUndefined(this.closeIconBtnObj)) {\n this.closeIconBtnObj.destroy();\n }\n if (!isNullOrUndefined(this.dragObj)) {\n this.dragObj.destroy();\n }\n if (!isNullOrUndefined(this.popupObj.element) && this.popupObj.element.classList.contains(POPUP_ROOT)) {\n this.popupObj.destroy();\n }\n removeClass([this.element], classArray);\n if (!isNullOrUndefined(this.cssClass) && this.cssClass !== '') {\n removeClass([this.element], this.cssClass.split(' '));\n }\n if (!isNullOrUndefined(this.refElement) && !isNullOrUndefined(this.refElement.parentElement)) {\n this.refElement.parentElement.insertBefore((this.isModal ? this.dlgContainer : this.element), this.refElement);\n detach(this.refElement);\n this.refElement = undefined;\n }\n if (this.isModal && !this.isBlazorServerRender()) {\n detach(this.dlgOverlay);\n this.dlgContainer.parentNode.insertBefore(this.element, this.dlgContainer);\n detach(this.dlgContainer);\n }\n if (!this.isBlazorServerRender()) {\n this.element.innerHTML = this.clonedEle.innerHTML;\n }\n if (this.isBlazorServerRender()) {\n if (!isNullOrUndefined(this.element.children)) {\n for (var i = 0; i <= this.element.children.length; i++) {\n i = i - i;\n detach(this.element.children[i]);\n }\n }\n }\n for (var i = 0; i < attrs.length; i++) {\n this.element.removeAttribute(attrs[i]);\n }\n if (!this.isBlazorServerRender()) {\n _super.prototype.destroy.call(this);\n }\n else {\n this.isDestroyed = true;\n }\n // eslint-disable-next-line\n if (this.isReact) {\n this.clearTemplate();\n }\n };\n Dialog.prototype.wireWindowResizeEvent = function () {\n window.addEventListener('resize', this.windowResizeHandler.bind(this));\n };\n Dialog.prototype.unWireWindowResizeEvent = function () {\n window.removeEventListener('resize', this.windowResizeHandler.bind(this));\n };\n /**\n * Binding event to the element while widget creation\n *\n * @returns {void}\n * @hidden\n */\n Dialog.prototype.wireEvents = function () {\n if (this.isBlazorServerRender() && this.showCloseIcon) {\n this.closeIcon = this.element.getElementsByClassName('e-dlg-closeicon-btn')[0];\n }\n if (this.showCloseIcon) {\n EventHandler.add(this.closeIcon, 'click', this.closeIconClickEventHandler, this);\n }\n if (this.isModal && this.dlgOverlay) {\n EventHandler.add(this.dlgOverlay, 'click', this.dlgOverlayClickEventHandler, this);\n }\n };\n /**\n * Unbinding event to the element while widget destroy\n *\n * @returns {void}\n * @hidden\n */\n Dialog.prototype.unWireEvents = function () {\n if (this.showCloseIcon) {\n EventHandler.remove(this.closeIcon, 'click', this.closeIconClickEventHandler);\n }\n if (this.isModal) {\n EventHandler.remove(this.dlgOverlay, 'click', this.dlgOverlayClickEventHandler);\n }\n if (this.buttons.length > 0 && !isNullOrUndefined(this.buttons[0].buttonModel) && this.footerTemplate === '') {\n for (var i = 0; i < this.buttons.length; i++) {\n if (typeof (this.buttons[i].click) === 'function') {\n EventHandler.remove(this.ftrTemplateContent.children[i], 'click', this.buttons[i].click);\n }\n }\n }\n };\n /**\n * Refreshes the dialog's position when the user changes its header and footer height/width dynamically.\n *\n * @returns {void}\n */\n Dialog.prototype.refreshPosition = function () {\n this.popupObj.refreshPosition();\n };\n /**\n * Returns the current width and height of the Dialog\n *\n * @returns {DialogDimension}- returns the dialog element Dimension.\n * @public\n */\n Dialog.prototype.getDimension = function () {\n var dialogWidth = this.element.offsetWidth;\n var dialogHeight = this.element.offsetHeight;\n return { width: dialogWidth, height: dialogHeight };\n };\n /**\n * Opens the dialog if it is in hidden state.\n * To open the dialog with full screen width, set the parameter to true.\n *\n * @param { boolean } isFullScreen - Enable the fullScreen Dialog.\n * @returns {void}\n */\n Dialog.prototype.show = function (isFullScreen) {\n var _this = this;\n if (!this.element.classList.contains(ROOT)) {\n return;\n }\n if (!this.element.classList.contains(DLG_SHOW) || (!isNullOrUndefined(isFullScreen))) {\n if (!isNullOrUndefined(isFullScreen)) {\n this.fullScreen(isFullScreen);\n }\n var eventArgs_1 = isBlazor() ? {\n cancel: false,\n element: this.element,\n container: this.isModal ? this.dlgContainer : this.element,\n maxHeight: this.element.style.maxHeight\n } : {\n cancel: false,\n element: this.element,\n container: this.isModal ? this.dlgContainer : this.element,\n target: this.target,\n maxHeight: this.element.style.maxHeight\n };\n this.trigger('beforeOpen', eventArgs_1, function (beforeOpenArgs) {\n if (!beforeOpenArgs.cancel) {\n if (_this.element.style.maxHeight !== eventArgs_1.maxHeight) {\n _this.allowMaxHeight = false;\n _this.element.style.maxHeight = eventArgs_1.maxHeight;\n }\n _this.storeActiveElement = document.activeElement;\n _this.element.tabIndex = -1;\n if (_this.isModal && (!isNullOrUndefined(_this.dlgOverlay))) {\n _this.dlgOverlay.style.display = 'block';\n _this.dlgContainer.style.display = 'flex';\n removeClass([_this.dlgOverlay], 'e-fade');\n if (!isNullOrUndefined(_this.targetEle)) {\n if (_this.targetEle === document.body) {\n _this.dlgContainer.style.position = 'fixed';\n }\n else {\n _this.dlgContainer.style.position = 'absolute';\n }\n _this.dlgOverlay.style.position = 'absolute';\n _this.element.style.position = 'relative';\n addClass([_this.targetEle], [DLG_TARGET, SCROLL_DISABLED]);\n }\n else {\n addClass([document.body], [DLG_TARGET, SCROLL_DISABLED]);\n }\n }\n var openAnimation = {\n name: _this.animationSettings.effect + 'In',\n duration: _this.animationSettings.duration,\n delay: _this.animationSettings.delay\n };\n var zIndexElement = (_this.isModal) ? _this.element.parentElement : _this.element;\n if (_this.calculatezIndex) {\n _this.setzIndex(zIndexElement, true);\n setStyleAttribute(_this.element, { 'zIndex': _this.zIndex });\n if (_this.isModal) {\n _this.setOverlayZindex(_this.zIndex);\n }\n }\n // eslint-disable-next-line\n _this.animationSettings.effect === 'None' ? _this.popupObj.show() : _this.popupObj.show(openAnimation);\n _this.dialogOpen = true;\n var prevOnChange = _this.isProtectedOnChange;\n _this.isProtectedOnChange = true;\n _this.visible = true;\n _this.preventVisibility = true;\n _this.isProtectedOnChange = prevOnChange;\n }\n });\n }\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if (this.isReact) {\n this.renderReactTemplates();\n }\n };\n /**\n * Closes the dialog if it is in visible state.\n *\n * @param { Event } event - specifies the event\n * @returns {void}\n */\n Dialog.prototype.hide = function (event) {\n var _this = this;\n if (!this.element.classList.contains(ROOT)) {\n return;\n }\n if (this.preventVisibility) {\n var eventArgs = isBlazor() ? {\n cancel: false,\n isInteracted: event ? true : false,\n element: this.element,\n container: this.isModal ? this.dlgContainer : this.element,\n event: event\n } : {\n cancel: false,\n isInteracted: event ? true : false,\n element: this.element,\n target: this.target,\n container: this.isModal ? this.dlgContainer : this.element,\n event: event,\n closedBy: this.dlgClosedBy\n };\n this.closeArgs = eventArgs;\n this.trigger('beforeClose', eventArgs, function (beforeCloseArgs) {\n if (!beforeCloseArgs.cancel) {\n if (_this.isModal) {\n if (!isNullOrUndefined(_this.targetEle)) {\n removeClass([_this.targetEle], [DLG_TARGET, SCROLL_DISABLED]);\n }\n }\n if (document.body.classList.contains(DLG_TARGET) &&\n document.body.classList.contains(SCROLL_DISABLED)) {\n removeClass([document.body], [DLG_TARGET, SCROLL_DISABLED]);\n }\n var closeAnimation = {\n name: _this.animationSettings.effect + 'Out',\n duration: _this.animationSettings.duration,\n delay: _this.animationSettings.delay\n };\n // eslint-disable-next-line\n _this.animationSettings.effect === 'None' ? _this.popupObj.hide() : _this.popupObj.hide(closeAnimation);\n _this.dialogOpen = false;\n var prevOnChange = _this.isProtectedOnChange;\n _this.isProtectedOnChange = true;\n _this.visible = false;\n _this.preventVisibility = false;\n _this.isProtectedOnChange = prevOnChange;\n }\n _this.dlgClosedBy = DLG_USER_ACTION_CLOSED;\n });\n }\n };\n // eslint-disable-next-line\n /**\n * Specifies to view the Full screen Dialog.\n *\n * @returns {void}\n * @private\n */\n Dialog.prototype.fullScreen = function (args) {\n /* eslint-disable */\n var top = this.element.offsetTop;\n var left = this.element.offsetLeft;\n /* eslint-enable */\n if (args) {\n this.element.style.top = document.scrollingElement.scrollTop + 'px';\n addClass([this.element], FULLSCREEN);\n var display = this.element.style.display;\n this.element.style.display = 'none';\n this.element.style.maxHeight = (!isNullOrUndefined(this.target)) ?\n (this.targetEle.offsetHeight) + 'px' : (window.innerHeight) + 'px';\n this.element.style.display = display;\n addClass([document.body], [DLG_TARGET, SCROLL_DISABLED]);\n if (this.allowDragging && !isNullOrUndefined(this.dragObj)) {\n this.dragObj.destroy();\n }\n }\n else {\n removeClass([this.element], FULLSCREEN);\n removeClass([document.body], [DLG_TARGET, SCROLL_DISABLED]);\n if (this.allowDragging && (!isNullOrUndefined(this.headerContent))) {\n this.setAllowDragging();\n }\n }\n return args;\n };\n /**\n * Returns the dialog button instances.\n * Based on that, you can dynamically change the button states.\n *\n * @param { number } index - Index of the button.\n * @returns {Button} - returns the button element\n */\n Dialog.prototype.getButtons = function (index) {\n if (!isNullOrUndefined(index)) {\n return this.btnObj[index];\n }\n return this.btnObj;\n };\n __decorate([\n Property('')\n ], Dialog.prototype, \"content\", void 0);\n __decorate([\n Property(true)\n ], Dialog.prototype, \"enableHtmlSanitizer\", void 0);\n __decorate([\n Property(false)\n ], Dialog.prototype, \"enablePersistence\", void 0);\n __decorate([\n Property(false)\n ], Dialog.prototype, \"showCloseIcon\", void 0);\n __decorate([\n Property(false)\n ], Dialog.prototype, \"isModal\", void 0);\n __decorate([\n Property('')\n ], Dialog.prototype, \"header\", void 0);\n __decorate([\n Property(true)\n ], Dialog.prototype, \"visible\", void 0);\n __decorate([\n Property(false)\n ], Dialog.prototype, \"enableResize\", void 0);\n __decorate([\n Property(['South-East'])\n ], Dialog.prototype, \"resizeHandles\", void 0);\n __decorate([\n Property('auto')\n ], Dialog.prototype, \"height\", void 0);\n __decorate([\n Property('')\n ], Dialog.prototype, \"minHeight\", void 0);\n __decorate([\n Property('100%')\n ], Dialog.prototype, \"width\", void 0);\n __decorate([\n Property('')\n ], Dialog.prototype, \"cssClass\", void 0);\n __decorate([\n Property(1000)\n ], Dialog.prototype, \"zIndex\", void 0);\n __decorate([\n Property(null)\n ], Dialog.prototype, \"target\", void 0);\n __decorate([\n Property('')\n ], Dialog.prototype, \"footerTemplate\", void 0);\n __decorate([\n Property(false)\n ], Dialog.prototype, \"allowDragging\", void 0);\n __decorate([\n Collection([{}], ButtonProps)\n ], Dialog.prototype, \"buttons\", void 0);\n __decorate([\n Property(true)\n ], Dialog.prototype, \"closeOnEscape\", void 0);\n __decorate([\n Complex({}, AnimationSettings)\n ], Dialog.prototype, \"animationSettings\", void 0);\n __decorate([\n Complex({ X: 'center', Y: 'center' }, PositionData)\n ], Dialog.prototype, \"position\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"created\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"open\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"beforeSanitizeHtml\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"beforeOpen\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"close\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"beforeClose\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"dragStart\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"dragStop\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"drag\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"overlayClick\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"resizeStart\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"resizing\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"resizeStop\", void 0);\n __decorate([\n Event()\n ], Dialog.prototype, \"destroyed\", void 0);\n Dialog = __decorate([\n NotifyPropertyChanges\n ], Dialog);\n return Dialog;\n}(Component));\nexport { Dialog };\n/**\n * Base for creating Alert and Confirmation Dialog through util method.\n */\n// eslint-disable-next-line\nexport var DialogUtility;\n(function (DialogUtility) {\n /**\n * An alert dialog box is used to display warning like messages to the users.\n * ```\n * Eg : DialogUtility.alert('Alert message');\n *\n * ```\n */\n /* istanbul ignore next */\n /**\n *\n * @param {AlertDialogArgs} args - specifies the string\n * @returns {Dialog} - returns the dialog element.\n */\n function alert(args) {\n // eslint-disable-next-line\n var dialogComponent;\n var dialogElement = createElement('div', { 'className': DLG_UTIL_ALERT });\n document.body.appendChild(dialogElement);\n var alertDialogObj;\n var okButtonModel = [{\n buttonModel: { isPrimary: true, content: 'OK' },\n click: function () {\n this.hide();\n }\n }];\n if (typeof (args) === 'string') {\n alertDialogObj = createDialog({ content: args,\n position: { X: 'center', Y: 'top' },\n isModal: true, header: DLG_UTIL_DEFAULT_TITLE,\n buttons: okButtonModel }, dialogElement);\n }\n else {\n alertDialogObj = createDialog(alertOptions(args), dialogElement);\n }\n alertDialogObj.close = function () {\n if (args && args.close) {\n args.close.apply(alertDialogObj);\n }\n alertDialogObj.destroy();\n if (alertDialogObj.element.classList.contains('e-dlg-modal')) {\n alertDialogObj.element.parentElement.remove();\n alertDialogObj.target.classList.remove(DLG_UTIL_ROOT);\n }\n else {\n alertDialogObj.element.remove();\n }\n };\n return alertDialogObj;\n }\n DialogUtility.alert = alert;\n /**\n * A confirm dialog displays a specified message along with ‘OK’ and ‘Cancel’ button.\n * ```\n * Eg : DialogUtility.confirm('Confirm dialog message');\n *\n * ```\n */\n /* istanbul ignore next */\n /**\n *\n * @param {ConfirmDialogArgs} args - specifies the args\n * @returns {Dialog} - returns te element\n */\n function confirm(args) {\n // eslint-disable-next-line\n var dialogComponent;\n var dialogElement = createElement('div', { 'className': DLG_UTIL_CONFIRM });\n document.body.appendChild(dialogElement);\n var confirmDialogObj;\n var okCancelButtonModel = [{\n buttonModel: { isPrimary: true, content: 'OK' },\n click: function () {\n this.hide();\n }\n }, {\n buttonModel: { content: 'Cancel' },\n click: function () {\n this.hide();\n }\n }];\n if (typeof (args) === 'string') {\n confirmDialogObj = createDialog({ position: { X: 'center', Y: 'top' }, content: args, isModal: true,\n header: DLG_UTIL_DEFAULT_TITLE, buttons: okCancelButtonModel\n }, dialogElement);\n }\n else {\n confirmDialogObj = createDialog(confirmOptions(args), dialogElement);\n }\n confirmDialogObj.close = function () {\n if (args && args.close) {\n args.close.apply(confirmDialogObj);\n }\n confirmDialogObj.destroy();\n if (confirmDialogObj.element.classList.contains('e-dlg-modal')) {\n confirmDialogObj.element.parentElement.remove();\n confirmDialogObj.target.classList.remove(DLG_UTIL_ROOT);\n }\n else {\n confirmDialogObj.element.remove();\n }\n };\n return confirmDialogObj;\n }\n DialogUtility.confirm = confirm;\n // eslint-disable-next-line\n function createDialog(options, element) {\n var dialogObject = new Dialog(options);\n dialogObject.appendTo(element);\n return dialogObject;\n }\n // eslint-disable-next-line\n function alertOptions(option) {\n var options = {};\n options.buttons = [];\n options = formOptions(options, option);\n options = setAlertButtonModel(options, option);\n return options;\n }\n // eslint-disable-next-line\n function confirmOptions(option) {\n var options = {};\n options.buttons = [];\n options = formOptions(options, option);\n options = setConfirmButtonModel(options, option);\n return options;\n }\n // eslint-disable-next-line\n function formOptions(options, option) {\n options.header = !isNullOrUndefined(option.title) ? option.title : DLG_UTIL_DEFAULT_TITLE;\n options.content = !isNullOrUndefined(option.content) ? option.content : '';\n options.isModal = !isNullOrUndefined(option.isModal) ? option.isModal : true;\n options.showCloseIcon = !isNullOrUndefined(option.showCloseIcon) ? option.showCloseIcon : false;\n options.allowDragging = !isNullOrUndefined(option.isDraggable) ? option.isDraggable : false;\n options.closeOnEscape = !isNullOrUndefined(option.closeOnEscape) ? option.closeOnEscape : false;\n options.position = !isNullOrUndefined(option.position) ? option.position : { X: 'center', Y: 'top' };\n options.animationSettings = !isNullOrUndefined(option.animationSettings) ? option.animationSettings :\n { effect: 'Fade', duration: 400, delay: 0 };\n options.cssClass = !isNullOrUndefined(option.cssClass) ? option.cssClass : '';\n options.zIndex = !isNullOrUndefined(option.zIndex) ? option.zIndex : 1000;\n options.open = !isNullOrUndefined(option.open) ? option.open : null;\n options.width = !isNullOrUndefined(option.width) ? option.width : 'auto';\n options.height = !isNullOrUndefined(option.height) ? option.height : 'auto';\n return options;\n }\n // eslint-disable-next-line\n function setAlertButtonModel(options, option) {\n var alertButtonModel = [{\n buttonModel: { isPrimary: true, content: 'OK' },\n click: function () {\n this.hide();\n }\n }];\n if (!isNullOrUndefined(option.okButton)) {\n options.buttons[0] = formButtonModel(options.buttons[0], option.okButton, alertButtonModel[0]);\n }\n else {\n options.buttons = alertButtonModel;\n }\n return options;\n }\n // eslint-disable-next-line\n function setConfirmButtonModel(options, option) {\n var okButtonModel = {\n buttonModel: { isPrimary: true, content: 'OK' },\n click: function () {\n this.hide();\n }\n };\n var cancelButtonModel = {\n buttonModel: { content: 'Cancel' },\n click: function () {\n this.hide();\n }\n };\n if (!isNullOrUndefined(option.okButton)) {\n options.buttons[0] = formButtonModel(options.buttons[0], option.okButton, okButtonModel);\n }\n else {\n options.buttons[0] = okButtonModel;\n }\n if (!isNullOrUndefined(option.cancelButton)) {\n options.buttons[1] = formButtonModel(options.buttons[1], option.cancelButton, cancelButtonModel);\n }\n else {\n options.buttons[1] = cancelButtonModel;\n }\n return options;\n }\n // eslint-disable-next-line\n function formButtonModel(buttonModel, option, buttonPropModel) {\n var buttonProps = buttonPropModel;\n if (!isNullOrUndefined(option.text)) {\n buttonProps.buttonModel.content = option.text;\n }\n if (!isNullOrUndefined(option.icon)) {\n buttonProps.buttonModel.iconCss = option.icon;\n }\n if (!isNullOrUndefined(option.cssClass)) {\n buttonProps.buttonModel.cssClass = option.cssClass;\n }\n if (!isNullOrUndefined(option.click)) {\n buttonProps.click = option.click;\n }\n return buttonProps;\n }\n})(DialogUtility || (DialogUtility = {}));\n","var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nimport { Component, Property, ChildProperty, Event, append, compile } from '@syncfusion/ej2-base';\nimport { EventHandler, Touch, Browser, Animation as PopupAnimation } from '@syncfusion/ej2-base';\nimport { isNullOrUndefined, getUniqueID, formatUnit, select, selectAll } from '@syncfusion/ej2-base';\nimport { attributes, closest, removeClass, addClass, remove } from '@syncfusion/ej2-base';\nimport { NotifyPropertyChanges, Complex, SanitizeHtmlHelper } from '@syncfusion/ej2-base';\nimport { Popup } from '../popup/popup';\nimport { calculatePosition } from '../common/position';\nimport { isCollide, fit } from '../common/collision';\nvar TOUCHEND_HIDE_DELAY = 1500;\nvar TAPHOLD_THRESHOLD = 500;\nvar SHOW_POINTER_TIP_GAP = 0;\nvar HIDE_POINTER_TIP_GAP = 8;\nvar MOUSE_TRAIL_GAP = 2;\nvar POINTER_ADJUST = 2;\nvar ROOT = 'e-tooltip';\nvar RTL = 'e-rtl';\nvar DEVICE = 'e-bigger';\nvar ICON = 'e-icons';\nvar CLOSE = 'e-tooltip-close';\nvar TOOLTIP_WRAP = 'e-tooltip-wrap';\nvar CONTENT = 'e-tip-content';\nvar ARROW_TIP = 'e-arrow-tip';\nvar ARROW_TIP_OUTER = 'e-arrow-tip-outer';\nvar ARROW_TIP_INNER = 'e-arrow-tip-inner';\nvar TIP_BOTTOM = 'e-tip-bottom';\nvar TIP_TOP = 'e-tip-top';\nvar TIP_LEFT = 'e-tip-left';\nvar TIP_RIGHT = 'e-tip-right';\nvar POPUP_ROOT = 'e-popup';\nvar POPUP_OPEN = 'e-popup-open';\nvar POPUP_CLOSE = 'e-popup-close';\nvar POPUP_LIB = 'e-lib';\nvar HIDE_POPUP = 'e-hidden';\nvar POPUP_CONTAINER = 'e-tooltip-popup-container';\nvar Animation = /** @class */ (function (_super) {\n __extends(Animation, _super);\n function Animation() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n __decorate([\n Property({ effect: 'FadeIn', duration: 150, delay: 0 })\n ], Animation.prototype, \"open\", void 0);\n __decorate([\n Property({ effect: 'FadeOut', duration: 150, delay: 0 })\n ], Animation.prototype, \"close\", void 0);\n return Animation;\n}(ChildProperty));\nexport { Animation };\n/**\n * Represents the Tooltip component that displays a piece of information about the target element on mouse hover.\n * ```html\n *
Show Tooltip
\n * ```\n * ```typescript\n * \n * ```\n */\nvar Tooltip = /** @class */ (function (_super) {\n __extends(Tooltip, _super);\n /* eslint-enable */\n /**\n * Constructor for creating the Tooltip Component\n *\n * @param {TooltipModel} options - specifies the options for the constructor\n * @param {string| HTMLElement} element - specifies the element for the constructor\n *\n */\n function Tooltip(options, element) {\n var _this = _super.call(this, options, element) || this;\n _this.mouseMoveEvent = null;\n _this.mouseMoveTarget = null;\n _this.containerElement = null;\n _this.isBodyContainer = true;\n return _this;\n }\n Tooltip.prototype.initialize = function () {\n this.formatPosition();\n addClass([this.element], ROOT);\n };\n Tooltip.prototype.formatPosition = function () {\n var _a, _b;\n if (this.position.indexOf('Top') === 0 || this.position.indexOf('Bottom') === 0) {\n _a = this.position.split(/(?=[A-Z])/), this.tooltipPositionY = _a[0], this.tooltipPositionX = _a[1];\n }\n else {\n _b = this.position.split(/(?=[A-Z])/), this.tooltipPositionX = _b[0], this.tooltipPositionY = _b[1];\n }\n };\n Tooltip.prototype.renderArrow = function () {\n this.setTipClass(this.position);\n var tip = this.createElement('div', { className: ARROW_TIP + ' ' + this.tipClass });\n tip.appendChild(this.createElement('div', { className: ARROW_TIP_OUTER + ' ' + this.tipClass }));\n tip.appendChild(this.createElement('div', { className: ARROW_TIP_INNER + ' ' + this.tipClass }));\n this.tooltipEle.appendChild(tip);\n };\n Tooltip.prototype.setTipClass = function (position) {\n if (position.indexOf('Right') === 0) {\n this.tipClass = TIP_LEFT;\n }\n else if (position.indexOf('Bottom') === 0) {\n this.tipClass = TIP_TOP;\n }\n else if (position.indexOf('Left') === 0) {\n this.tipClass = TIP_RIGHT;\n }\n else {\n this.tipClass = TIP_BOTTOM;\n }\n };\n Tooltip.prototype.renderPopup = function (target) {\n var elePos = this.mouseTrail ? { top: 0, left: 0 } : this.getTooltipPosition(target);\n this.tooltipEle.classList.remove(POPUP_LIB);\n this.popupObj = new Popup(this.tooltipEle, {\n height: this.height,\n width: this.width,\n position: { X: elePos.left, Y: elePos.top },\n enableRtl: this.enableRtl,\n open: this.openPopupHandler.bind(this),\n close: this.closePopupHandler.bind(this)\n });\n };\n Tooltip.prototype.getTooltipPosition = function (target) {\n this.tooltipEle.style.display = 'block';\n var pos = calculatePosition(target, this.tooltipPositionX, this.tooltipPositionY, !this.isBodyContainer, this.isBodyContainer ? null : this.containerElement.getBoundingClientRect());\n var offsetPos = this.calculateTooltipOffset(this.position);\n var collisionPosition = this.calculateElementPosition(pos, offsetPos);\n var collisionLeft = collisionPosition[0];\n var collisionTop = collisionPosition[1];\n var elePos = this.collisionFlipFit(target, collisionLeft, collisionTop);\n this.tooltipEle.style.display = '';\n return elePos;\n };\n Tooltip.prototype.windowResize = function () {\n this.reposition(this.findTarget());\n };\n Tooltip.prototype.reposition = function (target) {\n if (this.popupObj && target) {\n var elePos = this.getTooltipPosition(target);\n this.popupObj.position = { X: elePos.left, Y: elePos.top };\n this.popupObj.dataBind();\n }\n };\n Tooltip.prototype.openPopupHandler = function () {\n if (!this.mouseTrail && this.needTemplateReposition()) {\n this.reposition(this.findTarget());\n }\n this.trigger('afterOpen', this.tooltipEventArgs);\n this.tooltipEventArgs = null;\n };\n Tooltip.prototype.closePopupHandler = function () {\n if (this.isReact && !(this.opensOn === 'Click' && typeof (this.content) === 'function')) {\n this.clearTemplate(['content']);\n }\n this.clear();\n this.trigger('afterClose', this.tooltipEventArgs);\n this.tooltipEventArgs = null;\n };\n Tooltip.prototype.calculateTooltipOffset = function (position) {\n var pos = { top: 0, left: 0 };\n var tooltipEleWidth = this.tooltipEle.offsetWidth;\n var tooltipEleHeight = this.tooltipEle.offsetHeight;\n var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);\n var tipWidth = arrowEle ? arrowEle.offsetWidth : 0;\n var tipHeight = arrowEle ? arrowEle.offsetHeight : 0;\n var tipAdjust = (this.showTipPointer ? SHOW_POINTER_TIP_GAP : HIDE_POINTER_TIP_GAP);\n var tipHeightAdjust = (tipHeight / 2) + POINTER_ADJUST + (this.tooltipEle.offsetHeight - this.tooltipEle.clientHeight);\n var tipWidthAdjust = (tipWidth / 2) + POINTER_ADJUST + (this.tooltipEle.offsetWidth - this.tooltipEle.clientWidth);\n if (this.mouseTrail) {\n tipAdjust += MOUSE_TRAIL_GAP;\n }\n switch (position) {\n case 'RightTop':\n pos.left += tipWidth + tipAdjust;\n pos.top -= tooltipEleHeight - tipHeightAdjust;\n break;\n case 'RightCenter':\n pos.left += tipWidth + tipAdjust;\n pos.top -= (tooltipEleHeight / 2);\n break;\n case 'RightBottom':\n pos.left += tipWidth + tipAdjust;\n pos.top -= (tipHeightAdjust);\n break;\n case 'BottomRight':\n pos.top += (tipHeight + tipAdjust);\n pos.left -= (tipWidthAdjust);\n break;\n case 'BottomCenter':\n pos.top += (tipHeight + tipAdjust);\n pos.left -= (tooltipEleWidth / 2);\n break;\n case 'BottomLeft':\n pos.top += (tipHeight + tipAdjust);\n pos.left -= (tooltipEleWidth - tipWidthAdjust);\n break;\n case 'LeftBottom':\n pos.left -= (tipWidth + tooltipEleWidth + tipAdjust);\n pos.top -= (tipHeightAdjust);\n break;\n case 'LeftCenter':\n pos.left -= (tipWidth + tooltipEleWidth + tipAdjust);\n pos.top -= (tooltipEleHeight / 2);\n break;\n case 'LeftTop':\n pos.left -= (tipWidth + tooltipEleWidth + tipAdjust);\n pos.top -= (tooltipEleHeight - tipHeightAdjust);\n break;\n case 'TopLeft':\n pos.top -= (tooltipEleHeight + tipHeight + tipAdjust);\n pos.left -= (tooltipEleWidth - tipWidthAdjust);\n break;\n case 'TopRight':\n pos.top -= (tooltipEleHeight + tipHeight + tipAdjust);\n pos.left -= (tipWidthAdjust);\n break;\n default:\n pos.top -= (tooltipEleHeight + tipHeight + tipAdjust);\n pos.left -= (tooltipEleWidth / 2);\n break;\n }\n pos.left += this.offsetX;\n pos.top += this.offsetY;\n return pos;\n };\n Tooltip.prototype.updateTipPosition = function (position) {\n var selEle = selectAll('.' + ARROW_TIP + ',.' + ARROW_TIP_OUTER + ',.' + ARROW_TIP_INNER, this.tooltipEle);\n var removeList = [TIP_BOTTOM, TIP_TOP, TIP_LEFT, TIP_RIGHT];\n removeClass(selEle, removeList);\n this.setTipClass(position);\n addClass(selEle, this.tipClass);\n };\n Tooltip.prototype.adjustArrow = function (target, position, tooltipPositionX, tooltipPositionY) {\n if (this.showTipPointer === false) {\n return;\n }\n this.updateTipPosition(position);\n var leftValue;\n var topValue;\n this.tooltipEle.style.display = 'block';\n var tooltipWidth = this.tooltipEle.clientWidth;\n var tooltipHeight = this.tooltipEle.clientHeight;\n var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);\n var arrowInnerELe = select('.' + ARROW_TIP_INNER, this.tooltipEle);\n var tipWidth = arrowEle.offsetWidth;\n var tipHeight = arrowEle.offsetHeight;\n this.tooltipEle.style.display = '';\n if (this.tipClass === TIP_BOTTOM || this.tipClass === TIP_TOP) {\n if (this.tipClass === TIP_BOTTOM) {\n topValue = '99.9%';\n // Arrow icon aligned -2px height from ArrowOuterTip div\n arrowInnerELe.style.top = '-' + (tipHeight - 2) + 'px';\n }\n else {\n topValue = -(tipHeight - 1) + 'px';\n // Arrow icon aligned -6px height from ArrowOuterTip div\n arrowInnerELe.style.top = '-' + (tipHeight - 6) + 'px';\n }\n if (target) {\n var tipPosExclude = tooltipPositionX !== 'Center' || (tooltipWidth > target.offsetWidth) || this.mouseTrail;\n if ((tipPosExclude && tooltipPositionX === 'Left') || (!tipPosExclude && this.tipPointerPosition === 'End')) {\n leftValue = (tooltipWidth - tipWidth - POINTER_ADJUST) + 'px';\n }\n else if ((tipPosExclude && tooltipPositionX === 'Right') || (!tipPosExclude && this.tipPointerPosition === 'Start')) {\n leftValue = POINTER_ADJUST + 'px';\n }\n else if ((tipPosExclude) && (this.tipPointerPosition === 'End' || this.tipPointerPosition === 'Start')) {\n leftValue = (this.tipPointerPosition === 'End') ? ((target.offsetWidth + ((this.tooltipEle.offsetWidth - target.offsetWidth) / 2)) - (tipWidth / 2)) - POINTER_ADJUST + 'px'\n : ((this.tooltipEle.offsetWidth - target.offsetWidth) / 2) - (tipWidth / 2) + POINTER_ADJUST + 'px';\n }\n else {\n leftValue = ((tooltipWidth / 2) - (tipWidth / 2)) + 'px';\n }\n }\n }\n else {\n if (this.tipClass === TIP_RIGHT) {\n leftValue = '99.9%';\n // Arrow icon aligned -2px left from ArrowOuterTip div\n arrowInnerELe.style.left = '-' + (tipWidth - 2) + 'px';\n }\n else {\n leftValue = -(tipWidth - 1) + 'px';\n // Arrow icon aligned -2px from ArrowOuterTip width\n arrowInnerELe.style.left = (-(tipWidth) + (tipWidth - 2)) + 'px';\n }\n var tipPosExclude = tooltipPositionY !== 'Center' || (tooltipHeight > target.offsetHeight) || this.mouseTrail;\n if ((tipPosExclude && tooltipPositionY === 'Top') || (!tipPosExclude && this.tipPointerPosition === 'End')) {\n topValue = (tooltipHeight - tipHeight - POINTER_ADJUST) + 'px';\n }\n else if ((tipPosExclude && tooltipPositionY === 'Bottom') || (!tipPosExclude && this.tipPointerPosition === 'Start')) {\n topValue = POINTER_ADJUST + 'px';\n }\n else {\n topValue = ((tooltipHeight / 2) - (tipHeight / 2)) + 'px';\n }\n }\n arrowEle.style.top = topValue;\n arrowEle.style.left = leftValue;\n };\n Tooltip.prototype.renderContent = function (target) {\n var tooltipContent = select('.' + CONTENT, this.tooltipEle);\n if (this.cssClass) {\n addClass([this.tooltipEle], this.cssClass.split(' '));\n }\n if (target && !isNullOrUndefined(target.getAttribute('title'))) {\n target.setAttribute('data-content', target.getAttribute('title'));\n target.removeAttribute('title');\n }\n if (!isNullOrUndefined(this.content)) {\n tooltipContent.innerHTML = '';\n if (this.content instanceof HTMLElement) {\n tooltipContent.appendChild(this.content);\n }\n else if (typeof this.content === 'string') {\n if (this.enableHtmlSanitizer) {\n this.setProperties({ content: SanitizeHtmlHelper.sanitize(this.content) }, true);\n }\n var tempFunction = compile(this.content);\n var tempArr = tempFunction({}, this, 'content', this.element.id + 'content', undefined, undefined, tooltipContent);\n if (tempArr) {\n if (this.enableHtmlParse) {\n var nodeList = tempArr.length;\n for (var i = 0; i < nodeList; i++) {\n tooltipContent[append(tempArr, tooltipContent), 'innerHTML'] = this.content;\n }\n }\n else {\n tooltipContent['textContent'] = this.content;\n }\n }\n }\n else {\n var templateFunction = compile(this.content);\n var tempArr = templateFunction({}, this, 'content', this.element.id + 'content', undefined, undefined, tooltipContent);\n if (tempArr) {\n append(tempArr, tooltipContent);\n }\n this.renderReactTemplates();\n }\n }\n else {\n if (target && !isNullOrUndefined(target.getAttribute('data-content'))) {\n tooltipContent.innerHTML = target.getAttribute('data-content');\n }\n }\n };\n Tooltip.prototype.renderCloseIcon = function () {\n if (!this.isSticky) {\n return;\n }\n var tipClose = this.createElement('div', { className: ICON + ' ' + CLOSE });\n this.tooltipEle.appendChild(tipClose);\n EventHandler.add(tipClose, Browser.touchStartEvent, this.onStickyClose, this);\n };\n Tooltip.prototype.addDataTooltipId = function (target, id) {\n attributes(target, { 'data-tooltip-id': id });\n };\n Tooltip.prototype.removeDataTooltipId = function (target) {\n target.removeAttribute('data-tooltip-id');\n };\n Tooltip.prototype.tapHoldHandler = function (evt) {\n clearTimeout(this.autoCloseTimer);\n this.targetHover(evt.originalEvent);\n };\n Tooltip.prototype.touchEndHandler = function (e) {\n var _this = this;\n if (this.isSticky) {\n return;\n }\n var close = function () {\n _this.close();\n };\n this.autoCloseTimer = setTimeout(close, TOUCHEND_HIDE_DELAY);\n };\n Tooltip.prototype.targetClick = function (e) {\n var target;\n if (this.target) {\n target = closest(e.target, this.target);\n }\n else {\n target = this.element;\n }\n if (isNullOrUndefined(target)) {\n return;\n }\n if (target.getAttribute('data-tooltip-id') === null) {\n this.targetHover(e);\n }\n else if (!this.isSticky) {\n this.hideTooltip(this.animation.close, e, target);\n }\n };\n Tooltip.prototype.targetHover = function (e) {\n var target;\n if (this.target) {\n target = closest(e.target, this.target);\n }\n else {\n target = this.element;\n }\n if (isNullOrUndefined(target) || (target.getAttribute('data-tooltip-id') !== null && this.closeDelay === 0)) {\n return;\n }\n var targetList = [].slice.call(selectAll('[data-tooltip-id= \"' + this.ctrlId + '_content\"]', document));\n for (var _i = 0, targetList_1 = targetList; _i < targetList_1.length; _i++) {\n var target_1 = targetList_1[_i];\n this.restoreElement(target_1);\n }\n this.showTooltip(target, this.animation.open, e);\n };\n Tooltip.prototype.mouseMoveBeforeOpen = function (e) {\n this.mouseMoveEvent = e;\n };\n Tooltip.prototype.mouseMoveBeforeRemove = function () {\n if (this.mouseMoveTarget) {\n EventHandler.remove(this.mouseMoveTarget, 'mousemove touchstart', this.mouseMoveBeforeOpen);\n }\n };\n Tooltip.prototype.showTooltip = function (target, showAnimation, e) {\n var _this = this;\n clearTimeout(this.showTimer);\n clearTimeout(this.hideTimer);\n if (this.openDelay && this.mouseTrail) {\n this.mouseMoveBeforeRemove();\n this.mouseMoveTarget = target;\n EventHandler.add(this.mouseMoveTarget, 'mousemove touchstart', this.mouseMoveBeforeOpen, this);\n }\n this.tooltipEventArgs = {\n type: e ? e.type : null, cancel: false, target: target, event: e ? e : null,\n element: this.tooltipEle, isInteracted: !isNullOrUndefined(e)\n };\n var observeCallback = function (beforeRenderArgs) {\n _this.beforeRenderCallback(beforeRenderArgs, target, e, showAnimation);\n };\n this.trigger('beforeRender', this.tooltipEventArgs, observeCallback.bind(this));\n };\n Tooltip.prototype.beforeRenderCallback = function (beforeRenderArgs, target, e, showAnimation) {\n if (beforeRenderArgs.cancel) {\n this.isHidden = true;\n this.clear();\n this.mouseMoveBeforeRemove();\n }\n else {\n this.isHidden = false;\n if (isNullOrUndefined(this.tooltipEle)) {\n this.ctrlId = this.element.getAttribute('id') ?\n getUniqueID(this.element.getAttribute('id')) : getUniqueID('tooltip');\n this.tooltipEle = this.createElement('div', {\n className: TOOLTIP_WRAP + ' ' + POPUP_ROOT + ' ' + POPUP_LIB, attrs: {\n role: 'tooltip', 'aria-hidden': 'false', 'id': this.ctrlId + '_content'\n }, styles: 'width:' +\n formatUnit(this.width) + ';height:' + formatUnit(this.height) + ';position:absolute;'\n });\n if (Object.keys(this.htmlAttributes).length !== 0) {\n for (var attr in this.htmlAttributes) {\n if (attr === \"class\") {\n this.tooltipEle.classList.add(this.htmlAttributes[\"\" + attr]);\n }\n else {\n this.tooltipEle.setAttribute(attr, this.htmlAttributes[\"\" + attr]);\n }\n }\n }\n this.tooltipBeforeRender(target, this);\n this.tooltipAfterRender(target, e, showAnimation, this);\n }\n else {\n if (target) {\n this.adjustArrow(target, this.position, this.tooltipPositionX, this.tooltipPositionY);\n this.addDataTooltipId(target, this.ctrlId + '_content');\n this.renderContent(target);\n PopupAnimation.stop(this.tooltipEle);\n this.reposition(target);\n this.tooltipAfterRender(target, e, showAnimation, this);\n }\n }\n }\n };\n Tooltip.prototype.appendContainer = function (ctrlObj) {\n if (typeof this.container == 'string') {\n if (this.container === 'body') {\n this.containerElement = document.body;\n }\n else {\n this.isBodyContainer = false;\n this.containerElement = select(this.container, document);\n }\n }\n else if (this.container instanceof HTMLElement) {\n this.containerElement = this.container;\n this.isBodyContainer = this.containerElement.tagName === 'BODY';\n }\n if (!this.isBodyContainer) {\n addClass([this.containerElement], POPUP_CONTAINER);\n }\n this.containerElement.appendChild(ctrlObj.tooltipEle);\n };\n Tooltip.prototype.tooltipBeforeRender = function (target, ctrlObj) {\n if (target) {\n if (Browser.isDevice) {\n addClass([ctrlObj.tooltipEle], DEVICE);\n }\n if (ctrlObj.width !== 'auto') {\n ctrlObj.tooltipEle.style.maxWidth = formatUnit(ctrlObj.width);\n }\n ctrlObj.tooltipEle.appendChild(ctrlObj.createElement('div', { className: CONTENT }));\n this.appendContainer(ctrlObj);\n removeClass([ctrlObj.tooltipEle], HIDE_POPUP);\n ctrlObj.addDataTooltipId(target, ctrlObj.ctrlId + '_content');\n ctrlObj.renderContent(target);\n addClass([ctrlObj.tooltipEle], POPUP_OPEN);\n if (ctrlObj.showTipPointer) {\n ctrlObj.renderArrow();\n }\n ctrlObj.renderCloseIcon();\n ctrlObj.renderPopup(target);\n ctrlObj.adjustArrow(target, ctrlObj.position, ctrlObj.tooltipPositionX, ctrlObj.tooltipPositionY);\n PopupAnimation.stop(ctrlObj.tooltipEle);\n ctrlObj.reposition(target);\n }\n };\n Tooltip.prototype.tooltipAfterRender = function (target, e, showAnimation, ctrlObj) {\n if (target) {\n removeClass([ctrlObj.tooltipEle], POPUP_OPEN);\n addClass([ctrlObj.tooltipEle], POPUP_CLOSE);\n ctrlObj.tooltipEventArgs = {\n type: e ? e.type : null, cancel: false, target: target, event: e ? e : null,\n element: ctrlObj.tooltipEle, isInteracted: !isNullOrUndefined(e)\n };\n if (ctrlObj.needTemplateReposition() && !ctrlObj.mouseTrail) {\n ctrlObj.tooltipEle.style.display = 'none';\n }\n var observeCallback = function (observedArgs) {\n ctrlObj.beforeOpenCallback(observedArgs, target, showAnimation, e);\n };\n ctrlObj.trigger('beforeOpen', ctrlObj.tooltipEventArgs, observeCallback.bind(ctrlObj));\n }\n };\n Tooltip.prototype.beforeOpenCallback = function (observedArgs, target, showAnimation, e) {\n var _this = this;\n if (observedArgs.cancel) {\n this.isHidden = true;\n this.clear();\n this.mouseMoveBeforeRemove();\n this.restoreElement(target);\n }\n else {\n var openAnimation_1 = {\n name: showAnimation.effect,\n duration: showAnimation.duration,\n delay: showAnimation.delay,\n timingFunction: 'easeOut'\n };\n if (showAnimation.effect === 'None') {\n openAnimation_1 = undefined;\n }\n if (this.openDelay > 0) {\n var show = function () {\n if (_this.mouseTrail) {\n EventHandler.add(target, 'mousemove touchstart mouseenter', _this.onMouseMove, _this);\n }\n if (_this.popupObj) {\n _this.popupObj.show(openAnimation_1, target);\n if (_this.mouseMoveEvent && _this.mouseTrail) {\n _this.onMouseMove(_this.mouseMoveEvent);\n }\n }\n };\n this.showTimer = setTimeout(show, this.openDelay);\n }\n else {\n if (this.popupObj) {\n this.popupObj.show(openAnimation_1, target);\n }\n }\n }\n if (e) {\n this.wireMouseEvents(e, target);\n }\n };\n Tooltip.prototype.needTemplateReposition = function () {\n // eslint-disable-next-line\n var tooltip = this;\n return !isNullOrUndefined(tooltip.viewContainerRef)\n && typeof tooltip.viewContainerRef !== 'string';\n };\n Tooltip.prototype.checkCollision = function (target, x, y) {\n var elePos = {\n left: x, top: y, position: this.position,\n horizontal: this.tooltipPositionX, vertical: this.tooltipPositionY\n };\n var affectedPos = isCollide(this.tooltipEle, this.checkCollideTarget(), x, y);\n if (affectedPos.length > 0) {\n elePos.horizontal = affectedPos.indexOf('left') >= 0 ? 'Right' : affectedPos.indexOf('right') >= 0 ? 'Left' :\n this.tooltipPositionX;\n elePos.vertical = affectedPos.indexOf('top') >= 0 ? 'Bottom' : affectedPos.indexOf('bottom') >= 0 ? 'Top' :\n this.tooltipPositionY;\n }\n return elePos;\n };\n Tooltip.prototype.calculateElementPosition = function (pos, offsetPos) {\n return [this.isBodyContainer ? pos.left + offsetPos.left :\n (pos.left - this.containerElement.offsetLeft) + offsetPos.left + window.pageXOffset + this.containerElement.scrollLeft,\n this.isBodyContainer ? pos.top + offsetPos.top :\n (pos.top - this.containerElement.offsetTop) + offsetPos.top + window.pageYOffset + this.containerElement.scrollTop];\n };\n Tooltip.prototype.collisionFlipFit = function (target, x, y) {\n var elePos = this.checkCollision(target, x, y);\n var newpos = elePos.position;\n if (this.tooltipPositionY !== elePos.vertical) {\n newpos = ((this.position.indexOf('Bottom') === 0 || this.position.indexOf('Top') === 0) ?\n elePos.vertical + this.tooltipPositionX : this.tooltipPositionX + elePos.vertical);\n }\n if (this.tooltipPositionX !== elePos.horizontal) {\n if (newpos.indexOf('Left') === 0) {\n elePos.vertical = (newpos === 'LeftTop' || newpos === 'LeftCenter') ? 'Top' : 'Bottom';\n newpos = (elePos.vertical + 'Left');\n }\n if (newpos.indexOf('Right') === 0) {\n elePos.vertical = (newpos === 'RightTop' || newpos === 'RightCenter') ? 'Top' : 'Bottom';\n newpos = (elePos.vertical + 'Right');\n }\n elePos.horizontal = this.tooltipPositionX;\n }\n this.tooltipEventArgs = {\n type: null, cancel: false, target: target, event: null,\n element: this.tooltipEle, collidedPosition: newpos\n };\n this.trigger('beforeCollision', this.tooltipEventArgs);\n if (this.tooltipEventArgs.cancel) {\n newpos = this.position;\n }\n else {\n var elePosVertical = elePos.vertical;\n var elePosHorizontal = elePos.horizontal;\n if (elePos.position !== newpos) {\n var pos = calculatePosition(target, elePosHorizontal, elePosVertical, !this.isBodyContainer, this.isBodyContainer ? null : this.containerElement.getBoundingClientRect());\n this.adjustArrow(target, newpos, elePosHorizontal, elePosVertical);\n var offsetPos = this.calculateTooltipOffset(newpos);\n offsetPos.top -= this.getOffSetPosition('TopBottom', newpos, this.offsetY);\n offsetPos.left -= this.getOffSetPosition('RightLeft', newpos, this.offsetX);\n elePos.position = newpos;\n var elePosition = this.calculateElementPosition(pos, offsetPos);\n elePos.left = elePosition[0];\n elePos.top = elePosition[1];\n }\n else {\n this.adjustArrow(target, newpos, elePosHorizontal, elePosVertical);\n }\n }\n var eleOffset = { left: elePos.left, top: elePos.top };\n var left = this.isBodyContainer ?\n fit(this.tooltipEle, this.checkCollideTarget(), { X: true, Y: false }, eleOffset).left : eleOffset.left;\n this.tooltipEle.style.display = 'block';\n if (this.showTipPointer && (newpos.indexOf('Bottom') === 0 || newpos.indexOf('Top') === 0)) {\n var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);\n var arrowleft = parseInt(arrowEle.style.left, 10) - (left - elePos.left);\n if (arrowleft < 0) {\n arrowleft = 0;\n }\n else if ((arrowleft + arrowEle.offsetWidth) > this.tooltipEle.clientWidth) {\n arrowleft = this.tooltipEle.clientWidth - arrowEle.offsetWidth;\n }\n arrowEle.style.left = arrowleft.toString() + 'px';\n }\n this.tooltipEle.style.display = '';\n eleOffset.left = left;\n return eleOffset;\n };\n Tooltip.prototype.getOffSetPosition = function (positionString, newPos, offsetType) {\n return ((positionString.indexOf(this.position.split(/(?=[A-Z])/)[0]) !== -1) &&\n (positionString.indexOf(newPos.split(/(?=[A-Z])/)[0]) !== -1)) ? (2 * offsetType) : 0;\n };\n Tooltip.prototype.checkCollideTarget = function () {\n return !this.windowCollision && this.target ? this.element : null;\n };\n Tooltip.prototype.hideTooltip = function (hideAnimation, e, targetElement) {\n var _this = this;\n if (this.closeDelay > 0) {\n clearTimeout(this.hideTimer);\n clearTimeout(this.showTimer);\n var hide = function () {\n if (_this.closeDelay && _this.tooltipEle && _this.isTooltipOpen) {\n return;\n }\n _this.tooltipHide(hideAnimation, e, targetElement);\n };\n this.hideTimer = setTimeout(hide, this.closeDelay);\n }\n else {\n this.tooltipHide(hideAnimation, e, targetElement);\n }\n };\n Tooltip.prototype.tooltipHide = function (hideAnimation, e, targetElement) {\n var _this = this;\n var target;\n if (e) {\n target = this.target ? (targetElement || e.target) : this.element;\n }\n else {\n target = select('[data-tooltip-id= \"' + this.ctrlId + '_content\"]', document);\n }\n this.tooltipEventArgs = {\n type: e ? e.type : null, cancel: false, target: target, event: e ? e : null,\n element: this.tooltipEle, isInteracted: !isNullOrUndefined(e)\n };\n // this line commented for close the tooltip popup element even the target element destroyed in a page.\n //if (isNullOrUndefined(target)) { return; }\n this.trigger('beforeClose', this.tooltipEventArgs, function (observedArgs) {\n if (!observedArgs.cancel) {\n _this.mouseMoveBeforeRemove();\n _this.popupHide(hideAnimation, target);\n }\n else {\n _this.isHidden = false;\n }\n });\n this.tooltipEventArgs = null;\n };\n Tooltip.prototype.popupHide = function (hideAnimation, target) {\n if (target) {\n this.restoreElement(target);\n }\n this.isHidden = true;\n var closeAnimation = {\n name: hideAnimation.effect,\n duration: hideAnimation.duration,\n delay: hideAnimation.delay,\n timingFunction: 'easeIn'\n };\n if (hideAnimation.effect === 'None') {\n closeAnimation = undefined;\n }\n if (this.popupObj) {\n this.popupObj.hide(closeAnimation);\n }\n };\n Tooltip.prototype.restoreElement = function (target) {\n this.unwireMouseEvents(target);\n if (!isNullOrUndefined(target.getAttribute('data-content'))) {\n target.setAttribute('title', target.getAttribute('data-content'));\n target.removeAttribute('data-content');\n }\n this.removeDataTooltipId(target);\n };\n Tooltip.prototype.clear = function () {\n if (this.tooltipEle) {\n removeClass([this.tooltipEle], POPUP_CLOSE);\n addClass([this.tooltipEle], POPUP_OPEN);\n }\n if (this.isHidden) {\n if (this.popupObj) {\n this.popupObj.destroy();\n }\n if (this.tooltipEle) {\n remove(this.tooltipEle);\n }\n this.tooltipEle = null;\n this.popupObj = null;\n }\n };\n Tooltip.prototype.tooltipHover = function (e) {\n if (this.tooltipEle) {\n this.isTooltipOpen = true;\n }\n };\n Tooltip.prototype.tooltipMouseOut = function (e) {\n this.isTooltipOpen = false;\n this.hideTooltip(this.animation.close, e, this.findTarget());\n };\n Tooltip.prototype.onMouseOut = function (e) {\n var enteredElement = e.relatedTarget;\n // don't close the tooltip only if it is tooltip content element\n if (enteredElement && !this.mouseTrail) {\n var checkForTooltipElement = closest(enteredElement, \".\" + TOOLTIP_WRAP + \".\" + POPUP_LIB + \".\" + POPUP_ROOT);\n if (checkForTooltipElement) {\n EventHandler.add(checkForTooltipElement, 'mouseleave', this.tooltipElementMouseOut, this);\n }\n else {\n this.hideTooltip(this.animation.close, e, this.findTarget());\n if (this.closeDelay === 0) {\n this.clear();\n }\n }\n }\n else {\n this.hideTooltip(this.animation.close, e, this.findTarget());\n this.clear();\n }\n };\n Tooltip.prototype.tooltipElementMouseOut = function (e) {\n this.hideTooltip(this.animation.close, e, this.findTarget());\n EventHandler.remove(this.element, 'mouseleave', this.tooltipElementMouseOut);\n this.clear();\n };\n Tooltip.prototype.onStickyClose = function (e) {\n this.close();\n };\n Tooltip.prototype.onMouseMove = function (event) {\n var eventPageX = 0;\n var eventPageY = 0;\n if (event.type.indexOf('touch') > -1) {\n event.preventDefault();\n eventPageX = event.touches[0].pageX;\n eventPageY = event.touches[0].pageY;\n }\n else {\n eventPageX = event.pageX;\n eventPageY = event.pageY;\n }\n PopupAnimation.stop(this.tooltipEle);\n removeClass([this.tooltipEle], POPUP_CLOSE);\n addClass([this.tooltipEle], POPUP_OPEN);\n this.adjustArrow(event.target, this.position, this.tooltipPositionX, this.tooltipPositionY);\n var pos = this.calculateTooltipOffset(this.position);\n var x = eventPageX + pos.left + this.offsetX;\n var y = eventPageY + pos.top + this.offsetY;\n var elePos = this.checkCollision(event.target, x, y);\n if (this.tooltipPositionX !== elePos.horizontal || this.tooltipPositionY !== elePos.vertical) {\n var newpos = (this.position.indexOf('Bottom') === 0 || this.position.indexOf('Top') === 0) ?\n elePos.vertical + elePos.horizontal : elePos.horizontal + elePos.vertical;\n elePos.position = newpos;\n this.adjustArrow(event.target, elePos.position, elePos.horizontal, elePos.vertical);\n var colpos = this.calculateTooltipOffset(elePos.position);\n elePos.left = eventPageX + colpos.left - this.offsetX;\n elePos.top = eventPageY + colpos.top - this.offsetY;\n }\n this.tooltipEle.style.left = elePos.left + 'px';\n this.tooltipEle.style.top = elePos.top + 'px';\n };\n Tooltip.prototype.keyDown = function (event) {\n if (!isNullOrUndefined(this.targetsList) && !isNullOrUndefined(this.target)) {\n var target = [].slice.call(selectAll(this.target, this.element));\n if (target.length !== this.targetsList.length) {\n this.unwireEvents(this.opensOn);\n this.wireEvents(this.opensOn);\n }\n }\n if (this.tooltipEle && event.keyCode === 27) {\n this.close();\n }\n };\n Tooltip.prototype.touchEnd = function (e) {\n if (this.tooltipEle && closest(e.target, '.' + ROOT) === null && !this.isSticky) {\n this.close();\n }\n };\n Tooltip.prototype.scrollHandler = function (e) {\n if (this.tooltipEle) {\n if (!(closest(e.target, \".\" + TOOLTIP_WRAP + \".\" + POPUP_LIB + \".\" + POPUP_ROOT))) {\n this.close();\n }\n }\n };\n /**\n * Core method that initializes the control rendering.\n *\n * @private\n * @returns {void}\n */\n Tooltip.prototype.render = function () {\n this.initialize();\n this.wireEvents(this.opensOn);\n this.renderComplete();\n };\n /**\n * Initializes the values of private members.\n *\n * @private\n * @returns {void}\n */\n Tooltip.prototype.preRender = function () {\n this.tipClass = TIP_BOTTOM;\n this.tooltipPositionX = 'Center';\n this.tooltipPositionY = 'Top';\n this.isHidden = true;\n };\n /**\n * Binding events to the Tooltip element.\n *\n * @hidden\n * @param {string} trigger - specify the trigger string to the function\n * @returns {void}\n *\n */\n Tooltip.prototype.wireEvents = function (trigger) {\n var triggerList = this.getTriggerList(trigger);\n for (var _i = 0, triggerList_1 = triggerList; _i < triggerList_1.length; _i++) {\n var opensOn = triggerList_1[_i];\n if (opensOn === 'Custom') {\n return;\n }\n if (opensOn === 'Focus') {\n this.wireFocusEvents();\n }\n if (opensOn === 'Click') {\n EventHandler.add(this.element, Browser.touchStartEvent, this.targetClick, this);\n }\n if (opensOn === 'Hover') {\n if (Browser.isDevice) {\n this.touchModule = new Touch(this.element, {\n tapHoldThreshold: TAPHOLD_THRESHOLD,\n tapHold: this.tapHoldHandler.bind(this)\n });\n EventHandler.add(this.element, Browser.touchEndEvent, this.touchEndHandler, this);\n }\n else {\n EventHandler.add(this.element, 'mouseover', this.targetHover, this);\n }\n }\n }\n EventHandler.add(document, 'touchend', this.touchEnd, this);\n EventHandler.add(document, 'scroll wheel', this.scrollHandler, this);\n EventHandler.add(window, 'resize', this.windowResize, this);\n EventHandler.add(document, 'keydown', this.keyDown, this);\n };\n Tooltip.prototype.getTriggerList = function (trigger) {\n if (trigger === 'Auto') {\n trigger = (Browser.isDevice) ? 'Hover' : 'Hover Focus';\n }\n return trigger.split(' ');\n };\n Tooltip.prototype.wireFocusEvents = function () {\n if (!isNullOrUndefined(this.target)) {\n if (this.element.nodeName !== \"BODY\") {\n EventHandler.add(this.element, 'focusin', this.targetHover, this);\n }\n else {\n var targetList = [].slice.call(selectAll(this.target, this.element));\n this.targetsList = targetList;\n for (var _i = 0, targetList_2 = targetList; _i < targetList_2.length; _i++) {\n var target = targetList_2[_i];\n EventHandler.add(target, 'focus', this.targetHover, this);\n }\n }\n }\n else {\n EventHandler.add(this.element, 'focus', this.targetHover, this);\n }\n };\n Tooltip.prototype.wireMouseEvents = function (e, target) {\n if (this.tooltipEle) {\n if (!this.isSticky) {\n if (e.type === 'focus') {\n EventHandler.add(target, 'blur', this.onMouseOut, this);\n }\n if (e.type === 'focusin') {\n EventHandler.add(target, 'focusout', this.onMouseOut, this);\n }\n if (e.type === 'mouseover') {\n EventHandler.add(target, 'mouseleave', this.onMouseOut, this);\n }\n if (this.closeDelay) {\n EventHandler.add(this.tooltipEle, 'mouseenter', this.tooltipHover, this);\n EventHandler.add(this.tooltipEle, 'mouseleave', this.tooltipMouseOut, this);\n }\n }\n if (this.mouseTrail && this.openDelay === 0) {\n EventHandler.add(target, 'mousemove touchstart mouseenter', this.onMouseMove, this);\n }\n }\n };\n /**\n * Unbinding events from the element on widget destroy.\n *\n * @hidden\n *\n * @param {string} trigger - specify the trigger string to the function\n * @returns {void}\n *\n */\n Tooltip.prototype.unwireEvents = function (trigger) {\n var triggerList = this.getTriggerList(trigger);\n for (var _i = 0, triggerList_2 = triggerList; _i < triggerList_2.length; _i++) {\n var opensOn = triggerList_2[_i];\n if (opensOn === 'Custom') {\n return;\n }\n if (opensOn === 'Focus') {\n this.unwireFocusEvents();\n }\n if (opensOn === 'Click') {\n EventHandler.remove(this.element, Browser.touchStartEvent, this.targetClick);\n }\n if (opensOn === 'Hover') {\n if (Browser.isDevice) {\n if (this.touchModule) {\n this.touchModule.destroy();\n }\n EventHandler.remove(this.element, Browser.touchEndEvent, this.touchEndHandler);\n }\n else {\n EventHandler.remove(this.element, 'mouseover', this.targetHover);\n }\n }\n }\n EventHandler.remove(document, 'touchend', this.touchEnd);\n EventHandler.remove(document, 'scroll wheel', this.scrollHandler);\n EventHandler.remove(window, 'resize', this.windowResize);\n EventHandler.remove(document, 'keydown', this.keyDown);\n };\n Tooltip.prototype.unwireFocusEvents = function () {\n if (!isNullOrUndefined(this.target)) {\n if (this.element.nodeName === 'BODY') {\n EventHandler.remove(this.element, 'focusin', this.targetHover);\n }\n else {\n var targetList = [].slice.call(selectAll(this.target, this.element));\n for (var _i = 0, targetList_3 = targetList; _i < targetList_3.length; _i++) {\n var target = targetList_3[_i];\n EventHandler.remove(target, 'focus', this.targetHover);\n }\n }\n }\n else {\n EventHandler.remove(this.element, 'focus', this.targetHover);\n }\n };\n Tooltip.prototype.unwireMouseEvents = function (target) {\n if (!this.isSticky) {\n var triggerList = this.getTriggerList(this.opensOn);\n for (var _i = 0, triggerList_3 = triggerList; _i < triggerList_3.length; _i++) {\n var opensOn = triggerList_3[_i];\n if (opensOn === 'Focus') {\n EventHandler.remove(target, 'blur', this.onMouseOut);\n EventHandler.remove(target, 'focusout', this.onMouseOut);\n }\n if (opensOn === 'Hover' && !Browser.isDevice) {\n EventHandler.remove(target, 'mouseleave', this.onMouseOut);\n }\n }\n if (this.closeDelay) {\n EventHandler.remove(target, 'mouseenter', this.tooltipHover);\n EventHandler.remove(target, 'mouseleave', this.tooltipMouseOut);\n }\n }\n if (this.mouseTrail) {\n EventHandler.remove(target, 'mousemove touchstart mouseenter', this.onMouseMove);\n }\n };\n Tooltip.prototype.findTarget = function () {\n var target = select('[data-tooltip-id= \"' + this.ctrlId + '_content\"]', document);\n return target;\n };\n /**\n * Core method to return the component name.\n *\n * @private\n *\n * @returns {string} - this method returns module name.\n */\n Tooltip.prototype.getModuleName = function () {\n return 'tooltip';\n };\n /**\n * Returns the properties to be maintained in the persisted state.\n *\n * @private\n *\n * @returns {string} - this method returns persisted data.\n */\n Tooltip.prototype.getPersistData = function () {\n return this.addOnPersist([]);\n };\n /**\n * Called internally, if any of the property value changed.\n *\n * @private\n *\n * @param {TooltipModel} newProp - this param gives new property values to the method\n * @param {TooltipModel} oldProp - this param gives old property values to the method\n * @returns {void}\n *\n */\n Tooltip.prototype.onPropertyChanged = function (newProp, oldProp) {\n var targetElement = this.findTarget();\n for (var _i = 0, _a = Object.keys(newProp); _i < _a.length; _i++) {\n var prop = _a[_i];\n switch (prop) {\n case 'width':\n if (this.tooltipEle && targetElement) {\n this.tooltipEle.style.width = this.tooltipEle.style.maxWidth = formatUnit(newProp.width);\n this.reposition(targetElement);\n }\n break;\n case 'height':\n if (this.tooltipEle && targetElement) {\n this.tooltipEle.style.height = formatUnit(newProp.height);\n this.reposition(targetElement);\n }\n break;\n case 'content':\n if (this.tooltipEle) {\n this.renderContent();\n }\n break;\n case 'opensOn':\n this.unwireEvents(oldProp.opensOn);\n this.wireEvents(newProp.opensOn);\n break;\n case 'position':\n this.formatPosition();\n if (this.tooltipEle && targetElement) {\n var arrowInnerELe = select('.' + ARROW_TIP_INNER, this.tooltipEle);\n arrowInnerELe.style.top = arrowInnerELe.style.left = null;\n this.reposition(targetElement);\n }\n break;\n case 'tipPointerPosition':\n if (this.tooltipEle && targetElement) {\n this.reposition(targetElement);\n }\n break;\n case 'offsetX':\n if (this.tooltipEle) {\n var x = newProp.offsetX - oldProp.offsetX;\n this.tooltipEle.style.left = (parseInt(this.tooltipEle.style.left, 10) + (x)).toString() + 'px';\n }\n break;\n case 'offsetY':\n if (this.tooltipEle) {\n var y = newProp.offsetY - oldProp.offsetY;\n this.tooltipEle.style.top = (parseInt(this.tooltipEle.style.top, 10) + (y)).toString() + 'px';\n }\n break;\n case 'cssClass':\n if (this.tooltipEle) {\n if (oldProp.cssClass) {\n removeClass([this.tooltipEle], oldProp.cssClass.split(' '));\n }\n if (newProp.cssClass) {\n addClass([this.tooltipEle], newProp.cssClass.split(' '));\n }\n }\n break;\n case 'enableRtl':\n if (this.tooltipEle) {\n if (this.enableRtl) {\n addClass([this.tooltipEle], RTL);\n }\n else {\n removeClass([this.tooltipEle], RTL);\n }\n }\n break;\n case 'container':\n if (!isNullOrUndefined(this.containerElement)) {\n removeClass([this.containerElement], POPUP_CONTAINER);\n }\n this.container = newProp.container;\n if (this.tooltipEle && targetElement) {\n this.appendContainer(this);\n this.reposition(targetElement);\n }\n }\n }\n };\n /**\n * It is used to show the Tooltip on the specified target with specific animation settings.\n *\n * @param {HTMLElement} element - Target element where the Tooltip is to be displayed. (It is an optional parameter)\n * @param {TooltipAnimationSettings} animation - Sets the specific animation, while showing the Tooltip on the screen. (It is an optional parameter)\n * @returns {void}\n */\n Tooltip.prototype.open = function (element, animation) {\n if (isNullOrUndefined(animation)) {\n animation = this.animation.open;\n }\n if (isNullOrUndefined(element)) {\n element = this.element;\n }\n if (element.style.display === 'none') {\n return;\n }\n this.showTooltip(element, animation);\n };\n /**\n * It is used to hide the Tooltip with specific animation effect.\n *\n * @param {TooltipAnimationSettings} animation - Sets the specific animation when hiding Tooltip from the screen. (It is an optional parameter)\n * @returns {void}\n */\n Tooltip.prototype.close = function (animation) {\n if (!animation) {\n animation = this.animation.close;\n }\n this.hideTooltip(animation);\n };\n /**\n * It is used to refresh the Tooltip content and its position.\n *\n * @param {HTMLElement} target - Target element where the Tooltip content or position needs to be refreshed.\n * @returns {void}\n */\n Tooltip.prototype.refresh = function (target) {\n if (this.tooltipEle) {\n this.renderContent(target);\n }\n if (this.popupObj && target) {\n this.reposition(target);\n }\n };\n /**\n * It is used to destroy the Tooltip component.\n * @method destroy\n * @returns {void}\n * @memberof Tooltip\n */\n Tooltip.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n if (this.tooltipEle) {\n remove(this.tooltipEle);\n }\n if (this.popupObj) {\n this.popupObj.destroy();\n }\n removeClass([this.element], ROOT);\n this.unwireEvents(this.opensOn);\n this.unwireMouseEvents(this.element);\n this.tooltipEle = null;\n this.popupObj = null;\n var currentTarget = selectAll('[data-tooltip-id= \"' + this.ctrlId + '_content\"]', this.element);\n for (var _i = 0, currentTarget_1 = currentTarget; _i < currentTarget_1.length; _i++) {\n var target = currentTarget_1[_i];\n this.restoreElement(target);\n }\n };\n __decorate([\n Property('auto')\n ], Tooltip.prototype, \"width\", void 0);\n __decorate([\n Property('auto')\n ], Tooltip.prototype, \"height\", void 0);\n __decorate([\n Property()\n ], Tooltip.prototype, \"content\", void 0);\n __decorate([\n Property('body')\n ], Tooltip.prototype, \"container\", void 0);\n __decorate([\n Property()\n ], Tooltip.prototype, \"target\", void 0);\n __decorate([\n Property('TopCenter')\n ], Tooltip.prototype, \"position\", void 0);\n __decorate([\n Property(0)\n ], Tooltip.prototype, \"offsetX\", void 0);\n __decorate([\n Property(0)\n ], Tooltip.prototype, \"offsetY\", void 0);\n __decorate([\n Property(true)\n ], Tooltip.prototype, \"showTipPointer\", void 0);\n __decorate([\n Property(true)\n ], Tooltip.prototype, \"enableHtmlParse\", void 0);\n __decorate([\n Property(false)\n ], Tooltip.prototype, \"windowCollision\", void 0);\n __decorate([\n Property('Auto')\n ], Tooltip.prototype, \"tipPointerPosition\", void 0);\n __decorate([\n Property('Auto')\n ], Tooltip.prototype, \"opensOn\", void 0);\n __decorate([\n Property(false)\n ], Tooltip.prototype, \"mouseTrail\", void 0);\n __decorate([\n Property(false)\n ], Tooltip.prototype, \"isSticky\", void 0);\n __decorate([\n Complex({}, Animation)\n ], Tooltip.prototype, \"animation\", void 0);\n __decorate([\n Property(0)\n ], Tooltip.prototype, \"openDelay\", void 0);\n __decorate([\n Property(0)\n ], Tooltip.prototype, \"closeDelay\", void 0);\n __decorate([\n Property()\n ], Tooltip.prototype, \"cssClass\", void 0);\n __decorate([\n Property(false)\n ], Tooltip.prototype, \"enableHtmlSanitizer\", void 0);\n __decorate([\n Property('')\n ], Tooltip.prototype, \"htmlAttributes\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"beforeRender\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"beforeOpen\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"afterOpen\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"beforeClose\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"afterClose\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"beforeCollision\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"created\", void 0);\n __decorate([\n Event()\n ], Tooltip.prototype, \"destroyed\", void 0);\n Tooltip = __decorate([\n NotifyPropertyChanges\n ], Tooltip);\n return Tooltip;\n}(Component));\nexport { Tooltip };\n"],"names":["calculateRelativeBasedPosition","anchor","element","fixedElement","anchorPos","left","top","tempAnchor","isNullOrUndefined","offsetParent","style","position","offsetLeft","offsetTop","scrollLeft","scrollTop","parentElement","calculatePosition","currentElement","positionX","positionY","targetValues","popupRect","undefined","fixedParent","parentDocument","ownerDocument","pos","updatePosition","toLowerCase","setPosx","value","setPosy","posX","posY","elementRect","getBoundingClientRect","getElementHCenter","getElementTop","getElementRight","getElementVCenter","getElementLeft","getElementBottom","getBodyScrollTop","documentElement","body","getBodyScrollLeft","bottom","height","popupWidth","classList","contains","width","right","fit","viewPortElement","axis","X","Y","elemData","targetContainer","containerWidth","getTargetContainerWidth","getViewPortWidth","containerLeft","ContainerLeft","containerRight","ContainerRight","overLeft","overRight","containerHeight","getTargetContainerHeight","getViewPortHeight","containerTop","ContainerTop","containerBottom","ContainerBottom","overTop","overBottom","isCollide","x","y","elemOffset","data","yAxis","topCollideCheck","xAxis","leftCollideCheck","topSide","push","rightSide","leftSide","bottomSide","flip","target","offsetX","offsetY","tEdge","TL","TR","BL","BR","eEdge","window","getComputedStyle","display","oldVisibility","visibility","removeProperty","updateElementData","setPosition","leftFlip","topFlip","setPopup","edge","eStatus","deepCheck","collideSide","innerHeight","getTargetContainerLeft","getTargetContainerTop","windowWidth","innerWidth","documentReact","document","getScrollableParent","eleStyle","scrollParents","overflowRegex","parent","tagName","parentStyle","test","overflow","overflowY","overflowX","getZindexPartial","parentZindex","index","defaultView","getPropertyValue","childrenZindex","i","children","length","isEqualNode","siblingsZindex","childNodes","slice","call","finalValue","concat","currentZindexValue","Math","max","apply","getMaxZindex","maxZindex","elements","getElementsByTagName","i_1","createResize","args","resizeStart","resizeBegin","resize","resizing","resizeEnd","resizeComplete","targetElement","getDOMElement","containerElement","boundary","directions","direction","split","dialogBorderResize","indexOf","setBorderResizeElm","trim","resizeHandler","createElement","className","RESIZE_HANDLER","appendChild","minHeight","minWidth","maxWidth","maxHeight","proxy","wireEvents","calculateValues","borderBottom","attrs","unselectable","contenteditable","setAttribute","domElement","isNOU","querySelector","this","resizers","querySelectorAll","selectedHandler","EventHandler","add","onMouseDown","eventName","Browser","info","name","onTouchStart","borderResizers","getEventType","e","preventDefault","originalMouseX","pageX","originalMouseY","pageY","FOCUSED_HANDLER","targetEle","DIALOG_RESIZABLE","clientWidth","clientHeight","onMouseMove","onMouseUp","RESTRICT_LEFT","setLeft","touchMoveEvent","touchEndEvent","remove","originalWidth","parseFloat","replace","originalHeight","originalX","originalY","dialogResizeElement","coordinates","touches","changedTouches","resizeTowards","elementClass","resizeSouth","resizeNorth","resizeWest","resizeEast","getClientRectValues","containerRectValues","documentHeight","calculateValue","currentpageY","targetRectValues","calculatedHeight","borderValue","offsetHeight","topWithoutborder","RESIZE_WITHIN_VIEWPORT","parseInt","toString","targetTop","calculatedTop","boundaryRectValues","type","currentHeight","top_1","rectValues","documentWidth","offsetWidth","resizeWestWidth","floor","calculatedWidth","left_1","previousWidth","setWidth","setMinHeight","minimumHeight","setMaxWidth","setMaxHeight","removeResize","handlers","detach","Spinner","action","options","createSpinner","cssClass","label","showSpinner","hideSpinner","setSpinner","internalCreateElement","radius","makeElement","container","create_spinner_container","wrap","template","spinTemplate","theme","getTheme","calculateRadius","setTheme","createLabel","inner_wrap","CLS_SPINTEMPLATE","replaceContent","spinCSSClass","CLS_HIDESPIN","labelEle","CLS_SPINLABEL","innerHTML","createMaterialSpinner","uniqueID","random_generator","globalTimeOut","timeOut","create_material_element","CLS_MATERIALSPIN","mat_calculate_attributes","createMaterial3Spinner","CLS_MATERIAL3SPIN","createBootstrap4Spinner","CLS_BOOT4SPIN","createBootstrap5Spinner","CLS_BOOT5SPIN","startMatAnimate","globalObject","globalVariables","animateMaterial","globalInfo","timeOutVar","createFabricSpinner","create_fabric_element","CLS_FABRICSPIN","fb_calculate_attributes","createFluentSinner","CLS_FLUENTSPIN","createTailwindSpinner","CLS_TAILWINDSPIN","createHighContrastSpinner","CLS_HIGHCONTRASTSPIN","innerContainer","CLS_SPININWRAP","svg","removeChild","createBootstrapSpinner","create_bootstrap_element","boot_calculate_attributes","svgBoot","createElementNS","CLS_BOOTSPIN","insertBefore","firstChild","item","bootCircle","CLS_SPINCIRCLE","defaultRadius","startArc","start","defineArcPoints","circleEle","generateSeries","begin","stop","formSeries","series","end","count","increment","toFixed","animateBootstrap","id","getAttribute","circle","boot_animate","isAnimate","setTimeout","bind","getElementsByClassName","defaultSize","DEFT_MAT_WIDTH","DEFT_MAT3_WIDTH","DEFT_FAB_WIDTH","DEFT_FLUENT_WIDTH","DEFT_BOOT4_WIDTH","DEFT_BOOT5_WIDTH","DEFT_BOOT_WIDTH","previousId","random","combine","charAt","innerCon","themeClass","svgFabric","fabricCirclePath","fabricCircleArc","CLS_SPINARC","cls","svgMaterial","matCirclePath","spinnerContainer","spinnerInnerContainer","CLS_SPINWRAP","spinnerInfo","createCircle","easeAnimation","easing","duration","mat_animation","currentTime","min","Date","getTime","startTime","updatePath","change","path","getDashOffset","diameter","strokeSize","getSize","getStrokeSize","rotate","transformOrigin","drawArc","PI","offset","current","timestamp","timecount","innerConainer","trgClass","centerX","centerY","defineCircle","defineArc","angle","radians","cos","sin","endArc","join","showHideSpinner","isHide","spinnerWrap","spinWrapCollection","Array","from","find","inner","CLS_SHOWSPIN","svgEle","clearTimeout","ensureTemplate","makeEle","replaceTheme","svgElement","__extends","extendStatics","d","b","Object","setPrototypeOf","__proto__","p","hasOwnProperty","__","constructor","prototype","create","__decorate","decorators","key","desc","c","arguments","r","getOwnPropertyDescriptor","Reflect","decorate","defineProperty","PositionData","_super","Property","ChildProperty","CLASSNAMES","ROOT","RTL","OPEN","CLOSE","Popup","onPropertyChanged","newProp","oldProp","_i","_a","keys","setStyleAttribute","formatUnit","zIndex","setEnableRtl","refreshPosition","setContent","actionOnScroll","wireScrollEvents","unwireScrollEvents","getModuleName","resolveCollision","checkCollision","getPersistData","addOnPersist","destroy","unwireEvents","content","relateTo","render","styles","isDevice","orientationOnChange","getRelateToElement","parent_1","scrollRefresh","parent_2","relateToElement","setProperties","hide","targetVisible","isElementOnViewport","targetInvisibleStatus","trigger","scrollElement","parent_3","isElementVisible","rect","checkGetBoundingClientRect","win","windowView","scrollY","scrollX","outerWidth","outerHeight","off","ele","elementView","parent_4","preRender","reposition","enableRtl","textContent","relateToElem","props","_this","collision","checkFixedParent","parentDisplay","getAnchorPosition","error","anchorEle","eleRect","anchorRect","targetType","callFlip","param","callFit","viewPortRect","horz","vert","show","animationOptions","relativeElement","fmDialogContainer","isIos","zIndexElement","showAnimation","removeClass","addClass","isDestroyed","Animation","animate","hideAnimation","Complex","Event","NotifyPropertyChanges","Component","ButtonProps","AnimationSettings","DLG_TARGET","SCROLL_DISABLED","FULLSCREEN","DLG_UTIL_DEFAULT_TITLE","DLG_UTIL_ROOT","DLG_UTIL_ALERT","DLG_UTIL_CONFIRM","Dialog","needsID","initialize","initRender","enableResize","setResize","animationSettings","effect","getMinHeight","renderComplete","initializeValue","dlgClosedBy","headerContent","allowMaxHeight","preventVisibility","clonedEle","cloneNode","closeIconClickEventHandler","event","dlgOverlayClickEventHandler","preventFocus","overlayClickEventArgs","focusContent","localeText","close","l10n","L10n","locale","checkPositionData","prevOnChange","isProtectedOnChange","updatePersistData","enablePersistence","dragObj","isNumberValue","isNumber","getEle","list","selector","computedHeaderHeight","computedFooterHeight","footerEle","headerHeight","footerHeight","isNaN","onResizeStart","dialogObj","cancel","onResizing","onResizeComplete","isBlazorServerRender","computedHeight","computedWidth","resizeHandles","directionValue","toLocaleLowerCase","isModal","wireWindowResizeEvent","unWireWindowResizeEvent","getFocusElement","items","keyDown","keyCode","buttonObj","btnObj","ftrTemplateContent","contentEle","activeElement","shiftKey","focusableElements","focus","isTagName","isContentEdit","hasAttribute","closeOnEscape","query","ctrlKey","primaryButtonEle","buttonIndex_1","buttons","some","buttonModel","isPrimary","click","setCSSClass","initialRender","attributes","role","setzIndex","calculatezIndex","setTargetContent","header","setHeader","renderCloseIcon","footerTemplate","setButton","setFooterTemplate","allowDragging","setAllowDragging","aria-modal","setIsModal","dlgContainer","dlgOverlay","parentEle","refElement","popupObj","open","eventArgs","resetResizeIcon","openEventArgs","unBindEvent","closeArgs","activeEle","blur","storeActiveElement","positionChange","setEnableRTL","setOverlayZindex","visible","dialogConHeight","resizeIcon","zIndexValue","setPopupPosition","Draggable","clone","isDragScroll","abort","handle","dragStart","dragEventArgs","isBlazor","bindEvents","dragElement","dragStop","drag","dragArea","buttonContent","buttonType","btn","outerHTML","footerBtn","Button","buttonClickHandler","appendTo","isFlat","innerContentElement","HTMLElement","setTemplate","isIE","toElement","prop","templateFn","templateProps","templateValue","isStringTemplate","sanitizeHelper","isVue","compile","fromElements","append","enableHtmlSanitizer","dialogItem","SanitizeHtmlHelper","beforeSanitize","beforeEvent","helper","extend","serializeValue","isContent","createDocumentFragment","forEach","el","nodeType","headerEle","createHeaderContent","aria-labelledby","showCloseIcon","closeIcon","closeIconBtnObj","iconCss","DLG_CLOSE_ICON","closeIconTitle","prepend","setLocale","getConstant","oldCSSClass","parentNode","getValidFocusNode","node","u","tabIndex","disabled","disableElement","getAutoFocusNode","validNode","t","elementMatch","matches","webkitMatchesSelector","msGetRegionContent","Element","userAgent","bindEvent","updateSanitizeContent","isServerRendered","clearTemplate","innerText","insertAdjacentHTML","updateIsModal","buttonCount","setTarget","setPopupZindex","currentzIndex","windowResizeHandler","classArray","unWireEvents","removeAttribute","isReact","addEventListener","removeEventListener","getDimension","isFullScreen","fullScreen","eventArgs_1","beforeOpenArgs","openAnimation","delay","dialogOpen","renderReactTemplates","isInteracted","closedBy","beforeCloseArgs","closeAnimation","scrollingElement","getButtons","Collection","DialogUtility","alert","dialogElement","alertDialogObj","okButtonModel","createDialog","alertOptions","confirm","confirmDialogObj","okCancelButtonModel","confirmOptions","dialogObject","option","formOptions","setAlertButtonModel","setConfirmButtonModel","title","isDraggable","alertButtonModel","okButton","formButtonModel","cancelButtonModel","cancelButton","buttonPropModel","buttonProps","text","icon","Tooltip","mouseMoveEvent","mouseMoveTarget","isBodyContainer","formatPosition","_b","tooltipPositionY","tooltipPositionX","renderArrow","setTipClass","tip","ARROW_TIP","tipClass","ARROW_TIP_OUTER","ARROW_TIP_INNER","tooltipEle","renderPopup","elePos","mouseTrail","getTooltipPosition","openPopupHandler","closePopupHandler","offsetPos","calculateTooltipOffset","collisionPosition","calculateElementPosition","collisionLeft","collisionTop","collisionFlipFit","windowResize","findTarget","dataBind","needTemplateReposition","tooltipEventArgs","opensOn","clear","tooltipEleWidth","tooltipEleHeight","arrowEle","select","tipWidth","tipHeight","tipAdjust","showTipPointer","tipHeightAdjust","tipWidthAdjust","updateTipPosition","selEle","selectAll","removeList","adjustArrow","leftValue","topValue","tooltipWidth","tooltipHeight","arrowInnerELe","tipPosExclude","tipPointerPosition","POINTER_ADJUST","renderContent","tooltipContent","sanitize","tempArr","enableHtmlParse","nodeList","isSticky","tipClose","ICON","touchStartEvent","onStickyClose","addDataTooltipId","data-tooltip-id","removeDataTooltipId","tapHoldHandler","evt","autoCloseTimer","targetHover","originalEvent","touchEndHandler","targetClick","closest","hideTooltip","animation","closeDelay","targetList_1","ctrlId","target_1","restoreElement","showTooltip","mouseMoveBeforeOpen","mouseMoveBeforeRemove","showTimer","hideTimer","openDelay","observeCallback","beforeRenderArgs","beforeRenderCallback","isHidden","getUniqueID","TOOLTIP_WRAP","aria-hidden","htmlAttributes","attr","tooltipBeforeRender","tooltipAfterRender","PopupAnimation","appendContainer","ctrlObj","observedArgs","beforeOpenCallback","openAnimation_1","timingFunction","wireMouseEvents","tooltip","viewContainerRef","horizontal","vertical","affectedPos","checkCollideTarget","pageXOffset","pageYOffset","newpos","collidedPosition","elePosVertical","elePosHorizontal","getOffSetPosition","elePosition","eleOffset","arrowleft","positionString","newPos","offsetType","windowCollision","isTooltipOpen","tooltipHide","popupHide","unwireMouseEvents","tooltipHover","tooltipMouseOut","onMouseOut","enteredElement","relatedTarget","checkForTooltipElement","tooltipElementMouseOut","eventPageX","eventPageY","colpos","targetsList","touchEnd","scrollHandler","triggerList_1","getTriggerList","wireFocusEvents","touchModule","Touch","tapHoldThreshold","tapHold","nodeName","targetList","targetList_2","triggerList_2","unwireFocusEvents","targetList_3","triggerList_3","refresh","currentTarget_1"],"mappings":"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"}