New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@rilaykit/forms

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rilaykit/forms - npm Package Compare versions

Comparing version
0.1.3
to
0.1.4
+2
-2
package.json
{
"name": "@rilaykit/forms",
"version": "0.1.3",
"version": "0.1.4",
"private": false,

@@ -40,3 +40,3 @@ "description": "Form building utilities and components for RilayKit",

"zustand": "^5.0.5",
"@rilaykit/core": "0.1.3"
"@rilaykit/core": "0.1.4"
},

@@ -43,0 +43,0 @@ "peerDependencies": {

@@ -45,6 +45,7 @@ # @rilaykit/forms

```tsx
import { form } from '@rilaykit/forms';
import { required, email } from '@rilaykit/core';
const loginForm = rilay
.form('login')
const loginForm = form
.create(rilay, 'login')
.add({

@@ -91,4 +92,6 @@ id: 'email',

```tsx
const contactForm = rilay
.form('contact')
import { form } from '@rilaykit/forms';
const contactForm = form
.create(rilay, 'contact')
.add(

@@ -157,3 +160,3 @@ { id: 'firstName', type: 'input', props: { label: 'First Name' } },

rilay.form('account')
form.create(rilay, 'account')
.add({

@@ -160,0 +163,0 @@ id: 'accountType',