hplx-feature-library 1.0.69 → 1.0.70

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.
@@ -1,4 +1,4 @@
1
- import { j as K, P as gn, Y as Qs, M as i6, c as o2, g as Wy, d as l6 } from "../index-BCqhiZf4.js";
1
+ import { j as K, P as gn, Y as Qs, M as i6, c as o2, a as Wy, d as l6 } from "../index-BocogwgJ.js";
2
2
  import * as ua from "react";
3
3
  import an, { createContext as d1, useContext as h1, memo as Tu, useMemo as fa, useCallback as on, useState as ot, useRef as Qt, useEffect as yn, useLayoutEffect as s6, useDebugValue as o6 } from "react";
4
4
  import { E_DOCUMENT_VIEW_TYPE as Ws, E_DOCUMENT_FORMAT as ca, E_DOCUMENT_TYPE as Qy, E_CANVAS_TOOLS as gr, E_ATTACHMENT_QUERY_TYPE as u6 } from "../types/AttachmentTypes/index.js";
@@ -0,0 +1,7 @@
1
+ import { I_InvestigationsByDate, I_TestRanges } from '../../types/InvestigationTypes';
2
+ interface InvestigationsTableProps {
3
+ data: I_InvestigationsByDate[];
4
+ testDetails: I_TestRanges[];
5
+ }
6
+ declare const InvestigationsTable: ({ data, testDetails }: InvestigationsTableProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default InvestigationsTable;
@@ -0,0 +1 @@
1
+ export { default } from './components/InvestigationsTable';
@@ -0,0 +1,2 @@
1
+ import { I_InvestigationsByDate } from '../../types/InvestigationTypes';
2
+ export declare const mockData: I_InvestigationsByDate[];