@careevolution/mydatahelps-ui 1.3.5 → 1.3.6
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/README.md +5 -4
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/container/index.d.ts +3 -2
- package/dist/cjs/types/components/presentational/index.d.ts +2 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/index.d.ts +3 -2
- package/dist/esm/types/components/presentational/index.d.ts +2 -1
- package/dist/index.d.ts +45 -38
- package/package.json +1 -1
|
@@ -4,12 +4,13 @@ export { default as DeviceDataMonthChart } from "./DeviceDataMonthChart";
|
|
|
4
4
|
export { default as DeviceDataMonthCharts } from "./DeviceDataMonthCharts";
|
|
5
5
|
export { default as ExternalAccountList } from "./ExternalAccountList";
|
|
6
6
|
export { default as ExternalAccountsPreview } from "./ExternalAccountsPreview";
|
|
7
|
-
export { default as FitbitMonthCharts } from "./FitbitMonthCharts";
|
|
8
7
|
export { default as FitbitDevices } from "./FitbitDevices";
|
|
8
|
+
export { default as FitbitMonthCharts } from "./FitbitMonthCharts";
|
|
9
9
|
export { default as MostRecentNotification } from "./MostRecentNotification";
|
|
10
10
|
export { default as NotificationList } from "./NotificationList";
|
|
11
11
|
export { default as PlatformSpecificContent } from "./PlatformSpecificContent";
|
|
12
|
-
export { default as ProviderSearch } from "./ProviderSearch";
|
|
13
12
|
export { default as ProjectHeader } from "./ProjectHeader";
|
|
14
13
|
export { default as ProjectSupport } from "./ProjectSupport";
|
|
14
|
+
export { default as ProviderSearch } from "./ProviderSearch";
|
|
15
|
+
export { default as RestingHeartRateCalendar } from "./ProviderSearch";
|
|
15
16
|
export { default as SurveyTaskList } from "./SurveyTaskList";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { default as Action } from "./Action";
|
|
2
2
|
export { default as Button } from "./Button";
|
|
3
|
+
export { default as Calendar } from "./Calendar";
|
|
3
4
|
export { default as Card } from "./Card";
|
|
4
5
|
export { default as CardTitle } from "./CardTitle";
|
|
6
|
+
export { default as DateRangeNavigator } from "./DateRangeNavigator";
|
|
5
7
|
export { default as DayTrackerSymbol } from "./DayTrackerSymbol";
|
|
6
8
|
export { default as Histogram } from "./Histogram";
|
|
7
9
|
export { default as Layout } from "./Layout";
|
|
@@ -16,4 +18,3 @@ export { default as SingleSurveyTask } from "./SingleSurveyTask";
|
|
|
16
18
|
export { default as StatusBarBackground } from "./StatusBarBackground";
|
|
17
19
|
export { default as TextBlock } from "./TextBlock";
|
|
18
20
|
export { default as TrackerItem } from "./TrackerItem";
|
|
19
|
-
export { default as DateRangeNavigator } from "./DateRangeNavigator";
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ interface ActionProps {
|
|
|
12
12
|
children?: React.ReactNode;
|
|
13
13
|
className?: string;
|
|
14
14
|
}
|
|
15
|
-
declare function export_default$
|
|
15
|
+
declare function export_default$E(props: ActionProps): JSX.Element;
|
|
16
16
|
|
|
17
17
|
interface ButtonProps {
|
|
18
18
|
children?: React.ReactNode;
|
|
@@ -23,7 +23,14 @@ interface ButtonProps {
|
|
|
23
23
|
disabled?: boolean;
|
|
24
24
|
onClick: Function;
|
|
25
25
|
}
|
|
26
|
-
declare function export_default$
|
|
26
|
+
declare function export_default$D(props: ButtonProps): JSX.Element;
|
|
27
|
+
|
|
28
|
+
interface CalendarProps {
|
|
29
|
+
month: number;
|
|
30
|
+
year: number;
|
|
31
|
+
dayRenderer(year: number, month: number, day?: number): JSX.Element | null;
|
|
32
|
+
}
|
|
33
|
+
declare function export_default$C(props: CalendarProps): JSX.Element;
|
|
27
34
|
|
|
28
35
|
interface CardProps {
|
|
29
36
|
className?: string;
|
|
@@ -39,11 +46,18 @@ interface CardTitleProps {
|
|
|
39
46
|
}
|
|
40
47
|
declare function export_default$A(props: CardTitleProps): JSX.Element;
|
|
41
48
|
|
|
49
|
+
interface DateRangeNavigatorProps {
|
|
50
|
+
intervalType: "Week" | "Month";
|
|
51
|
+
intervalStart: Date;
|
|
52
|
+
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
53
|
+
}
|
|
54
|
+
declare function export_default$z(props: DateRangeNavigatorProps): JSX.Element;
|
|
55
|
+
|
|
42
56
|
interface DayTrackerSymbolProps {
|
|
43
57
|
primaryColors: string[];
|
|
44
58
|
secondaryColors: string[];
|
|
45
59
|
}
|
|
46
|
-
declare function export_default$
|
|
60
|
+
declare function export_default$y(props: DayTrackerSymbolProps): JSX.Element;
|
|
47
61
|
|
|
48
62
|
interface HistogramProps {
|
|
49
63
|
entries: {
|
|
@@ -52,7 +66,7 @@ interface HistogramProps {
|
|
|
52
66
|
value: number;
|
|
53
67
|
}[];
|
|
54
68
|
}
|
|
55
|
-
declare function export_default$
|
|
69
|
+
declare function export_default$x(props: HistogramProps): JSX.Element;
|
|
56
70
|
|
|
57
71
|
interface LayoutProps {
|
|
58
72
|
children?: React.ReactNode;
|
|
@@ -60,7 +74,7 @@ interface LayoutProps {
|
|
|
60
74
|
bodyBackgroundColor?: string;
|
|
61
75
|
statusBarStyle?: StatusBarStyle;
|
|
62
76
|
}
|
|
63
|
-
declare function export_default$
|
|
77
|
+
declare function export_default$w(props: LayoutProps): JSX.Element;
|
|
64
78
|
|
|
65
79
|
declare function LoadingIndicator(): JSX.Element;
|
|
66
80
|
|
|
@@ -70,12 +84,12 @@ interface NavigationBarProps {
|
|
|
70
84
|
showCloseButton?: boolean;
|
|
71
85
|
children?: React.ReactNode;
|
|
72
86
|
}
|
|
73
|
-
declare function export_default$
|
|
87
|
+
declare function export_default$v(props: NavigationBarProps): JSX.Element;
|
|
74
88
|
|
|
75
89
|
interface SectionProps {
|
|
76
90
|
children?: React.ReactNode;
|
|
77
91
|
}
|
|
78
|
-
declare function export_default$
|
|
92
|
+
declare function export_default$u(props: SectionProps): JSX.Element | null;
|
|
79
93
|
|
|
80
94
|
interface SegmentedControlProps {
|
|
81
95
|
segments: {
|
|
@@ -85,21 +99,21 @@ interface SegmentedControlProps {
|
|
|
85
99
|
selectedSegment: string;
|
|
86
100
|
onSegmentSelected: Function;
|
|
87
101
|
}
|
|
88
|
-
declare function export_default$
|
|
102
|
+
declare function export_default$t(props: SegmentedControlProps): JSX.Element;
|
|
89
103
|
|
|
90
|
-
declare function export_default$
|
|
104
|
+
declare function export_default$s(): JSX.Element;
|
|
91
105
|
|
|
92
106
|
interface SingleExternalAccountProps {
|
|
93
107
|
externalAccount: ExternalAccount;
|
|
94
108
|
onAccountRemoved: (account: ExternalAccount) => void;
|
|
95
109
|
onReconnectAccount: (account: ExternalAccount) => void;
|
|
96
110
|
}
|
|
97
|
-
declare function export_default$
|
|
111
|
+
declare function export_default$r(props: SingleExternalAccountProps): JSX.Element;
|
|
98
112
|
|
|
99
113
|
interface SingleNotificationProps {
|
|
100
114
|
notification: Notification;
|
|
101
115
|
}
|
|
102
|
-
declare function export_default$
|
|
116
|
+
declare function export_default$q(props: SingleNotificationProps): JSX.Element;
|
|
103
117
|
|
|
104
118
|
interface SingleSurveyTaskProps {
|
|
105
119
|
task: SurveyTask;
|
|
@@ -107,7 +121,7 @@ interface SingleSurveyTaskProps {
|
|
|
107
121
|
hideDueDate?: boolean;
|
|
108
122
|
disableClick?: boolean;
|
|
109
123
|
}
|
|
110
|
-
declare function export_default$
|
|
124
|
+
declare function export_default$p(props: SingleSurveyTaskProps): JSX.Element | null;
|
|
111
125
|
|
|
112
126
|
interface StatusBarBackgroundProps {
|
|
113
127
|
color?: string;
|
|
@@ -117,7 +131,7 @@ declare function StatusBarBackgroundProps(props: StatusBarBackgroundProps): JSX.
|
|
|
117
131
|
interface TextBlockProps {
|
|
118
132
|
children?: React.ReactNode;
|
|
119
133
|
}
|
|
120
|
-
declare function export_default$
|
|
134
|
+
declare function export_default$o(props: TextBlockProps): JSX.Element | null;
|
|
121
135
|
|
|
122
136
|
interface TrackerItemProps {
|
|
123
137
|
selected: boolean;
|
|
@@ -127,14 +141,7 @@ interface TrackerItemProps {
|
|
|
127
141
|
badge?: string;
|
|
128
142
|
onClick?: Function;
|
|
129
143
|
}
|
|
130
|
-
declare function export_default$
|
|
131
|
-
|
|
132
|
-
interface DateRangeNavigatorProps {
|
|
133
|
-
intervalType: "Week" | "Month";
|
|
134
|
-
intervalStart: Date;
|
|
135
|
-
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
136
|
-
}
|
|
137
|
-
declare function export_default$n(props: DateRangeNavigatorProps): JSX.Element;
|
|
144
|
+
declare function export_default$n(props: TrackerItemProps): JSX.Element;
|
|
138
145
|
|
|
139
146
|
interface ConnectEhrProps {
|
|
140
147
|
applicationUrl: ConnectEhrApplicationUrl;
|
|
@@ -202,17 +209,17 @@ declare type ExternalAccountsApplicationUrl = "preview" | string;
|
|
|
202
209
|
declare type ExternalAccountsPreviewPreviewState = "Default";
|
|
203
210
|
declare function export_default$h(props: ExternalAccountsPreviewProps): JSX.Element | null;
|
|
204
211
|
|
|
205
|
-
interface FitbitMonthChartsProps {
|
|
206
|
-
previewState?: FitbitMonthChartsPreviewState;
|
|
207
|
-
}
|
|
208
|
-
declare type FitbitMonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
209
|
-
declare function export_default$g(props: FitbitMonthChartsProps): JSX.Element;
|
|
210
|
-
|
|
211
212
|
interface FitbitDevicesProps {
|
|
212
213
|
previewState?: FitbitDevicesPreviewState;
|
|
213
214
|
}
|
|
214
215
|
declare type FitbitDevicesPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
215
|
-
declare function export_default$
|
|
216
|
+
declare function export_default$g(props: FitbitDevicesProps): JSX.Element | null;
|
|
217
|
+
|
|
218
|
+
interface FitbitMonthChartsProps {
|
|
219
|
+
previewState?: FitbitMonthChartsPreviewState;
|
|
220
|
+
}
|
|
221
|
+
declare type FitbitMonthChartsPreviewState = "notEnabled" | "notConnected" | "connected";
|
|
222
|
+
declare function export_default$f(props: FitbitMonthChartsProps): JSX.Element;
|
|
216
223
|
|
|
217
224
|
interface MostRecentNotificationProps {
|
|
218
225
|
notificationType?: NotificationType;
|
|
@@ -236,24 +243,24 @@ interface PlatformSpecificContentProps {
|
|
|
236
243
|
}
|
|
237
244
|
declare function export_default$c(props: PlatformSpecificContentProps): JSX.Element | null;
|
|
238
245
|
|
|
239
|
-
interface ProviderSearchProps {
|
|
240
|
-
previewState?: ProviderSearchPreviewState;
|
|
241
|
-
providerCategories?: string[];
|
|
242
|
-
}
|
|
243
|
-
declare type ProviderSearchPreviewState = "Default";
|
|
244
|
-
declare function export_default$b(props: ProviderSearchProps): JSX.Element;
|
|
245
|
-
|
|
246
246
|
interface ProjectHeaderProps {
|
|
247
247
|
previewState?: ProjectHeaderPropsPreviewState;
|
|
248
248
|
}
|
|
249
249
|
declare type ProjectHeaderPropsPreviewState = "Default";
|
|
250
|
-
declare function export_default$
|
|
250
|
+
declare function export_default$b(props: ProjectHeaderProps): JSX.Element;
|
|
251
251
|
|
|
252
252
|
interface ProjectSupportProps {
|
|
253
253
|
previewState?: ProjectSupportPropsPreviewState;
|
|
254
254
|
}
|
|
255
255
|
declare type ProjectSupportPropsPreviewState = "Default";
|
|
256
|
-
declare function export_default$
|
|
256
|
+
declare function export_default$a(props: ProjectSupportProps): JSX.Element | null;
|
|
257
|
+
|
|
258
|
+
interface ProviderSearchProps {
|
|
259
|
+
previewState?: ProviderSearchPreviewState;
|
|
260
|
+
providerCategories?: string[];
|
|
261
|
+
}
|
|
262
|
+
declare type ProviderSearchPreviewState = "Default";
|
|
263
|
+
declare function export_default$9(props: ProviderSearchProps): JSX.Element;
|
|
257
264
|
|
|
258
265
|
interface SurveyTaskListProps {
|
|
259
266
|
status: SurveyTaskStatus;
|
|
@@ -332,4 +339,4 @@ declare function export_default$1(props: SurveyTasksViewProps): JSX.Element;
|
|
|
332
339
|
|
|
333
340
|
declare function export_default(callback: Function, delay: number | null): void;
|
|
334
341
|
|
|
335
|
-
export { export_default$
|
|
342
|
+
export { export_default$E as Action, export_default$D as Button, export_default$C as Calendar, export_default$B as Card, export_default$A as CardTitle, export_default$m as ConnectEhr, export_default$7 as ConnectEhrView, export_default$l as ConnectFitbit, export_default$z as DateRangeNavigator, export_default$y as DayTrackerSymbol, export_default$k as DeviceDataMonthChart, export_default$j as DeviceDataMonthCharts, export_default$6 as DeviceDataView, export_default$i as ExternalAccountList, export_default$h as ExternalAccountsPreview, export_default$5 as ExternalAccountsView, export_default$g as FitbitDevices, export_default$f as FitbitMonthCharts, export_default$4 as FitbitView, export_default$x as Histogram, export_default$3 as HomeView, export_default$w as Layout, LoadingIndicator, export_default$e as MostRecentNotification, export_default$v as NavigationBar, export_default$d as NotificationList, export_default$2 as NotificationsView, export_default$c as PlatformSpecificContent, export_default$b as ProjectHeader, export_default$a as ProjectSupport, export_default$9 as ProviderSearch, export_default$9 as RestingHeartRateCalendar, export_default$u as Section, export_default$t as SegmentedControl, export_default$s as ShinyOverlay, export_default$r as SingleExternalAccount, export_default$q as SingleNotification, export_default$p as SingleSurveyTask, StatusBarBackgroundProps as StatusBarBackground, export_default$8 as SurveyTaskList, export_default$1 as SurveyTasksView, export_default$o as TextBlock, export_default$n as TrackerItem, export_default as useInterval };
|