Skip to content

Commit c420f5c

Browse files
committed
deleted unused methods
1 parent 1893398 commit c420f5c

2 files changed

Lines changed: 0 additions & 28 deletions

File tree

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { Injectable } from '@angular/core'
21
import { FormGroup } from '@angular/forms'
32

43
export interface WizardStep {
@@ -10,16 +9,3 @@ export interface WizardStep {
109
isDone?: boolean
1110
form?: FormGroup
1211
}
13-
14-
@Injectable()
15-
export class FormWizardState {
16-
activeStep!: WizardStep
17-
steps: WizardStep[] = []
18-
19-
init(steps: WizardStep[]): void {
20-
if (steps != null && steps.length > 0) {
21-
this.steps = steps
22-
this.activeStep = this.steps[0]
23-
}
24-
}
25-
}

projects/lib/src/models/option.model.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,3 @@ export class Option<T> {
2121
}
2222
}
2323
}
24-
25-
export class MSDropdownOption<T> extends Option<T> {
26-
constructor(
27-
public override name: string,
28-
public override label: string,
29-
public override value: T,
30-
public icon?: string,
31-
public badgeType?: BadgeType,
32-
) {
33-
super(name, label, value)
34-
}
35-
}
36-
37-
export type BadgeType = 'default' | 'danger' | 'success' | 'warning' | 'primary'

0 commit comments

Comments
 (0)