@careevolution/mydatahelps-ui 2.2.1-VB3.9 → 2.4.0
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/container/DailyDataChart/DailyDataChart.d.ts +1 -1
- package/dist/cjs/types/components/container/DailyDataChart/DailyDataChart.stories.d.ts +13 -0
- package/dist/cjs/types/components/container/DeviceDataMonthChart/DeviceDataMonthChart.d.ts +2 -2
- package/dist/cjs/types/components/container/ProviderSearch/ProviderSearch.d.ts +3 -0
- package/dist/cjs/types/components/step/ConnectDeviceAccountStep/ConnectDeviceAccountStep.d.ts +11 -0
- package/dist/cjs/types/components/step/ConnectDeviceAccountStep/index.d.ts +1 -0
- package/dist/cjs/types/components/step/ConnectDeviceAccountStepContainer/ConnectDeviceAccountStepContainer.d.ts +5 -0
- package/dist/cjs/types/components/step/ConnectDeviceAccountStepContainer/index.d.ts +1 -0
- package/dist/cjs/types/components/step/ConnectEhrStep/ConnectEhrStep.d.ts +15 -0
- package/dist/cjs/types/components/step/ConnectEhrStep/index.d.ts +1 -0
- package/dist/cjs/types/components/step/ConnectEhrStepContainer/ConnectEhrStepContainer.d.ts +2 -0
- package/dist/cjs/types/components/step/ConnectEhrStepContainer/index.d.ts +1 -0
- package/dist/cjs/types/components/step/StepNextButton/StepNextButton.d.ts +1 -0
- package/dist/cjs/types/components/step/index.d.ts +12 -8
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/DailyDataChart/DailyDataChart.d.ts +1 -1
- package/dist/esm/types/components/container/DailyDataChart/DailyDataChart.stories.d.ts +13 -0
- package/dist/esm/types/components/container/DeviceDataMonthChart/DeviceDataMonthChart.d.ts +2 -2
- package/dist/esm/types/components/container/ProviderSearch/ProviderSearch.d.ts +3 -0
- package/dist/esm/types/components/step/ConnectDeviceAccountStep/ConnectDeviceAccountStep.d.ts +11 -0
- package/dist/esm/types/components/step/ConnectDeviceAccountStep/index.d.ts +1 -0
- package/dist/esm/types/components/step/ConnectDeviceAccountStepContainer/ConnectDeviceAccountStepContainer.d.ts +5 -0
- package/dist/esm/types/components/step/ConnectDeviceAccountStepContainer/index.d.ts +1 -0
- package/dist/esm/types/components/step/ConnectEhrStep/ConnectEhrStep.d.ts +15 -0
- package/dist/esm/types/components/step/ConnectEhrStep/index.d.ts +1 -0
- package/dist/esm/types/components/step/ConnectEhrStepContainer/ConnectEhrStepContainer.d.ts +2 -0
- package/dist/esm/types/components/step/ConnectEhrStepContainer/index.d.ts +1 -0
- package/dist/esm/types/components/step/StepNextButton/StepNextButton.d.ts +1 -0
- package/dist/esm/types/components/step/index.d.ts +12 -8
- package/dist/index.d.ts +126 -92
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { ReactElement, MouseEventHandler } from 'react';
|
|
2
2
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
3
|
-
import { StatusBarStyle, ExternalAccount, Notification, SurveyTask, ExternalAccountStatus, NotificationType, SurveyTaskStatus } from '@careevolution/mydatahelps-js';
|
|
3
|
+
import { StatusBarStyle, ExternalAccount, Notification, SurveyTask, ExternalAccountStatus, NotificationType, ExternalAccountProvider, SurveyTaskStatus } from '@careevolution/mydatahelps-js';
|
|
4
4
|
import { IconDefinition as IconDefinition$1 } from '@fortawesome/fontawesome-common-types';
|
|
5
5
|
|
|
6
6
|
interface ActionProps {
|
|
@@ -16,7 +16,7 @@ interface ActionProps {
|
|
|
16
16
|
indicatorPosition?: "default" | "topRight";
|
|
17
17
|
bottomBorder?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare function export_default$
|
|
19
|
+
declare function export_default$1b(props: ActionProps): React.JSX.Element;
|
|
20
20
|
|
|
21
21
|
interface ActivityMeterProps {
|
|
22
22
|
label: string;
|
|
@@ -28,7 +28,7 @@ interface ActivityMeterProps {
|
|
|
28
28
|
message?: string;
|
|
29
29
|
className?: string;
|
|
30
30
|
}
|
|
31
|
-
declare function export_default$
|
|
31
|
+
declare function export_default$1a(props: ActivityMeterProps): React.JSX.Element;
|
|
32
32
|
|
|
33
33
|
interface ButtonProps {
|
|
34
34
|
children?: React.ReactNode;
|
|
@@ -43,7 +43,7 @@ interface ButtonProps {
|
|
|
43
43
|
loading?: boolean;
|
|
44
44
|
variant?: "default" | "subtle" | "light";
|
|
45
45
|
}
|
|
46
|
-
declare function export_default$
|
|
46
|
+
declare function export_default$19(props: ButtonProps): React.JSX.Element;
|
|
47
47
|
|
|
48
48
|
interface CalendarProps {
|
|
49
49
|
month: number;
|
|
@@ -51,7 +51,7 @@ interface CalendarProps {
|
|
|
51
51
|
dayRenderer(year: number, month: number, day?: number): JSX.Element | null;
|
|
52
52
|
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
53
53
|
}
|
|
54
|
-
declare function export_default$
|
|
54
|
+
declare function export_default$18(props: CalendarProps): React.JSX.Element;
|
|
55
55
|
|
|
56
56
|
interface CardProps {
|
|
57
57
|
className?: string;
|
|
@@ -59,14 +59,14 @@ interface CardProps {
|
|
|
59
59
|
allowOverflow?: boolean;
|
|
60
60
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
61
61
|
}
|
|
62
|
-
declare function export_default$
|
|
62
|
+
declare function export_default$17(props: CardProps): React.JSX.Element | null;
|
|
63
63
|
|
|
64
64
|
interface CardTitleProps {
|
|
65
65
|
title: string;
|
|
66
66
|
onDetailClick?: Function;
|
|
67
67
|
detailLinkText?: string;
|
|
68
68
|
}
|
|
69
|
-
declare function export_default$
|
|
69
|
+
declare function export_default$16(props: CardTitleProps): React.JSX.Element;
|
|
70
70
|
|
|
71
71
|
declare type WeekStartsOn = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "6DaysAgo" | "7DaysAgo";
|
|
72
72
|
declare function getWeekStart(weekStartsOn?: WeekStartsOn): Date;
|
|
@@ -87,14 +87,14 @@ interface DateRangeNavigatorProps {
|
|
|
87
87
|
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
88
88
|
className?: string;
|
|
89
89
|
}
|
|
90
|
-
declare function export_default$
|
|
90
|
+
declare function export_default$15(props: DateRangeNavigatorProps): React.JSX.Element;
|
|
91
91
|
|
|
92
92
|
interface DayTrackerSymbolProps {
|
|
93
93
|
primaryColors: string[];
|
|
94
94
|
secondaryColors: string[];
|
|
95
95
|
className?: string;
|
|
96
96
|
}
|
|
97
|
-
declare function export_default$
|
|
97
|
+
declare function export_default$14(props: DayTrackerSymbolProps): React.JSX.Element;
|
|
98
98
|
|
|
99
99
|
interface FaceProps {
|
|
100
100
|
faceValue?: number;
|
|
@@ -102,7 +102,7 @@ interface FaceProps {
|
|
|
102
102
|
onClick?: MouseEventHandler;
|
|
103
103
|
className?: string;
|
|
104
104
|
}
|
|
105
|
-
declare function export_default
|
|
105
|
+
declare function export_default$13(props: FaceProps): React.JSX.Element;
|
|
106
106
|
|
|
107
107
|
interface HistogramProps {
|
|
108
108
|
entries: {
|
|
@@ -113,7 +113,7 @@ interface HistogramProps {
|
|
|
113
113
|
}[];
|
|
114
114
|
className?: string;
|
|
115
115
|
}
|
|
116
|
-
declare function export_default$
|
|
116
|
+
declare function export_default$12(props: HistogramProps): React.JSX.Element;
|
|
117
117
|
|
|
118
118
|
interface LayoutProps {
|
|
119
119
|
children?: React.ReactNode;
|
|
@@ -133,7 +133,7 @@ interface LayoutContext {
|
|
|
133
133
|
bodyBackgroundColor: string;
|
|
134
134
|
}
|
|
135
135
|
declare const LayoutContext: React.Context<LayoutContext>;
|
|
136
|
-
declare function export_default$
|
|
136
|
+
declare function export_default$11(props: LayoutProps): React.JSX.Element;
|
|
137
137
|
|
|
138
138
|
interface LoadingIndicatorProps {
|
|
139
139
|
variant?: "default" | "inline";
|
|
@@ -153,7 +153,7 @@ interface NavigationBarProps {
|
|
|
153
153
|
className?: string;
|
|
154
154
|
variant?: "default" | "compressed";
|
|
155
155
|
}
|
|
156
|
-
declare function export_default$
|
|
156
|
+
declare function export_default$10(props: NavigationBarProps): React.JSX.Element;
|
|
157
157
|
|
|
158
158
|
interface SectionProps {
|
|
159
159
|
children?: React.ReactNode;
|
|
@@ -161,7 +161,7 @@ interface SectionProps {
|
|
|
161
161
|
noTopMargin?: boolean;
|
|
162
162
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
163
163
|
}
|
|
164
|
-
declare function export_default
|
|
164
|
+
declare function export_default$$(props: SectionProps): React.JSX.Element | null;
|
|
165
165
|
|
|
166
166
|
interface SegmentedControlProps {
|
|
167
167
|
segments: {
|
|
@@ -173,28 +173,28 @@ interface SegmentedControlProps {
|
|
|
173
173
|
className?: string;
|
|
174
174
|
color?: string;
|
|
175
175
|
}
|
|
176
|
-
declare function export_default$
|
|
176
|
+
declare function export_default$_(props: SegmentedControlProps): React.JSX.Element;
|
|
177
177
|
|
|
178
|
-
declare function export_default$
|
|
178
|
+
declare function export_default$Z(): React.JSX.Element;
|
|
179
179
|
|
|
180
180
|
interface SingleExternalAccountProps {
|
|
181
181
|
externalAccount: ExternalAccount;
|
|
182
182
|
onAccountRemoved: (account: ExternalAccount) => void;
|
|
183
183
|
onReconnectAccount: (account: ExternalAccount) => void;
|
|
184
184
|
}
|
|
185
|
-
declare function export_default$
|
|
185
|
+
declare function export_default$Y(props: SingleExternalAccountProps): React.JSX.Element;
|
|
186
186
|
|
|
187
187
|
interface SingleNotificationProps {
|
|
188
188
|
notification: Notification;
|
|
189
189
|
}
|
|
190
|
-
declare function export_default$
|
|
190
|
+
declare function export_default$X(props: SingleNotificationProps): React.JSX.Element;
|
|
191
191
|
|
|
192
192
|
interface SingleSurveyTaskProps {
|
|
193
193
|
task: SurveyTask;
|
|
194
194
|
descriptionIcon?: IconDefinition$1;
|
|
195
195
|
disableClick?: boolean;
|
|
196
196
|
}
|
|
197
|
-
declare function export_default$
|
|
197
|
+
declare function export_default$W(props: SingleSurveyTaskProps): React.JSX.Element | null;
|
|
198
198
|
|
|
199
199
|
interface SparkBarChartProps {
|
|
200
200
|
averageFillPercent: number;
|
|
@@ -204,7 +204,7 @@ interface SparkBarChartBar {
|
|
|
204
204
|
color: string;
|
|
205
205
|
barFillPercent: number;
|
|
206
206
|
}
|
|
207
|
-
declare function export_default$
|
|
207
|
+
declare function export_default$V(props: SparkBarChartProps): React.JSX.Element;
|
|
208
208
|
|
|
209
209
|
interface SwitchProps {
|
|
210
210
|
isOn: Boolean;
|
|
@@ -212,7 +212,7 @@ interface SwitchProps {
|
|
|
212
212
|
onValueChanged(value: boolean): void;
|
|
213
213
|
className?: string;
|
|
214
214
|
}
|
|
215
|
-
declare function export_default$
|
|
215
|
+
declare function export_default$U(props: SwitchProps): React.JSX.Element;
|
|
216
216
|
|
|
217
217
|
interface StatusBarBackgroundProps {
|
|
218
218
|
color?: string;
|
|
@@ -223,7 +223,7 @@ interface TextBlockProps {
|
|
|
223
223
|
children?: React.ReactNode;
|
|
224
224
|
className?: string;
|
|
225
225
|
}
|
|
226
|
-
declare function export_default$
|
|
226
|
+
declare function export_default$T(props: TextBlockProps): React.JSX.Element | null;
|
|
227
227
|
|
|
228
228
|
interface TrackerItemProps {
|
|
229
229
|
selected: boolean;
|
|
@@ -234,7 +234,7 @@ interface TrackerItemProps {
|
|
|
234
234
|
onClick?: Function;
|
|
235
235
|
className?: string;
|
|
236
236
|
}
|
|
237
|
-
declare function export_default$
|
|
237
|
+
declare function export_default$S(props: TrackerItemProps): React.JSX.Element;
|
|
238
238
|
|
|
239
239
|
interface UnstyledButtonProps {
|
|
240
240
|
onClick: MouseEventHandler;
|
|
@@ -244,13 +244,13 @@ interface UnstyledButtonProps {
|
|
|
244
244
|
style?: React.CSSProperties;
|
|
245
245
|
disabled?: boolean;
|
|
246
246
|
}
|
|
247
|
-
declare function export_default$
|
|
247
|
+
declare function export_default$R(props: UnstyledButtonProps): React.JSX.Element;
|
|
248
248
|
|
|
249
249
|
interface ViewHeaderProps {
|
|
250
250
|
title?: string;
|
|
251
251
|
subtitle?: string;
|
|
252
252
|
}
|
|
253
|
-
declare function export_default$
|
|
253
|
+
declare function export_default$Q(props: ViewHeaderProps): React.JSX.Element | null;
|
|
254
254
|
|
|
255
255
|
interface WeekCalendarProps {
|
|
256
256
|
selectedDate?: Date;
|
|
@@ -261,13 +261,13 @@ interface WeekCalendarProps {
|
|
|
261
261
|
onStartDateChange?(startDate: Date): void;
|
|
262
262
|
dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
|
|
263
263
|
}
|
|
264
|
-
declare function export_default$
|
|
264
|
+
declare function export_default$P(props: WeekCalendarProps): React.JSX.Element;
|
|
265
265
|
|
|
266
266
|
interface AppDownloadProps {
|
|
267
267
|
previewProjectPlatforms?: string[];
|
|
268
268
|
previewDevicePlatform?: string;
|
|
269
269
|
}
|
|
270
|
-
declare function export_default$
|
|
270
|
+
declare function export_default$O(props: AppDownloadProps): React.JSX.Element | null;
|
|
271
271
|
|
|
272
272
|
interface ConnectEhrProps {
|
|
273
273
|
applicationUrl: ConnectEhrApplicationUrl;
|
|
@@ -277,7 +277,7 @@ interface ConnectEhrProps {
|
|
|
277
277
|
}
|
|
278
278
|
declare type ConnectEhrApplicationUrl = "preview" | string;
|
|
279
279
|
declare type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
|
|
280
|
-
declare function export_default$
|
|
280
|
+
declare function export_default$N(props: ConnectEhrProps): React.JSX.Element | null;
|
|
281
281
|
|
|
282
282
|
interface ConnectFitbitProps {
|
|
283
283
|
title?: string;
|
|
@@ -286,7 +286,7 @@ interface ConnectFitbitProps {
|
|
|
286
286
|
disabledBehavior?: 'hide' | 'displayError';
|
|
287
287
|
}
|
|
288
288
|
declare type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
|
|
289
|
-
declare function export_default$
|
|
289
|
+
declare function export_default$M(props: ConnectFitbitProps): React.JSX.Element;
|
|
290
290
|
|
|
291
291
|
interface ConnectGarminProps {
|
|
292
292
|
title?: string;
|
|
@@ -295,7 +295,7 @@ interface ConnectGarminProps {
|
|
|
295
295
|
disabledBehavior?: 'hide' | 'displayError';
|
|
296
296
|
}
|
|
297
297
|
declare type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
|
|
298
|
-
declare function export_default$
|
|
298
|
+
declare function export_default$L(props: ConnectGarminProps): React.JSX.Element;
|
|
299
299
|
|
|
300
300
|
declare type DailyDataQueryResult = {
|
|
301
301
|
[key: string]: number;
|
|
@@ -385,12 +385,12 @@ interface AreaChartOptions {
|
|
|
385
385
|
lineColor?: string;
|
|
386
386
|
areaColor?: string;
|
|
387
387
|
}
|
|
388
|
-
declare function DailyDataChart(props: DailyDataChartProps):
|
|
388
|
+
declare function DailyDataChart(props: DailyDataChartProps): React.JSX.Element | null;
|
|
389
389
|
|
|
390
390
|
interface DeviceDataMonthChartProps {
|
|
391
391
|
lines: DeviceDataChartLine[];
|
|
392
|
-
month
|
|
393
|
-
year
|
|
392
|
+
month: number;
|
|
393
|
+
year: number;
|
|
394
394
|
syncId?: string;
|
|
395
395
|
title?: string;
|
|
396
396
|
previewState?: DeviceDataMonthChartPreviewState;
|
|
@@ -403,13 +403,13 @@ interface DeviceDataChartLine {
|
|
|
403
403
|
showAverage?: boolean;
|
|
404
404
|
}
|
|
405
405
|
declare type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
|
|
406
|
-
declare function export_default$
|
|
406
|
+
declare function export_default$K(props: DeviceDataMonthChartProps): React.JSX.Element | null;
|
|
407
407
|
|
|
408
408
|
interface DeviceDataMonthChartsProps {
|
|
409
409
|
previewState?: DeviceDataMonthChartsPreviewState;
|
|
410
410
|
}
|
|
411
411
|
declare type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
|
|
412
|
-
declare function export_default$
|
|
412
|
+
declare function export_default$J(props: DeviceDataMonthChartsProps): React.JSX.Element;
|
|
413
413
|
|
|
414
414
|
interface ExternalAccountListProps {
|
|
415
415
|
externalAccountProviderCategories?: string[];
|
|
@@ -417,13 +417,13 @@ interface ExternalAccountListProps {
|
|
|
417
417
|
onExternalAccountsLoaded?: (accounts: ExternalAccount[]) => void;
|
|
418
418
|
}
|
|
419
419
|
declare type NotificationListPreviewState$1 = "Default";
|
|
420
|
-
declare function export_default$
|
|
420
|
+
declare function export_default$I(props: ExternalAccountListProps): React.JSX.Element;
|
|
421
421
|
|
|
422
422
|
interface ExternalAccountsLoadingIndicatorProps {
|
|
423
423
|
previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
|
|
424
424
|
externalAccountCategories?: string[];
|
|
425
425
|
}
|
|
426
|
-
declare function export_default$
|
|
426
|
+
declare function export_default$H(props: ExternalAccountsLoadingIndicatorProps): React.JSX.Element | null;
|
|
427
427
|
|
|
428
428
|
interface ExternalAccountsPreviewProps {
|
|
429
429
|
excludeProviders?: boolean;
|
|
@@ -434,31 +434,31 @@ interface ExternalAccountsPreviewProps {
|
|
|
434
434
|
}
|
|
435
435
|
declare type ExternalAccountsApplicationUrl = "preview" | string;
|
|
436
436
|
declare type ExternalAccountsPreviewPreviewState = "Default";
|
|
437
|
-
declare function export_default$
|
|
437
|
+
declare function export_default$G(props: ExternalAccountsPreviewProps): React.JSX.Element | null;
|
|
438
438
|
|
|
439
439
|
declare type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
440
440
|
|
|
441
441
|
interface FitbitDevicesProps {
|
|
442
442
|
previewState?: ConnectedDevicesPreviewState;
|
|
443
443
|
}
|
|
444
|
-
declare function export_default$
|
|
444
|
+
declare function export_default$F(props: FitbitDevicesProps): React.JSX.Element;
|
|
445
445
|
|
|
446
446
|
declare type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
447
447
|
|
|
448
448
|
interface FitbitMonthChartsProps {
|
|
449
449
|
previewState?: MonthChartsPreviewState;
|
|
450
450
|
}
|
|
451
|
-
declare function export_default$
|
|
451
|
+
declare function export_default$E(props: FitbitMonthChartsProps): React.JSX.Element;
|
|
452
452
|
|
|
453
453
|
interface GarminDevicesProps {
|
|
454
454
|
previewState?: ConnectedDevicesPreviewState;
|
|
455
455
|
}
|
|
456
|
-
declare function export_default$
|
|
456
|
+
declare function export_default$D(props: GarminDevicesProps): React.JSX.Element;
|
|
457
457
|
|
|
458
458
|
interface GarminMonthChartsProps {
|
|
459
459
|
previewState?: MonthChartsPreviewState;
|
|
460
460
|
}
|
|
461
|
-
declare function export_default$
|
|
461
|
+
declare function export_default$C(props: GarminMonthChartsProps): React.JSX.Element;
|
|
462
462
|
|
|
463
463
|
declare type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
|
|
464
464
|
interface HealthPreviewSectionProps {
|
|
@@ -467,7 +467,7 @@ interface HealthPreviewSectionProps {
|
|
|
467
467
|
previewState?: "NoData" | "Default";
|
|
468
468
|
indicatorPosition?: "default" | "topRight";
|
|
469
469
|
}
|
|
470
|
-
declare function export_default$
|
|
470
|
+
declare function export_default$B(props: HealthPreviewSectionProps): React.JSX.Element | null;
|
|
471
471
|
|
|
472
472
|
interface TermInformation {
|
|
473
473
|
TermFamily: string;
|
|
@@ -480,7 +480,7 @@ interface LabResultsSummaryProps {
|
|
|
480
480
|
onClick(): void;
|
|
481
481
|
onViewTermInfo(termInfo: TermInformation): void;
|
|
482
482
|
}
|
|
483
|
-
declare function export_default$
|
|
483
|
+
declare function export_default$A(props: LabResultsSummaryProps): React.JSX.Element | null;
|
|
484
484
|
|
|
485
485
|
interface MostRecentNotificationProps {
|
|
486
486
|
notificationType?: NotificationType;
|
|
@@ -489,40 +489,42 @@ interface MostRecentNotificationProps {
|
|
|
489
489
|
previewState?: MostRecentNotificationPreviewState;
|
|
490
490
|
}
|
|
491
491
|
declare type MostRecentNotificationPreviewState = "Default";
|
|
492
|
-
declare function export_default$
|
|
492
|
+
declare function export_default$z(props: MostRecentNotificationProps): React.JSX.Element | null;
|
|
493
493
|
|
|
494
494
|
interface NotificationListProps {
|
|
495
495
|
notificationType?: NotificationType;
|
|
496
496
|
previewState?: NotificationListPreviewState;
|
|
497
497
|
}
|
|
498
498
|
declare type NotificationListPreviewState = "Default" | "NoData";
|
|
499
|
-
declare function export_default$
|
|
499
|
+
declare function export_default$y(props: NotificationListProps): React.JSX.Element;
|
|
500
500
|
|
|
501
501
|
interface PlatformSpecificContentProps {
|
|
502
502
|
platforms: string[];
|
|
503
503
|
children?: React.ReactNode;
|
|
504
504
|
previewDevicePlatform?: string;
|
|
505
505
|
}
|
|
506
|
-
declare function export_default$
|
|
506
|
+
declare function export_default$x(props: PlatformSpecificContentProps): React.JSX.Element | null;
|
|
507
507
|
|
|
508
508
|
interface ProjectHeaderProps {
|
|
509
509
|
previewState?: ProjectHeaderPropsPreviewState;
|
|
510
510
|
}
|
|
511
511
|
declare type ProjectHeaderPropsPreviewState = "Default";
|
|
512
|
-
declare function export_default$
|
|
512
|
+
declare function export_default$w(props: ProjectHeaderProps): React.JSX.Element;
|
|
513
513
|
|
|
514
514
|
interface ProjectSupportProps {
|
|
515
515
|
previewState?: ProjectSupportPropsPreviewState;
|
|
516
516
|
}
|
|
517
517
|
declare type ProjectSupportPropsPreviewState = "Default";
|
|
518
|
-
declare function export_default$
|
|
518
|
+
declare function export_default$v(props: ProjectSupportProps): React.JSX.Element | null;
|
|
519
519
|
|
|
520
520
|
interface ProviderSearchProps {
|
|
521
521
|
previewState?: ProviderSearchPreviewState;
|
|
522
522
|
providerCategories?: string[];
|
|
523
|
+
openNewWindow?: boolean;
|
|
524
|
+
onProviderSelected?: (provider: ExternalAccountProvider) => void;
|
|
523
525
|
}
|
|
524
526
|
declare type ProviderSearchPreviewState = "Default";
|
|
525
|
-
declare function export_default$
|
|
527
|
+
declare function export_default$u(props: ProviderSearchProps): React.JSX.Element;
|
|
526
528
|
|
|
527
529
|
interface RelativeActivityTodayProps {
|
|
528
530
|
dataTypes: RelativeActivityDataType[];
|
|
@@ -536,7 +538,7 @@ interface RelativeActivityDataType {
|
|
|
536
538
|
color: string;
|
|
537
539
|
formatter: (number: number) => string;
|
|
538
540
|
}
|
|
539
|
-
declare function export_default$
|
|
541
|
+
declare function export_default$t(props: RelativeActivityTodayProps): React.JSX.Element | null;
|
|
540
542
|
|
|
541
543
|
declare type RestingHeartRateCalendarPreviewState = "WithData" | "NoData" | "Loading";
|
|
542
544
|
interface RestingHeartRateCalendarProps {
|
|
@@ -544,7 +546,7 @@ interface RestingHeartRateCalendarProps {
|
|
|
544
546
|
year: number;
|
|
545
547
|
showPreviewData: RestingHeartRateCalendarPreviewState;
|
|
546
548
|
}
|
|
547
|
-
declare function export_default$
|
|
549
|
+
declare function export_default$s(props: RestingHeartRateCalendarProps): React.JSX.Element;
|
|
548
550
|
|
|
549
551
|
interface SurveyTaskListProps {
|
|
550
552
|
status: SurveyTaskStatus;
|
|
@@ -556,7 +558,7 @@ interface SurveyTaskListProps {
|
|
|
556
558
|
variant?: "noCard" | "singleCard" | "multiCard";
|
|
557
559
|
}
|
|
558
560
|
declare type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
|
|
559
|
-
declare function export_default$
|
|
561
|
+
declare function export_default$r(props: SurveyTaskListProps): React.JSX.Element | null;
|
|
560
562
|
|
|
561
563
|
interface BlankViewProps {
|
|
562
564
|
children?: React.ReactNode;
|
|
@@ -567,7 +569,7 @@ interface BlankViewProps {
|
|
|
567
569
|
colorScheme?: "auto" | "light" | "dark";
|
|
568
570
|
primaryColor?: string;
|
|
569
571
|
}
|
|
570
|
-
declare function export_default$
|
|
572
|
+
declare function export_default$q(props: BlankViewProps): React.JSX.Element;
|
|
571
573
|
|
|
572
574
|
interface ConnectEhrViewProps {
|
|
573
575
|
externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
|
|
@@ -578,13 +580,13 @@ interface ConnectEhrViewProps {
|
|
|
578
580
|
colorScheme?: "auto" | "light" | "dark";
|
|
579
581
|
}
|
|
580
582
|
declare type ViewPresentationType$3 = "Modal" | "Push";
|
|
581
|
-
declare function export_default$
|
|
583
|
+
declare function export_default$p(props: ConnectEhrViewProps): React.JSX.Element;
|
|
582
584
|
|
|
583
585
|
interface DeviceDataViewProps {
|
|
584
586
|
preview?: boolean;
|
|
585
587
|
colorScheme?: "auto" | "light" | "dark";
|
|
586
588
|
}
|
|
587
|
-
declare function export_default$
|
|
589
|
+
declare function export_default$o(props: DeviceDataViewProps): React.JSX.Element;
|
|
588
590
|
|
|
589
591
|
interface ExternalAccountsViewProps {
|
|
590
592
|
excludeProviders?: boolean;
|
|
@@ -595,7 +597,7 @@ interface ExternalAccountsViewProps {
|
|
|
595
597
|
colorScheme?: "auto" | "light" | "dark";
|
|
596
598
|
}
|
|
597
599
|
declare type ViewPresentationType$2 = "Modal" | "Push";
|
|
598
|
-
declare function export_default$
|
|
600
|
+
declare function export_default$n(props: ExternalAccountsViewProps): React.JSX.Element;
|
|
599
601
|
|
|
600
602
|
interface FitbitViewProps {
|
|
601
603
|
connectPreview?: ConnectFitbitPreviewState;
|
|
@@ -603,7 +605,7 @@ interface FitbitViewProps {
|
|
|
603
605
|
chartsPreview?: MonthChartsPreviewState;
|
|
604
606
|
colorScheme?: "auto" | "light" | "dark";
|
|
605
607
|
}
|
|
606
|
-
declare function export_default$
|
|
608
|
+
declare function export_default$m(props: FitbitViewProps): React.JSX.Element;
|
|
607
609
|
|
|
608
610
|
interface GarminViewProps {
|
|
609
611
|
connectPreview?: ConnectGarminPreviewState;
|
|
@@ -611,7 +613,7 @@ interface GarminViewProps {
|
|
|
611
613
|
chartsPreview?: MonthChartsPreviewState;
|
|
612
614
|
garminProviderID?: number;
|
|
613
615
|
}
|
|
614
|
-
declare function export_default$
|
|
616
|
+
declare function export_default$l(props: GarminViewProps): React.JSX.Element;
|
|
615
617
|
|
|
616
618
|
interface HomeViewProps {
|
|
617
619
|
/**
|
|
@@ -630,7 +632,7 @@ interface HomeViewProps {
|
|
|
630
632
|
preview?: boolean;
|
|
631
633
|
colorScheme?: "auto" | "light" | "dark";
|
|
632
634
|
}
|
|
633
|
-
declare function export_default$
|
|
635
|
+
declare function export_default$k(props: HomeViewProps): React.JSX.Element;
|
|
634
636
|
|
|
635
637
|
interface HealthAndWellnessViewProps {
|
|
636
638
|
previewState?: "default";
|
|
@@ -639,7 +641,7 @@ interface HealthAndWellnessViewProps {
|
|
|
639
641
|
externalAccountsApplicationUrl: string;
|
|
640
642
|
variant?: "default" | "cardBased";
|
|
641
643
|
}
|
|
642
|
-
declare function export_default$
|
|
644
|
+
declare function export_default$j(props: HealthAndWellnessViewProps): React.JSX.Element;
|
|
643
645
|
|
|
644
646
|
interface NotificationsViewProps {
|
|
645
647
|
notificationType?: NotificationType;
|
|
@@ -648,7 +650,7 @@ interface NotificationsViewProps {
|
|
|
648
650
|
colorScheme?: "auto" | "light" | "dark";
|
|
649
651
|
}
|
|
650
652
|
declare type ViewPresentationType$1 = "Modal" | "Push";
|
|
651
|
-
declare function export_default$
|
|
653
|
+
declare function export_default$i(props: NotificationsViewProps): React.JSX.Element;
|
|
652
654
|
|
|
653
655
|
interface SurveyTasksViewProps {
|
|
654
656
|
hideCompleteTasks?: boolean;
|
|
@@ -659,18 +661,53 @@ interface SurveyTasksViewProps {
|
|
|
659
661
|
colorScheme?: "auto" | "light" | "dark";
|
|
660
662
|
}
|
|
661
663
|
declare type ViewPresentationType = "Modal" | "Push";
|
|
662
|
-
declare function export_default$
|
|
664
|
+
declare function export_default$h(props: SurveyTasksViewProps): React.JSX.Element;
|
|
663
665
|
|
|
664
|
-
interface
|
|
665
|
-
|
|
666
|
-
|
|
666
|
+
interface CelebrationStepProps {
|
|
667
|
+
title?: string;
|
|
668
|
+
text?: string;
|
|
669
|
+
detailText?: string;
|
|
670
|
+
iconUrl?: string;
|
|
671
|
+
imageUrl?: string;
|
|
672
|
+
nextButtonText?: string;
|
|
673
|
+
styles: {
|
|
674
|
+
[key: string]: any;
|
|
675
|
+
};
|
|
667
676
|
}
|
|
668
|
-
declare function export_default$
|
|
677
|
+
declare function export_default$g(props: CelebrationStepProps): React.JSX.Element;
|
|
669
678
|
|
|
670
|
-
|
|
671
|
-
|
|
679
|
+
declare function export_default$f(): React.JSX.Element;
|
|
680
|
+
|
|
681
|
+
interface ConnectDeviceAccountStepProps {
|
|
682
|
+
title?: string;
|
|
683
|
+
text?: string;
|
|
684
|
+
deviceType: string;
|
|
685
|
+
providerName: string;
|
|
686
|
+
styles: {
|
|
687
|
+
[key: string]: any;
|
|
688
|
+
};
|
|
689
|
+
}
|
|
690
|
+
declare function export_default$e(props: ConnectDeviceAccountStepProps): React.JSX.Element;
|
|
691
|
+
|
|
692
|
+
interface ConnectDeviceAccountStepContainerProps {
|
|
693
|
+
providerName?: string;
|
|
694
|
+
}
|
|
695
|
+
declare function export_default$d(props: ConnectDeviceAccountStepContainerProps): React.JSX.Element;
|
|
696
|
+
|
|
697
|
+
interface ConnectEhrStepProps {
|
|
698
|
+
title?: string;
|
|
699
|
+
text?: string;
|
|
700
|
+
nextButtonText?: string;
|
|
701
|
+
nextButtonDisabled?: boolean;
|
|
702
|
+
previewState?: ProviderSearchPreviewState;
|
|
703
|
+
onProviderSelected: (provider: ExternalAccountProvider) => void;
|
|
704
|
+
styles: {
|
|
705
|
+
[key: string]: any;
|
|
706
|
+
};
|
|
672
707
|
}
|
|
673
|
-
declare function export_default$
|
|
708
|
+
declare function export_default$c(props: ConnectEhrStepProps): React.JSX.Element;
|
|
709
|
+
|
|
710
|
+
declare function export_default$b(): React.JSX.Element;
|
|
674
711
|
|
|
675
712
|
interface StepElementProps {
|
|
676
713
|
text?: string;
|
|
@@ -685,22 +722,34 @@ interface IconElementProps {
|
|
|
685
722
|
|
|
686
723
|
declare function export_default$a(props: StepElementProps): React.JSX.Element | null;
|
|
687
724
|
|
|
688
|
-
declare function export_default$9(props:
|
|
725
|
+
declare function export_default$9(props: IconElementProps): React.JSX.Element | null;
|
|
689
726
|
|
|
690
|
-
declare function export_default$8(props:
|
|
727
|
+
declare function export_default$8(props: IconElementProps): React.JSX.Element | null;
|
|
728
|
+
|
|
729
|
+
interface StepLayoutProps {
|
|
730
|
+
children?: React.ReactNode;
|
|
731
|
+
}
|
|
732
|
+
declare function export_default$7(props: StepLayoutProps): React.JSX.Element;
|
|
733
|
+
|
|
734
|
+
interface StepMarkdownProps {
|
|
735
|
+
text: string;
|
|
736
|
+
inline?: boolean;
|
|
737
|
+
}
|
|
738
|
+
declare function export_default$6(props: StepMarkdownProps): React.JSX.Element;
|
|
691
739
|
|
|
692
740
|
interface StepNextButtonProps extends StepElementProps {
|
|
693
741
|
backgroundColor: string;
|
|
694
742
|
letterSpacing: string;
|
|
695
743
|
textTransform: string;
|
|
696
744
|
gradient: any;
|
|
745
|
+
disabled?: boolean;
|
|
697
746
|
onClick(): void;
|
|
698
747
|
}
|
|
699
|
-
declare function export_default$
|
|
748
|
+
declare function export_default$5(props: StepNextButtonProps): React.JSX.Element;
|
|
700
749
|
|
|
701
|
-
declare function export_default$
|
|
750
|
+
declare function export_default$4(props: StepElementProps): React.JSX.Element | null;
|
|
702
751
|
|
|
703
|
-
declare function export_default$
|
|
752
|
+
declare function export_default$3(props: StepElementProps): React.JSX.Element | null;
|
|
704
753
|
|
|
705
754
|
interface YouTubeStepProps {
|
|
706
755
|
title?: string;
|
|
@@ -713,22 +762,7 @@ interface YouTubeStepProps {
|
|
|
713
762
|
[key: string]: any;
|
|
714
763
|
};
|
|
715
764
|
}
|
|
716
|
-
declare function export_default$
|
|
717
|
-
|
|
718
|
-
declare function export_default$3(): React.JSX.Element;
|
|
719
|
-
|
|
720
|
-
interface CelebrationStepProps {
|
|
721
|
-
title?: string;
|
|
722
|
-
text?: string;
|
|
723
|
-
detailText?: string;
|
|
724
|
-
iconUrl?: string;
|
|
725
|
-
imageUrl?: string;
|
|
726
|
-
nextButtonText?: string;
|
|
727
|
-
styles: {
|
|
728
|
-
[key: string]: any;
|
|
729
|
-
};
|
|
730
|
-
}
|
|
731
|
-
declare function export_default$2(props: CelebrationStepProps): React.JSX.Element;
|
|
765
|
+
declare function export_default$2(props: YouTubeStepProps): React.JSX.Element;
|
|
732
766
|
|
|
733
767
|
declare function export_default$1(): React.JSX.Element;
|
|
734
768
|
|
|
@@ -738,4 +772,4 @@ declare function language(key: string): string;
|
|
|
738
772
|
|
|
739
773
|
declare function getDayKey(date: Date): string;
|
|
740
774
|
|
|
741
|
-
export { export_default$
|
|
775
|
+
export { export_default$1b as Action, export_default$1a as ActivityMeter, export_default$O as AppDownload, AreaChartOptions, BarChartOptions, export_default$q as BlankView, export_default$19 as Button, export_default$18 as Calendar, export_default$17 as Card, export_default$16 as CardTitle, export_default$g as CelebrationStep, export_default$f as CelebrationStepContainer, export_default$e as ConnectDeviceAccountStep, export_default$d as ConnectDeviceAccountStepContainer, export_default$N as ConnectEhr, export_default$c as ConnectEhrStep, export_default$b as ConnectEhrStepContainer, export_default$p as ConnectEhrView, export_default$M as ConnectFitbit, export_default$L as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DateRangeNavigatorContext as DateRangeCoordinator, export_default$15 as DateRangeNavigator, export_default$14 as DayTrackerSymbol, DeviceDataChartLine, export_default$K as DeviceDataMonthChart, export_default$J as DeviceDataMonthCharts, export_default$o as DeviceDataView, export_default$I as ExternalAccountList, export_default$H as ExternalAccountsLoadingIndicator, export_default$G as ExternalAccountsPreview, export_default$n as ExternalAccountsView, export_default$13 as Face, export_default$F as FitbitDevices, export_default$E as FitbitMonthCharts, export_default$m as FitbitView, export_default$D as GarminDevices, export_default$C as GarminMonthCharts, export_default$l as GarminView, export_default$j as HealthAndWellnessView, export_default$B as HealthPreviewSection, export_default$12 as Histogram, export_default$k as HomeView, export_default$A as LabResultsSummary, export_default$11 as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$z as MostRecentNotification, export_default$10 as NavigationBar, export_default$y as NotificationList, export_default$i as NotificationsView, export_default$x as PlatformSpecificContent, export_default$w as ProjectHeader, export_default$v as ProjectSupport, export_default$u as ProviderSearch, export_default$t as RelativeActivityToday, export_default$s as RestingHeartRateCalendar, export_default$$ as Section, export_default$_ as SegmentedControl, export_default$Z as ShinyOverlay, export_default$Y as SingleExternalAccount, export_default$X as SingleNotification, export_default$W as SingleSurveyTask, export_default$V as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$a as StepDetailText, export_default$8 as StepImage, export_default$9 as StepImageIcon, export_default$7 as StepLayout, export_default$6 as StepMarkdown, export_default$5 as StepNextButton, export_default$4 as StepText, export_default$3 as StepTitle, export_default$r as SurveyTaskList, export_default$h as SurveyTasksView, export_default$U as Switch, export_default$T as TextBlock, export_default$S as TrackerItem, export_default$R as UnstyledButton, export_default$Q as ViewHeader, export_default$P as WeekCalendar, WeekStartsOn, export_default$2 as YouTubeStep, export_default$1 as YouTubeStepContainer, checkDailyDataAvailability, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, export_default as useInterval };
|