pcm-shared-components 0.0.59 → 0.0.60

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.
@@ -40,7 +40,12 @@ export const GenericDialogWindow = props => {
40
40
 
41
41
  const closeDialog = () => {
42
42
  onClose();
43
- };
43
+ }; // -----------------------------------------
44
+ // Note make sure to include disableEnforceFocus or else I'll have infinite error/warnings on Uncaught RangeError.
45
+ // I think this error comes only after a state has changed when multiple dialog windows are open they are fighting for focus.
46
+ // Bug: https://github.com/mui/material-ui/issues/8741
47
+ // -----------------------------------------
48
+
44
49
 
45
50
  return /*#__PURE__*/React.createElement(ThemeProvider, {
46
51
  theme: defaultTheme
package/dist/index.js CHANGED
@@ -5,4 +5,5 @@ import CustomFab from './components/Buttons/CustomFab';
5
5
  import HelpButton from './components/Buttons/HelpButton';
6
6
  import GenericDialogWindow from './components/Dialogs/GenericDialogWindow';
7
7
  import PcSharedComponentThemeInheritor from './components/PcSharedComponentThemeInheritor';
8
- export { TestButton, CodeHighlight, CustomFab, HelpButton, GenericDialogWindow, PcSharedComponentThemeInheritor };
8
+ import ImageCanvasDraw from './components/Drawing/ImageCanvasDraw';
9
+ export { TestButton, CodeHighlight, CustomFab, HelpButton, GenericDialogWindow, PcSharedComponentThemeInheritor, ImageCanvasDraw };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pcm-shared-components",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "babel": {