Alex Rickabaugh

@alx

Prime membership

Joined on Mar 5, 2019

  • What does "content" mean? DOM I control that gets "threaded" into the component's DOM at some location A template for content that I want the element to be able to render many times, at will DSL for configuration/inputs (<router><route ...><route ...></router>) Plain text to transform (<markdown>...</markdown>) Custom Elements API for slots <template> <slot name="user">
     Like  Bookmark
  • # The Monorepo Import Problem ## Import generation in Ivy Ivy requires the insertion of new imports into the user's code. This is a result of `NgModule` expansion, where the individual directives used by a component are inserted into the `directiveDefs` property of an `ngComponentDef`. The component never imported these directives, but instead was _imported by_ an `NgModule`. For example, consider the following simple program: ```typescript // app.component.ts: import {Component} from '@angu
     Like  Bookmark