I've inspected the DOM elements for my components and they have ng-reflect-...
attributes. For example,
<my-table ng-reflect-products="[object Object],[object Object],[object Object]" ng-reflect-display-entries-count="2"><table _ngcontent-cew-1="" class="table table-striped">
And the component is defined as:
export class MyTableComponent implements OnInit {
@Input() products: Array<Product>;
What are these ng-reflect-...
attributes? Can they be helpful for me during debugging?