@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.
@@ -7,6 +7,7 @@ export interface DateRangeCoordinatorProps {
7
7
  variant?: "default" | "rounded";
8
8
  children: React.ReactNode;
9
9
  innerRef?: React.Ref<HTMLDivElement>;
10
+ sticky?: boolean;
10
11
  }
11
12
  export interface DateRangeContext {
12
13
  intervalType: "Week" | "Month";
@@ -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;
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  export interface SymptomSharkLogTodayProps {
3
3
  previewState?: "withLog" | "noLog";
4
4
  innerRef?: React.Ref<HTMLDivElement>;
5
+ onClick(d: Date): void;
5
6
  }
6
7
  export default function (props: SymptomSharkLogTodayProps): React.JSX.Element | null;
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.7.2",
3
+ "version": "2.7.3",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",