
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
go-captcha-angular
Advanced tools
GoCaptcha for Angular, which implements click mode, slider mode, drag-drop mode and rotation mode.
The Behavior Captcha For The Angular
English | 中文
⭐️ If it helps you, please give a star.
yarn add go-captcha-angular
# or
npm install go-captcha-angular
# or
pnpm install go-captcha-angular
angular.json
{
// ....
"projects": {
"xxxx": {
// ...
"architect": {
"build": {
"options": {
"styles": [
"go-captcha-angular/css/go-captcha.css"
]
}
}
}
}
}
}
app.module.ts
import { GoCaptchaModule } from 'go-captcha-angular';
@NgModule({
// ...
imports: [
GoCaptchaModule,
],
// ...
})
export class AppModule { }
<go-captcha-click
[config]="{}"
[data]="{}"
[events]="{}"
#domRef
/>
<script>
class Demo {
// call methods
@ViewChild('domRef') domRef;
test(){
this.domRef?.clear()
this.domRef?.refresh()
}
}
</script>
// config = {}
interface ClickConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
buttonText?: string;
iconSize?: number;
dotSize?: number;
}
// data = {}
interface ClickData {
image: string;
thumb: string;
}
// events = {}
interface ClickEvents {
click?: (x: number, y: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (dots: Array<ClickDot>, reset:() => void) => boolean;
}
// export component method
interface ExportMethods {
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<go-captcha-slide
[config]="{}"
[data]="{}"
[events]="{}"
#domRef
/>
<script>
class Demo {
// call methods
@ViewChild('domRef') domRef;
test(){
this.domRef?.clear()
this.domRef?.refresh()
}
}
</script>
// config = {}
interface SlideConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
iconSize?: number;
scope ?: boolean;
}
// data = {}
interface SlideData {
thumbX: number;
thumbY: number;
thumbWidth: number;
thumbHeight: number;
image: string;
thumb: string;
}
// events = {}
interface SlideEvents {
move?: (x: number, y: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (point: SlidePoint, reset:() => void) => boolean;
}
// export component method
interface ExportMethods {
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<go-captcha-slide-region
[config]="{}"
[data]="{}"
[events]="{}"
#domRef
/>
<script>
class Demo {
// call methods
@ViewChild('domRef') domRef;
test(){
this.domRef?.clear()
this.domRef?.refresh()
}
}
</script>
// config = {}
interface SlideRegionConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
iconSize?: number;
scope ?: boolean;
}
// data = {}
interface SlideRegionData {
thumbX: number;
thumbY: number;
thumbWidth: number;
thumbHeight: number;
image: string;
thumb: string;
}
// events = {}
interface SlideRegionEvents {
move?: (x: number, y: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (point: SlideRegionPoint, reset:() => void) => boolean;
}
// export component method
interface ExportMethods {
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<go-captcha-rotate
[config]="{}"
[data]="{}"
[events]="{}"
#domRef
/>
<script>
class Demo {
// call methods
@ViewChild('domRef') domRef;
test(){
this.domRef?.clear()
this.domRef?.refresh()
}
}
</script>
// config = {}
interface RotateConfig {
width?: number;
height?: number;
thumbWidth?: number;
thumbHeight?: number;
verticalPadding?: number;
horizontalPadding?: number;
showTheme?: boolean;
title?: string;
iconSize?: number;
scope ?: boolean;
}
// data = {}
interface RotateData {
angle: number;
image: string;
thumb: string;
thumbSize: number;
}
// events = {}
interface RotateEvents {
rotate?: (angle: number) => void;
refresh?: () => void;
close?: () => void;
confirm?: (angle: number, reset:() => void) => boolean;
}
// export component method
interface ExportMethods {
reset: () => void,
clear: () => void,
refresh: () => void,
close: () => void,
}
<go-captcha-button />
interface _ {
config?: ButtonConfig;
clickEvent?: () => void;
disabled?: boolean;
type?: "default" | "warn" | "error" | "success";
title?: string;
}
export interface ButtonConfig {
width?: number;
height?: number;
verticalPadding?: number;
horizontalPadding?: number;
}
FAQs
GoCaptcha for Angular, which implements click mode, slider mode, drag-drop mode and rotation mode.
The npm package go-captcha-angular receives a total of 19 weekly downloads. As such, go-captcha-angular popularity was classified as not popular.
We found that go-captcha-angular demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.