@careevolution/mydatahelps-ui 1.6.0 → 1.7.0
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/container/ExternalAccountList/ExternalAccountList.stories.d.ts +6 -0
- package/dist/cjs/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.d.ts +2 -0
- package/dist/cjs/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.stories.d.ts +7 -1
- package/dist/cjs/types/components/view/ConnectEhrView/ConnectEhrView.d.ts +2 -0
- package/dist/cjs/types/components/view/ConnectEhrView/ConnectEhrView.stories.d.ts +3 -1
- package/dist/cjs/types/components/view/ExternalAccountsView/ExternalAccountsView.d.ts +2 -0
- package/dist/cjs/types/components/view/ExternalAccountsView/ExternalAccountsView.stories.d.ts +7 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/ExternalAccountList/ExternalAccountList.stories.d.ts +6 -0
- package/dist/esm/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.d.ts +2 -0
- package/dist/esm/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.stories.d.ts +7 -1
- package/dist/esm/types/components/view/ConnectEhrView/ConnectEhrView.d.ts +2 -0
- package/dist/esm/types/components/view/ConnectEhrView/ConnectEhrView.stories.d.ts +3 -1
- package/dist/esm/types/components/view/ExternalAccountsView/ExternalAccountsView.d.ts +2 -0
- package/dist/esm/types/components/view/ExternalAccountsView/ExternalAccountsView.stories.d.ts +7 -1
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/esm/types/components/container/ExternalAccountList/ExternalAccountList.stories.d.ts
CHANGED
|
@@ -3,3 +3,9 @@ import ExternalAccountList from "./ExternalAccountList";
|
|
|
3
3
|
declare const _default: ComponentMeta<typeof ExternalAccountList>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Default: ComponentStory<typeof ExternalAccountList>;
|
|
6
|
+
export declare const ProvidersOnly: ComponentStory<typeof ExternalAccountList>;
|
|
7
|
+
export declare const HealthPlansOnly: ComponentStory<typeof ExternalAccountList>;
|
|
8
|
+
export declare const DeviceManufacturersOnly: ComponentStory<typeof ExternalAccountList>;
|
|
9
|
+
export declare const ProvidersAndHealthPlans: ComponentStory<typeof ExternalAccountList>;
|
|
10
|
+
export declare const ProvidersAndDeviceManufacturers: ComponentStory<typeof ExternalAccountList>;
|
|
11
|
+
export declare const HealthPlansAndDeviceManufacturers: ComponentStory<typeof ExternalAccountList>;
|
package/dist/esm/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import "./ExternalAccountsPreview.css";
|
|
3
3
|
export interface ExternalAccountsPreviewProps {
|
|
4
|
+
excludeProviders?: boolean;
|
|
5
|
+
excludeHealthPlans?: boolean;
|
|
4
6
|
excludeDeviceManufacturers?: boolean;
|
|
5
7
|
applicationUrl: ExternalAccountsApplicationUrl;
|
|
6
8
|
previewState?: ExternalAccountsPreviewPreviewState;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ComponentMeta, ComponentStory } from "@storybook/react";
|
|
2
2
|
import ExternalAccountsPreview from "./ExternalAccountsPreview";
|
|
3
3
|
declare const _default: ComponentMeta<typeof ExternalAccountsPreview>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Default: ComponentStory<typeof ExternalAccountsPreview>;
|
|
6
|
+
export declare const ProvidersOnly: ComponentStory<typeof ExternalAccountsPreview>;
|
|
7
|
+
export declare const HealthPlansOnly: ComponentStory<typeof ExternalAccountsPreview>;
|
|
8
|
+
export declare const DeviceManufacturersOnly: ComponentStory<typeof ExternalAccountsPreview>;
|
|
9
|
+
export declare const ProvidersAndHealthPlans: ComponentStory<typeof ExternalAccountsPreview>;
|
|
10
|
+
export declare const ProvidersAndDeviceManufacturers: ComponentStory<typeof ExternalAccountsPreview>;
|
|
11
|
+
export declare const HealthPlansAndDeviceManufacturers: ComponentStory<typeof ExternalAccountsPreview>;
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
import { ExternalAccountsApplicationUrl } from "../../container/ExternalAccountsPreview/ExternalAccountsPreview";
|
|
3
3
|
export interface ConnectEhrViewProps {
|
|
4
4
|
externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
|
|
5
|
+
excludeProviders?: boolean;
|
|
6
|
+
excludeHealthPlans?: boolean;
|
|
5
7
|
presentation?: ViewPresentationType;
|
|
6
8
|
preview?: boolean;
|
|
7
9
|
}
|
|
@@ -2,5 +2,7 @@ import { ComponentMeta, ComponentStory } from "@storybook/react";
|
|
|
2
2
|
import ConnectEhrView from "./ConnectEhrView";
|
|
3
3
|
declare const _default: ComponentMeta<typeof ConnectEhrView>;
|
|
4
4
|
export default _default;
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const Default: ComponentStory<typeof ConnectEhrView>;
|
|
6
|
+
export declare const ProvidersOnly: ComponentStory<typeof ConnectEhrView>;
|
|
7
|
+
export declare const HealthPlansOnly: ComponentStory<typeof ConnectEhrView>;
|
|
6
8
|
export declare const Live: ComponentStory<typeof ConnectEhrView>;
|
package/dist/esm/types/components/view/ExternalAccountsView/ExternalAccountsView.stories.d.ts
CHANGED
|
@@ -2,5 +2,11 @@ import { ComponentMeta, ComponentStory } from "@storybook/react";
|
|
|
2
2
|
import ExternalAccountsView from "./ExternalAccountsView";
|
|
3
3
|
declare const _default: ComponentMeta<typeof ExternalAccountsView>;
|
|
4
4
|
export default _default;
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const Default: ComponentStory<typeof ExternalAccountsView>;
|
|
6
|
+
export declare const ProvidersOnly: ComponentStory<typeof ExternalAccountsView>;
|
|
7
|
+
export declare const HealthPlansOnly: ComponentStory<typeof ExternalAccountsView>;
|
|
8
|
+
export declare const DeviceManufacturersOnly: ComponentStory<typeof ExternalAccountsView>;
|
|
9
|
+
export declare const ProvidersAndHealthPlans: ComponentStory<typeof ExternalAccountsView>;
|
|
10
|
+
export declare const ProvidersAndDeviceManufacturers: ComponentStory<typeof ExternalAccountsView>;
|
|
11
|
+
export declare const HealthPlansAndDeviceManufacturers: ComponentStory<typeof ExternalAccountsView>;
|
|
6
12
|
export declare const Live: ComponentStory<typeof ExternalAccountsView>;
|
package/dist/index.d.ts
CHANGED
|
@@ -243,6 +243,8 @@ declare type NotificationListPreviewState$1 = "Default";
|
|
|
243
243
|
declare function export_default$i(props: ExternalAccountListProps): JSX.Element;
|
|
244
244
|
|
|
245
245
|
interface ExternalAccountsPreviewProps {
|
|
246
|
+
excludeProviders?: boolean;
|
|
247
|
+
excludeHealthPlans?: boolean;
|
|
246
248
|
excludeDeviceManufacturers?: boolean;
|
|
247
249
|
applicationUrl: ExternalAccountsApplicationUrl;
|
|
248
250
|
previewState?: ExternalAccountsPreviewPreviewState;
|
|
@@ -317,6 +319,8 @@ declare function export_default$8(props: SurveyTaskListProps): JSX.Element | nul
|
|
|
317
319
|
|
|
318
320
|
interface ConnectEhrViewProps {
|
|
319
321
|
externalAccountsApplicationUrl: ExternalAccountsApplicationUrl;
|
|
322
|
+
excludeProviders?: boolean;
|
|
323
|
+
excludeHealthPlans?: boolean;
|
|
320
324
|
presentation?: ViewPresentationType$3;
|
|
321
325
|
preview?: boolean;
|
|
322
326
|
}
|
|
@@ -329,6 +333,8 @@ interface DeviceDataViewProps {
|
|
|
329
333
|
declare function export_default$6(props: DeviceDataViewProps): JSX.Element;
|
|
330
334
|
|
|
331
335
|
interface ExternalAccountsViewProps {
|
|
336
|
+
excludeProviders?: boolean;
|
|
337
|
+
excludeHealthPlans?: boolean;
|
|
332
338
|
excludeDeviceManufacturers?: boolean;
|
|
333
339
|
presentation?: ViewPresentationType$2;
|
|
334
340
|
preview?: boolean;
|