@careevolution/mydatahelps-ui 2.10.1-InboxAndAsthmaUI.0 → 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 +2 -2
|
@@ -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/esm/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';
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,15 @@ 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
|
+
createActionPlanUrl: (id: string) => string;
|
|
12
|
+
innerRef?: React.Ref<HTMLDivElement>;
|
|
13
|
+
}
|
|
14
|
+
declare function export_default$2b(props: AsthmaActionPlanProps): React.JSX.Element;
|
|
15
|
+
|
|
7
16
|
declare class AsthmaParticipant {
|
|
8
17
|
participantInfo: ParticipantInfo;
|
|
9
18
|
constructor(participantInfo: ParticipantInfo);
|
|
@@ -61,7 +70,7 @@ interface AsthmaAirQualitiesProps {
|
|
|
61
70
|
date?: Date;
|
|
62
71
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
63
72
|
}
|
|
64
|
-
declare function export_default$
|
|
73
|
+
declare function export_default$2a(props: AsthmaAirQualitiesProps): React.JSX.Element;
|
|
65
74
|
|
|
66
75
|
interface AsthmaAlertTakeoverNoticeProps {
|
|
67
76
|
previewState?: 'default' | 'loading';
|
|
@@ -69,7 +78,7 @@ interface AsthmaAlertTakeoverNoticeProps {
|
|
|
69
78
|
logEntrySurveyName: string;
|
|
70
79
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
71
80
|
}
|
|
72
|
-
declare function export_default$
|
|
81
|
+
declare function export_default$29(props: AsthmaAlertTakeoverNoticeProps): React.JSX.Element;
|
|
73
82
|
|
|
74
83
|
interface AsthmaAlertTakeoverTriggerProps {
|
|
75
84
|
previewState?: boolean;
|
|
@@ -80,7 +89,7 @@ interface AsthmaAlertTakeoverTriggerProps {
|
|
|
80
89
|
alertTakeoverUrl: string;
|
|
81
90
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
82
91
|
}
|
|
83
|
-
declare function export_default$
|
|
92
|
+
declare function export_default$28(props: AsthmaAlertTakeoverTriggerProps): null;
|
|
84
93
|
|
|
85
94
|
type AsthmaBiometricsPreviewState = 'no-data' | 'some-data' | 'all-data';
|
|
86
95
|
|
|
@@ -92,7 +101,7 @@ interface AsthmaBiometricsProps {
|
|
|
92
101
|
date?: Date;
|
|
93
102
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
94
103
|
}
|
|
95
|
-
declare function export_default$
|
|
104
|
+
declare function export_default$27(props: AsthmaBiometricsProps): React.JSX.Element;
|
|
96
105
|
|
|
97
106
|
type AsthmaControlCalendarPreviewState = 'no-logs' | 'some-logs';
|
|
98
107
|
|
|
@@ -104,7 +113,7 @@ interface AsthmaControlCalendarProps {
|
|
|
104
113
|
variant?: AsthmaControlCalendarVariant;
|
|
105
114
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
106
115
|
}
|
|
107
|
-
declare function export_default$
|
|
116
|
+
declare function export_default$26(props: AsthmaControlCalendarProps): React.JSX.Element;
|
|
108
117
|
|
|
109
118
|
type AsthmaControlStatusHeaderPreviewState = 'no-data' | 'abnormal-dhr' | 'abnormal-nhr' | 'abnormal-rr' | 'abnormal-activity' | 'abnormal-sleep' | 'abnormal-home-aqi' | 'abnormal-work-aqi' | 'abnormal-multiple' | 'not-determined' | 'not-controlled' | 'controlled';
|
|
110
119
|
|
|
@@ -113,7 +122,7 @@ interface AsthmaControlStatusHeaderProps {
|
|
|
113
122
|
participant: AsthmaParticipant;
|
|
114
123
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
115
124
|
}
|
|
116
|
-
declare function export_default$
|
|
125
|
+
declare function export_default$25(props: AsthmaControlStatusHeaderProps): React.JSX.Element | null;
|
|
117
126
|
|
|
118
127
|
interface AsthmaDataSummaryProps {
|
|
119
128
|
label: string;
|
|
@@ -124,12 +133,12 @@ interface AsthmaDataSummaryProps {
|
|
|
124
133
|
onClick?: () => void;
|
|
125
134
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
126
135
|
}
|
|
127
|
-
declare function export_default$
|
|
136
|
+
declare function export_default$24(props: AsthmaDataSummaryProps): React.JSX.Element;
|
|
128
137
|
|
|
129
138
|
interface AsthmaFactsProps {
|
|
130
139
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
131
140
|
}
|
|
132
|
-
declare function export_default$
|
|
141
|
+
declare function export_default$23(props: AsthmaFactsProps): React.JSX.Element;
|
|
133
142
|
|
|
134
143
|
type AsthmaLogEntryDetailsPreviewState = 'not-logged' | 'logged-no-symptoms' | 'logged-mild-symptoms' | 'logged-moderate-symptoms' | 'logged-severe-symptoms';
|
|
135
144
|
|
|
@@ -141,7 +150,7 @@ interface AsthmaLogEntryDetailsProps {
|
|
|
141
150
|
editLogEntryUrl: string;
|
|
142
151
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
143
152
|
}
|
|
144
|
-
declare function export_default$
|
|
153
|
+
declare function export_default$22(props: AsthmaLogEntryDetailsProps): React.JSX.Element;
|
|
145
154
|
|
|
146
155
|
type AsthmaLogEntryHeaderPreviewState = 'no-logs' | 'today-log-only' | 'yesterday-log-only' | 'both-logs';
|
|
147
156
|
|
|
@@ -152,7 +161,7 @@ interface AsthmaLogEntryHeaderProps {
|
|
|
152
161
|
dayViewUrl: string;
|
|
153
162
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
154
163
|
}
|
|
155
|
-
declare function export_default$
|
|
164
|
+
declare function export_default$21(props: AsthmaLogEntryHeaderProps): React.JSX.Element | null;
|
|
156
165
|
|
|
157
166
|
interface AsthmaLogEntrySummaryProps {
|
|
158
167
|
label: string;
|
|
@@ -161,7 +170,7 @@ interface AsthmaLogEntrySummaryProps {
|
|
|
161
170
|
loading?: boolean;
|
|
162
171
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
163
172
|
}
|
|
164
|
-
declare function export_default$
|
|
173
|
+
declare function export_default$20(props: AsthmaLogEntrySummaryProps): React.JSX.Element;
|
|
165
174
|
|
|
166
175
|
interface AsthmaPostEnrollmentSurveyTriggerProps {
|
|
167
176
|
previewState?: boolean;
|
|
@@ -169,7 +178,7 @@ interface AsthmaPostEnrollmentSurveyTriggerProps {
|
|
|
169
178
|
postEnrollmentMobileSurveyName: string;
|
|
170
179
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
171
180
|
}
|
|
172
|
-
declare function export_default$
|
|
181
|
+
declare function export_default$1$(props: AsthmaPostEnrollmentSurveyTriggerProps): null;
|
|
173
182
|
|
|
174
183
|
interface AsthmaDataService {
|
|
175
184
|
loadParticipant(): Promise<AsthmaParticipant>;
|
|
@@ -190,6 +199,15 @@ declare const getAsthmaDataStatusText: (status: AsthmaDataStatus) => string;
|
|
|
190
199
|
declare const getAsthmaSymptomLevelValue: (symptomLevel: AsthmaSymptomLevel) => string;
|
|
191
200
|
declare const getAsthmaSymptomLevel: (symptomLevelValue: string | undefined) => AsthmaSymptomLevel;
|
|
192
201
|
|
|
202
|
+
interface AsthmaActionPlanViewProps {
|
|
203
|
+
previewState?: 'loading' | 'loaded without action plan' | 'loaded with action plan';
|
|
204
|
+
colorScheme?: 'light' | 'dark' | 'auto';
|
|
205
|
+
learnMoreUrl: string;
|
|
206
|
+
editActionPlanSurveyName: string;
|
|
207
|
+
createActionPlanUrl: (id: string) => string;
|
|
208
|
+
}
|
|
209
|
+
declare function export_default$1_(props: AsthmaActionPlanViewProps): React.JSX.Element;
|
|
210
|
+
|
|
193
211
|
interface AsthmaActivityViewProps$1 {
|
|
194
212
|
previewState?: 'default';
|
|
195
213
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
@@ -1648,4 +1666,4 @@ declare function getDayKey(date: Date): string;
|
|
|
1648
1666
|
|
|
1649
1667
|
declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
|
|
1650
1668
|
|
|
1651
|
-
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$1Z as AsthmaActivityView, export_default$
|
|
1669
|
+
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 AsthmaActionPlan, 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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@careevolution/mydatahelps-ui",
|
|
3
|
-
"version": "2.10.1-InboxAndAsthmaUI.
|
|
3
|
+
"version": "2.10.1-InboxAndAsthmaUI.2",
|
|
4
4
|
"description": "MyDataHelps UI Library",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"recharts": "^2.5.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@careevolution/mydatahelps-js": "^3.
|
|
76
|
+
"@careevolution/mydatahelps-js": "^3.10.0",
|
|
77
77
|
"react": "^18.2.0",
|
|
78
78
|
"react-dom": "^18.2.0"
|
|
79
79
|
},
|