Skip to content

Commit 99b098c

Browse files
committed
feat: update story titles to include 'Components/' prefix and add welcome documentation for Angular
1 parent bb11728 commit 99b098c

File tree

11 files changed

+27
-17
lines changed

11 files changed

+27
-17
lines changed

packages/angular/stories/accordion.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class AccordionExternalActionsComponent {
3636
}
3737

3838
export default {
39-
title: 'Accordion',
39+
title: 'Components/Accordion',
4040
component: AccordionComponent,
4141
decorators: [
4242
moduleMetadata({

packages/angular/stories/dialog-service.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export class DialogFormExampleComponent {
196196
}
197197

198198
export default {
199-
title: 'Dialog Service',
199+
title: 'Components/Dialog Service',
200200
tags: ['draft'],
201201
decorators: [
202202
applicationConfig({

packages/angular/stories/forms.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ export class LoginFormComponent {
588588
}
589589

590590
export default {
591-
title: 'Forms',
591+
title: 'Components/Forms',
592592
decorators: [
593593
moduleMetadata({
594594
imports: [

packages/angular/stories/generated/accordion.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Accordion" />
3+
<Meta title="Components/Accordion" />
44

5-
# Accordion
5+
# Components/Accordion
66

77
{/*
88
This file is automatically generated from accordion.stories.ts

packages/angular/stories/generated/dialog-service.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Dialog Service" />
3+
<Meta title="Components/Dialog Service" />
44

5-
# Dialog Service
5+
# Components/Dialog Service
66

77
{/*
88
This file is automatically generated from dialog-service.stories.ts

packages/angular/stories/generated/forms.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Forms" />
3+
<Meta title="Components/Forms" />
44

5-
# Forms
5+
# Components/Forms
66

77
{/*
88
This file is automatically generated from forms.stories.ts

packages/angular/stories/generated/routing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Routing" />
3+
<Meta title="Components/Routing" />
44

5-
# Routing
5+
# Components/Routing
66

77
{/*
88
This file is automatically generated from routing.stories.ts

packages/angular/stories/generated/tooltip.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Tooltip" />
3+
<Meta title="Components/Tooltip" />
44

5-
# Tooltip
5+
# Components/Tooltip
66

77
{/*
88
This file is automatically generated from tooltip.stories.ts

packages/angular/stories/routing.stories.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { NgForOf } from '@angular/common';
22
import { Component } from '@angular/core';
33
import { RouterLink, RouterOutlet, provideRouter, withHashLocation } from '@angular/router';
44
import { type Meta, StoryFn, applicationConfig, moduleMetadata } from '@storybook/angular';
5+
import { MenuComponent } from '../src/menu/menu.component';
56
import { TabGroupComponent } from '../src/tabs/tab-group.component';
67
import { TabComponent } from '../src/tabs/tab.component';
7-
import { MenuComponent } from '../src/menu/menu.component';
88

99
@Component({
1010
selector: 'sla-dashboard',
@@ -113,7 +113,7 @@ export class RoutingComponent {
113113
}
114114

115115
export default {
116-
title: 'Routing',
116+
title: 'Components/Routing',
117117
decorators: [
118118
applicationConfig({
119119
providers: [
@@ -155,5 +155,5 @@ export default {
155155
} as Meta;
156156

157157
export const RoutingExample: StoryFn = () => ({
158-
template: '<sla-routing></sla-routing>',
158+
template: '<sla-routing></sla-routing>'
159159
});

packages/angular/stories/tooltip.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { type Meta, type StoryObj, moduleMetadata } from '@storybook/angular';
33
import { TooltipDirective } from '../src/tooltip.directive';
44

55
export default {
6-
title: 'Tooltip',
6+
title: 'Components/Tooltip',
77
decorators: [
88
moduleMetadata({
99
imports: [ButtonComponent, TooltipDirective]

0 commit comments

Comments
 (0)