@careevolution/mydatahelps-ui 2.23.1-HackDocs.2 → 2.23.1-HackDocs.3
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/ConditionsList/ConditionsList.d.ts +1 -1
- package/dist/cjs/types/components/container/ConnectDevicesMenu/ConnectDevicesMenu.d.ts +1 -1
- package/dist/cjs/types/components/container/ConnectEhr/ConnectEhr.d.ts +1 -1
- package/dist/cjs/types/components/container/NotificationList/NotificationList.d.ts +1 -3
- package/dist/cjs/types/components/container/SeverityCalendar/SeverityCalendar.d.ts +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/ConditionsList/ConditionsList.d.ts +1 -1
- package/dist/esm/types/components/container/ConnectDevicesMenu/ConnectDevicesMenu.d.ts +1 -1
- package/dist/esm/types/components/container/ConnectEhr/ConnectEhr.d.ts +1 -1
- package/dist/esm/types/components/container/NotificationList/NotificationList.d.ts +1 -3
- package/dist/esm/types/components/container/SeverityCalendar/SeverityCalendar.d.ts +1 -1
- package/dist/index.d.ts +99 -101
- package/package.json +1 -1
|
@@ -10,4 +10,4 @@ export interface ConditionsListProps {
|
|
|
10
10
|
* @param {ConditionsListProps} props - Property object for the component. Configure to use survey and/or device data
|
|
11
11
|
* @param {event} props.onViewTermInfo - A function that is called when the user clicks on the condition
|
|
12
12
|
*/
|
|
13
|
-
export default function (props: ConditionsListProps): React.JSX.Element;
|
|
13
|
+
export default function ConditionsList(props: ConditionsListProps): React.JSX.Element;
|
|
@@ -19,4 +19,4 @@ export interface ConnectDevicesMenuProps {
|
|
|
19
19
|
* @param {string} props.text - Text that shows under the title
|
|
20
20
|
* @param {string} props.headerVariant - The size of the title. "large" or "medium"
|
|
21
21
|
*/
|
|
22
|
-
export default function (props: ConnectDevicesMenuProps): React.JSX.Element | null;
|
|
22
|
+
export default function ConnectDevicesMenu(props: ConnectDevicesMenuProps): React.JSX.Element | null;
|
|
@@ -29,4 +29,4 @@ export type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnecte
|
|
|
29
29
|
* @param {string} props.connectedText - Customize the text displayed when the user is connected to an EHR
|
|
30
30
|
* @param {boolean} props.hideWhenConnected - Boolean value. Hides the component when the state is connected
|
|
31
31
|
*/
|
|
32
|
-
export default function (props: ConnectEhrProps): React.JSX.Element | null;
|
|
32
|
+
export default function ConnectEhr(props: ConnectEhrProps): React.JSX.Element | null;
|
|
@@ -8,10 +8,8 @@ export interface NotificationListProps {
|
|
|
8
8
|
export type NotificationListPreviewState = "Default" | "NoData";
|
|
9
9
|
/** Notification List. Can be filtered by Email/Push/SMS
|
|
10
10
|
*
|
|
11
|
-
* @component
|
|
12
11
|
* @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
|
|
12
|
+
* @param {NotificationType} props.notificationType - Type of notification to filter by Sms/Email/Push
|
|
15
13
|
*
|
|
16
14
|
*/
|
|
17
15
|
export default function NotificationList(props: NotificationListProps): React.JSX.Element;
|
|
@@ -17,4 +17,4 @@ export interface SeverityCalendarProps {
|
|
|
17
17
|
* @param {string} props.severityResultIdentifier - The identifier for the result that contains the severity value. Defaults are Mild, Moderate, Severe though any values can be mapped to these categories.
|
|
18
18
|
* @param {date} props.intervalStart - The start date for the calendar. If used with a DateRangeCoordinator, this value can be left undefined.
|
|
19
19
|
*/
|
|
20
|
-
export default function (props: SeverityCalendarProps): React.JSX.Element;
|
|
20
|
+
export default function SeverityCalendar(props: SeverityCalendarProps): React.JSX.Element;
|