@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.
@@ -5,4 +5,11 @@ export interface AllergiesListProps {
5
5
  onViewTermInfo(termInfo: TermInformationReference): void;
6
6
  innerRef?: React.Ref<HTMLDivElement>;
7
7
  }
8
- export default function (props: AllergiesListProps): React.JSX.Element;
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
- export default function (props: BloodPressureVisualizationProps): React.JSX.Element;
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
- export default function (props: NotificationListProps): React.JSX.Element;
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;