@careevolution/mydatahelps-ui 2.2.1-VB2.3 → 2.2.1-VB3.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.
@@ -2,8 +2,8 @@ import React from 'react';
2
2
  import "./DeviceDataMonthChart.css";
3
3
  export interface DeviceDataMonthChartProps {
4
4
  lines: DeviceDataChartLine[];
5
- month: number;
6
- year: number;
5
+ month?: number;
6
+ year?: number;
7
7
  syncId?: string;
8
8
  title?: string;
9
9
  previewState?: DeviceDataMonthChartPreviewState;
@@ -19,5 +19,6 @@ export { default as PlatformSpecificContent } from "./PlatformSpecificContent";
19
19
  export { default as ProjectHeader } from "./ProjectHeader";
20
20
  export { default as ProjectSupport } from "./ProjectSupport";
21
21
  export { default as ProviderSearch } from "./ProviderSearch";
22
- export { default as RestingHeartRateCalendar } from "./ProviderSearch";
22
+ export { default as RelativeActivityToday } from "./RelativeActivityToday";
23
+ export { default as RestingHeartRateCalendar } from "./RestingHeartRateCalendar";
23
24
  export { default as SurveyTaskList } from "./SurveyTaskList";
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ export interface DateRangeCoordinatorProps {
3
+ intervalType: "Week" | "Month";
4
+ variant?: "default" | "rounded";
5
+ children: React.ReactNode;
6
+ }
7
+ export interface DateRangeContext {
8
+ intervalType: "Week" | "Month";
9
+ intervalStart: Date;
10
+ }
11
+ export declare const DateRangeContext: React.Context<DateRangeContext>;
12
+ export default function DateRangeNavigatorContext(props: DateRangeCoordinatorProps): React.JSX.Element;
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+ import DateRangeCoordinator, { DateRangeCoordinatorProps } from "./DateRangeCoordinator";
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof DateRangeCoordinator;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ };
10
+ export default _default;
11
+ export declare const steps: {
12
+ args: {
13
+ variant: string;
14
+ intervalType: string;
15
+ children: React.JSX.Element;
16
+ };
17
+ render: (args: DateRangeCoordinatorProps) => React.JSX.Element;
18
+ };
@@ -0,0 +1 @@
1
+ export { default } from "./DateRangeCoordinator";
@@ -4,6 +4,7 @@ export { default as Button } from "./Button";
4
4
  export { default as Calendar } from "./Calendar";
5
5
  export { default as Card } from "./Card";
6
6
  export { default as CardTitle } from "./CardTitle";
7
+ export { default as DateRangeCoordinator } from "./DateRangeCoordinator";
7
8
  export { default as DateRangeNavigator } from "./DateRangeNavigator";
8
9
  export { default as DayTrackerSymbol } from "./DayTrackerSymbol";
9
10
  export { default as Face } from "./Face";
package/dist/index.d.ts CHANGED
@@ -16,7 +16,7 @@ interface ActionProps {
16
16
  indicatorPosition?: "default" | "topRight";
17
17
  bottomBorder?: boolean;
18
18
  }
