@careevolution/mydatahelps-ui 2.9.1-AsthmaUI.37 → 2.9.1-AsthmaUI.39
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/asthma/components/AsthmaAirQualities/AsthmaAirQualities.d.ts +1 -1
- package/dist/cjs/types/components/asthma/views/AsthmaDayView/AsthmaDayView.d.ts +4 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/asthma/components/AsthmaAirQualities/AsthmaAirQualities.d.ts +1 -1
- package/dist/esm/types/components/asthma/views/AsthmaDayView/AsthmaDayView.d.ts +4 -0
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/esm/types/components/asthma/components/AsthmaAirQualities/AsthmaAirQualities.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import './AsthmaAirQualities.css';
|
|
|
3
3
|
import { AsthmaAirQualitiesPreviewState } from './AsthmaAirQualities.previewData';
|
|
4
4
|
export interface AsthmaAirQualitiesProps {
|
|
5
5
|
previewState?: AsthmaAirQualitiesPreviewState;
|
|
6
|
-
|
|
6
|
+
airQualityUrl: string;
|
|
7
7
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
8
8
|
}
|
|
9
9
|
export default function (props: AsthmaAirQualitiesProps): React.JSX.Element;
|
|
@@ -12,5 +12,9 @@ export interface AsthmaDayViewProps {
|
|
|
12
12
|
logTodayEntrySurveyName: string;
|
|
13
13
|
logYesterdayEntrySurveyName: string;
|
|
14
14
|
editLogEntryUrl: string;
|
|
15
|
+
heartAndLungsUrl: string;
|
|
16
|
+
activityUrl: string;
|
|
17
|
+
sleepUrl: string;
|
|
18
|
+
airQualityUrl: string;
|
|
15
19
|
}
|
|
16
20
|
export default function (props: AsthmaDayViewProps): React.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ type AsthmaAirQualitiesPreviewState = 'no-data' | 'some-data' | 'all-data';
|
|
|
56
56
|
|
|
57
57
|
interface AsthmaAirQualitiesProps {
|
|
58
58
|
previewState?: AsthmaAirQualitiesPreviewState;
|
|
59
|
-
|
|
59
|
+
airQualityUrl: string;
|
|
60
60
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
61
61
|
}
|
|
62
62
|
declare function export_default$1T(props: AsthmaAirQualitiesProps): React.JSX.Element;
|
|
@@ -187,6 +187,10 @@ interface AsthmaDayViewProps {
|
|
|
187
187
|
logTodayEntrySurveyName: string;
|
|
188
188
|
logYesterdayEntrySurveyName: string;
|
|
189
189
|
editLogEntryUrl: string;
|
|
190
|
+
heartAndLungsUrl: string;
|
|
191
|
+
activityUrl: string;
|
|
192
|
+
sleepUrl: string;
|
|
193
|
+
airQualityUrl: string;
|
|
190
194
|
}
|
|
191
195
|
declare function export_default$1I(props: AsthmaDayViewProps): React.JSX.Element;
|
|
192
196
|
|