@react-magma/charts 8.0.0 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-magma/charts",
3
- "version": "8.0.0",
3
+ "version": "9.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,7 +31,7 @@
31
31
  "@emotion/styled": "^11.13.0",
32
32
  "react": "^17.0.2",
33
33
  "react-dom": "^17.0.2",
34
- "react-magma-dom": "^4.5.0-next.7",
34
+ "react-magma-dom": "^4.6.0-next.0",
35
35
  "react-magma-icons": "^3.0.0"
36
36
  },
37
37
  "dependencies": {
@@ -48,7 +48,7 @@
48
48
  "identity-obj-proxy": "^3.0.0",
49
49
  "react": "^17.0.2",
50
50
  "react-dom": "^17.0.2",
51
- "react-magma-dom": "^4.5.0",
51
+ "react-magma-dom": "^4.6.0",
52
52
  "react-magma-icons": "^3.0.0"
53
53
  },
54
54
  "exports": {
@@ -119,11 +119,7 @@ function BaseChart<T>(props: ChartProps<T>, ref: React.Ref<HTMLDivElement>) {
119
119
  setIsKeyboardInstructionsOpen(prevOpen => !prevOpen);
120
120
  }
121
121
 
122
- function handleKeyboardInstructionsButtonKeydown(event: {
123
- preventDefault?: any;
124
- key?: any;
125
- shiftKey?: any;
126
- }) {
122
+ function handleKeyboardInstructionsButtonKeydown(event: { preventDefault?: any; key?: any; shiftKey?: any; }) {
127
123
  const { key, shiftKey } = event;
128
124
 
129
125
  switch (key) {