{ "version": 3, "sources": ["../ui/web_modules/ngx-clipboard.js"], "sourcesContent": ["import './common/tslib.es6-c4a4947b.js';\nimport { a as Subject } from './common/mergeMap-64c6f393.js';\nimport './common/merge-183efbc7.js';\nimport './common/share-d41e3509.js';\nimport { InjectionToken, Injectable, Inject, Optional, defineInjectable, inject, Directive, Input, Output, HostListener, ViewContainerRef, TemplateRef, EventEmitter, NgModule } from './@angular/core.js';\nimport { DOCUMENT, CommonModule } from './@angular/common.js';\n\n/**\r\n * @fileoverview added by tsickle\r\n * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc\r\n */\r\n/** @type {?} */\r\nvar WINDOW = new InjectionToken('WindowToken', typeof window !== 'undefined' && window.document ? { providedIn: 'root', factory: (/**\r\n * @return {?}\r\n */\r\n function () { return window; }) } : undefined);\n\n/**\r\n * @fileoverview added by tsickle\r\n * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc\r\n */\r\n/**\r\n * The following code is heavily copied from https://github.com/zenorocha/clipboard.js\r\n */\r\nvar ClipboardService = /** @class */ (function () {\r\n function ClipboardService(document, window) {\r\n this.document = document;\r\n this.window = window;\r\n this.copySubject = new Subject();\r\n this.copyResponse$ = this.copySubject.asObservable();\r\n this.config = {};\r\n }\r\n /**\r\n * @param {?} config\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.configure = /**\r\n * @param {?} config\r\n * @return {?}\r\n */\r\n function (config) {\r\n this.config = config;\r\n };\r\n /**\r\n * @param {?} content\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.copy = /**\r\n * @param {?} content\r\n * @return {?}\r\n */\r\n function (content) {\r\n if (!this.isSupported || !content) {\r\n return this.pushCopyResponse({ isSuccess: false, content: content });\r\n }\r\n /** @type {?} */\r\n var copyResult = this.copyFromContent(content);\r\n if (copyResult) {\r\n return this.pushCopyResponse({ content: content, isSuccess: copyResult });\r\n }\r\n return this.pushCopyResponse({ isSuccess: false, content: content });\r\n };\r\n Object.defineProperty(ClipboardService.prototype, \"isSupported\", {\r\n get: /**\r\n * @return {?}\r\n */\r\n function () {\r\n return !!this.document.queryCommandSupported && !!this.document.queryCommandSupported('copy') && !!this.window;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n /**\r\n * @param {?} element\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.isTargetValid = /**\r\n * @param {?} element\r\n * @return {?}\r\n */\r\n function (element) {\r\n if (element instanceof HTMLInputElement || element instanceof HTMLTextAreaElement) {\r\n if (element.hasAttribute('disabled')) {\r\n throw new Error('Invalid \"target\" attribute. Please use \"readonly\" instead of \"disabled\" attribute');\r\n }\r\n return true;\r\n }\r\n throw new Error('Target should be input or textarea');\r\n };\r\n /**\r\n * Attempts to copy from an input `targetElm`\r\n */\r\n /**\r\n * Attempts to copy from an input `targetElm`\r\n * @param {?} targetElm\r\n * @param {?=} isFocus\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.copyFromInputElement = /**\r\n * Attempts to copy from an input `targetElm`\r\n * @param {?} targetElm\r\n * @param {?=} isFocus\r\n * @return {?}\r\n */\r\n function (targetElm, isFocus) {\r\n if (isFocus === void 0) { isFocus = true; }\r\n try {\r\n this.selectTarget(targetElm);\r\n /** @type {?} */\r\n var re = this.copyText();\r\n this.clearSelection(isFocus ? targetElm : undefined, this.window);\r\n return re && this.isCopySuccessInIE11();\r\n }\r\n catch (error) {\r\n return false;\r\n }\r\n };\r\n /**\r\n * This is a hack for IE11 to return `true` even if copy fails.\r\n */\r\n /**\r\n * This is a hack for IE11 to return `true` even if copy fails.\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.isCopySuccessInIE11 = /**\r\n * This is a hack for IE11 to return `true` even if copy fails.\r\n * @return {?}\r\n */\r\n function () {\r\n /** @type {?} */\r\n var clipboardData = this.window['clipboardData'];\r\n if (clipboardData && clipboardData.getData) {\r\n if (!clipboardData.getData('Text')) {\r\n return false;\r\n }\r\n }\r\n return true;\r\n };\r\n /**\r\n * Creates a fake textarea element, sets its value from `text` property,\r\n * and makes a selection on it.\r\n */\r\n /**\r\n * Creates a fake textarea element, sets its value from `text` property,\r\n * and makes a selection on it.\r\n * @param {?} content\r\n * @param {?=} container\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.copyFromContent = /**\r\n * Creates a fake textarea element, sets its value from `text` property,\r\n * and makes a selection on it.\r\n * @param {?} content\r\n * @param {?=} container\r\n * @return {?}\r\n */\r\n function (content, container) {\r\n if (container === void 0) { container = this.document.body; }\r\n // check if the temp textarea still belongs to the current container.\r\n // In case we have multiple places using ngx-clipboard, one is in a modal using container but the other one is not.\r\n if (this.tempTextArea && !container.contains(this.tempTextArea)) {\r\n this.destroy(this.tempTextArea.parentElement);\r\n }\r\n if (!this.tempTextArea) {\r\n this.tempTextArea = this.createTempTextArea(this.document, this.window);\r\n try {\r\n container.appendChild(this.tempTextArea);\r\n }\r\n catch (error) {\r\n throw new Error('Container should be a Dom element');\r\n }\r\n }\r\n this.tempTextArea.value = content;\r\n /** @type {?} */\r\n var toReturn = this.copyFromInputElement(this.tempTextArea, false);\r\n if (this.config.cleanUpAfterCopy) {\r\n this.destroy(this.tempTextArea.parentElement);\r\n }\r\n return toReturn;\r\n };\r\n /**\r\n * Remove temporary textarea if any exists.\r\n */\r\n /**\r\n * Remove temporary textarea if any exists.\r\n * @param {?=} container\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.destroy = /**\r\n * Remove temporary textarea if any exists.\r\n * @param {?=} container\r\n * @return {?}\r\n */\r\n function (container) {\r\n if (container === void 0) { container = this.document.body; }\r\n if (this.tempTextArea) {\r\n container.removeChild(this.tempTextArea);\r\n // removeChild doesn't remove the reference from memory\r\n this.tempTextArea = undefined;\r\n }\r\n };\r\n /**\r\n * Select the target html input element.\r\n */\r\n /**\r\n * Select the target html input element.\r\n * @private\r\n * @param {?} inputElement\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.selectTarget = /**\r\n * Select the target html input element.\r\n * @private\r\n * @param {?} inputElement\r\n * @return {?}\r\n */\r\n function (inputElement) {\r\n inputElement.select();\r\n inputElement.setSelectionRange(0, inputElement.value.length);\r\n return inputElement.value.length;\r\n };\r\n /**\r\n * @private\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.copyText = /**\r\n * @private\r\n * @return {?}\r\n */\r\n function () {\r\n return this.document.execCommand('copy');\r\n };\r\n /**\r\n * Moves focus away from `target` and back to the trigger, removes current selection.\r\n */\r\n /**\r\n * Moves focus away from `target` and back to the trigger, removes current selection.\r\n * @private\r\n * @param {?} inputElement\r\n * @param {?} window\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.clearSelection = /**\r\n * Moves focus away from `target` and back to the trigger, removes current selection.\r\n * @private\r\n * @param {?} inputElement\r\n * @param {?} window\r\n * @return {?}\r\n */\r\n function (inputElement, window) {\r\n inputElement && inputElement.focus();\r\n window.getSelection().removeAllRanges();\r\n };\r\n /**\r\n * Creates a fake textarea for copy command.\r\n */\r\n /**\r\n * Creates a fake textarea for copy command.\r\n * @private\r\n * @param {?} doc\r\n * @param {?} window\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.createTempTextArea = /**\r\n * Creates a fake textarea for copy command.\r\n * @private\r\n * @param {?} doc\r\n * @param {?} window\r\n * @return {?}\r\n */\r\n function (doc, window) {\r\n /** @type {?} */\r\n var isRTL = doc.documentElement.getAttribute('dir') === 'rtl';\r\n /** @type {?} */\r\n var ta;\r\n ta = doc.createElement('textarea');\r\n // Prevent zooming on iOS\r\n ta.style.fontSize = '12pt';\r\n // Reset box model\r\n ta.style.border = '0';\r\n ta.style.padding = '0';\r\n ta.style.margin = '0';\r\n // Move element out of screen horizontally\r\n ta.style.position = 'absolute';\r\n ta.style[isRTL ? 'right' : 'left'] = '-9999px';\r\n // Move element to the same position vertically\r\n /** @type {?} */\r\n var yPosition = window.pageYOffset || doc.documentElement.scrollTop;\r\n ta.style.top = yPosition + 'px';\r\n ta.setAttribute('readonly', '');\r\n return ta;\r\n };\r\n /**\r\n * Pushes copy operation response to copySubject, to provide global access\r\n * to the response.\r\n */\r\n /**\r\n * Pushes copy operation response to copySubject, to provide global access\r\n * to the response.\r\n * @param {?} response\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.pushCopyResponse = /**\r\n * Pushes copy operation response to copySubject, to provide global access\r\n * to the response.\r\n * @param {?} response\r\n * @return {?}\r\n */\r\n function (response) {\r\n this.copySubject.next(response);\r\n };\r\n /**\r\n * @deprecated use pushCopyResponse instead.\r\n */\r\n /**\r\n * @deprecated use pushCopyResponse instead.\r\n * @param {?} response\r\n * @return {?}\r\n */\r\n ClipboardService.prototype.pushCopyReponse = /**\r\n * @deprecated use pushCopyResponse instead.\r\n * @param {?} response\r\n * @return {?}\r\n */\r\n function (response) {\r\n this.pushCopyResponse(response);\r\n };\r\n ClipboardService.decorators = [\r\n { type: Injectable, args: [{ providedIn: 'root' },] }\r\n ];\r\n /** @nocollapse */\r\n ClipboardService.ctorParameters = function () { return [\r\n { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] }] },\r\n { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [WINDOW,] }] }\r\n ]; };\r\n /** @nocollapse */ ClipboardService.ngInjectableDef = defineInjectable({ factory: function ClipboardService_Factory() { return new ClipboardService(inject(DOCUMENT), inject(WINDOW, 8)); }, token: ClipboardService, providedIn: \"root\" });\r\n return ClipboardService;\r\n}());\n\n/**\r\n * @fileoverview added by tsickle\r\n * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc\r\n */\r\nvar ClipboardDirective = /** @class */ (function () {\r\n function ClipboardDirective(clipboardSrv) {\r\n this.clipboardSrv = clipboardSrv;\r\n this.cbOnSuccess = new EventEmitter();\r\n this.cbOnError = new EventEmitter();\r\n }\r\n // tslint:disable-next-line:no-empty\r\n // tslint:disable-next-line:no-empty\r\n /**\r\n * @return {?}\r\n */\r\n ClipboardDirective.prototype.ngOnInit = \r\n // tslint:disable-next-line:no-empty\r\n /**\r\n * @return {?}\r\n */\r\n function () { };\r\n /**\r\n * @return {?}\r\n */\r\n ClipboardDirective.prototype.ngOnDestroy = /**\r\n * @return {?}\r\n */\r\n function () {\r\n this.clipboardSrv.destroy(this.container);\r\n };\r\n /**\r\n * @param {?} event\r\n * @return {?}\r\n */\r\n ClipboardDirective.prototype.onClick = /**\r\n * @param {?} event\r\n * @return {?}\r\n */\r\n function (event) {\r\n if (!this.clipboardSrv.isSupported) {\r\n this.handleResult(false, undefined, event);\r\n }\r\n else if (this.targetElm && this.clipboardSrv.isTargetValid(this.targetElm)) {\r\n this.handleResult(this.clipboardSrv.copyFromInputElement(this.targetElm), this.targetElm.value, event);\r\n }\r\n else if (this.cbContent) {\r\n this.handleResult(this.clipboardSrv.copyFromContent(this.cbContent, this.container), this.cbContent, event);\r\n }\r\n };\r\n /**\r\n * Fires an event based on the copy operation result.\r\n * @param succeeded\r\n */\r\n /**\r\n * Fires an event based on the copy operation result.\r\n * @private\r\n * @param {?} succeeded\r\n * @param {?} copiedContent\r\n * @param {?} event\r\n * @return {?}\r\n */\r\n ClipboardDirective.prototype.handleResult = /**\r\n * Fires an event based on the copy operation result.\r\n * @private\r\n * @param {?} succeeded\r\n * @param {?} copiedContent\r\n * @param {?} event\r\n * @return {?}\r\n */\r\n function (succeeded, copiedContent, event) {\r\n /** @type {?} */\r\n var response = {\r\n isSuccess: succeeded,\r\n event: event\r\n };\r\n if (succeeded) {\r\n response = Object.assign(response, {\r\n content: copiedContent,\r\n successMessage: this.cbSuccessMsg\r\n });\r\n this.cbOnSuccess.emit(response);\r\n }\r\n else {\r\n this.cbOnError.emit(response);\r\n }\r\n this.clipboardSrv.pushCopyResponse(response);\r\n };\r\n ClipboardDirective.decorators = [\r\n { type: Directive, args: [{\r\n selector: '[ngxClipboard]'\r\n },] }\r\n ];\r\n /** @nocollapse */\r\n ClipboardDirective.ctorParameters = function () { return [\r\n { type: ClipboardService }\r\n ]; };\r\n ClipboardDirective.propDecorators = {\r\n targetElm: [{ type: Input, args: ['ngxClipboard',] }],\r\n container: [{ type: Input }],\r\n cbContent: [{ type: Input }],\r\n cbSuccessMsg: [{ type: Input }],\r\n cbOnSuccess: [{ type: Output }],\r\n cbOnError: [{ type: Output }],\r\n onClick: [{ type: HostListener, args: ['click', ['$event.target'],] }]\r\n };\r\n return ClipboardDirective;\r\n}());\n\n/**\r\n * @fileoverview added by tsickle\r\n * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc\r\n */\r\nvar ClipboardIfSupportedDirective = /** @class */ (function () {\r\n function ClipboardIfSupportedDirective(_clipboardService, _viewContainerRef, _templateRef) {\r\n this._clipboardService = _clipboardService;\r\n this._viewContainerRef = _viewContainerRef;\r\n this._templateRef = _templateRef;\r\n }\r\n /**\r\n * @return {?}\r\n */\r\n ClipboardIfSupportedDirective.prototype.ngOnInit = /**\r\n * @return {?}\r\n */\r\n function () {\r\n if (this._clipboardService.isSupported) {\r\n this._viewContainerRef.createEmbeddedView(this._templateRef);\r\n }\r\n };\r\n ClipboardIfSupportedDirective.decorators = [\r\n { type: Directive, args: [{\r\n selector: '[ngxClipboardIfSupported]'\r\n },] }\r\n ];\r\n /** @nocollapse */\r\n ClipboardIfSupportedDirective.ctorParameters = function () { return [\r\n { type: ClipboardService },\r\n { type: ViewContainerRef },\r\n { type: TemplateRef }\r\n ]; };\r\n return ClipboardIfSupportedDirective;\r\n}());\n\n/**\r\n * @fileoverview added by tsickle\r\n * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc\r\n */\r\nvar ClipboardModule = /** @class */ (function () {\r\n function ClipboardModule() {\r\n }\r\n ClipboardModule.decorators = [\r\n { type: NgModule, args: [{\r\n imports: [CommonModule],\r\n declarations: [ClipboardDirective, ClipboardIfSupportedDirective],\r\n exports: [ClipboardDirective, ClipboardIfSupportedDirective]\r\n },] }\r\n ];\r\n return ClipboardModule;\r\n}());\n\nexport { ClipboardDirective, ClipboardIfSupportedDirective, ClipboardModule, ClipboardService };\n"], "mappings": "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", "names": [] }