-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Integrate microsoft/monosize in react-charting library for Are…
…aChart and VerticalBarChart (#30489)
- Loading branch information
1 parent
d9a7739
commit b3c2fa6
Showing
5 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@fluentui-react-charting-0091dd21-21f9-4537-8fd9-fbfee2e292e7.json
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 @@ | ||
{ | ||
"type": "none", | ||
"comment": "chore: Integrate microsoft/monosize into react-charting for AreaChart and VerticalBarChart", | ||
"packageName": "@fluentui/react-charting", | ||
"email": "[email protected]", | ||
"dependentChangeType": "none" | ||
} |
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,9 @@ | ||
import { AreaChart } from '@fluentui/react-charting'; | ||
|
||
console.log(AreaChart); | ||
// "console.log()" is the easiest way to prevent tree-shaking | ||
|
||
export default { | ||
name: 'AreaChart', | ||
// defines a name for story that will be used in output | ||
}; |
9 changes: 9 additions & 0 deletions
9
packages/react-charting/bundle-size/VerticalBarChart.fixture.js
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,9 @@ | ||
import { VerticalBarChart } from '@fluentui/react-charting'; | ||
|
||
console.log(VerticalBarChart); | ||
// "console.log()" is the easiest way to prevent tree-shaking | ||
|
||
export default { | ||
name: 'VerticalBarChart', | ||
// defines a name for story that will be used in output | ||
}; |
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,11 @@ | ||
// monosize.config.mjs | ||
import storageAdapter from 'monosize-storage-azure'; | ||
|
||
export default { | ||
repository: 'https://github.com/microsoft/fluentui', | ||
storage: storageAdapter(), | ||
webpack: config => { | ||
// customize config here | ||
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