Dean Fogarty
Dean Fogarty
Applying a position to a trigger in a `Tooltip` with `content` wider than the available window width results in the tooltip being mis-positioned. Positioning tested with `float`, `absolute` (below), or...
Including a `toast`er in `view()` causes a redraw when it's removed from the DOM. Note in the code sample below I don't actually use the Toaster. I'm pretty sure this...
Disabling a button with a tooltip shown does not remove the tooltip. Tested with Chrome on Mac OS X. ```javascript const { Button, FocusManager, Tooltip, } = CUI; FocusManager.showFocusOnlyOnTab(); const...
Tooltips don't fade on mobile. Tested on Safari on iOS. ``` const { Button, Tooltip } = CUI; const MobileButtonTooltipNoFade = { view: () => { return m('', [ m(Tooltip,...
## ☕️ Reasoning Adding [Concept2](https://log.concept2.com/developers/documentation/) as a provider. ## 🧢 Checklist - [X] Documentation - [ ] Tests - [X] Ready to be merged
It's possible that `parentNode` is `null`, which causes a null dereference: https://github.com/mapbox/mapbox-gl-geocoder/blob/5ac5826bd8e51fd6219bb269a4cc2bba0ac4902d/lib/index.js#L395 This can occur if the geocoder adds itself to a map, then `map.remove()` is called, and then the...
### Describe the bug Using `` on a form with hardcoded values clears the form when it shouldn't. ### Reproduction Repl here: https://svelte.dev/repl/fa8b042ada144734b1814685f918f1db?version=3.55.1 Form is reset, but values shouldn't change....