@juliocesar-io/nano-protein-viewer-react 0.0.4 → 0.0.6
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/README.md +14 -10
- package/dist/index.cjs +1541 -1099
- package/dist/index.d.ts +3 -3
- package/dist/index.esm.js +159368 -87977
- package/package.json +8 -10
- package/dist/style.css +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { JSX
|
|
2
|
-
import { MolstarViewerInstance } from 'molstar/
|
|
1
|
+
import { JSX } from 'react/jsx-runtime';
|
|
2
|
+
import { MolstarViewerInstance } from 'molstar/lib/apps/viewer/app';
|
|
3
3
|
|
|
4
4
|
declare type ChainColorParams = {
|
|
5
5
|
chainColors: Record<string | number, string | number>;
|
|
@@ -47,7 +47,7 @@ export declare interface MolstarViewerHandle {
|
|
|
47
47
|
resetColorTheme: () => Promise<void>;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
export declare function NanoProteinViewer({ structureUrls }: NanoProteinViewerProps):
|
|
50
|
+
export declare function NanoProteinViewer({ structureUrls }: NanoProteinViewerProps): JSX.Element;
|
|
51
51
|
|
|
52
52
|
export declare interface NanoProteinViewerProps {
|
|
53
53
|
structureUrls: StructureUrl[];
|