-
In the following code, the InputComponents are aligned correctly (the `credentials` container is added to a `BoxLayout.y` Form):
```
TextModeLayout tl = new TextModeLayout(2, 1);
…
-
**Bug, feature request, or proposal:**
`` doesn't show when I use an email maching validator for emails inputs.
**What is the expected behavior?**
To display the error.
**What is the curre…
-
The following unit tests for valid email addresses fail
``` php
public function testIsValidGoodAddrPasses8 ()
{
/*
* According to Wikipedia this is a valid email address, bu…
-
I'm trying to use an async validator combined with your module, my api return a 200 response if email is unique and a 400 response if it's already in use.
Have you tried using async validators?
…
-
### Describe the bug
Attempts to validated: [Calabasas](https://www.cityofcalabasas.com/home/showpublisheddocument/31620/638611519891730000) but get "Error Processing Report".
I don't see anything…
-
My proposal:
each schema can have a `validators` property which is an array of validator objects. A validator object have the following properties:
- **`message`**(string) the error message shown if …
-
I'm trying to create a validation error with this package. can you generate a new key for the error?
I'm not comfortable entering validation error data into the key data.
```
{
"success": fa…
-
```
const { validator, validate } = require('@wiicamp/graphql-validation'); // Import module
const resolver = {
Mutation: {
ValidateEmails: validator([
validate('students', 'data') …
-
`validatePresence({ presence: true, on: 'email' })`
## Version
2.1.0
This is probably me misunderstanding the behavior of the validator.
## Steps to reproduce
```
export default {
em…
-
Using #220 as inspiration, I'm frequently using this custom validator in my code:
```js
export default function validateChain(validators) {
return async (key, value, oldValue, changes, content)…