@spteck/fluentui-react-charts 1.0.8 → 1.0.10
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/fluentui-react-charts.cjs.development.js +5 -0
- 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 +5 -0
- package/dist/fluentui-react-charts.esm.js.map +1 -1
- package/dist/hooks/useChartUtils.d.ts +1 -0
- package/package.json +3 -3
|
@@ -784,6 +784,7 @@ var getFluentPalette = function getFluentPalette(_theme) {
|
|
|
784
784
|
};
|
|
785
785
|
/**
|
|
786
786
|
* Smart Fluent tooltip generator with chart-type awareness.
|
|
787
|
+
* Optimized for fast performance with reduced animation delays.
|
|
787
788
|
*/
|
|
788
789
|
function createFluentTooltip(theme) {
|
|
789
790
|
var fontFamily = theme.fontFamilyBase;
|
|
@@ -884,6 +885,10 @@ function createFluentTooltip(theme) {
|
|
|
884
885
|
family: fontFamily,
|
|
885
886
|
size: fontSize
|
|
886
887
|
},
|
|
888
|
+
// Performance optimizations for faster tooltip display
|
|
889
|
+
animation: {
|
|
890
|
+
duration: 0
|
|
891
|
+
},
|
|
887
892
|
callbacks: callbacks
|
|
888
893
|
};
|
|
889
894
|
}
|