@careevolution/mydatahelps-ui 2.15.0 → 2.15.1-AsthmaRecommendedArticleUpdate.1

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.
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import "../HealthPreviewSection/HealthPreviewSection.css";
3
+ export interface LabResultsBloodTypeProps {
4
+ previewState?: "BloodTypeLabs" | "SingleLabs" | "ManyLabs" | "NoData";
5
+ showDetailedResults?: true | false;
6
+ maximumResults?: number;
7
+ onClick?: () => void;
8
+ innerRef?: React.Ref<HTMLDivElement>;
9
+ }
10
+ export default function (props: LabResultsBloodTypeProps): React.JSX.Element | null;
@@ -0,0 +1,27 @@
1
+ export declare const bloodTypeLabs: {
2
+ ImportantLabs: never[];
3
+ RecentLabs: never[];
4
+ BloodTypeLabs: {
5
+ Type: string;
6
+ MostRecentValue: string;
7
+ MostRecentDate: string;
8
+ }[];
9
+ };
10
+ export declare const singleLabs: {
11
+ ImportantLabs: never[];
12
+ RecentLabs: never[];
13
+ BloodTypeLabs: {
14
+ Type: string;
15
+ MostRecentValue: string;
16
+ MostRecentDate: string;
17
+ }[];
18
+ };
19
+ export declare const manyLabs: {
20
+ ImportantLabs: never[];
21
+ RecentLabs: never[];
22
+ BloodTypeLabs: {
23
+ Type: string;
24
+ MostRecentValue: string;
25
+ MostRecentDate: string;
26
+ }[];
27
+ };
@@ -0,0 +1 @@
1
+ export { default } from "./LabResultsBloodType";
@@ -17,6 +17,7 @@ export { default as FitbitMonthCharts } from "./FitbitMonthCharts";
17
17
  export { default as GarminDevices } from "./GarminDevices";
18
18
  export { default as GarminMonthCharts } from "./GarminMonthCharts";
19
19
  export { default as HealthPreviewSection } from "./HealthPreviewSection";
20
+ export { default as LabResultsBloodType } from "./LabResultsBloodType";
20
21
  export { default as LabResultsSummary } from "./LabResultsSummary";
21
22
  export { default as MedicationsList } from "./MedicationsList";
22
23
  export { default as MostRecentNotification } from "./MostRecentNotification";