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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@forter/multistep-form

v2.2.1

Published

multistep-form from Forter Components

Downloads

11

Readme

fc-multistep-form

Multi-step form component

Usage

<fc-multistep-form>
   <fieldset id="users-step">
     <h2>Step 1 - Choose Users</h2>

     <section id="users-checks">
       <h2>Users</h2>
       <fc-checkbox>Assaf</fc-checkbox>
       <fc-checkbox>Shalom (Yafyuf)</fc-checkbox>
       <fc-checkbox>Daniel</fc-checkbox>
       <fc-checkbox>David</fc-checkbox>
       <fc-checkbox>Gilad</fc-checkbox>
       <fc-checkbox>Goldi</fc-checkbox>
       <fc-checkbox>Harel</fc-checkbox>
       <fc-checkbox>Ori</fc-checkbox>
     </section>

     <section id="users-filter">
       <h2>Language</h2>
       <fc-checkbox checked data-lang="en">English</fc-checkbox>
       <fc-checkbox checked data-lang="he">Hebrew</fc-checkbox>
       <fc-checkbox checked data-lang="hp">Hipster</fc-checkbox>
     </section>
   </fieldset>

   <fieldset id="message-step">
     <h2>Step 2 - Choose a Message</h2>

     <fc-textarea label="Message"></fc-textarea>

     <fc-dropdown label="Mood" trigger-label="Mood">
       <fc-dropdown-item>Chill</fc-dropdown-item>
       <fc-dropdown-item>Kill</fc-dropdown-item>
       <fc-dropdown-item>Thrill</fc-dropdown-item>
     </fc-dropdown>

     <fc-radio-group name="urgency">
       <fc-radio label="Urgent" value="urgent"></fc-radio>
       <fc-radio label="Leisurely" value="leisurely"></fc-radio>
     </fc-radio-group>
   </fieldset>

   <fieldset>
     <h2>Step 3 - Confirm</h2>
     <p>You are about to send the following message:</p>
     <dl>

       <dt>Recipients:</dt>
       <dd><output data-value="users"></output></dd>

       <dt>Message:</dt>
       <dd><output data-value="message"></output></dd>

       <dt>Urgency:</dt>
       <dd><output data-value="urgency"></output></dd>

       <dt>Mood:</dt>
       <dd><output data-value="mood"></output></dd>

     </dl>
   </fieldset>

</fc-multistep-form>

Properties

| Property | Attribute | Type | Default | Description | |----------------|----------------|-----------|----------|------------------------------------| | autoFocus | auto-focus | boolean | false | Whether the form should auto focus | | backLabel | back-label | string | "Back" | The label for the 'back' button | | cancelLabel | cancel-label | string | "Cancel" | The label for the 'cancel' button | | disabled | disabled | boolean | false | Whether the element is disabled | | form | | any | | | | intent | intent | string | "apply" | The intent for the 'submit' button | | nextLabel | next-label | string | "Next" | The label for the 'next' button | | step | step | number | | | | submitButton | | any | | | | submitHidden | | any | | | | submitLabel | submit-label | string | "Submit" | The label for the 'submit' button |

Events

| Event | Description | |-----------------|---------------------------| | cancel | when the user cancels | | next-step | when the step decrements | | previous-step | when the step increments | | reset | when the user resets | | step-changed | whenever the step changes | | submit | when the user submits |

Slots

| Name | Description | |----------|---------------------------| | | content | | header | form header for all steps |

CSS Custom Properties

| Property | Description | |---------------------------------------|--------------------------------------------------| | --fc-multistep-form-actions-padding | default: 18px | | --fc-multistep-form-counter-size | default: 23px | | --fc-multistep-form-padding | default: 23px 0 | | --rule-color | default: var(--fc-gray-100) | | --step-background-color | default: var(--cyan-5) | | --step-border-background-color | default: var(--fc-multistep-form-background-color, inherit) | | --step-color | default: var(---fc-gray-600) | | --step-inner-border-color | default: var(--fc-gray-600) | | --step-outer-border-color | default: var(--fc-gray-100) |