skulptur
skulptur
We use vscode and webstorm where I work and I'd like to show a list of options of all supported installed editors so the user can choose. I know there...
I've searched the docs but couldn't figure out how to change the framerate of the regl.frame loop. It does mention that it's possible to create my own loop but that...
I am working on a helper function that creates action handlers outside of a `createReducer` function, and from what I understand I need createHandlerMap to do that. I added my...
https://github.com/tb/ng2-nouislider/blob/master/src/nouislider.ts#L91 As you can see on the link above the start value looks for formControl or ngModel. I tend to use formControlName and was getting an error that start was...
I have a div that acts as a button and inside there's an icon that is its own component. Internally the icon uses your ng-inline-svg directive and if I click...
Hey, I didn't try the lib yet but reading the example it seems that you need to change ```state``` to ```prevState``` here: ```typescript // Or you can update it like...
Error: Expression has changed after it was checked. Previous value: 'true'. Current value: 'false'.
I keep getting this error. In my component I have this: ``` ngOnInit() { setTimeout(() => { this.formOptions = this.formData.get(["categories"]) }, 0) } ``` And this is in my template:...
This uses the default tsconfig.json generated with tsc --init (tsc Version 3.9.5). Only change from that right now is adding `"importsNotUsedAsValues": "error"`
Regarding this discussion: https://github.com/mediamonks/frontend-coding-standards/pull/39#discussion_r532909931.
Linting, testing, starting a dev server, formatting, typechecking, building. Those are things that we should have available in every project in a standard way. For example should we use `yarn...