diff --git a/common/changes/office-ui-fabric-react/v-vibr-TeachingBubleContent_2018-12-04-02-57.json b/common/changes/office-ui-fabric-react/v-vibr-TeachingBubleContent_2018-12-04-02-57.json new file mode 100644 index 00000000000000..27c75dab1bd0a6 --- /dev/null +++ b/common/changes/office-ui-fabric-react/v-vibr-TeachingBubleContent_2018-12-04-02-57.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "packageName": "office-ui-fabric-react", + "comment": "TeachingBubble: add customizer scope to TeachingBubbleContent to allow using it individually.", + "type": "patch" + } + ], + "packageName": "office-ui-fabric-react", + "email": "v-vibr@microsoft.com" +} \ No newline at end of file diff --git a/packages/office-ui-fabric-react/src/components/TeachingBubble/TeachingBubbleContent.ts b/packages/office-ui-fabric-react/src/components/TeachingBubble/TeachingBubbleContent.ts index bbf6b117ef4b10..0dd364c7341a63 100644 --- a/packages/office-ui-fabric-react/src/components/TeachingBubble/TeachingBubbleContent.ts +++ b/packages/office-ui-fabric-react/src/components/TeachingBubble/TeachingBubbleContent.ts @@ -5,5 +5,7 @@ import { getStyles } from './TeachingBubble.styles'; export const TeachingBubbleContent = styled( TeachingBubbleContentBase, - getStyles + getStyles, + undefined, + { scope: 'TeachingBubbleContent' } );