Re: [polymer-dev] Child html within lit-html

2018-04-30 Thread fredygomez1981
Justin What if my project does not use shadowdom because it is too intrusive in FF. I guess slots are useless. How can I still achieve child projection? Regards, Fredy A Gomez On Monday, February 19, 2018 at 8:27:00 AM UTC-8, Justin Fagnani wrote: > > For projecting child content, you need

Re: [polymer-dev] Child html within lit-html

2018-02-19 Thread 'Justin Fagnani' via Polymer
Safari and Opera support Shadow DOM, Firefox has it under development. The polyfills work, and lit-html has ShadyCSS integration as of 0.9.0. On Feb 19, 2018 10:26 AM, "Ronn Ross" wrote: > Thanks everyone. I also read about slot on MDN and it makes sense. I saw > that

Re: [polymer-dev] Child html within lit-html

2018-02-19 Thread Ronn Ross
Thanks everyone. I also read about slot on MDN and it makes sense. I saw that chrome only supports this, so will this be covered by the polyfill in other browsers? On Monday, February 19, 2018 at 11:27:00 AM UTC-5, Justin Fagnani wrote: > > For projecting child content, you need to use s: >

Re: [polymer-dev] Child html within lit-html

2018-02-19 Thread 'Justin Fagnani' via Polymer
For projecting child content, you need to use s: https://developers.google.com/web/fundamentals/web-components/shadowdom#slots class MyButton extends LitElement { constructor(...args) { super(); } render() { return html` `; } } On Mon, Feb 19, 2018 at

[polymer-dev] Child html within lit-html

2018-02-19 Thread Ronn Ross
I have a simple button component. I trying to get the child content and pass it through to the button. Here is an example: this is some content I can't figure out how MyButton can pass along the children class MyButton extends LitElement { constructor(...args) { super(); }