Adam Thompson
Adam Thompson
I've noticed that the order the Euler angles are applied does not match between `quaternion.toEuler` and `quaternion.setFromEuler`. For example, this code _should_ do nothing, however it ends up rotating the...
## ✍️ Proposed changes 🎟 _Jira ticket:_ [Name of ticket](https://jira.mongodb.org/browse/[name-of-ticket]) ## 🛠 Types of changes - [x] Tooling (updates to workspace config or internal tooling) - [ ] Bugfix (non-breaking...
## ✍️ Proposed changes Adds a call to `event.nativeEvent.stopPropagation()` on trigger click, preventing the native event from propagating, while still allowing the React synthetic event to bubble. This ensures clicks...
## ✍️ Proposed changes Updates typings for Button to allow for NextJs Links in the `as` prop. Additionally, abstracts Button Contents to a separate component 🎟 _Jira ticket:_ [PD-2246](https://jira.mongodb.org/browse/PD-2246) ##...
## ✍️ Proposed changes Instead of using a random UUID, we generate a predictable, incremental digit that is appended to the className Eg. `lg-ui-0001` 🎟 _Jira ticket:_ [PD-2179](https://jira.mongodb.org/browse/PD-2179) ## 🛠...
Demo is here: https://thesonofthomp.github.io/leafygreen-ui/?path=/story/components-blob--interactive
## ✍️ Proposed changes Fixes a bug where the combobox text input content would overflow the container. Note: this is hard to write a test for. This is something Chromatic...
## ✍️ Proposed changes Lints YML files Defaults to "build/test all" if there are no git diffs Update website `.babelrc` to match ## 🛠 Types of changes - [x] Tooling...
I was debugging, and wrote the following jest test: ```js describe('utcToZonedTime', () => { const date = new Date(Date.UTC(2023, 8, 1)); test('converting to UTC has no effect', () => {...