This repository was archived by the owner on Dec 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ const GUIDES = [
47
47
name : 'Using elevation helpers' ,
48
48
document : '/docs-content/guides/elevation.html'
49
49
} ,
50
+ {
51
+ id : 'creating-a-custom-stepper-using-the-cdk-stepper' ,
52
+ name : 'Creating a custom stepper using the CdkStepper' ,
53
+ document : '/docs-content/guides/creating-a-custom-stepper-using-the-cdk-stepper.html'
54
+ }
50
55
] ;
51
56
52
57
@Injectable ( )
Original file line number Diff line number Diff line change
1
+ import { A11yModule } from '@angular/cdk/a11y' ;
1
2
import { DragDropModule } from '@angular/cdk/drag-drop' ;
2
3
import { ScrollingModule } from '@angular/cdk/scrolling' ;
4
+ import { CdkStepperModule } from '@angular/cdk/stepper' ;
3
5
import { CdkTableModule } from '@angular/cdk/table' ;
4
6
import { CdkTreeModule } from '@angular/cdk/tree' ;
5
- import { A11yModule } from '@angular/cdk/a11y' ;
6
7
import { NgModule } from '@angular/core' ;
7
8
import {
8
9
MatAutocompleteModule ,
@@ -45,6 +46,7 @@ import {
45
46
@NgModule ( {
46
47
exports : [
47
48
A11yModule ,
49
+ CdkStepperModule ,
48
50
CdkTableModule ,
49
51
CdkTreeModule ,
50
52
DragDropModule ,
You can’t perform that action at this time.
0 commit comments