https://angular.io/docs/ts/latest/api/common/index/NgSwitch-directive.htmlHi Chenthill,
Probably your web-component is using shadow-dom to hide its contents. If that's the case, you are out of luck. (or at least going down a path you shouldn't!). Change your component so it uses the light-dom to expose the steps. As a word of advice, use custom elements only for leaf nodes, not for structural components. Usually, structural components are part of the business logic, not of the view logic. The multistep you are using is probably easily replaced by a NgSwitch, and some (css) animations. Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
