@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.
Files changed (48) hide show
  1. package/dist/cjs/index.js +11 -3
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/presentational/ActivityMeter/ActivityMeter.d.ts +1 -0
  4. package/dist/cjs/types/components/presentational/Button/Button.d.ts +4 -0
  5. package/dist/cjs/types/components/presentational/Button/Button.stories.d.ts +3 -0
  6. package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +2 -0
  7. package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.stories.d.ts +1 -0
  8. package/dist/cjs/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
  9. package/dist/cjs/types/components/presentational/Face/Face.stories.d.ts +1 -0
  10. package/dist/cjs/types/components/presentational/Histogram/Histogram.d.ts +2 -0
  11. package/dist/cjs/types/components/presentational/Layout/Layout.d.ts +13 -1
  12. package/dist/cjs/types/components/presentational/LoadingIndicator/LoadingIndicator.d.ts +6 -1
  13. package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.d.ts +3 -1
  14. package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.stories.d.ts +2 -0
  15. package/dist/cjs/types/components/presentational/Section/Section.d.ts +1 -0
  16. package/dist/cjs/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +2 -0
  17. package/dist/cjs/types/components/presentational/Switch/Switch.d.ts +1 -0
  18. package/dist/cjs/types/components/presentational/TextBlock/TextBlock.d.ts +1 -0
  19. package/dist/cjs/types/components/presentational/TrackerItem/TrackerItem.d.ts +1 -0
  20. package/dist/cjs/types/components/presentational/UnstyledButton/UnstyledButton.d.ts +11 -0
  21. package/dist/cjs/types/components/presentational/UnstyledButton/index.d.ts +1 -0
  22. package/dist/cjs/types/components/presentational/index.d.ts +1 -0
  23. package/dist/cjs/types/helpers/globalCss.d.ts +4 -0
  24. package/dist/esm/index.js +11 -3
  25. package/dist/esm/index.js.map +1 -1
  26. package/dist/esm/types/components/presentational/ActivityMeter/ActivityMeter.d.ts +1 -0
  27. package/dist/esm/types/components/presentational/Button/Button.d.ts +4 -0
  28. package/dist/esm/types/components/presentational/Button/Button.stories.d.ts +3 -0
  29. package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +2 -0
  30. package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.stories.d.ts +1 -0
  31. package/dist/esm/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
  32. package/dist/esm/types/components/presentational/Face/Face.stories.d.ts +1 -0
  33. package/dist/esm/types/components/presentational/Histogram/Histogram.d.ts +2 -0
  34. package/dist/esm/types/components/presentational/Layout/Layout.d.ts +13 -1
  35. package/dist/esm/types/components/presentational/LoadingIndicator/LoadingIndicator.d.ts +6 -1
  36. package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.d.ts +3 -1
  37. package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.stories.d.ts +2 -0
  38. package/dist/esm/types/components/presentational/Section/Section.d.ts +1 -0
  39. package/dist/esm/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +2 -0
  40. package/dist/esm/types/components/presentational/Switch/Switch.d.ts +1 -0
  41. package/dist/esm/types/components/presentational/TextBlock/TextBlock.d.ts +1 -0
  42. package/dist/esm/types/components/presentational/TrackerItem/TrackerItem.d.ts +1 -0
  43. package/dist/esm/types/components/presentational/UnstyledButton/UnstyledButton.d.ts +11 -0
  44. package/dist/esm/types/components/presentational/UnstyledButton/index.d.ts +1 -0
  45. package/dist/esm/types/components/presentational/index.d.ts +1 -0
  46. package/dist/esm/types/helpers/globalCss.d.ts +4 -0
  47. package/dist/index.d.ts +66 -26
  48. package/package.json +6 -5
@@ -8,5 +8,6 @@ export interface ActivityMeterProps {
8
8
  averageFillPercent: number;
9
9
  color: string;
10
10
  message?: string;
11
+ className?: string;
11
12
  }
12
13
  export default function (props: ActivityMeterProps): JSX.Element;
@@ -8,5 +8,9 @@ export interface ButtonProps {
8
8
  * */
9
9
  disabled?: boolean;
10
10
  onClick: Function;
11
+ className?: string;
12
+ color?: string;
13
+ loading?: boolean;
14
+ variant?: "default" | "subtle";
11
15
  }
12
16
  export default function (props: ButtonProps): JSX.Element;
@@ -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;
@@ -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,5 +3,6 @@ import "./DayTrackerSymbol.css";
3
3
  export interface DayTrackerSymbolProps {
4
4
  primaryColors: string[];
5
5
  secondaryColors: string[];
6
+ className?: string;
6
7
  }
7
8
  export default function (props: DayTrackerSymbolProps): JSX.Element;
