Run prettier:ts

This commit is contained in:
Hypnosphi 2018-12-04 20:41:06 +01:00
parent f34bf30c66
commit 9ea767c2db
10 changed files with 57 additions and 57 deletions

View File

@ -3,7 +3,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'storybook-button-component',
template: `
<button (click)="onClick.emit($event);">{{ text }}</button>
<button (click)="onClick.emit($event)">{{ text }}</button>
`,
styles: [
`

View File

@ -3,46 +3,45 @@ import { Component, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'storybook-welcome-component',
template: `
<main>
<h1>Welcome to storybook</h1>
<p>This is a UI component dev environment for your app.</p>
<p>
We've added some basic stories inside the <span class="inline-code">src/stories</span> directory.
<br/>
A story is a single state of one or more UI components. You can have as many stories as
you want.
<br/>
(Basically a story is like a visual test case.)
</p>
<p>
See these sample <a (click)="showApp.emit($event);" role="button" tabIndex="0">stories</a> for a component called
<span class="inline-code">Button</span> .
</p>
<p>
Just like that, you can add your own components as stories.
<br />
You can also edit those components and see changes right away.
<br />
(Try editing the <span class="inline-code">Button</span> stories
located at <span class="inline-code">src/stories/index.js</span>.)
</p>
<p>
Usually we create stories with smaller UI components in the app.<br />
Have a look at the <a
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
rel="noopener noreferrer"
>
Writing Stories
</a> section in our documentation.
</p>
<p class="note">
<b>NOTE:</b>
<br />
Have a look at the <span class="inline-code">.storybook/webpack.config.js</span>
to add webpack loaders and plugins you are using in this project.
</p>
</main>
<main>
<h1>Welcome to storybook</h1>
<p>This is a UI component dev environment for your app.</p>
<p>
We've added some basic stories inside the
<span class="inline-code">src/stories</span> directory. <br />
A story is a single state of one or more UI components. You can have as many stories as you
want. <br />
(Basically a story is like a visual test case.)
</p>
<p>
See these sample
<a (click)="showApp.emit($event)" role="button" tabIndex="0">stories</a> for a component
called <span class="inline-code">Button</span> .
</p>
<p>
Just like that, you can add your own components as stories. <br />
You can also edit those components and see changes right away. <br />
(Try editing the <span class="inline-code">Button</span> stories located at
<span class="inline-code">src/stories/index.js</span>.)
</p>
<p>
Usually we create stories with smaller UI components in the app.<br />
Have a look at the
<a
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
rel="noopener noreferrer"
>
Writing Stories
</a>
section in our documentation.
</p>
<p class="note">
<b>NOTE:</b> <br />
Have a look at the <span class="inline-code">.storybook/webpack.config.js</span> to add
webpack loaders and plugins you are using in this project.
</p>
</main>
`,
styles: [
`

View File

@ -3,16 +3,17 @@ import { Component, Input, OnInit, OnChanges, SimpleChanges } from '@angular/cor
@Component({
selector: 'storybook-simple-knobs-component',
template: `
<div [ngStyle]="{ 'border': '2px dotted ' + border, 'padding.px': '8 22', 'border-radius.px': '8'}">
<div
[ngStyle]="{ border: '2px dotted ' + border, 'padding.px': '8 22', 'border-radius.px': '8' }"
>
<h1>My name is {{ name }},</h1>
<h3>today is {{ today | date }}</h3>
<p *ngIf="stock">I have a stock of {{ stock }} {{ fruit }}, costing $ {{ price }} each.</p>
<p *ngIf="!stock">I'm out of {{ fruit }}.</p> <p *ngIf="stock && nice">Sorry.</p>
<p *ngIf="!stock">I'm out of {{ fruit }}.</p>
<p *ngIf="stock && nice">Sorry.</p>
<p>Also, I have:</p>
<ul>
<li *ngFor="let item of items">
{{ item }}
</li>
<li *ngFor="let item of items">{{ item }}</li>
</ul>
<p *ngIf="nice">Nice to meet you!</p>
<p *ngIf="!nice">Leave me alone!</p>

View File

@ -3,7 +3,9 @@ import { storiesOf } from '@storybook/angular';
@Component({
selector: 'storybook-with-ng-content',
template: `<div style="color: #1e88e5;"><ng-content></ng-content></div>`,
template: `
<div style="color: #1e88e5;"><ng-content></ng-content></div>
`,
})
class WithNgContentComponent {}

View File

@ -6,7 +6,7 @@ const NOOP = () => {};
@Component({
selector: 'storybook-custom-cva-component',
template: `
<div>{{value}}</div>
<div>{{ value }}</div>
<input type="text" [(ngModel)]="value" />
`,
providers: [

View File

@ -3,7 +3,7 @@ import { Component, Input } from '@angular/core';
@Component({
selector: `storybook-base-button`,
template: `
<button>{{label}}</button>
<button>{{ label }}</button>
`,
})
export class BaseButtonComponent {

View File

@ -4,7 +4,7 @@ import { BaseButtonComponent } from './base-button.component';
@Component({
selector: `storybook-icon-button`,
template: `
<button>{{label}} - {{icon}}</button>
<button>{{ label }} - {{ icon }}</button>
`,
})
export class IconButtonComponent extends BaseButtonComponent {

View File

@ -2,7 +2,9 @@ import { Component, Input } from '@angular/core';
@Component({
selector: 'storybook-name',
template: `<h1>{{ field | customPipe }}</h1>`,
template: `
<h1>{{ field | customPipe }}</h1>
`,
})
export class NameComponent {
@Input()

View File

@ -6,9 +6,7 @@ import { DummyService } from './dummy.service';
template: `
<p>{{ name }}:</p>
<ul>
<li *ngFor="let item of items">
{{ item }}
</li>
<li *ngFor="let item of items">{{ item }}</li>
</ul>
`,
})

View File

@ -9,9 +9,7 @@ export const DEFAULT_NAME = new InjectionToken<string>('TokenComponent.DefaultNa
<h3>{{ name }}</h3>
<p>Items:</p>
<ul>
<li *ngFor="let item of items">
{{ item }}
</li>
<li *ngFor="let item of items">{{ item }}</li>
</ul>
`,
})