@datapos/datapos-shared 0.3.497 → 0.3.500
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.
|
@@ -147,6 +147,7 @@ interface UnknownInferenceResult {
|
|
|
147
147
|
}
|
|
148
148
|
interface TypeParsedRecordsResult {
|
|
149
149
|
columnConfigs: ObjectColumnConfig[];
|
|
150
|
+
hasHeaderRow: boolean;
|
|
150
151
|
typedRecords: InferenceRecord[];
|
|
151
152
|
}
|
|
152
153
|
type DataFormatId = 'dpe' | 'dtv' | 'json' | 'spss' | 'xlsx' | 'xml' | 'unknown';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.500",
|
|
4
4
|
"description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PresentationView, PresentationVisualContentConfig } from '../component/presenter/presentation';
|
|
2
|
-
export interface CytoscapeJSView extends PresentationView {
|
|
3
|
-
diagram: unknown;
|
|
4
|
-
}
|
|
5
|
-
export declare function useCytoscapeJS(): {
|
|
6
|
-
render: (viewType: unknown, contentConfig: PresentationVisualContentConfig, element: HTMLElement) => void;
|
|
7
|
-
};
|