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 {
118
118
export const IgxStepperOrientation = {
119
119
Horizontal : 'horizontal' ,
120
120
Vertical : 'vertical'
121
- } ;
121
+ } as const ;
122
122
export type IgxStepperOrientation = ( typeof IgxStepperOrientation ) [ keyof typeof IgxStepperOrientation ] ;
123
123
124
124
export const IgxStepType = {
125
125
Indicator : 'indicator' ,
126
126
Title : 'title' ,
127
127
Full : 'full'
128
- } ;
128
+ } as const ;
129
129
export type IgxStepType = ( typeof IgxStepType ) [ keyof typeof IgxStepType ] ;
130
130
131
131
export const IgxStepperTitlePosition = {
132
132
Bottom : 'bottom' ,
133
133
Top : 'top' ,
134
134
End : 'end' ,
135
135
Start : 'start'
136
- } ;
136
+ } as const ;
137
137
export type IgxStepperTitlePosition = ( typeof IgxStepperTitlePosition ) [ keyof typeof IgxStepperTitlePosition ] ;
138
138
139
139
export const VerticalAnimationType = {
140
140
Grow : 'grow' ,
141
141
Fade : 'fade' ,
142
142
None : 'none'
143
- } ;
143
+ } as const ;
144
144
export type VerticalAnimationType = ( typeof VerticalAnimationType ) [ keyof typeof VerticalAnimationType ] ;
145
145
146
146
// Token
You can’t perform that action at this time.
0 commit comments