@teselagen/ove 0.6.1-beta.1 → 0.7.1
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/DigestTool/DigestTool.d.ts +1 -9
- package/helperComponents/PropertiesDialog/utils.d.ts +5 -5
- package/index.cjs.js +47821 -49527
- package/index.es.js +47712 -49418
- package/index.umd.js +56838 -58475
- package/package.json +7 -8
- package/src/CutsiteFilter/index.js +51 -55
- package/src/DigestTool/DigestTool.js +176 -174
- package/src/PCRTool/PCRTool.js +8 -2
- package/src/helperComponents/AddOrEditAnnotationDialog/index.js +8 -4
- package/src/helperComponents/AddOrEditFeatureDialog/index.js +9 -7
- package/src/helperComponents/AddOrEditPartDialog/index.js +3 -3
- package/src/helperComponents/AddOrEditPrimerDialog/index.js +3 -7
- package/src/helperComponents/PropertiesDialog/GenericAnnotationProperties.js +52 -50
- package/src/helperComponents/PropertiesDialog/OrfProperties.js +1 -1
- package/src/helperComponents/PropertiesDialog/utils.js +5 -5
- package/src/helperComponents/RemoveDuplicates/index.js +24 -24
- package/style.css +252 -252
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export class DigestTool extends React.Component<any, any, any> {
|
|
3
|
-
constructor(props: any);
|
|
4
|
-
constructor(props: any, context: any);
|
|
5
|
-
state: {
|
|
6
|
-
selectedTab: string;
|
|
7
|
-
};
|
|
8
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
}
|
|
1
|
+
export function DigestTool(props: any): import("react/jsx-runtime").JSX.Element;
|
|
10
2
|
declare const _default: any;
|
|
11
3
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
1
|
+
export function sizeSchema(isProtein: any): {
|
|
2
|
+
path: string;
|
|
3
|
+
type: string;
|
|
4
|
+
render: (val: any, _record: any) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
};
|