Socket
Socket
Sign inDemoInstall

ember-bootstrap-cp-validations

Package Overview
Dependencies
358
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ember-bootstrap-cp-validations

ember-cp-validations support for ember-bootstrap


Version published
Weekly downloads
315
decreased by-34.65%
Maintainers
2
Install size
25.9 MB
Created
Weekly downloads
 

Changelog

Source

v2.1.0 (2020-12-09)

:rocket: Enhancement
  • #79 support Ember Bootstrap v4.5 (@jelhan)
Committers: 2

Readme

Source

ember-bootstrap-cp-validations

npm version

This Ember addon adds support for validations based on Ember CP Validations to ember-bootstrap forms. This way your forms are only submitted when the underlying data is valid, otherwise the appropriate bootstrap error markup will be applied. See the FormElement documentation for further details.

Compatibility

  • Ember Bootstrap v4
  • Ember CP Validations v4
  • Ember.js v3.16 or above
  • Ember CLI v3.15 or above
  • Node.js v10 or above

Installation

ember install ember-bootstrap-cp-validations

You should have installed the ember-bootstrap and ember-cp-validations addons already. If not install them:

ember install ember-bootstrap
ember install ember-cp-validations

Usage

Define your model and its validations as described in Ember CP Validations:

import Ember from 'ember';
import { validator, buildValidations } from 'ember-cp-validations';

const Validations = buildValidations({
  username: validator('presence', true),
  email: validator('format', { type: 'email' }),
  password: validator('length', { min: 10 }),
});

export default Ember.Component.extend(Validations, {
  username: null,
  email: null,
  password: null,
});

Then assign the model to your form:

<BsForm @model={{this}} as |form|>
  <form.element @label="Username" @controlType="text" @property="username" />
  <form.element @label="Email" @controlType="email" @property="email" />
  <form.element @label="Password" @controlType="password" @property="password" />
  <form.submitButton>Submit</form.submitButton>
</BsForm>

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

Keywords

FAQs

Last updated on 09 Dec 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc