Skip to content

Commit

Permalink
Merge pull request #10407 from IgniteUI/mevtimov/fix-10406-master
Browse files Browse the repository at this point in the history
IgxStepper string enums
  • Loading branch information
ChronosSF authored Nov 2, 2021
2 parents 5e6892b + 7a4a462 commit c8057f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions projects/igniteui-angular/src/lib/stepper/stepper.common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,29 +118,29 @@ export interface IStepChangedEventArgs extends IBaseEventArgs {
export const IgxStepperOrientation = {
Horizontal: 'horizontal',
Vertical: 'vertical'
};
} as const;
export type IgxStepperOrientation = (typeof IgxStepperOrientation)[keyof typeof IgxStepperOrientation];

export const IgxStepType = {
Indicator: 'indicator',
Title: 'title',
Full: 'full'
};
} as const;
export type IgxStepType = (typeof IgxStepType)[keyof typeof IgxStepType];

export const IgxStepperTitlePosition = {
Bottom: 'bottom',
Top: 'top',
End: 'end',
Start: 'start'
};
} as const;
export type IgxStepperTitlePosition = (typeof IgxStepperTitlePosition)[keyof typeof IgxStepperTitlePosition];

export const VerticalAnimationType = {
Grow: 'grow',
Fade: 'fade',
None: 'none'
};
} as const;
export type VerticalAnimationType = (typeof VerticalAnimationType)[keyof typeof VerticalAnimationType];

// Token
Expand Down

0 comments on commit c8057f9

Please sign in to comment.