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