19
- declare function export_default$15(props: ActionProps): React.JSX.Element;
19
+ declare function export_default$17(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$14(props: ActivityMeterProps): React.JSX.Element;
31
+ declare function export_default$16(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$13(props: ButtonProps): React.JSX.Element;
46
+ declare function export_default$15(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$12(props: CalendarProps): React.JSX.Element;
54
+ declare function export_default$14(props: CalendarProps): React.JSX.Element;
55
55
 
56
56
  interface CardProps {
57
57
  className?: string;
@@ -59,14 +59,21 @@ interface CardProps {
59
59
  allowOverflow?: boolean;
60
60
  innerRef?: React.Ref<HTMLDivElement>;
61
61
  }
62
- declare function export_default$11(props: CardProps): React.JSX.Element | null;
62
+ declare function export_default$13(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$10(props: CardTitleProps): React.JSX.Element;
69
+ declare function export_default$12(props: CardTitleProps): React.JSX.Element;
70
+
71
+ interface DateRangeCoordinatorProps {
72
+ intervalType: "Week" | "Month";
73
+ variant?: "default" | "rounded";
74
+ children: React.ReactNode;
75
+ }
76
+ declare function DateRangeNavigatorContext(props: DateRangeCoordinatorProps): React.JSX.Element;
70
77
 
71
78
  interface DateRangeNavigatorProps {
72
79
  intervalType: "Week" | "Month";
@@ -75,14 +82,14 @@ interface DateRangeNavigatorProps {
75
82
  onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
76
83
  className?: string;
77
84
  }
78
- declare function export_default$$(props: DateRangeNavigatorProps): React.JSX.Element;
85
+ declare function export_default$11(props: DateRangeNavigatorProps): React.JSX.Element;
79
86
 
80
87
  interface DayTrackerSymbolProps {
81
88
  primaryColors: string[];
82
89
  secondaryColors: string[];
83
90
  className?: string;
84
91
  }
85
- declare function export_default$_(props: DayTrackerSymbolProps): React.JSX.Element;
92
+ declare function export_default$10(props: DayTrackerSymbolProps): React.JSX.Element;
86
93
 
87
94
  interface FaceProps {
88
95
  faceValue?: number;
@@ -90,7 +97,7 @@ interface FaceProps {
90
97
  onClick?: MouseEventHandler;
91
98
  className?: string;
92
99
  }
93
- declare function export_default$Z(props: FaceProps): React.JSX.Element;
100
+ declare function export_default$$(props: FaceProps): React.JSX.Element;
94
101
 
95
102
  interface HistogramProps {
96
103
  entries: {
@@ -101,7 +108,7 @@ interface HistogramProps {
101
108
  }[];
102
109
  className?: string;
103
110
  }
104
- declare function export_default$Y(props: HistogramProps): React.JSX.Element;
111
+ declare function export_default$_(props: HistogramProps): React.JSX.Element;
105
112
 
106
113
  interface LayoutProps {
107
114
  children?: React.ReactNode;
@@ -121,7 +128,7 @@ interface LayoutContext {
121
128
  bodyBackgroundColor: string;
122
129
  }
123
130
  declare const LayoutContext: React.Context<LayoutContext>;
124
- declare function export_default$X(props: LayoutProps): React.JSX.Element;
131
+ declare function export_default$Z(props: LayoutProps): React.JSX.Element;
125
132
 
126
133
  interface LoadingIndicatorProps {
127
134
  variant?: "default" | "inline";
@@ -141,7 +148,7 @@ interface NavigationBarProps {
141
148
  className?: string;
142
149
  variant?: "default" | "compressed";
143
150
  }
144
- declare function export_default$W(props: NavigationBarProps): React.JSX.Element;
151
+ declare function export_default$Y(props: NavigationBarProps): React.JSX.Element;
145
152
 
146
153
  interface SectionProps {
147
154
  children?: React.ReactNode;
@@ -149,7 +156,7 @@ interface SectionProps {
149
156
  noTopMargin?: boolean;
150
157
  innerRef?: React.Ref<HTMLDivElement>;
151
158
  }
152
- declare function export_default$V(props: SectionProps): React.JSX.Element | null;
159
+ declare function export_default$X(props: SectionProps): React.JSX.Element | null;
153
160
 
154
161
  interface SegmentedControlProps {
155
162
  segments: {
@@ -161,28 +168,28 @@ interface SegmentedControlProps {
161
168
  className?: string;
162
169
  color?: string;
163
170
  }
164
- declare function export_default$U(props: SegmentedControlProps): React.JSX.Element;
171
+ declare function export_default$W(props: SegmentedControlProps): React.JSX.Element;
165
172
 
166
- declare function export_default$T(): React.JSX.Element;
173
+ declare function export_default$V(): React.JSX.Element;
167
174
 
168
175
  interface SingleExternalAccountProps {
169
176
  externalAccount: ExternalAccount;
170
177
  onAccountRemoved: (account: ExternalAccount) => void;
171
178
  onReconnectAccount: (account: ExternalAccount) => void;
172
179
  }
173
- declare function export_default$S(props: SingleExternalAccountProps): React.JSX.Element;
180
+ declare function export_default$U(props: SingleExternalAccountProps): React.JSX.Element;
174
181
 
175
182
  interface SingleNotificationProps {
176
183
  notification: Notification;
177
184
  }
178
- declare function export_default$R(props: SingleNotificationProps): React.JSX.Element;
185
+ declare function export_default$T(props: SingleNotificationProps): React.JSX.Element;
179
186
 
180
187
  interface SingleSurveyTaskProps {
181
188
  task: SurveyTask;
182
189
  descriptionIcon?: IconDefinition$1;
183
190
  disableClick?: boolean;
184
191
  }
185
- declare function export_default$Q(props: SingleSurveyTaskProps): React.JSX.Element | null;
192
+ declare function export_default$S(props: SingleSurveyTaskProps): React.JSX.Element | null;
186
193
 
187
194
  interface SparkBarChartProps {
188
195
  averageFillPercent: number;
@@ -192,7 +199,7 @@ interface SparkBarChartBar {
192
199
  color: string;
193
200
  barFillPercent: number;
194
201
  }
195
- declare function export_default$P(props: SparkBarChartProps): React.JSX.Element;
202
+ declare function export_default$R(props: SparkBarChartProps): React.JSX.Element;
196
203
 
197
204
  interface SwitchProps {
198
205
  isOn: Boolean;
@@ -200,7 +207,7 @@ interface SwitchProps {
200
207
  onValueChanged(value: boolean): void;
201
208
  className?: string;
202
209
  }
203
- declare function export_default$O(props: SwitchProps): React.JSX.Element;
210
+ declare function export_default$Q(props: SwitchProps): React.JSX.Element;
204
211
 
205
212
  interface StatusBarBackgroundProps {
206
213
  color?: string;
@@ -211,7 +218,7 @@ interface TextBlockProps {
211
218
  children?: React.ReactNode;
212
219
  className?: string;
213
220
  }
214
- declare function export_default$N(props: TextBlockProps): React.JSX.Element | null;
221
+ declare function export_default$P(props: TextBlockProps): React.JSX.Element | null;
215
222
 
216
223
  interface TrackerItemProps {
217
224
  selected: boolean;
@@ -222,7 +229,7 @@ interface TrackerItemProps {
222
229
  onClick?: Function;
223
230
  className?: string;
224
231
  }
225
- declare function export_default$M(props: TrackerItemProps): React.JSX.Element;
232
+ declare function export_default$O(props: TrackerItemProps): React.JSX.Element;
226
233
 
227
234
  interface UnstyledButtonProps {
228
235
  onClick: MouseEventHandler;
@@ -232,13 +239,13 @@ interface UnstyledButtonProps {
232
239
  style?: React.CSSProperties;
233
240
  disabled?: boolean;
234
241
  }
235
- declare function export_default$L(props: UnstyledButtonProps): React.JSX.Element;
242
+ declare function export_default$N(props: UnstyledButtonProps): React.JSX.Element;
236
243
 
237
244
  interface ViewHeaderProps {
238
245
  title?: string;
239
246
  subtitle?: string;
240
247
  }
241
- declare function export_default$K(props: ViewHeaderProps): React.JSX.Element | null;
248
+ declare function export_default$M(props: ViewHeaderProps): React.JSX.Element | null;
242
249
 
243
250
  interface WeekCalendarProps {
244
251
  selectedDate?: Date;
@@ -249,13 +256,13 @@ interface WeekCalendarProps {
249
256
  onStartDateChange?(startDate: Date): void;
250
257
  dayRenderer(year: number, month: number, day: number, selectedWeek: boolean): JSX.Element | null;
251
258
  }
252
- declare function export_default$J(props: WeekCalendarProps): React.JSX.Element;
259
+ declare function export_default$L(props: WeekCalendarProps): React.JSX.Element;
253
260
 
254
261
  interface AppDownloadProps {
255
262
  previewProjectPlatforms?: string[];
256
263
  previewDevicePlatform?: string;
257
264
  }
258
- declare function export_default$I(props: AppDownloadProps): React.JSX.Element | null;
265
+ declare function export_default$K(props: AppDownloadProps): React.JSX.Element | null;
259
266
 
260
267
  interface ConnectEhrProps {
261
268
  applicationUrl: ConnectEhrApplicationUrl;
@@ -265,7 +272,7 @@ interface ConnectEhrProps {
265
272
  }
266
273
  declare type ConnectEhrApplicationUrl = "preview" | string;
267
274
  declare type ConnectEhrPreviewState = "notEnabled" | "enabled" | "enabledConnected" | "enabledNeedsAttention";
268
- declare function export_default$H(props: ConnectEhrProps): React.JSX.Element | null;
275
+ declare function export_default$J(props: ConnectEhrProps): React.JSX.Element | null;
269
276
 
270
277
  interface ConnectFitbitProps {
271
278
  title?: string;
@@ -274,7 +281,7 @@ interface ConnectFitbitProps {
274
281
  disabledBehavior?: 'hide' | 'displayError';
275
282
  }
276
283
  declare type ConnectFitbitPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
277
- declare function export_default$G(props: ConnectFitbitProps): React.JSX.Element;
284
+ declare function export_default$I(props: ConnectFitbitProps): React.JSX.Element;
278
285
 
279
286
  interface ConnectGarminProps {
280
287
  title?: string;
@@ -283,12 +290,12 @@ interface ConnectGarminProps {
283
290
  disabledBehavior?: 'hide' | 'displayError';
284
291
  }
285
292
  declare type ConnectGarminPreviewState = ExternalAccountStatus | "notConnected" | "notEnabled";
286
- declare function export_default$F(props: ConnectGarminProps): React.JSX.Element;
293
+ declare function export_default$H(props: ConnectGarminProps): React.JSX.Element;
287
294
 
288
295
  interface DeviceDataMonthChartProps {
289
296
  lines: DeviceDataChartLine[];
290
- month: number;
291
- year: number;
297
+ month?: number;
298
+ year?: number;
292
299
  syncId?: string;
293
300
  title?: string;
294
301
  previewState?: DeviceDataMonthChartPreviewState;
@@ -301,13 +308,13 @@ interface DeviceDataChartLine {
301
308
  showAverage?: boolean;
302
309
  }
303
310
  declare type DeviceDataMonthChartPreviewState = "WithData" | "NoData" | "Loading";
304
- declare function export_default$E(props: DeviceDataMonthChartProps): React.JSX.Element | null;
311
+ declare function export_default$G(props: DeviceDataMonthChartProps): React.JSX.Element | null;
305
312
 
306
313
  interface DeviceDataMonthChartsProps {
307
314
  previewState?: DeviceDataMonthChartsPreviewState;
308
315
  }
309
316
  declare type DeviceDataMonthChartsPreviewState = "Default" | "NoData";
310
- declare function export_default$D(props: DeviceDataMonthChartsProps): React.JSX.Element;
317
+ declare function export_default$F(props: DeviceDataMonthChartsProps): React.JSX.Element;
311
318
 
312
319
  interface ExternalAccountListProps {
313
320
  externalAccountProviderCategories?: string[];
@@ -315,13 +322,13 @@ interface ExternalAccountListProps {
315
322
  onExternalAccountsLoaded?: (accounts: ExternalAccount[]) => void;
316
323
  }
317
324
  declare type NotificationListPreviewState$1 = "Default";
318
- declare function export_default$C(props: ExternalAccountListProps): React.JSX.Element;
325
+ declare function export_default$E(props: ExternalAccountListProps): React.JSX.Element;
319
326
 
320
327
  interface ExternalAccountsLoadingIndicatorProps {
321
328
  previewState?: "externalAccountsFetchingData" | "externalAccountsLoaded";
322
329
  externalAccountCategories?: string[];
323
330
  }
324
- declare function export_default$B(props: ExternalAccountsLoadingIndicatorProps): React.JSX.Element | null;
331
+ declare function export_default$D(props: ExternalAccountsLoadingIndicatorProps): React.JSX.Element | null;
325
332
 
326
333
  interface ExternalAccountsPreviewProps {
327
334
  excludeProviders?: boolean;
@@ -332,31 +339,31 @@ interface ExternalAccountsPreviewProps {
332
339
  }
333
340
  declare type ExternalAccountsApplicationUrl = "preview" | string;
334
341
  declare type ExternalAccountsPreviewPreviewState = "Default";
335
- declare function export_default$A(props: ExternalAccountsPreviewProps): React.JSX.Element | null;
342
+ declare function export_default$C(props: ExternalAccountsPreviewProps): React.JSX.Element | null;
336
343
 
337
344
  declare type ConnectedDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
338
345
 
339
346
  interface FitbitDevicesProps {
340
347
  previewState?: ConnectedDevicesPreviewState;
341
348
  }
342
- declare function export_default$z(props: FitbitDevicesProps): React.JSX.Element;
349
+ declare function export_default$B(props: FitbitDevicesProps): React.JSX.Element;
343
350
 
344
351
  declare type MonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
345
352
 
346
353
  interface FitbitMonthChartsProps {
347
354
  previewState?: MonthChartsPreviewState;
348
355
  }
349
- declare function export_default$y(props: FitbitMonthChartsProps): React.JSX.Element;
356
+ declare function export_default$A(props: FitbitMonthChartsProps): React.JSX.Element;
350
357
 
351
358
  interface GarminDevicesProps {
352
359
  previewState?: ConnectedDevicesPreviewState;
353
360
  }
354
- declare function export_default$x(props: GarminDevicesProps): React.JSX.Element;
361
+ declare function export_default$z(props: GarminDevicesProps): React.JSX.Element;
355
362
 
356
363
  interface GarminMonthChartsProps {
357
364
  previewState?: MonthChartsPreviewState;
358
365
  }
359
- declare function export_default$w(props: GarminMonthChartsProps): React.JSX.Element;
366
+ declare function export_default$y(props: GarminMonthChartsProps): React.JSX.Element;
360
367
 
361
368
  declare type HealthPreviewSectionConcept = "Medications" | "Immunizations" | "Reports" | "Allergies" | "Conditions" | "Procedures";
362
369
  interface HealthPreviewSectionProps {
@@ -365,7 +372,7 @@ interface HealthPreviewSectionProps {
365
372
  previewState?: "NoData" | "Default";
366
373
  indicatorPosition?: "default" | "topRight";
367
374
  }
368
- declare function export_default$v(props: HealthPreviewSectionProps): React.JSX.Element | null;
375
+ declare function export_default$x(props: HealthPreviewSectionProps): React.JSX.Element | null;
369
376
 
370
377
  interface TermInformation {
371
378
  TermFamily: string;
@@ -378,7 +385,7 @@ interface LabResultsSummaryProps {
378
385
  onClick(): void;
379
386
  onViewTermInfo(termInfo: TermInformation): void;
380
387
  }
381
- declare function export_default$u(props: LabResultsSummaryProps): React.JSX.Element | null;
388
+ declare function export_default$w(props: LabResultsSummaryProps): React.JSX.Element | null;
382
389
 
383
390
  interface MostRecentNotificationProps {
384
391
  notificationType?: NotificationType;
@@ -387,40 +394,62 @@ interface MostRecentNotificationProps {
387
394
  previewState?: MostRecentNotificationPreviewState;
388
395
  }
389
396
  declare type MostRecentNotificationPreviewState = "Default";
390
- declare function export_default$t(props: MostRecentNotificationProps): React.JSX.Element | null;
397
+ declare function export_default$v(props: MostRecentNotificationProps): React.JSX.Element | null;
391
398
 
392
399
  interface NotificationListProps {
393
400
  notificationType?: NotificationType;
394
401
  previewState?: NotificationListPreviewState;
395
402
  }
396
403
  declare type NotificationListPreviewState = "Default" | "NoData";
397
- declare function export_default$s(props: NotificationListProps): React.JSX.Element;
404
+ declare function export_default$u(props: NotificationListProps): React.JSX.Element;
398
405
 
399
406
  interface PlatformSpecificContentProps {
400
407
  platforms: string[];
401
408
  children?: React.ReactNode;
402
409
  previewDevicePlatform?: string;
403
410
  }
404
- declare function export_default$r(props: PlatformSpecificContentProps): React.JSX.Element | null;
411
+ declare function export_default$t(props: PlatformSpecificContentProps): React.JSX.Element | null;
405
412
 
406
413
  interface ProjectHeaderProps {
407
414
  previewState?: ProjectHeaderPropsPreviewState;
408
415
  }
409
416
  declare type ProjectHeaderPropsPreviewState = "Default";
410
- declare function export_default$q(props: ProjectHeaderProps): React.JSX.Element;
417
+ declare function export_default$s(props: ProjectHeaderProps): React.JSX.Element;
411
418
 
412
419
  interface ProjectSupportProps {
413
420
  previewState?: ProjectSupportPropsPreviewState;
414
421
  }
415
422
  declare type ProjectSupportPropsPreviewState = "Default";
416
- declare function export_default$p(props: ProjectSupportProps): React.JSX.Element | null;
423
+ declare function export_default$r(props: ProjectSupportProps): React.JSX.Element | null;
417
424
 
418
425
  interface ProviderSearchProps {
419
426
  previewState?: ProviderSearchPreviewState;
420
427
  providerCategories?: string[];
421
428
  }
422
429
  declare type ProviderSearchPreviewState = "Default";
423
- declare function export_default$o(props: ProviderSearchProps): React.JSX.Element;
430
+ declare function export_default$q(props: ProviderSearchProps): React.JSX.Element;
431
+
432
+ interface RelativeActivityTodayProps {
433
+ dataTypes: RelativeActivityDataType[];
434
+ previewState?: "Default";
435
+ title?: string;
436
+ }
437
+ interface RelativeActivityDataType {
438
+ dailyDataType: string;
439
+ label: string;
440
+ icon: React.ReactElement;
441
+ color: string;
442
+ formatter: (number: number) => string;
443
+ }
444
+ declare function export_default$p(props: RelativeActivityTodayProps): React.JSX.Element | null;
445
+
446
+ declare type RestingHeartRateCalendarPreviewState = "WithData" | "NoData" | "Loading";
447
+ interface RestingHeartRateCalendarProps {
448
+ month: number;
449
+ year: number;
450
+ showPreviewData: RestingHeartRateCalendarPreviewState;
451
+ }
452
+ declare function export_default$o(props: RestingHeartRateCalendarProps): React.JSX.Element;
424
453
 
425
454
  interface SurveyTaskListProps {
426
455
  status: SurveyTaskStatus;
@@ -674,4 +703,4 @@ declare enum DailyDataType {
674
703
  RestingHeartRate = "RestingHeartRate"
675
704
  }
676
705
 
677
- export { export_default$15 as Action, export_default$14 as ActivityMeter, export_default$I as AppDownload, export_default$m as BlankView, export_default$13 as Button, export_default$12 as Calendar, export_default$11 as Card, export_default$10 as CardTitle, export_default$2 as CelebrationStep, export_default$1 as CelebrationStepContainer, export_default$H as ConnectEhr, export_default$l as ConnectEhrView, export_default$G as ConnectFitbit, export_default$F as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataProvider, DailyDataQueryResult, DailyDataType, export_default$$ 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$Z 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$Y as Histogram, export_default$g as HomeView, export_default$u as LabResultsSummary, export_default$X as Layout, LayoutContext, LoadingIndicator, export_default$t as MostRecentNotification, export_default$W 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$V as Section, export_default$U as SegmentedControl, export_default$T as ShinyOverlay, export_default$S as SingleExternalAccount, export_default$R as SingleNotification, export_default$Q as SingleSurveyTask, export_default$P 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$O as Switch, export_default$N as TextBlock, export_default$M as TrackerItem, export_default$L as UnstyledButton, export_default$K as ViewHeader, export_default$J as WeekCalendar, export_default$4 as YouTubeStep, export_default$3 as YouTubeStepContainer, checkDailyDataAvailability, queryDailyData, registerDailyDataProvider, export_default as useInterval };
706
+ export { export_default$17 as Action, export_default$16 as ActivityMeter, export_default$K as AppDownload, export_default$m as BlankView, export_default$15 as Button, export_default$14 as Calendar, export_default$13 as Card, export_default$12 as CardTitle, export_default$2 as CelebrationStep, export_default$1 as CelebrationStepContainer, export_default$J as ConnectEhr, export_default$l as ConnectEhrView, export_default$I as ConnectFitbit, export_default$H as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataProvider, DailyDataQueryResult, DailyDataType, DateRangeNavigatorContext as DateRangeCoordinator, export_default$11 as DateRangeNavigator, export_default$10 as DayTrackerSymbol, DeviceDataChartLine, export_default$G as DeviceDataMonthChart, export_default$F as DeviceDataMonthCharts, export_default$k as DeviceDataView, export_default$E as ExternalAccountList, export_default$D as ExternalAccountsLoadingIndicator, export_default$C as ExternalAccountsPreview, export_default$j as ExternalAccountsView, export_default$$ as Face, export_default$B as FitbitDevices, export_default$A as FitbitMonthCharts, export_default$i as FitbitView, export_default$z as GarminDevices, export_default$y as GarminMonthCharts, export_default$h as GarminView, export_default$f as HealthAndWellnessView, export_default$x as HealthPreviewSection, export_default$_ as Histogram, export_default$g as HomeView, export_default$w as LabResultsSummary, export_default$Z as Layout, LayoutContext, LoadingIndicator, export_default$v as MostRecentNotification, export_default$Y as NavigationBar, export_default$u as NotificationList, export_default$e as NotificationsView, export_default$t as PlatformSpecificContent, export_default$s as ProjectHeader, export_default$r as ProjectSupport, export_default$q as ProviderSearch, export_default$p as RelativeActivityToday, export_default$o as RestingHeartRateCalendar, export_default$X as Section, export_default$W as SegmentedControl, export_default$V as ShinyOverlay, export_default$U as SingleExternalAccount, export_default$T as SingleNotification, export_default$S as SingleSurveyTask, export_default$R 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$Q as Switch, export_default$P as TextBlock, export_default$O as TrackerItem, export_default$N as UnstyledButton, export_default$M as ViewHeader, export_default$L as WeekCalendar, export_default$4 as YouTubeStep, export_default$3 as YouTubeStepContainer, checkDailyDataAvailability, queryDailyData, registerDailyDataProvider, export_default as useInterval };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.2.1-VB2.3",
3
+ "version": "2.2.1-VB3.0",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",