npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng-custom-captcha

v1.0.0

Published

An Angular Library to implement hassle-free client side captcha

Downloads

19

Readme

/** Copyright 2024 Infosys Ltd. */

NGX-CUSTOM-CAPTCHA

Now, uou can implement client side captcha easily. Just install this library and use selector

<ng-custom-captcha></ng-custom-captcha>

Below customizations are available with our library:

  • isValid: isValid event will return the status of validation as a boolean. true represents Enterred Captcha is valid and false represents Enterred Captcha is invalid.
<ng-custom-captcha (isValid)="onVerify($event)"></ng-custom-captcha>
  • placeholder: Passing a placeholder will reflect in input field. It's default value is Enter Captcha.
<ng-custom-captcha [placeholder]="placeholderValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • btnText: Passing a btnText will reflect at verify button. It's default value is Verify.
<ng-custom-captcha [btnText]="btnTextValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • charType: Passing a charType will decide if captcha text will Alphabets or Number. By default, it is alphanumeric. Allowed Values are alpha, numeric and alphanumeric.
<ng-custom-captcha [charType]="charTypeValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • charCase: Passing a charCase will decide if captcha text will Uppercase or Lowercase. By default, it is mixed. Allowed Values are upper, lower and mixed.
<ng-custom-captcha [charCase]="charCaseValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • bgColor: Passing a bgColor will reflect as background color of captcha. It can be a string(one color) or an array of string(multiple colors will form a gradient). By default, it is black.
<ng-custom-captcha [bgColor]="bgColorValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • fontColor: Passing a fontColor will reflect as font color of captcha. It can be a string(one color) or an array of string(multiple colors will be assigned randomly to each letter). By default, it is white.
<ng-custom-captcha [fontColor]="fontColorValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • strokeColor: Passing a strokeColor will reflect as stroke color behind captcha text. It can be a string(one color) or an array of string(multiple colors will be assigned randomly to each stroke). By default, it is red.
<ng-custom-captcha [strokeColor]="strokeColorValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • iconColor: Passing a iconColor will reflect as color of refresh and verify buttons. It can be a string(one color). By default, it is black.
<ng-custom-captcha [iconColor]="iconColorValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • gradient: Passing a gradient will decide the direction background gradient with cors passed in bgColor. By default, it is right. Allowed Values are left, right, top and bottom.
<ng-custom-captcha [gradient]="gradientValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • fontFamily: Passing a fontFamily will reflect as font in captcha image. It's default value is Roboto Mono.
<ng-custom-captcha [fontFamily]="fontFamilyValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • strokes: Passing a strokes will reflect as number of strokes in background of captcha image. It's default value is 5[Strictly a number].
<ng-custom-captcha [strokes]="strokesValue" (isValid)="onVerify($event)"></ng-custom-captcha>
  • refreshInterval: Passing a refreshInterval will reflect as minutes at which captcha will auto refresh. It's default value is 1[Strictly a number].
<ng-custom-captcha [refreshInterval]="refreshIntervalValue" (isValid)="onVerify($event)"></ng-custom-captcha>

Thank You! Buy me a Coffee if it helped you in any way ;)