diff --git a/docs/snippets/angular/add-localize-package-to-polyfills.ts.mdx b/docs/snippets/angular/add-localize-package-to-polyfills.ts.mdx new file mode 100644 index 00000000000..b7bbb8881bf --- /dev/null +++ b/docs/snippets/angular/add-localize-package-to-polyfills.ts.mdx @@ -0,0 +1,5 @@ +```ts +// src/polyfills.ts + +import '@angular/localize/init'; +``` \ No newline at end of file diff --git a/docs/snippets/angular/storybook-preview-with-angular-polyfills.js.mdx b/docs/snippets/angular/storybook-preview-with-angular-polyfills.js.mdx new file mode 100644 index 00000000000..915ab54fc98 --- /dev/null +++ b/docs/snippets/angular/storybook-preview-with-angular-polyfills.js.mdx @@ -0,0 +1,21 @@ +```js +// .storybook/preview.js + +import { setCompodocJson } from '@storybook/addon-docs/angular'; +import docJson from '../documentation.json'; + +import '../src/polyfills'; + +setCompodocJson(docJson); + +export const parameters = { + actions: { argTypesRegex: '^on[A-Z].*' }, + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/, + }, + }, + docs: { inlineStories: true }, +}; +``` \ No newline at end of file diff --git a/docs/writing-stories/decorators.md b/docs/writing-stories/decorators.md index 52bcad0f61d..bca53e186c2 100644 --- a/docs/writing-stories/decorators.md +++ b/docs/writing-stories/decorators.md @@ -38,9 +38,9 @@ Some components require a “harness” to render in a useful way. For instance, ## “Context” for mocking -Framework-specific libraries (e.g., [Styled Components](https://styled-components.com/), [Fortawesome](https://github.com/FortAwesome/vue-fontawesome) for Vue) may require additional configuration to render correctly in Storybook. +Framework-specific libraries (e.g., [Styled Components](https://styled-components.com/), [Fortawesome](https://github.com/FortAwesome/vue-fontawesome) for Vue, Angular's [localize](https://angular.io/api/localize)) may require additional configuration to render correctly in Storybook. -For example, if you're working with Styled Components and your components use a theme, add a single global decorator to [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering) to provide it. Or with Vue, extend Storybook's application and register your library: +For example, if you're working with React's Styled Components and your components use themes, add a single global decorator to [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering) to enable them. With Vue, extend Storybook's application and register your library. Or with Angular, add the package into your `polyfills.ts` and import it: @@ -54,12 +54,14 @@ For example, if you're working with Styled Components and your components use a 'vue/storybook-preview-with-hoc-component-decorator.3-component.js.mdx', 'vue/storybook-preview-with-mixin-decorator.2-mixin.js.mdx', 'vue/storybook-preview-with-mixin-decorator.3-mixin.js.mdx', + 'angular/add-localize-package-to-polyfills.ts.mdx', + 'angular/storybook-preview-with-angular-polyfills.js.mdx', ]} /> -In the example above, the values provided are hardcoded. Still, you may want to vary them, either on a per-story basis (i.e., if the values you're providing are relevant to a specific story) or in a user-controlled way (e.g., provide a theme switcher or a different set of icons). +In the example above, the values provided are hardcoded. Still, you may want to vary them, either per-story basis (i.e., if the values you're adding are relevant to a specific story) or in a user-controlled way (e.g., provide a theme switcher or a different set of icons). The second argument to a decorator function is the **story context** which in particular contains the keys: @@ -71,12 +73,12 @@ The second argument to a decorator function is the **story context** which in pa - `viewMode`- Storybook's current active window (e.g., canvas, docs).