@careevolution/mydatahelps-ui 2.21.0 → 2.21.2-PointsForBadges.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.
Files changed (58) hide show
  1. package/dist/cjs/index.js +18 -18
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/container/BasicBadges/BasicBadges.d.ts +7 -0
  4. package/dist/cjs/types/components/container/BasicBadges/BasicBadges.stories.d.ts +26 -0
  5. package/dist/cjs/types/components/container/BasicBadges/index.d.ts +1 -0
  6. package/dist/cjs/types/components/container/BasicPointsForBadges/BasicPointsForBadges.d.ts +15 -0
  7. package/dist/cjs/types/components/container/BasicPointsForBadges/BasicPointsForBadges.stories.d.ts +49 -0
  8. package/dist/cjs/types/components/container/BasicPointsForBadges/index.d.ts +1 -0
  9. package/dist/cjs/types/components/container/DailyDataGoal/DailyDataGoal.d.ts +20 -0
  10. package/dist/cjs/types/components/container/DailyDataGoal/DailyDataGoal.stories.d.ts +54 -0
  11. package/dist/cjs/types/components/container/DailyDataGoal/index.d.ts +1 -0
  12. package/dist/cjs/types/components/container/index.d.ts +3 -0
  13. package/dist/cjs/types/components/presentational/BasicBadge/BasicBadge.d.ts +10 -0
  14. package/dist/cjs/types/components/presentational/BasicBadge/index.d.ts +1 -0
  15. package/dist/cjs/types/components/presentational/Grid/Grid.d.ts +20 -0
  16. package/dist/cjs/types/components/presentational/Grid/Grid.stories.d.ts +18 -0
  17. package/dist/cjs/types/components/presentational/Grid/index.d.ts +1 -0
  18. package/dist/cjs/types/components/presentational/index.d.ts +2 -0
  19. package/dist/cjs/types/components/view/NewBadgeView/NewBadgeView.d.ts +11 -0
  20. package/dist/cjs/types/components/view/NewBadgeView/NewBadgeView.stories.d.ts +17 -0
  21. package/dist/cjs/types/components/view/NewBadgeView/index.d.ts +1 -0
  22. package/dist/cjs/types/components/view/index.d.ts +1 -0
  23. package/dist/cjs/types/helpers/PointsAndBadges/PointsAndBadges.d.ts +27 -0
  24. package/dist/cjs/types/helpers/colors.d.ts +1 -0
  25. package/dist/cjs/types/helpers/daily-data-providers/fitbit-wear-minutes.d.ts +3 -0
  26. package/dist/cjs/types/helpers/daily-data-providers/index.d.ts +1 -0
  27. package/dist/cjs/types/helpers/daily-data-types.d.ts +1 -0
  28. package/dist/cjs/types/helpers/index.d.ts +1 -0
  29. package/dist/esm/index.js +18 -18
  30. package/dist/esm/index.js.map +1 -1
  31. package/dist/esm/types/components/container/BasicBadges/BasicBadges.d.ts +7 -0
  32. package/dist/esm/types/components/container/BasicBadges/BasicBadges.stories.d.ts +26 -0
  33. package/dist/esm/types/components/container/BasicBadges/index.d.ts +1 -0
  34. package/dist/esm/types/components/container/BasicPointsForBadges/BasicPointsForBadges.d.ts +15 -0
  35. package/dist/esm/types/components/container/BasicPointsForBadges/BasicPointsForBadges.stories.d.ts +49 -0
  36. package/dist/esm/types/components/container/BasicPointsForBadges/index.d.ts +1 -0
  37. package/dist/esm/types/components/container/DailyDataGoal/DailyDataGoal.d.ts +20 -0
  38. package/dist/esm/types/components/container/DailyDataGoal/DailyDataGoal.stories.d.ts +54 -0
  39. package/dist/esm/types/components/container/DailyDataGoal/index.d.ts +1 -0
  40. package/dist/esm/types/components/container/index.d.ts +3 -0
  41. package/dist/esm/types/components/presentational/BasicBadge/BasicBadge.d.ts +10 -0
  42. package/dist/esm/types/components/presentational/BasicBadge/index.d.ts +1 -0
  43. package/dist/esm/types/components/presentational/Grid/Grid.d.ts +20 -0
  44. package/dist/esm/types/components/presentational/Grid/Grid.stories.d.ts +18 -0
  45. package/dist/esm/types/components/presentational/Grid/index.d.ts +1 -0
  46. package/dist/esm/types/components/presentational/index.d.ts +2 -0
  47. package/dist/esm/types/components/view/NewBadgeView/NewBadgeView.d.ts +11 -0
  48. package/dist/esm/types/components/view/NewBadgeView/NewBadgeView.stories.d.ts +17 -0
  49. package/dist/esm/types/components/view/NewBadgeView/index.d.ts +1 -0
  50. package/dist/esm/types/components/view/index.d.ts +1 -0
  51. package/dist/esm/types/helpers/PointsAndBadges/PointsAndBadges.d.ts +27 -0
  52. package/dist/esm/types/helpers/colors.d.ts +1 -0
  53. package/dist/esm/types/helpers/daily-data-providers/fitbit-wear-minutes.d.ts +3 -0
  54. package/dist/esm/types/helpers/daily-data-providers/index.d.ts +1 -0
  55. package/dist/esm/types/helpers/daily-data-types.d.ts +1 -0
  56. package/dist/esm/types/helpers/index.d.ts +1 -0
  57. package/dist/index.d.ts +383 -285
  58. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
- import React$1, { ReactElement, CSSProperties, ReactNode, MouseEventHandler, DependencyList } from 'react';
3
- import { ParticipantInfo, Guid, StatusBarStyle, ExternalAccount, Notification, SurveyTask, InboxMessage, InboxResource, InboxSurvey, DeviceInfo, DeviceDataPoint, SurveyAnswer, ExternalAccountStatus, EventName, DeviceDataNamespace, NotificationType, ExternalAccountProvider, SurveyTaskStatus, InboxItemType, InboxItemStatus, SortOrder, InboxItemSortColumn, InboxItem } from '@careevolution/mydatahelps-js';
2
+ import React$1, { ReactElement, DependencyList, CSSProperties, ReactNode, MouseEventHandler } from 'react';
3
+ import { ParticipantInfo, Guid, EventName, DeviceDataNamespace, StatusBarStyle, ExternalAccount, Notification, SurveyTask, InboxMessage, InboxResource, InboxSurvey, DeviceInfo, DeviceDataPoint, SurveyAnswer, ExternalAccountStatus, NotificationType, ExternalAccountProvider, SurveyTaskStatus, InboxItemType, InboxItemStatus, SortOrder, InboxItemSortColumn, InboxItem } from '@careevolution/mydatahelps-js';
4
4
  import { AxisDomain } from 'recharts/types/util/types';
5
5
  import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
6
6
  import { IconDefinition as IconDefinition$1 } from '@fortawesome/fontawesome-common-types';
@@ -11,7 +11,7 @@ interface AsthmaActionPlanManagerProps {
11
11
  editActionPlanSurveyName: string;
12
12
  innerRef?: React$1.Ref<HTMLDivElement>;
13
13
  }
14
- declare function export_default$2n(props: AsthmaActionPlanManagerProps): React$1.JSX.Element;
14
+ declare function export_default$2s(props: AsthmaActionPlanManagerProps): React$1.JSX.Element;
15
15
 
