This repository was archived by the owner on Mar 4, 2020. It is now read-only.
File tree 2 files changed +3
-1
lines changed
docs/src/components/Playground
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
50
50
51
51
### Documentation
52
52
- Add per-component performance charts @miroslavstastny ([ #2240 ] ( https://github.com/microsoft/fluent-ui-react/pull/2240 ) )
53
+ - Fix dependencies in project exported to codesandbox @miroslavstastny ([ #2314 ] ( https://github.com/microsoft/fluent-ui-react/pull/2314 ) )
53
54
54
55
<!-- ------------------------------[ v0.43.1 ]------------------------------- -->
55
56
## [ v0.43.1] ( https://github.com/microsoft/fluent-ui-react/tree/v0.43.1 ) (2020-01-30)
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import * as React from 'react'
8
8
import * as ReactDOM from 'react-dom'
9
9
import * as Classnames from 'classnames'
10
10
11
+ const accessibilityPackageJson = require ( '@fluentui/accessibility/package.json' )
11
12
const docsComponentsPackageJson = require ( '@fluentui/docs-components/package.json' )
12
13
const projectPackageJson = require ( '@fluentui/react/package.json' )
13
14
@@ -23,7 +24,7 @@ export const babelConfig = {
23
24
24
25
export const imports : Record < string , { version : string ; module : any } > = {
25
26
'@fluentui/accessibility' : {
26
- version : projectPackageJson . version ,
27
+ version : accessibilityPackageJson . version ,
27
28
module : Accessibility ,
28
29
} ,
29
30
You can’t perform that action at this time.
0 commit comments