@careevolution/mydatahelps-ui 2.9.1-AsthmaUI.90 → 2.9.1-AsthmaUI.92

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 (24) hide show
  1. package/dist/cjs/index.js +7 -7
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/asthma/helpers/asthma-data.d.ts +9 -0
  4. package/dist/cjs/types/components/asthma/helpers/index.d.ts +1 -1
  5. package/dist/cjs/types/components/asthma/views/index.d.ts +0 -1
  6. package/dist/cjs/types/components/view/ResourceListView/ResourceListView.d.ts +10 -0
  7. package/dist/{esm/types/components/asthma/views/AsthmaLibraryCategoryView/AsthmaLibraryCategoryView.stories.d.ts → cjs/types/components/view/ResourceListView/ResourceListView.stories.d.ts} +6 -6
  8. package/dist/cjs/types/components/view/ResourceListView/index.d.ts +1 -0
  9. package/dist/cjs/types/components/view/index.d.ts +1 -0
  10. package/dist/esm/index.js +2 -2
  11. package/dist/esm/index.js.map +1 -1
  12. package/dist/esm/types/components/asthma/helpers/asthma-data.d.ts +9 -0
  13. package/dist/esm/types/components/asthma/helpers/index.d.ts +1 -1
  14. package/dist/esm/types/components/asthma/views/index.d.ts +0 -1
  15. package/dist/esm/types/components/view/ResourceListView/ResourceListView.d.ts +10 -0
  16. package/dist/{cjs/types/components/asthma/views/AsthmaLibraryCategoryView/AsthmaLibraryCategoryView.stories.d.ts → esm/types/components/view/ResourceListView/ResourceListView.stories.d.ts} +6 -6
  17. package/dist/esm/types/components/view/ResourceListView/index.d.ts +1 -0
  18. package/dist/esm/types/components/view/index.d.ts +1 -0
  19. package/dist/index.d.ts +821 -812
  20. package/package.json +1 -1
  21. package/dist/cjs/types/components/asthma/views/AsthmaLibraryCategoryView/AsthmaLibraryCategoryView.d.ts +0 -10
  22. package/dist/cjs/types/components/asthma/views/AsthmaLibraryCategoryView/index.d.ts +0 -1
  23. package/dist/esm/types/components/asthma/views/AsthmaLibraryCategoryView/AsthmaLibraryCategoryView.d.ts +0 -10
  24. package/dist/esm/types/components/asthma/views/AsthmaLibraryCategoryView/index.d.ts +0 -1
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import React, { ReactElement, CSSProperties, MouseEventHandler, ReactNode, DependencyList } from 'react';
2
- import { ParticipantInfo, DeviceInfo, SurveyAnswer, StatusBarStyle, ExternalAccount, Notification, SurveyTask, InboxMessage, InboxResource, InboxSurvey, ExternalAccountStatus, DeviceDataNamespace, NotificationType, ExternalAccountProvider, SurveyTaskStatus, InboxItemType, InboxItemStatus, SortOrder, InboxItemSortColumn, InboxItem, EventName } from '@careevolution/mydatahelps-js';
2
+ import { ParticipantInfo, DeviceInfo, SurveyAnswer, ExternalAccountStatus, DeviceDataNamespace, ExternalAccount, NotificationType, ExternalAccountProvider, SurveyTaskStatus, StatusBarStyle, Notification, SurveyTask, InboxMessage, InboxResource, InboxSurvey, InboxItemType, InboxItemStatus, SortOrder, InboxItemSortColumn, InboxItem, EventName } from '@careevolution/mydatahelps-js';
3
3
  import { AxisDomain } from 'recharts/types/util/types';
4
4
  import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
5
5
  import { IconDefinition as IconDefinition$1 } from '@fortawesome/fontawesome-common-types';
@@ -173,6 +173,15 @@ interface AsthmaPostEnrollmentSurveyTriggerProps {
173
173
  }
174
174
  declare function export_default$23(props: AsthmaPostEnrollmentSurveyTriggerProps): null;
175
175
 
