@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.
- package/dist/cjs/index.js +3 -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 +1 -0
- package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +1 -0
- package/dist/cjs/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
- package/dist/cjs/types/components/presentational/NavigationBar/NavigationBar.d.ts +1 -0
- package/dist/cjs/types/components/presentational/Section/Section.d.ts +1 -0
- package/dist/cjs/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +1 -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/esm/index.js +2 -2
- 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 +1 -0
- package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +1 -0
- package/dist/esm/types/components/presentational/DayTrackerSymbol/DayTrackerSymbol.d.ts +1 -0
- package/dist/esm/types/components/presentational/NavigationBar/NavigationBar.d.ts +1 -0
- package/dist/esm/types/components/presentational/Section/Section.d.ts +1 -0
- package/dist/esm/types/components/presentational/SegmentedControl/SegmentedControl.d.ts +1 -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/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -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;
|
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
|
|