@careevolution/mydatahelps-ui 2.10.1-InboxAndAsthmaUI.1 → 2.10.1-InboxAndAsthmaUI.2
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 +21 -21
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.d.ts +10 -0
- package/dist/cjs/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.stories.d.ts +23 -0
- package/dist/cjs/types/components/asthma/components/AsthmaActionPlan/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/components/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.d.ts +9 -0
- package/dist/cjs/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.stories.d.ts +23 -0
- package/dist/cjs/types/components/asthma/views/AsthmaActionPlanView/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/views/index.d.ts +1 -0
- package/dist/esm/index.js +21 -21
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.d.ts +10 -0
- package/dist/esm/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.stories.d.ts +23 -0
- package/dist/esm/types/components/asthma/components/AsthmaActionPlan/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/components/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.d.ts +9 -0
- package/dist/esm/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.stories.d.ts +23 -0
- package/dist/esm/types/components/asthma/views/AsthmaActionPlanView/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/views/index.d.ts +1 -0
- package/dist/index.d.ts +31 -13
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './AsthmaActionPlan.css';
|
|
3
|
+
export interface AsthmaActionPlanProps {
|
|
4
|
+
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
5
|
+
learnMoreUrl: string;
|
|
6
|
+
editActionPlanSurveyName: string;
|
|
7
|
+
createActionPlanUrl: (id: string) => string;
|
|
8
|
+
innerRef?: React.Ref<HTMLDivElement>;
|
|
9
|
+
}
|
|
10
|
+
export default function (props: AsthmaActionPlanProps): React.JSX.Element;
|
package/dist/cjs/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.stories.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import AsthmaActionPlan, { AsthmaActionPlanProps } from './AsthmaActionPlan';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof AsthmaActionPlan;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
11
|
+
export declare const Default: {
|
|
12
|
+
args: {
|
|
13
|
+
previewState: string;
|
|
14
|
+
};
|
|
15
|
+
argTypes: {
|
|
16
|
+
previewState: {
|
|
17
|
+
name: string;
|
|
18
|
+
control: string;
|
|
19
|
+
options: string[];
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
render: (args: AsthmaActionPlanProps) => React.JSX.Element;
|
|
23
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AsthmaActionPlan';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as AsthmaActionPlan } from './AsthmaActionPlan';
|
|
1
2
|
export { default as AsthmaAirQualities, AsthmaAirQualitiesPreviewState } from './AsthmaAirQualities';
|
|
2
3
|
export { default as AsthmaAlertTakeoverNotice } from './AsthmaAlertTakeoverNotice';
|
|
3
4
|
export { default as AsthmaAlertTakeoverTrigger } from './AsthmaAlertTakeoverTrigger';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface AsthmaActionPlanViewProps {
|
|
3
|
+
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
4
|
+
colorScheme?: 'light' | 'dark' | 'auto';
|
|
5
|
+
learnMoreUrl: string;
|
|
6
|
+
editActionPlanSurveyName: string;
|
|
7
|
+
createActionPlanUrl: (id: string) => string;
|
|
8
|
+
}
|
|
9
|
+
export default function (props: AsthmaActionPlanViewProps): React.JSX.Element;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import AsthmaActionPlanView, { AsthmaActionPlanViewProps } from './AsthmaActionPlanView';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof AsthmaActionPlanView;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
11
|
+
export declare const Default: {
|
|
12
|
+
args: {
|
|
13
|
+
previewState: string;
|
|
14
|
+
};
|
|
15
|
+
argTypes: {
|
|
16
|
+
previewState: {
|
|
17
|
+
name: string;
|
|
18
|
+
control: string;
|
|
19
|
+
options: string[];
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
render: (args: AsthmaActionPlanViewProps) => React.JSX.Element;
|
|
23
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AsthmaActionPlanView';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as AsthmaActionPlanView } from './AsthmaActionPlanView';
|
|
1
2
|
export { default as AsthmaActivityView } from './AsthmaActivityView';
|
|
2
3
|
export { default as AsthmaAirQualityView } from './AsthmaAirQualityView';
|
|
3
4
|
export { default as AsthmaAlertTakeoverView } from './AsthmaAlertTakeoverView';
|