Socket
Socket
Sign inDemoInstall

@formkit/pro

Package Overview
Dependencies
Maintainers
0
Versions
490
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@formkit/pro

FormKit Pro — Form inputs and tools for high quality forms.


Version published
Weekly downloads
23K
increased by11.52%
Maintainers
0
Weekly downloads
 
Created
Source

FormKit Pro

FormKit Pro is a first party library of professional grade "synthetic" inputs for the FormKit form building framework. This growing list of inputs currently includes:

  • Autocomplete
  • Currency
  • Datepicker
  • Dropdown
  • Colorpicker
  • Mask
  • Rating
  • Repeater
  • Slider
  • Taglist
  • Toggle
  • Toggle Buttons
  • Transfer List
  • Slider

Usage

To use FormKit Pro follow these steps:

  1. Register for a free account at: https://formkit.com/pro
  2. Create a new project and copy the project key.
  3. Follow installation instructions for the pro package.

Installation

FormKit Pro is a FormKit plugin that is installed just like any other plugin. To configure FormKit Pro, import the createProPlugin from the @formkit/pro library. This function takes 2 arguments, your project key, and any pro inputs you want to use.

// main.js
import { createApp } from 'vue'
import { plugin, defaultConfig } from '@formkit/vue'
import { createProPlugin, autocomplete } from '@formkit/pro'
import App from 'App.vue'

const pro = createProPlugin('{your-project-key}', {
  autocomplete,
})

const app = createApp(App)

app.use(
  plugin,
  defaultConfig({
    plugins: [pro],
  })
)

License

Although using FormKit Pro in production requires a paid license, you may use these these inputs for free during your entire development process. You will not be charged until after your project goes into production. For pricing details, please visit formkit.com/pro.

By using this software, you agree to the abide by the included license.

Keywords

FAQs

Package last updated on 20 Aug 2024

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