@careevolution/mydatahelps-ui 2.9.1-AsthmaUI.43 → 2.9.1-AsthmaUI.45
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/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.d.ts +9 -0
- package/dist/cjs/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.stories.d.ts +19 -0
- package/dist/cjs/types/components/asthma/components/AsthmaAlertTakeoverNotice/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/components/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.d.ts +2 -0
- package/dist/cjs/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.stories.d.ts +12 -3
- package/dist/cjs/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.d.ts +2 -0
- package/dist/cjs/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.stories.d.ts +12 -3
- package/dist/cjs/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.d.ts +7 -0
- package/dist/cjs/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.stories.d.ts +13 -0
- package/dist/cjs/types/components/asthma/views/AsthmaAlertTakeoverView/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.d.ts +2 -0
- package/dist/cjs/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.stories.d.ts +12 -3
- package/dist/cjs/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.d.ts +2 -0
- package/dist/cjs/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.stories.d.ts +12 -3
- package/dist/cjs/types/components/asthma/views/index.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.d.ts +9 -0
- package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.stories.d.ts +19 -0
- package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/components/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.d.ts +2 -0
- package/dist/esm/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.stories.d.ts +12 -3
- package/dist/esm/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.d.ts +2 -0
- package/dist/esm/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.stories.d.ts +12 -3
- package/dist/esm/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.d.ts +7 -0
- package/dist/esm/types/components/asthma/views/AsthmaAlertTakeoverView/AsthmaAlertTakeoverView.stories.d.ts +13 -0
- package/dist/esm/types/components/asthma/views/AsthmaAlertTakeoverView/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.d.ts +2 -0
- package/dist/esm/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.stories.d.ts +12 -3
- package/dist/esm/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.d.ts +2 -0
- package/dist/esm/types/components/asthma/views/AsthmaSleepView/AsthmaSleepView.stories.d.ts +12 -3
- package/dist/esm/types/components/asthma/views/index.d.ts +1 -0
- package/dist/index.d.ts +37 -14
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './AsthmaAlertTakeoverNotice.css';
|
|
3
|
+
export interface AsthmaAlertTakeoverNoticeProps {
|
|
4
|
+
previewState?: 'default';
|
|
5
|
+
message: string;
|
|
6
|
+
logEntrySurveyName: string;
|
|
7
|
+
innerRef?: React.Ref<HTMLDivElement>;
|
|
8
|
+
}
|
|
9
|
+
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,7 @@ import React from 'react';
|
|
|
2
2
|
export interface AsthmaActivityViewProps {
|
|
3
3
|
previewState?: 'default';
|
|
4
4
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
5
|
+
alert?: string;
|
|
6
|
+
logEntrySurveyName: string;
|
|
5
7
|
}
|
|
6
8
|
export default function (props: AsthmaActivityViewProps): React.JSX.Element;
|
package/dist/esm/types/components/asthma/views/AsthmaActivityView/AsthmaActivityView.stories.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import 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
|
-
|
|
16
|
+
alert: string;
|
|
14
17
|
};
|
|
15
|
-
|
|
18
|
+
argTypes: {
|
|
19
|
+
alert: {
|
|
20
|
+
control: string;
|
|
21
|
+
options: string[];
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
render: (args: AsthmaActivityViewStoryProps) => React.JSX.Element;
|
|
16
25
|
};
|
package/dist/esm/types/components/asthma/views/AsthmaAirQualityView/AsthmaAirQualityView.d.ts
CHANGED
|
@@ -2,5 +2,7 @@ import React from 'react';
|
|
|
2
2
|
export interface AsthmaAirQualityViewProps {
|
|
3
3
|
previewState?: 'default';
|
|
4
4
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
5
|
+
alert?: string;
|
|
6
|
+
logEntrySurveyName: string;
|
|
5
7
|
}
|
|
6
8
|
export default function (props: AsthmaAirQualityViewProps): React.JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import 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
|
-
|
|
16
|
+
alert: string;
|
|
14
17
|
};
|
|
15
|
-
|
|
18
|
+
argTypes: {
|
|
19
|
+
alert: {
|
|
20
|
+
control: string;
|
|
21
|
+
options: string[];
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
render: (args: AsthmaAirQualityViewStoryProps) => React.JSX.Element;
|
|
16
25
|
};
|
|
@@ -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';
|
package/dist/esm/types/components/asthma/views/AsthmaHeartAndLungsView/AsthmaHeartAndLungsView.d.ts
CHANGED
|
@@ -2,5 +2,7 @@ import React from 'react';
|
|
|
2
2
|
export interface AsthmaHeartAndLungsViewProps {
|
|
3
3
|
previewState?: 'default';
|
|
4
4
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
5
|
+
alert?: string;
|
|
6
|
+
logEntrySurveyName: string;
|
|
5
7
|
}
|
|
6
8
|
export default function (props: AsthmaHeartAndLungsViewProps): React.JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import 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
|
-
|
|
16
|
+
alert: string;
|
|
14
17
|
};
|
|
15
|
-
|
|
18
|
+
argTypes: {
|
|
19
|
+
alert: {
|
|
20
|
+
control: string;
|
|
21
|
+
options: string[];
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
render: (args: AsthmaAirQualityViewStoryProps) => React.JSX.Element;
|
|
16
25
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import 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
|
-
|
|
16
|
+
alert: string;
|
|
14
17
|
};
|
|
15
|
-
|
|
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,15 @@ interface AsthmaAirQualitiesProps {
|
|
|
59
59
|
airQualityUrl: string;
|
|
60
60
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
61
61
|
}
|
|
62
|
-
declare function export_default$
|
|
62
|
+
declare function export_default$1W(props: AsthmaAirQualitiesProps): React.JSX.Element;
|
|
63
|
+
|
|
64
|
+
interface AsthmaAlertTakeoverNoticeProps {
|
|
65
|
+
previewState?: 'default';
|
|
66
|
+
message: string;
|
|
67
|
+
logEntrySurveyName: string;
|
|
68
|
+
innerRef?: React.Ref<HTMLDivElement>;
|
|
69
|
+
}
|
|
70
|
+
declare function export_default$1V(props: AsthmaAlertTakeoverNoticeProps): React.JSX.Element;
|
|
63
71
|
|
|
64
72
|
interface AsthmaAlertTakeoverTriggerProps {
|
|
65
73
|
previewState?: boolean;
|
|
@@ -70,7 +78,7 @@ interface AsthmaAlertTakeoverTriggerProps {
|
|
|
70
78
|
alertTakeoverUrl: string;
|
|
71
79
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
72
80
|
}
|
|
73
|
-
declare function export_default$
|
|
81
|
+
declare function export_default$1U(props: AsthmaAlertTakeoverTriggerProps): null;
|
|
74
82
|
|
|
75
83
|
type AsthmaBiometricsPreviewState = 'no-data' | 'some-data' | 'all-data';
|
|
76
84
|
|
|
@@ -81,7 +89,7 @@ interface AsthmaBiometricsProps {
|
|
|
81
89
|
sleepUrl: string;
|
|
82
90
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
83
91
|
}
|
|
84
|
-
declare function export_default$
|
|
92
|
+
declare function export_default$1T(props: AsthmaBiometricsProps): React.JSX.Element;
|
|
85
93
|
|
|
86
94
|
type AsthmaControlCalendarPreviewState = 'no-logs' | 'some-logs';
|
|
87
95
|
|
|
@@ -93,7 +101,7 @@ interface AsthmaControlCalendarProps {
|
|
|
93
101
|
variant?: AsthmaControlCalendarVariant;
|
|
94
102
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
95
103
|
}
|
|
96
|
-
declare function export_default$
|
|
104
|
+
declare function export_default$1S(props: AsthmaControlCalendarProps): React.JSX.Element;
|
|
97
105
|
|
|
98
106
|
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
107
|
|
|
@@ -102,7 +110,7 @@ interface AsthmaControlStatusHeaderProps {
|
|
|
102
110
|
participant: AsthmaParticipant;
|
|
103
111
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
104
112
|
}
|
|
105
|
-
declare function export_default$
|
|
113
|
+
declare function export_default$1R(props: AsthmaControlStatusHeaderProps): React.JSX.Element | null;
|
|
106
114
|
|
|
107
115
|
interface AsthmaDataSummaryProps {
|
|
108
116
|
label: string;
|
|
@@ -113,12 +121,12 @@ interface AsthmaDataSummaryProps {
|
|
|
113
121
|
onClick?: () => void;
|
|
114
122
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
115
123
|
}
|
|
116
|
-
declare function export_default$
|
|
124
|
+
declare function export_default$1Q(props: AsthmaDataSummaryProps): React.JSX.Element;
|
|
117
125
|
|
|
118
126
|
interface AsthmaFactsProps {
|
|
119
127
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
120
128
|
}
|
|
121
|
-
declare function export_default$
|
|
129
|
+
declare function export_default$1P(props: AsthmaFactsProps): React.JSX.Element;
|
|
122
130
|
|
|
123
131
|
type AsthmaLogEntryDetailsPreviewState = 'not-logged' | 'logged-no-symptoms' | 'logged-mild-symptoms' | 'logged-moderate-symptoms' | 'logged-severe-symptoms';
|
|
124
132
|
|
|
@@ -130,7 +138,7 @@ interface AsthmaLogEntryDetailsProps {
|
|
|
130
138
|
editLogEntryUrl: string;
|
|
131
139
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
132
140
|
}
|
|
133
|
-
declare function export_default$
|
|
141
|
+
declare function export_default$1O(props: AsthmaLogEntryDetailsProps): React.JSX.Element;
|
|
134
142
|
|
|
135
143
|
type AsthmaLogEntryHeaderPreviewState = 'no-logs' | 'today-log-only' | 'yesterday-log-only' | 'both-logs';
|
|
136
144
|
|
|
@@ -141,7 +149,7 @@ interface AsthmaLogEntryHeaderProps {
|
|
|
141
149
|
dayViewUrl: string;
|
|
142
150
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
143
151
|
}
|
|
144
|
-
declare function export_default$
|
|
152
|
+
declare function export_default$1N(props: AsthmaLogEntryHeaderProps): React.JSX.Element | null;
|
|
145
153
|
|
|
146
154
|
interface AsthmaLogEntrySummaryProps {
|
|
147
155
|
label: string;
|
|
@@ -150,7 +158,7 @@ interface AsthmaLogEntrySummaryProps {
|
|
|
150
158
|
loading?: boolean;
|
|
151
159
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
152
160
|
}
|
|
153
|
-
declare function export_default$
|
|
161
|
+
declare function export_default$1M(props: AsthmaLogEntrySummaryProps): React.JSX.Element;
|
|
154
162
|
|
|
155
163
|
interface AsthmaDataService {
|
|
156
164
|
loadParticipant(): Promise<AsthmaParticipant>;
|
|
@@ -168,17 +176,28 @@ declare const getAsthmaDataStatusText: (status: AsthmaDataStatus) => string;
|
|
|
168
176
|
declare const getAsthmaSymptomLevelValue: (symptomLevel: AsthmaSymptomLevel) => string;
|
|
169
177
|
declare const getAsthmaSymptomLevel: (symptomLevelValue: string | undefined) => AsthmaSymptomLevel;
|
|
170
178
|
|
|
171
|
-
interface AsthmaActivityViewProps {
|
|
179
|
+
interface AsthmaActivityViewProps$1 {
|
|
172
180
|
previewState?: 'default';
|
|
173
181
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
182
|
+
alert?: string;
|
|
183
|
+
logEntrySurveyName: string;
|
|
174
184
|
}
|
|
175
|
-
declare function export_default$
|
|
185
|
+
declare function export_default$1L(props: AsthmaActivityViewProps$1): React.JSX.Element;
|
|
176
186
|
|
|
177
187
|
interface AsthmaAirQualityViewProps {
|
|
178
188
|
previewState?: 'default';
|
|
179
189
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
190
|
+
alert?: string;
|
|
191
|
+
logEntrySurveyName: string;
|
|
192
|
+
}
|
|
193
|
+
declare function export_default$1K(props: AsthmaAirQualityViewProps): React.JSX.Element;
|
|
194
|
+
|
|
195
|
+
interface AsthmaActivityViewProps {
|
|
196
|
+
previewState?: 'default';
|
|
197
|
+
colorScheme?: 'light' | 'dark' | 'auto';
|
|
198
|
+
logEntrySurveyName: string;
|
|
180
199
|
}
|
|
181
|
-
declare function export_default$1J(props:
|
|
200
|
+
declare function export_default$1J(props: AsthmaActivityViewProps): React.JSX.Element;
|
|
182
201
|
|
|
183
202
|
interface AsthmaDayViewPreviewState {
|
|
184
203
|
logEntryDetailsPreviewState: AsthmaLogEntryDetailsPreviewState;
|
|
@@ -202,6 +221,8 @@ declare function export_default$1I(props: AsthmaDayViewProps): React.JSX.Element
|
|
|
202
221
|
interface AsthmaHeartAndLungsViewProps {
|
|
203
222
|
previewState?: 'default';
|
|
204
223
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
224
|
+
alert?: string;
|
|
225
|
+
logEntrySurveyName: string;
|
|
205
226
|
}
|
|
206
227
|
declare function export_default$1H(props: AsthmaHeartAndLungsViewProps): React.JSX.Element;
|
|
207
228
|
|
|
@@ -217,6 +238,8 @@ declare function export_default$1G(props: AsthmaLogEntryEditorViewProps): React.
|
|
|
217
238
|
interface AsthmaSleepViewProps {
|
|
218
239
|
previewState?: 'default';
|
|
219
240
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
241
|
+
alert?: string;
|
|
242
|
+
logEntrySurveyName: string;
|
|
220
243
|
}
|
|
221
244
|
declare function export_default$1F(props: AsthmaSleepViewProps): React.JSX.Element;
|
|
222
245
|
|
|
@@ -1451,4 +1474,4 @@ declare function getDayKey(date: Date): string;
|
|
|
1451
1474
|
|
|
1452
1475
|
declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
|
|
1453
1476
|
|
|
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$
|
|
1477
|
+
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 };
|