@spteck/fluentui-react-charts 1.0.3 → 1.0.5
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/README.md +255 -0
- package/dist/fluentui-react-charts.cjs.development.js +4 -1
- 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 +4 -1
- package/dist/fluentui-react-charts.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/dashboard/DashBoard.tsx +1 -3
package/package.json
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
1
|
import { Card, CardHeader, Text, Theme } from '@fluentui/react-components';
|
|
4
2
|
import React, {
|
|
5
3
|
useCallback,
|
|
@@ -210,7 +208,7 @@ export const Dashboard: React.FC<IDashboardProps> = ({
|
|
|
210
208
|
|
|
211
209
|
return (
|
|
212
210
|
<>
|
|
213
|
-
<div ref={containerRef} className={styles.dashboardContainer}>
|
|
211
|
+
<div ref={containerRef} className={styles.dashboardContainer} style={{ height: containerHeight }}>
|
|
214
212
|
{renderCards}
|
|
215
213
|
</div>
|
|
216
214
|
</>
|