@spteck/fluentui-react-charts 1.0.0 → 1.0.2
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/components/dashboard/DashBoard.d.ts +1 -1
- package/dist/components/dashboard/IDashboardProps.d.ts +1 -1
- package/dist/components/dashboard/index.d.ts +0 -2
- package/dist/fluentui-react-charts.cjs.development.js +614 -2
- package/dist/fluentui-react-charts.cjs.development.js.map +1 -1
- package/dist/fluentui-react-charts.cjs.production.min.js +1 -1
- package/dist/fluentui-react-charts.cjs.production.min.js.map +1 -1
- package/dist/fluentui-react-charts.esm.js +616 -5
- package/dist/fluentui-react-charts.esm.js.map +1 -1
- package/dist/{components/dashboard → models}/ICardChartContainer.d.ts +2 -2
- package/dist/models/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/components/dashboard/DashBoard.tsx +2 -2
- package/src/components/dashboard/ExampleDashboardUsage.tsx +1 -1
- package/src/components/dashboard/IDashboardProps.tsx +1 -1
- package/src/components/dashboard/index.ts +1 -2
- package/src/{components/dashboard → models}/ICardChartContainer.tsx +2 -2
- package/src/models/index.ts +2 -1
package/dist/models/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ import React, {
|
|
|
9
9
|
useState,
|
|
10
10
|
} from 'react';
|
|
11
11
|
|
|
12
|
-
import { ICardChartContainer } from '
|
|
12
|
+
import { ICardChartContainer } from '../../models/ICardChartContainer';
|
|
13
13
|
import { IDashboardProps } from './IDashboardProps';
|
|
14
14
|
import { NoDashboards } from './NoDashboards';
|
|
15
15
|
import { SelectZoom } from './selectZoom/SelectZoom';
|
|
@@ -19,7 +19,7 @@ import { useGraphUtils } from '../../hooks';
|
|
|
19
19
|
const MINIMUM_DASHBOARD_WIDTH = 600;
|
|
20
20
|
const MAX_ROWS = 4;
|
|
21
21
|
|
|
22
|
-
const Dashboard: React.FC<IDashboardProps> = ({
|
|
22
|
+
export const Dashboard: React.FC<IDashboardProps> = ({
|
|
23
23
|
cardCharts,
|
|
24
24
|
theme,
|
|
25
25
|
containerWidth ,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Text, Theme, webLightTheme } from '@fluentui/react-components';
|
|
2
2
|
|
|
3
3
|
import DashBoard from './DashBoard';
|
|
4
|
-
import { ICardChartContainer } from '
|
|
4
|
+
import { ICardChartContainer } from '../../models/ICardChartContainer';
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { Stack } from '../stack/Stack';
|
|
7
7
|
|
package/src/models/index.ts
CHANGED