Skip to content

Commit

Permalink
Charting (#4954)
Browse files Browse the repository at this point in the history
* Add VerticalBarChart

* Update webpack config

* Add source code to example page now that webpack config is working, add comments to interfaces

* Add change file

* Update shrinkwrap

* Revert to master

* Revert change files

* Remove change files

* Re-add charting change file

* Reset more json

* Reset common/changes to master

* Revert more conflicts?
  • Loading branch information
kkjeer authored and kenotron committed Jun 6, 2018
1 parent 6a97069 commit 0d91de6
Show file tree
Hide file tree
Showing 41 changed files with 5,162 additions and 482 deletions.
11 changes: 11 additions & 0 deletions common/changes/@uifabric/charting/charting_2018-05-22-23-27.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "@uifabric/charting",
"comment": "Add charting package with VerticalBarChart",
"type": "minor"
}
],
"packageName": "@uifabric/charting",
"email": "kakje@microsoft.com"
}
1,539 changes: 1,057 additions & 482 deletions common/config/rush/npm-shrinkwrap.json

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions packages/charting/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
*.config.js
*.nuspec
*.yml
*.test.*
.editorconfig
.gitattributes
.gitignore
.vscode
coverage
temp
images
results
*.build.log
dist/*.stats.html
dist/*.stats.json
dist/demo*.*
gulpfile.js
index.html
jsconfig.json
karma.config.js
node_modules
src/**/*
!src/**/*.types.ts
!src/**/*.Example.tsx
tsconfig.json
tsd.json
tslint.json
typings
webpack.config.js
fabric-test*
visualtests
2 changes: 2 additions & 0 deletions packages/charting/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
registry=https://registry.npmjs.org/

15 changes: 15 additions & 0 deletions packages/charting/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4322",
"webRoot": "${workspaceRoot}"
}
]
}
38 changes: 38 additions & 0 deletions packages/charting/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 2,
// When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
"editor.detectIndentation": false,
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true,
// Controls if the editor should automatically close brackets after opening them
"editor.autoClosingBrackets": false,
// Controls whether the editor should render whitespace characters
"editor.renderWhitespace": "all",
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/bower_components": true,
"**/coverage": true,
"**/*.scss.ts": true
},
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.
"search.exclude": {
"**/node_modules": true,
"**/lib": true,
"**/lib-es2015": true,
"**/lib-amd": true,
"**/dist": true,
"**/*.scss.ts": true
},
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping
"editor.wordWrapColumn": 140,
"tslint.enable": true,
"tslint.rulesDirectory": "../../common/node_modules/tslint-microsoft-contrib",
// Defines space handling after opening and before closing JSX expression braces. Requires TypeScript >= 2.0.6.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"editor.formatOnSave": true,
"typescript.tsdk": "../../common/node_modules/typescript/lib"
}
Loading

0 comments on commit 0d91de6

Please sign in to comment.