@teselagen/ove 0.8.6 → 0.8.8
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/BarPlot/index.d.ts +3 -10
- package/helperComponents/PropertiesDialog/index.d.ts +1 -3
- package/index.cjs.js +2186 -2155
- package/index.es.js +61 -30
- package/index.umd.js +1704 -1673
- package/ove.css +10 -4
- package/package.json +2 -2
- package/src/BarPlot/index.js +1 -0
- package/src/Editor/index.js +2 -2
- package/src/Editor/userDefinedHandlersAndOpts.js +2 -0
- package/src/helperComponents/PropertiesDialog/index.js +34 -10
- package/src/helperComponents/PropertiesDialog/style.css +0 -3
- package/src/redux/panelsShown.js +1 -1
- package/src/withEditorProps/index.js +19 -2
- package/withEditorProps/index.d.ts +1 -1
package/BarPlot/index.d.ts
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Minimal SVG BarPlot component
|
|
3
|
-
* @param {Object} props
|
|
4
|
-
* @param {number[]} props.data - Array of numbers to plot
|
|
5
|
-
* @param {number} [props.width=300]
|
|
6
|
-
* @param {number} [props.height=150]
|
|
7
|
-
* @param {string[]} [props.barColors]
|
|
8
|
-
*/
|
|
9
1
|
export function BarPlot({ data, width, height, barColors, className }: {
|
|
10
|
-
data:
|
|
2
|
+
data: any;
|
|
11
3
|
width?: number | undefined;
|
|
12
4
|
height?: number | undefined;
|
|
13
|
-
barColors
|
|
5
|
+
barColors: any;
|
|
6
|
+
className: any;
|
|
14
7
|
}): import("react/jsx-runtime").JSX.Element | null;
|
|
15
8
|
export function AminoAcidCirclePlot({ data, width, className }: {
|
|
16
9
|
data: any;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
export function PropertiesDialog(props: any): import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
declare const _default:
|
|
3
|
-
[x: string]: any;
|
|
4
|
-
}>;
|
|
2
|
+
declare const _default: any;
|
|
5
3
|
export default _default;
|