@careevolution/mydatahelps-ui 2.7.1-Colors.5 → 2.7.1

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 (38) hide show
  1. package/dist/cjs/index.js +8 -8
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/container/SurveyTaskList/SurveyTaskList.d.ts +0 -7
  4. package/dist/cjs/types/components/presentational/Action/Action.d.ts +0 -3
  5. package/dist/cjs/types/components/presentational/Button/Button.d.ts +2 -6
  6. package/dist/cjs/types/components/presentational/Card/Card.d.ts +0 -3
  7. package/dist/cjs/types/components/presentational/CardTitle/CardTitle.d.ts +0 -2
  8. package/dist/cjs/types/components/presentational/Layout/Layout.d.ts +2 -3
  9. package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.d.ts +0 -4
  10. package/dist/cjs/types/components/presentational/Section/Section.d.ts +0 -3
  11. package/dist/cjs/types/components/presentational/SingleSurveyTask/SingleSurveyTask.d.ts +0 -4
  12. package/dist/cjs/types/components/presentational/TextBlock/TextBlock.d.ts +0 -3
  13. package/dist/cjs/types/components/presentational/Title/Title.d.ts +0 -2
  14. package/dist/cjs/types/components/presentational/ViewHeader/ViewHeader.d.ts +0 -3
  15. package/dist/cjs/types/components/view/BlankView/BlankView.d.ts +1 -6
  16. package/dist/cjs/types/index.d.ts +0 -1
  17. package/dist/esm/index.js +8 -8
  18. package/dist/esm/index.js.map +1 -1
  19. package/dist/esm/types/components/container/SurveyTaskList/SurveyTaskList.d.ts +0 -7
  20. package/dist/esm/types/components/presentational/Action/Action.d.ts +0 -3
  21. package/dist/esm/types/components/presentational/Button/Button.d.ts +2 -6
  22. package/dist/esm/types/components/presentational/Card/Card.d.ts +0 -3
  23. package/dist/esm/types/components/presentational/CardTitle/CardTitle.d.ts +0 -2
  24. package/dist/esm/types/components/presentational/Layout/Layout.d.ts +2 -3
  25. package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.d.ts +0 -4
  26. package/dist/esm/types/components/presentational/Section/Section.d.ts +0 -3
  27. package/dist/esm/types/components/presentational/SingleSurveyTask/SingleSurveyTask.d.ts +0 -4
  28. package/dist/esm/types/components/presentational/TextBlock/TextBlock.d.ts +0 -3
  29. package/dist/esm/types/components/presentational/Title/Title.d.ts +0 -2
  30. package/dist/esm/types/components/presentational/ViewHeader/ViewHeader.d.ts +0 -3
  31. package/dist/esm/types/components/view/BlankView/BlankView.d.ts +1 -6
  32. package/dist/esm/types/index.d.ts +0 -1
  33. package/dist/index.d.ts +6 -41
  34. package/package.json +1 -1
  35. package/dist/cjs/types/components/presentational/TextBlock/TextBlock.stories.d.ts +0 -39
  36. package/dist/cjs/types/helpers/colors.d.ts +0 -5
  37. package/dist/esm/types/components/presentational/TextBlock/TextBlock.stories.d.ts +0 -39
  38. package/dist/esm/types/helpers/colors.d.ts +0 -5
@@ -1,8 +1,6 @@
1
1
  import React from 'react';
2
2
  import "./SurveyTaskList.css";
3
3
  import { SurveyTaskStatus } from "@careevolution/mydatahelps-js";
