You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moved the context @input() to the loaders (since they are not always required for all the loaders) & added AbstractComponentLoaderComponent documentation
* To create a new loader component you will need to:
10
+
* <ul>
11
+
* <li>Create a new LoaderComponent component extending this component</li>
12
+
* <li>Point the templateUrl to this component's templateUrl</li>
13
+
* <li>Add all the @Input()/@Output() names that the dynamically generated components should inherit from the loader to the inputNames/outputNames lists</li>
14
+
* <li>Create a decorator file containing the new decorator function, a map containing all the collected {@link Component}s and a function to retrieve the {@link Component}</li>
15
+
* <li>Call the function to retrieve the correct {@link Component} in getComponent()</li>
16
+
* <li>Add all the @Input()s you had to used in getComponent() in the inputNamesDependentForComponent array</li>
0 commit comments