-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into onLoad-prop
# Conflicts: # src/ReactGoogleCharts.tsx # src/components/GoogleChartLoader.tsx
- Loading branch information
Showing
175 changed files
with
10,231 additions
and
7,297 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"packageManager": "yarn" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Checks | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
size: | ||
runs-on: ubuntu-latest | ||
name: Checking size | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
env: | ||
CI_JOB_NUMBER: 1 | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
- name: Check size | ||
uses: andresz1/size-limit-action@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[ | ||
{ | ||
"path": "dist/index.cjs", | ||
"limit": "5.9 KB", | ||
"webpack": false, | ||
"running": false | ||
}, | ||
{ | ||
"path": "dist/index.cjs", | ||
"limit": "4.7 KB", | ||
"import": "{ Chart }" | ||
}, | ||
{ | ||
"path": "dist/index.mjs", | ||
"limit": "5.7 KB", | ||
"webpack": false, | ||
"running": false | ||
}, | ||
{ | ||
"path": "dist/index.mjs", | ||
"limit": "4.5 KB", | ||
"import": "{ Chart }" | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
stories: ['../stories/*.tsx'], | ||
addons: [ | ||
'@storybook/addon-docs', | ||
'@storybook/addon-controls', | ||
'@storybook/addon-actions', | ||
], | ||
webpackFinal(config) { | ||
config.resolve.alias['react-google-charts'] = path.resolve(__dirname, '../src'); | ||
return config; | ||
}, | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { addons } from '@storybook/addons'; | ||
|
||
import { theme } from './theme'; | ||
|
||
addons.setConfig({ | ||
theme, | ||
panelPosition: 'right', | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { configureActions } from '@storybook/addon-actions'; | ||
|
||
configureActions({ | ||
depth: 5, | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { create } from '@storybook/theming'; | ||
|
||
export const theme = create({ | ||
base: 'light', | ||
brandTitle: 'react-google-charts', | ||
brandUrl: 'https://github.com/rakannimer/react-google-charts', | ||
}); |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.