
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
@saas-ui/forms
Advanced tools
Powerfull forms library for Chakra UI. Create typesafe React forms with speed.
Supports Zod, Yup and AJV for validation and form generation.
$ yarn add @saas-ui/forms
#or
$ npm i @saas-ui/forms --save
Generate forms from schema.
import { createZodForm } from '@saas-ui/forms/zod'
const { AutoForm } = createZodForm()
const schema = z.object({
name: z.string(),
})
function App() {
const onSubmit = (data: z.infer<typeof schema>) => {}
return <AutoForm schema={schema} onSubmit={onSubmit} />
}
Create custom typesafe forms.
import { FormLayout, createZodForm } from '@saas-ui/forms/zod'
const { Form, SubmitButton } = createZodForm()
const schema = z.object({
name: z.string()
})
function App() {
const onSubmit = (data: z.infer<typeof schema>) => {}
return (
<Form schema={schema} onSubmit={onSubmit}>
{({ Field }) => (
<FormLayout>
<Field name="name" type="text" />
<SubmitButton>Save</SubmitButton>
</FormLayotu>
)}
</Form>
)
}
https://github.com/saas-js/saas-ui/tree/next/packages/saas-ui-forms
MIT - Appulse Software
FAQs
Fully functional forms for Chakra UI.
The npm package @saas-ui/forms receives a total of 2,063 weekly downloads. As such, @saas-ui/forms popularity was classified as popular.
We found that @saas-ui/forms demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.