diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 00000000000000..a17168842ab322 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,26 @@ +environment: + nodejs_version: "8" + +# Install scripts. (runs after repo cloning) +install: + # Get the latest stable version of Node.js or io.js + - ps: Install-Product node $env:nodejs_version + # install modules + - npm install + +# Configure project artifacts. +artifacts: + - path: apps\test-bundle-button\dist\test-bundle-button.json + name: SizeAuditor + type: json + +# Post-install test scripts. +test_script: + # Output useful info for debugging. + - node --version + - npm --version + # run tests + - npm test + +# Don't actually build. +build: off diff --git a/.gitignore b/.gitignore index 037b95769bc432..72fbf594661c1b 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,7 @@ temp lib lib-amd lib-es2015 +lib-commonjs coverage dist npm-debug.log @@ -113,4 +114,4 @@ gulp-cache # NPM debug logs npm-debug.log.* -package-lock.json \ No newline at end of file +package-lock.json diff --git a/common/changes/office-ui-fabric-react/v-vibr-HoverCard-IEfix_2018-06-05-17-33.json b/common/changes/office-ui-fabric-react/v-vibr-HoverCard-IEfix_2018-06-05-17-33.json new file mode 100644 index 00000000000000..258d9bf1984dca --- /dev/null +++ b/common/changes/office-ui-fabric-react/v-vibr-HoverCard-IEfix_2018-06-05-17-33.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "packageName": "office-ui-fabric-react", + "comment": "HoverCard: Removing unnecessary animation class causing a visual bug in IE browser.", + "type": "patch" + } + ], + "packageName": "office-ui-fabric-react", + "email": "v-vibr@microsoft.com" +} diff --git a/packages/office-ui-fabric-react/src/components/HoverCard/ExpandingCard.tsx b/packages/office-ui-fabric-react/src/components/HoverCard/ExpandingCard.tsx index 7652fb732e2dfb..4c75e6b8d04bb6 100644 --- a/packages/office-ui-fabric-react/src/components/HoverCard/ExpandingCard.tsx +++ b/packages/office-ui-fabric-react/src/components/HoverCard/ExpandingCard.tsx @@ -10,7 +10,7 @@ import { import { IExpandingCardProps, IExpandingCardStyles, ExpandingCardMode } from './ExpandingCard.types'; import { Callout, ICallout } from '../../Callout'; import { DirectionalHint } from '../../common/DirectionalHint'; -import { AnimationStyles, mergeStyles } from '../../Styling'; +import { mergeStyles } from '../../Styling'; import { FocusTrapZone } from '../../FocusTrapZone'; import { getStyles } from './ExpandingCard.styles'; @@ -78,10 +78,7 @@ export class ExpandingCard extends BaseComponent