16
16
  declare class AsthmaParticipant {
17
17
  participantInfo: ParticipantInfo;
@@ -83,7 +83,7 @@ interface AsthmaAirQualitiesProps {
83
83
  date?: Date;
84
84
  innerRef?: React$1.Ref<HTMLDivElement>;
85
85
  }
86
- declare function export_default$2m(props: AsthmaAirQualitiesProps): React$1.JSX.Element;
86
+ declare function export_default$2r(props: AsthmaAirQualitiesProps): React$1.JSX.Element;
87
87
 
88
88
  interface AsthmaAlertTakeoverNoticeProps {
89
89
  previewState?: 'loading' | 'loaded';
@@ -91,7 +91,7 @@ interface AsthmaAlertTakeoverNoticeProps {
91
91
  logEntrySurveyName: string;
92
92
  innerRef?: React$1.Ref<HTMLDivElement>;
93
93
  }
94
- declare function export_default$2l(props: AsthmaAlertTakeoverNoticeProps): React$1.JSX.Element;
94
+ declare function export_default$2q(props: AsthmaAlertTakeoverNoticeProps): React$1.JSX.Element;
95
95
 
96
96
  interface AsthmaAlertTakeoverTriggerProps {
97
97
  previewState?: boolean;
@@ -102,7 +102,7 @@ interface AsthmaAlertTakeoverTriggerProps {
102
102
  alertTakeoverUrl: string;
103
103
  innerRef?: React$1.Ref<HTMLDivElement>;
104
104
  }
105
- declare function export_default$2k(props: AsthmaAlertTakeoverTriggerProps): null;
105
+ declare function export_default$2p(props: AsthmaAlertTakeoverTriggerProps): null;
106
106
 
107
107
  type AsthmaBiometricsPreviewState = 'no data' | 'some data' | 'all data';
108
108
 
@@ -114,7 +114,7 @@ interface AsthmaBiometricsProps {
114
114
  date?: Date;
115
115
  innerRef?: React$1.Ref<HTMLDivElement>;
116
116
  }
117
- declare function export_default$2j(props: AsthmaBiometricsProps): React$1.JSX.Element;
117
+ declare function export_default$2o(props: AsthmaBiometricsProps): React$1.JSX.Element;
118
118
 
119
119
  type AsthmaControlCalendarPreviewState = 'no logs' | 'some logs';
120
120
 
@@ -126,7 +126,7 @@ interface AsthmaControlCalendarProps {
126
126
  variant?: AsthmaControlCalendarVariant;
127
127
  innerRef?: React$1.Ref<HTMLDivElement>;
128
128
  }
129
- declare function export_default$2i(props: AsthmaControlCalendarProps): React$1.JSX.Element;
129
+ declare function export_default$2n(props: AsthmaControlCalendarProps): React$1.JSX.Element;
130
130
 
131
131
  type AsthmaControlStatusHeaderPreviewState = 'no data' | 'abnormal dhr' | 'abnormal nhr' | 'abnormal rr' | 'abnormal activity' | 'abnormal sleep' | 'abnormal dbol' | 'abnormal nbol' | 'abnormal home aqi' | 'abnormal work aqi' | 'abnormal multiple' | 'not determined' | 'not controlled' | 'controlled';
132
132
 
@@ -135,7 +135,7 @@ interface AsthmaControlStatusHeaderProps {
135
135
  participant: AsthmaParticipant;
136
136
  innerRef?: React$1.Ref<HTMLDivElement>;
137
137
  }
138
- declare function export_default$2h(props: AsthmaControlStatusHeaderProps): React$1.JSX.Element | null;
138
+ declare function export_default$2m(props: AsthmaControlStatusHeaderProps): React$1.JSX.Element | null;
139
139
 
140
140
  type AsthmaLogEntryDetailsPreviewState = 'not logged' | 'logged with no symptoms' | 'logged with mild symptoms' | 'logged with moderate symptoms' | 'logged with severe symptoms';
141
141
 
@@ -148,7 +148,7 @@ interface AsthmaLogEntryDetailsProps {
148
148
  infoUrl: string;
149
149
  innerRef?: React$1.Ref<HTMLDivElement>;
150
150
  }
151
- declare function export_default$2g(props: AsthmaLogEntryDetailsProps): React$1.JSX.Element;
151
+ declare function export_default$2l(props: AsthmaLogEntryDetailsProps): React$1.JSX.Element;
152
152
 
153
153
  type AsthmaLogEntryHeaderPreviewState = 'no logs' | 'today log only' | 'yesterday log only' | 'both logs';
154
154
 
@@ -159,7 +159,7 @@ interface AsthmaLogEntryHeaderProps {
159
159
  dayViewUrl: string;
160
160
  innerRef?: React$1.Ref<HTMLDivElement>;
161
161
  }
162
- declare function export_default$2f(props: AsthmaLogEntryHeaderProps): React$1.JSX.Element | null;
162
+ declare function export_default$2k(props: AsthmaLogEntryHeaderProps): React$1.JSX.Element | null;
163
163
 
164
164
  interface AsthmaPostEnrollmentSurveyTriggerProps {
165
165
  previewState?: boolean;
@@ -168,7 +168,7 @@ interface AsthmaPostEnrollmentSurveyTriggerProps {
168
168
  logTodayEntrySurveyName: string;
169
169
  innerRef?: React$1.Ref<HTMLDivElement>;
170
170
  }
171
- declare function export_default$2e(props: AsthmaPostEnrollmentSurveyTriggerProps): null;
171
+ declare function export_default$2j(props: AsthmaPostEnrollmentSurveyTriggerProps): null;
172
172
 
173
173
  type AsthmaProviderReportPreviewState = 'default';
174
174
 
@@ -177,13 +177,14 @@ interface AsthmaProviderReportProps {
177
177
  logEntrySurveyName: string;
178
178
  innerRef?: React$1.Ref<HTMLDivElement>;
179
179
  }
180
- declare function export_default$2d(props: AsthmaProviderReportProps): React$1.JSX.Element;
180
+ declare function export_default$2i(props: AsthmaProviderReportProps): React$1.JSX.Element;
181
181
 
182
182
  type ColorDefinition = string | {
183
183
  lightMode?: string;
184
184
  darkMode?: string;
185
185
  };
186
186
  declare function resolveColor(colorScheme: "light" | "dark", colorDefinition?: ColorDefinition): string | undefined;
187
+ declare function getColorFromAssortment(index: number): string;
187
188
 
188
189
  interface ActionProps {
189
190
  title?: string;
@@ -203,7 +204,7 @@ interface ActionProps {
203
204
  subtitleColor?: ColorDefinition;
204
205
  renderAs?: "div" | "button";
205
206
  }
206
- declare function export_default$2c(props: ActionProps): React$1.JSX.Element;
207
+ declare function export_default$2h(props: ActionProps): React$1.JSX.Element;
207
208
 
208
209
  interface ActivityMeterProps {
209
210
  label: string;
@@ -217,7 +218,187 @@ interface ActivityMeterProps {
217
218
  innerRef?: React$1.Ref<HTMLDivElement>;
218
219
  thresholdLabel?: string;
219
220
  }
220
- declare function export_default$2b(props: ActivityMeterProps): React$1.JSX.Element;
221
+ declare function export_default$2g(props: ActivityMeterProps): React$1.JSX.Element;
222
+
223
+ declare enum DailyDataType {
224
+ AppleHealthDistanceWalkingRunning = "AppleHealthDistanceWalkingRunning",
225
+ AppleHealthFlightsClimbed = "AppleHealthFlightsClimbed",
226
+ AppleHealthHeartRateRange = "AppleHealthHeartRateRange",
227
+ AppleHealthHrv = "AppleHealthHrv",
228
+ AppleHealthMaxHeartRate = "AppleHealthMaxHeartRate",
229
+ AppleHealthRestingHeartRate = "AppleHealthRestingHeartRate",
230
+ AppleHealthSleepMinutes = "AppleHealthSleepMinutes",
231
+ AppleHealthRemSleepMinutes = "AppleHealthSleepRemMinutes",
232
+ AppleHealthDeepSleepMinutes = "AppleHealthSleepDeepMinutes",
233
+ AppleHealthCoreSleepMinutes = "AppleHealthSleepCoreMinutes",
234
+ AppleHealthInBedMinutes = "AppleHealthInBedMinutes",
235
+ AppleHealthStandMinutes = "AppleHealthStandMinutes",
236
+ AppleHealthSteps = "AppleHealthSteps",
237
+ AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
238
+ AppleHealthActiveEnergyBurned = "AppleHealthActiveEnergyBurned",
239
+ FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
240
+ FitbitActiveMinutes = "FitbitActiveMinutes",
241
+ FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
242
+ FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
243
+ FitbitVeryActiveMinutes = "FitbitVeryActiveMinutes",
244
+ FitbitBreathingRate = "FitbitBreathingRate",
245
+ FitbitCaloriesBurned = "FitbitCaloriesBurned",
246
+ FitbitElevatedHeartRateMinutes = "FitbitElevatedHeartRateMinutes",
247
+ FitbitFatBurnHeartRateMinutes = "FitbitFatBurnHeartRateMinutes",
248
+ FitbitCardioHeartRateMinutes = "FitbitCardioHeartRateMinutes",
249
+ FitbitPeakHeartRateMinutes = "FitbitPeakHeartRateMinutes",
250
+ FitbitFloors = "FitbitFloors",
251
+ FitbitHrv = "FitbitHrv",
252
+ FitbitRestingHeartRate = "FitbitRestingHeartRate",
253
+ FitbitSleepMinutes = "FitbitSleepMinutes",
254
+ FitbitLightSleepMinutes = "FitbitLightSleepMinutes",
255
+ FitbitRemSleepMinutes = "FitbitRemSleepMinutes",
256
+ FitbitDeepSleepMinutes = "FitbitDeepSleepMinutes",
257
+ FitbitSpO2 = "FitbitSpO2",
258
+ FitbitSteps = "FitbitSteps",
259
+ FitbitWearMinutes = "FitbitWearMinutes",
260
+ GarminSteps = "GarminSteps",
261
+ GarminDistance = "GarminDistance",
262
+ GarminFloors = "GarminFloors",
263
+ GarminActiveMinutes = "GarminActiveMinutes",
264
+ GarminActiveCalories = "GarminActiveCalories",
265
+ GarminRestingCalories = "GarminRestingCalories",
266
+ GarminTotalCalories = "GarminTotalCalories",
267
+ GarminRestingHeartRate = "GarminRestingHeartRate",
268
+ GarminMinHeartRate = "GarminMinHeartRate",
269
+ GarminMaxHeartRate = "GarminMaxHeartRate",
270
+ GarminAverageHeartRate = "GarminAverageHeartRate",
271
+ GarminMaxStressLevel = "GarminMaxStressLevel",
272
+ GarminAverageStressLevel = "GarminAverageStressLevel",
273
+ GarminTotalStressMinutes = "GarminTotalStressMinutes",
274
+ GarminLowStressMinutes = "GarminLowStressMinutes",
275
+ GarminMediumStressMinutes = "GarminMediumStressMinutes",
276
+ GarminHighStressMinutes = "GarminHighStressMinutes",
277
+ GarminTotalSleepMinutes = "GarminTotalSleepMinutes",
278
+ GarminLightSleepMinutes = "GarminLightSleepMinutes",
279
+ GarminDeepSleepMinutes = "GarminDeepSleepMinutes",
280
+ GarminRemSleepMinutes = "GarminRemSleepMinutes",
281
+ GarminAwakeMinutes = "GarminAwakeMinutes",
282
+ GarminSleepScore = "GarminSleepScore",
283
+ GoogleFitSteps = "GoogleFitSteps",
284
+ Steps = "Steps",
285
+ RestingHeartRate = "RestingHeartRate",
286
+ SleepMinutes = "SleepMinutes",
287
+ HomeAirQuality = "HomeAirQuality",
288
+ WorkAirQuality = "WorkAirQuality"
289
+ }
290
+ interface DailyDataTypeDefinition {
291
+ dataSource?: "Unified" | "AppleHealth" | "Garmin" | "Fitbit" | "GoogleFit" | "AirQuality";
292
+ type: string;
293
+ dataProvider: DailyDataProvider;
294
+ availabilityCheck: DailyDataAvailabilityCheck;
295
+ labelKey?: string;
296
+ icon: ReactElement;
297
+ formatter: (value: number) => string;
298
+ yAxisConverter?: (value: number) => number;
299
+ previewDataRange: [number, number];
300
+ }
301
+
302
+ type DailyDataQueryResult = {
303
+ [key: string]: number;
304
+ };
305
+ type DailyDataProvider = (startDate: Date, endDate: Date) => Promise<DailyDataQueryResult>;
306
+ type DailyDataAvailabilityCheck = (modifiedAfter?: Date) => Promise<boolean>;
307
+ declare function registerDailyDataProvider(type: string, provider: DailyDataProvider, availabilityCheck: DailyDataAvailabilityCheck): void;
308
+ declare function registerDailyDataTypeDefinition(typeDefinition: DailyDataTypeDefinition): void;
309
+ declare function checkDailyDataAvailability(type: string, modifiedAfter?: Date): Promise<boolean>;
310
+ declare function queryDailyData(type: string, startDate: Date, endDate: Date, preview?: boolean): Promise<DailyDataQueryResult>;
311
+ declare function queryPreviewDailyData(type: string, startDate: Date, endDate: Date): Promise<DailyDataQueryResult>;
312
+ declare function getAllDailyDataTypes(): DailyDataTypeDefinition[];
313
+ declare function getDailyDataTypeDefinition(dataType: string): DailyDataTypeDefinition;
314
+
315
+ type Language = "" | "en" | "es" | "nl" | "de" | "fr" | "pt" | "it" | "pl";
316
+ declare function language(key: string, specifiedLanguage?: string): string;
317
+ declare function getLanguageFromIso(language: string): Language;
318
+
319
+ declare function getLocaleFromIso(language: string): Locale;
320
+
321
+ declare function getDayKey(date: Date): string;
322
+
323
+ type WeekStartsOn = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "6DaysAgo" | "7DaysAgo";
324
+ declare function getWeekStart(weekStartsOn?: WeekStartsOn): Date;
325
+ declare function getMonthStart(): Date;
326
+
327
+ type BloodPressureDeviceDataSource = 'AppleHealth' | 'GoogleFit' | 'Omron';
328
+ declare function export_default$2f(surveyDataSource?: SurveyBloodPressureDataParameters, bloodPressureDeviceDataSources?: BloodPressureDeviceDataSource[]): Promise<BloodPressureDataPoint[]>;
329
+
330
+ interface SurveyBloodPressureDataParameters {
331
+ surveyName: string;
332
+ dateResultIdentifier?: string;
333
+ systolicResultIdentifier: string;
334
+ diastolicResultIdentifier: string;
335
+ }
336
+ interface BloodPressureDataPoint {
337
+ date: Date;
338
+ systolic: number;
339
+ diastolic: number;
340
+ }
341
+
342
+ declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
343
+
344
+ interface RelativeActivityQueryResult {
345
+ relativePercent: number;
346
+ value: number;
347
+ threshold: number;
348
+ }
349
+ interface RelativeActivityDataType {
350
+ dailyDataType: string;
351
+ color?: ColorDefinition;
352
+ overThresholdColor?: ColorDefinition;
353
+ threshold?: number | "30DayAverage";
354
+ label?: string;
355
+ icon?: React.ReactElement;
356
+ formatter?: (number: number) => string;
357
+ }
358
+ declare function queryRelativeActivity(startDate: Date, endDate: Date, dataTypes: RelativeActivityDataType[], preview: boolean): Promise<{
359
+ [key: string]: {
360
+ [key: string]: RelativeActivityQueryResult;
361
+ };
362
+ }>;
363
+
364
+ interface PointsAndBadgesState {
365
+ points: number;
366
+ badges: number;
367
+ }
368
+ declare function getCurrentPointsAndBadges(): Promise<PointsAndBadgesState>;
369
+ declare function persistCurrentPointsAndBadges(state: PointsAndBadgesState): Promise<void>;
370
+ interface BasicPointsForBadgesActivity {
371
+ key: string;
372
+ type: "dailyData" | "surveyCompleted" | "connectExternalAccount";
373
+ points: number;
374
+ }
375
+ interface DailyDataActivity extends BasicPointsForBadgesActivity {
376
+ type: "dailyData";
377
+ activationDate: Date;
378
+ awardThreshold: number;
379
+ dailyDataType: string;
380
+ }
381
+ interface SurveyCompletionActivity extends BasicPointsForBadgesActivity {
382
+ type: "surveyCompleted";
383
+ surveyName: string;
384
+ limit?: number;
385
+ }
386
+ interface ConnectExternalAccountActivity extends BasicPointsForBadgesActivity {
387
+ type: "connectExternalAccount";
388
+ category: string;
389
+ }
390
+ declare function pointsForActivity(activity: BasicPointsForBadgesActivity, activityState?: string): Promise<number>;
391
+
392
+ declare function simpleAvailabilityCheck(namespace: DeviceDataNamespace, type: string | string[]): (modifiedAfter?: Date) => Promise<boolean>;
393
+
394
+ declare const allTypeDefinitions: DailyDataTypeDefinition[];
395
+
396
+ interface BasicBadgeProps {
397
+ backgroundColor?: ColorDefinition;
398
+ size?: "small" | "xl";
399
+ children?: ReactElement;
400
+ }
401
+ declare function export_default$2e(props: BasicBadgeProps): React$1.JSX.Element;
221
402
 
222
403
  type ButtonVariant = "default" | "subtle" | "light";
223
404
  interface ButtonProps {
@@ -232,7 +413,7 @@ interface ButtonProps {
232
413
  defaultMargin?: boolean;
233
414
  fullWidth?: boolean;
234
415
  }
235
- declare function export_default$2a(props: ButtonProps): React$1.JSX.Element;
416
+ declare function export_default$2d(props: ButtonProps): React$1.JSX.Element;
236
417
 
237
418
  interface CalendarProps {
238
419
  month: number;
@@ -242,7 +423,7 @@ interface CalendarProps {
242
423
  className?: string;
243
424
  innerRef?: React$1.Ref<HTMLDivElement>;
244
425
  }
245
- declare function export_default$29(props: CalendarProps): React$1.JSX.Element;
426
+ declare function export_default$2c(props: CalendarProps): React$1.JSX.Element;
246
427
 
247
428
  type CalendarDayStateConfiguration = Record<string, {
248
429
  style?: CSSProperties;
@@ -258,7 +439,7 @@ interface CalendarDayProps {
258
439
  onClick?: (date: Date) => void;
259
440
  innerRef?: React$1.Ref<HTMLDivElement>;
260
441
  }
261
- declare function export_default$28(props: CalendarDayProps): React$1.JSX.Element;
442
+ declare function export_default$2b(props: CalendarDayProps): React$1.JSX.Element;
262
443
 
263
444
  interface CardProps {
264
445
  className?: string;
@@ -269,7 +450,7 @@ interface CardProps {
269
450
  backgroundColor?: ColorDefinition;
270
451
  style?: React$1.CSSProperties;
271
452
  }
272
- declare function export_default$27(props: CardProps): React$1.JSX.Element | null;
453
+ declare function export_default$2a(props: CardProps): React$1.JSX.Element | null;
273
454
 
274
455
  interface CardTitleProps {
275
456
  title: string;
@@ -278,11 +459,7 @@ interface CardTitleProps {
278
459
  innerRef?: React$1.Ref<HTMLDivElement>;
279
460
  color?: ColorDefinition;
280
461
  }
281
- declare function export_default$26(props: CardTitleProps): React$1.JSX.Element;
282
-
283
- type WeekStartsOn = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "6DaysAgo" | "7DaysAgo";
284
- declare function getWeekStart(weekStartsOn?: WeekStartsOn): Date;
285
- declare function getMonthStart(): Date;
462
+ declare function export_default$29(props: CardTitleProps): React$1.JSX.Element;
286
463
 
287
464
  interface DateRangeCoordinatorProps {
288
465
  initialIntervalStart?: Date;
@@ -309,7 +486,7 @@ interface DateRangeNavigatorProps {
309
486
  innerRef?: React$1.Ref<HTMLDivElement>;
310
487
  sticky?: boolean;
311
488
  }
312
- declare function export_default$25(props: DateRangeNavigatorProps): React$1.JSX.Element;
489
+ declare function export_default$28(props: DateRangeNavigatorProps): React$1.JSX.Element;
313
490
 
314
491
  interface TitleProps {
315
492
  color?: ColorDefinition;
@@ -323,7 +500,7 @@ interface TitleProps {
323
500
  defaultMargin?: boolean;
324
501
  innerRef?: React$1.Ref<HTMLDivElement>;
325
502
  }
326
- declare function export_default$24(props: TitleProps): React$1.JSX.Element;
503
+ declare function export_default$27(props: TitleProps): React$1.JSX.Element;
327
504
 
328
505
  interface DateRangeTitleProps extends TitleProps {
329
506
  color?: ColorDefinition;
@@ -341,7 +518,7 @@ interface DayTrackerSymbolProps {
341
518
  size?: "small" | "large";
342
519
  innerRef?: React$1.Ref<HTMLDivElement>;
343
520
  }
344
- declare function export_default$23(props: DayTrackerSymbolProps): React$1.JSX.Element;
521
+ declare function export_default$26(props: DayTrackerSymbolProps): React$1.JSX.Element;
345
522
 
346
523
  interface ClosedInterval {
347
524
  values: number[];
@@ -368,7 +545,7 @@ declare enum DumbbellClass {
368
545
  "mdhui-dumbbell-in-range" = 0,
369
546
  "mdhui-dumbbell-out-of-range" = 1
370
547
  }
371
- declare function export_default$22(props: DumbBellChartProps): React$1.JSX.Element;
548
+ declare function export_default$25(props: DumbBellChartProps): React$1.JSX.Element;
372
549
 
373
550
  interface FaceProps {
374
551
  faceValue?: number;
@@ -377,7 +554,22 @@ interface FaceProps {
377
554
  className?: string;
378
555
  innerRef?: React$1.Ref<HTMLButtonElement>;
379
556
  }
380
- declare function export_default$21(props: FaceProps): React$1.JSX.Element;
557
+ declare function export_default$24(props: FaceProps): React$1.JSX.Element;
558
+
559
+ interface GridProps {
560
+ children?: React$1.ReactNode;
561
+ gap?: number;
562
+ style?: React$1.CSSProperties;
563
+ className?: string;
564
+ }
565
+ interface GridColumnProps {
566
+ children?: React$1.ReactNode;
567
+ span: number;
568
+ }
569
+ declare function Grid(props: GridProps): React$1.JSX.Element;
570
+ declare namespace Grid {
571
+ var Column: (props: GridColumnProps) => React$1.JSX.Element;
572
+ }
381
573
 
382
574
  interface HistogramProps {
383
575
  entries: {
@@ -389,7 +581,7 @@ interface HistogramProps {
389
581
  className?: string;
390
582
  innerRef?: React$1.Ref<HTMLDivElement>;
391
583
  }
392
- declare function export_default$20(props: HistogramProps): React$1.JSX.Element;
584
+ declare function export_default$23(props: HistogramProps): React$1.JSX.Element;
393
585
 
394
586
  interface LayoutProps {
395
587
  children?: React$1.ReactNode;
@@ -410,7 +602,7 @@ interface LayoutContext {
410
602
  bodyBackgroundColor: string;
411
603
  }
412
604
  declare const LayoutContext: React$1.Context<LayoutContext>;
413
- declare function export_default$1$(props: LayoutProps): React$1.JSX.Element;
605
+ declare function export_default$22(props: LayoutProps): React$1.JSX.Element;
414
606
 
415
607
  interface LoadingIndicatorProps {
416
608
  variant?: "default" | "inline";
@@ -431,7 +623,7 @@ interface MonthlyEventMatrixProps {
431
623
  innerRef?: React$1.Ref<HTMLTableElement>;
432
624
  intervalStart: Date;
433
625
  }
434
- declare function export_default$1_(props: MonthlyEventMatrixProps): React$1.JSX.Element;
626
+ declare function export_default$21(props: MonthlyEventMatrixProps): React$1.JSX.Element;
435
627
 
436
628
  interface NavigationBarProps {
437
629
  title?: string;
@@ -450,7 +642,7 @@ interface NavigationBarProps {
450
642
  navigationBarRight?: React$1.ReactNode;
451
643
  backgroundColor?: ColorDefinition;
452
644
  }
453
- declare function export_default$1Z(props: NavigationBarProps): React$1.JSX.Element;
645
+ declare function export_default$20(props: NavigationBarProps): React$1.JSX.Element;
454
646
 
455
647
  interface NotesInputProps {
456
648
  autoTimestamp?: boolean;
@@ -458,7 +650,7 @@ interface NotesInputProps {
458
650
  onChange(value: string): void;
459
651
  value: string;
460
652
  }
461
- declare function export_default$1Y(props: NotesInputProps): React$1.JSX.Element;
653
+ declare function export_default$1$(props: NotesInputProps): React$1.JSX.Element;
462
654
 
463
655
  interface ProgressBarProps {
464
656
  backgroundColor?: ColorDefinition;
@@ -496,7 +688,7 @@ interface ProgressRingProps {
496
688
  percentCompleted?: number;
497
689
  animate?: boolean;
498
690
  }
499
- declare function export_default$1X(props: ProgressRingProps): React$1.JSX.Element;
691
+ declare function export_default$1_(props: ProgressRingProps): React$1.JSX.Element;
500
692
 
501
693
  type ResourceImageAlignment = 'left' | 'center' | 'right';
502
694
  type ResourceButtonVariant = 'button' | 'link';
@@ -510,7 +702,7 @@ interface ResourceProps {
510
702
  onClick: () => void;
511
703
  innerRef?: React$1.Ref<HTMLDivElement>;
512
704
  }
513
- declare function export_default$1W(props: ResourceProps): React$1.JSX.Element;
705
+ declare function export_default$1Z(props: ResourceProps): React$1.JSX.Element;
514
706
 
515
707
  type ResourceListPreviewState = 'no resources' | 'some resources';
516
708
 
@@ -530,7 +722,7 @@ interface ResourceListProps {
530
722
  buttonText?: string;
531
723
  innerRef?: React$1.Ref<HTMLDivElement>;
532
724
  }
533
- declare function export_default$1V(props: ResourceListProps): React$1.JSX.Element;
725
+ declare function export_default$1Y(props: ResourceListProps): React$1.JSX.Element;
534
726
 
535
727
  type RotatingComponentInterval = 'day' | 'week' | 'month';
536
728
  interface RotatingComponentCoordinatorProps {
@@ -539,7 +731,7 @@ interface RotatingComponentCoordinatorProps {
539
731
  startDate: Date;
540
732
  innerRef?: React$1.Ref<HTMLDivElement>;
541
733
  }
542
- declare function export_default$1U(props: RotatingComponentCoordinatorProps): React$1.JSX.Element;
734
+ declare function export_default$1X(props: RotatingComponentCoordinatorProps): React$1.JSX.Element;
543
735
 
544
736
  interface SectionProps {
545
737
  children?: React$1.ReactNode;
@@ -549,7 +741,7 @@ interface SectionProps {
549
741
  backgroundColor?: ColorDefinition;
550
742
  style?: React$1.CSSProperties;
551
743
  }
552
- declare function export_default$1T(props: SectionProps): React$1.JSX.Element | null;
744
+ declare function export_default$1W(props: SectionProps): React$1.JSX.Element | null;
553
745
 
554
746
  interface SegmentedControlProps {
555
747
  segments: {
@@ -563,9 +755,9 @@ interface SegmentedControlProps {
563
755
  variant?: "default" | "optionsHorizontal" | "optionsVertical";
564
756
  innerRef?: React$1.Ref<HTMLDivElement>;
565
757
  }
566
- declare function export_default$1S(props: SegmentedControlProps): React$1.JSX.Element;
758
+ declare function export_default$1V(props: SegmentedControlProps): React$1.JSX.Element;
567
759
 
568
- declare function export_default$1R(): React$1.JSX.Element;
760
+ declare function export_default$1U(): React$1.JSX.Element;
569
761
 
570
762
  interface SingleDataPointProps {
571
763
  label: string;
@@ -576,7 +768,7 @@ interface SingleDataPointProps {
576
768
  onClick?: () => void;
577
769
  innerRef?: React$1.Ref<HTMLDivElement>;
578
770
  }
579
- declare function export_default$1Q(props: SingleDataPointProps): React$1.JSX.Element;
771
+ declare function export_default$1T(props: SingleDataPointProps): React$1.JSX.Element;
580
772
 
581
773
  interface SingleExternalAccountProps {
582
774
  externalAccount: ExternalAccount;
@@ -584,13 +776,13 @@ interface SingleExternalAccountProps {
584
776
  onReconnectAccount: (account: ExternalAccount) => void;
585
777
  innerRef?: React$1.Ref<HTMLDivElement>;
586
778
  }
587
- declare function export_default$1P(props: SingleExternalAccountProps): React$1.JSX.Element;
779
+ declare function export_default$1S(props: SingleExternalAccountProps): React$1.JSX.Element;
588
780
 
589
781
  interface SingleNotificationProps {
590
782
  notification: Notification;
591
783
  innerRef?: React$1.Ref<HTMLDivElement>;
592
784
  }
593
- declare function export_default$1O(props: SingleNotificationProps): React$1.JSX.Element;
785
+ declare function export_default$1R(props: SingleNotificationProps): React$1.JSX.Element;
594
786
 
595
787
  type SingleSurveyTaskVariant = 'default' | 'expanded';
596
788
  interface SingleSurveyTaskProps {
@@ -603,7 +795,7 @@ interface SingleSurveyTaskProps {
603
795
  buttonVariant?: ButtonVariant;
604
796
  innerRef?: React$1.Ref<HTMLDivElement>;
605
797
  }
606
- declare function export_default$1N(props: SingleSurveyTaskProps): React$1.JSX.Element | null;
798
+ declare function export_default$1Q(props: SingleSurveyTaskProps): React$1.JSX.Element | null;
607
799
 
608
800
  interface SparkBarChartProps {
609
801
  averageFillPercent?: number;
@@ -614,7 +806,7 @@ interface SparkBarChartBar {
614
806
  color: ColorDefinition;
615
807
  barFillPercent: number;
616
808
  }
617
- declare function export_default$1M(props: SparkBarChartProps): React$1.JSX.Element;
809
+ declare function export_default$1P(props: SparkBarChartProps): React$1.JSX.Element;
618
810
 
619
811
  interface SwitchProps {
620
812
  isOn: Boolean;
@@ -623,7 +815,7 @@ interface SwitchProps {
623
815
  className?: string;
624
816
  innerRef?: React$1.Ref<HTMLButtonElement>;
625
817
  }
626
- declare function export_default$1L(props: SwitchProps): React$1.JSX.Element;
818
+ declare function export_default$1O(props: SwitchProps): React$1.JSX.Element;
627
819
 
628
820
  interface StatusBarBackgroundProps {
629
821
  color?: string;
@@ -638,7 +830,7 @@ interface TextBlockProps {
638
830
  color?: ColorDefinition;
639
831
  style?: React$1.CSSProperties;
640
832
  }
641
- declare function export_default$1K(props: TextBlockProps): React$1.JSX.Element | null;
833
+ declare function export_default$1N(props: TextBlockProps): React$1.JSX.Element | null;
642
834
 
643
835
  interface TrackerItemProps {
644
836
  selected: boolean;
@@ -650,7 +842,7 @@ interface TrackerItemProps {
650
842
  className?: string;
651
843
  noBoxShadow?: boolean;
652
844
  }
653
- declare function export_default$1J(props: TrackerItemProps): React$1.JSX.Element;
845
+ declare function export_default$1M(props: TrackerItemProps): React$1.JSX.Element;
654
846
 
655
847
  interface UnstyledButtonProps {
656
848
  onClick: MouseEventHandler;
@@ -661,7 +853,7 @@ interface UnstyledButtonProps {
661
853
  disabled?: boolean;
662
854
  innerRef?: React$1.Ref<HTMLButtonElement>;
663
855
  }
664
- declare function export_default$1I(props: UnstyledButtonProps): React$1.JSX.Element;
856
+ declare function export_default$1L(props: UnstyledButtonProps): React$1.JSX.Element;
665
857
 
666
858
  interface ValueSelectorProps {
667
859
  title?: string;
@@ -682,7 +874,7 @@ interface ValueSelectorProps {
682
874
  preventEmptySelections?: boolean;
683
875
  innerRef?: React$1.Ref<HTMLDivElement>;
684
876
  }
685
- declare function export_default$1H(props: ValueSelectorProps): React$1.JSX.Element;
877
+ declare function export_default$1K(props: ValueSelectorProps): React$1.JSX.Element;
686
878
 
687
879
  interface ViewHeaderProps {
688
880
  title?: string;
@@ -691,7 +883,7 @@ interface ViewHeaderProps {
691
883
  subtitleColor?: ColorDefinition;
692
884
  action?: React$1.ReactNode;
693
885
  }
694
- declare function export_default$1G(props: ViewHeaderProps): React$1.JSX.Element | null;
886
+ declare function export_default$1J(props: ViewHeaderProps): React$1.JSX.Element | null;
695
887
 
696
888
  interface WeekCalendarProps {
697
889
  selectedDate?: Date;
@@ -703,7 +895,7 @@ interface WeekCalendarProps {
703
895
  dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
704
896
  innerRef?: React$1.Ref<HTMLDivElement>;
705
897
  }
706
- declare function export_default$1F(props: WeekCalendarProps): React$1.JSX.Element;
898
+ declare function export_default$1I(props: WeekCalendarProps): React$1.JSX.Element;
707
899
 
708
900
  interface InboxCompletedListItemProps {
709
901
  name: string;
@@ -711,14 +903,14 @@ interface InboxCompletedListItemProps {
711
903
  onClick?: () => void;
712
904
  innerRef?: React$1.Ref<HTMLDivElement>;
713
905
  }
714
- declare function export_default$1E(props: InboxCompletedListItemProps): React$1.JSX.Element;
906
+ declare function export_default$1H(props: InboxCompletedListItemProps): React$1.JSX.Element;
715
907
 
716
908
  interface InboxMessageListItemProps {
717
909
  message: InboxMessage;
718
910
  onClick: () => void;
719
911
  innerRef?: React$1.Ref<HTMLDivElement>;
720
912
  }
721
- declare function export_default$1D(props: InboxMessageListItemProps): React$1.JSX.Element | null;
913
+ declare function export_default$1G(props: InboxMessageListItemProps): React$1.JSX.Element | null;
722
914
 
723
915
  interface InboxResourceListItemProps {
724
916
  resource: InboxResource;
@@ -728,7 +920,7 @@ interface InboxResourceListItemProps {
728
920
  buttonText?: string;
729
921
  innerRef?: React$1.Ref<HTMLDivElement>;
730
922
  }
731
- declare function export_default$1C(props: InboxResourceListItemProps): React$1.JSX.Element | null;
923
+ declare function export_default$1F(props: InboxResourceListItemProps): React$1.JSX.Element | null;
732
924
 
733
925
  type InboxSurveyVariant = 'default' | 'expanded';
734
926
  interface InboxSurveyListItemProps {
@@ -738,7 +930,7 @@ interface InboxSurveyListItemProps {
738
930
  surveyActive?: boolean;
739
931
  innerRef?: React$1.Ref<HTMLDivElement>;
740
932
  }
741
- declare function export_default$1B(props: InboxSurveyListItemProps): React$1.JSX.Element | null;
933
+ declare function export_default$1E(props: InboxSurveyListItemProps): React$1.JSX.Element | null;
742
934
 
743
935
  interface AsthmaRecommendedArticleProps {
744
936
  previewState?: 'none' | 'default';
@@ -750,7 +942,7 @@ interface AsthmaRecommendedArticleProps {
750
942
  style?: React$1.CSSProperties;
751
943
  innerRef?: React$1.Ref<HTMLDivElement>;
752
944
  }
753
- declare function export_default$1A(props: AsthmaRecommendedArticleProps): React$1.JSX.Element | null;
945
+ declare function export_default$1D(props: AsthmaRecommendedArticleProps): React$1.JSX.Element | null;
754
946
 
755
947
  declare enum AsthmaDailyDataType {
756
948
  Steps = "Asthma.Steps",
@@ -805,7 +997,7 @@ interface AsthmaActionPlanViewProps {
805
997
  learnMoreUrl: string;
806
998
  editActionPlanSurveyName: string;
807
999
  }
808
- declare function export_default$1z(props: AsthmaActionPlanViewProps): React$1.JSX.Element;
1000
+ declare function export_default$1C(props: AsthmaActionPlanViewProps): React$1.JSX.Element;
809
1001
 
810
1002
  interface AsthmaActivityViewProps {
811
1003
  colorScheme?: 'light' | 'dark' | 'auto';
@@ -813,7 +1005,7 @@ interface AsthmaActivityViewProps {
813
1005
  alert?: 'Steps';
814
1006
  logEntrySurveyName: string;
815
1007
  }
816
- declare function export_default$1y(props: AsthmaActivityViewProps): React$1.JSX.Element;
1008
+ declare function export_default$1B(props: AsthmaActivityViewProps): React$1.JSX.Element;
817
1009
 
818
1010
  interface AsthmaAirQualityViewProps {
819
1011
  colorScheme?: 'light' | 'dark' | 'auto';
@@ -821,14 +1013,14 @@ interface AsthmaAirQualityViewProps {
821
1013
  alert?: 'HomeAirQuality' | 'WorkAirQuality';
822
1014
  logEntrySurveyName: string;
823
1015
  }
824
- declare function export_default$1x(props: AsthmaAirQualityViewProps): React$1.JSX.Element;
1016
+ declare function export_default$1A(props: AsthmaAirQualityViewProps): React$1.JSX.Element;
825
1017
 
826
1018
  interface AsthmaAlertTakeoverViewProps {
827
1019
  colorScheme?: 'light' | 'dark' | 'auto';
828
1020
  previewState?: 'default';
829
1021
  logEntrySurveyName: string;
830
1022
  }
831
- declare function export_default$1w(props: AsthmaAlertTakeoverViewProps): React$1.JSX.Element;
1023
+ declare function export_default$1z(props: AsthmaAlertTakeoverViewProps): React$1.JSX.Element;
832
1024
 
833
1025
  interface AsthmaDayViewProps {
834
1026
  colorScheme?: 'light' | 'dark' | 'auto';
@@ -843,7 +1035,7 @@ interface AsthmaDayViewProps {
843
1035
  sleepUrl: string;
844
1036
  airQualityUrl: string;
845
1037
  }
846
- declare function export_default$1v(props: AsthmaDayViewProps): React$1.JSX.Element;
1038
+ declare function export_default$1y(props: AsthmaDayViewProps): React$1.JSX.Element;
847
1039
 
848
1040
  interface AsthmaHeartAndLungsViewProps {
849
1041
  colorScheme?: 'light' | 'dark' | 'auto';
@@ -851,7 +1043,7 @@ interface AsthmaHeartAndLungsViewProps {
851
1043
  alert?: 'DaytimeRestingHeartRate' | 'NighttimeRestingHeartRate' | 'RespiratoryRate' | 'DaytimeBloodOxygenLevel' | 'NighttimeBloodOxygenLevel';
852
1044
  logEntrySurveyName: string;
853
1045
  }
854
- declare function export_default$1u(props: AsthmaHeartAndLungsViewProps): React$1.JSX.Element;
1046
+ declare function export_default$1x(props: AsthmaHeartAndLungsViewProps): React$1.JSX.Element;
855
1047
 
856
1048
  type AsthmaLogEntryEditorViewPreviewState = 'no symptoms' | 'mild symptoms' | 'moderate symptoms' | 'severe symptoms';
857
1049
 
@@ -860,13 +1052,13 @@ interface AsthmaLogEntryEditorViewProps {
860
1052
  previewState?: 'loading' | AsthmaLogEntryEditorViewPreviewState;
861
1053
  date: Date;
862
1054
  }
863
- declare function export_default$1t(props: AsthmaLogEntryEditorViewProps): React$1.JSX.Element | null;
1055
+ declare function export_default$1w(props: AsthmaLogEntryEditorViewProps): React$1.JSX.Element | null;
864
1056
 
865
1057
  interface AsthmaProviderReportViewProps {
866
1058
  previewState?: 'loading' | AsthmaProviderReportPreviewState;
867
1059
  logEntrySurveyName: string;
868
1060
  }
869
- declare function export_default$1s(props: AsthmaProviderReportViewProps): React$1.JSX.Element;
1061
+ declare function export_default$1v(props: AsthmaProviderReportViewProps): React$1.JSX.Element;
870
1062
 
871
1063
  interface AsthmaSleepViewProps {
872
1064
  colorScheme?: 'light' | 'dark' | 'auto';
@@ -874,7 +1066,7 @@ interface AsthmaSleepViewProps {
874
1066
  alert?: 'SleepDisturbances';
875
1067
  logEntrySurveyName: string;
876
1068
  }
877
- declare function export_default$1r(props: AsthmaSleepViewProps): React$1.JSX.Element;
1069
+ declare function export_default$1u(props: AsthmaSleepViewProps): React$1.JSX.Element;
878
1070
 
879
1071
  interface TermInformation {
880
1072
  TermFamily: string;
@@ -887,7 +1079,7 @@ interface AllergiesListProps {
887
1079
  onViewTermInfo(termInfo: TermInformation): void;
888
1080
  innerRef?: React$1.Ref<HTMLDivElement>;
889
1081
  }
890
- declare function export_default$1q(props: AllergiesListProps): React$1.JSX.Element;
1082
+ declare function export_default$1t(props: AllergiesListProps): React$1.JSX.Element;
891
1083
 
892
1084
  interface AppDownloadProps {
893
1085
  previewProjectPlatforms?: string[];
@@ -896,22 +1088,25 @@ interface AppDownloadProps {
896
1088
  title?: string;
897
1089
  text?: string;
898
1090
  }
899
- declare function export_default$1p(props: AppDownloadProps): React$1.JSX.Element | null;
1091
+ declare function export_default$1s(props: AppDownloadProps): React$1.JSX.Element | null;
900
1092
 
901
- type BloodPressureDeviceDataSource = 'AppleHealth' | 'GoogleFit' | 'Omron';
902
- declare function export_default$1o(surveyDataSource?: SurveyBloodPressureDataParameters, bloodPressureDeviceDataSources?: BloodPressureDeviceDataSource[]): Promise<BloodPressureDataPoint[]>;
903
-
904
- interface SurveyBloodPressureDataParameters {
905
- surveyName: string;
906
- dateResultIdentifier?: string;
907
- systolicResultIdentifier: string;
908
- diastolicResultIdentifier: string;
1093
+ interface BasicPointsForBadgesProps {
1094
+ pointsPerBadge: number;
1095
+ activities: BasicPointsForBadgesActivity[];
1096
+ previewState?: "Default";
1097
+ titleColor?: ColorDefinition;
1098
+ progressBarFillColor?: ColorDefinition;
1099
+ pointsLabelColor?: ColorDefinition;
1100
+ awardBadgesViewUrl: string;
1101
+ showTotalPoints?: boolean;
909
1102
  }
910
- interface BloodPressureDataPoint {
911
- date: Date;
912
- systolic: number;
913
- diastolic: number;
1103
+ declare function export_default$1r(props: BasicPointsForBadgesProps): React$1.JSX.Element;
1104
+
1105
+ interface BasicBadgesProps {
1106
+ badgeCount?: number;
1107
+ title?: string;
914
1108
  }
1109
+ declare function export_default$1q(props: BasicBadgesProps): React$1.JSX.Element | null;
915
1110
 
916
1111
  type BloodPressurePreviewState = "Default" | "NoData" | "Loading";
917
1112
  interface BloodPressureVisualizationProps {
@@ -921,14 +1116,14 @@ interface BloodPressureVisualizationProps {
921
1116
  deviceDataSource?: BloodPressureDeviceDataSource[];
922
1117
  innerRef?: React$1.Ref<HTMLDivElement>;
923
1118
  }
924
- declare function export_default$1n(props: BloodPressureVisualizationProps): React$1.JSX.Element;
1119
+ declare function export_default$1p(props: BloodPressureVisualizationProps): React$1.JSX.Element;
925
1120
 
926
1121
  interface ConditionsListProps {
927
1122
  previewState?: "default";
928
1123
  onViewTermInfo(termInfo: TermInformation): void;
929
1124
  innerRef?: React$1.Ref<HTMLDivElement>;
930
1125
  }
931
- declare function export_default$1m(props: ConditionsListProps): React$1.JSX.Element;
1126
+ declare function export_default$1o(props: ConditionsListProps): React$1.JSX.Element;
932
1127
 
933
1128
  type DeviceAccountType = "Fitbit" | "Garmin" | "AppleHealth" | "GoogleFit" | "Omron";
934
1129
  interface ConnectDevicesMenuProps {
@@ -939,7 +1134,7 @@ interface ConnectDevicesMenuProps {
939
1134
  previewState?: "iOS" | "Android" | "Web" | "ConnectedStates";
940
1135
  headerVariant?: "large" | "medium";
941
1136
  }
942
- declare function export_default$1l(props: ConnectDevicesMenuProps): React$1.JSX.Element | null;
1137
+ declare function export_default$1n(props: ConnectDevicesMenuProps): React$1.JSX.Element | null;
943
1138
 
944
1139
  interface ConnectEhrProps {
945
1140
  applicationUrl: ConnectEhrApplicationUrl;
@@ -956,7 +1151,7 @@ interface ConnectEhrProps {
956
1151
  }
957
1152
  type ConnectEhrApplicationUrl = "preview" | string;
958
1153
  type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
959
- declare function export_default$1k(props: ConnectEhrProps): React$1.JSX.Element | null;
1154
+ declare function export_default$1m(props: ConnectEhrProps): React$1.JSX.Element | null;
960
1155
 
961
1156
  interface ConnectFitbitProps {
962
1157
  title?: string;
@@ -967,7 +1162,7 @@ interface ConnectFitbitProps {
967
1162
  hideWhenConnected?: boolean;
968
1163
  }
969
1164
  type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
970
- declare function export_default$1j(props: ConnectFitbitProps): React$1.JSX.Element;
1165
+ declare function export_default$1l(props: ConnectFitbitProps): React$1.JSX.Element;
971
1166
 
972
1167
  interface ConnectGarminProps {
973
1168
  title?: string;
@@ -978,132 +1173,25 @@ interface ConnectGarminProps {
978
1173
  hideWhenConnected?: boolean;
979
1174
  }
980
1175
  type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
981
- declare function export_default$1i(props: ConnectGarminProps): React$1.JSX.Element;
1176
+ declare function export_default$1k(props: ConnectGarminProps): React$1.JSX.Element;
982
1177
 
983
- declare enum DailyDataType {
984
- AppleHealthDistanceWalkingRunning = "AppleHealthDistanceWalkingRunning",
985
- AppleHealthFlightsClimbed = "AppleHealthFlightsClimbed",
986
- AppleHealthHeartRateRange = "AppleHealthHeartRateRange",
987
- AppleHealthHrv = "AppleHealthHrv",
988
- AppleHealthMaxHeartRate = "AppleHealthMaxHeartRate",
989
- AppleHealthRestingHeartRate = "AppleHealthRestingHeartRate",
990
- AppleHealthSleepMinutes = "AppleHealthSleepMinutes",
991
- AppleHealthRemSleepMinutes = "AppleHealthSleepRemMinutes",
992
- AppleHealthDeepSleepMinutes = "AppleHealthSleepDeepMinutes",
993
- AppleHealthCoreSleepMinutes = "AppleHealthSleepCoreMinutes",
994
- AppleHealthInBedMinutes = "AppleHealthInBedMinutes",
995
- AppleHealthStandMinutes = "AppleHealthStandMinutes",
996
- AppleHealthSteps = "AppleHealthSteps",
997
- AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
998
- AppleHealthActiveEnergyBurned = "AppleHealthActiveEnergyBurned",
999
- FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
1000
- FitbitActiveMinutes = "FitbitActiveMinutes",
1001
- FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
1002
- FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
1003
- FitbitVeryActiveMinutes = "FitbitVeryActiveMinutes",
1004
- FitbitBreathingRate = "FitbitBreathingRate",
1005
- FitbitCaloriesBurned = "FitbitCaloriesBurned",
1006
- FitbitElevatedHeartRateMinutes = "FitbitElevatedHeartRateMinutes",
1007
- FitbitFatBurnHeartRateMinutes = "FitbitFatBurnHeartRateMinutes",
1008
- FitbitCardioHeartRateMinutes = "FitbitCardioHeartRateMinutes",
1009
- FitbitPeakHeartRateMinutes = "FitbitPeakHeartRateMinutes",
1010
- FitbitFloors = "FitbitFloors",
1011
- FitbitHrv = "FitbitHrv",
1012
- FitbitRestingHeartRate = "FitbitRestingHeartRate",
1013
- FitbitSleepMinutes = "FitbitSleepMinutes",
1014
- FitbitLightSleepMinutes = "FitbitLightSleepMinutes",
1015
- FitbitRemSleepMinutes = "FitbitRemSleepMinutes",
1016
- FitbitDeepSleepMinutes = "FitbitDeepSleepMinutes",
1017
- FitbitSpO2 = "FitbitSpO2",
1018
- FitbitSteps = "FitbitSteps",
1019
- GarminSteps = "GarminSteps",
1020
- GarminDistance = "GarminDistance",
1021
- GarminFloors = "GarminFloors",
1022
- GarminActiveMinutes = "GarminActiveMinutes",
1023
- GarminActiveCalories = "GarminActiveCalories",
1024
- GarminRestingCalories = "GarminRestingCalories",
1025
- GarminTotalCalories = "GarminTotalCalories",
1026
- GarminRestingHeartRate = "GarminRestingHeartRate",
1027
- GarminMinHeartRate = "GarminMinHeartRate",
1028
- GarminMaxHeartRate = "GarminMaxHeartRate",
1029
- GarminAverageHeartRate = "GarminAverageHeartRate",
1030
- GarminMaxStressLevel = "GarminMaxStressLevel",
1031
- GarminAverageStressLevel = "GarminAverageStressLevel",
1032
- GarminTotalStressMinutes = "GarminTotalStressMinutes",
1033
- GarminLowStressMinutes = "GarminLowStressMinutes",
1034
- GarminMediumStressMinutes = "GarminMediumStressMinutes",
1035
- GarminHighStressMinutes = "GarminHighStressMinutes",
1036
- GarminTotalSleepMinutes = "GarminTotalSleepMinutes",
1037
- GarminLightSleepMinutes = "GarminLightSleepMinutes",
1038
- GarminDeepSleepMinutes = "GarminDeepSleepMinutes",
1039
- GarminRemSleepMinutes = "GarminRemSleepMinutes",
1040
- GarminAwakeMinutes = "GarminAwakeMinutes",
1041
- GarminSleepScore = "GarminSleepScore",
1042
- GoogleFitSteps = "GoogleFitSteps",
1043
- Steps = "Steps",
1044
- RestingHeartRate = "RestingHeartRate",
1045
- SleepMinutes = "SleepMinutes",
1046
- HomeAirQuality = "HomeAirQuality",
1047
- WorkAirQuality = "WorkAirQuality"
1048
- }
1049
- interface DailyDataTypeDefinition {
1050
- dataSource?: "Unified" | "AppleHealth" | "Garmin" | "Fitbit" | "GoogleFit" | "AirQuality";
1051
- type: string;
1052
- dataProvider: DailyDataProvider;
1053
- availabilityCheck: DailyDataAvailabilityCheck;
1054
- labelKey?: string;
1055
- icon: ReactElement;
1056
- formatter: (value: number) => string;
1057
- yAxisConverter?: (value: number) => number;
1058
- previewDataRange: [number, number];
1178
+ interface DailyDataGoalProps {
1179
+ previewState?: "Default";
1180
+ goal: number;
1181
+ dailyDataType: string;
1182
+ title: string;
1183
+ subtitle?: string;
1184
+ date?: Date;
1185
+ goalIncompleteColor?: ColorDefinition;
1186
+ goalCompleteColor?: ColorDefinition;
1187
+ messages?: DailyDataGoalMessage[];
1188
+ innerRef?: React$1.Ref<HTMLDivElement>;
1059
1189
  }
1060
-
1061
- type DailyDataQueryResult = {
1062
- [key: string]: number;
1063
- };
1064
- type DailyDataProvider = (startDate: Date, endDate: Date) => Promise<DailyDataQueryResult>;
1065
- type DailyDataAvailabilityCheck = (modifiedAfter?: Date) => Promise<boolean>;
1066
- declare function registerDailyDataProvider(type: string, provider: DailyDataProvider, availabilityCheck: DailyDataAvailabilityCheck): void;
1067
- declare function registerDailyDataTypeDefinition(typeDefinition: DailyDataTypeDefinition): void;
1068
- declare function checkDailyDataAvailability(type: string, modifiedAfter?: Date): Promise<boolean>;
1069
- declare function queryDailyData(type: string, startDate: Date, endDate: Date, preview?: boolean): Promise<DailyDataQueryResult>;
1070
- declare function queryPreviewDailyData(type: string, startDate: Date, endDate: Date): Promise<DailyDataQueryResult>;
1071
- declare function getAllDailyDataTypes(): DailyDataTypeDefinition[];
1072
- declare function getDailyDataTypeDefinition(dataType: string): DailyDataTypeDefinition;
1073
-
1074
- type Language = "" | "en" | "es" | "nl" | "de" | "fr" | "pt" | "it" | "pl";
1075
- declare function language(key: string, specifiedLanguage?: string): string;
1076
- declare function getLanguageFromIso(language: string): Language;
1077
-
1078
- declare function getLocaleFromIso(language: string): Locale;
1079
-
1080
- declare function getDayKey(date: Date): string;
1081
-
1082
- declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
1083
-
1084
- interface RelativeActivityQueryResult {
1085
- relativePercent: number;
1086
- value: number;
1190
+ interface DailyDataGoalMessage {
1191
+ message: string;
1087
1192
  threshold: number;
1088
1193
  }
1089
- interface RelativeActivityDataType {
1090
- dailyDataType: string;
1091
- color?: ColorDefinition;
1092
- overThresholdColor?: ColorDefinition;
1093
- threshold?: number | "30DayAverage";
1094
- label?: string;
1095
- icon?: React.ReactElement;
1096
- formatter?: (number: number) => string;
1097
- }
1098
- declare function queryRelativeActivity(startDate: Date, endDate: Date, dataTypes: RelativeActivityDataType[], preview: boolean): Promise<{
1099
- [key: string]: {
1100
- [key: string]: RelativeActivityQueryResult;
1101
- };
1102
- }>;
1103
-
1104
- declare function simpleAvailabilityCheck(namespace: DeviceDataNamespace, type: string | string[]): (modifiedAfter?: Date) => Promise<boolean>;
1105
-
1106
- declare const allTypeDefinitions: DailyDataTypeDefinition[];
1194
+ declare function export_default$1j(props: DailyDataGoalProps): React$1.JSX.Element;
1107
1195
 
1108
1196
  interface DailyDataChartProps {
1109
1197
  title?: string;
@@ -1155,13 +1243,13 @@ interface DeviceDataChartLine {
1155
1243
  showAverage?: boolean;
1156
1244
  }
1157
1245
  type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
1158
- declare function export_default$1h(props: DeviceDataMonthChartProps): React$1.JSX.Element | null;
1246
+ declare function export_default$1i(props: DeviceDataMonthChartProps): React$1.JSX.Element | null;
1159
1247
 
1160
1248
  interface DeviceDataMonthChartsProps {
1161
1249
  previewState?: DeviceDataMonthChartsPreviewState;
1162
1250
  }
1163
1251
  type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
1164
- declare function export_default$1g(props: DeviceDataMonthChartsProps): React$1.JSX.Element;
1252
+ declare function export_default$1h(props: DeviceDataMonthChartsProps): React$1.JSX.Element;
1165
1253
 
1166
1254
  interface ExternalAccountListProps {
1167
1255
  externalAccountProviderCategories?: string[];
@@ -1170,14 +1258,14 @@ interface ExternalAccountListProps {
1170
1258
  innerRef?: React$1.Ref<HTMLDivElement>;
1171
1259
  }
1172
1260
  type NotificationListPreviewState$1 = "Default";
1173
- declare function export_default$1f(props: ExternalAccountListProps): React$1.JSX.Element;
1261
+ declare function export_default$1g(props: ExternalAccountListProps): React$1.JSX.Element;
1174
1262
 
1175
1263
  interface ExternalAccountsLoadingIndicatorProps {
1176
1264
  previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
1177
1265
  externalAccountCategories?: string[];
1178
1266
  innerRef?: React$1.Ref<HTMLDivElement>;
1179
1267
  }
1180
- declare function export_default$1e(props: ExternalAccountsLoadingIndicatorProps): React$1.JSX.Element | null;
1268
+ declare function export_default$1f(props: ExternalAccountsLoadingIndicatorProps): React$1.JSX.Element | null;
1181
1269
 
1182
1270
  interface ExternalAccountsPreviewProps {
1183
1271
  excludeProviders?: boolean;
@@ -1189,7 +1277,7 @@ interface ExternalAccountsPreviewProps {
1189
1277
  }
1190
1278
  type ExternalAccountsApplicationUrl = "preview" | string;
1191
1279
  type ExternalAccountsPreviewPreviewState = "Default";
1192
- declare function export_default$1d(props: ExternalAccountsPreviewProps): React$1.JSX.Element | null;
1280
+ declare function export_default$1e(props: ExternalAccountsPreviewProps): React$1.JSX.Element | null;
1193
1281
 
1194
1282
  type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
1195
1283
 
@@ -1197,25 +1285,25 @@ interface FitbitDevicesProps {
1197
1285
  previewState?: ConnectedDevicesPreviewState;
1198
1286
  innerRef?: React$1.Ref<HTMLDivElement>;
1199
1287
  }
1200
- declare function export_default$1c(props: FitbitDevicesProps): React$1.JSX.Element;
1288
+ declare function export_default$1d(props: FitbitDevicesProps): React$1.JSX.Element;
1201
1289
 
1202
1290
  type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
1203
1291
 
1204
1292
  interface FitbitMonthChartsProps {
1205
1293
  previewState?: MonthChartsPreviewState;
1206
1294
  }
1207
- declare function export_default$1b(props: FitbitMonthChartsProps): React$1.JSX.Element;
1295
+ declare function export_default$1c(props: FitbitMonthChartsProps): React$1.JSX.Element;
1208
1296
 
1209
1297
  interface GarminDevicesProps {
1210
1298
  previewState?: ConnectedDevicesPreviewState;
1211
1299
  innerRef?: React$1.Ref<HTMLDivElement>;
1212
1300
  }
1213
- declare function export_default$1a(props: GarminDevicesProps): React$1.JSX.Element;
1301
+ declare function export_default$1b(props: GarminDevicesProps): React$1.JSX.Element;
1214
1302
 
1215
1303
  interface GarminMonthChartsProps {
1216
1304
  previewState?: MonthChartsPreviewState;
1217
1305
  }
1218
- declare function export_default$19(props: GarminMonthChartsProps): React$1.JSX.Element;
1306
+ declare function export_default$1a(props: GarminMonthChartsProps): React$1.JSX.Element;
1219
1307
 
1220
1308
  type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
1221
1309
  interface HealthPreviewSectionProps {
@@ -1225,7 +1313,7 @@ interface HealthPreviewSectionProps {
1225
1313
  indicatorPosition?: "default" | "topRight";
1226
1314
  innerRef?: React$1.Ref<HTMLDivElement>;
1227
1315
  }
1228
- declare function export_default$18(props: HealthPreviewSectionProps): React$1.JSX.Element | null;
1316
+ declare function export_default$19(props: HealthPreviewSectionProps): React$1.JSX.Element | null;
1229
1317
 
1230
1318
  interface LabResultsBloodTypeProps {
1231
1319
  previewState?: "BloodTypeLabs" | "SingleLabs" | "ManyLabs" | "NoData";
@@ -1234,7 +1322,7 @@ interface LabResultsBloodTypeProps {
1234
1322
  onClick?: () => void;
1235
1323
  innerRef?: React$1.Ref<HTMLDivElement>;
1236
1324
  }
1237
- declare function export_default$17(props: LabResultsBloodTypeProps): React$1.JSX.Element | null;
1325
+ declare function export_default$18(props: LabResultsBloodTypeProps): React$1.JSX.Element | null;
1238
1326
 
1239
1327
  interface LabResultsSummaryProps {
1240
1328
  previewState?: "ImportantLabs" | "RecentLabs" | "NoData";
@@ -1242,14 +1330,14 @@ interface LabResultsSummaryProps {
1242
1330
  onViewTermInfo(termInfo: TermInformation): void;
1243
1331
  innerRef?: React$1.Ref<HTMLDivElement>;
1244
1332
  }
1245
- declare function export_default$16(props: LabResultsSummaryProps): React$1.JSX.Element | null;
1333
+ declare function export_default$17(props: LabResultsSummaryProps): React$1.JSX.Element | null;
1246
1334
 
1247
1335
  interface MedicationsListProps {
1248
1336
  previewState?: "default";
1249
1337
  onViewTermInfo(termInfo: TermInformation): void;
1250
1338
  innerRef?: React$1.Ref<HTMLDivElement>;
1251
1339
  }
1252
- declare function export_default$15(props: MedicationsListProps): React$1.JSX.Element;
1340
+ declare function export_default$16(props: MedicationsListProps): React$1.JSX.Element;
1253
1341
 
1254
1342
  interface MostRecentNotificationProps {
1255
1343
  notificationType?: NotificationType;
@@ -1259,7 +1347,7 @@ interface MostRecentNotificationProps {
1259
1347
  innerRef?: React$1.Ref<HTMLDivElement>;
1260
1348
  }
1261
1349
  type MostRecentNotificationPreviewState = "Default";
1262
- declare function export_default$14(props: MostRecentNotificationProps): React$1.JSX.Element | null;
1350
+ declare function export_default$15(props: MostRecentNotificationProps): React$1.JSX.Element | null;
1263
1351
 
1264
1352
  interface NotificationListProps {
1265
1353
  notificationType?: NotificationType;
@@ -1267,7 +1355,7 @@ interface NotificationListProps {
1267
1355
  innerRef?: React$1.Ref<HTMLDivElement>;
1268
1356
  }
1269
1357
  type NotificationListPreviewState = "Default" | "NoData";
1270
- declare function export_default$13(props: NotificationListProps): React$1.JSX.Element;
1358
+ declare function export_default$14(props: NotificationListProps): React$1.JSX.Element;
1271
1359
 
1272
1360
  interface PlatformSpecificContentProps {
1273
1361
  platforms: string[];
@@ -1275,21 +1363,21 @@ interface PlatformSpecificContentProps {
1275
1363
  previewDevicePlatform?: string;
1276
1364
  innerRef?: React$1.Ref<HTMLDivElement>;
1277
1365
  }
1278
- declare function export_default$12(props: PlatformSpecificContentProps): React$1.JSX.Element | null;
1366
+ declare function export_default$13(props: PlatformSpecificContentProps): React$1.JSX.Element | null;
1279
1367
 
1280
1368
  interface ProjectHeaderProps {
1281
1369
  previewState?: ProjectHeaderPropsPreviewState;
1282
1370
  innerRef?: React$1.Ref<HTMLDivElement>;
1283
1371
  }
1284
1372
  type ProjectHeaderPropsPreviewState = "Default";
1285
- declare function export_default$11(props: ProjectHeaderProps): React$1.JSX.Element;
1373
+ declare function export_default$12(props: ProjectHeaderProps): React$1.JSX.Element;
1286
1374
 
1287
1375
  interface ProjectSupportProps {
1288
1376
  previewState?: ProjectSupportPropsPreviewState;
1289
1377
  innerRef?: React$1.Ref<HTMLDivElement>;
1290
1378
  }
1291
1379
  type ProjectSupportPropsPreviewState = "Default";
1292
- declare function export_default$10(props: ProjectSupportProps): React$1.JSX.Element | null;
1380
+ declare function export_default$11(props: ProjectSupportProps): React$1.JSX.Element | null;
1293
1381
 
1294
1382
  interface ProviderSearchProps {
1295
1383
  previewState?: ProviderSearchPreviewState;
@@ -1298,7 +1386,7 @@ interface ProviderSearchProps {
1298
1386
  innerRef?: React$1.Ref<HTMLDivElement>;
1299
1387
  }
1300
1388
  type ProviderSearchPreviewState = "Default";
1301
- declare function export_default$$(props: ProviderSearchProps): React$1.JSX.Element;
1389
+ declare function export_default$10(props: ProviderSearchProps): React$1.JSX.Element;
1302
1390
 
1303
1391
  interface RecentDailyDataBarChartProps {
1304
1392
  previewState?: 'loading' | 'loaded without data' | 'loaded with data';
@@ -1312,7 +1400,7 @@ interface RecentDailyDataBarChartProps {
1312
1400
  highlight?: (rawValue: number) => boolean;
1313
1401
  innerRef?: React$1.Ref<HTMLDivElement>;
1314
1402
  }
1315
- declare function export_default$_(props: RecentDailyDataBarChartProps): React$1.JSX.Element;
1403
+ declare function export_default$$(props: RecentDailyDataBarChartProps): React$1.JSX.Element;
1316
1404
 
1317
1405
  interface RelativeActivityDayCoordinatorProps {
1318
1406
  innerRef?: React$1.Ref<HTMLDivElement>;
@@ -1334,7 +1422,7 @@ interface RelativeActivityDayNavigatorProps {
1334
1422
  };
1335
1423
  }): void;
1336
1424
  }
1337
- declare function export_default$Z(props: RelativeActivityDayNavigatorProps): React$1.JSX.Element;
1425
+ declare function export_default$_(props: RelativeActivityDayNavigatorProps): React$1.JSX.Element;
1338
1426
 
1339
1427
  interface RelativeActivityProps {
1340
1428
  dataTypes?: RelativeActivityDataType[];
@@ -1344,7 +1432,7 @@ interface RelativeActivityProps {
1344
1432
  innerRef?: React$1.Ref<HTMLDivElement>;
1345
1433
  date?: Date;
1346
1434
  }
1347
- declare function export_default$Y(props: RelativeActivityProps): React$1.JSX.Element | null;
1435
+ declare function export_default$Z(props: RelativeActivityProps): React$1.JSX.Element | null;
1348
1436
 
1349
1437
  interface RelativeActivityTodayProps {
1350
1438
  dataTypes: RelativeActivityDataType[];
@@ -1352,7 +1440,7 @@ interface RelativeActivityTodayProps {
1352
1440
  title?: string;
1353
1441
  innerRef?: React$1.Ref<HTMLDivElement>;
1354
1442
  }
1355
- declare function export_default$X(props: RelativeActivityTodayProps): React$1.JSX.Element;
1443
+ declare function export_default$Y(props: RelativeActivityTodayProps): React$1.JSX.Element;
1356
1444
 
1357
1445
  type RestingHeartRateCalendarPreviewState = "WithData" | "NoData" | "Loading";
1358
1446
  type RestingHeartRateDataSource = "Combined" | "AppleHealth" | "Fitbit" | "Garmin";
@@ -1363,7 +1451,7 @@ interface RestingHeartRateCalendarProps {
1363
1451
  dataTypeSource?: RestingHeartRateDataSource;
1364
1452
  innerRef?: React$1.Ref<HTMLDivElement>;
1365
1453
  }
1366
- declare function export_default$W(props: RestingHeartRateCalendarProps): React$1.JSX.Element;
1454
+ declare function export_default$X(props: RestingHeartRateCalendarProps): React$1.JSX.Element;
1367
1455
 
1368
1456
  interface SurveyTaskListProps {
1369
1457
  status: SurveyTaskStatus;
@@ -1381,7 +1469,7 @@ interface SurveyTaskListProps {
1381
1469
  buttonColor?: ColorDefinition;
1382
1470
  }
1383
1471
  type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
1384
- declare function export_default$V(props: SurveyTaskListProps): React$1.JSX.Element | null;
1472
+ declare function export_default$W(props: SurveyTaskListProps): React$1.JSX.Element | null;
1385
1473
 
1386
1474
  type SeverityCalendarPreviewState = "Default" | "NoData";
1387
1475
  interface SeverityCalendarProps {
@@ -1393,7 +1481,7 @@ interface SeverityCalendarProps {
1393
1481
  previewState?: SeverityCalendarPreviewState;
1394
1482
  innerRef?: React$1.Ref<HTMLDivElement>;
1395
1483
  }
1396
- declare function export_default$U(props: SeverityCalendarProps): React$1.JSX.Element;
1484
+ declare function export_default$V(props: SeverityCalendarProps): React$1.JSX.Element;
1397
1485
 
1398
1486
  interface ViewEhrProps {
1399
1487
  onClick(): void;
@@ -1403,7 +1491,7 @@ interface ViewEhrProps {
1403
1491
  buttonColor?: ColorDefinition;
1404
1492
  buttonVariant?: ButtonVariant;
1405
1493
  }
1406
- declare function export_default$T(props: ViewEhrProps): React$1.JSX.Element | null;
1494
+ declare function export_default$U(props: ViewEhrProps): React$1.JSX.Element | null;
1407
1495
 
1408
1496
  type InboxItemListPreviewState = 'no items' | 'incomplete message' | 'incomplete survey' | 'incomplete resource' | 'incomplete items' | 'complete items';
1409
1497
 
@@ -1430,13 +1518,13 @@ interface InboxItemListProps {
1430
1518
  syncOnChanges?: boolean;
1431
1519
  innerRef?: React$1.Ref<HTMLDivElement>;
1432
1520
  }
1433
- declare function export_default$S(props: InboxItemListProps): React$1.JSX.Element;
1521
+ declare function export_default$T(props: InboxItemListProps): React$1.JSX.Element;
1434
1522
 
1435
1523
  interface InboxItemListCoordinatorProps {
1436
1524
  children: React$1.ReactNode;
1437
1525
  innerRef?: React$1.Ref<HTMLDivElement>;
1438
1526
  }
1439
- declare function export_default$R(props: InboxItemListCoordinatorProps): React$1.JSX.Element;
1527
+ declare function export_default$S(props: InboxItemListCoordinatorProps): React$1.JSX.Element;
1440
1528
 
1441
1529
  interface CelebrationStepProps {
1442
1530
  title?: string;
@@ -1449,9 +1537,9 @@ interface CelebrationStepProps {
1449
1537
  [key: string]: any;
1450
1538
  };
1451
1539
  }
1452
- declare function export_default$Q(props: CelebrationStepProps): React$1.JSX.Element;
1540
+ declare function export_default$R(props: CelebrationStepProps): React$1.JSX.Element;
1453
1541
 
1454
- declare function export_default$P(): React$1.JSX.Element;
1542
+ declare function export_default$Q(): React$1.JSX.Element;
1455
1543
 
1456
1544
  type deviceType = 'Fitbit' | 'Garmin' | 'Omron';
1457
1545
 
@@ -1465,12 +1553,12 @@ interface ConnectDeviceAccountStepProps {
1465
1553
  };
1466
1554
  onConnect: () => void;
1467
1555
  }
1468
- declare function export_default$O(props: ConnectDeviceAccountStepProps): React$1.JSX.Element;
1556
+ declare function export_default$P(props: ConnectDeviceAccountStepProps): React$1.JSX.Element;
1469
1557
 
1470
1558
  interface ConnectDeviceAccountStepContainerProps {
1471
1559
  deviceType: deviceType;
1472
1560
  }
1473
- declare function export_default$N(props: ConnectDeviceAccountStepContainerProps): React$1.JSX.Element;
1561
+ declare function export_default$O(props: ConnectDeviceAccountStepContainerProps): React$1.JSX.Element;
1474
1562
 
1475
1563
  interface ConnectEhrStepProps {
1476
1564
  title?: string;
@@ -1484,9 +1572,9 @@ interface ConnectEhrStepProps {
1484
1572
  [key: string]: any;
1485
1573
  };
1486
1574
  }
1487
- declare function export_default$M(props: ConnectEhrStepProps): React$1.JSX.Element;
1575
+ declare function export_default$N(props: ConnectEhrStepProps): React$1.JSX.Element;
1488
1576
 
1489
- declare function export_default$L(): React$1.JSX.Element;
1577
+ declare function export_default$M(): React$1.JSX.Element;
1490
1578
 
1491
1579
  interface StepElementProps {
1492
1580
  text?: string;
@@ -1499,22 +1587,22 @@ interface IconElementProps {
1499
1587
  srcUrl?: string;
1500
1588
  }
1501
1589
 
1502
- declare function export_default$K(props: StepElementProps): React$1.JSX.Element | null;
1590
+ declare function export_default$L(props: StepElementProps): React$1.JSX.Element | null;
1503
1591
 
1504
- declare function export_default$J(props: IconElementProps): React$1.JSX.Element | null;
1592
+ declare function export_default$K(props: IconElementProps): React$1.JSX.Element | null;
1505
1593
 
1506
- declare function export_default$I(props: IconElementProps): React$1.JSX.Element | null;
1594
+ declare function export_default$J(props: IconElementProps): React$1.JSX.Element | null;
1507
1595
 
1508
1596
  interface StepLayoutProps {
1509
1597
  children?: React$1.ReactNode;
1510
1598
  }
1511
- declare function export_default$H(props: StepLayoutProps): React$1.JSX.Element;
1599
+ declare function export_default$I(props: StepLayoutProps): React$1.JSX.Element;
1512
1600
 
1513
1601
  interface StepMarkdownProps {
1514
1602
  text: string;
1515
1603
  inline?: boolean;
1516
1604
  }
1517
- declare function export_default$G(props: StepMarkdownProps): React$1.JSX.Element;
1605
+ declare function export_default$H(props: StepMarkdownProps): React$1.JSX.Element;
1518
1606
 
1519
1607
  interface StepNextButtonProps extends StepElementProps {
1520
1608
  backgroundColor: string;
@@ -1524,11 +1612,11 @@ interface StepNextButtonProps extends StepElementProps {
1524
1612
  disabled?: boolean;
1525
1613
  onClick(): void;
1526
1614
  }
1527
- declare function export_default$F(props: StepNextButtonProps): React$1.JSX.Element;
1615
+ declare function export_default$G(props: StepNextButtonProps): React$1.JSX.Element;
1528
1616
 
1529
- declare function export_default$E(props: StepElementProps): React$1.JSX.Element | null;
1617
+ declare function export_default$F(props: StepElementProps): React$1.JSX.Element | null;
1530
1618
 
1531
- declare function export_default$D(props: StepElementProps): React$1.JSX.Element | null;
1619
+ declare function export_default$E(props: StepElementProps): React$1.JSX.Element | null;
1532
1620
 
1533
1621
  interface YouTubeStepProps {
1534
1622
  title?: string;
@@ -1541,22 +1629,22 @@ interface YouTubeStepProps {
1541
1629
  [key: string]: any;
1542
1630
  };
1543
1631
  }
1544
- declare function export_default$C(props: YouTubeStepProps): React$1.JSX.Element;
1632
+ declare function export_default$D(props: YouTubeStepProps): React$1.JSX.Element;
1545
1633
 
1546
- declare function export_default$B(): React$1.JSX.Element;
1634
+ declare function export_default$C(): React$1.JSX.Element;
1547
1635
 
1548
1636
  interface SymptomSharkSymptomMatrixProps {
1549
1637
  intervalStart?: Date;
1550
1638
  innerRef?: React$1.Ref<HTMLDivElement>;
1551
1639
  }
1552
- declare function export_default$A(props: SymptomSharkSymptomMatrixProps): React$1.JSX.Element | null;
1640
+ declare function export_default$B(props: SymptomSharkSymptomMatrixProps): React$1.JSX.Element | null;
1553
1641
 
1554
1642
  interface SymptomSharkCalendarProps {
1555
1643
  intervalStart?: Date;
1556
1644
  onDaySelected(day: Date): void;
1557
1645
  innerRef?: React$1.Ref<HTMLDivElement>;
1558
1646
  }
1559
- declare function export_default$z(props: SymptomSharkCalendarProps): React$1.JSX.Element;
1647
+ declare function export_default$A(props: SymptomSharkCalendarProps): React$1.JSX.Element;
1560
1648
 
1561
1649
  interface OverallExperienceChartProps {
1562
1650
  intervalStart?: Date;
@@ -1564,7 +1652,7 @@ interface OverallExperienceChartProps {
1564
1652
  innerRef?: React$1.Ref<HTMLDivElement>;
1565
1653
  variant?: "default" | "monthReport";
1566
1654
  }
1567
- declare function export_default$y(props: OverallExperienceChartProps): React$1.JSX.Element | null;
1655
+ declare function export_default$z(props: OverallExperienceChartProps): React$1.JSX.Element | null;
1568
1656
 
1569
1657
  type LogEntryIconKey = "star" | "star-o" | "user-md" | "hospital-o" | "ambulance" | "flag" | "moon-o" | "flask" | "bolt" | "question-circle-o" | "thermometer" | "trophy" | "spoon";
1570
1658
 
@@ -1626,7 +1714,7 @@ interface SymptomSharkLogEntryProps {
1626
1714
  highlightedTreatments?: string[];
1627
1715
  innerRef?: React$1.Ref<HTMLDivElement>;
1628
1716
  }
1629
- declare function export_default$x(props: SymptomSharkLogEntryProps): React$1.JSX.Element | null;
1717
+ declare function export_default$y(props: SymptomSharkLogEntryProps): React$1.JSX.Element | null;
1630
1718
 
1631
1719
  interface SymptomSharkMonthReportProps {
1632
1720
  includeNotes: boolean;
@@ -1637,27 +1725,27 @@ interface SymptomSharkMonthReportProps {
1637
1725
  intervalStart?: Date;
1638
1726
  innerRef?: React$1.Ref<HTMLTableElement>;
1639
1727
  }
1640
- declare function export_default$w(props: SymptomSharkMonthReportProps): React$1.JSX.Element | null;
1728
+ declare function export_default$x(props: SymptomSharkMonthReportProps): React$1.JSX.Element | null;
1641
1729
 
1642
1730
  interface SymptomSharkNotesTimelineProps {
1643
1731
  intervalStart?: Date;
1644
1732
  innerRef?: React$1.Ref<HTMLDivElement>;
1645
1733
  }
1646
- declare function export_default$v(props: SymptomSharkNotesTimelineProps): React$1.JSX.Element | null;
1734
+ declare function export_default$w(props: SymptomSharkNotesTimelineProps): React$1.JSX.Element | null;
1647
1735
 
1648
1736
  interface SymptomTreatmentHistogramsProps {
1649
1737
  intervalStart?: Date;
1650
1738
  onSymptomSelected(symptom: string, intervalStart: Date): void;
1651
1739
  innerRef?: React$1.Ref<HTMLDivElement>;
1652
1740
  }
1653
- declare function export_default$u(props: SymptomTreatmentHistogramsProps): React$1.JSX.Element | null;
1741
+ declare function export_default$v(props: SymptomTreatmentHistogramsProps): React$1.JSX.Element | null;
1654
1742
 
1655
1743
  interface SymptomSeveritySummaryProps {
1656
1744
  symptom: SymptomConfiguration;
1657
1745
  intervalStart?: Date;
1658
1746
  innerRef?: React$1.Ref<HTMLDivElement>;
1659
1747
  }
1660
- declare function export_default$t(props: SymptomSeveritySummaryProps): React$1.JSX.Element | null;
1748
+ declare function export_default$u(props: SymptomSeveritySummaryProps): React$1.JSX.Element | null;
1661
1749
 
1662
1750
  interface SymptomSeverityChartProps {
1663
1751
  intervalStart?: Date;
@@ -1666,7 +1754,7 @@ interface SymptomSeverityChartProps {
1666
1754
  innerRef?: React$1.Ref<HTMLDivElement>;
1667
1755
  variant?: "default" | "monthReport";
1668
1756
  }
1669
- declare function export_default$s(props: SymptomSeverityChartProps): React$1.JSX.Element | null;
1757
+ declare function export_default$t(props: SymptomSeverityChartProps): React$1.JSX.Element | null;
1670
1758
 
1671
1759
  interface SymptomTreatmentFiltersProps {
1672
1760
  expandedDropdown: "Symptoms" | "Treatments" | null;
@@ -1678,28 +1766,28 @@ interface SymptomTreatmentFiltersProps {
1678
1766
  onTreatmentsSelectionChange(treatments: string[]): void;
1679
1767
  innerRef?: React$1.Ref<HTMLDivElement>;
1680
1768
  }
1681
- declare function export_default$r(props: SymptomTreatmentFiltersProps): React$1.JSX.Element;
1769
+ declare function export_default$s(props: SymptomTreatmentFiltersProps): React$1.JSX.Element;
1682
1770
 
1683
1771
  interface SymptomSharkLogEntryListProps {
1684
1772
  onDaySelected(d: Date): void;
1685
1773
  previewState?: "default";
1686
1774
  innerRef?: React$1.Ref<HTMLDivElement>;
1687
1775
  }
1688
- declare function export_default$q(props: SymptomSharkLogEntryListProps): React$1.JSX.Element;
1776
+ declare function export_default$r(props: SymptomSharkLogEntryListProps): React$1.JSX.Element;
1689
1777
 
1690
1778
  interface SymptomSharkLogTodayProps {
1691
1779
  previewState?: "withLog" | "noLog";
1692
1780
  innerRef?: React$1.Ref<HTMLDivElement>;
1693
1781
  onClick(d: Date): void;
1694
1782
  }
1695
- declare function export_default$p(props: SymptomSharkLogTodayProps): React$1.JSX.Element | null;
1783
+ declare function export_default$q(props: SymptomSharkLogTodayProps): React$1.JSX.Element | null;
1696
1784
 
1697
1785
  interface SymptomSharkLogEntryEditProps {
1698
1786
  date: Date;
1699
1787
  promptForReviewAfterDays?: number;
1700
1788
  previewState?: "default";
1701
1789
  }
1702
- declare function export_default$o(props: SymptomSharkLogEntryEditProps): React$1.JSX.Element;
1790
+ declare function export_default$p(props: SymptomSharkLogEntryEditProps): React$1.JSX.Element;
1703
1791
 
1704
1792
  interface SymptomSharkReportBuilderProps {
1705
1793
  productLogo?: string;
@@ -1716,7 +1804,7 @@ interface SymptomSharkVisualizationCoordinatorProps {
1716
1804
  previewState?: "default";
1717
1805
  innerRef?: React$1.Ref<HTMLDivElement>;
1718
1806
  }
1719
- declare function export_default$n(props: SymptomSharkVisualizationCoordinatorProps): React$1.JSX.Element;
1807
+ declare function export_default$o(props: SymptomSharkVisualizationCoordinatorProps): React$1.JSX.Element;
1720
1808
 
1721
1809
  interface CalendarViewProps {
1722
1810
  colorScheme?: "light" | "dark" | "auto";
@@ -1724,7 +1812,7 @@ interface CalendarViewProps {
1724
1812
  onSymptomSelected(symptom: string, intervalStart: Date): void;
1725
1813
  previewState?: "default";
1726
1814
  }
1727
- declare function export_default$m(props: CalendarViewProps): React$1.JSX.Element;
1815
+ declare function export_default$n(props: CalendarViewProps): React$1.JSX.Element;
1728
1816
 
1729
1817
  interface LogEntryEditViewProps {
1730
1818
  colorScheme?: "light" | "dark" | "auto";
@@ -1732,13 +1820,13 @@ interface LogEntryEditViewProps {
1732
1820
  promptForReviewAfterDays?: number;
1733
1821
  previewState?: "default";
1734
1822
  }
1735
- declare function export_default$l(props: LogEntryEditViewProps): React$1.JSX.Element;
1823
+ declare function export_default$m(props: LogEntryEditViewProps): React$1.JSX.Element;
1736
1824
 
1737
1825
  interface SymptomSharkReportBuilderViewProps {
1738
1826
  colorScheme?: "light" | "dark" | "auto";
1739
1827
  previewState?: "default";
1740
1828
  }
1741
- declare function export_default$k(props: SymptomSharkReportBuilderViewProps): React$1.JSX.Element;
1829
+ declare function export_default$l(props: SymptomSharkReportBuilderViewProps): React$1.JSX.Element;
1742
1830
 
1743
1831
  interface SymptomDetailViewProps {
1744
1832
  symptomId: string;
@@ -1746,13 +1834,13 @@ interface SymptomDetailViewProps {
1746
1834
  previewState?: "default";
1747
1835
  initialIntervalStart?: Date;
1748
1836
  }
1749
- declare function export_default$j(props: SymptomDetailViewProps): React$1.JSX.Element;
1837
+ declare function export_default$k(props: SymptomDetailViewProps): React$1.JSX.Element;
1750
1838
 
1751
1839
  interface AllergiesViewProps {
1752
1840
  presentation?: "Push" | "Modal";
1753
1841
  previewState?: "default";
1754
1842
  }
1755
- declare function export_default$i(props: AllergiesViewProps): React$1.JSX.Element;
1843
+ declare function export_default$j(props: AllergiesViewProps): React$1.JSX.Element;
1756
1844
 
1757
1845
  interface BlankViewProps {
1758
1846
  children?: React$1.ReactNode;
@@ -1767,13 +1855,13 @@ interface BlankViewProps {
1767
1855
  subtitleColor?: ColorDefinition;
1768
1856
  navigationBarButtonColor?: ColorDefinition;
1769
1857
  }
1770
- declare function export_default$h(props: BlankViewProps): React$1.JSX.Element;
1858
+ declare function export_default$i(props: BlankViewProps): React$1.JSX.Element;
1771
1859
 
1772
1860
  interface ConditionsViewProps {
1773
1861
  presentation?: "Push" | "Modal";
1774
1862
  previewState?: "default";
1775
1863
  }
1776
- declare function export_default$g(props: ConditionsViewProps): React$1.JSX.Element;
1864
+ declare function export_default$h(props: ConditionsViewProps): React$1.JSX.Element;
1777
1865
 
1778
1866
  interface ConnectEhrViewProps {
1779
1867
  externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
@@ -1784,13 +1872,13 @@ interface ConnectEhrViewProps {
1784
1872
  colorScheme?: "auto" | "light" | "dark";
1785
1873
  }
1786
1874
  type ViewPresentationType$3 = "Modal" | "Push";
1787
- declare function export_default$f(props: ConnectEhrViewProps): React$1.JSX.Element;
1875
+ declare function export_default$g(props: ConnectEhrViewProps): React$1.JSX.Element;
1788
1876
 
1789
1877
  interface DeviceDataViewProps {
1790
1878
  preview?: boolean;
1791
1879
  colorScheme?: "auto" | "light" | "dark";
1792
1880
  }
1793
- declare function export_default$e(props: DeviceDataViewProps): React$1.JSX.Element;
1881
+ declare function export_default$f(props: DeviceDataViewProps): React$1.JSX.Element;
1794
1882
 
1795
1883
  interface ExternalAccountsViewProps {
1796
1884
  excludeProviders?: boolean;
@@ -1801,7 +1889,7 @@ interface ExternalAccountsViewProps {
1801
1889
  colorScheme?: "auto" | "light" | "dark";
1802
1890
  }
1803
1891
  type ViewPresentationType$2 = "Modal" | "Push";
1804
- declare function export_default$d(props: ExternalAccountsViewProps): React$1.JSX.Element;
1892
+ declare function export_default$e(props: ExternalAccountsViewProps): React$1.JSX.Element;
1805
1893
 
1806
1894
  interface FitbitViewProps {
1807
1895
  connectPreview?: ConnectFitbitPreviewState;
@@ -1809,7 +1897,7 @@ interface FitbitViewProps {
1809
1897
  chartsPreview?: MonthChartsPreviewState;
1810
1898
  colorScheme?: "auto" | "light" | "dark";
1811
1899
  }
1812
- declare function export_default$c(props: FitbitViewProps): React$1.JSX.Element;
1900
+ declare function export_default$d(props: FitbitViewProps): React$1.JSX.Element;
1813
1901
 
1814
1902
  interface GarminViewProps {
1815
1903
  connectPreview?: ConnectGarminPreviewState;
@@ -1817,7 +1905,7 @@ interface GarminViewProps {
1817
1905
  chartsPreview?: MonthChartsPreviewState;
1818
1906
  garminProviderID?: number;
1819
1907
  }
1820
- declare function export_default$b(props: GarminViewProps): React$1.JSX.Element;
1908
+ declare function export_default$c(props: GarminViewProps): React$1.JSX.Element;
1821
1909
 
1822
1910
  interface HomeViewProps {
1823
1911
  /**
@@ -1836,7 +1924,7 @@ interface HomeViewProps {
1836
1924
  preview?: boolean;
1837
1925
  colorScheme?: "auto" | "light" | "dark";
1838
1926
  }
1839
- declare function export_default$a(props: HomeViewProps): React$1.JSX.Element;
1927
+ declare function export_default$b(props: HomeViewProps): React$1.JSX.Element;
1840
1928
 
1841
1929
  interface HealthAndWellnessViewProps {
1842
1930
  previewState?: "default";
@@ -1845,13 +1933,13 @@ interface HealthAndWellnessViewProps {
1845
1933
  externalAccountsApplicationUrl: string;
1846
1934
  variant?: "default" | "cardBased";
1847
1935
  }
1848
- declare function export_default$9(props: HealthAndWellnessViewProps): React$1.JSX.Element;
1936
+ declare function export_default$a(props: HealthAndWellnessViewProps): React$1.JSX.Element;
1849
1937
 
1850
1938
  interface MedicationsViewProps {
1851
1939
  presentation?: "Push" | "Modal";
1852
1940
  previewState?: "default";
1853
1941
  }
1854
- declare function export_default$8(props: MedicationsViewProps): React$1.JSX.Element;
1942
+ declare function export_default$9(props: MedicationsViewProps): React$1.JSX.Element;
1855
1943
 
1856
1944
  interface NotificationsViewProps {
1857
1945
  notificationType?: NotificationType;
@@ -1860,7 +1948,7 @@ interface NotificationsViewProps {
1860
1948
  colorScheme?: "auto" | "light" | "dark";
1861
1949
  }
1862
1950
  type ViewPresentationType$1 = "Modal" | "Push";
1863
- declare function export_default$7(props: NotificationsViewProps): React$1.JSX.Element;
1951
+ declare function export_default$8(props: NotificationsViewProps): React$1.JSX.Element;
1864
1952
 
1865
1953
  interface SurveyTasksViewProps {
1866
1954
  hideCompleteTasks?: boolean;
@@ -1871,7 +1959,17 @@ interface SurveyTasksViewProps {
1871
1959
  colorScheme?: "auto" | "light" | "dark";
1872
1960
  }
1873
1961
  type ViewPresentationType = "Modal" | "Push";
1874
- declare function export_default$6(props: SurveyTasksViewProps): React$1.JSX.Element;
1962
+ declare function export_default$7(props: SurveyTasksViewProps): React$1.JSX.Element;
1963
+
1964
+ interface NewBadgeViewProps {
1965
+ badgeNumber?: number;
1966
+ pointsPerBadge?: number;
1967
+ title?: string;
1968
+ text?: string;
1969
+ colorScheme?: 'auto' | 'light' | 'dark';
1970
+ primaryColor?: string;
1971
+ }
1972
+ declare function export_default$6(props: NewBadgeViewProps): React$1.JSX.Element | null;
1875
1973
 
1876
1974
  interface NewPointsEntry {
1877
1975
  name: string;
@@ -1932,4 +2030,4 @@ declare function export_default$1(props: ResourceListViewProps): React$1.JSX.Ele
1932
2030
 
1933
2031
  declare function export_default(callback: Function, delay: number | null): void;
1934
2032
 
1935
- export { export_default$2c as Action, export_default$2b as ActivityMeter, export_default$1q as AllergiesList, export_default$i as AllergiesView, export_default$1p as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2n as AsthmaActionPlanManager, export_default$1z as AsthmaActionPlanView, export_default$1y as AsthmaActivityView, export_default$2m as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityDescription, AsthmaAirQualityType, export_default$1x as AsthmaAirQualityView, export_default$2l as AsthmaAlertTakeoverNotice, export_default$2k as AsthmaAlertTakeoverTrigger, export_default$1w as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$2j as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$2i as AsthmaControlCalendar, AsthmaControlCalendarPreviewState, AsthmaControlCalendarVariant, AsthmaControlState, AsthmaControlStatus, export_default$2h as AsthmaControlStatusHeader, AsthmaDailyDataType, AsthmaDataStatus, export_default$1v as AsthmaDayView, export_default$1u as AsthmaHeartAndLungsView, AsthmaImpact, AsthmaLogEntry, export_default$2g as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1t as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$2f as AsthmaLogEntryHeader, AsthmaParticipant, export_default$2e as AsthmaPostEnrollmentSurveyTrigger, export_default$2d as AsthmaProviderReport, AsthmaProviderReportPreviewState, export_default$1s as AsthmaProviderReportView, export_default$1A as AsthmaRecommendedArticle, export_default$1r as AsthmaSleepView, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger, BarChartOptions, BarChartThreshold, export_default$h as BlankView, BloodPressureDataPoint, BloodPressureDeviceDataSource, export_default$1n as BloodPressureVisualization, export_default$2a as Button, export_default$29 as Calendar, export_default$28 as CalendarDay, CalendarDayStateConfiguration, export_default$27 as Card, export_default$26 as CardTitle, export_default$Q as CelebrationStep, export_default$P as CelebrationStepContainer, ColorDefinition, export_default$1m as ConditionsList, export_default$g as ConditionsView, export_default$O as ConnectDeviceAccountStep, export_default$N as ConnectDeviceAccountStepContainer, export_default$1l as ConnectDevicesMenu, export_default$1k as ConnectEhr, export_default$M as ConnectEhrStep, export_default$L as ConnectEhrStepContainer, export_default$f as ConnectEhrView, export_default$1j as ConnectFitbit, export_default$1i as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyDataTypeDefinition, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$25 as DateRangeNavigator, DateRangeTitle, export_default$23 as DayTrackerSymbol, DeviceDataChartLine, export_default$1h as DeviceDataMonthChart, export_default$1g as DeviceDataMonthCharts, export_default$e as DeviceDataView, export_default$22 as DumbbellChart, export_default$1f as ExternalAccountList, export_default$1e as ExternalAccountsLoadingIndicator, export_default$1d as ExternalAccountsPreview, export_default$d as ExternalAccountsView, export_default$21 as Face, export_default$1c as FitbitDevices, export_default$1b as FitbitMonthCharts, export_default$c as FitbitView, export_default$1a as GarminDevices, export_default$19 as GarminMonthCharts, export_default$b as GarminView, export_default$9 as HealthAndWellnessView, export_default$18 as HealthPreviewSection, export_default$20 as Histogram, export_default$a as HomeView, export_default$1E as InboxCompletedListItem, export_default$3 as InboxHistoryView, export_default$S as InboxItemList, export_default$R as InboxItemListCoordinator, export_default$1D as InboxMessageListItem, export_default$2 as InboxMessageView, export_default$1C as InboxResourceListItem, export_default$1B as InboxSurveyListItem, InboxSurveyVariant, export_default$4 as InboxView, export_default$17 as LabResultsBloodType, export_default$16 as LabResultsSummary, Language, export_default$1$ as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$15 as MedicationsList, export_default$8 as MedicationsView, export_default$1_ as MonthlyEventMatrix, MonthlyEventMatrixRow, export_default$14 as MostRecentNotification, export_default$1Z as NavigationBar, NewPointsEntry, export_default$5 as NewPointsView, NewPointsViewProps, export_default$1Y as NotesInput, export_default$13 as NotificationList, export_default$7 as NotificationsView, export_default$12 as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$1X as ProgressRing, export_default$11 as ProjectHeader, export_default$10 as ProjectSupport, export_default$$ as ProviderSearch, export_default$_ as RecentDailyDataBarChart, export_default$Y as RelativeActivity, RelativeActivityDataType, RelativeActivityDateRangeCoordinator as RelativeActivityDayCoordinator, export_default$Z as RelativeActivityDayNavigator, RelativeActivityQueryResult, export_default$X as RelativeActivityToday, export_default$1W as Resource, ResourceButtonVariant, ResourceDefinition, ResourceImageAlignment, export_default$1V as ResourceList, ResourceListPreviewState, export_default$1 as ResourceListView, export_default$W as RestingHeartRateCalendar, export_default$1U as RotatingComponentCoordinator, RotatingComponentInterval, export_default$1T as Section, export_default$1S as SegmentedControl, export_default$U as SeverityCalendar, export_default$1R as ShinyOverlay, export_default$1Q as SingleDataPoint, export_default$1P as SingleExternalAccount, export_default$1O as SingleNotification, export_default$1N as SingleSurveyTask, export_default$1M as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$K as StepDetailText, export_default$I as StepImage, export_default$J as StepImageIcon, export_default$H as StepLayout, export_default$G as StepMarkdown, export_default$F as StepNextButton, export_default$E as StepText, export_default$D as StepTitle, SurveyBloodPressureDataParameters, export_default$V as SurveyTaskList, export_default$6 as SurveyTasksView, export_default$1L as Switch, SymptomConfiguration, SymptomReference, export_default$z as SymptomSharkCalendar, export_default$m as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$x as SymptomSharkLogEntry, export_default$o as SymptomSharkLogEntryEdit, export_default$l as SymptomSharkLogEntryEditView, export_default$q as SymptomSharkLogEntryList, export_default$p as SymptomSharkLogToday, export_default$w as SymptomSharkMonthReport, export_default$v as SymptomSharkNotesTimeline, export_default$y as SymptomSharkOverallExperienceChart, ReportBuilder as SymptomSharkReportBuilder, export_default$k as SymptomSharkReportBuilderView, export_default$j as SymptomSharkSymptomDetailView, export_default$A as SymptomSharkSymptomMatrix, export_default$s as SymptomSharkSymptomSeverityChart, export_default$t as SymptomSharkSymptomSeveritySummary, export_default$r as SymptomSharkSymptomTreatmentFilters, export_default$u as SymptomSharkSymptomTreatmentHistograms, export_default$n as SymptomSharkVisualizationCoordinator, export_default$1K as TextBlock, export_default$24 as Title, export_default$1J as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$1I as UnstyledButton, export_default$1H as ValueSelector, export_default$T as ViewEhr, export_default$1G as ViewHeader, export_default$1F as WeekCalendar, WeekStartsOn, export_default$C as YouTubeStep, export_default$B as YouTubeStepContainer, service as asthmaDataService, export_default$1o as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, allTypeDefinitions as dailyDataTypeDefinitions, dateToAsthmaLogEntryIdentifier, getAllDailyDataTypes, getAsthmaAirQualityDescriptionText, getAsthmaDataStatusColor, getAsthmaDataStatusText, getAsthmaImpactTexts, getAsthmaImpacts, getAsthmaSymptomLevel, getAsthmaSymptomLevelText, getAsthmaSymptomTexts, getAsthmaSymptoms, getAsthmaTriggerTexts, getAsthmaTriggers, getDailyDataTypeDefinition, getDayKey, getLanguageFromIso, getLocaleFromIso, getMonthStart, getWeekStart, isBloodOxygenLevelWithinRange, isDaytimeRestingHeartRateWithinRange, isNighttimeRestingHeartRateWithinRange, isRespiratoryRateWithinRange, isSleepDisturbancesWithinRange, isStepsWithinRange, language, queryDailyData, queryPreviewDailyData, queryRelativeActivity, registerDailyDataProvider, registerDailyDataTypeDefinition, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
2033
+ export { export_default$2h as Action, export_default$2g as ActivityMeter, export_default$1t as AllergiesList, export_default$j as AllergiesView, export_default$1s as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2s as AsthmaActionPlanManager, export_default$1C as AsthmaActionPlanView, export_default$1B as AsthmaActivityView, export_default$2r as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityDescription, AsthmaAirQualityType, export_default$1A as AsthmaAirQualityView, export_default$2q as AsthmaAlertTakeoverNotice, export_default$2p as AsthmaAlertTakeoverTrigger, export_default$1z as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$2o as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$2n as AsthmaControlCalendar, AsthmaControlCalendarPreviewState, AsthmaControlCalendarVariant, AsthmaControlState, AsthmaControlStatus, export_default$2m as AsthmaControlStatusHeader, AsthmaDailyDataType, AsthmaDataStatus, export_default$1y as AsthmaDayView, export_default$1x as AsthmaHeartAndLungsView, AsthmaImpact, AsthmaLogEntry, export_default$2l as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1w as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$2k as AsthmaLogEntryHeader, AsthmaParticipant, export_default$2j as AsthmaPostEnrollmentSurveyTrigger, export_default$2i as AsthmaProviderReport, AsthmaProviderReportPreviewState, export_default$1v as AsthmaProviderReportView, export_default$1D as AsthmaRecommendedArticle, export_default$1u as AsthmaSleepView, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger, BarChartOptions, BarChartThreshold, export_default$2e as BasicBadge, export_default$1q as BasicBadges, export_default$1r as BasicPointsForBadges, BasicPointsForBadgesActivity, export_default$i as BlankView, BloodPressureDataPoint, BloodPressureDeviceDataSource, export_default$1p as BloodPressureVisualization, export_default$2d as Button, export_default$2c as Calendar, export_default$2b as CalendarDay, CalendarDayStateConfiguration, export_default$2a as Card, export_default$29 as CardTitle, export_default$R as CelebrationStep, export_default$Q as CelebrationStepContainer, ColorDefinition, export_default$1o as ConditionsList, export_default$h as ConditionsView, export_default$P as ConnectDeviceAccountStep, export_default$O as ConnectDeviceAccountStepContainer, export_default$1n as ConnectDevicesMenu, export_default$1m as ConnectEhr, export_default$N as ConnectEhrStep, export_default$M as ConnectEhrStepContainer, export_default$g as ConnectEhrView, ConnectExternalAccountActivity, export_default$1l as ConnectFitbit, export_default$1k as ConnectGarmin, DailyDataActivity, DailyDataAvailabilityCheck, DailyDataChart, export_default$1j as DailyDataGoal, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyDataTypeDefinition, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$28 as DateRangeNavigator, DateRangeTitle, export_default$26 as DayTrackerSymbol, DeviceDataChartLine, export_default$1i as DeviceDataMonthChart, export_default$1h as DeviceDataMonthCharts, export_default$f as DeviceDataView, export_default$25 as DumbbellChart, export_default$1g as ExternalAccountList, export_default$1f as ExternalAccountsLoadingIndicator, export_default$1e as ExternalAccountsPreview, export_default$e as ExternalAccountsView, export_default$24 as Face, export_default$1d as FitbitDevices, export_default$1c as FitbitMonthCharts, export_default$d as FitbitView, export_default$1b as GarminDevices, export_default$1a as GarminMonthCharts, export_default$c as GarminView, Grid, GridColumnProps, GridProps, export_default$a as HealthAndWellnessView, export_default$19 as HealthPreviewSection, export_default$23 as Histogram, export_default$b as HomeView, export_default$1H as InboxCompletedListItem, export_default$3 as InboxHistoryView, export_default$T as InboxItemList, export_default$S as InboxItemListCoordinator, export_default$1G as InboxMessageListItem, export_default$2 as InboxMessageView, export_default$1F as InboxResourceListItem, export_default$1E as InboxSurveyListItem, InboxSurveyVariant, export_default$4 as InboxView, export_default$18 as LabResultsBloodType, export_default$17 as LabResultsSummary, Language, export_default$22 as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$16 as MedicationsList, export_default$9 as MedicationsView, export_default$21 as MonthlyEventMatrix, MonthlyEventMatrixRow, export_default$15 as MostRecentNotification, export_default$20 as NavigationBar, export_default$6 as NewBadgeView, NewPointsEntry, export_default$5 as NewPointsView, NewPointsViewProps, export_default$1$ as NotesInput, export_default$14 as NotificationList, export_default$8 as NotificationsView, export_default$13 as PlatformSpecificContent, PointsAndBadgesState, ProgressBar, ProgressBarStep, export_default$1_ as ProgressRing, export_default$12 as ProjectHeader, export_default$11 as ProjectSupport, export_default$10 as ProviderSearch, export_default$$ as RecentDailyDataBarChart, export_default$Z as RelativeActivity, RelativeActivityDataType, RelativeActivityDateRangeCoordinator as RelativeActivityDayCoordinator, export_default$_ as RelativeActivityDayNavigator, RelativeActivityQueryResult, export_default$Y as RelativeActivityToday, export_default$1Z as Resource, ResourceButtonVariant, ResourceDefinition, ResourceImageAlignment, export_default$1Y as ResourceList, ResourceListPreviewState, export_default$1 as ResourceListView, export_default$X as RestingHeartRateCalendar, export_default$1X as RotatingComponentCoordinator, RotatingComponentInterval, export_default$1W as Section, export_default$1V as SegmentedControl, export_default$V as SeverityCalendar, export_default$1U as ShinyOverlay, export_default$1T as SingleDataPoint, export_default$1S as SingleExternalAccount, export_default$1R as SingleNotification, export_default$1Q as SingleSurveyTask, export_default$1P as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$L as StepDetailText, export_default$J as StepImage, export_default$K as StepImageIcon, export_default$I as StepLayout, export_default$H as StepMarkdown, export_default$G as StepNextButton, export_default$F as StepText, export_default$E as StepTitle, SurveyBloodPressureDataParameters, SurveyCompletionActivity, export_default$W as SurveyTaskList, export_default$7 as SurveyTasksView, export_default$1O as Switch, SymptomConfiguration, SymptomReference, export_default$A as SymptomSharkCalendar, export_default$n as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$y as SymptomSharkLogEntry, export_default$p as SymptomSharkLogEntryEdit, export_default$m as SymptomSharkLogEntryEditView, export_default$r as SymptomSharkLogEntryList, export_default$q as SymptomSharkLogToday, export_default$x as SymptomSharkMonthReport, export_default$w as SymptomSharkNotesTimeline, export_default$z as SymptomSharkOverallExperienceChart, ReportBuilder as SymptomSharkReportBuilder, export_default$l as SymptomSharkReportBuilderView, export_default$k as SymptomSharkSymptomDetailView, export_default$B as SymptomSharkSymptomMatrix, export_default$t as SymptomSharkSymptomSeverityChart, export_default$u as SymptomSharkSymptomSeveritySummary, export_default$s as SymptomSharkSymptomTreatmentFilters, export_default$v as SymptomSharkSymptomTreatmentHistograms, export_default$o as SymptomSharkVisualizationCoordinator, export_default$1N as TextBlock, export_default$27 as Title, export_default$1M as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$1L as UnstyledButton, export_default$1K as ValueSelector, export_default$U as ViewEhr, export_default$1J as ViewHeader, export_default$1I as WeekCalendar, WeekStartsOn, export_default$D as YouTubeStep, export_default$C as YouTubeStepContainer, service as asthmaDataService, export_default$2f as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, allTypeDefinitions as dailyDataTypeDefinitions, dateToAsthmaLogEntryIdentifier, getAllDailyDataTypes, getAsthmaAirQualityDescriptionText, getAsthmaDataStatusColor, getAsthmaDataStatusText, getAsthmaImpactTexts, getAsthmaImpacts, getAsthmaSymptomLevel, getAsthmaSymptomLevelText, getAsthmaSymptomTexts, getAsthmaSymptoms, getAsthmaTriggerTexts, getAsthmaTriggers, getColorFromAssortment, getCurrentPointsAndBadges, getDailyDataTypeDefinition, getDayKey, getLanguageFromIso, getLocaleFromIso, getMonthStart, getWeekStart, isBloodOxygenLevelWithinRange, isDaytimeRestingHeartRateWithinRange, isNighttimeRestingHeartRateWithinRange, isRespiratoryRateWithinRange, isSleepDisturbancesWithinRange, isStepsWithinRange, language, persistCurrentPointsAndBadges, pointsForActivity, queryDailyData, queryPreviewDailyData, queryRelativeActivity, registerDailyDataProvider, registerDailyDataTypeDefinition, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };