As per the latest Angular2-Material docs of Dialog Component . There is no description on how to pass values to dialog component. Is it achievable via component interaction mechanisms? Apart from using a service.
In normal component interaction we had seen that we can pass the values this way:
<app-child [data]="some_data"></app-child>
@Input data:string;