23 Commits

Author SHA1 Message Date
Michael Shilman
a58a785be2 Merge branch 'future/base' into future-hybrid-stories-index 2022-05-05 20:37:26 +08:00
Jimmy Somsanith
50f4241958 fix(#12622): addon-a11y import with vite 2022-04-18 22:24:13 +02:00
Benjamin Kindle
b5bddca8e4 Lazy load axe-core only when running tests 2021-10-26 20:19:11 -04:00
Michael Shilman
1ce059c5bd Merge branch 'next' into lazy-load-docs 2021-10-21 13:24:45 +08:00
Tom Coleman
5d6d413609
Update addons/a11y/src/a11yRunner.ts
Co-authored-by: Michael Shilman <shilman@users.noreply.github.com>
2021-10-20 10:00:25 +11:00
Tom Coleman
7a8466011c Revert "Revert "Fix addon-a11y to use loadStory""
This reverts commit 0cf9d0a682c806efe8e0807cb58699596ce04703.
2021-10-19 16:56:50 +11:00
Tom Coleman
0cf9d0a682 Revert "Fix addon-a11y to use loadStory"
This reverts commit c2d67be1859f40c7f49ae0d46d3436329b1761c7.
2021-10-19 16:56:00 +11:00
Tom Coleman
94a7049a78 Fix addon-a11y to use loadStory 2021-10-19 16:50:10 +11:00
Tom Coleman
c2d67be185 Fix addon-a11y to use loadStory 2021-10-19 16:48:55 +11:00
Kaelig Deloumeau-Prigent
cbc2388412
[addon-a11y] Fix context type passed to axe.run 2021-09-22 10:45:31 -07:00
Ian VanSchooten
14f1c94102 Use named import for addons 2021-06-09 13:00:06 -04:00
Ian VanSchooten
f3a44f0c96 Do not try to named import from global 2021-05-25 15:59:46 -04:00
Eirik Sletteberg
841a55bd68 Don't shadow the window global variable
This snippet:

```
import { window } from 'global';
```

will let you mock window variables in Jest tests.
However, it breaks hot module reloading in Vite,
because Vite injects code snippets in top of every
file:

```
window.STUFF = 'Vite injected some HMR code here';
import { window } from 'global';
// this fails: Uncaught ReferenceError: Cannot access 'window' before initialization
```

The simple solution is to rename `window` when importing it:

```
import { window as globalWindow } from 'global';
globalWindow.alert('hello world');
```

The code works like before, but Vite will be able to
inject its code snippet without interfering with the
rest of the code.
2021-04-04 18:36:16 +02:00
Adam Dierkens
6dd78e02cf Update the axe version in addon-a11y 2020-08-19 14:54:45 -07:00
tooppaaa
ec047c25c1 Addon-A11y: fix manual run & timeline 2020-08-13 23:23:54 +02:00
Tom Coleman
a60be90e1f Use fromId rather than accessing internal state of the store.
Fixes #11489
2020-07-13 14:30:28 +10:00
Clément Dungler
30220c2c85 fix build 2020-04-19 18:45:17 +02:00
Clément Dungler
4547b366f1 feedbacks and fixes 2020-04-19 18:21:38 +02:00
Clément Dungler
748503ad69 feedback and fixes 2020-04-18 00:23:35 +02:00
Clément Dungler
d386ca7b51 refactor(a11y): use channel to highlight elements in preview 2020-04-17 11:26:36 +02:00
Clément Dungler
d7fd57bfe9 fix: default a11y parameters 2020-04-15 19:23:48 +02:00
Clément Dungler
86d9e3b0e3 cleanup migration 2020-04-13 23:02:30 +02:00
Clément Dungler
277c801eba feat(A11y): remove decorator in favor of configuration 2020-04-11 00:02:50 +02:00