- 12 Feb, 2020 3 commits
-
-
Lyza Gardner authored
Add `save` method to `AnnotationsService`; use it in `AnnotationOmega`
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
Also add polyfill for `Promise.prototype.finally`
-
- 10 Feb, 2020 13 commits
-
-
Robert Knight authored
Bump axe-core from 3.4.1 to 3.4.2
-
Robert Knight authored
Bump codecov from 3.6.4 to 3.6.5
-
Robert Knight authored
Bump puppeteer from 2.1.0 to 2.1.1
-
Robert Knight authored
Bump @sentry/browser from 5.11.2 to 5.12.1
-
Robert Knight authored
Bump preact from 10.2.1 to 10.3.1
-
dependabot-preview[bot] authored
Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.610.0 to 2.614.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.610.0...v2.614.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.43.0 to 16.43.1. - [Release notes](https://github.com/octokit/rest.js/releases) - [Commits](https://github.com/octokit/rest.js/compare/v16.43.0...v16.43.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.18.0 to 7.18.3. - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases) - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](https://github.com/yannickcr/eslint-plugin-react/compare/v7.18.0...v7.18.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript) from 5.11.2 to 5.12.1. - [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.11.2...5.12.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [puppeteer](https://github.com/puppeteer/puppeteer) from 2.1.0 to 2.1.1. - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Commits](https://github.com/puppeteer/puppeteer/compare/v2.1.0...v2.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [codecov](https://github.com/codecov/codecov-node) from 3.6.4 to 3.6.5. - [Release notes](https://github.com/codecov/codecov-node/releases) - [Commits](https://github.com/codecov/codecov-node/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [axe-core](https://github.com/dequelabs/axe-core) from 3.4.1 to 3.4.2. - [Release notes](https://github.com/dequelabs/axe-core/releases) - [Changelog](https://github.com/dequelabs/axe-core/blob/v3.4.2/CHANGELOG.md) - [Commits](https://github.com/dequelabs/axe-core/compare/v3.4.1...v3.4.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [preact](https://github.com/preactjs/preact) from 10.2.1 to 10.3.1. - [Release notes](https://github.com/preactjs/preact/releases) - [Commits](https://github.com/preactjs/preact/compare/10.2.1...10.3.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
- 07 Feb, 2020 7 commits
-
-
Kyle Keating authored
Add `disabled` prop to the Button component
-
Kyle Keating authored
Fix a11y lint issues in menu.js
-
Robert Knight authored
Implement container to replace AngularJS's dependency injector for services (v2)
-
Robert Knight authored
Previously a heuristic based on function naming was used to determine whether `Injector` should construct objects with `new` or not. This is brittle because compiler transforms may alter function names (eg. terser removes them by default). This commit re-works the API so that the caller explicitly indicates how the object should be created (the "provider" to use). As a convenience if a function is passed it is assumed to be a class. ``` // Register a class. register("anObject", SomeClass); register("anObject", { class: SomeClass }); // Register a factory. register("anObject", { factory: makeMeAnObject }); // Register a plain value. register("anObject", { value: "foobar" }); ```
-
Robert Knight authored
This reverts commit ec63961a, reversing changes made to e0f8835c.
-
Lyza Gardner authored
Rename `annotations` -> `annotationsService` (establish service-naming pattern)
-
Lyza Danger Gardner authored
-
- 06 Feb, 2020 8 commits
-
-
Kyle Keating authored
-
Robert Knight authored
Revert "Implement container to replace AngularJS's dependency injector for services"
-
Robert Knight authored
-
Robert Knight authored
Implement container to replace AngularJS's dependency injector for services
-
Robert Knight authored
-
Robert Knight authored
As a step in the migration away from Angular, use the local dependency injector implementation to replace Angular's injection system in the creation of service objects. The constructed services are still registered with Angular for use by Angular components which depend upon them. Once all Angular components have been migrated, and uses of built-in Angular services (`$rootScope`) have been replaced, this step can be removed. The `viewFilter` function was renamed to `ViewFilter` because it relies on access to `this` and the new injector detects whether a function is a class or not based on the capitalization of the name.
-
Robert Knight authored
Implement a dependency injection / Inversion of Control container that can be used to replace Angular's dependency injection.
-
Kyle Keating authored
- Disable lint rules: "no-static-element-interactions" and "click-events-have-key-events" on the menu wrapper. It is acceptable to allow click event handling on static elements when its used to catch event propagation - Add a -1 tabindex on menu__content for lint purposes
-
- 05 Feb, 2020 2 commits
-
-
Kyle Keating authored
Improve a11y lint
-
Kyle Keating authored
- Remove unused `onClick` handler from <ul> this was redundant due to `onOpenChanged` prop and caused a lint issue. Note: there were also no previous test for this click handler in group-list-item-test.js - Add alt attribute to <img> in group-list if there is an org name, otherwise its a decorative empty string
-
- 04 Feb, 2020 6 commits
-
-
Robert Knight authored
Build CSS bundles before running Karma
-
Robert Knight authored
This is important for a11y tests which rely on having styles present. This takes about ~1.2s on my machine currently. We can reclaim that time in future by adding some caching to speed up the JS bundle build.
-
Robert Knight authored
Bump karma-browserify from 6.1.0 to 7.0.0
-
Robert Knight authored
Bump codecov from 3.6.2 to 3.6.4
-
Robert Knight authored
Bump @sentry/browser from 5.11.1 to 5.11.2
-
dependabot-preview[bot] authored
Bumps [codecov](https://github.com/codecov/codecov-node) from 3.6.2 to 3.6.4. - [Release notes](https://github.com/codecov/codecov-node/releases) - [Commits](https://github.com/codecov/codecov-node/compare/v3.6.2...v3.6.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
- 03 Feb, 2020 1 commit
-
-
Kyle Keating authored
Improve a11y testing for AutocompleteList and TagEditor
-