mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:41:21 +08:00
refactor(angular): rename Basics / Component with / ...
to Basics / Component / With ...
This commit is contained in:
parent
e9d7b0036b
commit
ddac2cf61b
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / Enum Types Basic 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Enum Types Basic 1`] = `
|
||||
<storybook-wrapper>
|
||||
<app-enums
|
||||
ng-reflect-aliased-union-type="Type Alias 1"
|
||||
|
@ -7,7 +7,7 @@ import {
|
||||
} from './enums.component';
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / Enum Types',
|
||||
title: 'Basics / Component / With Enum Types',
|
||||
component: EnumsComponent,
|
||||
} as Meta;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / Inheritance base button 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Inheritance base button 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-base-button
|
||||
ng-reflect-label="this is label"
|
||||
@ -12,7 +12,7 @@ exports[`Storyshots Basics / Component with / Inheritance base button 1`] = `
|
||||
</storybook-wrapper>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Basics / Component with / Inheritance icon button 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Inheritance icon button 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-icon-button
|
||||
ng-reflect-icon="this is icon"
|
||||
|
@ -2,7 +2,7 @@ import { IconButtonComponent } from './icon-button.component';
|
||||
import { BaseButtonComponent } from './base-button.component';
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / Inheritance',
|
||||
title: 'Basics / Component / With Inheritance',
|
||||
};
|
||||
|
||||
export const IconButton = () => ({
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / ng-content Default 1`] = `
|
||||
exports[`Storyshots Basics / Component / With ng-content Default 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-with-ng-content>
|
||||
<div
|
||||
@ -14,7 +14,7 @@ exports[`Storyshots Basics / Component with / ng-content Default 1`] = `
|
||||
</storybook-wrapper>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Basics / Component with / ng-content With Dynamic Content And Args 1`] = `
|
||||
exports[`Storyshots Basics / Component / With ng-content With Dynamic Content And Args 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-with-ng-content>
|
||||
<div
|
||||
|
@ -9,7 +9,7 @@ import { Story, Meta } from '@storybook/angular/types-6-0';
|
||||
class WithNgContentComponent {}
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / ng-content',
|
||||
title: 'Basics / Component / With ng-content',
|
||||
component: WithNgContentComponent,
|
||||
} as Meta;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / OnPush strategy Class-specified component with OnPush and Args 1`] = `
|
||||
exports[`Storyshots Basics / Component / With OnPush strategy Class-specified component with OnPush and Args 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-on-push-box
|
||||
ng-reflect-bg-color="#FFF000"
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story } from '@storybook/angular';
|
||||
import { OnPushBoxComponent } from './on-push-box.component';
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / OnPush strategy',
|
||||
title: 'Basics / Component / With OnPush strategy',
|
||||
component: OnPushBoxComponent,
|
||||
argTypes: {
|
||||
word: { control: 'text' },
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / Pipes Simple 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Pipes Simple 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-with-pipe
|
||||
ng-reflect-field="foobar"
|
||||
@ -12,7 +12,7 @@ exports[`Storyshots Basics / Component with / Pipes Simple 1`] = `
|
||||
</storybook-wrapper>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Basics / Component with / Pipes With args 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Pipes With args 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-with-pipe
|
||||
ng-reflect-field="Foo Bar"
|
||||
|
@ -4,7 +4,7 @@ import { CustomPipePipe } from './custom.pipe';
|
||||
import { WithPipeComponent } from './with-pipe.component';
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / Pipes',
|
||||
title: 'Basics / Component / With Pipes',
|
||||
component: WithPipeComponent,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / Provider inputs and inject dependencies 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Provider inputs and inject dependencies 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-di-component
|
||||
ng-reflect-title="Component dependencies"
|
||||
@ -29,7 +29,7 @@ exports[`Storyshots Basics / Component with / Provider inputs and inject depende
|
||||
</storybook-wrapper>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Basics / Component with / Provider inputs and inject dependencies with args 1`] = `
|
||||
exports[`Storyshots Basics / Component / With Provider inputs and inject dependencies with args 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-di-component
|
||||
ng-reflect-title="Component dependencies"
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { DiComponent } from './di.component';
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / Provider',
|
||||
title: 'Basics / Component / With Provider',
|
||||
component: DiComponent,
|
||||
};
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Basics / Component with / StyleUrls Component with styles 1`] = `
|
||||
exports[`Storyshots Basics / Component / With StyleUrls Component with styles 1`] = `
|
||||
<storybook-wrapper>
|
||||
<storybook-styled-component>
|
||||
<div>
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { StyledComponent } from './styled.component';
|
||||
|
||||
export default {
|
||||
title: 'Basics / Component with / StyleUrls',
|
||||
title: 'Basics / Component / With StyleUrls',
|
||||
component: StyledComponent,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user