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

react-web-multisteps

v1.0.1

Published

This component aimed to enable navigating from it's child component using multi step approach which will help in creating multi step forms, viewing item by item etc...

Downloads

6

Readme

react-web-multisteps

This component aimed to enable navigating from it's child component using multi step approach which will help in creating multi step forms, viewing item by item etc...

NPM JavaScript Style Guide

Install

npm install --save react-web-multisteps

Usage

import React, { Component } from 'react'

import {ReactWebMultiSteps} from 'react-web-multisteps'
import 'react-web-multisteps/dist/index.css'


class Example extends Component {
   config = {
    btnSubmitLabel: 'Submit', btnNextLabel: 'Next', btnPreviousLabel: 'Previous'
  }
  nextMove = () => { }
  previousMove = () => { }
  onSubmitEvent = () => { }
 
  render() {
    return (
      <div style={{ width: '80%', justifyContent: 'center', alignItems: 'center', alignContent: 'center', margin: '200px' }}>
    <ReactWebMultiSteps onNextMove={nextMove} onPreviousMove={previousMove} onSubmit={onSubmitEvent} config={config} >
      <div>
        <p>So the SMTP is working and challenges can also be captured.
        We therefore need a meeting to demo the work done and also
        schedule the workshop of our team to get full understanding
        of the system in order to apply the rest of the fixes.
       </p>
      </div>
      <div>
        <p>
          NativeBase component that renders as Header (navbar) for your screen.
          There can be a single Header component into your Container.
          To have Header for your screen, include Header component within Container.
          Header takes input as: Left, Body and Right, and expects all three of them.
          The components those are defined within Header will be rendered in the same order that you define
      </p>
      </div>
      <div>
        <p>
          Now, we are deciding to make something great. Not only the drawer navigator,
          we want to integrate all three navigators together.
          Let me disclose the logic that how we are organizing the screens.
          We already have two menus in drawer. When the Home menu is tapped,
          let’s add TabA and TabB as tab navigators and let’s add stack navigator
          to the details of TabA. Puzzled? Oh come on, don’t worry! you will love
          the code we will make our intended application functional. So let’s make it happen now!
      </p>
      </div>
      <div>
        <p>
          We have just completed installing the dependencies for react navigation.
          Now, we can move on to the implementation part of these navigators.
          So, we are going to implement the drawer navigation first.
          If you find anything confusing let me know in the comment below. Let’s make it work!
    </p>
      </div>
    </ReactWebMultiSteps>
  </div>
    );
  }
}

License

MIT © samassango