You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,7 +32,7 @@ After we've extended our component class from `CdkStepper` we can now access dif
32
32
33
33
This is the HTML template of our custom stepper component:
34
34
35
-
**custom-stepper.component.html**
35
+
**custom-stepper.html**
36
36
37
37
```html
38
38
<sectionclass="container">
@@ -55,9 +55,9 @@ This is the HTML template of our custom stepper component:
55
55
</section>
56
56
```
57
57
58
-
In the `app.component.css` file we can now style the stepper however we want:
58
+
In the `app.css` file we can now style the stepper however we want:
59
59
60
-
**custom-stepper.component.css**
60
+
**custom-stepper.css**
61
61
62
62
```css
63
63
.example-container {
@@ -97,9 +97,9 @@ In the `app.component.css` file we can now style the stepper however we want:
97
97
98
98
## Using our new custom stepper component
99
99
100
-
Now we are ready to use our new custom stepper component and fill it with steps. Therefore, we can, for example, add it to our `app.component.html` and define some steps:
100
+
Now we are ready to use our new custom stepper component and fill it with steps. Therefore, we can, for example, add it to our `app.html` and define some steps:
101
101
102
-
**app.component.html**
102
+
**app.html**
103
103
104
104
```html
105
105
<app-custom-stepper>
@@ -128,7 +128,7 @@ The above example allows the user to freely navigate between all steps. The `Cdk
128
128
129
129
A simple example without using forms could look like this:
130
130
131
-
**app.component.html**
131
+
**app.html**
132
132
133
133
```html
134
134
<app-custom-stepperlinear>
@@ -142,10 +142,10 @@ A simple example without using forms could look like this:
0 commit comments