Serhii Kulykov

Results 603 comments of Serhii Kulykov

Thanks for the issue. Actually, I was thinking about making each component a separate npm package (like most of people in Polymer community are used to). Would that solve the...

@aveiga thanks for your opinion as well. I would prefer to collect the feedback before making any decisions, yet there is plenty of time until 1.0 release to revamp the...

I'm also interested in class mixins, and the developer experience with TypeScript has been quite painful in this regard. Here is one more issue which wasn't mentioned above: microsoft/TypeScript#17744. See...

It would be great to have this feature. I'm personally interested in it because I would like to use `odiff` instead of `pixelmatch` in [`@web/test-runner-visual-regression`](https://github.com/modernweb-dev/web/blob/master/packages/test-runner-visual-regression/src/visualDiffCommand.ts#L25-L28).

Thanks for letting me know. For now I've tried to write files as a workaround and it works, here is an [example](https://github.com/vaadin/web-components/commit/168a8bcc752be57be1e8ebeaff1766dc30f6df1a#diff-3674802f9e4a6ba7e95342c06b9a406638151113afdf846ff1a4c06aa0784b47R18-R52). If possible, it would be great to also...

I noticed this too, while trying to upgrade `puppeteer` version for [@web/test-runner-puppeteer](https://www.npmjs.com/package/@web/test-runner-puppeteer) package. See https://github.com/modernweb-dev/web/pull/1295#pullrequestreview-596042949 for one example where it caused TS compilation errors.

@jackfranklin as you mentioned that you are going through the types https://github.com/puppeteer/puppeteer/issues/6979#issuecomment-821972179, could you please check this one too?

FYI there is a polyfill for constructable stylesheets: https://www.npmjs.com/package/construct-style-sheets-polyfill If you need some insight about internal details, feel free to reach out to @Lodin and @calebdwilliams.

There is a webdriver version 6 released already. So maybe now it's time to consider that one 🤔

Seems that you are missing using `as` which is required for nested `dom-repeat`. Have a look how this should look like: https://jsbin.com/meqogakice/edit?html,console,output