By default, Angular styles are restricted within each component, preventing the inheritance of styles from the parent component to its child. However, fear not! There exist numerous methods to overcome this limitation. Brace yourself as we dive into the depths of this blog to uncover the truth: Is it truly essential to style child components from the parent? And if it is, we shall delve into the finest strategies to achieve this feat.
Getting started with standalone components – Angular
In angular application, each page acts as a component. Whenever you create a component, you need to import that in the respective module to make use of it. By doing so, every component in Angular is tightly bounded to the module. But from Angular v14, you can create standalone components which is independent of modules.... Continue Reading →
Change Height and Width of TextArea in codemirror
CodeMirror is a JavaScript text editor package which you can integrate with your applications. I was trying to integrate the respective Angular package of CodeMirror which is called as @ctrl/ngx-codemirror into my application. When I started to integrate codemirror, I was facing fold gutter issue which I have explained in this blog. Recently, there was... Continue Reading →
JSVidCon 2020 – Live Blog
JSVidCon is a virtual conference where developers from all over the world can share and gain knowledge on four frontend frameworks such as Angular, Vue.js, React.js and Node.js. All the four tracks will happen parallely. The live blog of this event starts at May 7th, 2020 at 2 PM GMT+0. Stay tuned. The Angular Jamstack... Continue Reading →
Angular – Pure vs Impure Pipe
A pipe is used to transform values in an Angular template. To know more about pipes, you can visit this link. Basically there are two types of pipes in Angular. They are called as Pure and Impure pipes. In this blog, we'll explore about why do we need Angular pipes and also we'll see some... Continue Reading →