Works fine with @inputs, the .next method for an @input member works fine, but also providing callback functions for @output does nothing.
in lazy-loaded component:
@Input()
public myInput: any;
@Output()
public myOutput: EventEmitter<void> = new EventEmitter();
in outer program itself :
public initMyComponent(p_componentRef: ICreatedComponentInterface): void {
p_componentRef.next({
myInput: this.someinfo,
myOutput: function(): void {
console.log('hello'); // does not work
}
});
}