@advt-gpt-chart/package 0.0.9 → 0.0.11
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/Heatmap/types.d.ts +2 -2
- package/dist/Indicator/styles.d.ts +3 -1
- package/dist/index.es.js +26206 -25848
- package/dist/index.es.js.gz +0 -0
- package/dist/index.umd.js +119 -111
- package/dist/index.umd.js.gz +0 -0
- package/dist/utils/date.d.ts +1 -0
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/dist/index.es.js.br +0 -0
- package/dist/index.umd.js.br +0 -0
package/dist/Heatmap/types.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { BaseVChartConfig, BaseVChartProps, DataItem } from '../types';
|
|
2
2
|
export type HeatmapDataItem = DataItem & {};
|
|
3
3
|
export type HeatmapConfig = BaseVChartConfig & {
|
|
4
|
-
xField: string
|
|
5
|
-
yField: string
|
|
4
|
+
xField: string;
|
|
5
|
+
yField: string;
|
|
6
6
|
valField: string;
|
|
7
7
|
};
|
|
8
8
|
export type HeatmapProps = BaseVChartProps & Partial<HeatmapConfig>;
|
|
@@ -3,5 +3,7 @@ interface StyleProps {
|
|
|
3
3
|
fontSize?: number;
|
|
4
4
|
}
|
|
5
5
|
export declare const IndicatorStyle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyleProps>> & string;
|
|
6
|
-
export declare const CardStyle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("antd").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>,
|
|
6
|
+
export declare const CardStyle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("antd").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>, "ref"> & {
|
|
7
|
+
ref?: ((instance: HTMLElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLElement> | null | undefined;
|
|
8
|
+
}, StyleProps>> & string & Omit<import("react").ForwardRefExoticComponent<import("antd").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
|
|
7
9
|
export {};
|