@metrevals/inspect-scout-viewer 0.3.2-beta.1764377760 → 0.3.2-beta.1764711188
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/lib/app/appearance/icons.d.ts +3 -0
- package/lib/app/scanner/results/ScanDataframeWrapTextButton.d.ts +2 -0
- package/lib/app/scanner/results/ScanResultsGroup.d.ts +2 -1
- package/lib/app/types.d.ts +1 -0
- package/lib/app/utils/arrow.d.ts +1 -1
- package/lib/app/values/ValidationResult.d.ts +6 -0
- package/lib/app/values/Value.d.ts +2 -0
- package/lib/components/DataframeView.d.ts +3 -0
- package/lib/index.js +837 -407
- package/lib/index.js.map +1 -1
- package/lib/state/store.d.ts +7 -3
- package/lib/styles/index.css +78 -25
- package/lib/types/index.d.ts +7 -7
- package/lib/utils/format.d.ts +1 -0
- package/package.json +2 -2
|
@@ -24,6 +24,7 @@ export declare const ApplicationIcons: {
|
|
|
24
24
|
remove: string;
|
|
25
25
|
replace: string;
|
|
26
26
|
};
|
|
27
|
+
check: string;
|
|
27
28
|
checkbox: {
|
|
28
29
|
checked: string;
|
|
29
30
|
unchecked: string;
|
|
@@ -128,4 +129,6 @@ export declare const ApplicationIcons: {
|
|
|
128
129
|
};
|
|
129
130
|
turns: string;
|
|
130
131
|
usage: string;
|
|
132
|
+
wrap: string;
|
|
133
|
+
x: string;
|
|
131
134
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
+
import { ResultGroup } from '../../types';
|
|
2
3
|
interface ScanResultsGroupProps {
|
|
3
|
-
options: Array<
|
|
4
|
+
options: Array<ResultGroup>;
|
|
4
5
|
}
|
|
5
6
|
export declare const ScanResultsGroup: FC<ScanResultsGroupProps>;
|
|
6
7
|
export {};
|
package/lib/app/types.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface SortColumn {
|
|
|
6
6
|
direction: "asc" | "desc";
|
|
7
7
|
}
|
|
8
8
|
export type ErrorScope = "scanjobs" | "scanner" | "dataframe";
|
|
9
|
+
export type ResultGroup = "source" | "label" | "id" | "epoch" | "none";
|
|
9
10
|
export type ScannerCore = ScannerCoreTranscript | ScannerCoreMessage | ScannerCoreMessages | ScannerCoreEvent | ScannerCoreEvents;
|
|
10
11
|
export type ValueType = "boolean" | "number" | "string" | "array" | "object" | "null";
|
|
11
12
|
export interface ScannerCoreBase {
|
package/lib/app/utils/arrow.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ColumnTable } from 'arquero';
|
|
2
|
-
export declare function expandResultsetRows(columnTable: ColumnTable): ColumnTable
|
|
2
|
+
export declare function expandResultsetRows(columnTable: ColumnTable): Promise<ColumnTable>;
|
|
@@ -4,10 +4,13 @@ interface DataframeViewProps {
|
|
|
4
4
|
columnTable?: ColumnTable;
|
|
5
5
|
sortedColumns?: string[];
|
|
6
6
|
onRowDoubleClicked?: (rowData: object) => void;
|
|
7
|
+
onVisibleRowCountChanged?: (count: number) => void;
|
|
7
8
|
options?: {
|
|
8
9
|
maxStrLen?: number;
|
|
9
10
|
};
|
|
10
11
|
enableKeyboardNavigation?: boolean;
|
|
12
|
+
showRowNumbers?: boolean;
|
|
13
|
+
wrapText?: boolean;
|
|
11
14
|
}
|
|
12
15
|
export declare const DataframeView: FC<DataframeViewProps>;
|
|
13
16
|
export {};
|