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

ngx-typed2

v1.0.0

Published

An Angular Typing Animation Library.

Downloads

28

Readme

ngx-typed2

NPM Version NPM Downloads GitHub release License GitHub Pull Requests

ngx-typed2 is an Angular library designed to seamlessly integrate Typed.js functionalities into Angular applications, compatible with both Single Page Applications (SPA) and Server-Side Rendering (SSR)

Installation

You can install ngx-typed2 via npm:

npm install ngx-typed2

You can install ngx-typed2 via yarn:

yarn add ngx-typed2

You can install ngx-typed2 via pnpm:

pnpm add ngx-typed2

Usage

Import the Module

Import the NgxTypedJsModule into your Angular module:

import { NgxTypedJsModule } from 'ngx-typed2';

@NgModule({
  imports: [
    NgxTypedJsModule
  ]
})
export class AppModule { }

Use in the Component

Use the ngx-typed2 component in your Angular templates:

<ngx-typed2
  [strings]="['Hello', 'World']"
  typeSpeed="50"
  backSpeed="30"
  [loop]="false"
  [showCursor]="true"
  cursorChar="|"
  [autoInsertCss]="true"
></ngx-typed2>

Available Inputs

| Input | Type | Default | Description | |----------------------|--------------|-------------|------------------------------------------------------| | strings | string[] | [] | Array of strings to be typed out sequentially. | | stringsElement | string | undefined | String element to be typed out. | | typeSpeed | number | 100 | Typing speed (in milliseconds per character). | | startDelay | number | undefined | Delay before typing starts (in milliseconds). | | backSpeed | number | 100 | Backspacing speed (in milliseconds per character). | | smartBackspace | boolean | undefined | Enable smart backspacing for natural typing effects. | | shuffle | boolean | undefined | Enable random string selection. | | backDelay | number | 500 | Delay between characters during backspacing. | | fadeOut | boolean | undefined | Enable fade-out effect. | | fadeOutClass | string | undefined | CSS class for fade-out effect. | | fadeOutDelay | number | 500 | Delay before fade-out (in milliseconds). | | loop | boolean | true | Control looping of typing animation. | | loopCount | number | undefined | Specify the number of loop counts. | | showCursor | boolean | undefined | Toggle cursor visibility. | | cursorChar | string | undefined | Customize cursor appearance. | | autoInsertCss | boolean | undefined | Automatically insert Typed.js CSS. | | attr | string | undefined | Additional attributes. | | bindInputFocusEvents | boolean | undefined | Bind input focus events. | | contentType | string | undefined | Specify content type (e.g., 'html', 'text'). | | cursorColor | string | undefined | Customize cursor color. | | ngClass | string | undefined | Apply custom classes. |

Available Outputs

| Output | Event Emitted Data | Description | |-------------------------|-------------------------------------------------|----------------------------------------------------------| | onBeginEvent | Typed | Triggered when typing begins. | | onCompleteEvent | Typed | Triggered when typing completes. | | preStringTypedEvent | { arrayPos: number, self: Typed } | Triggered before a string is typed. | | onStringTypedEvent | { arrayPos: number, self: Typed } | Triggered after a string is typed. | | onLastStringBackspacedEvent | Typed | Triggered when the last string is backspaced. | | onTypingPausedEvent | { arrayPos: number, self: Typed } | Triggered when typing is paused. | | onTypingResumedEvent | { arrayPos: number, self: Typed } | Triggered when typing resumes after being paused. | | onResetEvent | Typed | Triggered when typing is reset. | | onStopEvent | { arrayPos: number, self: Typed } | Triggered when typing is stopped. | | onStartEvent | { arrayPos: number, self: Typed } | Triggered when typing starts for a particular string. | | onDestroyEvent | Typed | Triggered when the ngx-typed2 instance is destroyed. |

Available Methods

| Method | Description | |-----------|---------------------------------------------------| | start() | Initiates the typing animation. | | stop() | Pauses the typing animation. | | reset() | Resets the typing animation to its initial state. | | toggle() | Toggles between starting and stopping the typing animation. | | destroy() | Stops the typing animation and cleans up any resources used. |

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact