From 4fcc8500dcde1b30c2ca4744763abec6f752e024 Mon Sep 17 00:00:00 2001 From: Cliff Koh Date: Fri, 29 Jul 2016 18:08:39 -0700 Subject: [PATCH 1/2] Fix errant imports --- src/components/DetailsList/DetailsList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/DetailsList/DetailsList.tsx b/src/components/DetailsList/DetailsList.tsx index c60e249dac4485..54c980f5b4c0a0 100644 --- a/src/components/DetailsList/DetailsList.tsx +++ b/src/components/DetailsList/DetailsList.tsx @@ -11,8 +11,8 @@ import { import { DetailsHeader } from '../DetailsList/DetailsHeader'; import { DetailsRow } from '../DetailsList/DetailsRow'; import { FocusZone, FocusZoneDirection } from '../../FocusZone'; -import { GroupedList } from '../GroupedList'; -import { List } from '../List'; +import { GroupedList } from '../../GroupedList'; +import { List } from '../../List'; import { withViewport } from '../../utilities/decorators/withViewport'; import { assign } from '../../utilities/object'; import { css } from '../../utilities/css'; From 8ba7eb1899df829df7783d940e9562ccf97fbc8c Mon Sep 17 00:00:00 2001 From: Cliff Koh Date: Fri, 29 Jul 2016 18:17:49 -0700 Subject: [PATCH 2/2] Bump package.json as well --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8799b4be1ab113..6711586c79c717 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "office-ui-fabric-react", - "version": "0.36.1", + "version": "0.36.2", "description": "Reusable React components for building experiences for Office 365.", "main": "lib/index.js", "typings": "lib/index.d.ts",