@careevolution/mydatahelps-ui 2.9.1-AsthmaUI.42 → 2.9.1-AsthmaUI.44

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.
Files changed (38) hide show
  1. package/dist/cjs/index.js +9 -9
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.d.ts +8 -0
  4. package/dist/cjs/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.stories.d.ts +19 -0
  5. package/dist/cjs/types/components/asthma/components/AsthmaAlertTakeoverNotice/index.d.ts +1 -0
  6. package/dist/cjs/types/components/asthma/components/index.d.ts +1 -0
  7. package/dist/cjs/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.d.ts +1 -0
  8. package/dist/cjs/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.stories.d.ts +12 -3
  9. package/dist/cjs/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.d.ts +1 -0
  10. package/dist/cjs/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.stories.d.ts +12 -3
  11. package/dist/cjs/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.d.ts +6 -0
  12. package/dist/cjs/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.stories.d.ts +13 -0
  13. package/dist/cjs/types/components/asthma/views/AsthmaAlertTakeoverView/index.d.ts +1 -0
  14. package/dist/cjs/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.d.ts +1 -0
  15. package/dist/cjs/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.stories.d.ts +12 -3
  16. package/dist/cjs/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.d.ts +1 -0
  17. package/dist/cjs/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.stories.d.ts +12 -3
  18. package/dist/cjs/types/components/asthma/views/index.d.ts +1 -0
  19. package/dist/esm/index.js +5 -5
  20. package/dist/esm/index.js.map +1 -1
  21. package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.d.ts +8 -0
  22. package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.stories.d.ts +19 -0
  23. package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/index.d.ts +1 -0
  24. package/dist/esm/types/components/asthma/components/index.d.ts +1 -0
  25. package/dist/esm/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.d.ts +1 -0
  26. package/dist/esm/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.stories.d.ts +12 -3
  27. package/dist/esm/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.d.ts +1 -0
  28. package/dist/esm/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.stories.d.ts +12 -3
  29. package/dist/esm/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.d.ts +6 -0
  30. package/dist/esm/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.stories.d.ts +13 -0
  31. package/dist/esm/types/components/asthma/views/AsthmaAlertTakeoverView/index.d.ts +1 -0
  32. package/dist/esm/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.d.ts +1 -0
  33. package/dist/esm/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.stories.d.ts +12 -3
  34. package/dist/esm/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.d.ts +1 -0
  35. package/dist/esm/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.stories.d.ts +12 -3
  36. package/dist/esm/types/components/asthma/views/index.d.ts +1 -0
  37. package/dist/index.d.ts +31 -14
  38. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import './AsthmaAlertTakeoverNotice.css';
3
+ export interface AsthmaAlertTakeoverNoticeProps {
4
+ previewState?: 'default';
5
+ message: string;
6
+ innerRef?: React.Ref<HTMLDivElement>;
7
+ }
8
+ export default function (props: AsthmaAlertTakeoverNoticeProps): React.JSX.Element;
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ import AsthmaAlertTakeoverNotice from './AsthmaAlertTakeoverNotice';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof AsthmaAlertTakeoverNotice;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ };
10
+ export default _default;
11
+ interface AsthmaAlertTakeoverNoticeStoryProps {
12
+ message: string;
13
+ }
14
+ export declare const Default: {
15
+ args: {
16
+ message: string;
17
+ };
18
+ render: (args: AsthmaAlertTakeoverNoticeStoryProps) => React.JSX.Element;
19
+ };
@@ -0,0 +1 @@
1
+ export { default } from './AsthmaAlertTakeoverNotice';
@@ -1,4 +1,5 @@
1
1
  export { default as AsthmaAirQualities, AsthmaAirQualitiesPreviewState } from './AsthmaAirQualities';
2
+ export { default as AsthmaAlertTakeoverNotice } from './AsthmaAlertTakeoverNotice';
2
3
  export { default as AsthmaAlertTakeoverTrigger } from './AsthmaAlertTakeoverTrigger';
3
4
  export { default as AsthmaBiometrics, AsthmaBiometricsPreviewState } from './AsthmaBiometrics';
