@careevolution/mydatahelps-ui 2.2.1-VB3.10 → 2.2.1-VB3.12
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 +8 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/container/DeviceDataMonthChart/DeviceDataMonthChart.d.ts +2 -2
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/DeviceDataMonthChart/DeviceDataMonthChart.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import "./DeviceDataMonthChart.css";
|
|
3
3
|
export interface DeviceDataMonthChartProps {
|
|
4
4
|
lines: DeviceDataChartLine[];
|
|
5
|
-
month
|
|
6
|
-
year
|
|
5
|
+
month: number;
|
|
6
|
+
year: number;
|
|
7
7
|
syncId?: string;
|
|
8
8
|
title?: string;
|
|
9
9
|
previewState?: DeviceDataMonthChartPreviewState;
|
package/dist/index.d.ts
CHANGED
|
@@ -389,8 +389,8 @@ declare function DailyDataChart(props: DailyDataChartProps): React.JSX.Element |
|
|
|
389
389
|
|
|
390
390
|
interface DeviceDataMonthChartProps {
|
|
391
391
|
lines: DeviceDataChartLine[];
|
|
392
|
-
month
|
|
393
|
-
year
|
|
392
|
+
month: number;
|
|
393
|
+
year: number;
|
|
394
394
|
syncId?: string;
|
|
395
395
|
title?: string;
|
|
396
396
|
previewState?: DeviceDataMonthChartPreviewState;
|