39467 Commits

Author SHA1 Message Date
Yann Braga
065cc587c4 Merge branch 'next' into chore_docs_fix_dead_links_monorepo 2022-04-22 16:54:59 +02:00
Ian VanSchooten
a93609d090
Addon-a11y: fix axe-core import syntax for vite (#17997)
Issue: #12622

`Axe-core` exposes a commonjs module equivalent to 
```javascript
const axe = {};
// a bunch of code adding functions in axe object

module.exports = axe;
```
Storybook with builder-vite wraps axe-core dynamic import and ends up with a module containing only default export.
```javascript
// axe-core module with vite
{
  default: { run, reset, ... }
}
```

Webpack has another behavior, and ends up with a module containing default and all the named export function.
```javascript
// axe-core module with vite
{
  default: { run, reset, ... },
  run,
  reset,
  ...
}
```

But `addon-a11y` imports `axe-core` and use it directly with `axe.run()` for example, consuming the named exports.
For storybook with vite, it fails as `axe.run()` doesn't exist, whereas `axe.default.run()` exists.

## What I did

In `addon-a11y`, consume axe default export as it is always available.

## How to test

- [ ] Is this testable with Jest or Chromatic screenshots?
- [ ] Does this need a new example in the kitchen sink apps?
- [ ] Does this need an update to the documentation?

If your answer is yes to any of these, please make sure to include it in your PR.

<!--

Everybody: Please submit all PRs to the `next` branch unless they are specific to the current release. Storybook maintainers cherry-pick bug and documentation fixes into the `master` branch as part of the release process, so you shouldn't need to worry about this. For additional guidance: https://storybook.js.org/docs/react/contribute/how-to-contribute

Maintainers: Please tag your pull request with at least one of the following:
`["cleanup", "BREAKING CHANGE", "feature request", "bug", "documentation", "maintenance", "dependencies", "other"]`

-->
2022-04-22 08:43:14 -04:00
Michael Shilman
88b134c135
Merge pull request #17647 from storybookjs/feat/move-rerun-button-to-subnav
UI: Move the "Rerun interactions" button to Subnav
2022-04-21 18:01:42 +08:00
Kyle Gach
18ef57b407
Merge pull request #17944 from lhew/patch-1
documentation: Update react/storybook-testing-addon-optional-config.js.mdx
2022-04-19 08:58:13 -06:00
Leonardo Marques
172a8e8102
Update storybook-testing-addon-optional-config.3.js.mdx
As requested for this PR
2022-04-19 10:31:20 +02:00
Leonardo Marques
406950fee0
Update storybook-testing-addon-optional-config.2.js.mdx
As per requested for completion of this PR
2022-04-19 10:29:49 +02:00
Jimmy Somsanith
50f4241958 fix(#12622): addon-a11y import with vite 2022-04-18 22:24:13 +02:00
Kyle Gach
2de4b0e9a0
Merge pull request #17446 from pd4d10/patch-1
Remove invalid example link
2022-04-18 09:11:21 -06:00
Kyle Gach
e592e40a4b
Merge pull request #17452 from huyenltnguyen/docs/update
docs(addon-links): correct the import statement of LinkTo
2022-04-18 09:07:37 -06:00
Michael Shilman
96f6276daa 6.5.0-alpha.64 next.json version file 2022-04-18 10:32:07 +08:00
Michael Shilman
a942cb921c Update git head to 6.5.0-alpha.64, update yarn.lock 2022-04-18 10:28:41 +08:00
Michael Shilman
7417a230d6 v6.5.0-alpha.64 v6.5.0-alpha.64 2022-04-18 10:25:22 +08:00
Michael Shilman
8a0a6fb51a Update root, peer deps, version.ts/json to 6.5.0-alpha.64 [ci skip] 2022-04-18 10:04:38 +08:00
Michael Shilman
6ce0cc11c7 6.5.0-alpha.64 changelog 2022-04-18 10:01:01 +08:00
Michael Shilman
c59904b6ea
Merge pull request #17649 from storybookjs/fix/method-call-reporting-inconsistency
Interactions: Fix show length of object value on MethodCall
2022-04-18 09:33:05 +08:00
Michael Shilman
396c1a9c48
Merge pull request #17987 from storybookjs/react-18-import
React: Fix React 18 react-dom/client dynamic import syntax
2022-04-18 09:30:46 +08:00
Ian VanSchooten
d19fdec25d Fix React 18 react-dom/client dynamic import 2022-04-17 21:17:33 -04:00
Michael Shilman
6415d8ec47
Merge pull request #17939 from storybookjs/fix-17914-svelte-babel-v7-mode
Svelte: Fix webpack5/babelModeV7
2022-04-18 03:12:36 +08:00
Michael Shilman
0de0719db8
Merge pull request #17984 from italoteix/feat/add-interactions-to-preact-cli-template
CLI/Preact: add interactions to cli template
2022-04-17 09:11:30 +08:00
Ítalo Teixeira
10caa770b9 feat: add interactions to preact cli template 2022-04-16 16:34:20 +02:00
Michael Shilman
157f6256ba
Merge pull request #17977 from storybookjs/fix/remove-deprecated-addon-stories
Examples: Remove stories from deprecated `options`/`queryparams` addons
2022-04-16 07:51:24 +08:00
Yann Braga
d118b0350d Merge branch 'next' into fix/method-call-reporting-inconsistency 2022-04-15 18:23:56 +02:00
Yann Braga
82599bc06b fix(addon-interactions): redo object keys length 2022-04-15 18:20:38 +02:00
Yann Braga
36be97a7e3 remove stories from deprecated addons: options and queryparams 2022-04-15 14:55:21 +02:00
jonniebigodes
3e1874a82d
Merge pull request #17905 from josh-degraw/next
docs: Fix reference to essentials configuration
2022-04-14 15:06:48 +01:00
Norbert de Langen
4bdb9fa97b
Merge pull request #17963 from storybookjs/fix/versions-formatting
chore: format versions.ts file using repo config
2022-04-14 14:42:27 +02:00
Yann Braga
2fa45d815b chore: use lint command instead of eslint directly 2022-04-14 14:33:39 +02:00
Yann Braga
0bffb794c8 chore: remove prettier as dev dependency from sb cli 2022-04-14 14:33:23 +02:00
Yann Braga
0feb7bc852 chore: use lint command to format versions.ts 2022-04-14 14:28:31 +02:00
Yann Braga
a5c0866320 chore: update lockfile 2022-04-14 14:21:39 +02:00
Yann Braga
81caed5ad7 chore: format versions.ts file using repo config 2022-04-14 14:14:44 +02:00
Michael Shilman
004bfd2ad1 6.5.0-alpha.63 next.json version file 2022-04-14 17:09:54 +08:00
Michael Shilman
064e98d1a3 Update git head to 6.5.0-alpha.63, update yarn.lock 2022-04-14 16:55:32 +08:00
Michael Shilman
416f87dc71 v6.5.0-alpha.63 v6.5.0-alpha.63 2022-04-14 16:51:45 +08:00
Yann Braga
c13f591140 chore(storybook): add object inspector examples to MethodCall 2022-04-14 10:29:55 +02:00
Michael Shilman
f646372fa1 Update root, peer deps, version.ts/json to 6.5.0-alpha.63 [ci skip] 2022-04-14 16:24:34 +08:00
Yann Braga
35fffd86a7 fix(addon-interactions): respect dark mode in object inspector 2022-04-14 10:24:26 +02:00
Michael Shilman
f67213a54e 6.5.0-alpha.63 changelog 2022-04-14 16:24:17 +08:00
Michael Shilman
df622938e7 Merge branch 'next' of github.com:storybookjs/storybook into next 2022-04-14 16:16:44 +08:00
Michael Shilman
9d08374d2b 6.4.22 changelog 2022-04-14 16:16:35 +08:00
Norbert de Langen
9fd18275f1
Merge pull request #17947 from storybookjs/prebundle-without-browser
Run `prebundle` script without `browser: true` in Rollup config
2022-04-14 10:14:50 +02:00
Yann Braga
2c7a6e3d6f Merge branch 'next' into fix/method-call-reporting-inconsistency 2022-04-14 09:36:02 +02:00
Yann Braga
dd7967de83
Merge pull request #17878 from storybookjs/tech/change-ci-parallelism-bootstrap
CI: set parallelism of nx to 2
2022-04-14 09:35:26 +02:00
Norbert de Langen
4d4d52e215
Merge branch 'next' of github.com:storybookjs/storybook into next 2022-04-14 09:09:08 +02:00
Norbert de Langen
9efbad9d85
fix ref to non-existing file 2022-04-14 09:08:57 +02:00
Norbert de Langen
eab0fb47e0
Merge pull request #17956 from storybookjs/fix-export-of-bundled-theming
Theming: Re-export correct bundled file
2022-04-14 09:05:33 +02:00
Ian VanSchooten
925dad6977 Remove unnecessary lint disable 2022-04-13 17:34:26 -04:00
Ian VanSchooten
2e1b2ed3a7 Theming: point to correct bundled file from export 2022-04-13 15:48:03 -04:00
jonniebigodes
22336259d4
Merge pull request #17955 from oliviavoler/patch-3
Fix typo in Annotation section
2022-04-13 20:39:58 +01:00
Olivia Voler
c96ab6b3ea
Fix typo in Annotation section 2022-04-13 15:05:03 -04:00