@careevolution/mydatahelps-ui 2.23.0 → 2.23.1-HackDocs.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.
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/container/AllergiesList/AllergiesList.d.ts +8 -1
- package/dist/cjs/types/components/container/BloodPressureVisualization/BloodPressureVisualization.d.ts +8 -1
- package/dist/cjs/types/components/container/BloodPressureVisualization/BloodPressureVisualization.stories.d.ts +1 -0
- package/dist/cjs/types/components/container/NotificationList/NotificationList.d.ts +9 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/AllergiesList/AllergiesList.d.ts +8 -1
- package/dist/esm/types/components/container/BloodPressureVisualization/BloodPressureVisualization.d.ts +8 -1
- package/dist/esm/types/components/container/BloodPressureVisualization/BloodPressureVisualization.stories.d.ts +1 -0
- package/dist/esm/types/components/container/NotificationList/NotificationList.d.ts +9 -2
- package/dist/index.d.ts +112 -91
- package/package.json +1 -1
|
@@ -5,4 +5,11 @@ export interface AllergiesListProps {
|
|
|
5
5
|
onViewTermInfo(termInfo: TermInformationReference): void;
|
|
6
6
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
/** A listing of allergies.
|
|
9
|
+
*
|
|
10
|
+
* @component
|
|
11
|
+
* @param {AllergiesListProps} properties for the component
|
|
12
|
+
* @returns {JSX.Element}
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
export default function AllergiesList(props: AllergiesListProps): React.JSX.Element;
|
|
@@ -10,4 +10,11 @@ export interface BloodPressureVisualizationProps {
|
|
|
10
10
|
deviceDataSource?: BloodPressureDeviceDataSource[];
|
|
11
11
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
/** Blood Pressure Visualization. Displays daily systolic and diastolic blood pressure readings in a dumbbell chart
|
|
14
|
+
*
|
|
15
|
+
* @component
|
|
16
|
+
* @param {BloodPressureVisualizationProps} props - Props for the component)
|
|
17
|
+
* @returns {JSX.Element}
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export default function BloodPressureVisualization(props: BloodPressureVisualizationProps): React.JSX.Element;
|
|
@@ -3,6 +3,7 @@ import BloodPressureVisualization, { BloodPressureVisualizationProps } from "./B
|
|
|
3
3
|
import { SurveyBloodPressureDataParameters } from "../../../helpers/blood-pressure-data-providers/survey-blood-pressure-data-provider";
|
|
4
4
|
declare const _default: {
|
|
5
5
|
title: string;
|
|
6
|
+
tags: string[];
|
|
6
7
|
component: typeof BloodPressureVisualization;
|
|
7
8
|
parameters: {
|
|
8
9
|
layout: string;
|
|
@@ -6,5 +6,12 @@ export interface NotificationListProps {
|
|
|
6
6
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
7
7
|
}
|
|
8
8
|
export type NotificationListPreviewState = "Default" | "NoData";
|
|
9
|
-
/** Notification List. Can be filtered by Email/Push/SMS
|
|
10
|
-
|
|
9
|
+
/** Notification List. Can be filtered by Email/Push/SMS
|
|
10
|
+
*
|
|
11
|
+
* @component
|
|
12
|
+
* @param {NotificationListProps} props - Props for the component)
|
|
13
|
+
* @param {NotificationType} props.notificationType - Type of notification to filter by
|
|
14
|
+
* @param {React.Ref<HTMLDivElement>} props.innerRef - Reference to the div element
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export default function NotificationList(props: NotificationListProps): React.JSX.Element;
|