@partex/one-core 2.1.28 → 2.1.31
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.
|
@@ -16,8 +16,6 @@ declare const _default: {
|
|
|
16
16
|
};
|
|
17
17
|
lineStyle: {
|
|
18
18
|
width: number;
|
|
19
|
-
shadowBlur: number;
|
|
20
|
-
shadowOffsetY: number;
|
|
21
19
|
};
|
|
22
20
|
label: {
|
|
23
21
|
color: string;
|
|
@@ -40,9 +38,6 @@ declare const _default: {
|
|
|
40
38
|
color: string;
|
|
41
39
|
};
|
|
42
40
|
itemStyle: {
|
|
43
|
-
shadowBlur: number;
|
|
44
|
-
shadowOffsetX: number;
|
|
45
|
-
shadowOffsetY: number;
|
|
46
41
|
borderRadius: number[];
|
|
47
42
|
barBorderWidth: number;
|
|
48
43
|
barBorderColor: string;
|
|
@@ -16,9 +16,6 @@ declare const _default: {
|
|
|
16
16
|
};
|
|
17
17
|
lineStyle: {
|
|
18
18
|
width: number;
|
|
19
|
-
shadowColor: string;
|
|
20
|
-
shadowBlur: number;
|
|
21
|
-
shadowOffsetY: number;
|
|
22
19
|
};
|
|
23
20
|
label: {
|
|
24
21
|
color: string;
|
|
@@ -37,10 +34,6 @@ declare const _default: {
|
|
|
37
34
|
borderRadius: number[];
|
|
38
35
|
};
|
|
39
36
|
itemStyle: {
|
|
40
|
-
shadowColor: string;
|
|
41
|
-
shadowBlur: number;
|
|
42
|
-
shadowOffsetX: number;
|
|
43
|
-
shadowOffsetY: number;
|
|
44
37
|
borderRadius: number[];
|
|
45
38
|
barBorderWidth: number;
|
|
46
39
|
barBorderColor: string;
|
|
@@ -2,6 +2,7 @@ import { AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
|
2
2
|
import { Fetch } from './interface';
|
|
3
3
|
|
|
4
4
|
export { fnCancelFetch } from './utils/fetch';
|
|
5
|
+
export declare const setBaseUrl: (url: string) => void;
|
|
5
6
|
export declare const GET: Fetch;
|
|
6
7
|
export declare const POST: Fetch;
|
|
7
8
|
export declare const CUSTOM: (options: AxiosRequestConfig) => Promise< AxiosResponse<any, any>>;
|