@careevolution/mydatahelps-ui 2.2.1-VB.2 → 2.2.1-VB.3
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 +7 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/view/index.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/view/index.d.ts +1 -1
- package/dist/index.d.ts +64 -53
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as BlankView } from "./
|
|
1
|
+
export { default as BlankView } from "./BlankView";
|
|
2
2
|
export { default as ConnectEhrView } from "./ConnectEhrView";
|
|
3
3
|
export { default as DeviceDataView } from "./DeviceDataView";
|
|
4
4
|
export { default as ExternalAccountsView } from "./ExternalAccountsView";
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ interface ActionProps {
|
|
|
17
17
|
indicatorPosition?: "default" | "topRight";
|
|
18
18
|
bottomBorder?: boolean;
|
|
19
19
|
}
|
|
20
|
-
declare function export_default$
|
|
20
|
+
declare function export_default$16(props: ActionProps): JSX.Element;
|
|
21
21
|
|
|
22
22
|
interface ActivityMeterProps {
|
|
23
23
|
label: string;
|
|
@@ -29,7 +29,7 @@ interface ActivityMeterProps {
|
|
|
29
29
|
message?: string;
|
|
30
30
|
className?: string;
|
|
31
31
|
}
|
|
32
|
-
declare function export_default$
|
|
32
|
+
declare function export_default$15(props: ActivityMeterProps): JSX.Element;
|
|
33
33
|
|
|
34
34
|
interface ButtonProps {
|
|
35
35
|
children?: React.ReactNode;
|
|
@@ -44,7 +44,7 @@ interface ButtonProps {
|
|
|
44
44
|
loading?: boolean;
|
|
45
45
|
variant?: "default" | "subtle" | "inverted";
|
|
46
46
|
}
|
|
47
|
-
declare function export_default$
|
|
47
|
+
declare function export_default$14(props: ButtonProps): JSX.Element;
|
|
48
48
|
|
|
49
49
|
interface CalendarProps {
|
|
50
50
|
month: number;
|
|
@@ -52,7 +52,7 @@ interface CalendarProps {
|
|
|
52
52
|
dayRenderer(year: number, month: number, day?: number): JSX.Element | null;
|
|
53
53
|
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
54
54
|
}
|
|
55
|
-
declare function export_default$
|
|
55
|
+
declare function export_default$13(props: CalendarProps): JSX.Element;
|
|
56
56
|
|
|
57
57
|
interface CardProps {
|
|
58
58
|
className?: string;
|
|
@@ -61,14 +61,14 @@ interface CardProps {
|
|
|
61
61
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
62
62
|
autoHide?: boolean;
|
|
63
63
|
}
|
|
64
|
-
declare function export_default$
|
|
64
|
+
declare function export_default$12(props: CardProps): JSX.Element | null;
|
|
65
65
|
|
|
66
66
|
interface CardTitleProps {
|
|
67
67
|
title: string;
|
|
68
68
|
onDetailClick?: Function;
|
|
69
69
|
detailLinkText?: string;
|
|
70
70
|
}
|
|
71
|
-
declare function export_default$
|
|
71
|
+
declare function export_default$11(props: CardTitleProps): JSX.Element;
|
|
72
72
|
|
|
73
73
|
interface DateRangeNavigatorProps {
|
|
74
74
|
intervalType: "Week" | "Month";
|
|
@@ -77,14 +77,14 @@ interface DateRangeNavigatorProps {
|
|
|
77
77
|
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
78
78
|
className?: string;
|
|
79
79
|
}
|
|
80
|
-
declare function export_default
|
|
80
|
+
declare function export_default$10(props: DateRangeNavigatorProps): JSX.Element;
|
|
81
81
|
|
|
82
82
|
interface DayTrackerSymbolProps {
|
|
83
83
|
primaryColors: string[];
|
|
84
84
|
secondaryColors: string[];
|
|
85
85
|
className?: string;
|
|
86
86
|
}
|
|
87
|
-
declare function export_default
|
|
87
|
+
declare function export_default$$(props: DayTrackerSymbolProps): JSX.Element;
|
|
88
88
|
|
|
89
89
|
interface FaceProps {
|
|
90
90
|
faceValue?: number;
|
|
@@ -92,7 +92,7 @@ interface FaceProps {
|
|
|
92
92
|
onClick?: MouseEventHandler;
|
|
93
93
|
className?: string;
|
|
94
94
|
}
|
|
95
|
-
declare function export_default$
|
|
95
|
+
declare function export_default$_(props: FaceProps): JSX.Element;
|
|
96
96
|
|
|
97
97
|
interface HistogramProps {
|
|
98
98
|
entries: {
|
|
@@ -103,7 +103,7 @@ interface HistogramProps {
|
|
|
103
103
|
}[];
|
|
104
104
|
className?: string;
|
|
105
105
|
}
|
|
106
|
-
declare function export_default$
|
|
106
|
+
declare function export_default$Z(props: HistogramProps): JSX.Element;
|
|
107
107
|
|
|
108
108
|
interface LayoutProps {
|
|
109
109
|
children?: React.ReactNode;
|
|
@@ -123,7 +123,7 @@ interface LayoutContext {
|
|
|
123
123
|
bodyBackgroundColor: string;
|
|
124
124
|
}
|
|
125
125
|
declare const LayoutContext: React.Context<LayoutContext>;
|
|
126
|
-
declare function export_default$
|
|
126
|
+
declare function export_default$Y(props: LayoutProps): JSX.Element;
|
|
127
127
|
|
|
128
128
|
interface LoadingIndicatorProps {
|
|
129
129
|
variant?: "default" | "inline";
|
|
@@ -143,7 +143,7 @@ interface NavigationBarProps {
|
|
|
143
143
|
className?: string;
|
|
144
144
|
variant?: "default" | "compressed";
|
|
145
145
|
}
|
|
146
|
-
declare function export_default$
|
|
146
|
+
declare function export_default$X(props: NavigationBarProps): JSX.Element;
|
|
147
147
|
|
|
148
148
|
interface SectionProps {
|
|
149
149
|
children?: React.ReactNode;
|
|
@@ -152,7 +152,7 @@ interface SectionProps {
|
|
|
152
152
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
153
153
|
autoHide?: boolean;
|
|
154
154
|
}
|
|
155
|
-
declare function export_default$
|
|
155
|
+
declare function export_default$W(props: SectionProps): JSX.Element | null;
|
|
156
156
|
|
|
157
157
|
interface SegmentedControlProps {
|
|
158
158
|
segments: {
|
|
@@ -164,28 +164,28 @@ interface SegmentedControlProps {
|
|
|
164
164
|
className?: string;
|
|
165
165
|
color?: string;
|
|
166
166
|
}
|
|
167
|
-
declare function export_default$
|
|
167
|
+
declare function export_default$V(props: SegmentedControlProps): JSX.Element;
|
|
168
168
|
|
|
169
|
-
declare function export_default$
|
|
169
|
+
declare function export_default$U(): JSX.Element;
|
|
170
170
|
|
|
171
171
|
interface SingleExternalAccountProps {
|
|
172
172
|
externalAccount: ExternalAccount;
|
|
173
173
|
onAccountRemoved: (account: ExternalAccount) => void;
|
|
174
174
|
onReconnectAccount: (account: ExternalAccount) => void;
|
|
175
175
|
}
|
|
176
|
-
declare function export_default$
|
|
176
|
+
declare function export_default$T(props: SingleExternalAccountProps): JSX.Element;
|
|
177
177
|
|
|
178
178
|
interface SingleNotificationProps {
|
|
179
179
|
notification: Notification;
|
|
180
180
|
}
|
|
181
|
-
declare function export_default$
|
|
181
|
+
declare function export_default$S(props: SingleNotificationProps): JSX.Element;
|
|
182
182
|
|
|
183
183
|
interface SingleSurveyTaskProps {
|
|
184
184
|
task: SurveyTask;
|
|
185
185
|
descriptionIcon?: IconDefinition$1;
|
|
186
186
|
disableClick?: boolean;
|
|
187
187
|
}
|
|
188
|
-
declare function export_default$
|
|
188
|
+
declare function export_default$R(props: SingleSurveyTaskProps): JSX.Element | null;
|
|
189
189
|
|
|
190
190
|
interface SparkBarChartProps {
|
|
191
191
|
averageFillPercent: number;
|
|
@@ -195,7 +195,7 @@ interface SparkBarChartBar {
|
|
|
195
195
|
color: string;
|
|
196
196
|
barFillPercent: number;
|
|
197
197
|
}
|
|
198
|
-
declare function export_default$
|
|
198
|
+
declare function export_default$Q(props: SparkBarChartProps): JSX.Element;
|
|
199
199
|
|
|
200
200
|
interface SwitchProps {
|
|
201
201
|
isOn: Boolean;
|
|
@@ -203,7 +203,7 @@ interface SwitchProps {
|
|
|
203
203
|
onValueChanged(value: boolean): void;
|
|
204
204
|
className?: string;
|
|
205
205
|
}
|
|
206
|
-
declare function export_default$
|
|
206
|
+
declare function export_default$P(props: SwitchProps): JSX.Element;
|
|
207
207
|
|
|
208
208
|
interface StatusBarBackgroundProps {
|
|
209
209
|
color?: string;
|
|
@@ -214,7 +214,7 @@ interface TextBlockProps {
|
|
|
214
214
|
children?: React.ReactNode;
|
|
215
215
|
className?: string;
|
|
216
216
|
}
|
|
217
|
-
declare function export_default$
|
|
217
|
+
declare function export_default$O(props: TextBlockProps): JSX.Element | null;
|
|
218
218
|
|
|
219
219
|
interface TrackerItemProps {
|
|
220
220
|
selected: boolean;
|
|
@@ -225,7 +225,7 @@ interface TrackerItemProps {
|
|
|
225
225
|
onClick?: Function;
|
|
226
226
|
className?: string;
|
|
227
227
|
}
|
|
228
|
-
declare function export_default$
|
|
228
|
+
declare function export_default$N(props: TrackerItemProps): JSX.Element;
|
|
229
229
|
|
|
230
230
|
interface UnstyledButtonProps {
|
|
231
231
|
onClick: MouseEventHandler;
|
|
@@ -235,13 +235,13 @@ interface UnstyledButtonProps {
|
|
|
235
235
|
style?: React.CSSProperties;
|
|
236
236
|
disabled?: boolean;
|
|
237
237
|
}
|
|
238
|
-
declare function export_default$
|
|
238
|
+
declare function export_default$M(props: UnstyledButtonProps): JSX.Element;
|
|
239
239
|
|
|
240
240
|
interface ViewHeaderProps {
|
|
241
241
|
title?: string;
|
|
242
242
|
subtitle?: string;
|
|
243
243
|
}
|
|
244
|
-
declare function export_default$
|
|
244
|
+
declare function export_default$L(props: ViewHeaderProps): JSX.Element | null;
|
|
245
245
|
|
|
246
246
|
interface WeekCalendarProps {
|
|
247
247
|
selectedDate?: Date;
|
|
@@ -252,14 +252,14 @@ interface WeekCalendarProps {
|
|
|
252
252
|
onStartDateChange?(startDate: Date): void;
|
|
253
253
|
dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
|
|
254
254
|
}
|
|
255
|
-
declare function export_default$
|
|
255
|
+
declare function export_default$K(props: WeekCalendarProps): JSX.Element;
|
|
256
256
|
|
|
257
257
|
interface ConnectAppleHealthProps {
|
|
258
258
|
enableAppleHealthSurveyName?: string;
|
|
259
259
|
appleHealthEnabled?: boolean;
|
|
260
260
|
previewDevicePlatform?: string;
|
|
261
261
|
}
|
|
262
|
-
declare function export_default$
|
|
262
|
+
declare function export_default$J(props: ConnectAppleHealthProps): JSX.Element;
|
|
263
263
|
|
|
264
264
|
interface ConnectEhrProps {
|
|
265
265
|
applicationUrl: ConnectEhrApplicationUrl;
|
|
@@ -269,28 +269,28 @@ interface ConnectEhrProps {
|
|
|
269
269
|
}
|
|
270
270
|
declare type ConnectEhrApplicationUrl = "preview" | string;
|
|
271
271
|
declare type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
|
|
272
|
-
declare function export_default$
|
|
272
|
+
declare function export_default$I(props: ConnectEhrProps): JSX.Element | null;
|
|
273
273
|
|
|
274
274
|
interface ConnectFitbitProps {
|
|
275
275
|
fitbitProviderID?: number;
|
|
276
276
|
previewState?: ConnectFitbitPreviewState;
|
|
277
277
|
}
|
|
278
278
|
declare type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected";
|
|
279
|
-
declare function export_default$
|
|
279
|
+
declare function export_default$H(props: ConnectFitbitProps): JSX.Element;
|
|
280
280
|
|
|
281
281
|
interface ConnectGoogleFitProps {
|
|
282
282
|
enableGoogleFitSurveyName?: string;
|
|
283
283
|
googleFitEnabled?: boolean;
|
|
284
284
|
previewDevicePlatform?: string;
|
|
285
285
|
}
|
|
286
|
-
declare function export_default$
|
|
286
|
+
declare function export_default$G(props: ConnectGoogleFitProps): JSX.Element;
|
|
287
287
|
|
|
288
288
|
interface ConnectGarminProps {
|
|
289
289
|
garminProviderID?: number;
|
|
290
290
|
previewState?: ConnectGarminPreviewState;
|
|
291
291
|
}
|
|
292
292
|
declare type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected";
|
|
293
|
-
declare function export_default$
|
|
293
|
+
declare function export_default$F(props: ConnectGarminProps): JSX.Element;
|
|
294
294
|
|
|
295
295
|
interface DeviceDataMonthChartProps {
|
|
296
296
|
lines: DeviceDataChartLine[];
|
|
@@ -308,13 +308,13 @@ interface DeviceDataChartLine {
|
|
|
308
308
|
showAverage?: boolean;
|
|
309
309
|
}
|
|
310
310
|
declare type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
|
|
311
|
-
declare function export_default$
|
|
311
|
+
declare function export_default$E(props: DeviceDataMonthChartProps): JSX.Element | null;
|
|
312
312
|
|
|
313
313
|
interface DeviceDataMonthChartsProps {
|
|
314
314
|
previewState?: DeviceDataMonthChartsPreviewState;
|
|
315
315
|
}
|
|
316
316
|
declare type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
|
|
317
|
-
declare function export_default$
|
|
317
|
+
declare function export_default$D(props: DeviceDataMonthChartsProps): JSX.Element;
|
|
318
318
|
|
|
319
319
|
interface ExternalAccountListProps {
|
|
320
320
|
externalAccountProviderCategories?: string[];
|
|
@@ -322,13 +322,13 @@ interface ExternalAccountListProps {
|
|
|
322
322
|
onExternalAccountsLoaded?: (accounts: ExternalAccount[]) => void;
|
|
323
323
|
}
|
|
324
324
|
declare type NotificationListPreviewState$1 = "Default";
|
|
325
|
-
declare function export_default$
|
|
325
|
+
declare function export_default$C(props: ExternalAccountListProps): JSX.Element;
|
|
326
326
|
|
|
327
327
|
interface ExternalAccountsLoadingIndicatorProps {
|
|
328
328
|
previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
|
|
329
329
|
externalAccountCategories?: string[];
|
|
330
330
|
}
|
|
331
|
-
declare function export_default$
|
|
331
|
+
declare function export_default$B(props: ExternalAccountsLoadingIndicatorProps): JSX.Element | null;
|
|
332
332
|
|
|
333
333
|
interface ExternalAccountsPreviewProps {
|
|
334
334
|
excludeProviders?: boolean;
|
|
@@ -339,31 +339,31 @@ interface ExternalAccountsPreviewProps {
|
|
|
339
339
|
}
|
|
340
340
|
declare type ExternalAccountsApplicationUrl = "preview" | string;
|
|
341
341
|
declare type ExternalAccountsPreviewPreviewState = "Default";
|
|
342
|
-
declare function export_default$
|
|
342
|
+
declare function export_default$A(props: ExternalAccountsPreviewProps): JSX.Element | null;
|
|
343
343
|
|
|
344
344
|
declare type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
345
345
|
|
|
346
346
|
interface FitbitDevicesProps {
|
|
347
347
|
previewState?: ConnectedDevicesPreviewState;
|
|
348
348
|
}
|
|
349
|
-
declare function export_default$
|
|
349
|
+
declare function export_default$z(props: FitbitDevicesProps): JSX.Element;
|
|
350
350
|
|
|
351
351
|
declare type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
352
352
|
|
|
353
353
|
interface FitbitMonthChartsProps {
|
|
354
354
|
previewState?: MonthChartsPreviewState;
|
|
355
355
|
}
|
|
356
|
-
declare function export_default$
|
|
356
|
+
declare function export_default$y(props: FitbitMonthChartsProps): JSX.Element;
|
|
357
357
|
|
|
358
358
|
interface GarminDevicesProps {
|
|
359
359
|
previewState?: ConnectedDevicesPreviewState;
|
|
360
360
|
}
|
|
361
|
-
declare function export_default$
|
|
361
|
+
declare function export_default$x(props: GarminDevicesProps): JSX.Element;
|
|
362
362
|
|
|
363
363
|
interface GarminMonthChartsProps {
|
|
364
364
|
previewState?: MonthChartsPreviewState;
|
|
365
365
|
}
|
|
366
|
-
declare function export_default$
|
|
366
|
+
declare function export_default$w(props: GarminMonthChartsProps): JSX.Element;
|
|
367
367
|
|
|
368
368
|
declare type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
|
|
369
369
|
interface HealthPreviewSectionProps {
|
|
@@ -372,7 +372,7 @@ interface HealthPreviewSectionProps {
|
|
|
372
372
|
previewState?: "NoData" | "Default";
|
|
373
373
|
indicatorPosition?: "default" | "topRight";
|
|
374
374
|
}
|
|
375
|
-
declare function export_default$
|
|
375
|
+
declare function export_default$v(props: HealthPreviewSectionProps): JSX.Element | null;
|
|
376
376
|
|
|
377
377
|
interface TermInformation {
|
|
378
378
|
TermFamily: string;
|
|
@@ -385,7 +385,7 @@ interface LabResultsSummaryProps {
|
|
|
385
385
|
onClick(): void;
|
|
386
386
|
onViewTermInfo(termInfo: TermInformation): void;
|
|
387
387
|
}
|
|
388
|
-
declare function export_default$
|
|
388
|
+
declare function export_default$u(props: LabResultsSummaryProps): JSX.Element | null;
|
|
389
389
|
|
|
390
390
|
interface MostRecentNotificationProps {
|
|
391
391
|
notificationType?: NotificationType;
|
|
@@ -394,40 +394,40 @@ interface MostRecentNotificationProps {
|
|
|
394
394
|
previewState?: MostRecentNotificationPreviewState;
|
|
395
395
|
}
|
|
396
396
|
declare type MostRecentNotificationPreviewState = "Default";
|
|
397
|
-
declare function export_default$
|
|
397
|
+
declare function export_default$t(props: MostRecentNotificationProps): JSX.Element | null;
|
|
398
398
|
|
|
399
399
|
interface NotificationListProps {
|
|
400
400
|
notificationType?: NotificationType;
|
|
401
401
|
previewState?: NotificationListPreviewState;
|
|
402
402
|
}
|
|
403
403
|
declare type NotificationListPreviewState = "Default" | "NoData";
|
|
404
|
-
declare function export_default$
|
|
404
|
+
declare function export_default$s(props: NotificationListProps): JSX.Element;
|
|
405
405
|
|
|
406
406
|
interface PlatformSpecificContentProps {
|
|
407
407
|
platforms: string[];
|
|
408
408
|
children?: React.ReactNode;
|
|
409
409
|
previewDevicePlatform?: string;
|
|
410
410
|
}
|
|
411
|
-
declare function export_default$
|
|
411
|
+
declare function export_default$r(props: PlatformSpecificContentProps): JSX.Element | null;
|
|
412
412
|
|
|
413
413
|
interface ProjectHeaderProps {
|
|
414
414
|
previewState?: ProjectHeaderPropsPreviewState;
|
|
415
415
|
}
|
|
416
416
|
declare type ProjectHeaderPropsPreviewState = "Default";
|
|
417
|
-
declare function export_default$
|
|
417
|
+
declare function export_default$q(props: ProjectHeaderProps): JSX.Element;
|
|
418
418
|
|
|
419
419
|
interface ProjectSupportProps {
|
|
420
420
|
previewState?: ProjectSupportPropsPreviewState;
|
|
421
421
|
}
|
|
422
422
|
declare type ProjectSupportPropsPreviewState = "Default";
|
|
423
|
-
declare function export_default$
|
|
423
|
+
declare function export_default$p(props: ProjectSupportProps): JSX.Element | null;
|
|
424
424
|
|
|
425
425
|
interface ProviderSearchProps {
|
|
426
426
|
previewState?: ProviderSearchPreviewState;
|
|
427
427
|
providerCategories?: string[];
|
|
428
428
|
}
|
|
429
429
|
declare type ProviderSearchPreviewState = "Default";
|
|
430
|
-
declare function export_default$
|
|
430
|
+
declare function export_default$o(props: ProviderSearchProps): JSX.Element;
|
|
431
431
|
|
|
432
432
|
interface SurveyTaskListProps {
|
|
433
433
|
status: SurveyTaskStatus;
|
|
@@ -438,13 +438,18 @@ interface SurveyTaskListProps {
|
|
|
438
438
|
embedTasksInCards?: boolean;
|
|
439
439
|
}
|
|
440
440
|
declare type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
|
|
441
|
-
declare function export_default$
|
|
441
|
+
declare function export_default$n(props: SurveyTaskListProps): JSX.Element | null;
|
|
442
442
|
|
|
443
|
-
interface
|
|
444
|
-
|
|
443
|
+
interface BlankViewProps {
|
|
444
|
+
children?: React.ReactNode;
|
|
445
|
+
title?: string;
|
|
446
|
+
subtitle?: string;
|
|
447
|
+
showCloseButton?: boolean;
|
|
448
|
+
showBackButton?: boolean;
|
|
445
449
|
colorScheme?: "auto" | "light" | "dark";
|
|
450
|
+
primaryColor?: string;
|
|
446
451
|
}
|
|
447
|
-
declare function export_default$
|
|
452
|
+
declare function export_default$m(props: BlankViewProps): JSX.Element;
|
|
448
453
|
|
|
449
454
|
interface ConnectEhrViewProps {
|
|
450
455
|
externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
|
|
@@ -455,7 +460,13 @@ interface ConnectEhrViewProps {
|
|
|
455
460
|
colorScheme?: "auto" | "light" | "dark";
|
|
456
461
|
}
|
|
457
462
|
declare type ViewPresentationType$3 = "Modal" | "Push";
|
|
458
|
-
declare function export_default$
|
|
463
|
+
declare function export_default$l(props: ConnectEhrViewProps): JSX.Element;
|
|
464
|
+
|
|
465
|
+
interface DeviceDataViewProps {
|
|
466
|
+
preview?: boolean;
|
|
467
|
+
colorScheme?: "auto" | "light" | "dark";
|
|
468
|
+
}
|
|
469
|
+
declare function export_default$k(props: DeviceDataViewProps): JSX.Element;
|
|
459
470
|
|
|
460
471
|
interface ExternalAccountsViewProps {
|
|
461
472
|
excludeProviders?: boolean;
|
|
@@ -667,4 +678,4 @@ declare enum DailyDataType {
|
|
|
667
678
|
RestingHeartRate = "RestingHeartRate"
|
|
668
679
|
}
|
|
669
680
|
|
|
670
|
-
export { export_default$
|
|
681
|
+
export { export_default$16 as Action, export_default$15 as ActivityMeter, export_default$m as BlankView, export_default$14 as Button, export_default$13 as Calendar, export_default$12 as Card, export_default$11 as CardTitle, export_default$2 as CelebrationStep, export_default$1 as CelebrationStepContainer, export_default$J as ConnectAppleHealth, export_default$I as ConnectEhr, export_default$l as ConnectEhrView, export_default$H as ConnectFitbit, export_default$F as ConnectGarmin, export_default$G as ConnectGoogleFit, DailyDataAvailabilityCheck, DailyDataProvider, DailyDataQueryResult, DailyDataType, export_default$10 as DateRangeNavigator, export_default$$ as DayTrackerSymbol, DeviceDataChartLine, export_default$E as DeviceDataMonthChart, export_default$D as DeviceDataMonthCharts, export_default$k as DeviceDataView, export_default$C as ExternalAccountList, export_default$B as ExternalAccountsLoadingIndicator, export_default$A as ExternalAccountsPreview, export_default$j as ExternalAccountsView, export_default$_ as Face, export_default$z as FitbitDevices, export_default$y as FitbitMonthCharts, export_default$i as FitbitView, export_default$x as GarminDevices, export_default$w as GarminMonthCharts, export_default$h as GarminView, export_default$f as HealthAndWellnessView, export_default$v as HealthPreviewSection, export_default$Z as Histogram, export_default$g as HomeView, export_default$u as LabResultsSummary, export_default$Y as Layout, LayoutContext, LoadingIndicator, export_default$t as MostRecentNotification, export_default$X as NavigationBar, export_default$s as NotificationList, export_default$e as NotificationsView, export_default$r as PlatformSpecificContent, export_default$q as ProjectHeader, export_default$p as ProjectSupport, export_default$o as ProviderSearch, export_default$o as RestingHeartRateCalendar, export_default$W as Section, export_default$V as SegmentedControl, export_default$U as ShinyOverlay, export_default$T as SingleExternalAccount, export_default$S as SingleNotification, export_default$R as SingleSurveyTask, export_default$Q as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$8 as StepDetailText, export_default$6 as StepImage, export_default$5 as StepImageIcon, export_default$b as StepLayout, export_default$c as StepMarkdown, export_default$7 as StepNextButton, export_default$9 as StepText, export_default$a as StepTitle, export_default$n as SurveyTaskList, export_default$d as SurveyTasksView, export_default$P as Switch, export_default$O as TextBlock, export_default$N as TrackerItem, export_default$M as UnstyledButton, export_default$L as ViewHeader, export_default$K as WeekCalendar, export_default$4 as YouTubeStep, export_default$3 as YouTubeStepContainer, checkDailyDataAvailability, queryDailyData, registerDailyDataProvider, export_default as useInterval };
|