4
5
  export { default as AsthmaControlCalendar, AsthmaControlCalendarVariant } from './AsthmaControlCalendar';
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  export interface AsthmaActivityViewProps {
3
3
  previewState?: 'default';
4
4
  colorScheme?: 'light' | 'dark' | 'auto';
5
+ alert?: string;
5
6
  }
6
7
  export default function (props: AsthmaActivityViewProps): React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import AsthmaActivityView, { AsthmaActivityViewProps } from './AsthmaActivityView';
2
+ import AsthmaActivityView from './AsthmaActivityView';
3
3
  declare const _default: {
4
4
  title: string;
5
5
  component: typeof AsthmaActivityView;
@@ -8,9 +8,18 @@ declare const _default: {
8
8
  };
9
9
  };
10
10
  export default _default;
11
+ interface AsthmaActivityViewStoryProps {
12
+ alert?: string;
13
+ }
11
14
  export declare const Default: {
12
15
  args: {
13
- previewState: string;
16
+ alert: string;
14
17
  };
15
- render: (args: AsthmaActivityViewProps) => React.JSX.Element;
18
+ argTypes: {
19
+ alert: {
20
+ control: string;
21
+ options: string[];
22
+ };
23
+ };
24
+ render: (args: AsthmaActivityViewStoryProps) => React.JSX.Element;
16
25
  };
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  export interface AsthmaAirQualityViewProps {
3
3
  previewState?: 'default';
4
4
  colorScheme?: 'light' | 'dark' | 'auto';
5
+ alert?: string;
5
6
  }
6
7
  export default function (props: AsthmaAirQualityViewProps): React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import AsthmaAirQualityView, { AsthmaAirQualityViewProps } from './AsthmaAirQualityView';
2
+ import AsthmaAirQualityView from './AsthmaAirQualityView';
3
3
  declare const _default: {
4
4
  title: string;
5
5
  component: typeof AsthmaAirQualityView;
@@ -8,9 +8,18 @@ declare const _default: {
8
8
  };
9
9
  };
10
10
  export default _default;
11
+ interface AsthmaAirQualityViewStoryProps {
12
+ alert?: string;
13
+ }
11
14
  export declare const Default: {
12
15
  args: {
13
- previewState: string;
16
+ alert: string;
14
17
  };
15
- render: (args: AsthmaAirQualityViewProps) => React.JSX.Element;
18
+ argTypes: {
19
+ alert: {
20
+ control: string;
21
+ options: string[];
22
+ };
23
+ };
24
+ render: (args: AsthmaAirQualityViewStoryProps) => React.JSX.Element;
16
25
  };
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface AsthmaActivityViewProps {
3
+ previewState?: 'default';
4
+ colorScheme?: 'light' | 'dark' | 'auto';
5
+ }
6
+ export default function (props: AsthmaActivityViewProps): React.JSX.Element;
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import AsthmaAlertTakeoverView from './AsthmaAlertTakeoverView';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof AsthmaAlertTakeoverView;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ };
10
+ export default _default;
11
+ export declare const Default: {
12
+ render: () => React.JSX.Element;
13
+ };
@@ -0,0 +1 @@
1
+ export { default } from './AsthmaAlertTakeoverView';
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  export interface AsthmaHeartAndLungsViewProps {
3
3
  previewState?: 'default';
4
4
  colorScheme?: 'light' | 'dark' | 'auto';
5
+ alert?: string;
5
6
  }
6
7
  export default function (props: AsthmaHeartAndLungsViewProps): React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import AsthmaHeartAndLungsView, { AsthmaHeartAndLungsViewProps } from './AsthmaHeartAndLungsView';
2
+ import AsthmaHeartAndLungsView from './AsthmaHeartAndLungsView';
3
3
  declare const _default: {
4
4
  title: string;
5
5
  component: typeof AsthmaHeartAndLungsView;
@@ -8,9 +8,18 @@ declare const _default: {
8
8
  };
9
9
  };
10
10
  export default _default;
11
+ interface AsthmaAirQualityViewStoryProps {
12
+ alert?: string;
13
+ }
11
14
  export declare const Default: {
12
15
  args: {
13
- previewState: string;
16
+ alert: string;
14
17
  };
15
- render: (args: AsthmaHeartAndLungsViewProps) => React.JSX.Element;
18
+ argTypes: {
19
+ alert: {
20
+ control: string;
21
+ options: string[];
22
+ };
23
+ };
24
+ render: (args: AsthmaAirQualityViewStoryProps) => React.JSX.Element;
16
25
  };
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  export interface AsthmaSleepViewProps {
3
3
  previewState?: 'default';
4
4
  colorScheme?: 'light' | 'dark' | 'auto';
5
+ alert?: string;
5
6
  }
