From 0337a6445af0ace3c8ef2aa7cea7532da9b252f5 Mon Sep 17 00:00:00 2001 From: ThibaudAv Date: Tue, 9 Feb 2021 18:59:45 +0100 Subject: [PATCH] chore(angular): add README in each stories part In order to try to keep the examples clean --- examples/angular-cli/.storybook/preview.ts | 2 +- examples/angular-cli/src/stories/addons/README.stories.mdx | 7 +++++++ examples/angular-cli/src/stories/basics/README.stories.mdx | 7 +++++++ examples/angular-cli/src/stories/core/README.stories.mdx | 7 +++++++ .../__snapshots__/all-parameters.stories.storyshot | 5 ++++- examples/angular-cli/src/stories/legacy/README.stories.mdx | 7 +++++++ 6 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 examples/angular-cli/src/stories/addons/README.stories.mdx create mode 100644 examples/angular-cli/src/stories/basics/README.stories.mdx create mode 100644 examples/angular-cli/src/stories/core/README.stories.mdx create mode 100644 examples/angular-cli/src/stories/legacy/README.stories.mdx diff --git a/examples/angular-cli/.storybook/preview.ts b/examples/angular-cli/.storybook/preview.ts index 91e0b46629b..2920464a8cf 100644 --- a/examples/angular-cli/.storybook/preview.ts +++ b/examples/angular-cli/.storybook/preview.ts @@ -24,7 +24,7 @@ addParameters({ }, options: { storySort: { - order: ['Welcome'], + order: ['Welcome', 'Core ', 'Addons ', 'Basics '], }, }, }); diff --git a/examples/angular-cli/src/stories/addons/README.stories.mdx b/examples/angular-cli/src/stories/addons/README.stories.mdx new file mode 100644 index 00000000000..d263972ded9 --- /dev/null +++ b/examples/angular-cli/src/stories/addons/README.stories.mdx @@ -0,0 +1,7 @@ +import { Meta } from '@storybook/addon-docs/blocks'; + + + +# Examples for Storybook addons + +These examples can be used to check the correct operation of addons requiring a particular configuration for angular diff --git a/examples/angular-cli/src/stories/basics/README.stories.mdx b/examples/angular-cli/src/stories/basics/README.stories.mdx new file mode 100644 index 00000000000..cdf4de76ce3 --- /dev/null +++ b/examples/angular-cli/src/stories/basics/README.stories.mdx @@ -0,0 +1,7 @@ +import { Meta } from '@storybook/addon-docs/blocks'; + + + +# Examples for Angular features + +These examples serve to highlight the right Storybook operation for basics Angular features diff --git a/examples/angular-cli/src/stories/core/README.stories.mdx b/examples/angular-cli/src/stories/core/README.stories.mdx new file mode 100644 index 00000000000..ce54dc9675b --- /dev/null +++ b/examples/angular-cli/src/stories/core/README.stories.mdx @@ -0,0 +1,7 @@ +import { Meta } from '@storybook/addon-docs/blocks'; + + + +# Examples for Storybook native features + +These examples highlight Storybook's native functionality. It does not require any special addon diff --git a/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot b/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot index 9ecd1ef056d..c03f44bc288 100644 --- a/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot +++ b/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot @@ -18,7 +18,10 @@ exports[`Storyshots Core / Parameters / All parameters All parameters passed to "options": { "storySort": { "order": [ - "Welcome" + "Welcome", + "Core ", + "Addons ", + "Basics " ] } }, diff --git a/examples/angular-cli/src/stories/legacy/README.stories.mdx b/examples/angular-cli/src/stories/legacy/README.stories.mdx new file mode 100644 index 00000000000..7b9ff60ee5f --- /dev/null +++ b/examples/angular-cli/src/stories/legacy/README.stories.mdx @@ -0,0 +1,7 @@ +import { Meta } from '@storybook/addon-docs/blocks'; + + + +# Legacy examples + +Example of sotry still supported by storybook but no longer recommended or deprecated