Skip to content
This repository has been archived by the owner on Dec 28, 2018. It is now read-only.

[DO NOT MERGE] feat(GUItoolkit): introduce office-ui-fabric-react #818

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"express-session": "^1.14.1",
"mkdirp": "^0.5.1",
"moment": "^2.15.1",
"office-ui-fabric-react": "^0.57.0",
"option-t": "^3.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
Expand Down
3 changes: 3 additions & 0 deletions src/client/settings/view/ConnectSettingWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

import * as React from 'react';

import { Button } from 'office-ui-fabric-react/lib/Button';

import {ConnectionActionCreator} from '../intent/ConnectionSettingIntent';
import {ConnectionValue} from '../domain/value/ConnectionSettings';
import {ConnectionSettingViewModel} from '../viewmodel/ConnectionStore';
Expand Down Expand Up @@ -194,6 +196,7 @@ export class ConnectSettingWindow extends React.Component<Props, void> {
disabled={isConnecting || !canConnect}>
Connect
</button>
<Button>I am a button.</Button>
</div>
</div>
</form>
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"pretty": true,
"preserveConstEnums": true,
"removeComments": false,
"skipLibCheck": true, // Avoid the compile error with office-ui-fabric-react (#818)
"sourceMap": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": false,
Expand Down