@careevolution/mydatahelps-ui 2.10.1-InboxAndAsthmaUI.15 → 2.10.1-InboxAndAsthmaUI.16
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/components/AsthmaAirQualities/AsthmaAirQualities.stories.d.ts +11 -2
- package/dist/cjs/types/components/asthma/views/AsthmaDayView/AsthmaDayView.d.ts +0 -1
- 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/components/AsthmaAirQualities/AsthmaAirQualities.stories.d.ts +11 -2
- package/dist/esm/types/components/asthma/views/AsthmaDayView/AsthmaDayView.d.ts +0 -1
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/cjs/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
|
-
editZipCodesSurveyName
|
|
6
|
+
editZipCodesSurveyName?: string;
|
|
7
7
|
airQualityUrl: string;
|
|
8
8
|
date?: Date;
|
|
9
9
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import AsthmaAirQualities
|
|
2
|
+
import AsthmaAirQualities from './AsthmaAirQualities';
|
|
3
|
+
import { AsthmaAirQualitiesPreviewState } from './AsthmaAirQualities.previewData';
|
|
3
4
|
declare const _default: {
|
|
4
5
|
title: string;
|
|
5
6
|
component: typeof AsthmaAirQualities;
|
|
@@ -8,9 +9,14 @@ declare const _default: {
|
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
export default _default;
|
|
12
|
+
interface AsthmaAirQualitiesStoryArgs {
|
|
13
|
+
previewState: AsthmaAirQualitiesPreviewState;
|
|
14
|
+
canEditSettings: boolean;
|
|
15
|
+
}
|
|
11
16
|
export declare const Default: {
|
|
12
17
|
args: {
|
|
13
18
|
previewState: string;
|
|
19
|
+
canEditSettings: boolean;
|
|
14
20
|
};
|
|
15
21
|
argTypes: {
|
|
16
22
|
previewState: {
|
|
@@ -18,6 +24,9 @@ export declare const Default: {
|
|
|
18
24
|
control: string;
|
|
19
25
|
options: string[];
|
|
20
26
|
};
|
|
27
|
+
canEditSettings: {
|
|
28
|
+
name: string;
|
|
29
|
+
};
|
|
21
30
|
};
|
|
22
|
-
render: (args:
|
|
31
|
+
render: (args: AsthmaAirQualitiesStoryArgs) => React.JSX.Element;
|
|
23
32
|
};
|