Karol Fabjańczuk
Karol Fabjańczuk
Temporary workaround that works for me - https://github.com/styled-components/styled-components/issues/3437#issuecomment-1103085056
Just in case you didn't resolve it yet - https://github.com/ngbp/ng-boilerplate/issues/37#issuecomment-22472078
@vincentjr can you post your whole karma config? What I did: - in package.json I updated grunt-karma and run again 'npm update' ``` "grunt-karma": "~0.7.0" ``` - in karma-unit.tpl.js ```...
I have the same problem as @itzjonas (https://github.com/storybookjs/storybook/issues/14405#issuecomment-831611809) and @kucheruk (https://github.com/storybookjs/storybook/issues/14405#issuecomment-834205980) - 99% and `Uncaught SyntaxError: Unexpected token ':'` in browser's console.
@inigay Ach, I see. This is due to our use of `shadowRoot`, which is unavailable in `closed` mode - https://blog.revillweb.com/open-vs-closed-shadow-dom-9f3d7427d1af#f82a We have to manually keep `shadowRoot` reference and change line...
Hi, can is it possible to update the PR?
Hi, why don't You just use your own event bus? Like https://codesandbox.io/s/vue-custom-element-render-function-with-on-doesnt-work-uq8om?file=/src/App.vue
It's most likely due to fact that this library monkey patch `$emit` function in `beforeCreate` hook to have HTML events send to DOM element of Custom Element: ``` function beforeCreate()...
Can You please prepare CodeSandbox?
Maybe `const component = new CouponPreview({ store })` And `Vue.customElement('coupon-preview', component.$options);`?