@advt-gpt-chart/package 3.2.6 → 3.2.8
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/Chart/ChartWrapper/ChartHeader.d.ts +2 -1
- package/dist/Chart/ChartWrapper/ChartMenu.d.ts +2 -1
- package/dist/Charts/common/hooks/useDashLine.d.ts +2 -1
- package/dist/index.es.js +553 -531
- package/dist/index.es.js.gz +0 -0
- package/dist/index.umd.js +20 -20
- package/dist/index.umd.js.gz +0 -0
- package/dist/utils/downloadAsImage.d.ts +3 -3
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
|
@@ -2,10 +2,10 @@ import { SyntheticEvent } from 'react';
|
|
|
2
2
|
/**
|
|
3
3
|
* Create an event handler for turning an element into an image
|
|
4
4
|
*
|
|
5
|
-
* @param
|
|
5
|
+
* @param selectorOrElement css selector or DOM element of the parent element which should be turned into image
|
|
6
6
|
* @param description name or a short description of what is being printed.
|
|
7
|
-
* Value will be normalized, and a date as well as a file extension will be added.
|
|
7
|
+
* Value will be normalized, and a date stamp as well as a file extension will be added.
|
|
8
8
|
* @param isExactSelector if false, searches for the closest ancestor that matches selector.
|
|
9
9
|
* @returns event handler
|
|
10
10
|
*/
|
|
11
|
-
export default function downloadAsImage(
|
|
11
|
+
export default function downloadAsImage(selectorOrElement: string | HTMLElement, description: string, isExactSelector?: boolean): (event?: SyntheticEvent) => Promise<void> | null;
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const version = "3.2.
|
|
1
|
+
declare const version = "3.2.8";
|
|
2
2
|
export default version;
|