@careevolution/mydatahelps-ui 2.2.1-VB3.1 → 2.2.1-VB3.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/README.md +4 -3
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/presentational/Layout/Layout.d.ts +2 -2
- package/dist/cjs/types/helpers/daily-data-providers/fitbit-activity-minutes.d.ts +3 -0
- package/dist/cjs/types/helpers/daily-data-providers/index.d.ts +1 -0
- package/dist/cjs/types/helpers/language.d.ts +2 -4
- package/dist/cjs/types/helpers/query-daily-data.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/presentational/Layout/Layout.d.ts +2 -2
- package/dist/esm/types/helpers/daily-data-providers/fitbit-activity-minutes.d.ts +3 -0
- package/dist/esm/types/helpers/daily-data-providers/index.d.ts +1 -0
- package/dist/esm/types/helpers/language.d.ts +2 -4
- package/dist/esm/types/helpers/query-daily-data.d.ts +1 -0
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export { inBedTime as appleHealthInBedDataProvider } from "./apple-health-sleep"
|
|
|
8
8
|
export { default as appleHealthStandTimeDataProvider } from "./apple-health-stand-time";
|
|
9
9
|
export { default as appleHealthStepsDataProvider } from "./apple-health-steps";
|
|
10
10
|
export { default as appleHealthWalkingHeartRateAverageDataProvider } from "./apple-health-walking-heart-rate-average";
|
|
11
|
+
export { sedentaryMinutes as fitbitSedentaryMinutesDataProvider } from "./fitbit-activity-minutes";
|
|
11
12
|
export { totalActiveMinutes as fitbitTotalActiveMinutesDataProvider } from "./fitbit-activity-minutes";
|
|
12
13
|
export { lightlyActiveMinutes as fitbitLightlyActiveMinutesDataProvider } from "./fitbit-activity-minutes";
|
|
13
14
|
export { fairlyActiveMinutes as fitbitFairlyActiveMinutesDataProvider } from "./fitbit-activity-minutes";
|
|
@@ -18,6 +18,7 @@ export declare enum DailyDataType {
|
|
|
18
18
|
AppleHealthStandMinutes = "AppleHealthStandMinutes",
|
|
19
19
|
AppleHealthSteps = "AppleHealthSteps",
|
|
20
20
|
AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
|
|
21
|
+
FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
|
|
21
22
|
FitbitActiveMinutes = "FitbitActiveMinutes",
|
|
22
23
|
FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
|
|
23
24
|
FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
|
package/dist/index.d.ts
CHANGED
|
@@ -119,8 +119,8 @@ interface LayoutProps {
|
|
|
119
119
|
noGlobalStyles?: boolean;
|
|
120
120
|
colorScheme?: "light" | "dark" | "auto";
|
|
121
121
|
/**
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
* @deprecated
|
|
123
|
+
*/
|
|
124
124
|
stylesheetPath?: string;
|
|
125
125
|
}
|
|
126
126
|
interface LayoutContext {
|
|
@@ -659,6 +659,7 @@ declare enum DailyDataType {
|
|
|
659
659
|
AppleHealthStandMinutes = "AppleHealthStandMinutes",
|
|
660
660
|
AppleHealthSteps = "AppleHealthSteps",
|
|
661
661
|
AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
|
|
662
|
+
FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
|
|
662
663
|
FitbitActiveMinutes = "FitbitActiveMinutes",
|
|
663
664
|
FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
|
|
664
665
|
FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
|