@careevolution/mydatahelps-ui 1.9.1 → 1.9.2-DarkMode.11
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 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/presentational/ActivityMeter/ActivityMeter.d.ts +1 -0
- package/dist/cjs/types/components/presentational/Button/Button.d.ts +4 -0
- package/dist/cjs/types/components/presentational/Button/Button.stories.d.ts +3 -0
- package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +2 -0
- package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.stories.d.ts +1 -0
- package/dist/cjs/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
- package/dist/cjs/types/components/presentational/Face/Face.stories.d.ts +1 -0
- package/dist/cjs/types/components/presentational/Histogram/Histogram.d.ts +2 -0
- package/dist/cjs/types/components/presentational/Layout/Layout.d.ts +13 -1
- package/dist/cjs/types/components/presentational/LoadingIndicator/LoadingIndicator.d.ts +6 -1
- package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.d.ts +3 -1
- package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.stories.d.ts +2 -0
- package/dist/cjs/types/components/presentational/Section/Section.d.ts +1 -0
- package/dist/cjs/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +2 -0
- package/dist/cjs/types/components/presentational/Switch/Switch.d.ts +1 -0
- package/dist/cjs/types/components/presentational/TextBlock/TextBlock.d.ts +1 -0
- package/dist/cjs/types/components/presentational/TrackerItem/TrackerItem.d.ts +1 -0
- package/dist/cjs/types/components/presentational/UnstyledButton/UnstyledButton.d.ts +11 -0
- package/dist/cjs/types/components/presentational/UnstyledButton/index.d.ts +1 -0
- package/dist/cjs/types/components/presentational/index.d.ts +1 -0
- package/dist/cjs/types/helpers/globalCss.d.ts +4 -0
- package/dist/esm/index.js +11 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/presentational/ActivityMeter/ActivityMeter.d.ts +1 -0
- package/dist/esm/types/components/presentational/Button/Button.d.ts +4 -0
- package/dist/esm/types/components/presentational/Button/Button.stories.d.ts +3 -0
- package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +2 -0
- package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.stories.d.ts +1 -0
- package/dist/esm/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
- package/dist/esm/types/components/presentational/Face/Face.stories.d.ts +1 -0
- package/dist/esm/types/components/presentational/Histogram/Histogram.d.ts +2 -0
- package/dist/esm/types/components/presentational/Layout/Layout.d.ts +13 -1
- package/dist/esm/types/components/presentational/LoadingIndicator/LoadingIndicator.d.ts +6 -1
- package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.d.ts +3 -1
- package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.stories.d.ts +2 -0
- package/dist/esm/types/components/presentational/Section/Section.d.ts +1 -0
- package/dist/esm/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +2 -0
- package/dist/esm/types/components/presentational/Switch/Switch.d.ts +1 -0
- package/dist/esm/types/components/presentational/TextBlock/TextBlock.d.ts +1 -0
- package/dist/esm/types/components/presentational/TrackerItem/TrackerItem.d.ts +1 -0
- package/dist/esm/types/components/presentational/UnstyledButton/UnstyledButton.d.ts +11 -0
- package/dist/esm/types/components/presentational/UnstyledButton/index.d.ts +1 -0
- package/dist/esm/types/components/presentational/index.d.ts +1 -0
- package/dist/esm/types/helpers/globalCss.d.ts +4 -0
- package/dist/index.d.ts +66 -26
- package/package.json +6 -5
|
@@ -4,3 +4,6 @@ declare const _default: ComponentMeta<typeof Button>;
|
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Enabled: ComponentStory<typeof Button>;
|
|
6
6
|
export declare const Disabled: ComponentStory<typeof Button>;
|
|
7
|
+
export declare const CustomColor: ComponentStory<typeof Button>;
|
|
8
|
+
export declare const Loading: ComponentStory<typeof Button>;
|
|
9
|
+
export declare const SubtleVariant: ComponentStory<typeof Button>;
|
|
@@ -4,6 +4,8 @@ import "./DateRangeNavigator.css";
|
|
|
4
4
|
export interface DateRangeNavigatorProps {
|
|
5
5
|
intervalType: "Week" | "Month";
|
|
6
6
|
intervalStart: Date;
|
|
7
|
+
variant?: "default" | "rounded";
|
|
7
8
|
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
9
|
+
className?: string;
|
|
8
10
|
}
|
|
9
11
|
export default function (props: DateRangeNavigatorProps): JSX.Element;
|
package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.stories.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ declare const _default: ComponentMeta<typeof DateRangeNavigator>;
|
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Month: ComponentStory<typeof DateRangeNavigator>;
|
|
6
6
|
export declare const Week: ComponentStory<typeof DateRangeNavigator>;
|
|
7
|
+
export declare const Rounded: ComponentStory<typeof DateRangeNavigator>;
|
|
@@ -3,4 +3,5 @@ import Face from "./Face";
|
|
|
3
3
|
declare const _default: ComponentMeta<typeof Face>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Default: ComponentStory<typeof Face>;
|
|
6
|
+
export declare const Unselected: ComponentStory<typeof Face>;
|
|
6
7
|
export declare const Clickable: ComponentStory<typeof Face>;
|
|
@@ -3,8 +3,20 @@ import { StatusBarStyle } from '@careevolution/mydatahelps-js';
|
|
|
3
3
|
import "./Layout.css";
|
|
4
4
|
export interface LayoutProps {
|
|
5
5
|
children?: React.ReactNode;
|
|
6
|
-
stylesheetPath?: string;
|
|
7
6
|
bodyBackgroundColor?: string;
|
|
7
|
+
primaryColor?: string;
|
|
8
8
|
statusBarStyle?: StatusBarStyle;
|
|
9
|
+
className?: string;
|
|
10
|
+
noGlobalStyles?: boolean;
|
|
11
|
+
colorScheme?: "light" | "dark" | "auto";
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated
|
|
14
|
+
*/
|
|
15
|
+
stylesheetPath?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface LayoutContext {
|
|
18
|
+
colorScheme: "light" | "dark";
|
|
19
|
+
bodyBackgroundColor: string;
|
|
9
20
|
}
|
|
21
|
+
export declare const LayoutContext: React.Context<LayoutContext>;
|
|
10
22
|
export default function (props: LayoutProps): JSX.Element;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import "./LoadingIndicator.css";
|
|
3
3
|
import '@fortawesome/fontawesome-svg-core/styles.css';
|
|
4
|
-
|
|
4
|
+
export interface LoadingIndicatorProps {
|
|
5
|
+
variant?: "default" | "inline";
|
|
6
|
+
color?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
}
|
|
9
|
+
declare function LoadingIndicator(props: LoadingIndicatorProps): JSX.Element;
|
|
5
10
|
export default LoadingIndicator;
|
|
@@ -2,11 +2,13 @@ import React from 'react';
|
|
|
2
2
|
import "./NavigationBar.css";
|
|
3
3
|
import '@fortawesome/fontawesome-svg-core/styles.css';
|
|
4
4
|
export interface NavigationBarProps {
|
|
5
|
-
title
|
|
5
|
+
title?: string;
|
|
6
6
|
showBackButton?: boolean;
|
|
7
7
|
showCloseButton?: boolean;
|
|
8
8
|
children?: React.ReactNode;
|
|
9
9
|
closeButtonText?: string;
|
|
10
10
|
backButtonText?: string;
|
|
11
|
+
className?: string;
|
|
12
|
+
variant?: "default" | "compressed";
|
|
11
13
|
}
|
|
12
14
|
export default function (props: NavigationBarProps): JSX.Element;
|
|
@@ -5,4 +5,6 @@ export default _default;
|
|
|
5
5
|
export declare const Drilldown: ComponentStory<typeof NavigationBar>;
|
|
6
6
|
export declare const Modal: ComponentStory<typeof NavigationBar>;
|
|
7
7
|
export declare const CustomButtons: ComponentStory<typeof NavigationBar>;
|
|
8
|
+
export declare const Compressed: ComponentStory<typeof NavigationBar>;
|
|
8
9
|
export declare const WithDateRangeNavigator: ComponentStory<typeof NavigationBar>;
|
|
10
|
+
export declare const WithRoundedDateRangeNavigator: ComponentStory<typeof NavigationBar>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React, { MouseEventHandler } from "react";
|
|
2
|
+
import "./UnstyledButton.css";
|
|
3
|
+
export interface UnstyledButtonProps {
|
|
4
|
+
onClick: MouseEventHandler;
|
|
5
|
+
className?: string;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
title?: string;
|
|
8
|
+
style?: React.CSSProperties;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export default function (props: UnstyledButtonProps): JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./UnstyledButton";
|
|
@@ -22,4 +22,5 @@ export { default as Switch } from "./Switch";
|
|
|
22
22
|
export { default as StatusBarBackground } from "./StatusBarBackground";
|
|
23
23
|
export { default as TextBlock } from "./TextBlock";
|
|
24
24
|
export { default as TrackerItem } from "./TrackerItem";
|
|
25
|
+
export { default as UnstyledButton } from "./UnstyledButton";
|
|
25
26
|
export { default as WeekCalendar } from "./WeekCalendar";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const core: import("@emotion/utils").SerializedStyles;
|
|
2
|
+
export declare const lightColorScheme: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const darkColorScheme: import("@emotion/utils").SerializedStyles;
|
|
4
|
+
export declare const global: import("@emotion/utils").SerializedStyles;
|
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$W(props: ActionProps): JSX.Element;
|
|
16
16
|
|
|
17
17
|
interface ActivityMeterProps {
|
|
18
18
|
label: string;
|
|
@@ -22,8 +22,9 @@ interface ActivityMeterProps {
|
|
|
22
22
|
averageFillPercent: number;
|
|
23
23
|
color: string;
|
|
24
24
|
message?: string;
|
|
25
|
+
className?: string;
|
|
25
26
|
}
|
|
26
|
-
declare function export_default$
|
|
27
|
+
declare function export_default$V(props: ActivityMeterProps): JSX.Element;
|
|
27
28
|
|
|
28
29
|
interface ButtonProps {
|
|
29
30
|
children?: React.ReactNode;
|
|
@@ -33,8 +34,12 @@ interface ButtonProps {
|
|
|
33
34
|
* */
|
|
34
35
|
disabled?: boolean;
|
|
35
36
|
onClick: Function;
|
|
37
|
+
className?: string;
|
|
38
|
+
color?: string;
|
|
39
|
+
loading?: boolean;
|
|
40
|
+
variant?: "default" | "subtle";
|
|
36
41
|
}
|
|
37
|
-
declare function export_default$
|
|
42
|
+
declare function export_default$U(props: ButtonProps): JSX.Element;
|
|
38
43
|
|
|
39
44
|
interface CalendarProps {
|
|
40
45
|
month: number;
|
|
@@ -42,34 +47,37 @@ interface CalendarProps {
|
|
|
42
47
|
dayRenderer(year: number, month: number, day?: number): JSX.Element | null;
|
|
43
48
|
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
44
49
|
}
|
|
45
|
-
declare function export_default$
|
|
50
|
+
declare function export_default$T(props: CalendarProps): JSX.Element;
|
|
46
51
|
|
|
47
52
|
interface CardProps {
|
|
48
53
|
className?: string;
|
|
49
54
|
children?: React.ReactNode;
|
|
50
55
|
allowOverflow?: boolean;
|
|
51
56
|
}
|
|
52
|
-
declare function export_default$
|
|
57
|
+
declare function export_default$S(props: CardProps): JSX.Element | null;
|
|
53
58
|
|
|
54
59
|
interface CardTitleProps {
|
|
55
60
|
title: string;
|
|
56
61
|
onDetailClick?: Function;
|
|
57
62
|
detailLinkText?: string;
|
|
58
63
|
}
|
|
59
|
-
declare function export_default$
|
|
64
|
+
declare function export_default$R(props: CardTitleProps): JSX.Element;
|
|
60
65
|
|
|
61
66
|
interface DateRangeNavigatorProps {
|
|
62
67
|
intervalType: "Week" | "Month";
|
|
63
68
|
intervalStart: Date;
|
|
69
|
+
variant?: "default" | "rounded";
|
|
64
70
|
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
71
|
+
className?: string;
|
|
65
72
|
}
|
|
66
|
-
declare function export_default$
|
|
73
|
+
declare function export_default$Q(props: DateRangeNavigatorProps): JSX.Element;
|
|
67
74
|
|
|
68
75
|
interface DayTrackerSymbolProps {
|
|
69
76
|
primaryColors: string[];
|
|
70
77
|
secondaryColors: string[];
|
|
78
|
+
className?: string;
|
|
71
79
|
}
|
|
72
|
-
declare function export_default$
|
|
80
|
+
declare function export_default$P(props: DayTrackerSymbolProps): JSX.Element;
|
|
73
81
|
|
|
74
82
|
interface FaceProps {
|
|
75
83
|
faceValue?: number;
|
|
@@ -77,41 +85,58 @@ interface FaceProps {
|
|
|
77
85
|
onClick?: MouseEventHandler;
|
|
78
86
|
className?: string;
|
|
79
87
|
}
|
|
80
|
-
declare function export_default$
|
|
88
|
+
declare function export_default$O(props: FaceProps): JSX.Element;
|
|
81
89
|
|
|
82
90
|
interface HistogramProps {
|
|
83
91
|
entries: {
|
|
84
92
|
label: string;
|
|
85
93
|
color: string;
|
|
86
94
|
value: number;
|
|
95
|
+
onSelect?(): void;
|
|
87
96
|
}[];
|
|
97
|
+
className?: string;
|
|
88
98
|
}
|
|
89
|
-
declare function export_default$
|
|
99
|
+
declare function export_default$N(props: HistogramProps): JSX.Element;
|
|
90
100
|
|
|
91
101
|
interface LayoutProps {
|
|
92
102
|
children?: React.ReactNode;
|
|
93
|
-
stylesheetPath?: string;
|
|
94
103
|
bodyBackgroundColor?: string;
|
|
104
|
+
primaryColor?: string;
|
|
95
105
|
statusBarStyle?: StatusBarStyle;
|
|
106
|
+
className?: string;
|
|
107
|
+
noGlobalStyles?: boolean;
|
|
108
|
+
colorScheme?: "light" | "dark" | "auto";
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated
|
|
111
|
+
*/
|
|
112
|
+
stylesheetPath?: string;
|
|
96
113
|
}
|
|
97
|
-
declare function export_default$
|
|
114
|
+
declare function export_default$M(props: LayoutProps): JSX.Element;
|
|
98
115
|
|
|
99
|
-
|
|
116
|
+
interface LoadingIndicatorProps {
|
|
117
|
+
variant?: "default" | "inline";
|
|
118
|
+
color?: string;
|
|
119
|
+
className?: string;
|
|
120
|
+
}
|
|
121
|
+
declare function LoadingIndicator(props: LoadingIndicatorProps): JSX.Element;
|
|
100
122
|
|
|
101
123
|
interface NavigationBarProps {
|
|
102
|
-
title
|
|
124
|
+
title?: string;
|
|
103
125
|
showBackButton?: boolean;
|
|
104
126
|
showCloseButton?: boolean;
|
|
105
127
|
children?: React.ReactNode;
|
|
106
128
|
closeButtonText?: string;
|
|
107
129
|
backButtonText?: string;
|
|
130
|
+
className?: string;
|
|
131
|
+
variant?: "default" | "compressed";
|
|
108
132
|
}
|
|
109
|
-
declare function export_default$
|
|
133
|
+
declare function export_default$L(props: NavigationBarProps): JSX.Element;
|
|
110
134
|
|
|
111
135
|
interface SectionProps {
|
|
112
136
|
children?: React.ReactNode;
|
|
137
|
+
className?: string;
|
|
113
138
|
}
|
|
114
|
-
declare function export_default$
|
|
139
|
+
declare function export_default$K(props: SectionProps): JSX.Element | null;
|
|
115
140
|
|
|
116
141
|
interface SegmentedControlProps {
|
|
117
142
|
segments: {
|
|
@@ -120,22 +145,24 @@ interface SegmentedControlProps {
|
|
|
120
145
|
}[];
|
|
121
146
|
selectedSegment: string;
|
|
122
147
|
onSegmentSelected: Function;
|
|
148
|
+
className?: string;
|
|
149
|
+
color?: string;
|
|
123
150
|
}
|
|
124
|
-
declare function export_default$
|
|
151
|
+
declare function export_default$J(props: SegmentedControlProps): JSX.Element;
|
|
125
152
|
|
|
126
|
-
declare function export_default$
|
|
153
|
+
declare function export_default$I(): JSX.Element;
|
|
127
154
|
|
|
128
155
|
interface SingleExternalAccountProps {
|
|
129
156
|
externalAccount: ExternalAccount;
|
|
130
157
|
onAccountRemoved: (account: ExternalAccount) => void;
|
|
131
158
|
onReconnectAccount: (account: ExternalAccount) => void;
|
|
132
159
|
}
|
|
133
|
-
declare function export_default$
|
|
160
|
+
declare function export_default$H(props: SingleExternalAccountProps): JSX.Element;
|
|
134
161
|
|
|
135
162
|
interface SingleNotificationProps {
|
|
136
163
|
notification: Notification;
|
|
137
164
|
}
|
|
138
|
-
declare function export_default$
|
|
165
|
+
declare function export_default$G(props: SingleNotificationProps): JSX.Element;
|
|
139
166
|
|
|
140
167
|
interface SingleSurveyTaskProps {
|
|
141
168
|
task: SurveyTask;
|
|
@@ -143,7 +170,7 @@ interface SingleSurveyTaskProps {
|
|
|
143
170
|
hideDueDate?: boolean;
|
|
144
171
|
disableClick?: boolean;
|
|
145
172
|
}
|
|
146
|
-
declare function export_default$
|
|
173
|
+
declare function export_default$F(props: SingleSurveyTaskProps): JSX.Element | null;
|
|
147
174
|
|
|
148
175
|
interface SparkBarChartProps {
|
|
149
176
|
averageFillPercent: number;
|
|
@@ -153,14 +180,15 @@ interface SparkBarChartBar {
|
|
|
153
180
|
color: string;
|
|
154
181
|
barFillPercent: number;
|
|
155
182
|
}
|
|
156
|
-
declare function export_default$
|
|
183
|
+
declare function export_default$E(props: SparkBarChartProps): JSX.Element;
|
|
157
184
|
|
|
158
185
|
interface SwitchProps {
|
|
159
186
|
isOn: Boolean;
|
|
160
187
|
onBackgroundColor?: string;
|
|
161
188
|
onValueChanged(value: boolean): void;
|
|
189
|
+
className?: string;
|
|
162
190
|
}
|
|
163
|
-
declare function export_default$
|
|
191
|
+
declare function export_default$D(props: SwitchProps): JSX.Element;
|
|
164
192
|
|
|
165
193
|
interface StatusBarBackgroundProps {
|
|
166
194
|
color?: string;
|
|
@@ -169,8 +197,9 @@ declare function StatusBarBackgroundProps(props: StatusBarBackgroundProps): JSX.
|
|
|
169
197
|
|
|
170
198
|
interface TextBlockProps {
|
|
171
199
|
children?: React.ReactNode;
|
|
200
|
+
className?: string;
|
|
172
201
|
}
|
|
173
|
-
declare function export_default$
|
|
202
|
+
declare function export_default$C(props: TextBlockProps): JSX.Element | null;
|
|
174
203
|
|
|
175
204
|
interface TrackerItemProps {
|
|
176
205
|
selected: boolean;
|
|
@@ -179,8 +208,19 @@ interface TrackerItemProps {
|
|
|
179
208
|
bordered?: boolean;
|
|
180
209
|
badge?: string;
|
|
181
210
|
onClick?: Function;
|
|
211
|
+
className?: string;
|
|
212
|
+
}
|
|
213
|
+
declare function export_default$B(props: TrackerItemProps): JSX.Element;
|
|
214
|
+
|
|
215
|
+
interface UnstyledButtonProps {
|
|
216
|
+
onClick: MouseEventHandler;
|
|
217
|
+
className?: string;
|
|
218
|
+
children?: React.ReactNode;
|
|
219
|
+
title?: string;
|
|
220
|
+
style?: React.CSSProperties;
|
|
221
|
+
disabled?: boolean;
|
|
182
222
|
}
|
|
183
|
-
declare function export_default$A(props:
|
|
223
|
+
declare function export_default$A(props: UnstyledButtonProps): JSX.Element;
|
|
184
224
|
|
|
185
225
|
interface WeekCalendarProps {
|
|
186
226
|
selectedDate?: Date;
|
|
@@ -503,4 +543,4 @@ declare enum DailyDataType {
|
|
|
503
543
|
RestingHeartRate = "RestingHeartRate"
|
|
504
544
|
}
|
|
505
545
|
|
|
506
|
-
export { export_default$
|
|
546
|
+
export { export_default$W as Action, export_default$V as ActivityMeter, export_default$U as Button, export_default$T as Calendar, export_default$S as Card, export_default$R as CardTitle, export_default$2 as CelebrationStep, export_default$1 as CelebrationStepContainer, export_default$y as ConnectEhr, export_default$j as ConnectEhrView, export_default$x as ConnectFitbit, DailyDataAvailabilityCheck, DailyDataProvider, DailyDataQueryResult, DailyDataType, export_default$Q as DateRangeNavigator, export_default$P as DayTrackerSymbol, DeviceDataChartLine, export_default$w as DeviceDataMonthChart, export_default$v as DeviceDataMonthCharts, export_default$i as DeviceDataView, export_default$u as ExternalAccountList, export_default$t as ExternalAccountsPreview, export_default$h as ExternalAccountsView, export_default$O as Face, export_default$s as FitbitDevices, export_default$r as FitbitMonthCharts, export_default$g as FitbitView, export_default$N as Histogram, export_default$f as HomeView, export_default$M as Layout, LoadingIndicator, export_default$q as MostRecentNotification, export_default$L as NavigationBar, export_default$p as NotificationList, export_default$e as NotificationsView, export_default$o as PlatformSpecificContent, export_default$n as ProjectHeader, export_default$m as ProjectSupport, export_default$l as ProviderSearch, export_default$l as RestingHeartRateCalendar, export_default$K as Section, export_default$J as SegmentedControl, export_default$I as ShinyOverlay, export_default$H as SingleExternalAccount, export_default$G as SingleNotification, export_default$F as SingleSurveyTask, export_default$E as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$8 as StepDetailText, export_default$6 as StepImage, export_default$5 as StepImageIcon, export_default$b as StepLayout, export_default$c as StepMarkdown, export_default$7 as StepNextButton, export_default$9 as StepText, export_default$a as StepTitle, export_default$k as SurveyTaskList, export_default$d as SurveyTasksView, export_default$D as Switch, export_default$C as TextBlock, export_default$B as TrackerItem, export_default$A as UnstyledButton, export_default$z as WeekCalendar, export_default$4 as YouTubeStep, export_default$3 as YouTubeStepContainer, checkDailyDataAvailability, queryDailyData, registerDailyDataProvider, export_default as useInterval };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@careevolution/mydatahelps-ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2-DarkMode.11",
|
|
4
4
|
"description": "MyDataHelps UI Library",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -52,10 +52,11 @@
|
|
|
52
52
|
"typescript": "^4.6.2"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@
|
|
56
|
-
"@fortawesome/
|
|
57
|
-
"@fortawesome/free-
|
|
58
|
-
"@fortawesome/
|
|
55
|
+
"@emotion/react": "^11.7.1",
|
|
56
|
+
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
57
|
+
"@fortawesome/free-regular-svg-icons": "^6.4.0",
|
|
58
|
+
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
59
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
59
60
|
"date-fns": "^2.28.0",
|
|
60
61
|
"html-react-parser": "^3.0.8",
|
|
61
62
|
"markdown-it": "^13.0.1",
|