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

angular-2-accordian

v1.0.16

Published

angular_accordian

Downloads

21

Readme

Angular accordian

An npm Package Angualr 2 accordian.

Basic Usage

This example has four accordion's

<ng-accordian [closeOthers]="true">
  <ng-accordian-group heading="About us">
    We are started stradding in...........
  </ng-accordian-group>
  <ng-accordian-group heading="Contact Details">
    <ul>
    <li>85 Accasia Road</li>
    <li>Shirehampton</li>
    <li>London</li>
    </ul>    
  </ng-accordian-group>
  <ng-accordian-group heading="Refund Policy">
    <p>All refunds are covered up till.....</p>
  </ng-accordian-group>
  <ng-accordian-group heading="Delivery">
    Delivery times.
    ...............
  </ng-accordian-group>
</ng-accordian>

Install

use the npm install --save to add it.

$ npm install angular-2-accordian --save

Add the Module to your App or Shared component

Add to the Shared module.

import { NgModule, ModuleWithProviders } from '@angular/core';
import { CommonModule } from '@angular/common';
..........
import { AccordianModule } from 'angular-2-accordian/mk-accordian/accordian.module';

@NgModule({
  imports: [
  CommonModule,
  AccordianModule],
  declarations: [
    ......
    ],
  exports: [
    CommonModule,
    .......,
    AccordianModule
    ]
})
export class SharedModule {
  static forRoot(): ModuleWithProviders {
    return {
      ngModule: SharedModule,
      providers: [NameListService]
    };
  }
}

Make sure component has the Shared module.

Add to the Shared module to page requiring the accordian (eg AboutComponent)

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
........
import { SharedModule } from '../shared/shared.module';

@NgModule({
  imports: [CommonModule, AboutRoutingModule, SharedModule],
  declarations: [AboutComponent],
  exports: [AboutComponent]
})
export class AboutModule { }

Html rendering of accordian on About page.

Html to page.

<h1>About us</h1>
<ng-accordian [closeOthers]="true">
  <ng-accordian-group heading="Heading one">
    Content one
  </ng-accordian-group>
  <ng-accordian-group heading="Heading two">
    Content Two<
  </ng-accordian-group>
  <ng-accordian-group heading="Heading three">
    Content three
  </ng-accordian-group>
  <ng-accordian-group heading="Heading four">
    Content four
  </ng-accordian-group>
</ng-accordian>

Module not found

If after your install, you are getting module not found, you will need to update the project.config.ts file

      {
        name: 'angular-2-accordian',
        path: 'node_modules/angular-2-accordian',
        packageMeta: {
          main: 'accordian.module.js',
          defaultExtension: 'js'
        }
      },