Maxi Barmetler

Results 5 issues of Maxi Barmetler

### Steps to reproduce: Tree (for example): ``` - pair 1 - window 1 - pair 2 - window 2 - window 3 ``` Select window 1. Then, execute: ```sh...

Starting with rust 1.60, making a dependency optional no longer creates an implicit feature, but uses the `dep:` syntax instead. This is important as it disables the ability to enable...

Not all values will fit your screen resolution of course, so 10 was fine, but I wanted a pixel size of 20. it works like this: `./lock --pixelate=20` or `./lock...

when marking fields in a message as deprecated for example, the generated graphql type reflects this property. However, when using this message as a request type for a query, the...

### Existing Code ```ts export interface SelectProps extends BaseSelectPropsWithoutPrivate { //... optionFilterProp?: string; } ``` ### Proposed Code ```ts export interface SelectProps extends BaseSelectPropsWithoutPrivate { //... optionFilterProp?: keyof OptionType; }...