- 23 Mar, 2020 17 commits
-
-
Robert Knight authored
This reverts commit 5cb9041d.
-
Lyza Gardner authored
Add selectors for direct-linked annotation, group IDs
-
dependabot-preview[bot] authored
Bumps [prettier](https://github.com/prettier/prettier) from 1.19.1 to 2.0.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/1.19.1...2.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
Robert Knight authored
Bump @sentry/browser from 5.14.2 to 5.15.0
-
Robert Knight authored
Remove "raf" dependency
-
Robert Knight authored
Bump mocha from 7.1.0 to 7.1.1
-
dependabot-preview[bot] authored
Bumps [mocha](https://github.com/mochajs/mocha) from 7.1.0 to 7.1.1. - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v7.1.0...v7.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@babel/preset-env](https://github.com/babel/babel) from 7.8.7 to 7.9.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.8.7...v7.9.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) from 2.5.0 to 2.5.1. - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.641.0 to 2.643.0. - [Release notes](https://github.com/aws/aws-sdk-js/releases) - [Changelog](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-js/compare/v2.641.0...v2.643.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@babel/preset-react](https://github.com/babel/babel) from 7.8.3 to 7.9.1. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.8.3...v7.9.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@babel/core](https://github.com/babel/babel) from 7.8.7 to 7.9.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.8.7...v7.9.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 17.1.0 to 17.1.1. - [Release notes](https://github.com/octokit/rest.js/releases) - [Commits](https://github.com/octokit/rest.js/compare/v17.1.0...v17.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript) from 5.14.2 to 5.15.0. - [Release notes](https://github.com/getsentry/sentry-javascript/releases) - [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-javascript/compare/5.14.2...5.15.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
Lyza Gardner authored
Remove feature-flag switch: Render `AnnotationOmega` in all cases
-
Robert Knight authored
This used to have an effect when we used proxyquire for mocking. It does nothing now.
-
Robert Knight authored
requestAnimationFrame is supported natively [1] by all the browsers we support. [1] https://caniuse.com/#search=requestanimationframe
-
- 20 Mar, 2020 7 commits
-
-
Kyle Keating authored
Add keyboard navigation to MarkdownEditor to improve a11y
-
Kyle Keating authored
- `arrow left`, `arrow right`, `home` and `end` keys are all supported and modeled after https://www.w3.org/TR/wai-aria-practices/examples/toolbar/toolbar.html - Add roving tabIndex value for all toolbar elements.
-
Lyza Danger Gardner authored
This is a pre-requisite to removing the feature flag
-
Lyza Danger Gardner authored
This is part of eliminating direct access to store state, and a tiny piece of simplifying the `groups` service.
-
Robert Knight authored
Remove "invisible threads" logic
-
Robert Knight authored
Remove "extend" dependency
-
Robert Knight authored
This had been replaced with object spread or `Object.assign` apart from in one instance.
-
- 19 Mar, 2020 3 commits
-
-
Robert Knight authored
Tune virtual thread list debouncing
-
Robert Knight authored
When scrolling through a long list of annotations quickly, the sidebar could display blank space for a long period of time. This was happening because the debounced update function waited for a period of at least 20ms with no "scroll" events, and a gap of that length could take some time to appear if there was a queue of scroll events being delivered. Fix the issue by adding an upper bound of 100ms after a scroll event before recalculating the list of visible threads. Also make sure to cancel any pending updates after the `detach` method is called.
-
Robert Knight authored
This used to be required in order to run logic in the `<annotation>` component that saved new highlights to the server, in the case where the highlight's annotation card was off-screen. This is no longer required since that is now handled by the `autosave` service.
-
- 18 Mar, 2020 6 commits
-
-
Kyle Keating authored
Allow tab to submit tag
-
Robert Knight authored
Run `yarn upgrade` to fix GitHub security alerts
-
Robert Knight authored
Fix `acorn` security vulnerability warning by upgrading all packages to current compatible versions using `yarn upgrade`. After this, I also pruned some unused dependencies by running: ``` rm -rf node_modules yarn ```
-
Robert Knight authored
Add keyboard shortcuts for the Annotate/Highlight ("adder") toolbar
-
Robert Knight authored
- Add tests for multiple modifier keys - Add assertion to a test without any
-
Robert Knight authored
Trigger an error for incorrect use of `matchShortcut` by throwing an error if multiple non-modifier keys are specified.
-
- 17 Mar, 2020 7 commits
-
-
Kyle Keating authored
Add back feature from before the new tag editor; however, this will only work when the typed input matches one of the suggestions in the list to prevent adding unintentional new tags when the user simply wants to tab away.
-
Lyza Gardner authored
Remove visible text that denotes when one has `AnnotationOmega` active
-
Lyza Danger Gardner authored
-
Lyza Gardner authored
Remove some unused CSS classes and separate `annotation` styling
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
-