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

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 +1 -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 +1 -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 +1 -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 +1 -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 +10 -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,6 @@ export interface ButtonProps {
8
8
  * */
9
9
  disabled?: boolean;
10
10
  onClick: Function;
11
+ className?: string;
11
12
  }
12
13
  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,6 @@ export interface SegmentedControlProps {
7
7
  }[];
8
8
  selectedSegment: string;
9
9
  onSegmentSelected: Function;
10
+ className?: string;
10
11
  }
11
12
  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,7 @@ interface ButtonProps {
33
34
  * */
34
35
  disabled?: boolean;
35
36
  onClick: Function;
37
+ className?: string;
36
38
  }
37
39
  declare function export_default$T(props: ButtonProps): JSX.Element;
38
40
 
@@ -63,12 +65,14 @@ interface DateRangeNavigatorProps {
63
65
  intervalStart: Date;
64
66
  variant?: "default" | "rounded";
65
67
  onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
68
+ className?: string;
66
69
  }
67
70
  declare function export_default$P(props: DateRangeNavigatorProps): JSX.Element;
68
71
 
69
72
  interface DayTrackerSymbolProps {
70
73
  primaryColors: string[];
71
74
  secondaryColors: string[];
75
+ className?: string;
72
76
  }
73
77
  declare function export_default$O(props: DayTrackerSymbolProps): JSX.Element;
74
78
 
@@ -110,11 +114,13 @@ interface NavigationBarProps {
110
114
  children?: React.ReactNode;
111
115
  closeButtonText?: string;
112
116
  backButtonText?: string;
117
+ className?: string;
113
118
  }
114
119
  declare function export_default$K(props: NavigationBarProps): JSX.Element;
115
120
 
116
121
  interface SectionProps {
117
122
  children?: React.ReactNode;
123
+ className?: string;
118
124
  }
119
125
  declare function export_default$J(props: SectionProps): JSX.Element | null;
120
126
 
@@ -125,6 +131,7 @@ interface SegmentedControlProps {
125
131
  }[];
126
132
  selectedSegment: string;
127
133
  onSegmentSelected: Function;
134
+ className?: string;
128
135
  }
129
136
  declare function export_default$I(props: SegmentedControlProps): JSX.Element;
130
137
 
@@ -164,6 +171,7 @@ interface SwitchProps {
164
171
  isOn: Boolean;
165
172
  onBackgroundColor?: string;
166
173
  onValueChanged(value: boolean): void;
174
+ className?: string;
167
175
  }
168
176
  declare function export_default$C(props: SwitchProps): JSX.Element;
169
177
 
@@ -174,6 +182,7 @@ declare function StatusBarBackgroundProps(props: StatusBarBackgroundProps): JSX.
174
182
 
175
183
  interface TextBlockProps {
176
184
  children?: React.ReactNode;
185
+ className?: string;
177
186
  }
178
187
  declare function export_default$B(props: TextBlockProps): JSX.Element | null;
179
188
 
@@ -184,6 +193,7 @@ interface TrackerItemProps {
184
193
  bordered?: boolean;
185
194
  badge?: string;
186
195
  onClick?: Function;
196
+ className?: string;
187
197
  }
188
198
  declare function export_default$A(props: TrackerItemProps): JSX.Element;
189
199
 
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.7",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",