input-knob icon indicating copy to clipboard operation
input-knob copied to clipboard

A rotating, touch-sensitive knob web component that you can use like an <input type="range">.

Results 5 input-knob issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 5.5.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

Hi, I'd love to use this in my svelte app, but I get the error ``` settings.svelte:341 Uncaught TypeError: Cannot read property 'fragment' of undefined ``` (settings.svelte is the svelete...

offsetLeft & offsetTop are relative to the element first positioned (not static) ancestor element. This causes the input-knob to break when placed in any non-statically positioned (e.g. absolute) element. Using...

Ideally something like… ```html 1% 2% 3% ``` Each `` should set the `` to the corresponding `value` attribute's value. Currently, building this by hand is tedious, but maybe an...

Currently, setting the `` to `disabled` has no effect, and one has to emulate it poorly: ```css input-knob[disabled] { pointer-events: none; opacity: .25; } ``` This [doesn't feel right](https://glitch.com/edit/#!/dark-mode-knob?path=style.css:38:1).