ember-changeset-validations
ember-changeset-validations copied to clipboard
Validations for ember-changeset
In my app, the propertyName for the input does not always map to the displayed label; this would be even more common in localised products. For example: ``` {{spanishProperty}} {{#if...
## Version 1.2.8 ## Test Case https://ember-twiddle.com/8687b828162c979dceef152ba69d1be8?openFiles=controllers.application.js%2C ## Steps to reproduce Enter missing "t" in "Password" input field. ## Expected Behavior Password confirmation should be valid after both values are...
Hi @poteto & others, I am trying to have more than one validated-form in the page, for the same model, taking a changeset. Different fields will be applicable for each...
Hello, I know you won't answer questions, but I tought it would be good to share this. I stumbled upon an issue with validateFormat using regex when trying to check...
The readme for validator `number` contains the following: ``` propertyName: validateNumber({ gte: 10 }), // greater than or equal to 5 ``` Comment there should say 10 instead of 5.
Hey, Thanks for the great library. I've noticed that you can return a promise from a custom validator leading me to believe I could write validators that query a remote...
This is now public API with #82
Also amend validators to take an option to opt-out of caching (e.g. async validators) TODO: - [ ] Investigate https://github.com/thoov/ember-weakmap
Closes # 347. ## Changes proposed in this pull request This PR fixes the documentation URL for the ember-validator functions. The ember-validators repository seems to have been transferred along with...
We use this a lot in our codebase, and it is working at runtime, but I realized that this API is not present in `@types/ember-changeset-validations` ```ts username: validatePresence({ presence: true,...