strigefleur

Results 9 issues of strigefleur

Having EntityFrameworkCore version of package just upgraded the app from .Net Core 5 to .Net Core 6. Out of sudden queries with `ToEntityInjectable()` stopped working with translation error. Switching to...

bug

### Is this a regression? Yes ### Description ``` group: FormGroup = new FormGroup({ id: 1, }); // should have error here as there's no 123 key in TestModel ctrl...

### Is this a regression? No ### Description Docs mention that I can get control by using `get` method: ``` const name = group.get('name'); // FormControl ``` Actual result is...

**Is your feature request related to a problem? Please describe.** Having `expect` with some spyObj call produces eslint warning `unbound-method`. **Describe the solution you'd like** Integrate existing rule like [Jest...

enhancement

### Reproduction link [https://angular-hquq8a-r8smqv.stackblitz.io](https://angular-hquq8a-r8smqv.stackblitz.io) ### Steps to reproduce 1. Add nz-table with 1 fixed width (nzWidth="100px") column and another fluid column (without nzWidth) 1. Increase window size 2. Decrease windows...

Component: Table

### Which @ngneat/elf-* package(s) are the source of the bug? CLI ### Is this a regression? No ### Description Fresh install gives a bunch of warnings: ``` warning @ngneat/elf-cli >...

## What problem does this feature solve? [Frontend federation](https://github.com/angular-architects/module-federation-plugin/blob/main/libs/native-federation/README.md) makes it so that one shell-app loads multiple module-apps. NgAnt has some features (NzMessageService, NzNotificationService etc) that appear to be root-bound...

Having configuration ``` InvisibilityTimeout = TimeSpan.FromMinutes(5), UseSlidingInvisibilityTimeout = true, ``` I'd expect it to let long running jobs to execute without setting huge InvisibilityTimeout. However under some circumstances (alas, can't...

Using NR arg (`--nullableReferenceAttributes`) we can get collection decorated with attributes like that ```csharp [XmlArray("ErrorList")] [XmlArrayItem("Error", Namespace = "http://ns-here")] public Collection ErrorList { [return: MaybeNull] get => this._errorList; [param: AllowNull]...