Tigran Sargsyan

Results 22 comments of Tigran Sargsyan

You can update the `stroke` color on the `.circle-progress-value`. It will be easier with HSL notation. You can calculate the values from, say, `hsl(0 100% 50%)` (red) to `hsl(120 100%...

I have a similar error coming from `@storybook/manager-webpack4` in my web components library. ``` i 「wdm」: wait until bundle finished: node:internal/crypto/hash:71 this[kHandle] = new _Hash(algorithm, xofLen); ^ Error: error:0308010C:digital envelope...

The simplest case when this happens is if you have links inside sliders. Not arbitrary elements with onClick listeners, but plain old links. Dragging should prevent the "mouseup" event (as...

`tabindex=-1` is not enough. The slides are still visible for assistive technologies, and focusable elements (such as links) inside the slide are still navigateable by tab key or other means....

Which Circle Progress version are you using?

Please, share your code. If you can create a demo on Codepen.io or jsfiddle.net or something else, would be even better.

@augustjk , your solution would work technically, but 1. It is quite painful to use that workaround everywhere you need to call `focus()`, `select()`, to query size, style or other...

So, between having a performance penalty or a bug, you are choosing to have a bug. 😣 Are you sure there is no way of knowing those initial properties synchronously...

I don't think the issue should be closed. No matter the causes, the problem is still there, and there is no workaround. I can't test `@lit-labs/nextjs` package and verify that...

Adding `"type": "module"` in `package.json` fixes the issue (you also have to rename `next.config.js` to `next.config.cjs`. However, if you run `npm run build` then `npm start` or `npm run dev`,...