@@ -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>;
@@ -5,6 +5,8 @@ export interface HistogramProps {
5
5
  label: string;
6
6
  color: string;
7
7
  value: number;
8
+ onSelect?(): void;
8
9
  }[];
10
+ className?: string;
9
11
  }
10
12
  export default function (props: HistogramProps): JSX.Element;
@@ -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
- declare function LoadingIndicator(): JSX.Element;
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: string;
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>;
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  import "./Section.css";
3
3
  export interface SectionProps {
4
4
  children?: React.ReactNode;
5
+ className?: string;
5
6
  }
6
7
  export default function (props: SectionProps): JSX.Element | null;
@@ -7,5 +7,7 @@ export interface SegmentedControlProps {
7
7
  }[];
8
8
  selectedSegment: string;
9
9
  onSegmentSelected: Function;
10
+ className?: string;
11
+ color?: string;
10
12
  }
11
13
  export default function (props: SegmentedControlProps): JSX.Element;
@@ -4,5 +4,6 @@ export interface SwitchProps {
4
4
  isOn: Boolean;
5
5
  onBackgroundColor?: string;
6
6
  onValueChanged(value: boolean): void;
7
+ className?: string;
7
8
  }
8
9
  export default function (props: SwitchProps): JSX.Element;
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  import "./TextBlock.css";
3
3
  export interface TextBlockProps {
4
4
  children?: React.ReactNode;
5
+ className?: string;
5
6
  }
6
7
  export default function (props: TextBlockProps): JSX.Element | null;
@@ -7,5 +7,6 @@ export interface TrackerItemProps {
7
7
  bordered?: boolean;
8
8
  badge?: string;
9
9
  onClick?: Function;
10
+ className?: string;
10
11
  }
11
12
  export default function (props: TrackerItemProps): JSX.Element;
@@ -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$V(props: ActionProps): JSX.Element;
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$U(props: ActivityMeterProps): JSX.Element;
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$T(props: ButtonProps): JSX.Element;
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$S(props: CalendarProps): JSX.Element;
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$R(props: CardProps): JSX.Element | null;
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$Q(props: CardTitleProps): JSX.Element;
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$P(props: DateRangeNavigatorProps): JSX.Element;
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$O(props: DayTrackerSymbolProps): JSX.Element;
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$N(props: FaceProps): JSX.Element;
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$M(props: HistogramProps): JSX.Element;
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$L(props: LayoutProps): JSX.Element;
114
+ declare function export_default$M(props: LayoutProps): JSX.Element;
98
115
 
99
- declare function LoadingIndicator(): JSX.Element;
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: string;
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$K(props: NavigationBarProps): JSX.Element;
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$J(props: SectionProps): JSX.Element | null;
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$I(props: SegmentedControlProps): JSX.Element;
151
+ declare function export_default$J(props: SegmentedControlProps): JSX.Element;
125
152
 
126
- declare function export_default$H(): JSX.Element;
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$G(props: SingleExternalAccountProps): JSX.Element;
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$F(props: SingleNotificationProps): JSX.Element;
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$E(props: SingleSurveyTaskProps): JSX.Element | null;
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$D(props: SparkBarChartProps): JSX.Element;
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$C(props: SwitchProps): JSX.Element;
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$B(props: TextBlockProps): JSX.Element | null;
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: TrackerItemProps): JSX.Element;
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$V as Action, export_default$U as ActivityMeter, export_default$T as Button, export_default$S as Calendar, export_default$R as Card, export_default$Q 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$P as DateRangeNavigator, export_default$O 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$N as Face, export_default$s as FitbitDevices, export_default$r as FitbitMonthCharts, export_default$g as FitbitView, export_default$M as Histogram, export_default$f as HomeView, export_default$L as Layout, LoadingIndicator, export_default$q as MostRecentNotification, export_default$K 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$J as Section, export_default$I as SegmentedControl, export_default$H as ShinyOverlay, export_default$G as SingleExternalAccount, export_default$F as SingleNotification, export_default$E as SingleSurveyTask, export_default$D 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$C as Switch, export_default$B as TextBlock, export_default$A as TrackerItem, export_default$z as WeekCalendar, export_default$4 as YouTubeStep, export_default$3 as YouTubeStepContainer, checkDailyDataAvailability, queryDailyData, registerDailyDataProvider, export_default as useInterval };
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.1",
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
- "@fortawesome/fontawesome-svg-core": "^6.0.0",
56
- "@fortawesome/free-regular-svg-icons": "^6.0.0",
57
- "@fortawesome/free-solid-svg-icons": "^6.0.0",
58
- "@fortawesome/react-fontawesome": "^0.1.17",
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",