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

angularx-accordion

v1.0.7

Published

accordion module

Downloads

10

Readme

Accordion Accordion

##Installation Steps

  1. Install npm module:

    npm i angularx-accordion --save

  2. In your app.module.ts file

        import { AccordionModule } from 'angularx-accordion';
        imports: [
          AccordionModule
        ],
  3. In your app.component.ts file

        import { AccordionComponent } from 'angularx-accordion';
        import {AccordionToggleComponent } from 'angularx-accordion';
        import { Accordion } from 'angularx-accordion/accordion'; 

    if you are using variation 1 or 2 then also add following lines

      declare var require: any;
      const accordionJSON = require('[PATH TO YOUR STRUCTURED JSON]'); 
  4. In your Styles.scss file

      @import '~angularx-accordion/accordion.component';
      $screen-md : 992px;
      @include ngxAccordion();

Description

The accordion module will contain descriptions about products and features with a header and subheader It can also contain modules that can be dyanmically injected into it. same applies to the expander variant of it.

Variations

This module contains three variants: 1. Accordion 2. Expander 3. Accordion as functionality

In accordions if one accordion is open all other accordions will be closed,

Link to the json

The json data for the accordion and its variants is at Accordion-json


Variation 1 json


  var accordion = {
  "module": {
    "variantID": "1"
  },
  "content": [
    {
      "header": "H4 copy secondary header 22px",
      "content": "p copy 14 px Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    },
    {
      "header": "H4 copy secondary header 22px",
      "content": "p copy 14 px Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    },
    {
      "header": "H4 copy secondary header 22px",
      "content": "p copy 14 px Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    }
  ]
}

Variation 1 usage


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


Variation 2 json

var expander = {
  "module": {
    "variantID": "2"
  },
  "content": [
    {
      "header": "H4 copy secondary header 22px",
      "content": "p copy 14 px Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    },
    {
      "header": "H4 copy secondary header 22px",
      "content": "p copy 14 px Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    },
    {
      "header": "H4 copy secondary header 22px",
      "content": "p copy 14 px Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    }
  ]
}

Variation 2 usage


<ngx-accordion [data]="expander"></ngx-accordion>


Variation 4 json


      No JSON | using tags

Variation 4 usage


    <ngx-accordion>
        This is a outer header
        <ngx-accordion-container>
            <div class="ngx-accordion-header">
                <span>Accordion Header 1</span>
                <button>
                    <ngx-accordion-toggle>Custom clickable heading</ngx-accordion-toggle>
                </button>
            </div>
            <div class="ngx-accordion-body">
                <div>Accordion body 1</div>
            </div>
        </ngx-accordion-container>
        <ngx-accordion-container>
            <div class=" ngx-accordion-header ">
                <div>Accordion Header 2</div>
            </div>
            <div class="ngx-accordion-body">
                <div>Accordion body 2</div>
            </div>
    </ngx-accordion

live Example here: https://sirius93.github.io/angular-accordion/ github page here : https://github.com/sirius93/angular-accordion