@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.
@@ -10,8 +10,8 @@ export interface LayoutProps {
10
10
  noGlobalStyles?: boolean;
11
11
  colorScheme?: "light" | "dark" | "auto";
12
12
  /**
13
- * @deprecated
14
- */
13
+ * @deprecated
14
+ */
15
15
  stylesheetPath?: string;
16
16
  }
17
17
  export interface LayoutContext {
@@ -1,3 +1,6 @@
1
+ export declare function sedentaryMinutes(startDate: Date, endDate: Date): Promise<{
2
+ [key: string]: number;
3
+ }>;
1
4
  export declare function totalActiveMinutes(startDate: Date, endDate: Date): Promise<{
2
5
  [key: string]: number;
3
6
  }>;
@@ -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";
@@ -1,4 +1,2 @@
1
- declare const _default: {
2
- [key: string]: string;
3
- };
4
- export default _default;
1
+ declare var language: (key: string) => string;
2
+ export default language;
@@ -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",
@@ -1,3 +1,4 @@
1
1
  export * from './components';
2
2
  export * from './hooks';
3
3
  export * from './helpers/query-daily-data';
4
+ export * from './helpers/language';
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
- * @deprecated
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.2.1-VB3.1",
3
+ "version": "2.2.1-VB3.3",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",