@careevolution/mydatahelps-ui 1.5.7 → 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.
Files changed (22) hide show
  1. package/dist/cjs/index.js +3 -3
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/container/ExternalAccountList/ExternalAccountList.stories.d.ts +6 -0
  4. package/dist/cjs/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.d.ts +2 -0
  5. package/dist/cjs/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.stories.d.ts +7 -1
  6. package/dist/cjs/types/components/presentational/Face/Face.stories.d.ts +1 -0
  7. package/dist/cjs/types/components/view/ConnectEhrView/ConnectEhrView.d.ts +2 -0
  8. package/dist/cjs/types/components/view/ConnectEhrView/ConnectEhrView.stories.d.ts +3 -1
  9. package/dist/cjs/types/components/view/ExternalAccountsView/ExternalAccountsView.d.ts +2 -0
  10. package/dist/cjs/types/components/view/ExternalAccountsView/ExternalAccountsView.stories.d.ts +7 -1
  11. package/dist/esm/index.js +3 -3
  12. package/dist/esm/index.js.map +1 -1
  13. package/dist/esm/types/components/container/ExternalAccountList/ExternalAccountList.stories.d.ts +6 -0
  14. package/dist/esm/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.d.ts +2 -0
  15. package/dist/esm/types/components/container/ExternalAccountsPreview/ExternalAccountsPreview.stories.d.ts +7 -1
  16. package/dist/esm/types/components/presentational/Face/Face.stories.d.ts +1 -0
  17. package/dist/esm/types/components/view/ConnectEhrView/ConnectEhrView.d.ts +2 -0
  18. package/dist/esm/types/components/view/ConnectEhrView/ConnectEhrView.stories.d.ts +3 -1
  19. package/dist/esm/types/components/view/ExternalAccountsView/ExternalAccountsView.d.ts +2 -0
  20. package/dist/esm/types/components/view/ExternalAccountsView/ExternalAccountsView.stories.d.ts +7 -1
  21. package/dist/index.d.ts +6 -0
  22. package/package.json +1 -1
@@ -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>;
@@ -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 { ComponentStory, ComponentMeta } from "@storybook/react";
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>;
@@ -3,3 +3,4 @@ import Face from "./Face";
3
3
  declare const _default: ComponentMeta<typeof Face>;
4
4
  export default _default;
5
5
  export declare const Default: ComponentStory<typeof Face>;
6
+ export declare const Clickable: ComponentStory<typeof Face>;
@@ -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 Preview: ComponentStory<typeof ConnectEhrView>;
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>;
@@ -1,5 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  export interface ExternalAccountsViewProps {
3
+ excludeProviders?: boolean;
4
+ excludeHealthPlans?: boolean;
3
5
  excludeDeviceManufacturers?: boolean;
4
6
  presentation?: ViewPresentationType;
5
7
  preview?: boolean;
@@ -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 Preview: ComponentStory<typeof ExternalAccountsView>;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "1.5.7",
3
+ "version": "1.7.0",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",