@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.
- 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 +2 -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 +2 -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 +2 -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 +2 -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 +12 -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,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
|
|