@careevolution/mydatahelps-ui 1.5.0 → 1.5.2
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/DeviceDataMonthChart/index.d.ts +1 -1
- package/dist/cjs/types/components/container/index.d.ts +1 -1
- package/dist/cjs/types/components/presentational/SparkBarChart/index.d.ts +1 -1
- package/dist/cjs/types/components/presentational/index.d.ts +1 -1
- package/dist/cjs/types/helpers/daily-data-providers/combined-resting-heart-rate.d.ts +3 -0
- package/dist/cjs/types/helpers/query-daily-data.d.ts +3 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/DeviceDataMonthChart/index.d.ts +1 -1
- package/dist/esm/types/components/container/index.d.ts +1 -1
- package/dist/esm/types/components/presentational/SparkBarChart/index.d.ts +1 -1
- package/dist/esm/types/components/presentational/index.d.ts +1 -1
- package/dist/esm/types/helpers/daily-data-providers/combined-resting-heart-rate.d.ts +3 -0
- package/dist/esm/types/helpers/query-daily-data.d.ts +3 -1
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./DeviceDataMonthChart";
|
|
1
|
+
export { default, DeviceDataChartLine } from "./DeviceDataMonthChart";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as ConnectEhr } from "./ConnectEhr";
|
|
2
2
|
export { default as ConnectFitbit } from "./ConnectFitbit";
|
|
3
|
-
export { default as DeviceDataMonthChart } from "./DeviceDataMonthChart";
|
|
3
|
+
export { default as DeviceDataMonthChart, DeviceDataChartLine } from "./DeviceDataMonthChart";
|
|
4
4
|
export { default as DeviceDataMonthCharts } from "./DeviceDataMonthCharts";
|
|
5
5
|
export { default as ExternalAccountList } from "./ExternalAccountList";
|
|
6
6
|
export { default as ExternalAccountsPreview } from "./ExternalAccountsPreview";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./SparkBarChart";
|
|
1
|
+
export { default, SparkBarChartBar } from "./SparkBarChart";
|
|
@@ -17,7 +17,7 @@ export { default as ShinyOverlay } from "./ShinyOverlay";
|
|
|
17
17
|
export { default as SingleExternalAccount } from "./SingleExternalAccount";
|
|
18
18
|
export { default as SingleNotification } from "./SingleNotification";
|
|
19
19
|
export { default as SingleSurveyTask } from "./SingleSurveyTask";
|
|
20
|
-
export { default as SparkBarChart } from "./SparkBarChart";
|
|
20
|
+
export { default as SparkBarChart, SparkBarChartBar } from "./SparkBarChart";
|
|
21
21
|
export { default as Switch } from "./Switch";
|
|
22
22
|
export { default as StatusBarBackground } from "./StatusBarBackground";
|
|
23
23
|
export { default as TextBlock } from "./TextBlock";
|
|
@@ -37,5 +37,7 @@ export declare enum DailyDataType {
|
|
|
37
37
|
FitbitDeepSleepMinutes = "FitbitDeepSleepMinutes",
|
|
38
38
|
FitbitSpO2 = "FitbitSpO2",
|
|
39
39
|
FitbitSteps = "FitbitSteps",
|
|
40
|
-
GoogleFitSteps = "GoogleFitSteps"
|
|
40
|
+
GoogleFitSteps = "GoogleFitSteps",
|
|
41
|
+
Steps = "Steps",
|
|
42
|
+
RestingHeartRate = "RestingHeartRate"
|
|
41
43
|
}
|