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

svelte-forma

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-forma

- 📦 Super light 3.3kb (1.5k gzip) - 🚀 Very easy to use - 😎 Minimum API for the best experience - 🔥 Reactive - 🗒 Type safe - 🖋 Controllable inputs

  • 1.0.60
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Svelte Forma

  • 📦 Super light 3.3kb (1.5k gzip)
  • 🚀 Very easy to use
  • 😎 Minimum API for the best experience
  • 🔥 Reactive
  • 🗒 Type safe
  • 🖋 Controllable inputs
npm install svelte-forma # or yarn add svelte-forma
<!-- Form.svelte -->
<script>
  import { useForm } from "svelte-forma";
  import ErrorMessage from "./ErrorMessage"

  const { form, handleSubmit, validators, formState } = useForm();

  let name = "";
  let agree = false
</script>

<form use:form on:submit={handleSubmit(() => {
  console.log("submitted", name)

  name = ""
})}>
  <input
    name="name"
    bind:value={name}
    use:validators={[
      (value) => Boolean(value) || "Field is required"
    ]}
  />

  <ErrorMessage name="name" {formState} />

  <input
    name="agree"
    use:validators={[
      (value) => value === 'true' || 'Field is required';
    ]}
    type="checkbox"
    on:input={(e) => {
      agree = e.currentTarget.checked;
    }}
    checked={agree}
    value={agree}
  />

  <ErrorMessage name="agree" {formState} />

  <button type="submit">Submit</button>
</form>

<!-- ErrorMessage.svelte -->
<script lang="ts">
	import type { IFormState } from 'svelte-forma/dist/IForm';
	import type { Writable } from 'svelte/store';

	export let formState: Writable<IFormState>;
	export let name: string;
</script>

{#if $formState?.errors?.[name] && $formState?.touched?.[name] && $formState?.dirty?.[name]}
	<div>
		<span class="font-medium text-sm text-red-500">
			{$formState?.errors?.[name]}
		</span>
	</div>
{/if}

Keywords

FAQs

Package last updated on 04 Aug 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