@metrevals/inspect-scout-viewer 0.3.2-beta.1764377954 → 0.3.153-beta.1765542109

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.
@@ -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
  };
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const ScanDataframeWrapTextButton: FC;
@@ -1,6 +1,7 @@
1
1
  import { FC } from 'react';
2
+ import { ResultGroup } from '../../types';
2
3
  interface ScanResultsGroupProps {
3
- options: Array<"source" | "label" | "id" | "none">;
4
+ options: Array<ResultGroup>;
4
5
  }
5
6
  export declare const ScanResultsGroup: FC<ScanResultsGroupProps>;
6
7
  export {};
@@ -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 {
@@ -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>;
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface ValidationResultProps {
3
+ result: boolean | Record<string, boolean>;
4
+ }
5
+ export declare const ValidationResult: FC<ValidationResultProps>;
6
+ export {};
@@ -3,6 +3,8 @@ import { ScannerCore } from '../types';
3
3
  interface ValueProps {
4
4
  result: ScannerCore;
5
5
  style: "inline" | "block";
6
+ maxTableSize?: number;
7
+ interactive?: boolean;
6
8
  }
7
9
  export declare const Value: FC<ValueProps>;
8
10
  export {};
@@ -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 {};
package/lib/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export { App } from './App';
2
2
  export { apiScoutServer } from './api/api-scout-server.ts';
3
3
  export type { ScanApi } from './api/api.ts';
4
- export { ApiProvider, StoreProvider, createStore } from './state/store';
4
+ export { ApiProvider, StoreProvider, createStore, useStore } from './state/store';