File tree Expand file tree Collapse file tree 3 files changed +25
-7
lines changed
src/controls/ProgressStepsIndicator Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { IReadonlyTheme } from '@microsoft/sp-component-base';
3
3
import { IStep } from './IStep' ;
4
4
5
5
export interface IProgressStepsIndicatorProps {
6
- steps ? :IStep [ ] ;
6
+ steps :IStep [ ] ;
7
7
currentStep ?:number ;
8
8
themeVariant ?: IReadonlyTheme | undefined ;
9
9
}
Original file line number Diff line number Diff line change @@ -3,12 +3,22 @@ import * as React from 'react';
3
3
import * as strings from 'ControlStrings' ;
4
4
import {
5
5
Customizer ,
6
+ } from 'office-ui-fabric-react/lib/Utilities' ;
7
+
8
+ import {
9
+ Stack ,
10
+ } from 'office-ui-fabric-react/lib/Stack' ;
11
+ import {
6
12
Icon ,
13
+ } from 'office-ui-fabric-react/lib/Icon' ;
14
+
15
+ import {
7
16
Label ,
8
- MessageBar ,
17
+ } from 'office-ui-fabric-react/lib/Label' ;
18
+ import {
9
19
MessageBarType ,
10
- Stack ,
11
- } from 'office-ui-fabric-react' ;
20
+ MessageBar ,
21
+ } from 'office-ui-fabric-react/lib/MessageBar ' ;
12
22
13
23
import { IProgressStepsIndicatorProps } from './IProgressStepsIndicatorProps' ;
14
24
import {
Original file line number Diff line number Diff line change 1
1
/* eslint-disable @typescript-eslint/explicit-function-return-type */
2
+ /* eslint-disable @typescript-eslint/explicit-function-return-type */
2
3
import {
3
4
ILabelStyles ,
5
+
6
+ } from 'office-ui-fabric-react/lib/Label' ;
7
+ import {
4
8
IStackStyles ,
5
- IStyle ,
6
- mergeStyleSets ,
7
- } from 'office-ui-fabric-react' ;
9
+
10
+ } from 'office-ui-fabric-react/lib/Stack' ;
11
+
12
+ import {
13
+ IStyle , mergeStyleSets ,
14
+
15
+ } from 'office-ui-fabric-react/lib/Styling' ;
8
16
9
17
import { IReadonlyTheme } from '@microsoft/sp-component-base' ;
10
18
You can’t perform that action at this time.
0 commit comments