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

@robindbl/ngx-timeline

v1.1.1

Published

This is an angular module that creates a timeline component.

Downloads

32

Readme

@robindbl/ngx-timeline

This is an angular module that creates a timeline component.

image of the timeline

Installation

Install the package using:

npm install @robindbl/ngx-timeline

Then, add bootstrap to angular.json

"styles": [
              "node_modules/bootstrap/dist/css/bootstrap.min.css",
            ],
"scripts": [
            "node_modules/@popperjs/core/dist/umd/popper.min.js",
            "node_modules/bootstrap/dist/js/bootstrap.min.js",
            "node_modules/jquery/dist/jquery.js"
          ]

Usage

Import the module in the app.module:

import { TimelineModule } from '@robindbl/ngx-timeline';

[...]
  imports: [
    [...]
    TimelineModule,
  ],

Then you can use the ngx-timeline in every component:

<ngx-timeline [data]="data"></ngx-timeline>

The data argument is required.

There are a few optional arguments:

backgroundColor: Change the background color of the timeline objects

dotColor: Change the color of the dots in the middle

futureDotColor: Change the color of the dots in the middle when future is enabled.

rulerColor: Change the color of the ruler in the middle.

eg.

<ngx-timeline [data]="data" [backgroundColor]="'#d3d3d3'" [dotColor]="'blue'" [futureDotColor]="'rgb(255, 165, 0)'" [rulerColor]="'#111111'"></ngx-timeline>

For a complete example, see https://github.com/RobinDBL/ngx-timeline/tree/main/projects/testapplication

Data

The required data argument is an object. Here are its properties:

public data: TimelineData[] = [
    {
      title: 'title1',
      description: 'description1',
      info: 'info1',
      position: 'left',
      future: false
    },
    {
      title: 'title2',
      description: 'description2',
      info: 'info2',
      position: 'right'
    },
    {
      title: 'title3',
      description: 'description3',
      info: 'info3',
      position: 'left',
      future: true
    }
  ]

title: A string that shows the title of the event

description: The description of the event. This supports HTML tags

info: Extra information about the event. Can be used to specify the date

position: The position of the event: left or right.

future: If the event is a future event (not completed). This can be used to set the middle dot to a different color.

every property can be left empty.