MaxKless
MaxKless
Before submitting a pull request, please make sure you have at least performed the following: - [x] read and followed the [CONTRIBUTING.md](https://github.com/ng-bootstrap/ng-bootstrap/blob/master/CONTRIBUTING.md) and [DEVELOPER.md](https://github.com/ng-bootstrap/ng-bootstrap/blob/master/DEVELOPER.md) guide. - [x] built and tested...
After updating Node.js to 16.16.0, the package-lock.json is outdated. => Updated Fix #3405
**Executing `npm i` does not work out of the box for windows users!** Deep down in the dependency graph, there's the following package: https://www.npmjs.com/package/iltorb It requires you to compile the...
**What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)** fix(demo) **What is the current behavior? (You can also link to an open issue here)** Currently,...
~DEPENDS ON #3256 !!~ -> merged **What is the current behavior? (You can also link to an open issue here)** Currently, formly provides great test tooling to make writing jest...
THIS IS A DRAFT PR **What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)** This is a feature to add a centrally configurable `showValid` extra...
Currently, extensions are purely side-effects and have to modify their input object mutably. If you want to update a field config in an immutable way, it's not supported well right...
ESLint is a great tool that allows us to write consistent, clean code. Formly as an additional framework in the tech stack is another layer of abstraction and can lead...
[Jest Snapshots](https://jestjs.io/docs/snapshot-testing#snapshot-testing-with-jest) are a powerful tool to make writing jest tests and ttd easier. Especially for `FormlyFieldConfig`s, manually testing different properties is cumbersome and prone to errors / missing stuff...
**Describe the solution you'd like** I'm using formly to build complex forms (and loving it!), including some fields that contain a mixture of standard and asynchronous validation. To precisely control...