Skip to content

Commit 98fa9f7

Browse files
authored
Merge pull request #16 from Microsoft/office-ui-fabric-react-6.73.0-upgrade
Upgrade office-ui-fabric-react to 6.73.0
2 parents 24aeeec + 8319aff commit 98fa9f7

25 files changed

+204
-79
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"messagebar",
1717
"nrwl",
1818
"renderprop",
19+
"scrollable",
1920
"submenu",
2021
"uifabric",
2122
"unmount",

libs/fabric/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"@angular/core": "^6.1.0",
7676
"@angular/platform-browser-dynamic": "^6.1.0",
7777
"@angular/platform-browser": "^6.1.0",
78-
"office-ui-fabric-react": "6.43.0",
78+
"office-ui-fabric-react": "6.73.0",
7979
"react-dom": "^16.4.1",
8080
"react": "^16.4.1"
8181
}

libs/fabric/src/lib/components/button/action-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

libs/fabric/src/lib/components/button/base-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export abstract class FabBaseButtonComponent extends ReactWrapperComponent<IButt
4949
@Input()
5050
secondaryText?: IButtonProps['secondaryText'];
5151
@Input()
52-
toggled?: IButtonProps['toggled'];
52+
toggled?: IButtonProps['toggle'];
5353
@Input()
5454
data?: IButtonProps['data'];
5555
@Input()

libs/fabric/src/lib/components/button/command-bar-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

libs/fabric/src/lib/components/button/compound-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

libs/fabric/src/lib/components/button/default-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

libs/fabric/src/lib/components/button/icon-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

libs/fabric/src/lib/components/button/messagebar-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

libs/fabric/src/lib/components/button/primary-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { FabBaseButtonComponent } from './base-button.component';
3131
[splitButtonAriaLabel]="splitButtonAriaLabel"
3232
[menuAs]="menuAs"
3333
[secondaryText]="secondaryText"
34-
[toggled]="toggled"
34+
[toggle]="toggle"
3535
[data]="data"
3636
[getClassNames]="getClassNames"
3737
[getSplitButtonClassNames]="getSplitButtonClassNames"

0 commit comments

Comments
 (0)