@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.
- 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 +8 -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 +1 -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 +1 -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 +6 -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 +1 -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 +1 -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 +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/asthma/components/AsthmaAlertTakeoverNotice/AsthmaAlertTakeoverNotice.d.ts +8 -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 +1 -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 +1 -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 +6 -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 +1 -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 +1 -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 +31 -14
- 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';
|
package/dist/cjs/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
|
};
|
|
@@ -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';
|
|
@@ -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';
|