4
- import { ColorDefinition } from '../../../helpers/colors';
5
- import { ButtonVariant } from '../../presentational/Button/Button';
6
4
  export interface SurveyTaskListProps {
7
5
  status: SurveyTaskStatus;
8
6
  limit?: number;
@@ -12,11 +10,6 @@ export interface SurveyTaskListProps {
12
10
  previewState?: SurveyTaskListListPreviewState;
13
11
  variant?: "noCard" | "singleCard" | "multiCard";
14
12
  innerRef?: React.Ref<HTMLDivElement>;
15
- titleColor?: ColorDefinition;
16
- cardBackgoundColor?: ColorDefinition;
17
- cardStyle?: React.CSSProperties;
18
- buttonVariant?: ButtonVariant;
19
- buttonColor?: ColorDefinition;
20
13
  }
21
14
  export declare type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
22
15
  export default function (props: SurveyTaskListProps): React.JSX.Element | null;
@@ -2,7 +2,6 @@ import React, { ReactElement } from 'react';
2
2
  import '@fortawesome/fontawesome-svg-core/styles.css';
3
3
  import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
4
4
  import "./Action.css";
5
- import { ColorDefinition } from '../../../helpers/colors';
6
5
  export interface ActionProps {
7
6
  title?: string;
8
7
  titleIcon?: ReactElement;
@@ -17,7 +16,5 @@ export interface ActionProps {
17
16
  indicatorPosition?: "default" | "topRight";
18
17
  bottomBorder?: boolean;
19
18
  innerRef?: React.Ref<HTMLButtonElement>;
20
- titleColor?: ColorDefinition;
21
- subtitleColor?: ColorDefinition;
22
19
  }
23
20
  export default function (props: ActionProps): React.JSX.Element;
@@ -1,17 +1,13 @@
1
1
  import React from 'react';
2
2
  import "./Button.css";
3
- import { ColorDefinition } from '../../../helpers/colors';
4
- export declare type ButtonVariant = "default" | "subtle" | "light";
5
3
  export interface ButtonProps {
6
4
  children?: React.ReactNode;
7
5
  disabled?: boolean;
8
6
  onClick: Function;
9
7
  className?: string;
10
- color?: ColorDefinition;
8
+ color?: string;
11
9
  loading?: boolean;
12
- variant?: ButtonVariant;
10
+ variant?: "default" | "subtle" | "light";
13
11
  innerRef?: React.Ref<HTMLButtonElement>;
14
- defaultMargin?: boolean;
15
- fullWidth?: boolean;
16
12
  }
17
13
  export default function (props: ButtonProps): React.JSX.Element;
@@ -1,13 +1,10 @@
1
1
  import React from 'react';
2
2
  import "./Card.css";
3
- import { ColorDefinition } from '../../../helpers/colors';
4
3
  export interface CardProps {
5
4
  className?: string;
6
5
  children?: React.ReactNode;
7
6
  allowOverflow?: boolean;
8
7
  innerRef?: React.Ref<HTMLDivElement>;
9
8
  variant?: "default" | "subtle" | "highlight";
10
- backgroundColor?: ColorDefinition;
11
- style?: React.CSSProperties;
12
9
  }
13
10
  export default function (props: CardProps): React.JSX.Element | null;
@@ -1,11 +1,9 @@
1
1
  import React from 'react';
2
2
  import "./CardTitle.css";
3
- import { ColorDefinition } from '../../../helpers/colors';
4
3
  export interface CardTitleProps {
5
4
  title: string;
6
5
  onDetailClick?: Function;
7
6
  detailLinkText?: string;
8
7
  innerRef?: React.Ref<HTMLDivElement>;
9
- color?: ColorDefinition;
10
8
  }
11
9
  export default function (props: CardTitleProps): React.JSX.Element;
@@ -1,11 +1,10 @@
1
1
  import React from 'react';
2
2
  import { StatusBarStyle } from '@careevolution/mydatahelps-js';
3
3
  import "./Layout.css";
4
- import { ColorDefinition } from '../../../helpers/colors';
5
4
  export interface LayoutProps {
6
5
  children?: React.ReactNode;
7
- bodyBackgroundColor?: ColorDefinition;
8
- primaryColor?: ColorDefinition;
6
+ bodyBackgroundColor?: string;
7
+ primaryColor?: string;
9
8
  statusBarStyle?: StatusBarStyle;
10
9
  className?: string;
11
10
  noGlobalStyles?: boolean;
@@ -1,7 +1,6 @@
1
1
  import React from 'react';
2
2
  import "./NavigationBar.css";
3
3
  import '@fortawesome/fontawesome-svg-core/styles.css';
4
- import { ColorDefinition } from '../../../helpers/colors';
5
4
  export interface NavigationBarProps {
6
5
  title?: string;
7
6
  subtitle?: string;
@@ -12,8 +11,5 @@ export interface NavigationBarProps {
12
11
  backButtonText?: string;
13
12
  className?: string;
14
13
  variant?: "default" | "compressed";
15
- titleColor?: ColorDefinition;
16
- subtitleColor?: ColorDefinition;
17
- buttonColor?: ColorDefinition;
18
14
  }
19
15
  export default function (props: NavigationBarProps): React.JSX.Element;
@@ -1,12 +1,9 @@
1
1
  import React from 'react';
2
2
  import "./Section.css";
3
- import { ColorDefinition } from '../../../helpers/colors';
4
3
  export interface SectionProps {
5
4
  children?: React.ReactNode;
6
5
  className?: string;
7
6
  noTopMargin?: boolean;
8
7
  innerRef?: React.Ref<HTMLDivElement>;
9
- backgroundColor?: ColorDefinition;
10
- style?: React.CSSProperties;
11
8
  }
12
9
  export default function (props: SectionProps): React.JSX.Element | null;
@@ -3,14 +3,10 @@ import "./SingleSurveyTask.css";
3
3
  import { SurveyTask } from "@careevolution/mydatahelps-js";
4
4
  import { IconDefinition } from '@fortawesome/fontawesome-common-types';
5
5
  import '@fortawesome/fontawesome-svg-core/styles.css';
6
- import { ColorDefinition } from '../../../helpers/colors';
7
- import { ButtonVariant } from '../Button/Button';
8
6
  export interface SingleSurveyTaskProps {
9
7
  task: SurveyTask;
10
8
  descriptionIcon?: IconDefinition;
11
9
  disableClick?: boolean;
12
10
  innerRef?: React.Ref<HTMLDivElement>;
13
- buttonColor?: ColorDefinition;
14
- buttonVariant?: ButtonVariant;
15
11
  }
16
12
  export default function (props: SingleSurveyTaskProps): React.JSX.Element | null;
@@ -1,11 +1,8 @@
1
1
  import React from 'react';
2
2
  import "./TextBlock.css";
3
- import { ColorDefinition } from '../../../helpers/colors';
4
3
  export interface TextBlockProps {
5
4
  children?: React.ReactNode;
6
5
  className?: string;
7
6
  innerRef?: React.Ref<HTMLDivElement>;
8
- color?: ColorDefinition;
9
- style?: React.CSSProperties;
10
7
  }
11
8
  export default function (props: TextBlockProps): React.JSX.Element | null;
@@ -1,8 +1,6 @@
1
1
  import React from "react";
2
2
  import "./Title.css";
3
- import { ColorDefinition } from "../../../helpers/colors";
4
3
  export interface TitleProps {
5
- color?: ColorDefinition;
6
4
  order?: 1 | 2 | 3 | 4 | 5 | 6;
7
5
  children?: React.ReactNode;
8
6
  style?: React.CSSProperties;
@@ -1,10 +1,7 @@
1
1
  import React from "react";
2
2
  import "./ViewHeader.css";
3
- import { ColorDefinition } from "../../../helpers/colors";
4
3
  export interface ViewHeaderProps {
5
4
  title?: string;
6
5
  subtitle?: string;
7
- titleColor?: ColorDefinition;
8
- subtitleColor?: ColorDefinition;
9
6
  }
10
7
  export default function (props: ViewHeaderProps): React.JSX.Element | null;
@@ -1,5 +1,4 @@
1
1
  import React from 'react';
2
- import { ColorDefinition } from '../../../helpers/colors';
3
2
  export interface BlankViewProps {
4
3
  children?: React.ReactNode;
5
4
  title?: string;
@@ -7,10 +6,6 @@ export interface BlankViewProps {
7
6
  showCloseButton?: boolean;
8
7
  showBackButton?: boolean;
9
8
  colorScheme?: "auto" | "light" | "dark";
10
- primaryColor?: ColorDefinition;
11
- bodyBackgroundColor?: ColorDefinition;
12
- titleColor?: ColorDefinition;
13
- subtitleColor?: ColorDefinition;
14
- navigationBarButtonColor?: ColorDefinition;
9
+ primaryColor?: string;
15
10
  }
16
11
  export default function (props: BlankViewProps): React.JSX.Element;
@@ -4,4 +4,3 @@ export * from './helpers/query-daily-data';
4
4
  export * from './helpers/language';
5
5
  export { default as getDayKey } from './helpers/get-day-key';
6
6
  export * from './helpers/get-interval-start';
7
- export * from './helpers/colors';
package/dist/index.d.ts CHANGED
@@ -3,12 +3,6 @@ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
3
3
  import { StatusBarStyle, ExternalAccount, Notification, SurveyTask, ExternalAccountStatus, NotificationType, ExternalAccountProvider, SurveyTaskStatus, ParticipantInfo } from '@careevolution/mydatahelps-js';
4
4
  import { IconDefinition as IconDefinition$1 } from '@fortawesome/fontawesome-common-types';
5
5
 
6
- declare type ColorDefinition = string | {
7
- lightMode?: string;
8
- darkMode?: string;
9
- };
10
- declare function resolveColor(colorScheme: "light" | "dark", colorDefinition?: ColorDefinition): string | undefined;
11
-
12
6
  interface ActionProps {
13
7
  title?: string;
14
8
  titleIcon?: ReactElement;
@@ -23,8 +17,6 @@ interface ActionProps {
23
17
  indicatorPosition?: "default" | "topRight";
24
18
  bottomBorder?: boolean;
25
19
  innerRef?: React.Ref<HTMLButtonElement>;
26
- titleColor?: ColorDefinition;
27
- subtitleColor?: ColorDefinition;
28
20
  }
29
21
  declare function export_default$1s(props: ActionProps): React.JSX.Element;
30
22
 
@@ -41,18 +33,15 @@ interface ActivityMeterProps {
41
33
  }
42
34
  declare function export_default$1r(props: ActivityMeterProps): React.JSX.Element;
43
35
 
44
- declare type ButtonVariant = "default" | "subtle" | "light";
45
36
  interface ButtonProps {
46
37
  children?: React.ReactNode;
47
38
  disabled?: boolean;
48
39
  onClick: Function;
49
40
  className?: string;
50
- color?: ColorDefinition;
41
+ color?: string;
51
42
  loading?: boolean;
52
- variant?: ButtonVariant;
43
+ variant?: "default" | "subtle" | "light";
53
44
  innerRef?: React.Ref<HTMLButtonElement>;
54
- defaultMargin?: boolean;
55
- fullWidth?: boolean;
56
45
  }
57
46
  declare function export_default$1q(props: ButtonProps): React.JSX.Element;
58
47
 
@@ -72,8 +61,6 @@ interface CardProps {
72
61
  allowOverflow?: boolean;
73
62
  innerRef?: React.Ref<HTMLDivElement>;
74
63
  variant?: "default" | "subtle" | "highlight";
75
- backgroundColor?: ColorDefinition;
76
- style?: React.CSSProperties;
77
64
  }
78
65
  declare function export_default$1o(props: CardProps): React.JSX.Element | null;
79
66
 
@@ -82,7 +69,6 @@ interface CardTitleProps {
82
69
  onDetailClick?: Function;
83
70
  detailLinkText?: string;
84
71
  innerRef?: React.Ref<HTMLDivElement>;
85
- color?: ColorDefinition;
86
72
  }
87
73
  declare function export_default$1n(props: CardTitleProps): React.JSX.Element;
88
74
 
@@ -142,8 +128,8 @@ declare function export_default$1j(props: HistogramProps): React.JSX.Element;
142
128
 
143
129
  interface LayoutProps {
144
130
  children?: React.ReactNode;
145
- bodyBackgroundColor?: ColorDefinition;
146
- primaryColor?: ColorDefinition;
131
+ bodyBackgroundColor?: string;
132
+ primaryColor?: string;
147
133
  statusBarStyle?: StatusBarStyle;
148
134
  className?: string;
149
135
  noGlobalStyles?: boolean;
@@ -179,9 +165,6 @@ interface NavigationBarProps {
179
165
  backButtonText?: string;
180
166
  className?: string;
181
167
  variant?: "default" | "compressed";
182
- titleColor?: ColorDefinition;
183
- subtitleColor?: ColorDefinition;
184
- buttonColor?: ColorDefinition;
185
168
  }
186
169
  declare function export_default$1h(props: NavigationBarProps): React.JSX.Element;
187
170
 
@@ -198,8 +181,6 @@ interface SectionProps {
198
181
  className?: string;
199
182
  noTopMargin?: boolean;
200
183
  innerRef?: React.Ref<HTMLDivElement>;
201
- backgroundColor?: ColorDefinition;
202
- style?: React.CSSProperties;
203
184
  }
204
185
  declare function export_default$1f(props: SectionProps): React.JSX.Element | null;
205
186
 
@@ -238,8 +219,6 @@ interface SingleSurveyTaskProps {
238
219
  descriptionIcon?: IconDefinition$1;
239
220
  disableClick?: boolean;
240
221
  innerRef?: React.Ref<HTMLDivElement>;
241
- buttonColor?: ColorDefinition;
242
- buttonVariant?: ButtonVariant;
243
222
  }
244
223
  declare function export_default$1a(props: SingleSurveyTaskProps): React.JSX.Element | null;
245
224
 
@@ -273,13 +252,10 @@ interface TextBlockProps {
273
252
  children?: React.ReactNode;
274
253
  className?: string;
275
254
  innerRef?: React.Ref<HTMLDivElement>;
276
- color?: ColorDefinition;
277
- style?: React.CSSProperties;
278
255
  }
279
256
  declare function export_default$17(props: TextBlockProps): React.JSX.Element | null;
280
257
 
281
258
  interface TitleProps {
282
- color?: ColorDefinition;
283
259
  order?: 1 | 2 | 3 | 4 | 5 | 6;
284
260
  children?: React.ReactNode;
285
261
  style?: React.CSSProperties;
@@ -313,8 +289,6 @@ declare function export_default$14(props: UnstyledButtonProps): React.JSX.Elemen
313
289
  interface ViewHeaderProps {
314
290
  title?: string;
315
291
  subtitle?: string;
316
- titleColor?: ColorDefinition;
317
- subtitleColor?: ColorDefinition;
318
292
  }
319
293
  declare function export_default$13(props: ViewHeaderProps): React.JSX.Element | null;
320
294
 
@@ -654,11 +628,6 @@ interface SurveyTaskListProps {
654
628
  previewState?: SurveyTaskListListPreviewState;
655
629
  variant?: "noCard" | "singleCard" | "multiCard";
656
630
  innerRef?: React.Ref<HTMLDivElement>;
657
- titleColor?: ColorDefinition;
658
- cardBackgoundColor?: ColorDefinition;
659
- cardStyle?: React.CSSProperties;
660
- buttonVariant?: ButtonVariant;
661
- buttonColor?: ColorDefinition;
662
631
  }
663
632
  declare type SurveyTaskListListPreviewState = "IncompleteTasks" | "CompleteTasks";
664
633
  declare function export_default$F(props: SurveyTaskListProps): React.JSX.Element | null;
@@ -828,11 +797,7 @@ interface BlankViewProps {
828
797
  showCloseButton?: boolean;
829
798
  showBackButton?: boolean;
830
799
  colorScheme?: "auto" | "light" | "dark";
831
- primaryColor?: ColorDefinition;
832
- bodyBackgroundColor?: ColorDefinition;
833
- titleColor?: ColorDefinition;
834
- subtitleColor?: ColorDefinition;
835
- navigationBarButtonColor?: ColorDefinition;
800
+ primaryColor?: string;
836
801
  }
837
802
  declare function export_default$q(props: BlankViewProps): React.JSX.Element;
838
803
 
@@ -1039,4 +1004,4 @@ declare function language(key: string): string;
1039
1004
 
1040
1005
  declare function getDayKey(date: Date): string;
1041
1006
 
1042
- export { export_default$1s as Action, export_default$1r as ActivityMeter, export_default$11 as AppDownload, AreaChartOptions, BarChartOptions, export_default$q as BlankView, export_default$1q as Button, export_default$1p as Calendar, export_default$1o as Card, export_default$1n as CardTitle, export_default$g as CelebrationStep, export_default$f as CelebrationStepContainer, ColorDefinition, export_default$e as ConnectDeviceAccountStep, export_default$d as ConnectDeviceAccountStepContainer, export_default$10 as ConnectDevicesMenu, export_default$$ as ConnectEhr, export_default$c as ConnectEhrStep, export_default$b as ConnectEhrStepContainer, export_default$p as ConnectEhrView, export_default$_ as ConnectFitbit, export_default$Z as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeNavigatorContext as DateRangeCoordinator, export_default$1m as DateRangeNavigator, export_default$1l as DayTrackerSymbol, DeviceDataChartLine, export_default$Y as DeviceDataMonthChart, export_default$X as DeviceDataMonthCharts, export_default$o as DeviceDataView, export_default$W as ExternalAccountList, export_default$V as ExternalAccountsLoadingIndicator, export_default$U as ExternalAccountsPreview, export_default$n as ExternalAccountsView, export_default$1k as Face, export_default$T as FitbitDevices, export_default$S as FitbitMonthCharts, export_default$m as FitbitView, export_default$R as GarminDevices, export_default$Q as GarminMonthCharts, export_default$l as GarminView, export_default$j as HealthAndWellnessView, export_default$P as HealthPreviewSection, export_default$1j as Histogram, export_default$k as HomeView, export_default$O as LabResultsSummary, export_default$1i as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$N as MostRecentNotification, export_default$1h as NavigationBar, export_default$1g as NotesInput, export_default$M as NotificationList, export_default$i as NotificationsView, export_default$L as PlatformSpecificContent, export_default$K as ProjectHeader, export_default$J as ProjectSupport, export_default$I as ProviderSearch, export_default$H as RelativeActivityToday, export_default$G as RestingHeartRateCalendar, export_default$1f as Section, export_default$1e as SegmentedControl, export_default$1d as ShinyOverlay, export_default$1c as SingleExternalAccount, export_default$1b as SingleNotification, export_default$1a as SingleSurveyTask, export_default$19 as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$a as StepDetailText, export_default$8 as StepImage, export_default$9 as StepImageIcon, export_default$7 as StepLayout, export_default$6 as StepMarkdown, export_default$5 as StepNextButton, export_default$4 as StepText, export_default$3 as StepTitle, export_default$F as SurveyTaskList, export_default$h as SurveyTasksView, export_default$18 as Switch, SymptomConfiguration, SymptomReference, export_default$E as SymptomSharkCalendar, export_default$t as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$C as SymptomSharkLogEntry, export_default$v as SymptomSharkLogEntryEdit, export_default$s as SymptomSharkLogEntryEditView, export_default$x as SymptomSharkLogEntryList, export_default$w as SymptomSharkLogToday, export_default$D as SymptomSharkOverallExperienceChart, export_default$r as SymptomSharkSymptomDetailView, export_default$z as SymptomSharkSymptomSeverityChart, export_default$A as SymptomSharkSymptomSeveritySummary, export_default$y as SymptomSharkSymptomTreatmentFilters, export_default$B as SymptomSharkSymptomTreatmentHistograms, export_default$u as SymptomSharkVisualizationCoordinator, export_default$17 as TextBlock, export_default$16 as Title, export_default$15 as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$14 as UnstyledButton, export_default$13 as ViewHeader, export_default$12 as WeekCalendar, WeekStartsOn, export_default$2 as YouTubeStep, export_default$1 as YouTubeStepContainer, checkDailyDataAvailability, convertToSymptomSharkConfiguration, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, resolveColor, export_default as useInterval };
1007
+ export { export_default$1s as Action, export_default$1r as ActivityMeter, export_default$11 as AppDownload, AreaChartOptions, BarChartOptions, export_default$q as BlankView, export_default$1q as Button, export_default$1p as Calendar, export_default$1o as Card, export_default$1n as CardTitle, export_default$g as CelebrationStep, export_default$f as CelebrationStepContainer, export_default$e as ConnectDeviceAccountStep, export_default$d as ConnectDeviceAccountStepContainer, export_default$10 as ConnectDevicesMenu, export_default$$ as ConnectEhr, export_default$c as ConnectEhrStep, export_default$b as ConnectEhrStepContainer, export_default$p as ConnectEhrView, export_default$_ as ConnectFitbit, export_default$Z as ConnectGarmin, DailyDataAvailabilityCheck, DailyDataChart, DailyDataProvider, DailyDataQueryResult, DailyDataType, DailyLogEntry, DateRangeNavigatorContext as DateRangeCoordinator, export_default$1m as DateRangeNavigator, export_default$1l as DayTrackerSymbol, DeviceDataChartLine, export_default$Y as DeviceDataMonthChart, export_default$X as DeviceDataMonthCharts, export_default$o as DeviceDataView, export_default$W as ExternalAccountList, export_default$V as ExternalAccountsLoadingIndicator, export_default$U as ExternalAccountsPreview, export_default$n as ExternalAccountsView, export_default$1k as Face, export_default$T as FitbitDevices, export_default$S as FitbitMonthCharts, export_default$m as FitbitView, export_default$R as GarminDevices, export_default$Q as GarminMonthCharts, export_default$l as GarminView, export_default$j as HealthAndWellnessView, export_default$P as HealthPreviewSection, export_default$1j as Histogram, export_default$k as HomeView, export_default$O as LabResultsSummary, export_default$1i as Layout, LayoutContext, LineChartOptions, LoadingIndicator, export_default$N as MostRecentNotification, export_default$1h as NavigationBar, export_default$1g as NotesInput, export_default$M as NotificationList, export_default$i as NotificationsView, export_default$L as PlatformSpecificContent, export_default$K as ProjectHeader, export_default$J as ProjectSupport, export_default$I as ProviderSearch, export_default$H as RelativeActivityToday, export_default$G as RestingHeartRateCalendar, export_default$1f as Section, export_default$1e as SegmentedControl, export_default$1d as ShinyOverlay, export_default$1c as SingleExternalAccount, export_default$1b as SingleNotification, export_default$1a as SingleSurveyTask, export_default$19 as SparkBarChart, SparkBarChartBar, StatusBarBackgroundProps as StatusBarBackground, export_default$a as StepDetailText, export_default$8 as StepImage, export_default$9 as StepImageIcon, export_default$7 as StepLayout, export_default$6 as StepMarkdown, export_default$5 as StepNextButton, export_default$4 as StepText, export_default$3 as StepTitle, export_default$F as SurveyTaskList, export_default$h as SurveyTasksView, export_default$18 as Switch, SymptomConfiguration, SymptomReference, export_default$E as SymptomSharkCalendar, export_default$t as SymptomSharkCalendarView, SymptomSharkConfiguration, SymptomSharkDataService, export_default$C as SymptomSharkLogEntry, export_default$v as SymptomSharkLogEntryEdit, export_default$s as SymptomSharkLogEntryEditView, export_default$x as SymptomSharkLogEntryList, export_default$w as SymptomSharkLogToday, export_default$D as SymptomSharkOverallExperienceChart, export_default$r as SymptomSharkSymptomDetailView, export_default$z as SymptomSharkSymptomSeverityChart, export_default$A as SymptomSharkSymptomSeveritySummary, export_default$y as SymptomSharkSymptomTreatmentFilters, export_default$B as SymptomSharkSymptomTreatmentHistograms, export_default$u as SymptomSharkVisualizationCoordinator, export_default$17 as TextBlock, export_default$16 as Title, export_default$15 as TrackerItem, TreatmentConfiguration, TreatmentReference, export_default$14 as UnstyledButton, export_default$13 as ViewHeader, export_default$12 as WeekCalendar, WeekStartsOn, export_default$2 as YouTubeStep, export_default$1 as YouTubeStepContainer, checkDailyDataAvailability, convertToSymptomSharkConfiguration, getDayKey, getMonthStart, getWeekStart, language, queryDailyData, registerDailyDataProvider, export_default as useInterval };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.7.1-Colors.5",
3
+ "version": "2.7.1",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -1,39 +0,0 @@
1
- import React from "react";
2
- import TextBlock, { TextBlockProps } from "./TextBlock";
3
- declare const _default: {
4
- title: string;
5
- component: typeof TextBlock;
6
- parameters: {
7
- layout: string;
8
- };
9
- };
10
- export default _default;
11
- export declare const Default: {
12
- args: {
13
- children: string;
14
- };
15
- render: (args: TextBlockProps) => React.JSX.Element;
16
- };
17
- export declare const CustomStyle: {
18
- args: {
19
- style: {
20
- marginTop: string;
21
- marginBottom: string;
22
- fontWeight: string;
23
- };
24
- children: string;
25
- };
26
- render: (args: TextBlockProps) => React.JSX.Element;
27
- };
28
- export declare const CustomColor: {
29
- args: {
30
- style: {
31
- marginTop: string;
32
- marginBottom: string;
33
- color: string;
34
- };
35
- color: string;
36
- children: string;
37
- };
38
- render: (args: TextBlockProps) => React.JSX.Element;
39
- };
@@ -1,5 +0,0 @@
1
- export declare type ColorDefinition = string | {
2
- lightMode?: string;
3
- darkMode?: string;
4
- };
5
- export declare function resolveColor(colorScheme: "light" | "dark", colorDefinition?: ColorDefinition): string | undefined;
@@ -1,39 +0,0 @@
1
- import React from "react";
2
- import TextBlock, { TextBlockProps } from "./TextBlock";
3
- declare const _default: {
4
- title: string;
5
- component: typeof TextBlock;
6
- parameters: {
7
- layout: string;
8
- };
9
- };
10
- export default _default;
11
- export declare const Default: {
12
- args: {
13
- children: string;
14
- };
15
- render: (args: TextBlockProps) => React.JSX.Element;
16
- };
17
- export declare const CustomStyle: {
18
- args: {
19
- style: {
20
- marginTop: string;
21
- marginBottom: string;
22
- fontWeight: string;
23
- };
24
- children: string;
25
- };
26
- render: (args: TextBlockProps) => React.JSX.Element;
27
- };
28
- export declare const CustomColor: {
29
- args: {
30
- style: {
31
- marginTop: string;
32
- marginBottom: string;
33
- color: string;
34
- };
35
- color: string;
36
- children: string;
37
- };
38
- render: (args: TextBlockProps) => React.JSX.Element;
39
- };
@@ -1,5 +0,0 @@
1
- export declare type ColorDefinition = string | {
2
- lightMode?: string;
3
- darkMode?: string;
4
- };
5
- export declare function resolveColor(colorScheme: "light" | "dark", colorDefinition?: ColorDefinition): string | undefined;