Angular – RadioControlValueAccessor
Using radio buttons with reactive form directives
The follow example shows how to use radio buttons in a reactive form. When using radio buttons in a reactive form, radio buttons in the same group should have the same formControlName. Providing a name attribute is optional.
A Complete Guide to Flexbox | CSS-Tricks
C# – How To Create a JWT – House of Cat
The 10 Best Free Icon Fonts For Web Designers – 1stWebDesigner
Surround code fragments – Help | PhpStorm
Below works for WebStorm IDE as well
Surround a code block with language constructs # Select the desired code fragment. On the Code menu, click Surround With (Ctrl+Alt+T). Select the necessary surround statement from the list.
How to Update npm Packages to their Latest Version – HostingAdvice.com
CDK | Angular Material
The Component Dev Kit (CDK) is a set of tools that implement common interaction patterns whilst being unopinionated about their presentation. It represents an abstraction of the core functionalities found in the Angular Material library, without any styling specific to Material Design. Think of the CDK as a blank state of well-tested functionality upon which you can develop your own bespoke components.
material.angular.io/cdk/categories
3 Ways to Pass Async Data to Angular 2+ Child Components ― Scotch.io
Let’s start with a common use case. You have some data you get from external source (e.g. by calling API). You want to display it on screen.However, instead of displaying it on the same component, you would like to pass the data to a child component to display.The child component might has some logic to pre-process the data before showing on screen.
…
Solution 1: Use *ngIf
Solution 2: Use ngOnChanges
Solution 3: Use RxJs BehaviorSubject
Source: 3 Ways to Pass Async Data to Angular 2+ Child Components ― Scotch.io