From 9ea767c2db5d590f201f61f450a872ba60f768b6 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Tue, 4 Dec 2018 20:41:06 +0100 Subject: [PATCH] Run prettier:ts --- app/angular/src/demo/button.component.ts | 2 +- app/angular/src/demo/welcome.component.ts | 79 +++++++++---------- .../src/stories/all-knobs.component.ts | 11 +-- .../src/stories/custom-ng-content.stories.ts | 4 +- .../custom-cva.component.ts | 2 +- .../inheritance/base-button.component.ts | 2 +- .../inheritance/icon-button.component.ts | 2 +- .../stories/moduleMetadata/name.component.ts | 4 +- .../moduleMetadata/service.component.ts | 4 +- .../stories/moduleMetadata/token.component.ts | 4 +- 10 files changed, 57 insertions(+), 57 deletions(-) diff --git a/app/angular/src/demo/button.component.ts b/app/angular/src/demo/button.component.ts index 9ccfad39309..f3e2828cec8 100644 --- a/app/angular/src/demo/button.component.ts +++ b/app/angular/src/demo/button.component.ts @@ -3,7 +3,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'storybook-button-component', template: ` - + `, styles: [ ` diff --git a/app/angular/src/demo/welcome.component.ts b/app/angular/src/demo/welcome.component.ts index 8e1f3261991..c8348edbcec 100644 --- a/app/angular/src/demo/welcome.component.ts +++ b/app/angular/src/demo/welcome.component.ts @@ -3,46 +3,45 @@ import { Component, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'storybook-welcome-component', template: ` -
-

Welcome to storybook

-

This is a UI component dev environment for your app.

-

- We've added some basic stories inside the src/stories directory. -
- A story is a single state of one or more UI components. You can have as many stories as - you want. -
- (Basically a story is like a visual test case.) -

-

- See these sample stories for a component called - Button . -

-

- Just like that, you can add your own components as stories. -
- You can also edit those components and see changes right away. -
- (Try editing the Button stories - located at src/stories/index.js.) -

-

- Usually we create stories with smaller UI components in the app.
- Have a look at the - Writing Stories - section in our documentation. -

-

- NOTE: -
- Have a look at the .storybook/webpack.config.js - to add webpack loaders and plugins you are using in this project. -

-
+
+

Welcome to storybook

+

This is a UI component dev environment for your app.

+

+ We've added some basic stories inside the + src/stories directory.
+ A story is a single state of one or more UI components. You can have as many stories as you + want.
+ (Basically a story is like a visual test case.) +

+

+ See these sample + stories for a component + called Button . +

+

+ Just like that, you can add your own components as stories.
+ You can also edit those components and see changes right away.
+ (Try editing the Button stories located at + src/stories/index.js.) +

+

+ Usually we create stories with smaller UI components in the app.
+ Have a look at the + + Writing Stories + + section in our documentation. +

+

+ NOTE:
+ Have a look at the .storybook/webpack.config.js to add + webpack loaders and plugins you are using in this project. +

+
`, styles: [ ` diff --git a/examples/angular-cli/src/stories/all-knobs.component.ts b/examples/angular-cli/src/stories/all-knobs.component.ts index bbd55ef0efe..4b36a9dea1c 100644 --- a/examples/angular-cli/src/stories/all-knobs.component.ts +++ b/examples/angular-cli/src/stories/all-knobs.component.ts @@ -3,16 +3,17 @@ import { Component, Input, OnInit, OnChanges, SimpleChanges } from '@angular/cor @Component({ selector: 'storybook-simple-knobs-component', template: ` -
+

My name is {{ name }},

today is {{ today | date }}

I have a stock of {{ stock }} {{ fruit }}, costing $ {{ price }} each.

-

I'm out of {{ fruit }}.

Sorry.

+

I'm out of {{ fruit }}.

+

Sorry.

Also, I have:

    -
  • - {{ item }} -
  • +
  • {{ item }}

Nice to meet you!

Leave me alone!

diff --git a/examples/angular-cli/src/stories/custom-ng-content.stories.ts b/examples/angular-cli/src/stories/custom-ng-content.stories.ts index 5baa440d797..4ccc2c3e46b 100644 --- a/examples/angular-cli/src/stories/custom-ng-content.stories.ts +++ b/examples/angular-cli/src/stories/custom-ng-content.stories.ts @@ -3,7 +3,9 @@ import { storiesOf } from '@storybook/angular'; @Component({ selector: 'storybook-with-ng-content', - template: `
`, + template: ` +
+ `, }) class WithNgContentComponent {} diff --git a/examples/angular-cli/src/stories/customControlValueAccessor/custom-cva.component.ts b/examples/angular-cli/src/stories/customControlValueAccessor/custom-cva.component.ts index 48a959aa474..bdc1188fa8f 100644 --- a/examples/angular-cli/src/stories/customControlValueAccessor/custom-cva.component.ts +++ b/examples/angular-cli/src/stories/customControlValueAccessor/custom-cva.component.ts @@ -6,7 +6,7 @@ const NOOP = () => {}; @Component({ selector: 'storybook-custom-cva-component', template: ` -
{{value}}
+
{{ value }}
`, providers: [ diff --git a/examples/angular-cli/src/stories/inheritance/base-button.component.ts b/examples/angular-cli/src/stories/inheritance/base-button.component.ts index 27770069a4c..3619046fce2 100644 --- a/examples/angular-cli/src/stories/inheritance/base-button.component.ts +++ b/examples/angular-cli/src/stories/inheritance/base-button.component.ts @@ -3,7 +3,7 @@ import { Component, Input } from '@angular/core'; @Component({ selector: `storybook-base-button`, template: ` - + `, }) export class BaseButtonComponent { diff --git a/examples/angular-cli/src/stories/inheritance/icon-button.component.ts b/examples/angular-cli/src/stories/inheritance/icon-button.component.ts index eca32b1ee73..3debb422f62 100644 --- a/examples/angular-cli/src/stories/inheritance/icon-button.component.ts +++ b/examples/angular-cli/src/stories/inheritance/icon-button.component.ts @@ -4,7 +4,7 @@ import { BaseButtonComponent } from './base-button.component'; @Component({ selector: `storybook-icon-button`, template: ` - + `, }) export class IconButtonComponent extends BaseButtonComponent { diff --git a/examples/angular-cli/src/stories/moduleMetadata/name.component.ts b/examples/angular-cli/src/stories/moduleMetadata/name.component.ts index b630795714c..8d8addf21a3 100644 --- a/examples/angular-cli/src/stories/moduleMetadata/name.component.ts +++ b/examples/angular-cli/src/stories/moduleMetadata/name.component.ts @@ -2,7 +2,9 @@ import { Component, Input } from '@angular/core'; @Component({ selector: 'storybook-name', - template: `

{{ field | customPipe }}

`, + template: ` +

{{ field | customPipe }}

+ `, }) export class NameComponent { @Input() diff --git a/examples/angular-cli/src/stories/moduleMetadata/service.component.ts b/examples/angular-cli/src/stories/moduleMetadata/service.component.ts index a4b5e6c49d5..c475d44fa6d 100644 --- a/examples/angular-cli/src/stories/moduleMetadata/service.component.ts +++ b/examples/angular-cli/src/stories/moduleMetadata/service.component.ts @@ -6,9 +6,7 @@ import { DummyService } from './dummy.service'; template: `

{{ name }}:

    -
  • - {{ item }} -
  • +
  • {{ item }}
`, }) diff --git a/examples/angular-cli/src/stories/moduleMetadata/token.component.ts b/examples/angular-cli/src/stories/moduleMetadata/token.component.ts index 5cb10e89b99..ece1199e7b6 100644 --- a/examples/angular-cli/src/stories/moduleMetadata/token.component.ts +++ b/examples/angular-cli/src/stories/moduleMetadata/token.component.ts @@ -9,9 +9,7 @@ export const DEFAULT_NAME = new InjectionToken('TokenComponent.DefaultNa

{{ name }}

Items:

    -
  • - {{ item }} -
  • +
  • {{ item }}
`, })