forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request microsoft#5 from OfficeDev/master
master update
- Loading branch information
Showing
129 changed files
with
1,906 additions
and
690 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
module.exports = ['FocusZone.example1']; | ||
const pages: string[] = ['FocusZone.example1']; | ||
module.exports = pages; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
{ | ||
"extends": ["@uifabric/tslint-rules"], | ||
"rules": { | ||
"no-any": false | ||
} | ||
"rules": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,64 @@ | ||
{ | ||
"name": "@uifabric/fabric-website", | ||
"entries": [ | ||
{ | ||
"version": "6.18.4", | ||
"tag": "@uifabric/fabric-website_v6.18.4", | ||
"date": "Thu, 16 May 2019 12:21:56 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "Add versioned release notes and demo section", | ||
"author": "Kevin Coughlin <[email protected]>", | ||
"commit": "d80271e480c1ab7e986d9dd547be7f5a9dae621e" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "6.18.3", | ||
"tag": "@uifabric/fabric-website_v6.18.3", | ||
"date": "Thu, 16 May 2019 05:28:50 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "Adding mobile examples and docs for Button.", | ||
"author": "lynamemi <[email protected]>", | ||
"commit": "4382ed8bf9bc3793fe0511fdfae36a51b02f2ebb" | ||
} | ||
], | ||
"dependency": [ | ||
{ | ||
"comment": "Updating dependency \"@uifabric/file-type-icons\" from `^6.4.9` to `^6.4.10`" | ||
}, | ||
{ | ||
"comment": "Updating dependency \"office-ui-fabric-react\" from `^6.182.0` to `^6.182.1`" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "6.18.2", | ||
"tag": "@uifabric/fabric-website_v6.18.2", | ||
"date": "Wed, 15 May 2019 12:31:44 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "Add 404 page", | ||
"author": "Jordan Janzen <[email protected]>", | ||
"commit": "1a7b6c65005dab8fbcc6fe21dbaa42ed042465eb" | ||
} | ||
], | ||
"dependency": [ | ||
{ | ||
"comment": "Updating dependency \"@uifabric/example-app-base\" from `^6.20.1` to `^6.21.0`" | ||
}, | ||
{ | ||
"comment": "Updating dependency \"office-ui-fabric-react\" from `^6.181.1` to `^6.182.0`" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "6.18.1", | ||
"tag": "@uifabric/fabric-website_v6.18.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
const preset = require('@uifabric/build/just-task'); | ||
const { task, option } = preset.just; | ||
const createFlightConfigTaskFactory = require('./scripts/createFlightConfig'); | ||
const { createInternalFlightConfigTask, createPublicFlightConfigTask } = require('./scripts/createFlightConfig'); | ||
|
||
module.exports = function() { | ||
preset(); | ||
option('baseCDNUrl', { default: './dist' }); | ||
task('create-flight-config', createFlightConfigTaskFactory()); | ||
task('create-internal-flight-config', createInternalFlightConfigTask()); | ||
task('create-public-flight-config', createPublicFlightConfigTask()); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.