@careevolution/mydatahelps-ui 2.18.0 → 2.18.1-additional-languages.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 +11 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/asthma/helpers/asthma-functions.d.ts +2 -1
- package/dist/cjs/types/components/asthma/model/types.d.ts +2 -1
- package/dist/cjs/types/components/container/DailyDataChart/DailyDataChart.stories.d.ts +61 -0
- package/dist/cjs/types/helpers/daily-data-providers/apple-health-sleep.d.ts +11 -2
- package/dist/cjs/types/helpers/daily-data-providers/index.d.ts +3 -0
- package/dist/cjs/types/helpers/date-helpers.d.ts +0 -1
- package/dist/cjs/types/helpers/language.d.ts +2 -0
- package/dist/cjs/types/helpers/locale.d.ts +1 -0
- package/dist/cjs/types/helpers/query-daily-data.d.ts +3 -0
- package/dist/cjs/types/helpers/strings-de.d.ts +4 -0
- package/dist/cjs/types/helpers/strings-fr.d.ts +4 -0
- package/dist/cjs/types/helpers/strings-it.d.ts +4 -0
- package/dist/cjs/types/helpers/strings-nl.d.ts +4 -0
- package/dist/cjs/types/helpers/strings-pl.d.ts +4 -0
- package/dist/cjs/types/helpers/strings-pt.d.ts +4 -0
- package/dist/esm/index.js +11 -11
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/asthma/helpers/asthma-functions.d.ts +2 -1
- package/dist/esm/types/components/asthma/model/types.d.ts +2 -1
- package/dist/esm/types/components/container/DailyDataChart/DailyDataChart.stories.d.ts +61 -0
- package/dist/esm/types/helpers/daily-data-providers/apple-health-sleep.d.ts +11 -2
- package/dist/esm/types/helpers/daily-data-providers/index.d.ts +3 -0
- package/dist/esm/types/helpers/date-helpers.d.ts +0 -1
- package/dist/esm/types/helpers/language.d.ts +2 -0
- package/dist/esm/types/helpers/locale.d.ts +1 -0
- package/dist/esm/types/helpers/query-daily-data.d.ts +3 -0
- package/dist/esm/types/helpers/strings-de.d.ts +4 -0
- package/dist/esm/types/helpers/strings-fr.d.ts +4 -0
- package/dist/esm/types/helpers/strings-it.d.ts +4 -0
- package/dist/esm/types/helpers/strings-nl.d.ts +4 -0
- package/dist/esm/types/helpers/strings-pl.d.ts +4 -0
- package/dist/esm/types/helpers/strings-pt.d.ts +4 -0
- package/dist/index.d.ts +9 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AsthmaControlState, AsthmaDataStatus, AsthmaImpact, AsthmaLogEntry, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger } from '../model';
|
|
1
|
+
import { AsthmaAirQualityDescription, AsthmaControlState, AsthmaDataStatus, AsthmaImpact, AsthmaLogEntry, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger } from '../model';
|
|
2
2
|
import { ColorDefinition } from '../../../helpers/colors';
|
|
3
3
|
export declare const dateToAsthmaLogEntryIdentifier: (date: Date) => string;
|
|
4
4
|
export declare const computeAsthmaControlState: (logEntries: AsthmaLogEntry[], date: Date) => AsthmaControlState;
|
|
@@ -12,6 +12,7 @@ export declare const getAsthmaImpactTexts: (impacts: AsthmaImpact[] | undefined)
|
|
|
12
12
|
export declare const getAsthmaImpacts: (impactTexts: string[]) => AsthmaImpact[];
|
|
13
13
|
export declare const getAsthmaTriggerTexts: (triggers: AsthmaTrigger[] | undefined) => string[];
|
|
14
14
|
export declare const getAsthmaTriggers: (triggerTexts: string[]) => AsthmaTrigger[];
|
|
15
|
+
export declare const getAsthmaAirQualityDescriptionText: (description: AsthmaAirQualityDescription | undefined) => string | undefined;
|
|
15
16
|
export declare const isDaytimeRestingHeartRateWithinRange: (baseline: number, rawValue: number) => boolean;
|
|
16
17
|
export declare const isNighttimeRestingHeartRateWithinRange: (baseline: number, rawValue: number) => boolean;
|
|
17
18
|
export declare const isRespiratoryRateWithinRange: (baseline: number, rawValue: number) => boolean;
|
|
@@ -37,11 +37,12 @@ export interface AsthmaBiometric {
|
|
|
37
37
|
value?: number;
|
|
38
38
|
}
|
|
39
39
|
export type AsthmaAirQualityType = 'work' | 'home';
|
|
40
|
+
export type AsthmaAirQualityDescription = 'unhealthy' | 'very unhealthy' | 'hazardous';
|
|
40
41
|
export interface AsthmaAirQuality {
|
|
41
42
|
type: AsthmaAirQualityType;
|
|
42
43
|
status: AsthmaDataStatus;
|
|
43
44
|
value?: number;
|
|
44
|
-
description?:
|
|
45
|
+
description?: AsthmaAirQualityDescription;
|
|
45
46
|
}
|
|
46
47
|
export type AsthmaSymptomLevel = 'none' | 'mild' | 'moderate' | 'severe';
|
|
47
48
|
export type AsthmaSymptom = 'Difficulty breathing' | 'Wheezing' | 'Coughing' | 'Chest tightness or pressure';
|
|
@@ -99,6 +99,67 @@ export declare const sleepBarChart: {
|
|
|
99
99
|
};
|
|
100
100
|
render: (args: DailyDataChartProps) => React.JSX.Element;
|
|
101
101
|
};
|
|
102
|
+
export declare const sleepAppleHealthBarChart: {
|
|
103
|
+
args: {
|
|
104
|
+
title: string;
|
|
105
|
+
intervalType: string;
|
|
106
|
+
weekStartsOn: string;
|
|
107
|
+
dailyDataType: DailyDataType;
|
|
108
|
+
valueFormatter: (value: number) => string;
|
|
109
|
+
valueConverter: (value: number) => number;
|
|
110
|
+
chartType: string;
|
|
111
|
+
previewDataProvider: (start: Date, end: Date) => Promise<DailyDataQueryResult>;
|
|
112
|
+
};
|
|
113
|
+
render: (args: DailyDataChartProps) => React.JSX.Element;
|
|
114
|
+
};
|
|
115
|
+
export declare const liveSleepAppleHealthBarChart: {
|
|
116
|
+
args: {
|
|
117
|
+
title: string;
|
|
118
|
+
intervalType: string;
|
|
119
|
+
weekStartsOn: string;
|
|
120
|
+
dailyDataType: DailyDataType;
|
|
121
|
+
valueFormatter: (value: number) => string;
|
|
122
|
+
valueConverter: (value: number) => number;
|
|
123
|
+
chartType: string;
|
|
124
|
+
};
|
|
125
|
+
render: (args: DailyDataChartProps) => React.JSX.Element;
|
|
126
|
+
};
|
|
127
|
+
export declare const liveSleepCoreAppleHealthBarChart: {
|
|
128
|
+
args: {
|
|
129
|
+
title: string;
|
|
130
|
+
intervalType: string;
|
|
131
|
+
weekStartsOn: string;
|
|
132
|
+
dailyDataType: DailyDataType;
|
|
133
|
+
valueFormatter: (value: number) => string;
|
|
134
|
+
valueConverter: (value: number) => number;
|
|
135
|
+
chartType: string;
|
|
136
|
+
};
|
|
137
|
+
render: (args: DailyDataChartProps) => React.JSX.Element;
|
|
138
|
+
};
|
|
139
|
+
export declare const liveSleepRemAppleHealthBarChart: {
|
|
140
|
+
args: {
|
|
141
|
+
title: string;
|
|
142
|
+
intervalType: string;
|
|
143
|
+
weekStartsOn: string;
|
|
144
|
+
dailyDataType: DailyDataType;
|
|
145
|
+
valueFormatter: (value: number) => string;
|
|
146
|
+
valueConverter: (value: number) => number;
|
|
147
|
+
chartType: string;
|
|
148
|
+
};
|
|
149
|
+
render: (args: DailyDataChartProps) => React.JSX.Element;
|
|
150
|
+
};
|
|
151
|
+
export declare const liveSleepDeepAppleHealthBarChart: {
|
|
152
|
+
args: {
|
|
153
|
+
title: string;
|
|
154
|
+
intervalType: string;
|
|
155
|
+
weekStartsOn: string;
|
|
156
|
+
dailyDataType: DailyDataType;
|
|
157
|
+
valueFormatter: (value: number) => string;
|
|
158
|
+
valueConverter: (value: number) => number;
|
|
159
|
+
chartType: string;
|
|
160
|
+
};
|
|
161
|
+
render: (args: DailyDataChartProps) => React.JSX.Element;
|
|
162
|
+
};
|
|
102
163
|
export declare const noData: {
|
|
103
164
|
args: {
|
|
104
165
|
title: string;
|
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function inBedTime(startDate: Date, endDate: Date): Promise<{
|
|
2
2
|
[key: string]: number;
|
|
3
3
|
}>;
|
|
4
|
-
export declare function
|
|
4
|
+
export declare function asleepCoreTime(startDate: Date, endDate: Date): Promise<{
|
|
5
|
+
[key: string]: number;
|
|
6
|
+
}>;
|
|
7
|
+
export declare function asleepRemTime(startDate: Date, endDate: Date): Promise<{
|
|
8
|
+
[key: string]: number;
|
|
9
|
+
}>;
|
|
10
|
+
export declare function asleepDeepTime(startDate: Date, endDate: Date): Promise<{
|
|
11
|
+
[key: string]: number;
|
|
12
|
+
}>;
|
|
13
|
+
export declare function asleepTime(startDate: Date, endDate: Date): Promise<{
|
|
5
14
|
[key: string]: number;
|
|
6
15
|
}>;
|
|
@@ -4,6 +4,9 @@ export { default as appleHealthHeartRateRangeDataProvider } from "./apple-health
|
|
|
4
4
|
export { default as appleHealthMaxHeartRateDataProvider } from "./apple-health-max-heart-rate";
|
|
5
5
|
export { default as appleHealthRestingHeartRateDataProvider } from "./apple-health-resting-heart-rate";
|
|
6
6
|
export { asleepTime as appleHealthSleepDataProvider } from "./apple-health-sleep";
|
|
7
|
+
export { asleepRemTime as appleHealthSleepRemDataProvider } from "./apple-health-sleep";
|
|
8
|
+
export { asleepCoreTime as appleHealthSleepCoreDataProvider } from "./apple-health-sleep";
|
|
9
|
+
export { asleepDeepTime as appleHealthSleepDeepDataProvider } from "./apple-health-sleep";
|
|
7
10
|
export { inBedTime as appleHealthInBedDataProvider } from "./apple-health-sleep";
|
|
8
11
|
export { default as appleHealthStandTimeDataProvider } from "./apple-health-stand-time";
|
|
9
12
|
export { default as appleHealthStepsDataProvider } from "./apple-health-steps";
|
|
@@ -4,4 +4,3 @@ export declare function getDayOfWeek(date: Date): string;
|
|
|
4
4
|
export declare function getFullDateString(date: Date): string;
|
|
5
5
|
export declare function getShorterDateString(date: Date): string;
|
|
6
6
|
export declare function getMonthName(month: number): string;
|
|
7
|
-
export declare function getLocale(): Locale;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getLocaleFromIso(language: string): Locale;
|
|
@@ -16,6 +16,9 @@ export declare enum DailyDataType {
|
|
|
16
16
|
AppleHealthMaxHeartRate = "AppleHealthMaxHeartRate",
|
|
17
17
|
AppleHealthRestingHeartRate = "AppleHealthRestingHeartRate",
|
|
18
18
|
AppleHealthSleepMinutes = "AppleHealthSleepMinutes",
|
|
19
|
+
AppleHealthSleepRemMinutes = "AppleHealthSleepRemMinutes",
|
|
20
|
+
AppleHealthSleepDeepMinutes = "AppleHealthSleepDeepMinutes",
|
|
21
|
+
AppleHealthSleepCoreMinutes = "AppleHealthSleepCoreMinutes",
|
|
19
22
|
AppleHealthInBedMinutes = "AppleHealthInBedMinutes",
|
|
20
23
|
AppleHealthStandMinutes = "AppleHealthStandMinutes",
|
|
21
24
|
AppleHealthSteps = "AppleHealthSteps",
|
package/dist/index.d.ts
CHANGED
|
@@ -50,11 +50,12 @@ interface AsthmaBiometric {
|
|
|
50
50
|
value?: number;
|
|
51
51
|
}
|
|
52
52
|
type AsthmaAirQualityType = 'work' | 'home';
|
|
53
|
+
type AsthmaAirQualityDescription = 'unhealthy' | 'very unhealthy' | 'hazardous';
|
|
53
54
|
interface AsthmaAirQuality {
|
|
54
55
|
type: AsthmaAirQualityType;
|
|
55
56
|
status: AsthmaDataStatus;
|
|
56
57
|
value?: number;
|
|
57
|
-
description?:
|
|
58
|
+
description?: AsthmaAirQualityDescription;
|
|
58
59
|
}
|
|
59
60
|
type AsthmaSymptomLevel = 'none' | 'mild' | 'moderate' | 'severe';
|
|
60
61
|
type AsthmaSymptom = 'Difficulty breathing' | 'Wheezing' | 'Coughing' | 'Chest tightness or pressure';
|
|
@@ -775,6 +776,7 @@ declare const getAsthmaImpactTexts: (impacts: AsthmaImpact[] | undefined) => str
|
|
|
775
776
|
declare const getAsthmaImpacts: (impactTexts: string[]) => AsthmaImpact[];
|
|
776
777
|
declare const getAsthmaTriggerTexts: (triggers: AsthmaTrigger[] | undefined) => string[];
|
|
777
778
|
declare const getAsthmaTriggers: (triggerTexts: string[]) => AsthmaTrigger[];
|
|
779
|
+
declare const getAsthmaAirQualityDescriptionText: (description: AsthmaAirQualityDescription | undefined) => string | undefined;
|
|
778
780
|
declare const isDaytimeRestingHeartRateWithinRange: (baseline: number, rawValue: number) => boolean;
|
|
779
781
|
declare const isNighttimeRestingHeartRateWithinRange: (baseline: number, rawValue: number) => boolean;
|
|
780
782
|
declare const isRespiratoryRateWithinRange: (baseline: number, rawValue: number) => boolean;
|
|
@@ -980,6 +982,9 @@ declare enum DailyDataType {
|
|
|
980
982
|
AppleHealthMaxHeartRate = "AppleHealthMaxHeartRate",
|
|
981
983
|
AppleHealthRestingHeartRate = "AppleHealthRestingHeartRate",
|
|
982
984
|
AppleHealthSleepMinutes = "AppleHealthSleepMinutes",
|
|
985
|
+
AppleHealthSleepRemMinutes = "AppleHealthSleepRemMinutes",
|
|
986
|
+
AppleHealthSleepDeepMinutes = "AppleHealthSleepDeepMinutes",
|
|
987
|
+
AppleHealthSleepCoreMinutes = "AppleHealthSleepCoreMinutes",
|
|
983
988
|
AppleHealthInBedMinutes = "AppleHealthInBedMinutes",
|
|
984
989
|
AppleHealthStandMinutes = "AppleHealthStandMinutes",
|
|
985
990
|
AppleHealthSteps = "AppleHealthSteps",
|
|
@@ -1834,10 +1839,12 @@ declare function export_default$1(props: ResourceListViewProps): React.JSX.Eleme
|
|
|
1834
1839
|
|
|
1835
1840
|
declare function export_default(callback: Function, delay: number | null): void;
|
|
1836
1841
|
|
|
1842
|
+
type Language = "" | "en" | "es" | "nl" | "de" | "fr" | "pt" | "it" | "pl";
|
|
1837
1843
|
declare function language(key: string): string;
|
|
1844
|
+
declare function getLanguageFromIso(language: string): Language;
|
|
1838
1845
|
|
|
1839
1846
|
declare function getDayKey(date: Date): string;
|
|
1840
1847
|
|
|
1841
1848
|
declare function useInitializeView(initialize: () => void, additionalEvents?: EventName[], dependencies?: DependencyList): void;
|
|
1842
1849
|
|
|
1843
|
-
export { export_default$2a as Action, export_default$29 as ActivityMeter, export_default$1o as AllergiesList, export_default$i as AllergiesView, export_default$1n as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2l as AsthmaActionPlanManager, export_default$1x as AsthmaActionPlanView, export_default$1w as AsthmaActivityView, export_default$2k as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityType, export_default$1v as AsthmaAirQualityView, export_default$2j as AsthmaAlertTakeoverNotice, export_default$2i as AsthmaAlertTakeoverTrigger, export_default$1u as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$2h as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$2g as AsthmaControlCalendar, AsthmaControlCalendarPreviewState, AsthmaControlCalendarVariant, AsthmaControlState, AsthmaControlStatus, export_default$2f as AsthmaControlStatusHeader, AsthmaDailyDataType, AsthmaDataStatus, export_default$1t as AsthmaDayView, export_default$1s as AsthmaHeartAndLungsView, AsthmaImpact, AsthmaLogEntry, export_default$2e as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1r as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$2d as AsthmaLogEntryHeader, AsthmaParticipant, export_default$2c as AsthmaPostEnrollmentSurveyTrigger, export_default$2b as AsthmaProviderReport, AsthmaProviderReportPreviewState, export_default$1q as AsthmaProviderReportView, export_default$1y as AsthmaRecommendedArticle, export_default$1p as AsthmaSleepView, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger, BarChartOptions, BarChartThreshold, export_default$h as BlankView, BloodPressureDataPoint, BloodPressureDeviceDataSource, export_default$1l as BloodPressureVisualization, export_default$28 as Button, export_default$27 as Calendar, export_default$26 as CalendarDay, CalendarDayStateConfiguration, export_default$25 as Card, export_default$24 as CardTitle, export_default$Q as CelebrationStep, export_default$P as CelebrationStepContainer, ColorDefinition, export_default$1k as ConditionsList, export_default$g as ConditionsView, export_default$O as ConnectDeviceAccountStep, export_default$N as ConnectDeviceAccountStepContainer, export_default$1j as ConnectDevicesMenu, export_default$1i as ConnectEhr, export_default$M as ConnectEhrStep, export_default$L as ConnectEhrStepContainer, export_default$f as ConnectEhrView, export_default$1h as ConnectFitbit, export_default$1g as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$23 as DateRangeNavigator, export_default$22 as DayTrackerSymbol, DeviceDataChartLine, export_default$1f as DeviceDataMonthChart, export_default$1e as DeviceDataMonthCharts, export_default$e as DeviceDataView, export_default$21 as DumbbellChart, export_default$1d as ExternalAccountList, export_default$1c as ExternalAccountsLoadingIndicator, export_default$1b as ExternalAccountsPreview, export_default$d as ExternalAccountsView, export_default$20 as Face, export_default$1a as FitbitDevices, export_default$19 as FitbitMonthCharts, export_default$c as FitbitView, export_default$18 as GarminDevices, export_default$17 as GarminMonthCharts, export_default$b as GarminView, export_default$9 as HealthAndWellnessView, export_default$16 as HealthPreviewSection, export_default$1$ as Histogram, export_default$a as HomeView, export_default$1C as InboxCompletedListItem, export_default$3 as InboxHistoryView, export_default$S as InboxItemList, export_default$R as InboxItemListCoordinator, export_default$1B as InboxMessageListItem, export_default$2 as InboxMessageView, export_default$1A as InboxResourceListItem, export_default$1z as InboxSurveyListItem, InboxSurveyVariant, export_default$4 as InboxView, export_default$15 as LabResultsBloodType, export_default$14 as LabResultsSummary, export_default$1_ as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$13 as MedicationsList, export_default$8 as MedicationsView, export_default$1Z as MonthlyEventMatrix, MonthlyEventMatrixRow, export_default$12 as MostRecentNotification, export_default$1Y as NavigationBar, NewPointsEntry, export_default$5 as NewPointsView, NewPointsViewProps, export_default$1X as NotesInput, export_default$11 as NotificationList, export_default$7 as NotificationsView, export_default$10 as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$1W as ProgressRing, export_default$$ as ProjectHeader, export_default$_ as ProjectSupport, export_default$Z as ProviderSearch, export_default$Y as RecentDailyDataBarChart, export_default$X as RelativeActivityToday, export_default$1V as Resource, ResourceButtonVariant, ResourceDefinition, ResourceImageAlignment, export_default$1U as ResourceList, ResourceListPreviewState, export_default$1 as ResourceListView, export_default$W as RestingHeartRateCalendar, export_default$1T as RotatingComponentCoordinator, RotatingComponentInterval, export_default$1S as Section, export_default$1R as SegmentedControl, export_default$U as SeverityCalendar, export_default$1Q as ShinyOverlay, export_default$1P as SingleDataPoint, export_default$1O as SingleExternalAccount, export_default$1N as SingleNotification, export_default$1M as SingleSurveyTask, export_default$1L as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$K as StepDetailText, export_default$I as StepImage, export_default$J as StepImageIcon, export_default$H as StepLayout, export_default$G as StepMarkdown, export_default$F as StepNextButton, export_default$E as StepText, export_default$D as StepTitle, SurveyBloodPressureDataParameters, export_default$V as SurveyTaskList, export_default$6 as SurveyTasksView, export_default$1K as Switch, SymptomConfiguration, SymptomReference, export_default$z as SymptomSharkCalendar, export_default$m as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$x as SymptomSharkLogEntry, export_default$o as SymptomSharkLogEntryEdit, export_default$l as SymptomSharkLogEntryEditView, export_default$q as SymptomSharkLogEntryList, export_default$p as SymptomSharkLogToday, export_default$w as SymptomSharkMonthReport, export_default$v as SymptomSharkNotesTimeline, export_default$y as SymptomSharkOverallExperienceChart, ReportBuilder as SymptomSharkReportBuilder, export_default$k as SymptomSharkReportBuilderView, export_default$j as SymptomSharkSymptomDetailView, export_default$A as SymptomSharkSymptomMatrix, export_default$s as SymptomSharkSymptomSeverityChart, export_default$t as SymptomSharkSymptomSeveritySummary, export_default$r as SymptomSharkSymptomTreatmentFilters, export_default$u as SymptomSharkSymptomTreatmentHistograms, export_default$n as SymptomSharkVisualizationCoordinator, export_default$1J as TextBlock, export_default$1I as Title, export_default$1H as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$1G as UnstyledButton, export_default$1F as ValueSelector, export_default$T as ViewEhr, export_default$1E as ViewHeader, export_default$1D as WeekCalendar, WeekStartsOn, export_default$C as YouTubeStep, export_default$B as YouTubeStepContainer, service as asthmaDataService, export_default$1m as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaDataStatusColor, getAsthmaDataStatusText, getAsthmaImpactTexts, getAsthmaImpacts, getAsthmaSymptomLevel, getAsthmaSymptomLevelText, getAsthmaSymptomTexts, getAsthmaSymptoms, getAsthmaTriggerTexts, getAsthmaTriggers, getDayKey, getMonthStart, getWeekStart, isBloodOxygenLevelWithinRange, isDaytimeRestingHeartRateWithinRange, isNighttimeRestingHeartRateWithinRange, isRespiratoryRateWithinRange, isSleepDisturbancesWithinRange, isStepsWithinRange, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
|
|
1850
|
+
export { export_default$2a as Action, export_default$29 as ActivityMeter, export_default$1o as AllergiesList, export_default$i as AllergiesView, export_default$1n as AppDownload, AreaChartOptions, AsthmaActionPlan, export_default$2l as AsthmaActionPlanManager, export_default$1x as AsthmaActionPlanView, export_default$1w as AsthmaActivityView, export_default$2k as AsthmaAirQualities, AsthmaAirQualitiesPreviewState, AsthmaAirQuality, AsthmaAirQualityDescription, AsthmaAirQualityType, export_default$1v as AsthmaAirQualityView, export_default$2j as AsthmaAlertTakeoverNotice, export_default$2i as AsthmaAlertTakeoverTrigger, export_default$1u as AsthmaAlertTakeoverView, AsthmaBiometric, AsthmaBiometricType, export_default$2h as AsthmaBiometrics, AsthmaBiometricsPreviewState, export_default$2g as AsthmaControlCalendar, AsthmaControlCalendarPreviewState, AsthmaControlCalendarVariant, AsthmaControlState, AsthmaControlStatus, export_default$2f as AsthmaControlStatusHeader, AsthmaDailyDataType, AsthmaDataStatus, export_default$1t as AsthmaDayView, export_default$1s as AsthmaHeartAndLungsView, AsthmaImpact, AsthmaLogEntry, export_default$2e as AsthmaLogEntryDetails, AsthmaLogEntryDetailsPreviewState, export_default$1r as AsthmaLogEntryEditorView, AsthmaLogEntryEditorViewPreviewState, export_default$2d as AsthmaLogEntryHeader, AsthmaParticipant, export_default$2c as AsthmaPostEnrollmentSurveyTrigger, export_default$2b as AsthmaProviderReport, AsthmaProviderReportPreviewState, export_default$1q as AsthmaProviderReportView, export_default$1y as AsthmaRecommendedArticle, export_default$1p as AsthmaSleepView, AsthmaSymptom, AsthmaSymptomLevel, AsthmaTrigger, BarChartOptions, BarChartThreshold, export_default$h as BlankView, BloodPressureDataPoint, BloodPressureDeviceDataSource, export_default$1l as BloodPressureVisualization, export_default$28 as Button, export_default$27 as Calendar, export_default$26 as CalendarDay, CalendarDayStateConfiguration, export_default$25 as Card, export_default$24 as CardTitle, export_default$Q as CelebrationStep, export_default$P as CelebrationStepContainer, ColorDefinition, export_default$1k as ConditionsList, export_default$g as ConditionsView, export_default$O as ConnectDeviceAccountStep, export_default$N as ConnectDeviceAccountStepContainer, export_default$1j as ConnectDevicesMenu, export_default$1i as ConnectEhr, export_default$M as ConnectEhrStep, export_default$L as ConnectEhrStepContainer, export_default$f as ConnectEhrView, export_default$1h as ConnectFitbit, export_default$1g as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeContext, DateRangeNavigatorContext as DateRangeCoordinator, export_default$23 as DateRangeNavigator, export_default$22 as DayTrackerSymbol, DeviceDataChartLine, export_default$1f as DeviceDataMonthChart, export_default$1e as DeviceDataMonthCharts, export_default$e as DeviceDataView, export_default$21 as DumbbellChart, export_default$1d as ExternalAccountList, export_default$1c as ExternalAccountsLoadingIndicator, export_default$1b as ExternalAccountsPreview, export_default$d as ExternalAccountsView, export_default$20 as Face, export_default$1a as FitbitDevices, export_default$19 as FitbitMonthCharts, export_default$c as FitbitView, export_default$18 as GarminDevices, export_default$17 as GarminMonthCharts, export_default$b as GarminView, export_default$9 as HealthAndWellnessView, export_default$16 as HealthPreviewSection, export_default$1$ as Histogram, export_default$a as HomeView, export_default$1C as InboxCompletedListItem, export_default$3 as InboxHistoryView, export_default$S as InboxItemList, export_default$R as InboxItemListCoordinator, export_default$1B as InboxMessageListItem, export_default$2 as InboxMessageView, export_default$1A as InboxResourceListItem, export_default$1z as InboxSurveyListItem, InboxSurveyVariant, export_default$4 as InboxView, export_default$15 as LabResultsBloodType, export_default$14 as LabResultsSummary, Language, export_default$1_ as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$13 as MedicationsList, export_default$8 as MedicationsView, export_default$1Z as MonthlyEventMatrix, MonthlyEventMatrixRow, export_default$12 as MostRecentNotification, export_default$1Y as NavigationBar, NewPointsEntry, export_default$5 as NewPointsView, NewPointsViewProps, export_default$1X as NotesInput, export_default$11 as NotificationList, export_default$7 as NotificationsView, export_default$10 as PlatformSpecificContent, ProgressBar, ProgressBarStep, export_default$1W as ProgressRing, export_default$$ as ProjectHeader, export_default$_ as ProjectSupport, export_default$Z as ProviderSearch, export_default$Y as RecentDailyDataBarChart, export_default$X as RelativeActivityToday, export_default$1V as Resource, ResourceButtonVariant, ResourceDefinition, ResourceImageAlignment, export_default$1U as ResourceList, ResourceListPreviewState, export_default$1 as ResourceListView, export_default$W as RestingHeartRateCalendar, export_default$1T as RotatingComponentCoordinator, RotatingComponentInterval, export_default$1S as Section, export_default$1R as SegmentedControl, export_default$U as SeverityCalendar, export_default$1Q as ShinyOverlay, export_default$1P as SingleDataPoint, export_default$1O as SingleExternalAccount, export_default$1N as SingleNotification, export_default$1M as SingleSurveyTask, export_default$1L as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$K as StepDetailText, export_default$I as StepImage, export_default$J as StepImageIcon, export_default$H as StepLayout, export_default$G as StepMarkdown, export_default$F as StepNextButton, export_default$E as StepText, export_default$D as StepTitle, SurveyBloodPressureDataParameters, export_default$V as SurveyTaskList, export_default$6 as SurveyTasksView, export_default$1K as Switch, SymptomConfiguration, SymptomReference, export_default$z as SymptomSharkCalendar, export_default$m as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$x as SymptomSharkLogEntry, export_default$o as SymptomSharkLogEntryEdit, export_default$l as SymptomSharkLogEntryEditView, export_default$q as SymptomSharkLogEntryList, export_default$p as SymptomSharkLogToday, export_default$w as SymptomSharkMonthReport, export_default$v as SymptomSharkNotesTimeline, export_default$y as SymptomSharkOverallExperienceChart, ReportBuilder as SymptomSharkReportBuilder, export_default$k as SymptomSharkReportBuilderView, export_default$j as SymptomSharkSymptomDetailView, export_default$A as SymptomSharkSymptomMatrix, export_default$s as SymptomSharkSymptomSeverityChart, export_default$t as SymptomSharkSymptomSeveritySummary, export_default$r as SymptomSharkSymptomTreatmentFilters, export_default$u as SymptomSharkSymptomTreatmentHistograms, export_default$n as SymptomSharkVisualizationCoordinator, export_default$1J as TextBlock, export_default$1I as Title, export_default$1H as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$1G as UnstyledButton, export_default$1F as ValueSelector, export_default$T as ViewEhr, export_default$1E as ViewHeader, export_default$1D as WeekCalendar, WeekStartsOn, export_default$C as YouTubeStep, export_default$B as YouTubeStepContainer, service as asthmaDataService, export_default$1m as bloodPressureDataProvider, checkDailyDataAvailability, computeAsthmaControlState, convertToSymptomSharkConfiguration, dateToAsthmaLogEntryIdentifier, getAsthmaAirQualityDescriptionText, getAsthmaDataStatusColor, getAsthmaDataStatusText, getAsthmaImpactTexts, getAsthmaImpacts, getAsthmaSymptomLevel, getAsthmaSymptomLevelText, getAsthmaSymptomTexts, getAsthmaSymptoms, getAsthmaTriggerTexts, getAsthmaTriggers, getDayKey, getLanguageFromIso, getMonthStart, getWeekStart, isBloodOxygenLevelWithinRange, isDaytimeRestingHeartRateWithinRange, isNighttimeRestingHeartRateWithinRange, isRespiratoryRateWithinRange, isSleepDisturbancesWithinRange, isStepsWithinRange, language, queryDailyData, registerDailyDataProvider, resolveColor, showNewPoints, simpleAvailabilityCheck, useInitializeView, export_default as useInterval };
|