@careevolution/mydatahelps-ui 1.9.2-DarkMode.6 → 1.9.2-DarkMode.8

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 (26) hide show
  1. package/dist/cjs/index.js +3 -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 +2 -0
  5. package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +1 -0
  6. package/dist/cjs/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
  7. package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.d.ts +1 -0
  8. package/dist/cjs/types/components/presentational/Section/Section.d.ts +1 -0
  9. package/dist/cjs/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +2 -0
  10. package/dist/cjs/types/components/presentational/Switch/Switch.d.ts +1 -0
  11. package/dist/cjs/types/components/presentational/TextBlock/TextBlock.d.ts +1 -0
  12. package/dist/cjs/types/components/presentational/TrackerItem/TrackerItem.d.ts +1 -0
  13. package/dist/esm/index.js +2 -2
  14. package/dist/esm/index.js.map +1 -1
  15. package/dist/esm/types/components/presentational/ActivityMeter/ActivityMeter.d.ts +1 -0
  16. package/dist/esm/types/components/presentational/Button/Button.d.ts +2 -0
  17. package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +1 -0
  18. package/dist/esm/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
  19. package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.d.ts +1 -0
  20. package/dist/esm/types/components/presentational/Section/Section.d.ts +1 -0
  21. package/dist/esm/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +2 -0
  22. package/dist/esm/types/components/presentational/Switch/Switch.d.ts +1 -0
  23. package/dist/esm/types/components/presentational/TextBlock/TextBlock.d.ts +1 -0
  24. package/dist/esm/types/components/presentational/TrackerItem/TrackerItem.d.ts +1 -0
  25. package/dist/index.d.ts +12 -0
  26. package/package.json +1 -1
@@ -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,7 @@ export interface ButtonProps {
8
8
  * */
9
9
  disabled?: boolean;
10
10
  onClick: Function;
11
+ className?: string;
12
+ color?: string;
11
13
  }
12
14
  export default function (props: ButtonProps): JSX.Element;
@@ -6,5 +6,6 @@ export interface DateRangeNavigatorProps {
6
6
  intervalStart: Date;
7
7
  variant?: "default" | "rounded";
8
8
  onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
9
+ className?: string;
9
10
  }
10
11
  export default function (props: DateRangeNavigatorProps): JSX.Element;
@@ -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;
@@ -8,5 +8,6 @@ export interface NavigationBarProps {
8
8
  children?: React.ReactNode;
9
9
  closeButtonText?: string;
10
10
  backButtonText?: string;
11
+ className?: string;
11
12
  }
12
13
  export default function (props: NavigationBarProps): JSX.Element;
@@ -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;
package/dist/index.d.ts CHANGED
@@ -22,6 +22,7 @@ interface ActivityMeterProps {
22
22
  averageFillPercent: number;
23
23
  color: string;
24
24
  message?: string;
25
+ className?: string;
25
26
  }
26
27
  declare function export_default$U(props: ActivityMeterProps): JSX.Element;
27
28
 
@@ -33,6 +34,8 @@ interface ButtonProps {
33
34
  * */
34
35
  disabled?: boolean;
35
36
  onClick: Function;
37
+ className?: string;
38
+ color?: string;
36
39
  }
37
40
  declare function export_default$T(props: ButtonProps): JSX.Element;
38
41
 
@@ -63,12 +66,14 @@ interface DateRangeNavigatorProps {
63
66
  intervalStart: Date;
64
67
  variant?: "default" | "rounded";
65
68
  onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
69
+ className?: string;
66
70
  }
67
71
  declare function export_default$P(props: DateRangeNavigatorProps): JSX.Element;
68
72
 
69
73
  interface DayTrackerSymbolProps {
70
74
  primaryColors: string[];
71
75
  secondaryColors: string[];
76
+ className?: string;
72
77
  }
73
78
  declare function export_default$O(props: DayTrackerSymbolProps): JSX.Element;
74
79
 
@@ -110,11 +115,13 @@ interface NavigationBarProps {
110
115
  children?: React.ReactNode;
111
116
  closeButtonText?: string;
112
117
  backButtonText?: string;
118
+ className?: string;
113
119
  }
114
120
  declare function export_default$K(props: NavigationBarProps): JSX.Element;
115
121
 
116
122
  interface SectionProps {
117
123
  children?: React.ReactNode;
124
+ className?: string;
118
125
  }
119
126
  declare function export_default$J(props: SectionProps): JSX.Element | null;
120
127
 
@@ -125,6 +132,8 @@ interface SegmentedControlProps {
125
132
  }[];
126
133
  selectedSegment: string;
127
134
  onSegmentSelected: Function;
135
+ className?: string;
136
+ color?: string;
128
137
  }
129
138
  declare function export_default$I(props: SegmentedControlProps): JSX.Element;
130
139
 
@@ -164,6 +173,7 @@ interface SwitchProps {
164
173
  isOn: Boolean;
165
174
  onBackgroundColor?: string;
166
175
  onValueChanged(value: boolean): void;
176
+ className?: string;
167
177
  }
168
178
  declare function export_default$C(props: SwitchProps): JSX.Element;
169
179
 
@@ -174,6 +184,7 @@ declare function StatusBarBackgroundProps(props: StatusBarBackgroundProps): JSX.
174
184
 
175
185
  interface TextBlockProps {
176
186
  children?: React.ReactNode;
187
+ className?: string;
177
188
  }
178
189
  declare function export_default$B(props: TextBlockProps): JSX.Element | null;
179
190
 
@@ -184,6 +195,7 @@ interface TrackerItemProps {
184
195
  bordered?: boolean;
185
196
  badge?: string;
186
197
  onClick?: Function;
198
+ className?: string;
187
199
  }
188
200
  declare function export_default$A(props: TrackerItemProps): JSX.Element;
189
201
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "1.9.2-DarkMode.6",
3
+ "version": "1.9.2-DarkMode.8",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",