It was fun while it lasted, but we have to stop maintaining these repositories. We haven't used these projects for quite some time and maintaining them is becoming harder to do.
You deserve better, and for that reason we've decided to archive some repositories, which includes this one.
Feel free to fork and alter the repositories, and go forth making awesome stuff.
A plugin for aurelia-form that enables form validation.
Using this plugin is an automatic process. All you have to do is install it, and register the plugin in main.js after aurelia-form.
This plugin and aurelia-form use aurelia-config.
The config for this plugin is:
{
'aurelia-form': {
validation: {
controller: validationController,
trigger: validateTrigger.change
}
}
}
Note: Generally you'll only change the trigger (defaults to change). Only change the controller if you know what you're doing.
Run npm i aurelia-form-validation--save
from your project root.
Add following to the build.bundles.dependencies
section of aurelia-project/aurelia.json
.
{
"dependencies": [
// ...
{
"name": "aurelia-form-validation",
"path": "../node_modules/aurelia-form-validation/dist/amd",
"main": "aurelia-form-validation"
},
// ...
]
}
Run jspm i aurelia-form-validation
from your project root.
Add following to the desired includes
section of build/bundles.js
, eg:
"aurelia": {
"includes": [
//...
"aurelia-form-validation",
"[aurelia-form-validation/**/*.js]"
//...
]
}
If the installation results in having forks, try resolving them by running:
jspm inspect --forks
jspm resolve --only registry:package-name@version
Run npm i aurelia-form-validation--save
from your project root.
And add aurelia-form-validation
in the coreBundles.aurelia
section of your webpack.config.js
.
Npm-based installations pick up the typings automatically.
For Jspm-based installations, run typings i github:spoonx/aurelia-form-validation
or add "aurelia-form-validation": "github:spoonx/aurelia-form-validation",
to your typings.json
and run typings i
.