Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 2 additions & 3 deletions apps/plotly_examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
"@babel/core": "^7.16.0",
"@fluentui/react-charting": "^5.24.9",
"@fluentui/react-charts": "0.0.0-nightly-20250630-0407.1",
"@fluentui/react-charting": "^5.24.9",
"@fluentui/react-charts": "0.0.0-nightly-20250627-0405.1",
"@fluentui/react-components": "^9.21.0",
"@fluentui/react-portal-compat": "9.0.176",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
Expand Down Expand Up @@ -96,7 +94,8 @@
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.7",
"@types/react": "17.0.44",
"@types/react-dom": "17.0.15"
"@types/react-dom": "17.0.15",
"parse-svg-path": "^0.1.2"
},
"resolutions": {
"@types/react": "17.0.44",
Expand Down
3 changes: 3 additions & 0 deletions apps/plotly_examples/src/components/parse-svg-path.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
declare module 'parse-svg-path' {
export default function parse(path: string): any[];
}
Loading