176
+ declare enum AsthmaDailyDataType {
177
+ Steps = "Asthma.Steps",
178
+ DaytimeRestingHeartRate = "Asthma.DaytimeRestingHeartRate",
179
+ NighttimeRestingHeartRate = "Asthma.NighttimeRestingHeartRate",
180
+ RespiratoryRate = "Asthma.RespiratoryRate",
181
+ DaytimeBloodOxygenLevel = "Asthma.DaytimeBloodOxygenLevel",
182
+ NighttimeBloodOxygenLevel = "Asthma.NighttimeBloodOxygenLevel",
183
+ SleepDisturbances = "Asthma.SleepDisturbances"
184
+ }
176
185
  interface AsthmaDataService {
177
186
  loadParticipant(): Promise<AsthmaParticipant>;
178
187
  loadDeviceInfo(): Promise<DeviceInfo>;
@@ -267,987 +276,978 @@ interface AsthmaHeartAndLungsViewProps {
267
276
  }
268
277
  declare function export_default$1Z(props: AsthmaHeartAndLungsViewProps): React.JSX.Element;
269
278
 
270
- interface ActionProps {
271
- title?: string;
272
- titleIcon?: ReactElement;
273
- icon?: ReactElement;
274
- subtitle?: string;
275
- onClick?: Function;
276
- children?: React.ReactNode;
277
- className?: string;
278
- indicatorIcon?: IconDefinition;
279
- indicator?: ReactElement;
280
- indicatorValue?: string;
281
- indicatorPosition?: "default" | "topRight";
282
- bottomBorder?: boolean;
283
- innerRef?: React.Ref<HTMLDivElement>;
284
- titleColor?: ColorDefinition;
285
- subtitleColor?: ColorDefinition;
286
- renderAs?: "div" | "button";
287
- }
288
- declare function export_default$1Y(props: ActionProps): React.JSX.Element;
289
-
290
- interface ActivityMeterProps {
291
- label: string;
292
- value: string;
293
- icon: ReactElement;
294
- fillPercent: number;
295
- averageFillPercent: number;
296
- color: string;
297
- message?: string;
298
- className?: string;
299
- innerRef?: React.Ref<HTMLDivElement>;
300
- }
301
- declare function export_default$1X(props: ActivityMeterProps): React.JSX.Element;
279
+ type AsthmaLogEntryEditorViewPreviewState = 'no symptoms' | 'mild symptoms' | 'moderate symptoms' | 'severe symptoms';
302
280
 
303
- type ButtonVariant = "default" | "subtle" | "light";
304
- interface ButtonProps {
305
- children?: React.ReactNode;
306
- disabled?: boolean;
307
- onClick: Function;
308
- className?: string;
309
- color?: ColorDefinition;
310
- loading?: boolean;
311
- variant?: ButtonVariant;
312
- innerRef?: React.Ref<HTMLButtonElement>;
313
- defaultMargin?: boolean;
314
- fullWidth?: boolean;
281
+ interface AsthmaLogEntryEditorViewProps {
282
+ colorScheme?: 'light' | 'dark' | 'auto';
283
+ previewState?: 'loading' | AsthmaLogEntryEditorViewPreviewState;
284
+ date: Date;
315
285
  }
316
- declare function export_default$1W(props: ButtonProps): React.JSX.Element;
286
+ declare function export_default$1Y(props: AsthmaLogEntryEditorViewProps): React.JSX.Element | null;
317
287
 
318
- interface CalendarProps {
319
- month: number;
320
- year: number;
321
- dayRenderer(year: number, month: number, day?: number): JSX.Element | null;
322
- weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
323
- className?: string;
324
- innerRef?: React.Ref<HTMLDivElement>;
288
+ interface AsthmaSleepViewProps {
289
+ colorScheme?: 'light' | 'dark' | 'auto';
290
+ previewState?: 'default';
291
+ alert?: 'SleepDisturbances';
292
+ logEntrySurveyName: string;
325
293
  }
326
- declare function export_default$1V(props: CalendarProps): React.JSX.Element;
294
+ declare function export_default$1X(props: AsthmaSleepViewProps): React.JSX.Element;
327
295
 
328
- type CalendarDayStateConfiguration = Record<string, {
329
- style?: CSSProperties;
330
- streak?: boolean;
331
- streakColor?: ColorDefinition;
332
- }>;
333
- interface CalendarDayProps {
334
- year: number;
335
- month: number;
336
- day?: number;
337
- stateConfiguration: CalendarDayStateConfiguration;
338
- computeStateForDay: (date: Date) => string;
339
- onClick?: (date: Date) => void;
340
- innerRef?: React.Ref<HTMLDivElement>;
296
+ interface TermInformation {
297
+ TermFamily: string;
298
+ TermNamespace: string;
299
+ TermCode: string;
341
300
  }
342
- declare function export_default$1U(props: CalendarDayProps): React.JSX.Element;
343
301
 
344
- interface CardProps {
345
- className?: string;
346
- children?: React.ReactNode;
347
- allowOverflow?: boolean;
302
+ interface AllergiesListProps {
303
+ previewState?: "default";
304
+ onViewTermInfo(termInfo: TermInformation): void;
348
305
  innerRef?: React.Ref<HTMLDivElement>;
349
- variant?: "default" | "subtle" | "highlight";
350
- backgroundColor?: ColorDefinition;
351
- style?: React.CSSProperties;
352
306
  }
353
- declare function export_default$1T(props: CardProps): React.JSX.Element | null;
307
+ declare function export_default$1W(props: AllergiesListProps): React.JSX.Element;
354
308
 
355
- interface CardTitleProps {
356
- title: string;
357
- onDetailClick?: Function;
358
- detailLinkText?: string;
309
+ interface AppDownloadProps {
310
+ previewProjectPlatforms?: string[];
311
+ previewDevicePlatform?: string;
359
312
  innerRef?: React.Ref<HTMLDivElement>;
360
- color?: ColorDefinition;
313
+ title?: string;
314
+ text?: string;
361
315
  }
362
- declare function export_default$1S(props: CardTitleProps): React.JSX.Element;
316
+ declare function export_default$1V(props: AppDownloadProps): React.JSX.Element | null;
363
317
 
364
318
  type WeekStartsOn = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "6DaysAgo" | "7DaysAgo";
365
319
  declare function getWeekStart(weekStartsOn?: WeekStartsOn): Date;
366
320
  declare function getMonthStart(): Date;
367
321
 
368
- interface DateRangeCoordinatorProps {
369
- initialIntervalStart?: Date;
370
- intervalType: "Week" | "Month";
371
- weekStartsOn?: WeekStartsOn;
372
- variant?: "default" | "rounded";
373
- children: React.ReactNode;
374
- innerRef?: React.Ref<HTMLDivElement>;
375
- sticky?: boolean;
322
+ interface SurveyBloodPressureDataParameters {
323
+ surveyName: string;
324
+ dateResultIdentifier: string;
325
+ systolicResultIdentifier: string;
326
+ diastolicResultIdentifier: string;
376
327
  }
377
- interface DateRangeContext {
378
- intervalType: "Week" | "Month";
379
- intervalStart: Date;
328
+ interface BloodPressureDataPoint {
329
+ date: Date;
330
+ systolic: number;
331
+ diastolic: number;
380
332
  }
381
- declare const DateRangeContext: React.Context<DateRangeContext | null>;
382
- declare function DateRangeNavigatorContext(props: DateRangeCoordinatorProps): React.JSX.Element;
333
+ declare function export_default$1U(props: SurveyBloodPressureDataParameters): Promise<BloodPressureDataPoint[]>;
383
334
 
384
- interface DateRangeNavigatorProps {
385
- intervalType: "Week" | "Month";
386
- intervalStart: Date;
387
- variant?: "default" | "rounded";
388
- onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
389
- className?: string;
335
+ type BloodPressurePreviewState = "Default" | "NoData" | "Loading";
336
+ interface BloodPressureVisualizationProps {
337
+ previewState?: BloodPressurePreviewState;
338
+ surveyDataSource: SurveyBloodPressureDataParameters;
339
+ weekStartsOn?: WeekStartsOn;
390
340
  innerRef?: React.Ref<HTMLDivElement>;
391
- sticky?: boolean;
392
341
  }
393
- declare function export_default$1R(props: DateRangeNavigatorProps): React.JSX.Element;
342
+ declare function export_default$1T(props: BloodPressureVisualizationProps): React.JSX.Element;
394
343
 
395
- interface DayTrackerSymbolProps {
396
- primaryColors: string[];
397
- secondaryColors: string[];
398
- className?: string;
399
- size?: "small" | "large";
344
+ interface ConditionsListProps {
345
+ previewState?: "default";
346
+ onViewTermInfo(termInfo: TermInformation): void;
400
347
  innerRef?: React.Ref<HTMLDivElement>;
401
348
  }
402
- declare function export_default$1Q(props: DayTrackerSymbolProps): React.JSX.Element;
403
-
404
- interface ClosedInterval {
405
- values: number[];
406
- }
407
- interface DataPoint {
408
- dataSet1: ClosedInterval;
409
- dataSet2: ClosedInterval;
410
- }
411
- interface Dumbbell {
412
- dataPoint?: DataPoint;
413
- xValue: string;
414
- class?: DumbbellClass;
415
- }
416
- interface Axis {
417
- yRange: ClosedInterval;
418
- yIncrement: number;
419
- xIncrement: number;
420
- }
421
- interface DumbBellChartProps {
422
- axis: Axis;
423
- dumbbells: Dumbbell[];
424
- }
425
- declare enum DumbbellClass {
426
- "mdhui-dumbbell-in-range" = 0,
427
- "mdhui-dumbbell-out-of-range" = 1
428
- }
429
- declare function export_default$1P(props: DumbBellChartProps): React.JSX.Element;
430
-
431
- interface FaceProps {
432
- faceValue?: number;
433
- selected?: boolean;
434
- onClick?: MouseEventHandler;
435
- className?: string;
436
- innerRef?: React.Ref<HTMLButtonElement>;
437
- }
438
- declare function export_default$1O(props: FaceProps): React.JSX.Element;
349
+ declare function export_default$1S(props: ConditionsListProps): React.JSX.Element;
439
350
 
440
- interface HistogramProps {
441
- entries: {
442
- label: string;
443
- color: string;
444
- value: number;
445
- onSelect?(): void;
446
- }[];
447
- className?: string;
351
+ type DeviceAccountType = "Fitbit" | "Garmin" | "AppleHealth" | "GoogleFit" | "Omron";
352
+ interface ConnectDevicesMenuProps {
448
353
  innerRef?: React.Ref<HTMLDivElement>;
354
+ accountTypes?: DeviceAccountType[];
355
+ title?: string;
356
+ text?: string;
357
+ previewState?: "iOS" | "Android" | "Web" | "ConnectedStates";
358
+ headerVariant?: "large" | "medium";
449
359
  }
450
- declare function export_default$1N(props: HistogramProps): React.JSX.Element;
360
+ declare function export_default$1R(props: ConnectDevicesMenuProps): React.JSX.Element | null;
451
361
 
452
- interface LayoutProps {
453
- children?: React.ReactNode;
454
- bodyBackgroundColor?: ColorDefinition;
455
- primaryColor?: ColorDefinition;
456
- statusBarStyle?: StatusBarStyle;
457
- className?: string;
458
- noGlobalStyles?: boolean;
459
- colorScheme?: "light" | "dark" | "auto";
460
- /**
461
- * @deprecated
462
- */
463
- stylesheetPath?: string;
362
+ interface ConnectEhrProps {
363
+ applicationUrl: ConnectEhrApplicationUrl;
364
+ previewState?: ConnectEhrPreviewState;
365
+ disabledBehavior?: 'hide' | 'displayError';
366
+ bottomBorder?: boolean;
464
367
  innerRef?: React.Ref<HTMLDivElement>;
368
+ variant?: "large" | "medium" | "small";
369
+ title?: string;
370
+ notConnectedText?: string;
371
+ connectedText?: string;
372
+ hideWhenConnected?: boolean;
373
+ buttonColor?: ColorDefinition;
465
374
  }
466
- interface LayoutContext {
467
- colorScheme: "light" | "dark";
468
- bodyBackgroundColor: string;
469
- }
470
- declare const LayoutContext: React.Context<LayoutContext>;
471
- declare function export_default$1M(props: LayoutProps): React.JSX.Element;
375
+ type ConnectEhrApplicationUrl = "preview" | string;
376
+ type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
377
+ declare function export_default$1Q(props: ConnectEhrProps): React.JSX.Element | null;
472
378
 
473
- interface LoadingIndicatorProps {
474
- variant?: "default" | "inline";
475
- color?: string;
476
- className?: string;
379
+ interface ConnectFitbitProps {
380
+ title?: string;
381
+ fitbitProviderID?: number;
382
+ previewState?: ConnectFitbitPreviewState;
383
+ disabledBehavior?: 'hide' | 'displayError';
477
384
  innerRef?: React.Ref<HTMLDivElement>;
385
+ hideWhenConnected?: boolean;
478
386
  }
479
- declare function LoadingIndicator(props: LoadingIndicatorProps): React.JSX.Element;
387
+ type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
388
+ declare function export_default$1P(props: ConnectFitbitProps): React.JSX.Element;
480
389
 
481
- interface NavigationBarProps {
390
+ interface ConnectGarminProps {
482
391
  title?: string;
483
- subtitle?: string;
484
- showBackButton?: boolean;
485
- showCloseButton?: boolean;
486
- children?: React.ReactNode;
487
- closeButtonText?: string;
488
- backButtonText?: string;
489
- className?: string;
490
- variant?: 'default' | 'compressed';
491
- titleColor?: ColorDefinition;
492
- subtitleColor?: ColorDefinition;
493
- buttonColor?: ColorDefinition;
494
- navigationBarLeft?: React.ReactNode;
495
- navigationBarRight?: React.ReactNode;
496
- backgroundColor?: ColorDefinition;
392
+ garminProviderID?: number;
393
+ previewState?: ConnectGarminPreviewState;
394
+ disabledBehavior?: 'hide' | 'displayError';
395
+ innerRef?: React.Ref<HTMLDivElement>;
396
+ hideWhenConnected?: boolean;
497
397
  }
498
- declare function export_default$1L(props: NavigationBarProps): React.JSX.Element;
398
+ type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
399
+ declare function export_default$1O(props: ConnectGarminProps): React.JSX.Element;
499
400
 
500
- interface NotesInputProps {
501
- autoTimestamp?: boolean;
502
- placeholder?: string;
503
- onChange(value: string): void;
504
- value: string;
401
+ type DailyDataQueryResult = {
402
+ [key: string]: number;
403
+ };
404
+ type DailyDataProvider = (startDate: Date, endDate: Date) => Promise<DailyDataQueryResult>;
405
+ type DailyDataAvailabilityCheck = (modifiedAfter?: Date) => Promise<boolean>;
406
+ declare function registerDailyDataProvider(type: string, provider: DailyDataProvider, availabilityCheck: DailyDataAvailabilityCheck): void;
407
+ declare function checkDailyDataAvailability(type: string, modifiedAfter?: Date): Promise<boolean>;
408
+ declare function queryDailyData(type: string, startDate: Date, endDate: Date): Promise<DailyDataQueryResult>;
409
+ declare function simpleAvailabilityCheck(namespace: DeviceDataNamespace, type: string | string[]): (modifiedAfter?: Date) => Promise<boolean>;
410
+ declare enum DailyDataType {
411
+ AppleHealthDistanceWalkingRunning = "AppleHealthDistanceWalkingRunning",
412
+ AppleHealthFlightsClimbed = "AppleHealthFlightsClimbed",
413
+ AppleHealthHeartRateRange = "AppleHealthHeartRateRange",
414
+ AppleHealthHrv = "AppleHealthHrv",
415
+ AppleHealthMaxHeartRate = "AppleHealthMaxHeartRate",
416
+ AppleHealthRestingHeartRate = "AppleHealthRestingHeartRate",
417
+ AppleHealthSleepMinutes = "AppleHealthSleepMinutes",
418
+ AppleHealthInBedMinutes = "AppleHealthInBedMinutes",
419
+ AppleHealthStandMinutes = "AppleHealthStandMinutes",
420
+ AppleHealthSteps = "AppleHealthSteps",
421
+ AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
422
+ AppleHealthActiveEnergyBurned = "AppleHealthActiveEnergyBurned",
423
+ FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
424
+ FitbitActiveMinutes = "FitbitActiveMinutes",
425
+ FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
426
+ FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
427
+ FitbitVeryActiveMinutes = "FitbitVeryActiveMinutes",
428
+ FitbitBreathingRate = "FitbitBreathingRate",
429
+ FitbitCaloriesBurned = "FitbitCaloriesBurned",
430
+ FitbitElevatedHeartRateMinutes = "FitbitElevatedHeartRateMinutes",
431
+ FitbitFatBurnHeartRateMinutes = "FitbitFatBurnHeartRateMinutes",
432
+ FitbitCardioHeartRateMinutes = "FitbitCardioHeartRateMinutes",
433
+ FitbitPeakHeartRateMinutes = "FitbitPeakHeartRateMinutes",
434
+ FitbitFloors = "FitbitFloors",
435
+ FitbitHrv = "FitbitHrv",
436
+ FitbitRestingHeartRate = "FitbitRestingHeartRate",
437
+ FitbitSleepMinutes = "FitbitSleepMinutes",
438
+ FitbitLightSleepMinutes = "FitbitLightSleepMinutes",
439
+ FitbitRemSleepMinutes = "FitbitRemSleepMinutes",
440
+ FitbitDeepSleepMinutes = "FitbitDeepSleepMinutes",
441
+ FitbitSpO2 = "FitbitSpO2",
442
+ FitbitSteps = "FitbitSteps",
443
+ GarminSteps = "GarminSteps",
444
+ GarminDistance = "GarminDistance",
445
+ GarminFloors = "GarminFloors",
446
+ GarminActiveMinutes = "GarminActiveMinutes",
447
+ GarminActiveCalories = "GarminActiveCalories",
448
+ GarminRestingCalories = "GarminRestingCalories",
449
+ GarminTotalCalories = "GarminTotalCalories",
450
+ GarminRestingHeartRate = "GarminRestingHeartRate",
451
+ GarminMinHeartRate = "GarminMinHeartRate",
452
+ GarminMaxHeartRate = "GarminMaxHeartRate",
453
+ GarminAverageHeartRate = "GarminAverageHeartRate",
454
+ GarminMaxStressLevel = "GarminMaxStressLevel",
455
+ GarminAverageStressLevel = "GarminAverageStressLevel",
456
+ GarminTotalStressMinutes = "GarminTotalStressMinutes",
457
+ GarminLowStressMinutes = "GarminLowStressMinutes",
458
+ GarminMediumStressMinutes = "GarminMediumStressMinutes",
459
+ GarminHighStressMinutes = "GarminHighStressMinutes",
460
+ GarminTotalSleepMinutes = "GarminTotalSleepMinutes",
461
+ GarminLightSleepMinutes = "GarminLightSleepMinutes",
462
+ GarminDeepSleepMinutes = "GarminDeepSleepMinutes",
463
+ GarminRemSleepMinutes = "GarminRemSleepMinutes",
464
+ GarminAwakeMinutes = "GarminAwakeMinutes",
465
+ GarminSleepScore = "GarminSleepScore",
466
+ GoogleFitSteps = "GoogleFitSteps",
467
+ Steps = "Steps",
468
+ RestingHeartRate = "RestingHeartRate",
469
+ HomeAirQuality = "HomeAirQuality",
470
+ WorkAirQuality = "WorkAirQuality"
505
471
  }
506
- declare function export_default$1K(props: NotesInputProps): React.JSX.Element;
507
472
 
508
- interface ProgressBarProps {
509
- backgroundColor?: ColorDefinition;
510
- borderColor?: ColorDefinition;
511
- fillColor?: ColorDefinition;
512
- fillPercent: number;
513
- steps?: {
514
- percent: number;
515
- icon: ReactElement;
516
- }[];
473
+ interface DailyDataChartProps {
474
+ title?: string;
475
+ intervalType?: "Week" | "Month";
476
+ weekStartsOn?: WeekStartsOn;
477
+ dailyDataType: string;
478
+ valueConverter?(value: number): number;
479
+ valueFormatter?(value: number): string;
480
+ chartType: "Line" | "Bar" | "Area";
481
+ options?: LineChartOptions | BarChartOptions | AreaChartOptions;
482
+ hideIfNoData?: boolean;
483
+ previewDataProvider?: DailyDataProvider;
517
484
  innerRef?: React.Ref<HTMLDivElement>;
518
- defaultMargin?: boolean;
519
485
  }
520
- declare function ProgressBar(props: ProgressBarProps): React.JSX.Element;
521
- declare namespace ProgressBar {
522
- var defaultProps: {
523
- backgroundColor: string;
524
- fillColor: string;
525
- fillPercent: number;
526
- };
486
+ interface LineChartOptions {
487
+ lineColor?: string;
488
+ domainMin?: number | "Auto";
527
489
  }
528
-
529
- interface ProgressBarStepProps {
530
- borderColor?: ColorDefinition;
531
- backgroundColor?: ColorDefinition;
532
- children?: React.ReactNode;
533
- height: string;
490
+ interface BarChartOptions {
491
+ barColor?: string;
534
492
  }
535
- declare function ProgressBarStep(props: ProgressBarStepProps): React.JSX.Element;
536
-
537
- interface ProgressRingProps {
538
- children: React.ReactNode;
539
- style?: CSSProperties;
540
- color?: ColorDefinition;
541
- percentCompleted?: number;
542
- animate?: boolean;
493
+ interface AreaChartOptions {
494
+ lineColor?: string;
495
+ areaColor?: string;
543
496
  }
544
- declare function export_default$1J(props: ProgressRingProps): React.JSX.Element;
497
+ declare function DailyDataChart(props: DailyDataChartProps): React.JSX.Element | null;
545
498
 
546
- type ResourceImageAlignment = 'left' | 'center' | 'right';
547
- interface ResourceProps {
548
- imageUrl?: string;
549
- title: string;
550
- subTitle?: string;
551
- imageAlignment?: ResourceImageAlignment;
552
- buttonText?: string;
553
- onClick: () => void;
554
- hideButton?: boolean;
499
+ interface DeviceDataMonthChartProps {
500
+ lines: DeviceDataChartLine[];
501
+ month: number;
502
+ year: number;
503
+ syncId?: string;
504
+ title?: string;
505
+ previewState?: DeviceDataMonthChartPreviewState;
506
+ onDataDetected?: Function;
555
507
  innerRef?: React.Ref<HTMLDivElement>;
556
508
  }
557
- declare function export_default$1I(props: ResourceProps): React.JSX.Element;
558
-
559
- type ResourceListPreviewState = 'no resources' | 'some resources';
509
+ interface DeviceDataChartLine {
510
+ label: string;
511
+ dailyDataType: string;
512
+ valueConverter?: Function;
513
+ showAverage?: boolean;
514
+ }
515
+ type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
516
+ declare function export_default$1N(props: DeviceDataMonthChartProps): React.JSX.Element | null;
560
517
 
561
- interface ResourceDefinition {
562
- title: string;
563
- subTitle?: string;
564
- url: string;
565
- imageUrl?: string;
518
+ interface DeviceDataMonthChartsProps {
519
+ previewState?: DeviceDataMonthChartsPreviewState;
566
520
  }
567
- interface ResourceListProps {
568
- previewState?: ResourceListPreviewState;
569
- resources: ResourceDefinition[];
570
- onViewResource: (resource: ResourceDefinition) => void;
571
- emptyText?: string;
572
- imageAlignment?: ResourceImageAlignment;
521
+ type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
522
+ declare function export_default$1M(props: DeviceDataMonthChartsProps): React.JSX.Element;
523
+
524
+ interface ExternalAccountListProps {
525
+ externalAccountProviderCategories?: string[];
526
+ previewState?: NotificationListPreviewState$1;
527
+ onExternalAccountsLoaded?: (accounts: ExternalAccount[]) => void;
573
528
  innerRef?: React.Ref<HTMLDivElement>;
574
529
  }
575
- declare function export_default$1H(props: ResourceListProps): React.JSX.Element;
530
+ type NotificationListPreviewState$1 = "Default";
531
+ declare function export_default$1L(props: ExternalAccountListProps): React.JSX.Element;
576
532
 
577
- type RotatingComponentInterval = 'day' | 'week' | 'month';
578
- interface RotatingComponentCoordinatorProps {
579
- interval?: RotatingComponentInterval;
580
- children: React.ReactNode;
581
- startDate: Date;
533
+ interface ExternalAccountsLoadingIndicatorProps {
534
+ previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
535
+ externalAccountCategories?: string[];
582
536
  innerRef?: React.Ref<HTMLDivElement>;
583
537
  }
584
- declare function export_default$1G(props: RotatingComponentCoordinatorProps): React.JSX.Element;
538
+ declare function export_default$1K(props: ExternalAccountsLoadingIndicatorProps): React.JSX.Element | null;
585
539
 
586
- interface SectionProps {
587
- children?: React.ReactNode;
588
- className?: string;
589
- noTopMargin?: boolean;
540
+ interface ExternalAccountsPreviewProps {
541
+ excludeProviders?: boolean;
542
+ excludeHealthPlans?: boolean;
543
+ excludeDeviceManufacturers?: boolean;
544
+ applicationUrl: ExternalAccountsApplicationUrl;
545
+ previewState?: ExternalAccountsPreviewPreviewState;
590
546
  innerRef?: React.Ref<HTMLDivElement>;
591
- backgroundColor?: ColorDefinition;
592
- style?: React.CSSProperties;
593
547
  }
594
- declare function export_default$1F(props: SectionProps): React.JSX.Element | null;
548
+ type ExternalAccountsApplicationUrl = "preview" | string;
549
+ type ExternalAccountsPreviewPreviewState = "Default";
550
+ declare function export_default$1J(props: ExternalAccountsPreviewProps): React.JSX.Element | null;
595
551
 
596
- interface SegmentedControlProps {
597
- segments: {
598
- key: string;
599
- title: string;
600
- }[];
601
- selectedSegment?: string;
602
- onSegmentSelected(segmentKey: string): void;
603
- className?: string;
604
- color?: string;
605
- variant?: "default" | "optionsHorizontal" | "optionsVertical";
552
+ type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
553
+
554
+ interface FitbitDevicesProps {
555
+ previewState?: ConnectedDevicesPreviewState;
606
556
  innerRef?: React.Ref<HTMLDivElement>;
607
557
  }
608
- declare function export_default$1E(props: SegmentedControlProps): React.JSX.Element;
558
+ declare function export_default$1I(props: FitbitDevicesProps): React.JSX.Element;
609
559
 
610
- declare function export_default$1D(): React.JSX.Element;
560
+ type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
611
561
 
612
- interface SingleDataPointProps {
613
- label: string;
614
- statusText?: string;
615
- statusColor?: ColorDefinition;
616
- value?: string;
617
- units?: string;
618
- onClick?: () => void;
619
- innerRef?: React.Ref<HTMLDivElement>;
562
+ interface FitbitMonthChartsProps {
563
+ previewState?: MonthChartsPreviewState;
620
564
  }
621
- declare function export_default$1C(props: SingleDataPointProps): React.JSX.Element;
565
+ declare function export_default$1H(props: FitbitMonthChartsProps): React.JSX.Element;
622
566
 
623
- interface SingleExternalAccountProps {
624
- externalAccount: ExternalAccount;
625
- onAccountRemoved: (account: ExternalAccount) => void;
626
- onReconnectAccount: (account: ExternalAccount) => void;
567
+ interface GarminDevicesProps {
568
+ previewState?: ConnectedDevicesPreviewState;
627
569
  innerRef?: React.Ref<HTMLDivElement>;
628
570
  }
629
- declare function export_default$1B(props: SingleExternalAccountProps): React.JSX.Element;
571
+ declare function export_default$1G(props: GarminDevicesProps): React.JSX.Element;
630
572
 
631
- interface SingleNotificationProps {
632
- notification: Notification;
633
- innerRef?: React.Ref<HTMLDivElement>;
573
+ interface GarminMonthChartsProps {
574
+ previewState?: MonthChartsPreviewState;
634
575
  }
635
- declare function export_default$1A(props: SingleNotificationProps): React.JSX.Element;
576
+ declare function export_default$1F(props: GarminMonthChartsProps): React.JSX.Element;
636
577
 
637
- type SingleSurveyTaskVariant = 'default' | 'expanded';
638
- interface SingleSurveyTaskProps {
639
- task: SurveyTask;
640
- onClick: () => void;
641
- variant?: SingleSurveyTaskVariant;
642
- descriptionIcon?: IconDefinition$1;
643
- surveyActive?: boolean;
644
- buttonColor?: ColorDefinition;
645
- buttonVariant?: ButtonVariant;
578
+ type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
579
+ interface HealthPreviewSectionProps {
580
+ concept: HealthPreviewSectionConcept;
581
+ onClick(): void;
582
+ previewState?: "NoData" | "Default";
583
+ indicatorPosition?: "default" | "topRight";
646
584
  innerRef?: React.Ref<HTMLDivElement>;
647
585
  }
648
- declare function export_default$1z(props: SingleSurveyTaskProps): React.JSX.Element | null;
586
+ declare function export_default$1E(props: HealthPreviewSectionProps): React.JSX.Element | null;
649
587
 
650
- interface SparkBarChartProps {
651
- averageFillPercent: number;
652
- bars: SparkBarChartBar[];
588
+ interface LabResultsSummaryProps {
589
+ previewState?: "ImportantLabs" | "RecentLabs" | "NoData";
590
+ onClick(): void;
591
+ onViewTermInfo(termInfo: TermInformation): void;
653
592
  innerRef?: React.Ref<HTMLDivElement>;
654
593
  }
655
- interface SparkBarChartBar {
656
- color: string;
657
- barFillPercent: number;
594
+ declare function export_default$1D(props: LabResultsSummaryProps): React.JSX.Element | null;
595
+
596
+ interface MedicationsListProps {
597
+ previewState?: "default";
598
+ onViewTermInfo(termInfo: TermInformation): void;
599
+ innerRef?: React.Ref<HTMLDivElement>;
658
600
  }
659
- declare function export_default$1y(props: SparkBarChartProps): React.JSX.Element;
601
+ declare function export_default$1C(props: MedicationsListProps): React.JSX.Element;
660
602
 
661
- interface SwitchProps {
662
- isOn: Boolean;
663
- onBackgroundColor?: string;
664
- onValueChanged(value: boolean): void;
665
- className?: string;
666
- innerRef?: React.Ref<HTMLButtonElement>;
603
+ interface MostRecentNotificationProps {
604
+ notificationType?: NotificationType;
605
+ onViewMore?: Function;
606
+ hideAfterHours?: number;
607
+ previewState?: MostRecentNotificationPreviewState;
608
+ innerRef?: React.Ref<HTMLDivElement>;
667
609
  }
668
- declare function export_default$1x(props: SwitchProps): React.JSX.Element;
610
+ type MostRecentNotificationPreviewState = "Default";
611
+ declare function export_default$1B(props: MostRecentNotificationProps): React.JSX.Element | null;
669
612
 
670
- interface StatusBarBackgroundProps {
671
- color?: string;
613
+ interface NotificationListProps {
614
+ notificationType?: NotificationType;
615
+ previewState?: NotificationListPreviewState;
672
616
  innerRef?: React.Ref<HTMLDivElement>;
673
617
  }
674
- declare function StatusBarBackgroundProps(props: StatusBarBackgroundProps): React.JSX.Element;
618
+ type NotificationListPreviewState = "Default" | "NoData";
619
+ declare function export_default$1A(props: NotificationListProps): React.JSX.Element;
675
620
 
676
- interface TextBlockProps {
621
+ interface PlatformSpecificContentProps {
622
+ platforms: string[];
677
623
  children?: React.ReactNode;
678
- className?: string;
624
+ previewDevicePlatform?: string;
679
625
  innerRef?: React.Ref<HTMLDivElement>;
680
- color?: ColorDefinition;
681
- style?: React.CSSProperties;
682
626
  }
683
- declare function export_default$1w(props: TextBlockProps): React.JSX.Element | null;
627
+ declare function export_default$1z(props: PlatformSpecificContentProps): React.JSX.Element | null;
684
628
 
685
- interface TitleProps {
686
- color?: ColorDefinition;
687
- order?: 1 | 2 | 3 | 4 | 5 | 6;
688
- children?: React.ReactNode;
689
- style?: React.CSSProperties;
690
- className?: string;
691
- image?: ReactNode;
692
- autosizeImage?: boolean;
693
- imageAlignment?: "top" | "left";
694
- defaultMargin?: boolean;
629
+ interface ProjectHeaderProps {
630
+ previewState?: ProjectHeaderPropsPreviewState;
631
+ innerRef?: React.Ref<HTMLDivElement>;
695
632
  }
696
- declare function export_default$1v(props: TitleProps): React.JSX.Element;
633
+ type ProjectHeaderPropsPreviewState = "Default";
634
+ declare function export_default$1y(props: ProjectHeaderProps): React.JSX.Element;
697
635
 
698
- interface TrackerItemProps {
699
- selected: boolean;
700
- text?: string;
636
+ interface ProjectSupportProps {
637
+ previewState?: ProjectSupportPropsPreviewState;
638
+ innerRef?: React.Ref<HTMLDivElement>;
639
+ }
640
+ type ProjectSupportPropsPreviewState = "Default";
641
+ declare function export_default$1x(props: ProjectSupportProps): React.JSX.Element | null;
642
+
643
+ interface ProviderSearchProps {
644
+ previewState?: ProviderSearchPreviewState;
645
+ providerCategories?: string[];
646
+ onProviderConnected?: (provider: ExternalAccountProvider) => void;
647
+ innerRef?: React.Ref<HTMLDivElement>;
648
+ }
649
+ type ProviderSearchPreviewState = "Default";
650
+ declare function export_default$1w(props: ProviderSearchProps): React.JSX.Element;
651
+
652
+ interface RecentDailyDataBarChartProps {
653
+ previewState?: 'loading' | 'loaded without data' | 'loaded with data';
654
+ previewDataProvider?: (start: Date, end: Date) => Promise<DailyDataQueryResult>;
655
+ title: string;
656
+ dailyDataType: string;
657
+ domain?: AxisDomain;
658
+ emptyDomain?: AxisDomain;
659
+ valueConverter?: (rawValue: number) => number;
660
+ valueFormatter?: (value: number) => string;
661
+ highlight?: (rawValue: number) => boolean;
662
+ innerRef?: React.Ref<HTMLDivElement>;
663
+ }
664
+ declare function export_default$1v(props: RecentDailyDataBarChartProps): React.JSX.Element;
665
+
666
+ interface RelativeActivityTodayProps {
667
+ dataTypes: RelativeActivityDataType[];
668
+ previewState?: "Default";
669
+ title?: string;
670
+ innerRef?: React.Ref<HTMLDivElement>;
671
+ }
672
+ interface RelativeActivityDataType {
673
+ dailyDataType: string;
674
+ label: string;
675
+ icon: React.ReactElement;
701
676
  color: string;
702
- bordered?: boolean;
703
- badge?: string;
704
- onClick?: Function;
705
- className?: string;
706
- noBoxShadow?: boolean;
677
+ formatter: (number: number) => string;
707
678
  }
708
- declare function export_default$1u(props: TrackerItemProps): React.JSX.Element;
679
+ declare function export_default$1u(props: RelativeActivityTodayProps): React.JSX.Element | null;
709
680
 
710
- interface UnstyledButtonProps {
711
- onClick: MouseEventHandler;
712
- className?: string;
681
+ type RestingHeartRateCalendarPreviewState = "WithData" | "NoData" | "Loading";
682
+ interface RestingHeartRateCalendarProps {
683
+ month: number;
684
+ year: number;
685
+ showPreviewData: RestingHeartRateCalendarPreviewState;
686
+ innerRef?: React.Ref<HTMLDivElement>;
687
+ }
688
+ declare function export_default$1t(props: RestingHeartRateCalendarProps): React.JSX.Element;
689
+
690
+ type ButtonVariant = "default" | "subtle" | "light";
691
+ interface ButtonProps {
713
692
  children?: React.ReactNode;
714
- title?: string;
715
- style?: React.CSSProperties;
716
693
  disabled?: boolean;
694
+ onClick: Function;
695
+ className?: string;
696
+ color?: ColorDefinition;
697
+ loading?: boolean;
698
+ variant?: ButtonVariant;
717
699
  innerRef?: React.Ref<HTMLButtonElement>;
700
+ defaultMargin?: boolean;
701
+ fullWidth?: boolean;
718
702
  }
719
- declare function export_default$1t(props: UnstyledButtonProps): React.JSX.Element;
703
+ declare function export_default$1s(props: ButtonProps): React.JSX.Element;
720
704
 
721
- interface ValueSelectorProps {
705
+ interface SurveyTaskListProps {
706
+ status: SurveyTaskStatus;
707
+ limit?: number;
722
708
  title?: string;
709
+ surveys?: string[];
710
+ onDetailLinkClick?: Function;
711
+ previewState?: SurveyTaskListListPreviewState;
712
+ variant?: "noCard" | "singleCard" | "multiCard";
713
+ innerRef?: React.Ref<HTMLDivElement>;
723
714
  titleColor?: ColorDefinition;
724
- subtitle?: string;
725
- subtitleColor?: ColorDefinition;
726
- values: string[];
727
- valueBackgroundColor?: ColorDefinition;
728
- valueTextColor?: ColorDefinition;
729
- checkboxColor?: ColorDefinition;
730
- selectedValues?: string[];
731
- selectedButtonBackgroundColor?: ColorDefinition;
732
- selectedButtonTextColor?: ColorDefinition;
733
- selectedCheckboxColor?: ColorDefinition;
734
- onChange?: (selectedValues: string[]) => void;
735
- variant?: 'default' | 'checkboxes';
736
- multiSelect?: boolean;
737
- preventEmptySelections?: boolean;
715
+ cardBackgroundColor?: ColorDefinition;
716
+ cardStyle?: React.CSSProperties;
717
+ buttonVariant?: ButtonVariant;
718
+ buttonColor?: ColorDefinition;
719
+ }
720
+ type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
721
+ declare function export_default$1r(props: SurveyTaskListProps): React.JSX.Element | null;
722
+
723
+ type SeverityCalendarPreviewState = "Default" | "NoData";
724
+ interface SeverityCalendarProps {
725
+ surveyName: string;
726
+ dateRecordedResultIdentifier?: string;
727
+ severityResultIdentifier: string;
728
+ severityValueMapper?: (value: string) => string;
729
+ intervalStart?: Date;
730
+ previewState?: SeverityCalendarPreviewState;
738
731
  innerRef?: React.Ref<HTMLDivElement>;
739
732
  }
740
- declare function export_default$1s(props: ValueSelectorProps): React.JSX.Element;
733
+ declare function export_default$1q(props: SeverityCalendarProps): React.JSX.Element;
741
734
 
742
- interface ViewHeaderProps {
735
+ interface ViewEhrProps {
736
+ onClick(): void;
737
+ title?: string;
738
+ innerRef?: React.Ref<HTMLDivElement>;
739
+ previewState?: "fetchComplete" | "fetchingData";
740
+ buttonColor?: ColorDefinition;
741
+ buttonVariant?: ButtonVariant;
742
+ }
743
+ declare function export_default$1p(props: ViewEhrProps): React.JSX.Element | null;
744
+
745
+ interface ActionProps {
743
746
  title?: string;
747
+ titleIcon?: ReactElement;
748
+ icon?: ReactElement;
744
749
  subtitle?: string;
750
+ onClick?: Function;
751
+ children?: React.ReactNode;
752
+ className?: string;
753
+ indicatorIcon?: IconDefinition;
754
+ indicator?: ReactElement;
755
+ indicatorValue?: string;
756
+ indicatorPosition?: "default" | "topRight";
757
+ bottomBorder?: boolean;
758
+ innerRef?: React.Ref<HTMLDivElement>;
745
759
  titleColor?: ColorDefinition;
746
760
  subtitleColor?: ColorDefinition;
747
- action?: React.ReactNode;
748
- }
749
- declare function export_default$1r(props: ViewHeaderProps): React.JSX.Element | null;
750
-
751
- interface WeekCalendarProps {
752
- selectedDate?: Date;
753
- hideDateLabel?: boolean;
754
- startDate: Date;
755
- onDateSelected?(date: Date): void;
756
- loading: boolean;
757
- onStartDateChange?(startDate: Date): void;
758
- dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
761
+ renderAs?: "div" | "button";
759
762
  }
760
- declare function export_default$1q(props: WeekCalendarProps): React.JSX.Element;
763
+ declare function export_default$1o(props: ActionProps): React.JSX.Element;
761
764
 
762
- interface InboxCompletedListItemProps {
763
- name: string;
764
- status: string;
765
- onClick?: () => void;
765
+ interface ActivityMeterProps {
766
+ label: string;
767
+ value: string;
768
+ icon: ReactElement;
769
+ fillPercent: number;
770
+ averageFillPercent: number;
771
+ color: string;
772
+ message?: string;
773
+ className?: string;
766
774
  innerRef?: React.Ref<HTMLDivElement>;
767
775
  }
768
- declare function export_default$1p(props: InboxCompletedListItemProps): React.JSX.Element;
776
+ declare function export_default$1n(props: ActivityMeterProps): React.JSX.Element;
769
777
 
770
- interface InboxMessageListItemProps {
771
- message: InboxMessage;
772
- onClick: () => void;
778
+ interface CalendarProps {
779
+ month: number;
780
+ year: number;
781
+ dayRenderer(year: number, month: number, day?: number): JSX.Element | null;
782
+ weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
783
+ className?: string;
773
784
  innerRef?: React.Ref<HTMLDivElement>;
774
785
  }
775
- declare function export_default$1o(props: InboxMessageListItemProps): React.JSX.Element | null;
786
+ declare function export_default$1m(props: CalendarProps): React.JSX.Element;
776
787
 
777
- interface InboxResourceListItemProps {
778
- resource: InboxResource;
779
- onClick: () => void;
780
- imageAlignment?: ResourceImageAlignment;
781
- buttonText?: string;
788
+ type CalendarDayStateConfiguration = Record<string, {
789
+ style?: CSSProperties;
790
+ streak?: boolean;
791
+ streakColor?: ColorDefinition;
792
+ }>;
793
+ interface CalendarDayProps {
794
+ year: number;
795
+ month: number;
796
+ day?: number;
797
+ stateConfiguration: CalendarDayStateConfiguration;
798
+ computeStateForDay: (date: Date) => string;
799
+ onClick?: (date: Date) => void;
782
800
  innerRef?: React.Ref<HTMLDivElement>;
783
801
  }
784
- declare function export_default$1n(props: InboxResourceListItemProps): React.JSX.Element | null;
802
+ declare function export_default$1l(props: CalendarDayProps): React.JSX.Element;
785
803
 
786
- type InboxSurveyVariant = 'default' | 'expanded';
787
- interface InboxSurveyListItemProps {
788
- survey: InboxSurvey;
789
- onClick: () => void;
790
- variant?: InboxSurveyVariant;
791
- surveyActive?: boolean;
804
+ interface CardProps {
805
+ className?: string;
806
+ children?: React.ReactNode;
807
+ allowOverflow?: boolean;
792
808
  innerRef?: React.Ref<HTMLDivElement>;
809
+ variant?: "default" | "subtle" | "highlight";
810
+ backgroundColor?: ColorDefinition;
811
+ style?: React.CSSProperties;
793
812
  }
794
- declare function export_default$1m(props: InboxSurveyListItemProps): React.JSX.Element | null;
813
+ declare function export_default$1k(props: CardProps): React.JSX.Element | null;
795
814
 
796
- interface AsthmaLibraryCategoryViewProps {
797
- colorScheme?: 'light' | 'dark' | 'auto';
798
- previewState?: 'no articles' | 'some articles';
815
+ interface CardTitleProps {
799
816
  title: string;
800
- articles: ResourceDefinition[];
801
- articleImageAlignment?: ResourceImageAlignment;
817
+ onDetailClick?: Function;
818
+ detailLinkText?: string;
819
+ innerRef?: React.Ref<HTMLDivElement>;
820
+ color?: ColorDefinition;
802
821
  }
803
- declare function export_default$1l(props: AsthmaLibraryCategoryViewProps): React.JSX.Element;
804
-
805
- type AsthmaLogEntryEditorViewPreviewState = 'no symptoms' | 'mild symptoms' | 'moderate symptoms' | 'severe symptoms';
822
+ declare function export_default$1j(props: CardTitleProps): React.JSX.Element;
806
823
 
807
- interface AsthmaLogEntryEditorViewProps {
808
- colorScheme?: 'light' | 'dark' | 'auto';
809
- previewState?: 'loading' | AsthmaLogEntryEditorViewPreviewState;
810
- date: Date;
824
+ interface DateRangeCoordinatorProps {
825
+ initialIntervalStart?: Date;
826
+ intervalType: "Week" | "Month";
827
+ weekStartsOn?: WeekStartsOn;
828
+ variant?: "default" | "rounded";
829
+ children: React.ReactNode;
830
+ innerRef?: React.Ref<HTMLDivElement>;
831
+ sticky?: boolean;
811
832
  }
812
- declare function export_default$1k(props: AsthmaLogEntryEditorViewProps): React.JSX.Element | null;
813
-
814
- interface AsthmaSleepViewProps {
815
- colorScheme?: 'light' | 'dark' | 'auto';
816
- previewState?: 'default';
817
- alert?: 'SleepDisturbances';
818
- logEntrySurveyName: string;
819
- }
820
- declare function export_default$1j(props: AsthmaSleepViewProps): React.JSX.Element;
821
-
822
- interface TermInformation {
823
- TermFamily: string;
824
- TermNamespace: string;
825
- TermCode: string;
833
+ interface DateRangeContext {
834
+ intervalType: "Week" | "Month";
835
+ intervalStart: Date;
826
836
  }
837
+ declare const DateRangeContext: React.Context<DateRangeContext | null>;
838
+ declare function DateRangeNavigatorContext(props: DateRangeCoordinatorProps): React.JSX.Element;
827
839
 
828
- interface AllergiesListProps {
829
- previewState?: "default";
830
- onViewTermInfo(termInfo: TermInformation): void;
840
+ interface DateRangeNavigatorProps {
841
+ intervalType: "Week" | "Month";
842
+ intervalStart: Date;
843
+ variant?: "default" | "rounded";
844
+ onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
845
+ className?: string;
831
846
  innerRef?: React.Ref<HTMLDivElement>;
847
+ sticky?: boolean;
832
848
  }
833
- declare function export_default$1i(props: AllergiesListProps): React.JSX.Element;
849
+ declare function export_default$1i(props: DateRangeNavigatorProps): React.JSX.Element;
834
850
 
835
- interface AppDownloadProps {
836
- previewProjectPlatforms?: string[];
837
- previewDevicePlatform?: string;
851
+ interface DayTrackerSymbolProps {
852
+ primaryColors: string[];
853
+ secondaryColors: string[];
854
+ className?: string;
855
+ size?: "small" | "large";
838
856
  innerRef?: React.Ref<HTMLDivElement>;
839
- title?: string;
840
- text?: string;
841
857
  }
842
- declare function export_default$1h(props: AppDownloadProps): React.JSX.Element | null;
858
+ declare function export_default$1h(props: DayTrackerSymbolProps): React.JSX.Element;
843
859
 
844
- interface SurveyBloodPressureDataParameters {
845
- surveyName: string;
846
- dateResultIdentifier: string;
847
- systolicResultIdentifier: string;
848
- diastolicResultIdentifier: string;
860
+ interface ClosedInterval {
861
+ values: number[];
849
862
  }
850
- interface BloodPressureDataPoint {
851
- date: Date;
852
- systolic: number;
853
- diastolic: number;
863
+ interface DataPoint {
864
+ dataSet1: ClosedInterval;
865
+ dataSet2: ClosedInterval;
854
866
  }
855
- declare function export_default$1g(props: SurveyBloodPressureDataParameters): Promise<BloodPressureDataPoint[]>;
856
-
857
- type BloodPressurePreviewState = "Default" | "NoData" | "Loading";
858
- interface BloodPressureVisualizationProps {
859
- previewState?: BloodPressurePreviewState;
860
- surveyDataSource: SurveyBloodPressureDataParameters;
861
- weekStartsOn?: WeekStartsOn;
862
- innerRef?: React.Ref<HTMLDivElement>;
867
+ interface Dumbbell {
868
+ dataPoint?: DataPoint;
869
+ xValue: string;
870
+ class?: DumbbellClass;
863
871
  }
864
- declare function export_default$1f(props: BloodPressureVisualizationProps): React.JSX.Element;
872
+ interface Axis {
873
+ yRange: ClosedInterval;
874
+ yIncrement: number;
875
+ xIncrement: number;
876
+ }
877
+ interface DumbBellChartProps {
878
+ axis: Axis;
879
+ dumbbells: Dumbbell[];
880
+ }
881
+ declare enum DumbbellClass {
882
+ "mdhui-dumbbell-in-range" = 0,
883
+ "mdhui-dumbbell-out-of-range" = 1
884
+ }
885
+ declare function export_default$1g(props: DumbBellChartProps): React.JSX.Element;
865
886
 
866
- interface ConditionsListProps {
867
- previewState?: "default";
868
- onViewTermInfo(termInfo: TermInformation): void;
869
- innerRef?: React.Ref<HTMLDivElement>;
887
+ interface FaceProps {
888
+ faceValue?: number;
889
+ selected?: boolean;
890
+ onClick?: MouseEventHandler;
891
+ className?: string;
892
+ innerRef?: React.Ref<HTMLButtonElement>;
870
893
  }
871
- declare function export_default$1e(props: ConditionsListProps): React.JSX.Element;
894
+ declare function export_default$1f(props: FaceProps): React.JSX.Element;
872
895
 
873
- type DeviceAccountType = "Fitbit" | "Garmin" | "AppleHealth" | "GoogleFit" | "Omron";
874
- interface ConnectDevicesMenuProps {
896
+ interface HistogramProps {
897
+ entries: {
898
+ label: string;
899
+ color: string;
900
+ value: number;
901
+ onSelect?(): void;
902
+ }[];
903
+ className?: string;
875
904
  innerRef?: React.Ref<HTMLDivElement>;
876
- accountTypes?: DeviceAccountType[];
877
- title?: string;
878
- text?: string;
879
- previewState?: "iOS" | "Android" | "Web" | "ConnectedStates";
880
- headerVariant?: "large" | "medium";
881
905
  }
882
- declare function export_default$1d(props: ConnectDevicesMenuProps): React.JSX.Element | null;
906
+ declare function export_default$1e(props: HistogramProps): React.JSX.Element;
883
907
 
884
- interface ConnectEhrProps {
885
- applicationUrl: ConnectEhrApplicationUrl;
886
- previewState?: ConnectEhrPreviewState;
887
- disabledBehavior?: 'hide' | 'displayError';
888
- bottomBorder?: boolean;
908
+ interface LayoutProps {
909
+ children?: React.ReactNode;
910
+ bodyBackgroundColor?: ColorDefinition;
911
+ primaryColor?: ColorDefinition;
912
+ statusBarStyle?: StatusBarStyle;
913
+ className?: string;
914
+ noGlobalStyles?: boolean;
915
+ colorScheme?: "light" | "dark" | "auto";
916
+ /**
917
+ * @deprecated
918
+ */
919
+ stylesheetPath?: string;
889
920
  innerRef?: React.Ref<HTMLDivElement>;
890
- variant?: "large" | "medium" | "small";
891
- title?: string;
892
- notConnectedText?: string;
893
- connectedText?: string;
894
- hideWhenConnected?: boolean;
895
- buttonColor?: ColorDefinition;
896
921
  }
897
- type ConnectEhrApplicationUrl = "preview" | string;
898
- type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
899
- declare function export_default$1c(props: ConnectEhrProps): React.JSX.Element | null;
922
+ interface LayoutContext {
923
+ colorScheme: "light" | "dark";
924
+ bodyBackgroundColor: string;
925
+ }
926
+ declare const LayoutContext: React.Context<LayoutContext>;
927
+ declare function export_default$1d(props: LayoutProps): React.JSX.Element;
900
928
 
901
- interface ConnectFitbitProps {
902
- title?: string;
903
- fitbitProviderID?: number;
904
- previewState?: ConnectFitbitPreviewState;
905
- disabledBehavior?: 'hide' | 'displayError';
929
+ interface LoadingIndicatorProps {
930
+ variant?: "default" | "inline";
931
+ color?: string;
932
+ className?: string;
906
933
  innerRef?: React.Ref<HTMLDivElement>;
907
- hideWhenConnected?: boolean;
908
934
  }
909
- type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
910
- declare function export_default$1b(props: ConnectFitbitProps): React.JSX.Element;
935
+ declare function LoadingIndicator(props: LoadingIndicatorProps): React.JSX.Element;
911
936
 
912
- interface ConnectGarminProps {
937
+ interface NavigationBarProps {
913
938
  title?: string;
914
- garminProviderID?: number;
915
- previewState?: ConnectGarminPreviewState;
916
- disabledBehavior?: 'hide' | 'displayError';
917
- innerRef?: React.Ref<HTMLDivElement>;
918
- hideWhenConnected?: boolean;
939
+ subtitle?: string;
940
+ showBackButton?: boolean;
941
+ showCloseButton?: boolean;
942
+ children?: React.ReactNode;
943
+ closeButtonText?: string;
944
+ backButtonText?: string;
945
+ className?: string;
946
+ variant?: 'default' | 'compressed';
947
+ titleColor?: ColorDefinition;
948
+ subtitleColor?: ColorDefinition;
949
+ buttonColor?: ColorDefinition;
950
+ navigationBarLeft?: React.ReactNode;
951
+ navigationBarRight?: React.ReactNode;
952
+ backgroundColor?: ColorDefinition;
919
953
  }
920
- type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
921
- declare function export_default$1a(props: ConnectGarminProps): React.JSX.Element;
954
+ declare function export_default$1c(props: NavigationBarProps): React.JSX.Element;
922
955
 
923
- type DailyDataQueryResult = {
924
- [key: string]: number;
925
- };
926
- type DailyDataProvider = (startDate: Date, endDate: Date) => Promise<DailyDataQueryResult>;
927
- type DailyDataAvailabilityCheck = (modifiedAfter?: Date) => Promise<boolean>;
928
- declare function registerDailyDataProvider(type: string, provider: DailyDataProvider, availabilityCheck: DailyDataAvailabilityCheck): void;
929
- declare function checkDailyDataAvailability(type: string, modifiedAfter?: Date): Promise<boolean>;
930
- declare function queryDailyData(type: string, startDate: Date, endDate: Date): Promise<DailyDataQueryResult>;
931
- declare function simpleAvailabilityCheck(namespace: DeviceDataNamespace, type: string | string[]): (modifiedAfter?: Date) => Promise<boolean>;
932
- declare enum DailyDataType {
933
- AppleHealthDistanceWalkingRunning = "AppleHealthDistanceWalkingRunning",
934
- AppleHealthFlightsClimbed = "AppleHealthFlightsClimbed",
935
- AppleHealthHeartRateRange = "AppleHealthHeartRateRange",
936
- AppleHealthHrv = "AppleHealthHrv",
937
- AppleHealthMaxHeartRate = "AppleHealthMaxHeartRate",
938
- AppleHealthRestingHeartRate = "AppleHealthRestingHeartRate",
939
- AppleHealthSleepMinutes = "AppleHealthSleepMinutes",
940
- AppleHealthInBedMinutes = "AppleHealthInBedMinutes",
941
- AppleHealthStandMinutes = "AppleHealthStandMinutes",
942
- AppleHealthSteps = "AppleHealthSteps",
943
- AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
944
- AppleHealthActiveEnergyBurned = "AppleHealthActiveEnergyBurned",
945
- FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
946
- FitbitActiveMinutes = "FitbitActiveMinutes",
947
- FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
948
- FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
949
- FitbitVeryActiveMinutes = "FitbitVeryActiveMinutes",
950
- FitbitBreathingRate = "FitbitBreathingRate",
951
- FitbitCaloriesBurned = "FitbitCaloriesBurned",
952
- FitbitElevatedHeartRateMinutes = "FitbitElevatedHeartRateMinutes",
953
- FitbitFatBurnHeartRateMinutes = "FitbitFatBurnHeartRateMinutes",
954
- FitbitCardioHeartRateMinutes = "FitbitCardioHeartRateMinutes",
955
- FitbitPeakHeartRateMinutes = "FitbitPeakHeartRateMinutes",
956
- FitbitFloors = "FitbitFloors",
957
- FitbitHrv = "FitbitHrv",
958
- FitbitRestingHeartRate = "FitbitRestingHeartRate",
959
- FitbitSleepMinutes = "FitbitSleepMinutes",
960
- FitbitLightSleepMinutes = "FitbitLightSleepMinutes",
961
- FitbitRemSleepMinutes = "FitbitRemSleepMinutes",
962
- FitbitDeepSleepMinutes = "FitbitDeepSleepMinutes",
963
- FitbitSpO2 = "FitbitSpO2",
964
- FitbitSteps = "FitbitSteps",
965
- GarminSteps = "GarminSteps",
966
- GarminDistance = "GarminDistance",
967
- GarminFloors = "GarminFloors",
968
- GarminActiveMinutes = "GarminActiveMinutes",
969
- GarminActiveCalories = "GarminActiveCalories",
970
- GarminRestingCalories = "GarminRestingCalories",
971
- GarminTotalCalories = "GarminTotalCalories",
972
- GarminRestingHeartRate = "GarminRestingHeartRate",
973
- GarminMinHeartRate = "GarminMinHeartRate",
974
- GarminMaxHeartRate = "GarminMaxHeartRate",
975
- GarminAverageHeartRate = "GarminAverageHeartRate",
976
- GarminMaxStressLevel = "GarminMaxStressLevel",
977
- GarminAverageStressLevel = "GarminAverageStressLevel",
978
- GarminTotalStressMinutes = "GarminTotalStressMinutes",
979
- GarminLowStressMinutes = "GarminLowStressMinutes",
980
- GarminMediumStressMinutes = "GarminMediumStressMinutes",
981
- GarminHighStressMinutes = "GarminHighStressMinutes",
982
- GarminTotalSleepMinutes = "GarminTotalSleepMinutes",
983
- GarminLightSleepMinutes = "GarminLightSleepMinutes",
984
- GarminDeepSleepMinutes = "GarminDeepSleepMinutes",
985
- GarminRemSleepMinutes = "GarminRemSleepMinutes",
986
- GarminAwakeMinutes = "GarminAwakeMinutes",
987
- GarminSleepScore = "GarminSleepScore",
988
- GoogleFitSteps = "GoogleFitSteps",
989
- Steps = "Steps",
990
- RestingHeartRate = "RestingHeartRate",
991
- HomeAirQuality = "HomeAirQuality",
992
- WorkAirQuality = "WorkAirQuality"
956
+ interface NotesInputProps {
957
+ autoTimestamp?: boolean;
958
+ placeholder?: string;
959
+ onChange(value: string): void;
960
+ value: string;
993
961
  }
962
+ declare function export_default$1b(props: NotesInputProps): React.JSX.Element;
994
963
 
995
- interface DailyDataChartProps {
996
- title?: string;
997
- intervalType?: "Week" | "Month";
998
- weekStartsOn?: WeekStartsOn;
999
- dailyDataType: string;
1000
- valueConverter?(value: number): number;
1001
- valueFormatter?(value: number): string;
1002
- chartType: "Line" | "Bar" | "Area";
1003
- options?: LineChartOptions | BarChartOptions | AreaChartOptions;
1004
- hideIfNoData?: boolean;
1005
- previewDataProvider?: DailyDataProvider;
964
+ interface ProgressBarProps {
965
+ backgroundColor?: ColorDefinition;
966
+ borderColor?: ColorDefinition;
967
+ fillColor?: ColorDefinition;
968
+ fillPercent: number;
969
+ steps?: {
970
+ percent: number;
971
+ icon: ReactElement;
972
+ }[];
1006
973
  innerRef?: React.Ref<HTMLDivElement>;
974
+ defaultMargin?: boolean;
1007
975
  }
1008
- interface LineChartOptions {
1009
- lineColor?: string;
1010
- domainMin?: number | "Auto";
1011
- }
1012
- interface BarChartOptions {
1013
- barColor?: string;
1014
- }
1015
- interface AreaChartOptions {
1016
- lineColor?: string;
1017
- areaColor?: string;
976
+ declare function ProgressBar(props: ProgressBarProps): React.JSX.Element;
977
+ declare namespace ProgressBar {
978
+ var defaultProps: {
979
+ backgroundColor: string;
980
+ fillColor: string;
981
+ fillPercent: number;
982
+ };
1018
983
  }
1019
- declare function DailyDataChart(props: DailyDataChartProps): React.JSX.Element | null;
1020
984
 
1021
- interface DeviceDataMonthChartProps {
1022
- lines: DeviceDataChartLine[];
1023
- month: number;
1024
- year: number;
1025
- syncId?: string;
1026
- title?: string;
1027
- previewState?: DeviceDataMonthChartPreviewState;
1028
- onDataDetected?: Function;
1029
- innerRef?: React.Ref<HTMLDivElement>;
1030
- }
1031
- interface DeviceDataChartLine {
1032
- label: string;
1033
- dailyDataType: string;
1034
- valueConverter?: Function;
1035
- showAverage?: boolean;
985
+ interface ProgressBarStepProps {
986
+ borderColor?: ColorDefinition;
987
+ backgroundColor?: ColorDefinition;
988
+ children?: React.ReactNode;
989
+ height: string;
1036
990
  }
1037
- type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
1038
- declare function export_default$19(props: DeviceDataMonthChartProps): React.JSX.Element | null;
991
+ declare function ProgressBarStep(props: ProgressBarStepProps): React.JSX.Element;
1039
992
 
1040
- interface DeviceDataMonthChartsProps {
1041
- previewState?: DeviceDataMonthChartsPreviewState;
993
+ interface ProgressRingProps {
994
+ children: React.ReactNode;
995
+ style?: CSSProperties;
996
+ color?: ColorDefinition;
997
+ percentCompleted?: number;
998
+ animate?: boolean;
1042
999
  }
1043
- type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
1044
- declare function export_default$18(props: DeviceDataMonthChartsProps): React.JSX.Element;
1000
+ declare function export_default$1a(props: ProgressRingProps): React.JSX.Element;
1045
1001
 
1046
- interface ExternalAccountListProps {
1047
- externalAccountProviderCategories?: string[];
1048
- previewState?: NotificationListPreviewState$1;
1049
- onExternalAccountsLoaded?: (accounts: ExternalAccount[]) => void;
1002
+ type ResourceImageAlignment = 'left' | 'center' | 'right';
1003
+ interface ResourceProps {
1004
+ imageUrl?: string;
1005
+ title: string;
1006
+ subTitle?: string;
1007
+ imageAlignment?: ResourceImageAlignment;
1008
+ buttonText?: string;
1009
+ onClick: () => void;
1010
+ hideButton?: boolean;
1050
1011
  innerRef?: React.Ref<HTMLDivElement>;
1051
1012
  }
1052
- type NotificationListPreviewState$1 = "Default";
1053
- declare function export_default$17(props: ExternalAccountListProps): React.JSX.Element;
1013
+ declare function export_default$19(props: ResourceProps): React.JSX.Element;
1054
1014
 
1055
- interface ExternalAccountsLoadingIndicatorProps {
1056
- previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
1057
- externalAccountCategories?: string[];
1015
+ type ResourceListPreviewState = 'no resources' | 'some resources';
1016
+
1017
+ interface ResourceDefinition {
1018
+ title: string;
1019
+ subTitle?: string;
1020
+ url: string;
1021
+ imageUrl?: string;
1022
+ }
1023
+ interface ResourceListProps {
1024
+ previewState?: ResourceListPreviewState;
1025
+ resources: ResourceDefinition[];
1026
+ onViewResource: (resource: ResourceDefinition) => void;
1027
+ emptyText?: string;
1028
+ imageAlignment?: ResourceImageAlignment;
1058
1029
  innerRef?: React.Ref<HTMLDivElement>;
1059
1030
  }
1060
- declare function export_default$16(props: ExternalAccountsLoadingIndicatorProps): React.JSX.Element | null;
1031
+ declare function export_default$18(props: ResourceListProps): React.JSX.Element;
1061
1032
 
1062
- interface ExternalAccountsPreviewProps {
1063
- excludeProviders?: boolean;
1064
- excludeHealthPlans?: boolean;
1065
- excludeDeviceManufacturers?: boolean;
1066
- applicationUrl: ExternalAccountsApplicationUrl;
1067
- previewState?: ExternalAccountsPreviewPreviewState;
1033
+ type RotatingComponentInterval = 'day' | 'week' | 'month';
1034
+ interface RotatingComponentCoordinatorProps {
1035
+ interval?: RotatingComponentInterval;
1036
+ children: React.ReactNode;
1037
+ startDate: Date;
1068
1038
  innerRef?: React.Ref<HTMLDivElement>;
1069
1039
  }
1070
- type ExternalAccountsApplicationUrl = "preview" | string;
1071
- type ExternalAccountsPreviewPreviewState = "Default";
1072
- declare function export_default$15(props: ExternalAccountsPreviewProps): React.JSX.Element | null;
1073
-
1074
- type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
1040
+ declare function export_default$17(props: RotatingComponentCoordinatorProps): React.JSX.Element;
1075
1041
 
1076
- interface FitbitDevicesProps {
1077
- previewState?: ConnectedDevicesPreviewState;
1042
+ interface SectionProps {
1043
+ children?: React.ReactNode;
1044
+ className?: string;
1045
+ noTopMargin?: boolean;
1078
1046
  innerRef?: React.Ref<HTMLDivElement>;
1047
+ backgroundColor?: ColorDefinition;
1048
+ style?: React.CSSProperties;
1079
1049
  }
1080
- declare function export_default$14(props: FitbitDevicesProps): React.JSX.Element;
1050
+ declare function export_default$16(props: SectionProps): React.JSX.Element | null;
1081
1051
 
1082
- type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
1083
-
1084
- interface FitbitMonthChartsProps {
1085
- previewState?: MonthChartsPreviewState;
1052
+ interface SegmentedControlProps {
1053
+ segments: {
1054
+ key: string;
1055
+ title: string;
1056
+ }[];
1057
+ selectedSegment?: string;
1058
+ onSegmentSelected(segmentKey: string): void;
1059
+ className?: string;
1060
+ color?: string;
1061
+ variant?: "default" | "optionsHorizontal" | "optionsVertical";
1062
+ innerRef?: React.Ref<HTMLDivElement>;
1086
1063
  }
1087
- declare function export_default$13(props: FitbitMonthChartsProps): React.JSX.Element;
1064
+ declare function export_default$15(props: SegmentedControlProps): React.JSX.Element;
1088
1065
 
1089
- interface GarminDevicesProps {
1090
- previewState?: ConnectedDevicesPreviewState;
1066
+ declare function export_default$14(): React.JSX.Element;
1067
+
1068
+ interface SingleDataPointProps {
1069
+ label: string;
1070
+ statusText?: string;
1071
+ statusColor?: ColorDefinition;
1072
+ value?: string;
1073
+ units?: string;
1074
+ onClick?: () => void;
1091
1075
  innerRef?: React.Ref<HTMLDivElement>;
1092
1076
  }
1093
- declare function export_default$12(props: GarminDevicesProps): React.JSX.Element;
1077
+ declare function export_default$13(props: SingleDataPointProps): React.JSX.Element;
1094
1078
 
1095
- interface GarminMonthChartsProps {
1096
- previewState?: MonthChartsPreviewState;
1079
+ interface SingleExternalAccountProps {
1080
+ externalAccount: ExternalAccount;
1081
+ onAccountRemoved: (account: ExternalAccount) => void;
1082
+ onReconnectAccount: (account: ExternalAccount) => void;
1083
+ innerRef?: React.Ref<HTMLDivElement>;
1097
1084
  }
1098
- declare function export_default$11(props: GarminMonthChartsProps): React.JSX.Element;
1085
+ declare function export_default$12(props: SingleExternalAccountProps): React.JSX.Element;
1099
1086
 
1100
- type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
1101
- interface HealthPreviewSectionProps {
1102
- concept: HealthPreviewSectionConcept;
1103
- onClick(): void;
1104
- previewState?: "NoData" | "Default";
1105
- indicatorPosition?: "default" | "topRight";
1087
+ interface SingleNotificationProps {
1088
+ notification: Notification;
1106
1089
  innerRef?: React.Ref<HTMLDivElement>;
1107
1090
  }
1108
- declare function export_default$10(props: HealthPreviewSectionProps): React.JSX.Element | null;
1091
+ declare function export_default$11(props: SingleNotificationProps): React.JSX.Element;
1109
1092
 
1110
- interface LabResultsSummaryProps {
1111
- previewState?: "ImportantLabs" | "RecentLabs" | "NoData";
1112
- onClick(): void;
1113
- onViewTermInfo(termInfo: TermInformation): void;
1093
+ type SingleSurveyTaskVariant = 'default' | 'expanded';
1094
+ interface SingleSurveyTaskProps {
1095
+ task: SurveyTask;
1096
+ onClick: () => void;
1097
+ variant?: SingleSurveyTaskVariant;
1098
+ descriptionIcon?: IconDefinition$1;
1099
+ surveyActive?: boolean;
1100
+ buttonColor?: ColorDefinition;
1101
+ buttonVariant?: ButtonVariant;
1114
1102
  innerRef?: React.Ref<HTMLDivElement>;
1115
1103
  }
1116
- declare function export_default$$(props: LabResultsSummaryProps): React.JSX.Element | null;
1104
+ declare function export_default$10(props: SingleSurveyTaskProps): React.JSX.Element | null;
1117
1105
 
1118
- interface MedicationsListProps {
1119
- previewState?: "default";
1120
- onViewTermInfo(termInfo: TermInformation): void;
1106
+ interface SparkBarChartProps {
1107
+ averageFillPercent: number;
1108
+ bars: SparkBarChartBar[];
1121
1109
  innerRef?: React.Ref<HTMLDivElement>;
1122
1110
  }
1123
- declare function export_default$_(props: MedicationsListProps): React.JSX.Element;
1111
+ interface SparkBarChartBar {
1112
+ color: string;
1113
+ barFillPercent: number;
1114
+ }
1115
+ declare function export_default$$(props: SparkBarChartProps): React.JSX.Element;
1124
1116
 
1125
- interface MostRecentNotificationProps {
1126
- notificationType?: NotificationType;
1127
- onViewMore?: Function;
1128
- hideAfterHours?: number;
1129
- previewState?: MostRecentNotificationPreviewState;
1130
- innerRef?: React.Ref<HTMLDivElement>;
1117
+ interface SwitchProps {
1118
+ isOn: Boolean;
1119
+ onBackgroundColor?: string;
1120
+ onValueChanged(value: boolean): void;
1121
+ className?: string;
1122
+ innerRef?: React.Ref<HTMLButtonElement>;
1131
1123
  }
1132
- type MostRecentNotificationPreviewState = "Default";
1133
- declare function export_default$Z(props: MostRecentNotificationProps): React.JSX.Element | null;
1124
+ declare function export_default$_(props: SwitchProps): React.JSX.Element;
1134
1125
 
1135
- interface NotificationListProps {
1136
- notificationType?: NotificationType;
1137
- previewState?: NotificationListPreviewState;
1126
+ interface StatusBarBackgroundProps {
1127
+ color?: string;
1138
1128
  innerRef?: React.Ref<HTMLDivElement>;
1139
1129
  }
1140
- type NotificationListPreviewState = "Default" | "NoData";
1141
- declare function export_default$Y(props: NotificationListProps): React.JSX.Element;
1130
+ declare function StatusBarBackgroundProps(props: StatusBarBackgroundProps): React.JSX.Element;
1142
1131
 
1143
- interface PlatformSpecificContentProps {
1144
- platforms: string[];
1132
+ interface TextBlockProps {
1145
1133
  children?: React.ReactNode;
1146
- previewDevicePlatform?: string;
1134
+ className?: string;
1147
1135
  innerRef?: React.Ref<HTMLDivElement>;
1136
+ color?: ColorDefinition;
1137
+ style?: React.CSSProperties;
1148
1138
  }
1149
- declare function export_default$X(props: PlatformSpecificContentProps): React.JSX.Element | null;
1139
+ declare function export_default$Z(props: TextBlockProps): React.JSX.Element | null;
1150
1140
 
1151
- interface ProjectHeaderProps {
1152
- previewState?: ProjectHeaderPropsPreviewState;
1153
- innerRef?: React.Ref<HTMLDivElement>;
1141
+ interface TitleProps {
1142
+ color?: ColorDefinition;
1143
+ order?: 1 | 2 | 3 | 4 | 5 | 6;
1144
+ children?: React.ReactNode;
1145
+ style?: React.CSSProperties;
1146
+ className?: string;
1147
+ image?: ReactNode;
1148
+ autosizeImage?: boolean;
1149
+ imageAlignment?: "top" | "left";
1150
+ defaultMargin?: boolean;
1154
1151
  }
1155
- type ProjectHeaderPropsPreviewState = "Default";
1156
- declare function export_default$W(props: ProjectHeaderProps): React.JSX.Element;
1152
+ declare function export_default$Y(props: TitleProps): React.JSX.Element;
1157
1153
 
1158
- interface ProjectSupportProps {
1159
- previewState?: ProjectSupportPropsPreviewState;
1160
- innerRef?: React.Ref<HTMLDivElement>;
1154
+ interface TrackerItemProps {
1155
+ selected: boolean;
1156
+ text?: string;
1157
+ color: string;
1158
+ bordered?: boolean;
1159
+ badge?: string;
1160
+ onClick?: Function;
1161
+ className?: string;
1162
+ noBoxShadow?: boolean;
1161
1163
  }
1162
- type ProjectSupportPropsPreviewState = "Default";
1163
- declare function export_default$V(props: ProjectSupportProps): React.JSX.Element | null;
1164
+ declare function export_default$X(props: TrackerItemProps): React.JSX.Element;
1164
1165
 
1165
- interface ProviderSearchProps {
1166
- previewState?: ProviderSearchPreviewState;
1167
- providerCategories?: string[];
1168
- onProviderConnected?: (provider: ExternalAccountProvider) => void;
1169
- innerRef?: React.Ref<HTMLDivElement>;
1166
+ interface UnstyledButtonProps {
1167
+ onClick: MouseEventHandler;
1168
+ className?: string;
1169
+ children?: React.ReactNode;
1170
+ title?: string;
1171
+ style?: React.CSSProperties;
1172
+ disabled?: boolean;
1173
+ innerRef?: React.Ref<HTMLButtonElement>;
1170
1174
  }
1171
- type ProviderSearchPreviewState = "Default";
1172
- declare function export_default$U(props: ProviderSearchProps): React.JSX.Element;
1175
+ declare function export_default$W(props: UnstyledButtonProps): React.JSX.Element;
1173
1176
 
1174
- interface RecentDailyDataBarChartProps {
1175
- previewState?: 'loading' | 'loaded without data' | 'loaded with data';
1176
- previewDataProvider?: (start: Date, end: Date) => Promise<DailyDataQueryResult>;
1177
- title: string;
1178
- dailyDataType: string;
1179
- domain?: AxisDomain;
1180
- emptyDomain?: AxisDomain;
1181
- valueConverter?: (rawValue: number) => number;
1182
- valueFormatter?: (value: number) => string;
1183
- highlight?: (rawValue: number) => boolean;
1177
+ interface ValueSelectorProps {
1178
+ title?: string;
1179
+ titleColor?: ColorDefinition;
1180
+ subtitle?: string;
1181
+ subtitleColor?: ColorDefinition;
1182
+ values: string[];
1183
+ valueBackgroundColor?: ColorDefinition;
1184
+ valueTextColor?: ColorDefinition;
1185
+ checkboxColor?: ColorDefinition;
1186
+ selectedValues?: string[];
1187
+ selectedButtonBackgroundColor?: ColorDefinition;
1188
+ selectedButtonTextColor?: ColorDefinition;
1189
+ selectedCheckboxColor?: ColorDefinition;
1190
+ onChange?: (selectedValues: string[]) => void;
1191
+ variant?: 'default' | 'checkboxes';
1192
+ multiSelect?: boolean;
1193
+ preventEmptySelections?: boolean;
1184
1194
  innerRef?: React.Ref<HTMLDivElement>;
1185
1195
  }
1186
- declare function export_default$T(props: RecentDailyDataBarChartProps): React.JSX.Element;
1196
+ declare function export_default$V(props: ValueSelectorProps): React.JSX.Element;
1187
1197
 
1188
- interface RelativeActivityTodayProps {
1189
- dataTypes: RelativeActivityDataType[];
1190
- previewState?: "Default";
1198
+ interface ViewHeaderProps {
1191
1199
  title?: string;
1192
- innerRef?: React.Ref<HTMLDivElement>;
1200
+ subtitle?: string;
1201
+ titleColor?: ColorDefinition;
1202
+ subtitleColor?: ColorDefinition;
1203
+ action?: React.ReactNode;
1193
1204
  }
1194
- interface RelativeActivityDataType {
1195
- dailyDataType: string;
1196
- label: string;
1197
- icon: React.ReactElement;
1198
- color: string;
1199
- formatter: (number: number) => string;
1205
+ declare function export_default$U(props: ViewHeaderProps): React.JSX.Element | null;
1206
+
1207
+ interface WeekCalendarProps {
1208
+ selectedDate?: Date;
1209
+ hideDateLabel?: boolean;
1210
+ startDate: Date;
1211
+ onDateSelected?(date: Date): void;
1212
+ loading: boolean;
1213
+ onStartDateChange?(startDate: Date): void;
1214
+ dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
1200
1215
  }
1201
- declare function export_default$S(props: RelativeActivityTodayProps): React.JSX.Element | null;
1216
+ declare function export_default$T(props: WeekCalendarProps): React.JSX.Element;
1202
1217
 
1203
- type RestingHeartRateCalendarPreviewState = "WithData" | "NoData" | "Loading";
1204
- interface RestingHeartRateCalendarProps {
1205
- month: number;
1206
- year: number;
1207
- showPreviewData: RestingHeartRateCalendarPreviewState;
1218
+ interface InboxCompletedListItemProps {
1219
+ name: string;
1220
+ status: string;
1221
+ onClick?: () => void;
1208
1222
  innerRef?: React.Ref<HTMLDivElement>;
1209
1223
  }
1210
- declare function export_default$R(props: RestingHeartRateCalendarProps): React.JSX.Element;
1224
+ declare function export_default$S(props: InboxCompletedListItemProps): React.JSX.Element;
1211
1225
 
1212
- interface SurveyTaskListProps {
1213
- status: SurveyTaskStatus;
1214
- limit?: number;
1215
- title?: string;
1216
- surveys?: string[];
1217
- onDetailLinkClick?: Function;
1218
- previewState?: SurveyTaskListListPreviewState;
1219
- variant?: "noCard" | "singleCard" | "multiCard";
1226
+ interface InboxMessageListItemProps {
1227
+ message: InboxMessage;
1228
+ onClick: () => void;
1220
1229
  innerRef?: React.Ref<HTMLDivElement>;
1221
- titleColor?: ColorDefinition;
1222
- cardBackgroundColor?: ColorDefinition;
1223
- cardStyle?: React.CSSProperties;
1224
- buttonVariant?: ButtonVariant;
1225
- buttonColor?: ColorDefinition;
1226
1230
  }
1227
- type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
1228
- declare function export_default$Q(props: SurveyTaskListProps): React.JSX.Element | null;
1231
+ declare function export_default$R(props: InboxMessageListItemProps): React.JSX.Element | null;
1229
1232
 
1230
- type SeverityCalendarPreviewState = "Default" | "NoData";
1231
- interface SeverityCalendarProps {
1232
- surveyName: string;
1233
- dateRecordedResultIdentifier?: string;
1234
- severityResultIdentifier: string;
1235
- severityValueMapper?: (value: string) => string;
1236
- intervalStart?: Date;
1237
- previewState?: SeverityCalendarPreviewState;
1233
+ interface InboxResourceListItemProps {
1234
+ resource: InboxResource;
1235
+ onClick: () => void;
1236
+ imageAlignment?: ResourceImageAlignment;
1237
+ buttonText?: string;
1238
1238
  innerRef?: React.Ref<HTMLDivElement>;
1239
1239
  }
1240
- declare function export_default$P(props: SeverityCalendarProps): React.JSX.Element;
1240
+ declare function export_default$Q(props: InboxResourceListItemProps): React.JSX.Element | null;
1241
1241
 
1242
- interface ViewEhrProps {
1243
- onClick(): void;
1244
- title?: string;
1242
+ type InboxSurveyVariant = 'default' | 'expanded';
1243
+ interface InboxSurveyListItemProps {
1244
+ survey: InboxSurvey;
1245
+ onClick: () => void;
1246
+ variant?: InboxSurveyVariant;
1247
+ surveyActive?: boolean;
1245
1248
  innerRef?: React.Ref<HTMLDivElement>;
1246
- previewState?: "fetchComplete" | "fetchingData";
1247
- buttonColor?: ColorDefinition;
1248
- buttonVariant?: ButtonVariant;
1249
1249
  }
1250
- declare function export_default$O(props: ViewEhrProps): React.JSX.Element | null;
1250
+ declare function export_default$P(props: InboxSurveyListItemProps): React.JSX.Element | null;
1251
1251
 
1252
1252
  type InboxItemListPreviewState = 'no items' | 'incomplete message' | 'incomplete survey' | 'incomplete resource' | 'incomplete items' | 'complete items';
1253
1253
 
@@ -1272,13 +1272,13 @@ interface InboxItemListProps {
1272
1272
  syncOnChanges?: boolean;
1273
1273
  innerRef?: React.Ref<HTMLDivElement>;
1274
1274
  }
1275
- declare function export_default$N(props: InboxItemListProps): React.JSX.Element;
1275
+ declare function export_default$O(props: InboxItemListProps): React.JSX.Element;
1276
1276
 
1277
1277
  interface InboxItemListCoordinatorProps {
1278
1278
  children: React.ReactNode;
1279
1279
  innerRef?: React.Ref<HTMLDivElement>;
1280
1280
  }
1281
- declare function export_default$M(props: InboxItemListCoordinatorProps): React.JSX.Element;
1281
+ declare function export_default$N(props: InboxItemListCoordinatorProps): React.JSX.Element;
1282
1282
 
1283
1283
  interface CelebrationStepProps {
1284
1284
  title?: string;
@@ -1291,9 +1291,9 @@ interface CelebrationStepProps {
1291
1291
  [key: string]: any;
1292
1292
  };
1293
1293
  }
1294
- declare function export_default$L(props: CelebrationStepProps): React.JSX.Element;
1294
+ declare function export_default$M(props: CelebrationStepProps): React.JSX.Element;
1295
1295
 
1296
- declare function export_default$K(): React.JSX.Element;
1296
+ declare function export_default$L(): React.JSX.Element;
1297
1297
 
1298
1298
  interface ConnectDeviceAccountStepProps {
1299
1299
  title?: string;
@@ -1305,12 +1305,12 @@ interface ConnectDeviceAccountStepProps {
1305
1305
  };
1306
1306
  onConnect: () => void;
1307
1307
  }
1308
- declare function export_default$J(props: ConnectDeviceAccountStepProps): React.JSX.Element;
1308
+ declare function export_default$K(props: ConnectDeviceAccountStepProps): React.JSX.Element;
1309
1309
 
1310
1310
  interface ConnectDeviceAccountStepContainerProps {
1311
1311
  deviceType?: string;
1312
1312
  }
1313
- declare function export_default$I(props: ConnectDeviceAccountStepContainerProps): React.JSX.Element;
1313
+ declare function export_default$J(props: ConnectDeviceAccountStepContainerProps): React.JSX.Element;
1314
1314
 
1315
1315
  interface ConnectEhrStepProps {
1316
1316
  title?: string;
@@ -1324,9 +1324,9 @@ interface ConnectEhrStepProps {
1324
1324
  [key: string]: any;
1325
1325
  };
1326
1326
  }
1327
- declare function export_default$H(props: ConnectEhrStepProps): React.JSX.Element;
1327
+ declare function export_default$I(props: ConnectEhrStepProps): React.JSX.Element;
1328
1328
 
1329
- declare function export_default$G(): React.JSX.Element;
1329
+ declare function export_default$H(): React.JSX.Element;
1330
1330
 
1331
1331
  interface StepElementProps {
1332
1332
  text?: string;
@@ -1339,22 +1339,22 @@ interface IconElementProps {
1339
1339
  srcUrl?: string;
1340
1340
  }
1341
1341
 
1342
- declare function export_default$F(props: StepElementProps): React.JSX.Element | null;
1342
+ declare function export_default$G(props: StepElementProps): React.JSX.Element | null;
1343
1343
 
1344
- declare function export_default$E(props: IconElementProps): React.JSX.Element | null;
1344
+ declare function export_default$F(props: IconElementProps): React.JSX.Element | null;
1345
1345
 
1346
- declare function export_default$D(props: IconElementProps): React.JSX.Element | null;
1346
+ declare function export_default$E(props: IconElementProps): React.JSX.Element | null;
1347
1347
 
1348
1348
  interface StepLayoutProps {
1349
1349
  children?: React.ReactNode;
1350
1350
  }
1351
- declare function export_default$C(props: StepLayoutProps): React.JSX.Element;
1351
+ declare function export_default$D(props: StepLayoutProps): React.JSX.Element;
1352
1352
 
1353
1353
  interface StepMarkdownProps {
1354
1354
  text: string;
1355
1355
  inline?: boolean;
1356
1356
  }
1357
- declare function export_default$B(props: StepMarkdownProps): React.JSX.Element;
1357
+ declare function export_default$C(props: StepMarkdownProps): React.JSX.Element;
1358
1358
 
1359
1359
  interface StepNextButtonProps extends StepElementProps {
1360
1360
  backgroundColor: string;
@@ -1364,11 +1364,11 @@ interface StepNextButtonProps extends StepElementProps {
1364
1364
  disabled?: boolean;
1365
1365
  onClick(): void;
1366
1366
  }
1367
- declare function export_default$A(props: StepNextButtonProps): React.JSX.Element;
1367
+ declare function export_default$B(props: StepNextButtonProps): React.JSX.Element;
1368
1368
 
1369
- declare function export_default$z(props: StepElementProps): React.JSX.Element | null;
1369
+ declare function export_default$A(props: StepElementProps): React.JSX.Element | null;
1370
1370
 
1371
- declare function export_default$y(props: StepElementProps): React.JSX.Element | null;
1371
+ declare function export_default$z(props: StepElementProps): React.JSX.Element | null;
1372
1372
 
1373
1373
  interface YouTubeStepProps {
1374
1374
  title?: string;
@@ -1381,23 +1381,23 @@ interface YouTubeStepProps {
1381
1381
  [key: string]: any;
1382
1382
  };
1383
1383
  }
1384
- declare function export_default$x(props: YouTubeStepProps): React.JSX.Element;
1384
+ declare function export_default$y(props: YouTubeStepProps): React.JSX.Element;
1385
1385
 
1386
- declare function export_default$w(): React.JSX.Element;
1386
+ declare function export_default$x(): React.JSX.Element;
1387
1387
 
1388
1388
  interface SymptomSharkCalendarProps {
1389
1389
  intervalStart?: Date;
1390
1390
  onDaySelected(day: Date): void;
1391
1391
  innerRef?: React.Ref<HTMLDivElement>;
1392
1392
  }
1393
- declare function export_default$v(props: SymptomSharkCalendarProps): React.JSX.Element;
1393
+ declare function export_default$w(props: SymptomSharkCalendarProps): React.JSX.Element;
1394
1394
 
1395
1395
  interface OverallExperienceChartProps {
1396
1396
  intervalStart?: Date;
1397
1397
  showAllDays?: boolean;
1398
1398
  innerRef?: React.Ref<HTMLDivElement>;
1399
1399
  }
1400
- declare function export_default$u(props: OverallExperienceChartProps): React.JSX.Element | null;
1400
+ declare function export_default$v(props: OverallExperienceChartProps): React.JSX.Element | null;
1401
1401
 
1402
1402
  interface SymptomSharkDataService {
1403
1403
  getConfiguration(): Promise<SymptomSharkConfiguration>;
@@ -1455,21 +1455,21 @@ interface SymptomSharkLogEntryProps {
1455
1455
  highlightedTreatments?: string[];
1456
1456
  innerRef?: React.Ref<HTMLDivElement>;
1457
1457
  }
1458
- declare function export_default$t(props: SymptomSharkLogEntryProps): React.JSX.Element | null;
1458
+ declare function export_default$u(props: SymptomSharkLogEntryProps): React.JSX.Element | null;
1459
1459
 
1460
1460
  interface SymptomTreatmentHistogramsProps {
1461
1461
  intervalStart?: Date;
1462
1462
  onSymptomSelected(symptom: string, intervalStart: Date): void;
1463
1463
  innerRef?: React.Ref<HTMLDivElement>;
1464
1464
  }
1465
- declare function export_default$s(props: SymptomTreatmentHistogramsProps): React.JSX.Element | null;
1465
+ declare function export_default$t(props: SymptomTreatmentHistogramsProps): React.JSX.Element | null;
1466
1466
 
1467
1467
  interface SymptomSeveritySummaryProps {
1468
1468
  symptom: SymptomConfiguration;
1469
1469
  intervalStart?: Date;
1470
1470
  innerRef?: React.Ref<HTMLDivElement>;
1471
1471
  }
1472
- declare function export_default$r(props: SymptomSeveritySummaryProps): React.JSX.Element | null;
1472
+ declare function export_default$s(props: SymptomSeveritySummaryProps): React.JSX.Element | null;
1473
1473
 
1474
1474
  interface SymptomSeverityChartProps {
1475
1475
  intervalStart?: Date;
@@ -1477,7 +1477,7 @@ interface SymptomSeverityChartProps {
1477
1477
  showAllDays?: boolean;
1478
1478
  innerRef?: React.Ref<HTMLDivElement>;
1479
1479
  }
1480
- declare function export_default$q(props: SymptomSeverityChartProps): React.JSX.Element | null;
1480
+ declare function export_default$r(props: SymptomSeverityChartProps): React.JSX.Element | null;
1481
1481
 
1482
1482
  interface SymptomTreatmentFiltersProps {
1483
1483
  expandedDropdown: "Symptoms" | "Treatments" | null;
@@ -1489,28 +1489,28 @@ interface SymptomTreatmentFiltersProps {
1489
1489
  onTreatmentsSelectionChange(treatments: string[]): void;
1490
1490
  innerRef?: React.Ref<HTMLDivElement>;
1491
1491
  }
1492
- declare function export_default$p(props: SymptomTreatmentFiltersProps): React.JSX.Element;
1492
+ declare function export_default$q(props: SymptomTreatmentFiltersProps): React.JSX.Element;
1493
1493
 
1494
1494
  interface SymptomSharkLogEntryListProps {
1495
1495
  onDaySelected(d: Date): void;
1496
1496
  previewState?: "default";
1497
1497
  innerRef?: React.Ref<HTMLDivElement>;
1498
1498
  }
1499
- declare function export_default$o(props: SymptomSharkLogEntryListProps): React.JSX.Element;
1499
+ declare function export_default$p(props: SymptomSharkLogEntryListProps): React.JSX.Element;
1500
1500
 
1501
1501
  interface SymptomSharkLogTodayProps {
1502
1502
  previewState?: "withLog" | "noLog";
1503
1503
  innerRef?: React.Ref<HTMLDivElement>;
1504
1504
  onClick(d: Date): void;
1505
1505
  }
1506
- declare function export_default$n(props: SymptomSharkLogTodayProps): React.JSX.Element | null;
1506
+ declare function export_default$o(props: SymptomSharkLogTodayProps): React.JSX.Element | null;
1507
1507
 
1508
1508
  interface SymptomSharkLogEntryEditProps {
1509
1509
  date: Date;
1510
1510
  promptForReviewAfterDays?: number;
1511
1511
  previewState?: "default";
1512
1512
  }
1513
- declare function export_default$m(props: SymptomSharkLogEntryEditProps): React.JSX.Element;
1513
+ declare function export_default$n(props: SymptomSharkLogEntryEditProps): React.JSX.Element;
1514
1514
 
1515
1515
  interface SymptomSharkVisualizationCoordinatorProps {
1516
1516
  children: React.ReactNode;
@@ -1518,7 +1518,7 @@ interface SymptomSharkVisualizationCoordinatorProps {
1518
1518
  previewState?: "default";
1519
1519
  innerRef?: React.Ref<HTMLDivElement>;
1520
1520
  }
1521
- declare function export_default$l(props: SymptomSharkVisualizationCoordinatorProps): React.JSX.Element;
1521
+ declare function export_default$m(props: SymptomSharkVisualizationCoordinatorProps): React.JSX.Element;
1522
1522
 
1523
1523
  interface CalendarViewProps {
1524
1524
  colorScheme?: "light" | "dark" | "auto";
@@ -1526,7 +1526,7 @@ interface CalendarViewProps {
1526
1526
  onSymptomSelected(symptom: string, intervalStart: Date): void;
1527
1527
  previewState?: "default";
1528
1528
  }
1529
- declare function export_default$k(props: CalendarViewProps): React.JSX.Element;
1529
+ declare function export_default$l(props: CalendarViewProps): React.JSX.Element;
1530
1530
 
1531
1531
  interface LogEntryEditViewProps {
1532
1532
  colorScheme?: "light" | "dark" | "auto";
@@ -1534,7 +1534,7 @@ interface LogEntryEditViewProps {
1534
1534
  promptForReviewAfterDays?: number;
1535
1535
  previewState?: "default";
1536
1536
  }
1537
- declare function export_default$j(props: LogEntryEditViewProps): React.JSX.Element;
1537
+ declare function export_default$k(props: LogEntryEditViewProps): React.JSX.Element;
1538
1538
 
1539
1539
  interface SymptomDetailViewProps {
1540
1540
  symptomId: string;
@@ -1542,13 +1542,13 @@ interface SymptomDetailViewProps {
1542
1542
  previewState?: "default";
1543
1543
  initialIntervalStart?: Date;
1544
1544
  }
1545
- declare function export_default$i(props: SymptomDetailViewProps): React.JSX.Element;
1545
+ declare function export_default$j(props: SymptomDetailViewProps): React.JSX.Element;
1546
1546
 
1547
1547
  interface AllergiesViewProps {
1548
1548
  presentation?: "Push" | "Modal";
1549
1549
  previewState?: "default";
1550
1550
  }
1551
- declare function export_default$h(props: AllergiesViewProps): React.JSX.Element;
1551
+ declare function export_default$i(props: AllergiesViewProps): React.JSX.Element;
1552
1552
 
1553
1553
  interface BlankViewProps {
1554
1554
  children?: React.ReactNode;
@@ -1563,13 +1563,13 @@ interface BlankViewProps {
1563
1563
  subtitleColor?: ColorDefinition;
1564
1564
  navigationBarButtonColor?: ColorDefinition;
1565
1565
  }
1566
- declare function export_default$g(props: BlankViewProps): React.JSX.Element;
1566
+ declare function export_default$h(props: BlankViewProps): React.JSX.Element;
1567
1567
 
1568
1568
  interface ConditionsViewProps {
1569
1569
  presentation?: "Push" | "Modal";
1570
1570
  previewState?: "default";
1571
1571
  }
1572
- declare function export_default$f(props: ConditionsViewProps): React.JSX.Element;
1572
+ declare function export_default$g(props: ConditionsViewProps): React.JSX.Element;
1573
1573
 
1574
1574
  interface ConnectEhrViewProps {
1575
1575
  externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
@@ -1580,13 +1580,13 @@ interface ConnectEhrViewProps {
1580
1580
  colorScheme?: "auto" | "light" | "dark";
1581
1581
  }
1582
1582
  type ViewPresentationType$3 = "Modal" | "Push";
1583
- declare function export_default$e(props: ConnectEhrViewProps): React.JSX.Element;
1583
+ declare function export_default$f(props: ConnectEhrViewProps): React.JSX.Element;
1584
1584
 
1585
1585
  interface DeviceDataViewProps {
1586
1586
  preview?: boolean;
1587
1587
  colorScheme?: "auto" | "light" | "dark";
1588
1588
  }
1589
- declare function export_default$d(props: DeviceDataViewProps): React.JSX.Element;
1589
+ declare function export_default$e(props: DeviceDataViewProps): React.JSX.Element;
1590
1590
 
1591
1591
  interface ExternalAccountsViewProps {
1592
1592
  excludeProviders?: boolean;
@@ -1597,7 +1597,7 @@ interface ExternalAccountsViewProps {
1597
1597
  colorScheme?: "auto" | "light" | "dark";
1598
1598
  }
1599
1599
  type ViewPresentationType$2 = "Modal" | "Push";
1600
- declare function export_default$c(props: ExternalAccountsViewProps): React.JSX.Element;
1600
+ declare function export_default$d(props: ExternalAccountsViewProps): React.JSX.Element;
1601
1601
 
1602
1602
  interface FitbitViewProps {
1603
1603
  connectPreview?: ConnectFitbitPreviewState;
@@ -1605,7 +1605,7 @@ interface FitbitViewProps {
1605
1605
  chartsPreview?: MonthChartsPreviewState;
1606
1606
  colorScheme?: "auto" | "light" | "dark";
1607
1607
  }
1608
- declare function export_default$b(props: FitbitViewProps): React.JSX.Element;
1608
+ declare function export_default$c(props: FitbitViewProps): React.JSX.Element;
1609
1609
 
1610
1610
  interface GarminViewProps {
1611
1611
  connectPreview?: ConnectGarminPreviewState;
@@ -1613,7 +1613,7 @@ interface GarminViewProps {
1613
1613
  chartsPreview?: MonthChartsPreviewState;
1614
1614
  garminProviderID?: number;
1615
1615
  }
1616
- declare function export_default$a(props: GarminViewProps): React.JSX.Element;
1616
+ declare function export_default$b(props: GarminViewProps): React.JSX.Element;
1617
1617
 
1618
1618
  interface HomeViewProps {
1619
1619
  /**
@@ -1632,7 +1632,7 @@ interface HomeViewProps {
1632
1632
  preview?: boolean;
1633
1633
  colorScheme?: "auto" | "light" | "dark";
1634
1634
  }
1635
- declare function export_default$9(props: HomeViewProps): React.JSX.Element;
1635
+ declare function export_default$a(props: HomeViewProps): React.JSX.Element;
1636
1636
 
1637
1637
  interface HealthAndWellnessViewProps {
1638
1638
  previewState?: "default";
@@ -1641,13 +1641,13 @@ interface HealthAndWellnessViewProps {
1641
1641
  externalAccountsApplicationUrl: string;
1642
1642
  variant?: "default" | "cardBased";
1643
1643
  }
1644
- declare function export_default$8(props: HealthAndWellnessViewProps): React.JSX.Element;
1644
+ declare function export_default$9(props: HealthAndWellnessViewProps): React.JSX.Element;
1645
1645
 
1646
1646
  interface MedicationsViewProps {
1647
1647
  presentation?: "Push" | "Modal";
1648
1648
  previewState?: "default";
1649
1649
  }
1650
- declare function export_default$7(props: MedicationsViewProps): React.JSX.Element;
1650
+ declare function export_default$8(props: MedicationsViewProps): React.JSX.Element;
1651
1651
 
1652
1652
  interface NotificationsViewProps {
1653
1653
  notificationType?: NotificationType;
@@ -1656,7 +1656,7 @@ interface NotificationsViewProps {
1656
1656
  colorScheme?: "auto" | "light" | "dark";
1657
1657
  }
1658
1658
  type ViewPresentationType$1 = "Modal" | "Push";
1659
- declare function export_default$6(props: NotificationsViewProps): React.JSX.Element;
1659
+ declare function export_default$7(props: NotificationsViewProps): React.JSX.Element;
1660
1660
 
1661
1661
  interface SurveyTasksViewProps {
1662
1662
  hideCompleteTasks?: boolean;
@@ -1667,7 +1667,7 @@ interface SurveyTasksViewProps {
1667
1667
  colorScheme?: "auto" | "light" | "dark";
1668
1668
  }
1669
1669
  type ViewPresentationType = "Modal" | "Push";
1670
- declare function export_default$5(props: SurveyTasksViewProps): React.JSX.Element;
1670
+ declare function export_default$6(props: SurveyTasksViewProps): React.JSX.Element;
1671
1671
 
1672
1672
  interface NewPointsEntry {
1673
1673
  name: string;
@@ -1685,7 +1685,7 @@ interface NewPointsViewProps {
1685
1685
  primaryColor?: string;
1686
1686
  doneButtonText?: string;
1687
1687
  }
1688
- declare function export_default$4(props: NewPointsViewProps): React.JSX.Element;
1688
+ declare function export_default$5(props: NewPointsViewProps): React.JSX.Element;
1689
1689
  declare function showNewPoints(props: NewPointsViewProps, url?: string): void;
1690
1690
 
1691
1691
  interface InboxViewProps {
@@ -1697,14 +1697,14 @@ interface InboxViewProps {
1697
1697
  historyViewerUrl: string;
1698
1698
  itemCategory?: string;
1699
1699
  }
1700
- declare function export_default$3(props: InboxViewProps): React.JSX.Element;
1700
+ declare function export_default$4(props: InboxViewProps): React.JSX.Element;
1701
1701
 
1702
1702
  interface InboxHistoryViewProps {
1703
1703
  previewState?: 'default';
1704
1704
  colorScheme?: 'light' | 'dark' | 'auto';
1705
1705
  messageViewerUrl: string;
1706
1706
  }
1707
- declare function export_default$2(props: InboxHistoryViewProps): React.JSX.Element;
1707
+ declare function export_default$3(props: InboxHistoryViewProps): React.JSX.Element;
1708
1708
 
1709
1709
  interface InboxMessageViewProps {
1710
1710
  previewState?: InboxMessage;
@@ -1712,7 +1712,16 @@ interface InboxMessageViewProps {
1712
1712
  resourceImageAlignment?: 'left' | 'center' | 'right';
1713
1713
  resourceButtonText?: string;
1714
1714
  }
1715
- declare function export_default$1(props: InboxMessageViewProps): React.JSX.Element;
1715
+ declare function export_default$2(props: InboxMessageViewProps): React.JSX.Element;
1716
+
1717
+ interface ResourceListViewProps {
1718
+ colorScheme?: 'light' | 'dark' | 'auto';
1719
+ previewState?: ResourceListPreviewState;
1720
+ title: string;
1721
+ resources: ResourceDefinition[];
1722
+ resourceImageAlignment?: ResourceImageAlignment;
1723
+ }
1724
+ declare function export_default$1(props: ResourceListViewProps): React.JSX.Element;
1716
1725
 
1717
1726
  declare function export_default(callback: Function, delay: number | null): void;
1718
1727
 
@@ -1722,4 +1731,4 @@ declare function getDayKey(date: Date): string;
1722
1731
 
1723
1732
  declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
1724
1733
 
1725
- export { export_default$1Y as Action, export_default$1X as ActivityMeter, export_default$1i as AllergiesList, export_default$h as AllergiesView, export_default$1h as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2c as AsthmaActionPlanManager, export_default$22 as AsthmaActionPlanView, export_default$21 as AsthmaActivityView, export_default$2b as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityType, export_default$20 as AsthmaAirQualityView, export_default$2a as AsthmaAlertTakeoverNotice, export_default$29 as AsthmaAlertTakeoverTrigger, export_default$1$ as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$28 as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$27 as AsthmaControlCalendar, AsthmaControlCalendarPreviewState, AsthmaControlCalendarVariant, AsthmaControlMetrics, AsthmaControlState, AsthmaControlStatus, export_default$26 as AsthmaControlStatusHeader, AsthmaDataStatus, export_default$1_ as AsthmaDayView, export_default$1Z as AsthmaHeartAndLungsView, AsthmaImpact, export_default$1l as AsthmaLibraryCategoryView, AsthmaLogEntry, export_default$25 as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1k as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$24 as AsthmaLogEntryHeader, AsthmaParticipant, export_default$23 as AsthmaPostEnrollmentSurveyTrigger, export_default$1j as AsthmaSleepView, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger, BarChartOptions, export_default$g as BlankView, BloodPressureDataPoint, export_default$1f as BloodPressureVisualization, export_default$1W as Button, export_default$1V as Calendar, export_default$1U as CalendarDay, CalendarDayStateConfiguration, export_default$1T as Card, export_default$1S as CardTitle, export_default$L as CelebrationStep, export_default$K as CelebrationStepContainer, ColorDefinition, export_default$1e as ConditionsList, export_default$f as ConditionsView, export_default$J as ConnectDeviceAccountStep, export_default$I as ConnectDeviceAccountStepContainer, export_default$1d as ConnectDevicesMenu, export_default$1c as ConnectEhr, export_default$H as ConnectEhrStep, export_default$G as ConnectEhrStepContainer, export_default$e as ConnectEhrView, export_default$1b as ConnectFitbit, export_default$1a as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$1R as DateRangeNavigator, export_default$1Q as DayTrackerSymbol, DeviceDataChartLine, export_default$19 as DeviceDataMonthChart, export_default$18 as DeviceDataMonthCharts, export_default$d as DeviceDataView, export_default$1P as DumbbellChart, export_default$17 as ExternalAccountList, export_default$16 as ExternalAccountsLoadingIndicator, export_default$15 as ExternalAccountsPreview, export_default$c as ExternalAccountsView, export_default$1O as Face, export_default$14 as FitbitDevices, export_default$13 as FitbitMonthCharts, export_default$b as FitbitView, export_default$12 as GarminDevices, export_default$11 as GarminMonthCharts, export_default$a as GarminView, export_default$8 as HealthAndWellnessView, export_default$10 as HealthPreviewSection, export_default$1N as Histogram, export_default$9 as HomeView, export_default$1p as InboxCompletedListItem, export_default$2 as InboxHistoryView, export_default$N as InboxItemList, export_default$M as InboxItemListCoordinator, export_default$1o as InboxMessageListItem, export_default$1 as InboxMessageView, export_default$1n as InboxResourceListItem, export_default$1m as InboxSurveyListItem, InboxSurveyVariant, export_default$3 as InboxView, export_default$$ as LabResultsSummary, export_default$1M as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$_ as MedicationsList, export_default$7 as MedicationsView, export_default$Z as MostRecentNotification, export_default$1L as NavigationBar, NewPointsEntry, export_default$4 as NewPointsView, NewPointsViewProps, export_default$1K as NotesInput, export_default$Y as NotificationList, export_default$6 as NotificationsView, export_default$X as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$1J as ProgressRing, export_default$W as ProjectHeader, export_default$V as ProjectSupport, export_default$U as ProviderSearch, export_default$T as RecentDailyDataBarChart, export_default$S as RelativeActivityToday, export_default$1I as Resource, ResourceDefinition, ResourceImageAlignment, export_default$1H as ResourceList, ResourceListPreviewState, export_default$R as RestingHeartRateCalendar, export_default$1G as RotatingComponentCoordinator, RotatingComponentInterval, export_default$1F as Section, export_default$1E as SegmentedControl, export_default$P as SeverityCalendar, export_default$1D as ShinyOverlay, export_default$1C as SingleDataPoint, export_default$1B as SingleExternalAccount, export_default$1A as SingleNotification, export_default$1z as SingleSurveyTask, export_default$1y as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$F as StepDetailText, export_default$D as StepImage, export_default$E as StepImageIcon, export_default$C as StepLayout, export_default$B as StepMarkdown, export_default$A as StepNextButton, export_default$z as StepText, export_default$y as StepTitle, SurveyBloodPressureDataParameters, export_default$Q as SurveyTaskList, export_default$5 as SurveyTasksView, export_default$1x as Switch, SymptomConfiguration, SymptomReference, export_default$v as SymptomSharkCalendar, export_default$k as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$t as SymptomSharkLogEntry, export_default$m as SymptomSharkLogEntryEdit, export_default$j as SymptomSharkLogEntryEditView, export_default$o as SymptomSharkLogEntryList, export_default$n as SymptomSharkLogToday, export_default$u as SymptomSharkOverallExperienceChart, export_default$i as SymptomSharkSymptomDetailView, export_default$q as SymptomSharkSymptomSeverityChart, export_default$r as SymptomSharkSymptomSeveritySummary, export_default$p as SymptomSharkSymptomTreatmentFilters, export_default$s as SymptomSharkSymptomTreatmentHistograms, export_default$l as SymptomSharkVisualizationCoordinator, export_default$1w as TextBlock, export_default$1v as Title, export_default$1u as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$1t as UnstyledButton, export_default$1s as ValueSelector, export_default$O as ViewEhr, export_default$1r as ViewHeader, export_default$1q as WeekCalendar, WeekStartsOn, export_default$x as YouTubeStep, export_default$w as YouTubeStepContainer, service as asthmaDataService, export_default$1g as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaDataStatusColor, getAsthmaDataStatusText, getAsthmaImpactTexts, getAsthmaImpacts, getAsthmaSymptomLevel, getAsthmaSymptomLevelText, getAsthmaSymptomTexts, getAsthmaSymptoms, getAsthmaTriggerTexts, getAsthmaTriggers, getDayKey, getMonthStart, getWeekStart, isBloodOxygenLevelWithinRange, isDaytimeRestingHeartRateWithinRange, isNighttimeRestingHeartRateWithinRange, isRespiratoryRateWithinRange, isSleepDisturbancesWithinRange, isStepsWithinRange, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
1734
+ export { export_default$1o as Action, export_default$1n as ActivityMeter, export_default$1W as AllergiesList, export_default$i as AllergiesView, export_default$1V as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2c as AsthmaActionPlanManager, export_default$22 as AsthmaActionPlanView, export_default$21 as AsthmaActivityView, export_default$2b as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityType, export_default$20 as AsthmaAirQualityView, export_default$2a as AsthmaAlertTakeoverNotice, export_default$29 as AsthmaAlertTakeoverTrigger, export_default$1$ as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$28 as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$27 as AsthmaControlCalendar, AsthmaControlCalendarPreviewState, AsthmaControlCalendarVariant, AsthmaControlMetrics, AsthmaControlState, AsthmaControlStatus, export_default$26 as AsthmaControlStatusHeader, AsthmaDailyDataType, AsthmaDataStatus, export_default$1_ as AsthmaDayView, export_default$1Z as AsthmaHeartAndLungsView, AsthmaImpact, AsthmaLogEntry, export_default$25 as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1Y as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$24 as AsthmaLogEntryHeader, AsthmaParticipant, export_default$23 as AsthmaPostEnrollmentSurveyTrigger, export_default$1X as AsthmaSleepView, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger, BarChartOptions, export_default$h as BlankView, BloodPressureDataPoint, export_default$1T as BloodPressureVisualization, export_default$1s as Button, export_default$1m as Calendar, export_default$1l as CalendarDay, CalendarDayStateConfiguration, export_default$1k as Card, export_default$1j as CardTitle, export_default$M as CelebrationStep, export_default$L as CelebrationStepContainer, ColorDefinition, export_default$1S as ConditionsList, export_default$g as ConditionsView, export_default$K as ConnectDeviceAccountStep, export_default$J as ConnectDeviceAccountStepContainer, export_default$1R as ConnectDevicesMenu, export_default$1Q as ConnectEhr, export_default$I as ConnectEhrStep, export_default$H as ConnectEhrStepContainer, export_default$f as ConnectEhrView, export_default$1P as ConnectFitbit, export_default$1O as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$1i as DateRangeNavigator, export_default$1h as DayTrackerSymbol, DeviceDataChartLine, export_default$1N as DeviceDataMonthChart, export_default$1M as DeviceDataMonthCharts, export_default$e as DeviceDataView, export_default$1g as DumbbellChart, export_default$1L as ExternalAccountList, export_default$1K as ExternalAccountsLoadingIndicator, export_default$1J as ExternalAccountsPreview, export_default$d as ExternalAccountsView, export_default$1f as Face, export_default$1I as FitbitDevices, export_default$1H as FitbitMonthCharts, export_default$c as FitbitView, export_default$1G as GarminDevices, export_default$1F as GarminMonthCharts, export_default$b as GarminView, export_default$9 as HealthAndWellnessView, export_default$1E as HealthPreviewSection, export_default$1e as Histogram, export_default$a as HomeView, export_default$S as InboxCompletedListItem, export_default$3 as InboxHistoryView, export_default$O as InboxItemList, export_default$N as InboxItemListCoordinator, export_default$R as InboxMessageListItem, export_default$2 as InboxMessageView, export_default$Q as InboxResourceListItem, export_default$P as InboxSurveyListItem, InboxSurveyVariant, export_default$4 as InboxView, export_default$1D as LabResultsSummary, export_default$1d as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$1C as MedicationsList, export_default$8 as MedicationsView, export_default$1B as MostRecentNotification, export_default$1c as NavigationBar, NewPointsEntry, export_default$5 as NewPointsView, NewPointsViewProps, export_default$1b as NotesInput, export_default$1A as NotificationList, export_default$7 as NotificationsView, export_default$1z as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$1a as ProgressRing, export_default$1y as ProjectHeader, export_default$1x as ProjectSupport, export_default$1w as ProviderSearch, export_default$1v as RecentDailyDataBarChart, export_default$1u as RelativeActivityToday, export_default$19 as Resource, ResourceDefinition, ResourceImageAlignment, export_default$18 as ResourceList, ResourceListPreviewState, export_default$1 as ResourceListView, export_default$1t as RestingHeartRateCalendar, export_default$17 as RotatingComponentCoordinator, RotatingComponentInterval, export_default$16 as Section, export_default$15 as SegmentedControl, export_default$1q as SeverityCalendar, export_default$14 as ShinyOverlay, export_default$13 as SingleDataPoint, export_default$12 as SingleExternalAccount, export_default$11 as SingleNotification, export_default$10 as SingleSurveyTask, export_default$$ as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$G as StepDetailText, export_default$E as StepImage, export_default$F as StepImageIcon, export_default$D as StepLayout, export_default$C as StepMarkdown, export_default$B as StepNextButton, export_default$A as StepText, export_default$z as StepTitle, SurveyBloodPressureDataParameters, export_default$1r as SurveyTaskList, export_default$6 as SurveyTasksView, export_default$_ as Switch, SymptomConfiguration, SymptomReference, export_default$w as SymptomSharkCalendar, export_default$l as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$u as SymptomSharkLogEntry, export_default$n as SymptomSharkLogEntryEdit, export_default$k as SymptomSharkLogEntryEditView, export_default$p as SymptomSharkLogEntryList, export_default$o as SymptomSharkLogToday, export_default$v as SymptomSharkOverallExperienceChart, export_default$j as SymptomSharkSymptomDetailView, export_default$r as SymptomSharkSymptomSeverityChart, export_default$s as SymptomSharkSymptomSeveritySummary, export_default$q as SymptomSharkSymptomTreatmentFilters, export_default$t as SymptomSharkSymptomTreatmentHistograms, export_default$m as SymptomSharkVisualizationCoordinator, export_default$Z as TextBlock, export_default$Y as Title, export_default$X as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$W as UnstyledButton, export_default$V as ValueSelector, export_default$1p as ViewEhr, export_default$U as ViewHeader, export_default$T as WeekCalendar, WeekStartsOn, export_default$y as YouTubeStep, export_default$x as YouTubeStepContainer, service as asthmaDataService, export_default$1U as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaDataStatusColor, getAsthmaDataStatusText, getAsthmaImpactTexts, getAsthmaImpacts, getAsthmaSymptomLevel, getAsthmaSymptomLevelText, getAsthmaSymptomTexts, getAsthmaSymptoms, getAsthmaTriggerTexts, getAsthmaTriggers, getDayKey, getMonthStart, getWeekStart, isBloodOxygenLevelWithinRange, isDaytimeRestingHeartRateWithinRange, isNighttimeRestingHeartRateWithinRange, isRespiratoryRateWithinRange, isSleepDisturbancesWithinRange, isStepsWithinRange, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };