{"version":3,"file":"primeng-captcha.mjs","sources":["../../src/app/components/captcha/captcha.ts","../../src/app/components/captcha/primeng-captcha.ts"],"sourcesContent":["import {NgModule,AfterViewInit,Component,EventEmitter,Input,NgZone,OnDestroy,Output,ElementRef,ChangeDetectionStrategy, ViewEncapsulation, ChangeDetectorRef} from '@angular/core';\nimport {CommonModule} from '@angular/common';\n\n@Component({\n selector: 'p-captcha',\n template: `
`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n host: {\n 'class': 'p-element'\n }\n})\nexport class Captcha implements AfterViewInit,OnDestroy {\n\n @Input() siteKey: string = null;\n\n @Input() theme = 'light';\n\n @Input() type = 'image';\n\n @Input() size = 'normal';\n\n @Input() tabindex = 0;\n\n @Input() initCallback = \"initRecaptcha\";\n\n @Output() onResponse: EventEmitter