@careevolution/mydatahelps-ui 2.10.1-InboxAndAsthmaUI.21 → 2.10.1-InboxAndAsthmaUI.23
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/asthma/components/AsthmaActionPlanManager/AsthmaActionPlanManager.d.ts +11 -0
- package/dist/cjs/types/components/asthma/components/{AsthmaActionPlan/AsthmaActionPlan.stories.d.ts → AsthmaActionPlanManager/AsthmaActionPlanManager.stories.d.ts} +3 -3
- package/dist/cjs/types/components/asthma/components/AsthmaActionPlanManager/index.d.ts +1 -0
- package/dist/cjs/types/components/asthma/components/index.d.ts +1 -1
- package/dist/cjs/types/components/asthma/model/types.d.ts +4 -0
- package/dist/cjs/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.d.ts +2 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/asthma/components/AsthmaActionPlanManager/AsthmaActionPlanManager.d.ts +11 -0
- package/dist/esm/types/components/asthma/components/{AsthmaActionPlan/AsthmaActionPlan.stories.d.ts → AsthmaActionPlanManager/AsthmaActionPlanManager.stories.d.ts} +3 -3
- package/dist/esm/types/components/asthma/components/AsthmaActionPlanManager/index.d.ts +1 -0
- package/dist/esm/types/components/asthma/components/index.d.ts +1 -1
- package/dist/esm/types/components/asthma/model/types.d.ts +4 -0
- package/dist/esm/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.d.ts +2 -0
- package/dist/index.d.ts +15 -9
- package/package.json +1 -1
- package/dist/cjs/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.d.ts +0 -9
- package/dist/cjs/types/components/asthma/components/AsthmaActionPlan/index.d.ts +0 -1
- package/dist/esm/types/components/asthma/components/AsthmaActionPlan/AsthmaActionPlan.d.ts +0 -9
- package/dist/esm/types/components/asthma/components/AsthmaActionPlan/index.d.ts +0 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './AsthmaActionPlanManager.css';
|
|
3
|
+
import { AsthmaActionPlan } from '../../model';
|
|
4
|
+
export interface AsthmaActionPlanManagerProps {
|
|
5
|
+
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
6
|
+
learnMoreUrl: string;
|
|
7
|
+
onViewActionPlan: (actionPlan: AsthmaActionPlan) => void;
|
|
8
|
+
editActionPlanSurveyName: string;
|
|
9
|
+
innerRef?: React.Ref<HTMLDivElement>;
|
|
10
|
+
}
|
|
11
|
+
export default function (props: AsthmaActionPlanManagerProps): React.JSX.Element;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
2
|
+
import AsthmaActionPlanManager, { AsthmaActionPlanManagerProps } from './AsthmaActionPlanManager';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: typeof
|
|
5
|
+
component: typeof AsthmaActionPlanManager;
|
|
6
6
|
parameters: {
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
|
@@ -19,5 +19,5 @@ export declare const Default: {
|
|
|
19
19
|
options: string[];
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
render: (args:
|
|
22
|
+
render: (args: AsthmaActionPlanManagerProps) => React.JSX.Element;
|
|
23
23
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AsthmaActionPlanManager';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as AsthmaActionPlanManager } from './AsthmaActionPlanManager';
|
|
2
2
|
export { default as AsthmaAirQualities, AsthmaAirQualitiesPreviewState } from './AsthmaAirQualities';
|
|
3
3
|
export { default as AsthmaAlertTakeoverNotice } from './AsthmaAlertTakeoverNotice';
|
|
4
4
|
export { default as AsthmaAlertTakeoverTrigger } from './AsthmaAlertTakeoverTrigger';
|
package/dist/esm/types/components/asthma/views/AsthmaActionPlanView/AsthmaActionPlanView.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AsthmaActionPlan } from '../../model';
|
|
2
3
|
export interface AsthmaActionPlanViewProps {
|
|
3
4
|
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
4
5
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
5
6
|
learnMoreUrl: string;
|
|
7
|
+
onViewActionPlan: (actionPlan: AsthmaActionPlan) => void;
|
|
6
8
|
editActionPlanSurveyName: string;
|
|
7
9
|
}
|
|
8
10
|
export default function (props: AsthmaActionPlanViewProps): React.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,14 +4,6 @@ import { AxisDomain } from 'recharts/types/util/types';
|
|
|
4
4
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
5
5
|
import { IconDefinition as IconDefinition$1 } from '@fortawesome/fontawesome-common-types';
|
|
6
6
|
|
|
7
|
-
interface AsthmaActionPlanProps {
|
|
8
|
-
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
9
|
-
learnMoreUrl: string;
|
|
10
|
-
editActionPlanSurveyName: string;
|
|
11
|
-
innerRef?: React.Ref<HTMLDivElement>;
|
|
12
|
-
}
|
|
13
|
-
declare function export_default$2b(props: AsthmaActionPlanProps): React.JSX.Element;
|
|
14
|
-
|
|
15
7
|
declare class AsthmaParticipant {
|
|
16
8
|
participantInfo: ParticipantInfo;
|
|
17
9
|
constructor(participantInfo: ParticipantInfo);
|
|
@@ -63,6 +55,19 @@ interface AsthmaLogEntry {
|
|
|
63
55
|
impacts: string[];
|
|
64
56
|
triggers: string[];
|
|
65
57
|
}
|
|
58
|
+
interface AsthmaActionPlan {
|
|
59
|
+
id: string;
|
|
60
|
+
url: string;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
interface AsthmaActionPlanManagerProps {
|
|
64
|
+
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
65
|
+
learnMoreUrl: string;
|
|
66
|
+
onViewActionPlan: (actionPlan: AsthmaActionPlan) => void;
|
|
67
|
+
editActionPlanSurveyName: string;
|
|
68
|
+
innerRef?: React.Ref<HTMLDivElement>;
|
|
69
|
+
}
|
|
70
|
+
declare function export_default$2b(props: AsthmaActionPlanManagerProps): React.JSX.Element;
|
|
66
71
|
|
|
67
72
|
type AsthmaAirQualitiesPreviewState = 'neither configured' | 'one configured' | 'no data (control)' | 'no data (date)' | 'some data (control)' | 'some data (date)' | 'all data';
|
|
68
73
|
|
|
@@ -206,6 +211,7 @@ interface AsthmaActionPlanViewProps {
|
|
|
206
211
|
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
207
212
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
208
213
|
learnMoreUrl: string;
|
|
214
|
+
onViewActionPlan: (actionPlan: AsthmaActionPlan) => void;
|
|
209
215
|
editActionPlanSurveyName: string;
|
|
210
216
|
}
|
|
211
217
|
declare function export_default$1_(props: AsthmaActionPlanViewProps): React.JSX.Element;
|
|
@@ -1668,4 +1674,4 @@ declare function getDayKey(date: Date): string;
|
|
|
1668
1674
|
|
|
1669
1675
|
declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
|
|
1670
1676
|
|
|
1671
|
-
export { export_default$1l as Action, export_default$1k as ActivityMeter, export_default$1S as AllergiesList, export_default$h as AllergiesView, export_default$1R as AppDownload, AreaChartOptions, export_default$2b as
|
|
1677
|
+
export { export_default$1l as Action, export_default$1k as ActivityMeter, export_default$1S as AllergiesList, export_default$h as AllergiesView, export_default$1R as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2b as AsthmaActionPlanManager, export_default$1_ as AsthmaActionPlanView, export_default$1Z as AsthmaActivityView, export_default$2a as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityType, export_default$1Y as AsthmaAirQualityView, export_default$29 as AsthmaAlertTakeoverNotice, export_default$28 as AsthmaAlertTakeoverTrigger, export_default$1X as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$27 as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$26 as AsthmaControlCalendar, AsthmaControlCalendarVariant, AsthmaControlMetrics, AsthmaControlState, AsthmaControlStatus, export_default$25 as AsthmaControlStatusHeader, AsthmaDataStatus, export_default$24 as AsthmaDataSummary, export_default$1W as AsthmaDayView, AsthmaDayViewPreviewState, export_default$23 as AsthmaFacts, export_default$1V as AsthmaHeartAndLungsView, AsthmaLogEntry, export_default$22 as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1U as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$21 as AsthmaLogEntryHeader, export_default$20 as AsthmaLogEntrySummary, AsthmaParticipant, export_default$1$ as AsthmaPostEnrollmentSurveyTrigger, export_default$1T as AsthmaSleepView, AsthmaSymptomLevel, BarChartOptions, export_default$g as BlankView, BloodPressureDataPoint, export_default$1P as BloodPressureVisualization, export_default$1p as Button, export_default$1j as Calendar, export_default$1i as CalendarDay, CalendarDayStateConfiguration, export_default$1h as Card, export_default$1g as CardTitle, export_default$L as CelebrationStep, export_default$K as CelebrationStepContainer, ColorDefinition, export_default$1O as ConditionsList, export_default$f as ConditionsView, export_default$J as ConnectDeviceAccountStep, export_default$I as ConnectDeviceAccountStepContainer, export_default$1N as ConnectDevicesMenu, export_default$1M as ConnectEhr, export_default$H as ConnectEhrStep, export_default$G as ConnectEhrStepContainer, export_default$e as ConnectEhrView, export_default$1L as ConnectFitbit, export_default$1K as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$1f as DateRangeNavigator, export_default$1e as DayTrackerSymbol, DeviceDataChartLine, export_default$1J as DeviceDataMonthChart, export_default$1I as DeviceDataMonthCharts, export_default$d as DeviceDataView, export_default$1d as DumbbellChart, export_default$1H as ExternalAccountList, export_default$1G as ExternalAccountsLoadingIndicator, export_default$1F as ExternalAccountsPreview, export_default$c as ExternalAccountsView, export_default$1c as Face, export_default$1E as FitbitDevices, export_default$1D as FitbitMonthCharts, export_default$b as FitbitView, export_default$1C as GarminDevices, export_default$1B as GarminMonthCharts, export_default$a as GarminView, export_default$8 as HealthAndWellnessView, export_default$1A as HealthPreviewSection, export_default$1b as Histogram, export_default$9 as HomeView, export_default$S as InboxCompletedListItem, export_default$2 as InboxHistoryView, export_default$N as InboxItemList, export_default$M as InboxItemListCoordinator, export_default$R as InboxMessageListItem, export_default$1 as InboxMessageView, export_default$Q as InboxResourceDisplay, InboxResourceImageAlignment, export_default$P as InboxResourceListItem, export_default$O as InboxSurveyListItem, InboxSurveyVariant, export_default$3 as InboxView, export_default$1z as LabResultsSummary, export_default$1a as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$1y as MedicationsList, export_default$7 as MedicationsView, export_default$1x as MostRecentNotification, export_default$19 as NavigationBar, NewPointsEntry, export_default$4 as NewPointsView, NewPointsViewProps, export_default$18 as NotesInput, export_default$1w as NotificationList, export_default$6 as NotificationsView, export_default$1v as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$17 as ProgressRing, export_default$1u as ProjectHeader, export_default$1t as ProjectSupport, export_default$1s as ProviderSearch, export_default$1r as RelativeActivityToday, export_default$1q as RestingHeartRateCalendar, export_default$16 as RotatingText, RotatingTextEntry, export_default$15 as Section, export_default$14 as SegmentedControl, export_default$1n as SeverityCalendar, export_default$13 as ShinyOverlay, export_default$12 as SingleExternalAccount, export_default$11 as SingleNotification, export_default$10 as SingleSurveyTask, export_default$$ as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$F as StepDetailText, export_default$D as StepImage, export_default$E as StepImageIcon, export_default$C as StepLayout, export_default$B as StepMarkdown, export_default$A as StepNextButton, export_default$z as StepText, export_default$y as StepTitle, SurveyBloodPressureDataParameters, export_default$1o as SurveyTaskList, export_default$5 as SurveyTasksView, export_default$_ as Switch, SymptomConfiguration, SymptomReference, export_default$v as SymptomSharkCalendar, export_default$k as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$t as SymptomSharkLogEntry, export_default$m as SymptomSharkLogEntryEdit, export_default$j as SymptomSharkLogEntryEditView, export_default$o as SymptomSharkLogEntryList, export_default$n as SymptomSharkLogToday, export_default$u as SymptomSharkOverallExperienceChart, export_default$i as SymptomSharkSymptomDetailView, export_default$q as SymptomSharkSymptomSeverityChart, export_default$r as SymptomSharkSymptomSeveritySummary, export_default$p as SymptomSharkSymptomTreatmentFilters, export_default$s as SymptomSharkSymptomTreatmentHistograms, export_default$l as SymptomSharkVisualizationCoordinator, export_default$Z as TextBlock, export_default$Y as Title, export_default$X as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$W as UnstyledButton, export_default$V as ValueSelector, export_default$1m as ViewEhr, export_default$U as ViewHeader, export_default$T as WeekCalendar, WeekStartsOn, export_default$x as YouTubeStep, export_default$w as YouTubeStepContainer, service as asthmaDataService, export_default$1Q as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaDataStatusText, getAsthmaSymptomLevel, getAsthmaSymptomLevelValue, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
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
|
-
innerRef?: React.Ref<HTMLDivElement>;
|
|
8
|
-
}
|
|
9
|
-
export default function (props: AsthmaActionPlanProps): React.JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './AsthmaActionPlan';
|
|
@@ -1,9 +0,0 @@
|
|
|
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
|
-
innerRef?: React.Ref<HTMLDivElement>;
|
|
8
|
-
}
|
|
9
|
-
export default function (props: AsthmaActionPlanProps): React.JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './AsthmaActionPlan';
|