Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@highoutput/hds-auto-form

Package Overview
Dependencies
Maintainers
6
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@highoutput/hds-auto-form

We aim to build a library of custom ReactJS components that implements our unique UI design conventions. The ReactJS components will be based primarily on Chakra UI components. React Storybook will be used for documentation and testing.

  • 0.2.16
  • latest
  • npm
  • Socket score

Version published
Maintainers
6
Created
Source

Getting started

We aim to build a library of custom ReactJS components that implements our unique UI design conventions. The ReactJS components will be based primarily on Chakra UI components. React Storybook will be used for documentation and testing.

Commands

To install package, use:

npm i @highoutput/hds-auto-form

Usage

import { AutoForm } from '@highoutput/hds-auto-form';

const autoFormSchema = object().shape({
  title: string().required().label('Title').required('Title is required'),
  description: string()
    .label('Description')
    .meta({ type: 'textarea' })
    .required('Description is required'),
});

export const SamplePage = () => {
  return (
    <>
      <AutoForm
        onSubmitForm={() => {}}
        placeholders={['Enter title', 'Enter description']}
        yupSchema={autoFormSchema}
      />
    </>
  );
};

FAQs

Package last updated on 19 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc