@storybook/ember 7.1.0-alpha.0 → 7.1.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,7 +12,7 @@ So you can develop UI components in isolation without worrying about app specifi
12
12
 
13
13
  ```sh
14
14
  cd my-ember-app
15
- npx storybook init
15
+ npx storybook@latest init
16
16
  ```
17
17
 
18
18
  For more information visit: [storybook.js.org](https://storybook.js.org)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/ember",
3
- "version": "7.1.0-alpha.0",
3
+ "version": "7.1.0-alpha.2",
4
4
  "description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
5
5
  "homepage": "https://github.com/storybookjs/storybook/tree/main/frameworks/ember",
6
6
  "bugs": {
@@ -31,12 +31,12 @@
31
31
  "prep": "../../../scripts/prepare/tsc.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@storybook/builder-webpack5": "7.1.0-alpha.0",
35
- "@storybook/core-common": "7.1.0-alpha.0",
36
- "@storybook/docs-tools": "7.1.0-alpha.0",
34
+ "@storybook/builder-webpack5": "7.1.0-alpha.2",
35
+ "@storybook/core-common": "7.1.0-alpha.2",
36
+ "@storybook/docs-tools": "7.1.0-alpha.2",
37
37
  "@storybook/global": "^5.0.0",
38
- "@storybook/preview-api": "7.1.0-alpha.0",
39
- "@storybook/types": "7.1.0-alpha.0",
38
+ "@storybook/preview-api": "7.1.0-alpha.2",
39
+ "@storybook/types": "7.1.0-alpha.2",
40
40
  "ts-dedent": "^2.0.0"
41
41
  },
42
42
  "devDependencies": {
@@ -59,5 +59,5 @@
59
59
  "access": "public"
60
60
  },
61
61
  "bundler": {},
62
- "gitHead": "8ff2938f8ac0c2d524ae653cd89251e5cd4721a4"
62
+ "gitHead": "3f0c9a6636b9e69006ffb841234cf785598e0572"
63
63
  }
@@ -2,7 +2,7 @@ import { hbs } from 'ember-cli-htmlbars';
2
2
  import { action } from '@storybook/addon-actions';
3
3
  import { linkTo } from '@storybook/addon-links';
4
4
 
5
- // More on how to set up stories at: https://storybook.js.org/docs/7.0/ember/writing-stories/introduction
5
+ // More on how to set up stories at: https://storybook.js.org/docs/ember/writing-stories/introduction
6
6
  export default {
7
7
  title: 'Example/Button',
8
8
  render: (args) => ({
@@ -12,11 +12,11 @@ export default {
12
12
  argTypes: {
13
13
  label: { control: 'text' },
14
14
  },
15
- // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/react/writing-docs/docs-page
15
+ // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/react/writing-docs/autodocs
16
16
  tags: ['autodocs'],
17
17
  };
18
18
 
19
- // More on writing stories with args: https://storybook.js.org/docs/7.0/ember/writing-stories/args
19
+ // More on writing stories with args: https://storybook.js.org/docs/ember/writing-stories/args
20
20
  export const Text = {
21
21
  args: {
22
22
  label: 'Button',