@carbonorm/carbonreact 3.3.12 → 3.3.13
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,8 +1,9 @@
|
|
|
1
1
|
import styles from './style.module.scss';
|
|
2
2
|
import OutsideClickHandler from 'react-outside-click-handler';
|
|
3
3
|
import CarbonReact from "../../CarbonReact";
|
|
4
|
+
import {ReactElement} from "react";
|
|
4
5
|
|
|
5
|
-
export default
|
|
6
|
+
export default () : ReactElement => {
|
|
6
7
|
|
|
7
8
|
const bootstrap = CarbonReact.instance;
|
|
8
9
|
|
|
@@ -32,8 +33,7 @@ export default function BackendThrowable() {
|
|
|
32
33
|
</div>
|
|
33
34
|
{valueIsString
|
|
34
35
|
? ''
|
|
35
|
-
:
|
|
36
|
-
<pre className={styles.errorPre}>{JSON.stringify(currentThrowable[key], undefined, 4)}</pre>}
|
|
36
|
+
: <pre className={styles.errorPre}>{JSON.stringify(currentThrowable[key], undefined, 4)}</pre>}
|
|
37
37
|
</div>;
|
|
38
38
|
})}
|
|
39
39
|
</div>
|