@careevolution/mydatahelps-ui 2.23.1-HackDocs.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 +1 -1
- 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 +1 -14
- package/dist/esm/index.js +1 -1
- 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 +1 -14
- package/dist/index.d.ts +82 -80
- 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;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { NotificationType } from "@careevolution/mydatahelps-js";
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
3
|
export interface NotificationListProps {
|
|
5
4
|
notificationType?: NotificationType;
|
|
6
5
|
previewState?: NotificationListPreviewState;
|
|
@@ -15,16 +14,4 @@ export type NotificationListPreviewState = "Default" | "NoData";
|
|
|
15
14
|
* @param {React.Ref<HTMLDivElement>} props.innerRef - Reference to the div element
|
|
16
15
|
*
|
|
17
16
|
*/
|
|
18
|
-
|
|
19
|
-
(props: NotificationListProps): React.JSX.Element;
|
|
20
|
-
propTypes: {
|
|
21
|
-
/**
|
|
22
|
-
* Type of notification to filter by. Leave undefined to show all notifications
|
|
23
|
-
*/
|
|
24
|
-
NotificationType: PropTypes.Validator<string>;
|
|
25
|
-
};
|
|
26
|
-
defaultProps: {
|
|
27
|
-
NotificationType: undefined;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
export default NotificationList;
|
|
17
|
+
export default function NotificationList(props: NotificationListProps): React.JSX.Element;
|