@storybook/ember 7.6.0-beta.2 → 7.6.0
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 +2 -2
- package/package.json +6 -6
- package/template/cli/Button.stories.js +3 -3
package/README.md
CHANGED
@@ -24,8 +24,8 @@ You can also build a [static version](https://storybook.js.org/docs/ember/sharin
|
|
24
24
|
|
25
25
|
## Docs
|
26
26
|
|
27
|
-
- [Basics](https://storybook.js.org/docs/ember/get-started
|
28
|
-
- [Configurations](https://storybook.js.org/docs/ember/configure
|
27
|
+
- [Basics](https://storybook.js.org/docs/ember/get-started)
|
28
|
+
- [Configurations](https://storybook.js.org/docs/ember/configure)
|
29
29
|
- [Addons](https://storybook.js.org/docs/ember/configure/storybook-addons)
|
30
30
|
|
31
31
|
## Working with polyfills
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/ember",
|
3
|
-
"version": "7.6.0
|
3
|
+
"version": "7.6.0",
|
4
4
|
"description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
|
5
5
|
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/frameworks/ember",
|
6
6
|
"bugs": {
|
@@ -32,12 +32,12 @@
|
|
32
32
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/tsc.ts"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
|
-
"@storybook/builder-webpack5": "7.6.0
|
36
|
-
"@storybook/core-common": "7.6.0
|
37
|
-
"@storybook/docs-tools": "7.6.0
|
35
|
+
"@storybook/builder-webpack5": "7.6.0",
|
36
|
+
"@storybook/core-common": "7.6.0",
|
37
|
+
"@storybook/docs-tools": "7.6.0",
|
38
38
|
"@storybook/global": "^5.0.0",
|
39
|
-
"@storybook/preview-api": "7.6.0
|
40
|
-
"@storybook/types": "7.6.0
|
39
|
+
"@storybook/preview-api": "7.6.0",
|
40
|
+
"@storybook/types": "7.6.0",
|
41
41
|
"ts-dedent": "^2.0.0"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
@@ -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/
|
5
|
+
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories
|
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/
|
15
|
+
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs
|
16
16
|
tags: ['autodocs'],
|
17
17
|
};
|
18
18
|
|
19
|
-
// More on writing stories with args: https://storybook.js.org/docs/
|
19
|
+
// More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
|
20
20
|
export const Text = {
|
21
21
|
args: {
|
22
22
|
label: 'Button',
|