6
7
  export default function (props: AsthmaSleepViewProps): React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import AsthmaSleepView, { AsthmaSleepViewProps } from './AsthmaSleepView';
2
+ import AsthmaSleepView from './AsthmaSleepView';
3
3
  declare const _default: {
4
4
  title: string;
5
5
  component: typeof AsthmaSleepView;
@@ -8,9 +8,18 @@ declare const _default: {
8
8
  };
9
9
  };
10
10
  export default _default;
11
+ interface AsthmaSleepViewStoryProps {
12
+ alert?: string;
13
+ }
11
14
  export declare const Default: {
12
15
  args: {
13
- previewState: string;
16
+ alert: string;
14
17
  };
15
- render: (args: AsthmaSleepViewProps) => React.JSX.Element;
18
+ argTypes: {
19
+ alert: {
20
+ control: string;
21
+ options: string[];
22
+ };
23
+ };
24
+ render: (args: AsthmaSleepViewStoryProps) => React.JSX.Element;
16
25
  };
@@ -1,5 +1,6 @@
1
1
  export { default as AsthmaActivityView } from './AsthmaActivityView';
2
2
  export { default as AsthmaAirQualityView } from './AsthmaAirQualityView';
3
+ export { default as AsthmaAlertTakeoverView } from './AsthmaAlertTakeoverView';
3
4
  export { default as AsthmaDayView, AsthmaDayViewPreviewState } from './AsthmaDayView';
4
5
  export { default as AsthmaHeartAndLungsView } from './AsthmaHeartAndLungsView';
5
6
  export { default as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState } from './AsthmaLogEntryEditorView';
package/dist/index.d.ts CHANGED
@@ -59,7 +59,14 @@ interface AsthmaAirQualitiesProps {
59
59
  airQualityUrl: string;
60
60
  innerRef?: React.Ref<HTMLDivElement>;
61
61
  }
62
- declare function export_default$1U(props: AsthmaAirQualitiesProps): React.JSX.Element;
62
+ declare function export_default$1W(props: AsthmaAirQualitiesProps): React.JSX.Element;
63
+
64
+ interface AsthmaAlertTakeoverNoticeProps {
65
+ previewState?: 'default';
66
+ message: string;
67
+ innerRef?: React.Ref<HTMLDivElement>;
68
+ }
69
+ declare function export_default$1V(props: AsthmaAlertTakeoverNoticeProps): React.JSX.Element;
63
70
 
