1.0.2 • Published 2 years ago

alpine-validator v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Alpine Validator

Add Validator to your Alpine 3.x components with a custom directive.

This package only supports Alpine v3.x.

About

This plugin adds a new x-validator to Alpine.

Installation

CDN

Include the following <script> tag in the <head> of your document, just before Alpine.

NPM

npm install alpine-validator

Add the x-validator directive to your project by registering the plugin with Alpine.

import Alpine from "alpinejs";
import Validator from "alpine-validator";

Alpine.plugin(Validator);

window.Alpine = Alpine;
window.Alpine.start();

Usage

To create a tooltip, use the x-validator directive on an element.

<div x-validator>
    <input data-validator data-filter="numeric" />
</div>

Versioning

This projects follow the Semantic Versioning guidelines.

License

Copyright (c) 2021 Ryan Chandler and contributors

Licensed under the MIT license, see LICENSE.md for details.

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago