@teselagen/ove 0.7.29 → 0.7.30-beta.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/CreateAnnotationsPage.d.ts +4 -3
- package/README.md +1 -1
- package/fileUtils.d.ts +12 -0
- package/html2canvas.esm--JN4fLQL.js +7891 -0
- package/html2canvas.esm-B7d7VJmQ.cjs +7891 -0
- package/index.cjs.js +251 -126
- package/index.es.js +251 -126
- package/index.umd.js +251 -126
- package/ove.css +16 -3
- package/package.json +5 -5
- package/redux/findTool.d.ts +1 -0
- package/selectors/searchLayersSelector.d.ts +1 -1
- package/src/AutoAnnotate.js +1 -1
- package/src/CreateAnnotationsPage.js +1 -2
- package/src/Editor/style.css +8 -3
- package/src/FindBar/index.js +32 -1
- package/src/RowItem/SelectionLayer/index.js +42 -4
- package/src/RowItem/SelectionLayer/style.css +8 -0
- package/src/fileUtils.js +103 -0
- package/src/redux/findTool.js +9 -0
- package/src/selectors/searchLayersSelector.js +40 -2
- package/style.css +12107 -0
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { default as React } from '../../../node_modules/react';
|
|
2
|
+
declare const _default: import('../../../node_modules/react-redux').ConnectedComponent<React.ComponentType<import('../../../node_modules/react-redux').Matching<any, unknown>>, {
|
|
2
3
|
context?: import('../../../node_modules/react-redux/es/components/Context').ReactReduxContextInstance | undefined;
|
|
3
4
|
store?: import('../../../node_modules/redux').Store | undefined;
|
|
4
5
|
} | {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
key?: React.Key | null | undefined;
|
|
7
|
+
ref?: React.LegacyRef<React.Component<import('../../../node_modules/react-redux').Matching<any, unknown>, any, any>> | undefined;
|
|
7
8
|
context?: import('../../../node_modules/react-redux/es/components/Context').ReactReduxContextInstance | undefined;
|
|
8
9
|
store?: import('../../../node_modules/redux').Store | undefined;
|
|
9
10
|
}>;
|
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Congrats, you've made it to the repo for Teselagen's Open Source Vector Editor C
|
|
|
22
22
|
- ove-electron - https://github.com/teselagen/ove-electron (Simple desktop plasmid editor a la ApE)
|
|
23
23
|
- JBEI - https://bioparts.org/ (Auto annotation and blast tool)
|
|
24
24
|
- JBEI - https://public-registry.jbei.org/ (Lab management and design)
|
|
25
|
-
- Labii - https://docs.labii.com/widgets/biology
|
|
25
|
+
- Labii - https://docs.labii.com/widgets/section-widgets/biology/molecular-biology-suite/open-vector-editor (All-in-One Configurable Platform for Scientific Data Management)
|
|
26
26
|
- eLabFTW - https://www.elabftw.net/ (Open source ELN)
|
|
27
27
|
- Colabra - https://www.colabra.ai/ (Lab management, ELN, and R&D AI Copilot) [Docs](https://docs.colabra.ai/guide/reference/run-your-experiments/slash-commands/dna-sequences)
|
|
28
28
|
|
package/fileUtils.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const allowedCsvFileTypes: string[];
|
|
2
|
+
export function isZipFile(file: any): boolean;
|
|
3
|
+
export function getExt(file: any): any;
|
|
4
|
+
export function isExcelFile(file: any): boolean;
|
|
5
|
+
export function isCsvFile(file: any): boolean;
|
|
6
|
+
export function isTextFile(file: any): boolean;
|
|
7
|
+
export function parseCsvFile(csvFile: any, parserOptions?: {}): Promise<any>;
|
|
8
|
+
export function parseCsvString(csvString: any, parserOptions?: {}): void;
|
|
9
|
+
export function cleanCommaSeparatedCell(cellData: any): any;
|
|
10
|
+
export function cleanCsvExport(rows: any): any;
|
|
11
|
+
export function validateCSVRequiredHeaders(fields: any, requiredHeaders: any, filename: any): string | undefined;
|
|
12
|
+
export function validateCSVRow(row: any, requiredHeaders: any, index: any): string | undefined;
|