Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/app/shared/guide-items/guide-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const GUIDES: GuideItem[] = [
id: 'creating-a-custom-stepper-using-the-cdk-stepper',
name: 'Custom stepper using the CdkStepper',
document: '/docs-content/guides/creating-a-custom-stepper-using-the-cdk-stepper.md.html',
overview: 'Create a custom stepper components using Angular CDK.',
overview: 'Create a custom stepper component using Angular CDK.',
},
{
id: 'using-component-harnesses',
Expand Down
6 changes: 3 additions & 3 deletions guides/creating-a-custom-stepper-using-the-cdk-stepper.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Creating a custom stepper using the CDK stepper

The [CDK stepper](https://material.angular.dev/cdk/stepper/overview) allows to build a custom stepper which you can completely style yourself without any specific Material Design styling.
The [CDK stepper](https://material.angular.dev/cdk/stepper/overview) allows you to build a custom stepper which you can completely style yourself without any specific Material Design styling.

In this guide, we'll learn how we can build our own custom stepper using the CDK stepper. Here is what we'll build by the end of this guide:
In this guide, we'll learn how to build our own custom stepper using the CDK stepper. Here is what we'll build by the end of this guide:

<!-- example(cdk-custom-stepper-without-form) -->

Expand Down Expand Up @@ -126,7 +126,7 @@ If you want to iterate over your steps and use your own custom component you can

The above example allows the user to freely navigate between all steps. The `CdkStepper` additionally provides the linear mode which requires the user to complete previous steps before proceeding.

A simple example without using forms could look this way:
A simple example without using forms could look like this:

**app.component.html**

Expand Down
Loading