ngx-valdemort
ngx-valdemort copied to clipboard
Simpler, cleaner Angular validation error messages
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Config Migration Needed - [ ] Select this checkbox to let Renovate create...
When some form controls are on a nested component, validation erros do not always appear on submit. Check out this stackblitz: https://stackblitz.com/edit/angular-ivy-kprprr Case 1) No nested component When clicking submit,...
We could simplify the setup for CLI users by adding an add schematic, which could at least include the `ValdemortModule` If we want to be fancy we could even: -...
We often use in our Boostrap project the following directive, that automatically adds the `is-invalid` class depending on the control state and valdemort config: ```typescript /* tslint:disable:directive-selector */ import {...
We could provide custom Jasmine matchers (I know :) ) to simplify writing unit tests for forms. ```typescript expect(form).toDisplayError('required'); expect(form).toDisplayError('max', 'custom max error message'); ```
Given that this relies on Angular 17.2 and on developer preview features, I suggest we only make the next release when Angular 18 comes out