@careevolution/mydatahelps-ui 2.7.2 → 2.7.3
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/presentational/DateRangeCoordinator/DateRangeCoordinator.d.ts +1 -0
- package/dist/cjs/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +1 -0
- package/dist/cjs/types/components/symptom-shark/container/LogToday/LogToday.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/DateRangeCoordinator/DateRangeCoordinator.d.ts +1 -0
- package/dist/esm/types/components/presentational/DateRangeNavigator/DateRangeNavigator.d.ts +1 -0
- package/dist/esm/types/components/symptom-shark/container/LogToday/LogToday.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -8,5 +8,6 @@ export interface DateRangeNavigatorProps {
|
|
|
8
8
|
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
9
9
|
className?: string;
|
|
10
10
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
11
|
+
sticky?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export default function (props: DateRangeNavigatorProps): React.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ interface DateRangeCoordinatorProps {
|
|
|
83
83
|
variant?: "default" | "rounded";
|
|
84
84
|
children: React.ReactNode;
|
|
85
85
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
86
|
+
sticky?: boolean;
|
|
86
87
|
}
|
|
87
88
|
declare function DateRangeNavigatorContext(props: DateRangeCoordinatorProps): React.JSX.Element;
|
|
88
89
|
|
|
@@ -93,6 +94,7 @@ interface DateRangeNavigatorProps {
|
|
|
93
94
|
onIntervalChange(newIntervalStart: Date, newIntervalEnd: Date): void;
|
|
94
95
|
className?: string;
|
|
95
96
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
97
|
+
sticky?: boolean;
|
|
96
98
|
}
|
|
97
99
|
declare function export_default$1m(props: DateRangeNavigatorProps): React.JSX.Element;
|
|
98
100
|
|
|
@@ -748,6 +750,7 @@ declare function export_default$x(props: SymptomSharkLogEntryListProps): React.J
|
|
|
748
750
|
interface SymptomSharkLogTodayProps {
|
|
749
751
|
previewState?: "withLog" | "noLog";
|
|
750
752
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
753
|
+
onClick(d: Date): void;
|
|
751
754
|
}
|
|
752
755
|
declare function export_default$w(props: SymptomSharkLogTodayProps): React.JSX.Element | null;
|
|
753
756
|
|