File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
projects/igniteui-angular/src/lib/stepper Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,29 +118,29 @@ export interface IStepChangedEventArgs extends IBaseEventArgs {
118118export const IgxStepperOrientation = {
119119 Horizontal : 'horizontal' ,
120120 Vertical : 'vertical'
121- } ;
121+ } as const ;
122122export type IgxStepperOrientation = ( typeof IgxStepperOrientation ) [ keyof typeof IgxStepperOrientation ] ;
123123
124124export const IgxStepType = {
125125 Indicator : 'indicator' ,
126126 Title : 'title' ,
127127 Full : 'full'
128- } ;
128+ } as const ;
129129export type IgxStepType = ( typeof IgxStepType ) [ keyof typeof IgxStepType ] ;
130130
131131export const IgxStepperTitlePosition = {
132132 Bottom : 'bottom' ,
133133 Top : 'top' ,
134134 End : 'end' ,
135135 Start : 'start'
136- } ;
136+ } as const ;
137137export type IgxStepperTitlePosition = ( typeof IgxStepperTitlePosition ) [ keyof typeof IgxStepperTitlePosition ] ;
138138
139139export const VerticalAnimationType = {
140140 Grow : 'grow' ,
141141 Fade : 'fade' ,
142142 None : 'none'
143- } ;
143+ } as const ;
144144export type VerticalAnimationType = ( typeof VerticalAnimationType ) [ keyof typeof VerticalAnimationType ] ;
145145
146146// Token
You can’t perform that action at this time.
0 commit comments