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