64
71
  interface AsthmaAlertTakeoverTriggerProps {
65
72
  previewState?: boolean;
@@ -70,7 +77,7 @@ interface AsthmaAlertTakeoverTriggerProps {
70
77
  alertTakeoverUrl: string;
71
78
  innerRef?: React.Ref<HTMLDivElement>;
72
79
  }
73
- declare function export_default$1T(props: AsthmaAlertTakeoverTriggerProps): null;
80
+ declare function export_default$1U(props: AsthmaAlertTakeoverTriggerProps): null;
74
81
 
75
82
  type AsthmaBiometricsPreviewState = 'no-data' | 'some-data' | 'all-data';
76
83
 
@@ -81,7 +88,7 @@ interface AsthmaBiometricsProps {
81
88
  sleepUrl: string;
82
89
  innerRef?: React.Ref<HTMLDivElement>;
83
90
  }
84
- declare function export_default$1S(props: AsthmaBiometricsProps): React.JSX.Element;
91
+ declare function export_default$1T(props: AsthmaBiometricsProps): React.JSX.Element;
85
92
 
86
93
  type AsthmaControlCalendarPreviewState = 'no-logs' | 'some-logs';
87
94
 
@@ -93,7 +100,7 @@ interface AsthmaControlCalendarProps {
93
100
  variant?: AsthmaControlCalendarVariant;
94
101
  innerRef?: React.Ref<HTMLDivElement>;
95
102
  }
96
- declare function export_default$1R(props: AsthmaControlCalendarProps): React.JSX.Element;
103
+ declare function export_default$1S(props: AsthmaControlCalendarProps): React.JSX.Element;
97
104
 
98
105
  type AsthmaControlStatusHeaderPreviewState = 'no-data' | 'abnormal-dhr' | 'abnormal-nhr' | 'abnormal-rr' | 'abnormal-activity' | 'abnormal-sleep' | 'abnormal-home-aqi' | 'abnormal-work-aqi' | 'abnormal-multiple' | 'not-determined' | 'not-controlled' | 'controlled';
99
106
 
@@ -102,7 +109,7 @@ interface AsthmaControlStatusHeaderProps {
102
109
  participant: AsthmaParticipant;
103
110
  innerRef?: React.Ref<HTMLDivElement>;
104
111
  }
105
- declare function export_default$1Q(props: AsthmaControlStatusHeaderProps): React.JSX.Element | null;
112
+ declare function export_default$1R(props: AsthmaControlStatusHeaderProps): React.JSX.Element | null;
106
113
 
107
114
  interface AsthmaDataSummaryProps {
108
115
  label: string;
@@ -113,12 +120,12 @@ interface AsthmaDataSummaryProps {
113
120
  onClick?: () => void;
114
121
  innerRef?: React.Ref<HTMLDivElement>;
115
122
  }
116
- declare function export_default$1P(props: AsthmaDataSummaryProps): React.JSX.Element;
123
+ declare function export_default$1Q(props: AsthmaDataSummaryProps): React.JSX.Element;
117
124
 
118
125
  interface AsthmaFactsProps {
119
126
  innerRef?: React.Ref<HTMLDivElement>;
120
127
  }
121
- declare function export_default$1O(props: AsthmaFactsProps): React.JSX.Element;
128
+ declare function export_default$1P(props: AsthmaFactsProps): React.JSX.Element;
122
129
 
123
130
  type AsthmaLogEntryDetailsPreviewState = 'not-logged' | 'logged-no-symptoms' | 'logged-mild-symptoms' | 'logged-moderate-symptoms' | 'logged-severe-symptoms';
124
131
 
@@ -130,7 +137,7 @@ interface AsthmaLogEntryDetailsProps {
130
137
  editLogEntryUrl: string;
131
138
  innerRef?: React.Ref<HTMLDivElement>;
132
139
  }
133
- declare function export_default$1N(props: AsthmaLogEntryDetailsProps): React.JSX.Element;
140
+ declare function export_default$1O(props: AsthmaLogEntryDetailsProps): React.JSX.Element;
134
141
 
135
142
  type AsthmaLogEntryHeaderPreviewState = 'no-logs' | 'today-log-only' | 'yesterday-log-only' | 'both-logs';
136
143
 
@@ -141,7 +148,7 @@ interface AsthmaLogEntryHeaderProps {
141
148
  dayViewUrl: string;
142
149
  innerRef?: React.Ref<HTMLDivElement>;
143
150
  }
144
- declare function export_default$1M(props: AsthmaLogEntryHeaderProps): React.JSX.Element | null;
151
+ declare function export_default$1N(props: AsthmaLogEntryHeaderProps): React.JSX.Element | null;
145
152
 
146
153
  interface AsthmaLogEntrySummaryProps {
147
154
  label: string;
@@ -150,7 +157,7 @@ interface AsthmaLogEntrySummaryProps {
150
157
  loading?: boolean;
151
158
  innerRef?: React.Ref<HTMLDivElement>;
152
159
  }
153
- declare function export_default$1L(props: AsthmaLogEntrySummaryProps): React.JSX.Element;
160
+ declare function export_default$1M(props: AsthmaLogEntrySummaryProps): React.JSX.Element;
154
161
 
155
162
  interface AsthmaDataService {
156
163
  loadParticipant(): Promise<AsthmaParticipant>;
@@ -168,17 +175,25 @@ declare const getAsthmaDataStatusText: (status: AsthmaDataStatus) => string;
168
175
  declare const getAsthmaSymptomLevelValue: (symptomLevel: AsthmaSymptomLevel) => string;
169
176
  declare const getAsthmaSymptomLevel: (symptomLevelValue: string | undefined) => AsthmaSymptomLevel;
170
177
 
171
- interface AsthmaActivityViewProps {
178
+ interface AsthmaActivityViewProps$1 {
172
179
  previewState?: 'default';
173
180
  colorScheme?: 'light' | 'dark' | 'auto';
181
+ alert?: string;
174
182
  }
175
- declare function export_default$1K(props: AsthmaActivityViewProps): React.JSX.Element;
183
+ declare function export_default$1L(props: AsthmaActivityViewProps$1): React.JSX.Element;
176
184
 
177
185
  interface AsthmaAirQualityViewProps {
178
186
  previewState?: 'default';
179
187
  colorScheme?: 'light' | 'dark' | 'auto';
188
+ alert?: string;
189
+ }
190
+ declare function export_default$1K(props: AsthmaAirQualityViewProps): React.JSX.Element;
191
+
192
+ interface AsthmaActivityViewProps {
193
+ previewState?: 'default';
194
+ colorScheme?: 'light' | 'dark' | 'auto';
180
195
  }
181
- declare function export_default$1J(props: AsthmaAirQualityViewProps): React.JSX.Element;
196
+ declare function export_default$1J(props: AsthmaActivityViewProps): React.JSX.Element;
182
197
 
183
198
  interface AsthmaDayViewPreviewState {
184
199
  logEntryDetailsPreviewState: AsthmaLogEntryDetailsPreviewState;
@@ -202,6 +217,7 @@ declare function export_default$1I(props: AsthmaDayViewProps): React.JSX.Element
202
217
  interface AsthmaHeartAndLungsViewProps {
203
218
  previewState?: 'default';
204
219
  colorScheme?: 'light' | 'dark' | 'auto';
220
+ alert?: string;
205
221
  }
206
222
  declare function export_default$1H(props: AsthmaHeartAndLungsViewProps): React.JSX.Element;
207
223
 
@@ -217,6 +233,7 @@ declare function export_default$1G(props: AsthmaLogEntryEditorViewProps): React.
217
233
  interface AsthmaSleepViewProps {
218
234
  previewState?: 'default';
219
235
  colorScheme?: 'light' | 'dark' | 'auto';
236
+ alert?: string;
220
237
  }
221
238
  declare function export_default$1F(props: AsthmaSleepViewProps): React.JSX.Element;
222
239
 
@@ -1451,4 +1468,4 @@ declare function getDayKey(date: Date): string;
1451
1468
 
1452
1469
  declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
1453
1470
 
1454
- export { export_default$1a as Action, export_default$19 as ActivityMeter, export_default$1E as AllergiesList, export_default$e as AllergiesView, export_default$1D as AppDownload, AreaChartOptions, export_default$1K as AsthmaActivityView, export_default$1U as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityType, export_default$1J as AsthmaAirQualityView, export_default$1T as AsthmaAlertTakeoverTrigger, AsthmaBiometric, AsthmaBiometricType, export_default$1S as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$1R as AsthmaControlCalendar, AsthmaControlCalendarVariant, AsthmaControlMetrics, AsthmaControlState, AsthmaControlStatus, export_default$1Q as AsthmaControlStatusHeader, AsthmaDataStatus, export_default$1P as AsthmaDataSummary, export_default$1I as AsthmaDayView, AsthmaDayViewPreviewState, export_default$1O as AsthmaFacts, export_default$1H as AsthmaHeartAndLungsView, AsthmaLogEntry, export_default$1N as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1G as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$1M as AsthmaLogEntryHeader, export_default$1L as AsthmaLogEntrySummary, AsthmaParticipant, export_default$1F as AsthmaSleepView, AsthmaSymptomLevel, BarChartOptions, export_default$d as BlankView, export_default$1d as Button, export_default$18 as Calendar, export_default$17 as CalendarDay, CalendarDayStateConfiguration, export_default$16 as Card, export_default$15 as CardTitle, export_default$I as CelebrationStep, export_default$H as CelebrationStepContainer, ColorDefinition, export_default$1C as ConditionsList, export_default$c as ConditionsView, export_default$G as ConnectDeviceAccountStep, export_default$F as ConnectDeviceAccountStepContainer, export_default$1B as ConnectDevicesMenu, export_default$1A as ConnectEhr, export_default$E as ConnectEhrStep, export_default$D as ConnectEhrStepContainer, export_default$b as ConnectEhrView, export_default$1z as ConnectFitbit, export_default$1y as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$14 as DateRangeNavigator, export_default$13 as DayTrackerSymbol, DeviceDataChartLine, export_default$1x as DeviceDataMonthChart, export_default$1w as DeviceDataMonthCharts, export_default$a as DeviceDataView, export_default$1v as ExternalAccountList, export_default$1u as ExternalAccountsLoadingIndicator, export_default$1t as ExternalAccountsPreview, export_default$9 as ExternalAccountsView, export_default$12 as Face, export_default$1s as FitbitDevices, export_default$1r as FitbitMonthCharts, export_default$8 as FitbitView, export_default$1q as GarminDevices, export_default$1p as GarminMonthCharts, export_default$7 as GarminView, export_default$5 as HealthAndWellnessView, export_default$1o as HealthPreviewSection, export_default$11 as Histogram, export_default$6 as HomeView, export_default$1n as LabResultsSummary, export_default$10 as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$1m as MedicationsList, export_default$4 as MedicationsView, export_default$1l as MostRecentNotification, export_default$$ as NavigationBar, NewPointsEntry, export_default$1 as NewPointsView, NewPointsViewProps, export_default$_ as NotesInput, export_default$1k as NotificationList, export_default$3 as NotificationsView, export_default$1j as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$Z as ProgressRing, export_default$1i as ProjectHeader, export_default$1h as ProjectSupport, export_default$1g as ProviderSearch, export_default$1f as RelativeActivityToday, export_default$1e as RestingHeartRateCalendar, export_default$Y as RotatingText, RotatingTextEntry, 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$C as StepDetailText, export_default$A as StepImage, export_default$B as StepImageIcon, export_default$z as StepLayout, export_default$y as StepMarkdown, export_default$x as StepNextButton, export_default$w as StepText, export_default$v as StepTitle, export_default$1c as SurveyTaskList, export_default$2 as SurveyTasksView, export_default$Q as Switch, SymptomConfiguration, SymptomReference, export_default$s as SymptomSharkCalendar, export_default$h as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$q as SymptomSharkLogEntry, export_default$j as SymptomSharkLogEntryEdit, export_default$g as SymptomSharkLogEntryEditView, export_default$l as SymptomSharkLogEntryList, export_default$k as SymptomSharkLogToday, export_default$r as SymptomSharkOverallExperienceChart, export_default$f as SymptomSharkSymptomDetailView, export_default$n as SymptomSharkSymptomSeverityChart, export_default$o as SymptomSharkSymptomSeveritySummary, export_default$m as SymptomSharkSymptomTreatmentFilters, export_default$p as SymptomSharkSymptomTreatmentHistograms, export_default$i as SymptomSharkVisualizationCoordinator, export_default$P as TextBlock, export_default$O as Title, export_default$N as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$M as UnstyledButton, export_default$L as ValueSelector, export_default$1b as ViewEhr, export_default$K as ViewHeader, export_default$J as WeekCalendar, WeekStartsOn, export_default$u as YouTubeStep, export_default$t as YouTubeStepContainer, service as asthmaDataService, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaDataStatusText, getAsthmaSymptomLevel, getAsthmaSymptomLevelValue, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
1471
+ export { export_default$1a as Action, export_default$19 as ActivityMeter, export_default$1E as AllergiesList, export_default$e as AllergiesView, export_default$1D as AppDownload, AreaChartOptions, export_default$1L as AsthmaActivityView, export_default$1W as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityType, export_default$1K as AsthmaAirQualityView, export_default$1V as AsthmaAlertTakeoverNotice, export_default$1U as AsthmaAlertTakeoverTrigger, export_default$1J as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$1T as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$1S as AsthmaControlCalendar, AsthmaControlCalendarVariant, AsthmaControlMetrics, AsthmaControlState, AsthmaControlStatus, export_default$1R as AsthmaControlStatusHeader, AsthmaDataStatus, export_default$1Q as AsthmaDataSummary, export_default$1I as AsthmaDayView, AsthmaDayViewPreviewState, export_default$1P as AsthmaFacts, export_default$1H as AsthmaHeartAndLungsView, AsthmaLogEntry, export_default$1O as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1G as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$1N as AsthmaLogEntryHeader, export_default$1M as AsthmaLogEntrySummary, AsthmaParticipant, export_default$1F as AsthmaSleepView, AsthmaSymptomLevel, BarChartOptions, export_default$d as BlankView, export_default$1d as Button, export_default$18 as Calendar, export_default$17 as CalendarDay, CalendarDayStateConfiguration, export_default$16 as Card, export_default$15 as CardTitle, export_default$I as CelebrationStep, export_default$H as CelebrationStepContainer, ColorDefinition, export_default$1C as ConditionsList, export_default$c as ConditionsView, export_default$G as ConnectDeviceAccountStep, export_default$F as ConnectDeviceAccountStepContainer, export_default$1B as ConnectDevicesMenu, export_default$1A as ConnectEhr, export_default$E as ConnectEhrStep, export_default$D as ConnectEhrStepContainer, export_default$b as ConnectEhrView, export_default$1z as ConnectFitbit, export_default$1y as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$14 as DateRangeNavigator, export_default$13 as DayTrackerSymbol, DeviceDataChartLine, export_default$1x as DeviceDataMonthChart, export_default$1w as DeviceDataMonthCharts, export_default$a as DeviceDataView, export_default$1v as ExternalAccountList, export_default$1u as ExternalAccountsLoadingIndicator, export_default$1t as ExternalAccountsPreview, export_default$9 as ExternalAccountsView, export_default$12 as Face, export_default$1s as FitbitDevices, export_default$1r as FitbitMonthCharts, export_default$8 as FitbitView, export_default$1q as GarminDevices, export_default$1p as GarminMonthCharts, export_default$7 as GarminView, export_default$5 as HealthAndWellnessView, export_default$1o as HealthPreviewSection, export_default$11 as Histogram, export_default$6 as HomeView, export_default$1n as LabResultsSummary, export_default$10 as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$1m as MedicationsList, export_default$4 as MedicationsView, export_default$1l as MostRecentNotification, export_default$$ as NavigationBar, NewPointsEntry, export_default$1 as NewPointsView, NewPointsViewProps, export_default$_ as NotesInput, export_default$1k as NotificationList, export_default$3 as NotificationsView, export_default$1j as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$Z as ProgressRing, export_default$1i as ProjectHeader, export_default$1h as ProjectSupport, export_default$1g as ProviderSearch, export_default$1f as RelativeActivityToday, export_default$1e as RestingHeartRateCalendar, export_default$Y as RotatingText, RotatingTextEntry, 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$C as StepDetailText, export_default$A as StepImage, export_default$B as StepImageIcon, export_default$z as StepLayout, export_default$y as StepMarkdown, export_default$x as StepNextButton, export_default$w as StepText, export_default$v as StepTitle, export_default$1c as SurveyTaskList, export_default$2 as SurveyTasksView, export_default$Q as Switch, SymptomConfiguration, SymptomReference, export_default$s as SymptomSharkCalendar, export_default$h as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$q as SymptomSharkLogEntry, export_default$j as SymptomSharkLogEntryEdit, export_default$g as SymptomSharkLogEntryEditView, export_default$l as SymptomSharkLogEntryList, export_default$k as SymptomSharkLogToday, export_default$r as SymptomSharkOverallExperienceChart, export_default$f as SymptomSharkSymptomDetailView, export_default$n as SymptomSharkSymptomSeverityChart, export_default$o as SymptomSharkSymptomSeveritySummary, export_default$m as SymptomSharkSymptomTreatmentFilters, export_default$p as SymptomSharkSymptomTreatmentHistograms, export_default$i as SymptomSharkVisualizationCoordinator, export_default$P as TextBlock, export_default$O as Title, export_default$N as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$M as UnstyledButton, export_default$L as ValueSelector, export_default$1b as ViewEhr, export_default$K as ViewHeader, export_default$J as WeekCalendar, WeekStartsOn, export_default$u as YouTubeStep, export_default$t as YouTubeStepContainer, service as asthmaDataService, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaDataStatusText, getAsthmaSymptomLevel, getAsthmaSymptomLevelValue, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.9.1-AsthmaUI.42",
3
+ "version": "2.9.1-AsthmaUI.44",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",