@careevolution/mydatahelps-ui 2.8.1 → 2.9.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 +9 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/presentational/ProgressRing/ProgressRing.d.ts +11 -0
- package/dist/cjs/types/components/presentational/ProgressRing/ProgressRing.stories.d.ts +84 -0
- package/dist/cjs/types/components/presentational/ProgressRing/index.d.ts +1 -0
- package/dist/cjs/types/components/presentational/index.d.ts +1 -0
- package/dist/cjs/types/components/view/NewPointsView/NewPointsView.d.ts +20 -0
- package/dist/cjs/types/components/view/NewPointsView/NewPointsView.stories.d.ts +192 -0
- package/dist/cjs/types/components/view/NewPointsView/index.d.ts +1 -0
- package/dist/cjs/types/components/view/index.d.ts +1 -0
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/presentational/ProgressRing/ProgressRing.d.ts +11 -0
- package/dist/esm/types/components/presentational/ProgressRing/ProgressRing.stories.d.ts +84 -0
- package/dist/esm/types/components/presentational/ProgressRing/index.d.ts +1 -0
- package/dist/esm/types/components/presentational/index.d.ts +1 -0
- package/dist/esm/types/components/view/NewPointsView/NewPointsView.d.ts +20 -0
- package/dist/esm/types/components/view/NewPointsView/NewPointsView.stories.d.ts +192 -0
- package/dist/esm/types/components/view/NewPointsView/index.d.ts +1 -0
- package/dist/esm/types/components/view/index.d.ts +1 -0
- package/dist/index.d.ts +107 -79
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { ReactElement, MouseEventHandler, ReactNode } from 'react';
|
|
1
|
+
import React, { ReactElement, MouseEventHandler, ReactNode, CSSProperties } from 'react';
|
|
2
2
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
3
3
|
import { StatusBarStyle, ExternalAccount, Notification, SurveyTask, ExternalAccountStatus, NotificationType, ExternalAccountProvider, SurveyTaskStatus, ParticipantInfo } from '@careevolution/mydatahelps-js';
|
|
4
4
|
import { IconDefinition as IconDefinition$1 } from '@fortawesome/fontawesome-common-types';
|
|
@@ -27,7 +27,7 @@ interface ActionProps {
|
|
|
27
27
|
subtitleColor?: ColorDefinition;
|
|
28
28
|
renderAs?: "div" | "button";
|
|
29
29
|
}
|
|
30
|
-
declare function export_default$
|
|
30
|
+
declare function export_default$1v(props: ActionProps): React.JSX.Element;
|
|
31
31
|
|
|
32
32
|
interface ActivityMeterProps {
|
|
33
33
|
label: string;
|
|
@@ -40,7 +40,7 @@ interface ActivityMeterProps {
|
|
|
40
40
|
className?: string;
|
|
41
41
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
42
42
|
}
|
|
43
|
-
declare function export_default$
|
|
43
|
+
declare function export_default$1u(props: ActivityMeterProps): React.JSX.Element;
|
|
44
44
|
|
|
45
45
|
type ButtonVariant = "default" | "subtle" | "light";
|
|
46
46
|
interface ButtonProps {
|
|
@@ -55,7 +55,7 @@ interface ButtonProps {
|
|
|
55
55
|
defaultMargin?: boolean;
|
|
56
56
|
fullWidth?: boolean;
|
|
57
57
|
}
|
|
58
|
-
declare function export_default$
|
|
58
|
+
declare function export_default$1t(props: ButtonProps): React.JSX.Element;
|
|
59
59
|
|
|
60
60
|
interface CalendarProps {
|
|
61
61
|
month: number;
|
|
@@ -65,7 +65,7 @@ interface CalendarProps {
|
|
|
65
65
|
className?: string;
|
|
66
66
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
67
67
|
}
|
|
68
|
-
declare function export_default$
|
|
68
|
+
declare function export_default$1s(props: CalendarProps): React.JSX.Element;
|
|
69
69
|
|
|
70
70
|
interface CardProps {
|
|
71
71
|
className?: string;
|
|
@@ -76,7 +76,7 @@ interface CardProps {
|
|
|
76
76
|
backgroundColor?: ColorDefinition;
|
|
77
77
|
style?: React.CSSProperties;
|
|
78
78
|
}
|
|
79
|
-
declare function export_default$
|
|
79
|
+
declare function export_default$1r(props: CardProps): React.JSX.Element | null;
|
|
80
80
|
|
|
81
81
|
interface CardTitleProps {
|
|
82
82
|
title: string;
|
|
@@ -85,7 +85,7 @@ interface CardTitleProps {
|
|
|
85
85
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
86
86
|
color?: ColorDefinition;
|
|
87
87
|
}
|
|
88
|
-
declare function export_default$
|
|
88
|
+
declare function export_default$1q(props: CardTitleProps): React.JSX.Element;
|
|
89
89
|
|
|
90
90
|
type WeekStartsOn = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "6DaysAgo" | "7DaysAgo";
|
|
91
91
|
declare function getWeekStart(weekStartsOn?: WeekStartsOn): Date;
|
|
@@ -111,7 +111,7 @@ interface DateRangeNavigatorProps {
|
|
|
111
111
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
112
112
|
sticky?: boolean;
|
|
113
113
|
}
|
|
114
|
-
declare function export_default$
|
|
114
|
+
declare function export_default$1p(props: DateRangeNavigatorProps): React.JSX.Element;
|
|
115
115
|
|
|
116
116
|
interface DayTrackerSymbolProps {
|
|
117
117
|
primaryColors: string[];
|
|
@@ -120,7 +120,7 @@ interface DayTrackerSymbolProps {
|
|
|
120
120
|
size?: "small" | "large";
|
|
121
121
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
122
122
|
}
|
|
123
|
-
declare function export_default$
|
|
123
|
+
declare function export_default$1o(props: DayTrackerSymbolProps): React.JSX.Element;
|
|
124
124
|
|
|
125
125
|
interface FaceProps {
|
|
126
126
|
faceValue?: number;
|
|
@@ -129,7 +129,7 @@ interface FaceProps {
|
|
|
129
129
|
className?: string;
|
|
130
130
|
innerRef?: React.Ref<HTMLButtonElement>;
|
|
131
131
|
}
|
|
132
|
-
declare function export_default$
|
|
132
|
+
declare function export_default$1n(props: FaceProps): React.JSX.Element;
|
|
133
133
|
|
|
134
134
|
interface HistogramProps {
|
|
135
135
|
entries: {
|
|
@@ -141,7 +141,7 @@ interface HistogramProps {
|
|
|
141
141
|
className?: string;
|
|
142
142
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
143
143
|
}
|
|
144
|
-
declare function export_default$
|
|
144
|
+
declare function export_default$1m(props: HistogramProps): React.JSX.Element;
|
|
145
145
|
|
|
146
146
|
interface LayoutProps {
|
|
147
147
|
children?: React.ReactNode;
|
|
@@ -162,7 +162,7 @@ interface LayoutContext {
|
|
|
162
162
|
bodyBackgroundColor: string;
|
|
163
163
|
}
|
|
164
164
|
declare const LayoutContext: React.Context<LayoutContext>;
|
|
165
|
-
declare function export_default$
|
|
165
|
+
declare function export_default$1l(props: LayoutProps): React.JSX.Element;
|
|
166
166
|
|
|
167
167
|
interface LoadingIndicatorProps {
|
|
168
168
|
variant?: "default" | "inline";
|
|
@@ -186,7 +186,7 @@ interface NavigationBarProps {
|
|
|
186
186
|
subtitleColor?: ColorDefinition;
|
|
187
187
|
buttonColor?: ColorDefinition;
|
|
188
188
|
}
|
|
189
|
-
declare function export_default$
|
|
189
|
+
declare function export_default$1k(props: NavigationBarProps): React.JSX.Element;
|
|
190
190
|
|
|
191
191
|
interface NotesInputProps {
|
|
192
192
|
autoTimestamp?: boolean;
|
|
@@ -194,7 +194,7 @@ interface NotesInputProps {
|
|
|
194
194
|
onChange(value: string): void;
|
|
195
195
|
value: string;
|
|
196
196
|
}
|
|
197
|
-
declare function export_default$
|
|
197
|
+
declare function export_default$1j(props: NotesInputProps): React.JSX.Element;
|
|
198
198
|
|
|
199
199
|
interface SectionProps {
|
|
200
200
|
children?: React.ReactNode;
|
|
@@ -204,7 +204,7 @@ interface SectionProps {
|
|
|
204
204
|
backgroundColor?: ColorDefinition;
|
|
205
205
|
style?: React.CSSProperties;
|
|
206
206
|
}
|
|
207
|
-
declare function export_default$
|
|
207
|
+
declare function export_default$1i(props: SectionProps): React.JSX.Element | null;
|
|
208
208
|
|
|
209
209
|
interface SegmentedControlProps {
|
|
210
210
|
segments: {
|
|
@@ -218,9 +218,9 @@ interface SegmentedControlProps {
|
|
|
218
218
|
variant?: "default" | "optionsHorizontal" | "optionsVertical";
|
|
219
219
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
220
220
|
}
|
|
221
|
-
declare function export_default$
|
|
221
|
+
declare function export_default$1h(props: SegmentedControlProps): React.JSX.Element;
|
|
222
222
|
|
|
223
|
-
declare function export_default$
|
|
223
|
+
declare function export_default$1g(): React.JSX.Element;
|
|
224
224
|
|
|
225
225
|
interface SingleExternalAccountProps {
|
|
226
226
|
externalAccount: ExternalAccount;
|
|
@@ -228,13 +228,13 @@ interface SingleExternalAccountProps {
|
|
|
228
228
|
onReconnectAccount: (account: ExternalAccount) => void;
|
|
229
229
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
230
230
|
}
|
|
231
|
-
declare function export_default$
|
|
231
|
+
declare function export_default$1f(props: SingleExternalAccountProps): React.JSX.Element;
|
|
232
232
|
|
|
233
233
|
interface SingleNotificationProps {
|
|
234
234
|
notification: Notification;
|
|
235
235
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
236
236
|
}
|
|
237
|
-
declare function export_default$
|
|
237
|
+
declare function export_default$1e(props: SingleNotificationProps): React.JSX.Element;
|
|
238
238
|
|
|
239
239
|
interface SingleSurveyTaskProps {
|
|
240
240
|
task: SurveyTask;
|
|
@@ -244,7 +244,7 @@ interface SingleSurveyTaskProps {
|
|
|
244
244
|
buttonColor?: ColorDefinition;
|
|
245
245
|
buttonVariant?: ButtonVariant;
|
|
246
246
|
}
|
|
247
|
-
declare function export_default$
|
|
247
|
+
declare function export_default$1d(props: SingleSurveyTaskProps): React.JSX.Element | null;
|
|
248
248
|
|
|
249
249
|
interface SparkBarChartProps {
|
|
250
250
|
averageFillPercent: number;
|
|
@@ -255,7 +255,7 @@ interface SparkBarChartBar {
|
|
|
255
255
|
color: string;
|
|
256
256
|
barFillPercent: number;
|
|
257
257
|
}
|
|
258
|
-
declare function export_default$
|
|
258
|
+
declare function export_default$1c(props: SparkBarChartProps): React.JSX.Element;
|
|
259
259
|
|
|
260
260
|
interface SwitchProps {
|
|
261
261
|
isOn: Boolean;
|
|
@@ -264,7 +264,7 @@ interface SwitchProps {
|
|
|
264
264
|
className?: string;
|
|
265
265
|
innerRef?: React.Ref<HTMLButtonElement>;
|
|
266
266
|
}
|
|
267
|
-
declare function export_default$
|
|
267
|
+
declare function export_default$1b(props: SwitchProps): React.JSX.Element;
|
|
268
268
|
|
|
269
269
|
interface StatusBarBackgroundProps {
|
|
270
270
|
color?: string;
|
|
@@ -279,7 +279,7 @@ interface TextBlockProps {
|
|
|
279
279
|
color?: ColorDefinition;
|
|
280
280
|
style?: React.CSSProperties;
|
|
281
281
|
}
|
|
282
|
-
declare function export_default$
|
|
282
|
+
declare function export_default$1a(props: TextBlockProps): React.JSX.Element | null;
|
|
283
283
|
|
|
284
284
|
interface TitleProps {
|
|
285
285
|
color?: ColorDefinition;
|
|
@@ -292,7 +292,7 @@ interface TitleProps {
|
|
|
292
292
|
imageAlignment?: "top" | "left";
|
|
293
293
|
defaultMargin?: boolean;
|
|
294
294
|
}
|
|
295
|
-
declare function export_default$
|
|
295
|
+
declare function export_default$19(props: TitleProps): React.JSX.Element;
|
|
296
296
|
|
|
297
297
|
interface TrackerItemProps {
|
|
298
298
|
selected: boolean;
|
|
@@ -304,7 +304,7 @@ interface TrackerItemProps {
|
|
|
304
304
|
className?: string;
|
|
305
305
|
noBoxShadow?: boolean;
|
|
306
306
|
}
|
|
307
|
-
declare function export_default$
|
|
307
|
+
declare function export_default$18(props: TrackerItemProps): React.JSX.Element;
|
|
308
308
|
|
|
309
309
|
interface UnstyledButtonProps {
|
|
310
310
|
onClick: MouseEventHandler;
|
|
@@ -315,7 +315,7 @@ interface UnstyledButtonProps {
|
|
|
315
315
|
disabled?: boolean;
|
|
316
316
|
innerRef?: React.Ref<HTMLButtonElement>;
|
|
317
317
|
}
|
|
318
|
-
declare function export_default$
|
|
318
|
+
declare function export_default$17(props: UnstyledButtonProps): React.JSX.Element;
|
|
319
319
|
|
|
320
320
|
interface ViewHeaderProps {
|
|
321
321
|
title?: string;
|
|
@@ -323,7 +323,7 @@ interface ViewHeaderProps {
|
|
|
323
323
|
titleColor?: ColorDefinition;
|
|
324
324
|
subtitleColor?: ColorDefinition;
|
|
325
325
|
}
|
|
326
|
-
declare function export_default$
|
|
326
|
+
declare function export_default$16(props: ViewHeaderProps): React.JSX.Element | null;
|
|
327
327
|
|
|
328
328
|
interface WeekCalendarProps {
|
|
329
329
|
selectedDate?: Date;
|
|
@@ -334,7 +334,16 @@ interface WeekCalendarProps {
|
|
|
334
334
|
onStartDateChange?(startDate: Date): void;
|
|
335
335
|
dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
|
|
336
336
|
}
|
|
337
|
-
declare function export_default$
|
|
337
|
+
declare function export_default$15(props: WeekCalendarProps): React.JSX.Element;
|
|
338
|
+
|
|
339
|
+
interface ProgressRingProps {
|
|
340
|
+
children: React.ReactNode;
|
|
341
|
+
style?: CSSProperties;
|
|
342
|
+
color?: ColorDefinition;
|
|
343
|
+
percentCompleted?: number;
|
|
344
|
+
animate?: boolean;
|
|
345
|
+
}
|
|
346
|
+
declare function export_default$14(props: ProgressRingProps): React.JSX.Element;
|
|
338
347
|
|
|
339
348
|
interface AppDownloadProps {
|
|
340
349
|
previewProjectPlatforms?: string[];
|
|
@@ -343,7 +352,7 @@ interface AppDownloadProps {
|
|
|
343
352
|
title?: string;
|
|
344
353
|
text?: string;
|
|
345
354
|
}
|
|
346
|
-
declare function export_default$
|
|
355
|
+
declare function export_default$13(props: AppDownloadProps): React.JSX.Element | null;
|
|
347
356
|
|
|
348
357
|
type DeviceAccountType = "Fitbit" | "Garmin" | "AppleHealth" | "GoogleFit" | "Omron";
|
|
349
358
|
interface ConnectDevicesMenuProps {
|
|
@@ -354,7 +363,7 @@ interface ConnectDevicesMenuProps {
|
|
|
354
363
|
previewState?: "iOS" | "Android" | "Web" | "ConnectedStates";
|
|
355
364
|
headerVariant?: "large" | "medium";
|
|
356
365
|
}
|
|
357
|
-
declare function export_default$
|
|
366
|
+
declare function export_default$12(props: ConnectDevicesMenuProps): React.JSX.Element | null;
|
|
358
367
|
|
|
359
368
|
interface ConnectEhrProps {
|
|
360
369
|
applicationUrl: ConnectEhrApplicationUrl;
|
|
@@ -371,7 +380,7 @@ interface ConnectEhrProps {
|
|
|
371
380
|
}
|
|
372
381
|
type ConnectEhrApplicationUrl = "preview" | string;
|
|
373
382
|
type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
|
|
374
|
-
declare function export_default$
|
|
383
|
+
declare function export_default$11(props: ConnectEhrProps): React.JSX.Element | null;
|
|
375
384
|
|
|
376
385
|
interface ConnectFitbitProps {
|
|
377
386
|
title?: string;
|
|
@@ -382,7 +391,7 @@ interface ConnectFitbitProps {
|
|
|
382
391
|
hideWhenConnected?: boolean;
|
|
383
392
|
}
|
|
384
393
|
type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
|
|
385
|
-
declare function export_default
|
|
394
|
+
declare function export_default$10(props: ConnectFitbitProps): React.JSX.Element;
|
|
386
395
|
|
|
387
396
|
interface ConnectGarminProps {
|
|
388
397
|
title?: string;
|
|
@@ -393,7 +402,7 @@ interface ConnectGarminProps {
|
|
|
393
402
|
hideWhenConnected?: boolean;
|
|
394
403
|
}
|
|
395
404
|
type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
|
|
396
|
-
declare function export_default
|
|
405
|
+
declare function export_default$$(props: ConnectGarminProps): React.JSX.Element;
|
|
397
406
|
|
|
398
407
|
type DailyDataQueryResult = {
|
|
399
408
|
[key: string]: number;
|
|
@@ -503,13 +512,13 @@ interface DeviceDataChartLine {
|
|
|
503
512
|
showAverage?: boolean;
|
|
504
513
|
}
|
|
505
514
|
type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
|
|
506
|
-
declare function export_default$
|
|
515
|
+
declare function export_default$_(props: DeviceDataMonthChartProps): React.JSX.Element | null;
|
|
507
516
|
|
|
508
517
|
interface DeviceDataMonthChartsProps {
|
|
509
518
|
previewState?: DeviceDataMonthChartsPreviewState;
|
|
510
519
|
}
|
|
511
520
|
type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
|
|
512
|
-
declare function export_default$
|
|
521
|
+
declare function export_default$Z(props: DeviceDataMonthChartsProps): React.JSX.Element;
|
|
513
522
|
|
|
514
523
|
interface ExternalAccountListProps {
|
|
515
524
|
externalAccountProviderCategories?: string[];
|
|
@@ -518,14 +527,14 @@ interface ExternalAccountListProps {
|
|
|
518
527
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
519
528
|
}
|
|
520
529
|
type NotificationListPreviewState$1 = "Default";
|
|
521
|
-
declare function export_default$
|
|
530
|
+
declare function export_default$Y(props: ExternalAccountListProps): React.JSX.Element;
|
|
522
531
|
|
|
523
532
|
interface ExternalAccountsLoadingIndicatorProps {
|
|
524
533
|
previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
|
|
525
534
|
externalAccountCategories?: string[];
|
|
526
535
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
527
536
|
}
|
|
528
|
-
declare function export_default$
|
|
537
|
+
declare function export_default$X(props: ExternalAccountsLoadingIndicatorProps): React.JSX.Element | null;
|
|
529
538
|
|
|
530
539
|
interface ExternalAccountsPreviewProps {
|
|
531
540
|
excludeProviders?: boolean;
|
|
@@ -537,7 +546,7 @@ interface ExternalAccountsPreviewProps {
|
|
|
537
546
|
}
|
|
538
547
|
type ExternalAccountsApplicationUrl = "preview" | string;
|
|
539
548
|
type ExternalAccountsPreviewPreviewState = "Default";
|
|
540
|
-
declare function export_default$
|
|
549
|
+
declare function export_default$W(props: ExternalAccountsPreviewProps): React.JSX.Element | null;
|
|
541
550
|
|
|
542
551
|
type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
543
552
|
|
|
@@ -545,25 +554,25 @@ interface FitbitDevicesProps {
|
|
|
545
554
|
previewState?: ConnectedDevicesPreviewState;
|
|
546
555
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
547
556
|
}
|
|
548
|
-
declare function export_default$
|
|
557
|
+
declare function export_default$V(props: FitbitDevicesProps): React.JSX.Element;
|
|
549
558
|
|
|
550
559
|
type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
551
560
|
|
|
552
561
|
interface FitbitMonthChartsProps {
|
|
553
562
|
previewState?: MonthChartsPreviewState;
|
|
554
563
|
}
|
|
555
|
-
declare function export_default$
|
|
564
|
+
declare function export_default$U(props: FitbitMonthChartsProps): React.JSX.Element;
|
|
556
565
|
|
|
557
566
|
interface GarminDevicesProps {
|
|
558
567
|
previewState?: ConnectedDevicesPreviewState;
|
|
559
568
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
560
569
|
}
|
|
561
|
-
declare function export_default$
|
|
570
|
+
declare function export_default$T(props: GarminDevicesProps): React.JSX.Element;
|
|
562
571
|
|
|
563
572
|
interface GarminMonthChartsProps {
|
|
564
573
|
previewState?: MonthChartsPreviewState;
|
|
565
574
|
}
|
|
566
|
-
declare function export_default$
|
|
575
|
+
declare function export_default$S(props: GarminMonthChartsProps): React.JSX.Element;
|
|
567
576
|
|
|
568
577
|
type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
|
|
569
578
|
interface HealthPreviewSectionProps {
|
|
@@ -573,7 +582,7 @@ interface HealthPreviewSectionProps {
|
|
|
573
582
|
indicatorPosition?: "default" | "topRight";
|
|
574
583
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
575
584
|
}
|
|
576
|
-
declare function export_default$
|
|
585
|
+
declare function export_default$R(props: HealthPreviewSectionProps): React.JSX.Element | null;
|
|
577
586
|
|
|
578
587
|
interface TermInformation {
|
|
579
588
|
TermFamily: string;
|
|
@@ -587,7 +596,7 @@ interface LabResultsSummaryProps {
|
|
|
587
596
|
onViewTermInfo(termInfo: TermInformation): void;
|
|
588
597
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
589
598
|
}
|
|
590
|
-
declare function export_default$
|
|
599
|
+
declare function export_default$Q(props: LabResultsSummaryProps): React.JSX.Element | null;
|
|
591
600
|
|
|
592
601
|
interface MostRecentNotificationProps {
|
|
593
602
|
notificationType?: NotificationType;
|
|
@@ -597,7 +606,7 @@ interface MostRecentNotificationProps {
|
|
|
597
606
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
598
607
|
}
|
|
599
608
|
type MostRecentNotificationPreviewState = "Default";
|
|
600
|
-
declare function export_default$
|
|
609
|
+
declare function export_default$P(props: MostRecentNotificationProps): React.JSX.Element | null;
|
|
601
610
|
|
|
602
611
|
interface NotificationListProps {
|
|
603
612
|
notificationType?: NotificationType;
|
|
@@ -605,7 +614,7 @@ interface NotificationListProps {
|
|
|
605
614
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
606
615
|
}
|
|
607
616
|
type NotificationListPreviewState = "Default" | "NoData";
|
|
608
|
-
declare function export_default$
|
|
617
|
+
declare function export_default$O(props: NotificationListProps): React.JSX.Element;
|
|
609
618
|
|
|
610
619
|
interface PlatformSpecificContentProps {
|
|
611
620
|
platforms: string[];
|
|
@@ -613,21 +622,21 @@ interface PlatformSpecificContentProps {
|
|
|
613
622
|
previewDevicePlatform?: string;
|
|
614
623
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
615
624
|
}
|
|
616
|
-
declare function export_default$
|
|
625
|
+
declare function export_default$N(props: PlatformSpecificContentProps): React.JSX.Element | null;
|
|
617
626
|
|
|
618
627
|
interface ProjectHeaderProps {
|
|
619
628
|
previewState?: ProjectHeaderPropsPreviewState;
|
|
620
629
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
621
630
|
}
|
|
622
631
|
type ProjectHeaderPropsPreviewState = "Default";
|
|
623
|
-
declare function export_default$
|
|
632
|
+
declare function export_default$M(props: ProjectHeaderProps): React.JSX.Element;
|
|
624
633
|
|
|
625
634
|
interface ProjectSupportProps {
|
|
626
635
|
previewState?: ProjectSupportPropsPreviewState;
|
|
627
636
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
628
637
|
}
|
|
629
638
|
type ProjectSupportPropsPreviewState = "Default";
|
|
630
|
-
declare function export_default$
|
|
639
|
+
declare function export_default$L(props: ProjectSupportProps): React.JSX.Element | null;
|
|
631
640
|
|
|
632
641
|
interface ProviderSearchProps {
|
|
633
642
|
previewState?: ProviderSearchPreviewState;
|
|
@@ -636,7 +645,7 @@ interface ProviderSearchProps {
|
|
|
636
645
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
637
646
|
}
|
|
638
647
|
type ProviderSearchPreviewState = "Default";
|
|
639
|
-
declare function export_default$
|
|
648
|
+
declare function export_default$K(props: ProviderSearchProps): React.JSX.Element;
|
|
640
649
|
|
|
641
650
|
interface RelativeActivityTodayProps {
|
|
642
651
|
dataTypes: RelativeActivityDataType[];
|
|
@@ -651,7 +660,7 @@ interface RelativeActivityDataType {
|
|
|
651
660
|
color: string;
|
|
652
661
|
formatter: (number: number) => string;
|
|
653
662
|
}
|
|
654
|
-
declare function export_default$
|
|
663
|
+
declare function export_default$J(props: RelativeActivityTodayProps): React.JSX.Element | null;
|
|
655
664
|
|
|
656
665
|
type RestingHeartRateCalendarPreviewState = "WithData" | "NoData" | "Loading";
|
|
657
666
|
interface RestingHeartRateCalendarProps {
|
|
@@ -660,7 +669,7 @@ interface RestingHeartRateCalendarProps {
|
|
|
660
669
|
showPreviewData: RestingHeartRateCalendarPreviewState;
|
|
661
670
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
662
671
|
}
|
|
663
|
-
declare function export_default$
|
|
672
|
+
declare function export_default$I(props: RestingHeartRateCalendarProps): React.JSX.Element;
|
|
664
673
|
|
|
665
674
|
interface SurveyTaskListProps {
|
|
666
675
|
status: SurveyTaskStatus;
|
|
@@ -678,7 +687,7 @@ interface SurveyTaskListProps {
|
|
|
678
687
|
buttonColor?: ColorDefinition;
|
|
679
688
|
}
|
|
680
689
|
type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
|
|
681
|
-
declare function export_default$
|
|
690
|
+
declare function export_default$H(props: SurveyTaskListProps): React.JSX.Element | null;
|
|
682
691
|
|
|
683
692
|
interface ViewEhrProps {
|
|
684
693
|
onClick(): void;
|
|
@@ -688,21 +697,21 @@ interface ViewEhrProps {
|
|
|
688
697
|
buttonColor?: ColorDefinition;
|
|
689
698
|
buttonVariant?: ButtonVariant;
|
|
690
699
|
}
|
|
691
|
-
declare function export_default$
|
|
700
|
+
declare function export_default$G(props: ViewEhrProps): React.JSX.Element | null;
|
|
692
701
|
|
|
693
702
|
interface SymptomSharkCalendarProps {
|
|
694
703
|
intervalStart?: Date;
|
|
695
704
|
onDaySelected(day: Date): void;
|
|
696
705
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
697
706
|
}
|
|
698
|
-
declare function export_default$
|
|
707
|
+
declare function export_default$F(props: SymptomSharkCalendarProps): React.JSX.Element;
|
|
699
708
|
|
|
700
709
|
interface OverallExperienceChartProps {
|
|
701
710
|
intervalStart?: Date;
|
|
702
711
|
showAllDays?: boolean;
|
|
703
712
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
704
713
|
}
|
|
705
|
-
declare function export_default$
|
|
714
|
+
declare function export_default$E(props: OverallExperienceChartProps): React.JSX.Element | null;
|
|
706
715
|
|
|
707
716
|
interface SymptomSharkDataService {
|
|
708
717
|
getConfiguration(): Promise<SymptomSharkConfiguration>;
|
|
@@ -760,21 +769,21 @@ interface SymptomSharkLogEntryProps {
|
|
|
760
769
|
highlightedTreatments?: string[];
|
|
761
770
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
762
771
|
}
|
|
763
|
-
declare function export_default$
|
|
772
|
+
declare function export_default$D(props: SymptomSharkLogEntryProps): React.JSX.Element | null;
|
|
764
773
|
|
|
765
774
|
interface SymptomTreatmentHistogramsProps {
|
|
766
775
|
intervalStart?: Date;
|
|
767
776
|
onSymptomSelected(symptom: string, intervalStart: Date): void;
|
|
768
777
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
769
778
|
}
|
|
770
|
-
declare function export_default$
|
|
779
|
+
declare function export_default$C(props: SymptomTreatmentHistogramsProps): React.JSX.Element | null;
|
|
771
780
|
|
|
772
781
|
interface SymptomSeveritySummaryProps {
|
|
773
782
|
symptom: SymptomConfiguration;
|
|
774
783
|
intervalStart?: Date;
|
|
775
784
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
776
785
|
}
|
|
777
|
-
declare function export_default$
|
|
786
|
+
declare function export_default$B(props: SymptomSeveritySummaryProps): React.JSX.Element | null;
|
|
778
787
|
|
|
779
788
|
interface SymptomSeverityChartProps {
|
|
780
789
|
intervalStart?: Date;
|
|
@@ -782,7 +791,7 @@ interface SymptomSeverityChartProps {
|
|
|
782
791
|
showAllDays?: boolean;
|
|
783
792
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
784
793
|
}
|
|
785
|
-
declare function export_default$
|
|
794
|
+
declare function export_default$A(props: SymptomSeverityChartProps): React.JSX.Element | null;
|
|
786
795
|
|
|
787
796
|
interface SymptomTreatmentFiltersProps {
|
|
788
797
|
expandedDropdown: "Symptoms" | "Treatments" | null;
|
|
@@ -794,28 +803,28 @@ interface SymptomTreatmentFiltersProps {
|
|
|
794
803
|
onTreatmentsSelectionChange(treatments: string[]): void;
|
|
795
804
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
796
805
|
}
|
|
797
|
-
declare function export_default$
|
|
806
|
+
declare function export_default$z(props: SymptomTreatmentFiltersProps): React.JSX.Element;
|
|
798
807
|
|
|
799
808
|
interface SymptomSharkLogEntryListProps {
|
|
800
809
|
onDaySelected(d: Date): void;
|
|
801
810
|
previewState?: "default";
|
|
802
811
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
803
812
|
}
|
|
804
|
-
declare function export_default$
|
|
813
|
+
declare function export_default$y(props: SymptomSharkLogEntryListProps): React.JSX.Element;
|
|
805
814
|
|
|
806
815
|
interface SymptomSharkLogTodayProps {
|
|
807
816
|
previewState?: "withLog" | "noLog";
|
|
808
817
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
809
818
|
onClick(d: Date): void;
|
|
810
819
|
}
|
|
811
|
-
declare function export_default$
|
|
820
|
+
declare function export_default$x(props: SymptomSharkLogTodayProps): React.JSX.Element | null;
|
|
812
821
|
|
|
813
822
|
interface SymptomSharkLogEntryEditProps {
|
|
814
823
|
date: Date;
|
|
815
824
|
promptForReviewAfterDays?: number;
|
|
816
825
|
previewState?: "default";
|
|
817
826
|
}
|
|
818
|
-
declare function export_default$
|
|
827
|
+
declare function export_default$w(props: SymptomSharkLogEntryEditProps): React.JSX.Element;
|
|
819
828
|
|
|
820
829
|
interface SymptomSharkVisualizationCoordinatorProps {
|
|
821
830
|
children: React.ReactNode;
|
|
@@ -823,7 +832,7 @@ interface SymptomSharkVisualizationCoordinatorProps {
|
|
|
823
832
|
previewState?: "default";
|
|
824
833
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
825
834
|
}
|
|
826
|
-
declare function export_default$
|
|
835
|
+
declare function export_default$v(props: SymptomSharkVisualizationCoordinatorProps): React.JSX.Element;
|
|
827
836
|
|
|
828
837
|
interface CalendarViewProps {
|
|
829
838
|
colorScheme?: "light" | "dark" | "auto";
|
|
@@ -831,7 +840,7 @@ interface CalendarViewProps {
|
|
|
831
840
|
onSymptomSelected(symptom: string, intervalStart: Date): void;
|
|
832
841
|
previewState?: "default";
|
|
833
842
|
}
|
|
834
|
-
declare function export_default$
|
|
843
|
+
declare function export_default$u(props: CalendarViewProps): React.JSX.Element;
|
|
835
844
|
|
|
836
845
|
interface LogEntryEditViewProps {
|
|
837
846
|
colorScheme?: "light" | "dark" | "auto";
|
|
@@ -839,7 +848,7 @@ interface LogEntryEditViewProps {
|
|
|
839
848
|
promptForReviewAfterDays?: number;
|
|
840
849
|
previewState?: "default";
|
|
841
850
|
}
|
|
842
|
-
declare function export_default$
|
|
851
|
+
declare function export_default$t(props: LogEntryEditViewProps): React.JSX.Element;
|
|
843
852
|
|
|
844
853
|
interface SymptomDetailViewProps {
|
|
845
854
|
symptomId: string;
|
|
@@ -847,7 +856,7 @@ interface SymptomDetailViewProps {
|
|
|
847
856
|
previewState?: "default";
|
|
848
857
|
initialIntervalStart?: Date;
|
|
849
858
|
}
|
|
850
|
-
declare function export_default$
|
|
859
|
+
declare function export_default$s(props: SymptomDetailViewProps): React.JSX.Element;
|
|
851
860
|
|
|
852
861
|
interface BlankViewProps {
|
|
853
862
|
children?: React.ReactNode;
|
|
@@ -862,7 +871,7 @@ interface BlankViewProps {
|
|
|
862
871
|
subtitleColor?: ColorDefinition;
|
|
863
872
|
navigationBarButtonColor?: ColorDefinition;
|
|
864
873
|
}
|
|
865
|
-
declare function export_default$
|
|
874
|
+
declare function export_default$r(props: BlankViewProps): React.JSX.Element;
|
|
866
875
|
|
|
867
876
|
interface ConnectEhrViewProps {
|
|
868
877
|
externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
|
|
@@ -873,13 +882,13 @@ interface ConnectEhrViewProps {
|
|
|
873
882
|
colorScheme?: "auto" | "light" | "dark";
|
|
874
883
|
}
|
|
875
884
|
type ViewPresentationType$3 = "Modal" | "Push";
|
|
876
|
-
declare function export_default$
|
|
885
|
+
declare function export_default$q(props: ConnectEhrViewProps): React.JSX.Element;
|
|
877
886
|
|
|
878
887
|
interface DeviceDataViewProps {
|
|
879
888
|
preview?: boolean;
|
|
880
889
|
colorScheme?: "auto" | "light" | "dark";
|
|
881
890
|
}
|
|
882
|
-
declare function export_default$
|
|
891
|
+
declare function export_default$p(props: DeviceDataViewProps): React.JSX.Element;
|
|
883
892
|
|
|
884
893
|
interface ExternalAccountsViewProps {
|
|
885
894
|
excludeProviders?: boolean;
|
|
@@ -890,7 +899,7 @@ interface ExternalAccountsViewProps {
|
|
|
890
899
|
colorScheme?: "auto" | "light" | "dark";
|
|
891
900
|
}
|
|
892
901
|
type ViewPresentationType$2 = "Modal" | "Push";
|
|
893
|
-
declare function export_default$
|
|
902
|
+
declare function export_default$o(props: ExternalAccountsViewProps): React.JSX.Element;
|
|
894
903
|
|
|
895
904
|
interface FitbitViewProps {
|
|
896
905
|
connectPreview?: ConnectFitbitPreviewState;
|
|
@@ -898,7 +907,7 @@ interface FitbitViewProps {
|
|
|
898
907
|
chartsPreview?: MonthChartsPreviewState;
|
|
899
908
|
colorScheme?: "auto" | "light" | "dark";
|
|
900
909
|
}
|
|
901
|
-
declare function export_default$
|
|
910
|
+
declare function export_default$n(props: FitbitViewProps): React.JSX.Element;
|
|
902
911
|
|
|
903
912
|
interface GarminViewProps {
|
|
904
913
|
connectPreview?: ConnectGarminPreviewState;
|
|
@@ -906,7 +915,7 @@ interface GarminViewProps {
|
|
|
906
915
|
chartsPreview?: MonthChartsPreviewState;
|
|
907
916
|
garminProviderID?: number;
|
|
908
917
|
}
|
|
909
|
-
declare function export_default$
|
|
918
|
+
declare function export_default$m(props: GarminViewProps): React.JSX.Element;
|
|
910
919
|
|
|
911
920
|
interface HomeViewProps {
|
|
912
921
|
/**
|
|
@@ -925,7 +934,7 @@ interface HomeViewProps {
|
|
|
925
934
|
preview?: boolean;
|
|
926
935
|
colorScheme?: "auto" | "light" | "dark";
|
|
927
936
|
}
|
|
928
|
-
declare function export_default$
|
|
937
|
+
declare function export_default$l(props: HomeViewProps): React.JSX.Element;
|
|
929
938
|
|
|
930
939
|
interface HealthAndWellnessViewProps {
|
|
931
940
|
previewState?: "default";
|
|
@@ -934,7 +943,7 @@ interface HealthAndWellnessViewProps {
|
|
|
934
943
|
externalAccountsApplicationUrl: string;
|
|
935
944
|
variant?: "default" | "cardBased";
|
|
936
945
|
}
|
|
937
|
-
declare function export_default$
|
|
946
|
+
declare function export_default$k(props: HealthAndWellnessViewProps): React.JSX.Element;
|
|
938
947
|
|
|
939
948
|
interface NotificationsViewProps {
|
|
940
949
|
notificationType?: NotificationType;
|
|
@@ -943,7 +952,7 @@ interface NotificationsViewProps {
|
|
|
943
952
|
colorScheme?: "auto" | "light" | "dark";
|
|
944
953
|
}
|
|
945
954
|
type ViewPresentationType$1 = "Modal" | "Push";
|
|
946
|
-
declare function export_default$
|
|
955
|
+
declare function export_default$j(props: NotificationsViewProps): React.JSX.Element;
|
|
947
956
|
|
|
948
957
|
interface SurveyTasksViewProps {
|
|
949
958
|
hideCompleteTasks?: boolean;
|
|
@@ -954,7 +963,26 @@ interface SurveyTasksViewProps {
|
|
|
954
963
|
colorScheme?: "auto" | "light" | "dark";
|
|
955
964
|
}
|
|
956
965
|
type ViewPresentationType = "Modal" | "Push";
|
|
957
|
-
declare function export_default$
|
|
966
|
+
declare function export_default$i(props: SurveyTasksViewProps): React.JSX.Element;
|
|
967
|
+
|
|
968
|
+
interface NewPointsEntry {
|
|
969
|
+
name: string;
|
|
970
|
+
points: number;
|
|
971
|
+
bonusPoints?: number;
|
|
972
|
+
message?: {
|
|
973
|
+
title: string;
|
|
974
|
+
text: string;
|
|
975
|
+
};
|
|
976
|
+
}
|
|
977
|
+
interface NewPointsViewProps {
|
|
978
|
+
entries: NewPointsEntry[];
|
|
979
|
+
pointsToNextReward?: number;
|
|
980
|
+
colorScheme?: 'auto' | 'light' | 'dark';
|
|
981
|
+
primaryColor?: string;
|
|
982
|
+
doneButtonText?: string;
|
|
983
|
+
}
|
|
984
|
+
declare function export_default$h(props: NewPointsViewProps): React.JSX.Element;
|
|
985
|
+
declare function showNewPoints(props: NewPointsViewProps, url?: string): void;
|
|
958
986
|
|
|
959
987
|
interface CelebrationStepProps {
|
|
960
988
|
title?: string;
|
|
@@ -1067,4 +1095,4 @@ declare function language(key: string): string;
|
|
|
1067
1095
|
|
|
1068
1096
|
declare function getDayKey(date: Date): string;
|
|
1069
1097
|
|
|
1070
|
-
export { export_default$
|
|
1098
|
+
export { export_default$1v as Action, export_default$1u as ActivityMeter, export_default$13 as AppDownload, AreaChartOptions, BarChartOptions, export_default$r as BlankView, export_default$1t as Button, export_default$1s as Calendar, export_default$1r as Card, export_default$1q as CardTitle, export_default$g as CelebrationStep, export_default$f as CelebrationStepContainer, ColorDefinition, export_default$e as ConnectDeviceAccountStep, export_default$d as ConnectDeviceAccountStepContainer, export_default$12 as ConnectDevicesMenu, export_default$11 as ConnectEhr, export_default$c as ConnectEhrStep, export_default$b as ConnectEhrStepContainer, export_default$q as ConnectEhrView, export_default$10 as ConnectFitbit, export_default$$ as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeNavigatorContext as DateRangeCoordinator, export_default$1p as DateRangeNavigator, export_default$1o as DayTrackerSymbol, DeviceDataChartLine, export_default$_ as DeviceDataMonthChart, export_default$Z as DeviceDataMonthCharts, export_default$p as DeviceDataView, export_default$Y as ExternalAccountList, export_default$X as ExternalAccountsLoadingIndicator, export_default$W as ExternalAccountsPreview, export_default$o as ExternalAccountsView, export_default$1n as Face, export_default$V as FitbitDevices, export_default$U as FitbitMonthCharts, export_default$n as FitbitView, export_default$T as GarminDevices, export_default$S as GarminMonthCharts, export_default$m as GarminView, export_default$k as HealthAndWellnessView, export_default$R as HealthPreviewSection, export_default$1m as Histogram, export_default$l as HomeView, export_default$Q as LabResultsSummary, export_default$1l as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$P as MostRecentNotification, export_default$1k as NavigationBar, NewPointsEntry, export_default$h as NewPointsView, NewPointsViewProps, export_default$1j as NotesInput, export_default$O as NotificationList, export_default$j as NotificationsView, export_default$N as PlatformSpecificContent, export_default$14 as ProgressRing, export_default$M as ProjectHeader, export_default$L as ProjectSupport, export_default$K as ProviderSearch, export_default$J as RelativeActivityToday, export_default$I as RestingHeartRateCalendar, export_default$1i as Section, export_default$1h as SegmentedControl, export_default$1g as ShinyOverlay, export_default$1f as SingleExternalAccount, export_default$1e as SingleNotification, export_default$1d as SingleSurveyTask, export_default$1c 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$H as SurveyTaskList, export_default$i as SurveyTasksView, export_default$1b as Switch, SymptomConfiguration, SymptomReference, export_default$F as SymptomSharkCalendar, export_default$u as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$D as SymptomSharkLogEntry, export_default$w as SymptomSharkLogEntryEdit, export_default$t as SymptomSharkLogEntryEditView, export_default$y as SymptomSharkLogEntryList, export_default$x as SymptomSharkLogToday, export_default$E as SymptomSharkOverallExperienceChart, export_default$s as SymptomSharkSymptomDetailView, export_default$A as SymptomSharkSymptomSeverityChart, export_default$B as SymptomSharkSymptomSeveritySummary, export_default$z as SymptomSharkSymptomTreatmentFilters, export_default$C as SymptomSharkSymptomTreatmentHistograms, export_default$v as SymptomSharkVisualizationCoordinator, export_default$1a as TextBlock, export_default$19 as Title, export_default$18 as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$17 as UnstyledButton, export_default$G as ViewEhr, export_default$16 as ViewHeader, export_default$15 as WeekCalendar, WeekStartsOn, export_default$2 as YouTubeStep, export_default$1 as YouTubeStepContainer, checkDailyDataAvailability, convertToSymptomSharkConfiguration, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, export_default as useInterval };
|