@ecan-bi/datav 1.0.21 → 1.0.24
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/_utils/constant.d.ts +3 -7
- package/dist/_utils/diagramParam.d.ts +145 -0
- package/dist/_utils/hooks/index.d.ts +2 -0
- package/dist/_utils/hooks/usePageUrl.d.ts +2 -0
- package/dist/_utils/hooks/useRequestDiagram.d.ts +5 -0
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +17 -0
- package/dist/_utils/hooks/useVariablesInText.d.ts +4 -0
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/propsDiagram.d.ts +52 -0
- package/dist/common/Skeleton/Skeleton.vue.d.ts +1 -7
- package/dist/components.d.ts +1 -0
- package/dist/container/border/Border.vue.d.ts +360 -0
- package/dist/container/border/props.d.ts +11 -10
- package/dist/container/card/props.d.ts +9 -9
- package/dist/container/modal/Modal.vue.d.ts +2 -0
- package/dist/control/button/Button.vue.d.ts +13 -13
- package/dist/control/button/props.d.ts +9 -9
- package/dist/control/date-picker/DatePicker.vue.d.ts +13 -13
- package/dist/control/date-picker/props.d.ts +9 -9
- package/dist/control/input/Input.vue.d.ts +13 -13
- package/dist/control/input/props.d.ts +9 -9
- package/dist/control/range-picker/RangePicker.vue.d.ts +13 -13
- package/dist/control/range-picker/props.d.ts +9 -9
- package/dist/control/select/Select.vue.d.ts +13 -13
- package/dist/control/select/props.d.ts +9 -9
- package/dist/control/tabs/Tabs.vue.d.ts +10 -10
- package/dist/control/tabs/props.d.ts +7 -7
- package/dist/graph/bar/Bar.vue.d.ts +1800 -59
- package/dist/graph/bar/props.d.ts +1794 -55
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +13 -13
- package/dist/graph/combo-graph/props.d.ts +9 -9
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +13 -13
- package/dist/graph/custom-graph/props.d.ts +9 -9
- package/dist/graph/line/Line.vue.d.ts +13 -13
- package/dist/graph/line/props.d.ts +9 -9
- package/dist/graph/pie/Pie.vue.d.ts +14 -13
- package/dist/graph/pie/props.d.ts +9 -9
- package/dist/graph/scatter/Scatter.vue.d.ts +213 -17
- package/dist/graph/scatter/props.d.ts +126 -9
- package/dist/index.esm.js +1 -15
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -15
- package/dist/index.umd.js.map +1 -1
- package/dist/map/index.d.ts +1 -0
- package/dist/map/map/Map.vue.d.ts +710 -0
- package/dist/map/map/index.d.ts +3 -0
- package/dist/map/map/props.d.ts +514 -0
- package/dist/media/image/Image.vue.d.ts +53 -13
- package/dist/media/image/props.d.ts +39 -9
- package/dist/table/table/Table.vue.d.ts +1401 -51
- package/dist/table/table/props.d.ts +1392 -45
- package/dist/text/index.d.ts +1 -0
- package/dist/text/list/List.vue.d.ts +13 -13
- package/dist/text/list/props.d.ts +9 -9
- package/dist/text/proportion/Proportion.vue.d.ts +524 -0
- package/dist/text/proportion/index.d.ts +3 -0
- package/dist/text/proportion/props.d.ts +395 -0
- package/dist/text/text/Text.vue.d.ts +68 -51
- package/dist/text/text/props.d.ts +25 -13
- package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -13
- package/dist/text/time-display/props.d.ts +9 -9
- package/package.json +1 -1
|
@@ -2,10 +2,6 @@ export declare const EVENT_BUS = "EVENT_BUS";
|
|
|
2
2
|
export declare const GLOBAL_CONFIG = "GLOBAL_CONFIG";
|
|
3
3
|
export declare const GLOBAL_MODEL = "GLOBAL_MODEL";
|
|
4
4
|
export declare const REQUEST_MODEL = "REQUEST_MODEL";
|
|
5
|
-
export declare const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
textColor: string;
|
|
9
|
-
maskColor: string;
|
|
10
|
-
lineWidth: number;
|
|
11
|
-
};
|
|
5
|
+
export declare const UPLOAD_PATH: any;
|
|
6
|
+
export declare const BASE_URL: any;
|
|
7
|
+
export declare const TEST_TOKEN = "f24951816ac99e204fe62e1181a6d21556d4471474b60366a6b465b7e00c9d49055c1ed753d8f07065d31bce7405a045888d7a52062b002327eec99fe7957af91eabc9d955afe397b3a2fbe012251f1753c38874b8a3ceb79cc327688f545788bf45a23f69daf21546108e08b3b6022e0a88c25d0f0ffb2ed054315bdd4a2f9a9b3d3060857d6158dea42be67488d82149fa37f5fcc491ca75cd399201131c1b";
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
export declare type Source = 'SQL_VIEW' | 'INDICATOR_LIB';
|
|
2
|
+
export declare type sortOrder = 'ASC' | 'DESC';
|
|
3
|
+
export declare type valueType = 'TEXT' | 'NUMBER' | 'DATE';
|
|
4
|
+
export declare type filterRule = '=' | '!=' | '>' | '<' | '>=' | '<=' | '%LIKE' | 'LIKE%' | 'IN' | 'NOT_IN' | 'LIKE' | 'NOT_LIKE' | 'TOP' | 'BOTTOM';
|
|
5
|
+
export declare type dateCalcType = 'YEAR' | 'QUARTER' | 'MONTH' | 'WEEK' | 'DAY';
|
|
6
|
+
export declare type calcWay = 'BEGIN' | 'END' | string;
|
|
7
|
+
export declare type targetSource = 'CLASSIFICATION' | 'SERIES' | 'INDICATOR';
|
|
8
|
+
export declare type emptyObj = {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
};
|
|
11
|
+
export declare type aggregate = 'SUM' | 'AVG' | 'MIN' | 'MAX' | 'COUNT';
|
|
12
|
+
export declare type calcType = 'COLUMN' | 'FORMULA' | 'BUILT_IN';
|
|
13
|
+
export interface Sort {
|
|
14
|
+
label: string;
|
|
15
|
+
columnName: string;
|
|
16
|
+
type: 'NORMAL' | 'CUSTOM';
|
|
17
|
+
order: sortOrder;
|
|
18
|
+
customOrderColumns?: string[];
|
|
19
|
+
targetSource: targetSource;
|
|
20
|
+
}
|
|
21
|
+
export interface Condition {
|
|
22
|
+
label: string;
|
|
23
|
+
fieldName: string;
|
|
24
|
+
fieldType: valueType;
|
|
25
|
+
rule: filterRule;
|
|
26
|
+
fieldValue?: string;
|
|
27
|
+
join?: '&&' | '||';
|
|
28
|
+
dateCalcTypes?: dateCalcType[];
|
|
29
|
+
dateFormat?: string;
|
|
30
|
+
calcWays?: calcWay[];
|
|
31
|
+
version: number;
|
|
32
|
+
targetSource: targetSource;
|
|
33
|
+
}
|
|
34
|
+
export interface CustomGroup {
|
|
35
|
+
groupInfo?: emptyObj;
|
|
36
|
+
otherGroupName?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface Classification {
|
|
39
|
+
label: string;
|
|
40
|
+
columnName: string;
|
|
41
|
+
sort?: Sort;
|
|
42
|
+
conditions?: Condition[];
|
|
43
|
+
show?: boolean;
|
|
44
|
+
hrpIndexComplexGuid?: string;
|
|
45
|
+
customGroup?: CustomGroup;
|
|
46
|
+
rangeIndexTypeGuid?: string;
|
|
47
|
+
customFilterSqlPart?: string;
|
|
48
|
+
}
|
|
49
|
+
export interface Seires {
|
|
50
|
+
label: string;
|
|
51
|
+
columnName: string;
|
|
52
|
+
sort?: Sort;
|
|
53
|
+
conditions?: Condition[];
|
|
54
|
+
customGroup?: CustomGroup;
|
|
55
|
+
rangeIndexTypeGuid?: string;
|
|
56
|
+
customFilterSqlPart?: string;
|
|
57
|
+
}
|
|
58
|
+
declare type Indicator<T extends Source> = {
|
|
59
|
+
label: string;
|
|
60
|
+
columnName: string;
|
|
61
|
+
conditions?: Condition[];
|
|
62
|
+
aggregate: aggregate;
|
|
63
|
+
location?: 'LEFT' | 'RIGHT';
|
|
64
|
+
show?: boolean;
|
|
65
|
+
builtinFormula?: 'BUILT_IN_ALL_VALUE' | 'BUILT_IN_ALL_VALUE_IN_GROUPO' | 'BUILT_IN_RANK' | 'BUILT_IN_RANK_IN_GROUPO';
|
|
66
|
+
builtinValueSource?: string;
|
|
67
|
+
builtinCalcWay?: sortOrder | Exclude<aggregate, 'COUNT'>;
|
|
68
|
+
hrpIndexCode?: string;
|
|
69
|
+
} & ({
|
|
70
|
+
calcType: Extract<calcType, 'FORMULA'>;
|
|
71
|
+
formula: string;
|
|
72
|
+
} | {
|
|
73
|
+
calcType: Exclude<calcType, 'FORMULA'>;
|
|
74
|
+
formula?: string;
|
|
75
|
+
}) & (T extends 'INDICATOR_LIB' ? {
|
|
76
|
+
hrpIndexCode: string;
|
|
77
|
+
} : {
|
|
78
|
+
hrpIndexCode?: string;
|
|
79
|
+
});
|
|
80
|
+
declare type QueryColumn<T> = {
|
|
81
|
+
label: string;
|
|
82
|
+
columnName: string;
|
|
83
|
+
conditions?: Condition[];
|
|
84
|
+
show?: boolean;
|
|
85
|
+
hrpIndexCode?: string;
|
|
86
|
+
} & ({
|
|
87
|
+
calcType: 'COLUMN';
|
|
88
|
+
formula?: string;
|
|
89
|
+
} | {
|
|
90
|
+
calcType: 'FORMULA';
|
|
91
|
+
formula: string;
|
|
92
|
+
}) & (T extends 'INDICATOR_LIB' ? {
|
|
93
|
+
hrpIndexCode: string;
|
|
94
|
+
} : {
|
|
95
|
+
hrpIndexCode?: string;
|
|
96
|
+
});
|
|
97
|
+
export interface RowHeader {
|
|
98
|
+
label: string;
|
|
99
|
+
columnName: string;
|
|
100
|
+
sort?: Sort;
|
|
101
|
+
conditions?: Condition[];
|
|
102
|
+
show?: boolean;
|
|
103
|
+
hrpIndexComplexGuid?: string;
|
|
104
|
+
customGroup?: CustomGroup;
|
|
105
|
+
rangeIndexTypeGuid?: string;
|
|
106
|
+
customFitlerSqlPart?: string;
|
|
107
|
+
}
|
|
108
|
+
declare type SqlCondition = {
|
|
109
|
+
alias: string;
|
|
110
|
+
fieldName: string;
|
|
111
|
+
rule: string;
|
|
112
|
+
fieldValue: string;
|
|
113
|
+
} & ({
|
|
114
|
+
valueType: Exclude<valueType, 'DATE'>;
|
|
115
|
+
dateFormat?: string;
|
|
116
|
+
} | {
|
|
117
|
+
valueType: Extract<valueType, 'DATE'>;
|
|
118
|
+
dateFormat: string;
|
|
119
|
+
});
|
|
120
|
+
export interface DrillCondition {
|
|
121
|
+
fieldName: string;
|
|
122
|
+
rule: string;
|
|
123
|
+
fieldValue: string;
|
|
124
|
+
valueType: string;
|
|
125
|
+
}
|
|
126
|
+
export interface QueryRequest {
|
|
127
|
+
pageSize?: number;
|
|
128
|
+
pageNum?: number;
|
|
129
|
+
sortField?: string;
|
|
130
|
+
sortOrder?: sortOrder;
|
|
131
|
+
}
|
|
132
|
+
export declare type DiagramParam<T extends Source> = {
|
|
133
|
+
classification?: Classification;
|
|
134
|
+
classifications?: Classification[];
|
|
135
|
+
seires?: Seires;
|
|
136
|
+
indicatorList?: Indicator<T>[];
|
|
137
|
+
queryColumns?: QueryColumn<T>[];
|
|
138
|
+
rowHeaders?: RowHeader[];
|
|
139
|
+
sqlConditions?: SqlCondition[];
|
|
140
|
+
drillCondition?: DrillCondition[];
|
|
141
|
+
queryRequest?: QueryRequest;
|
|
142
|
+
preview?: boolean;
|
|
143
|
+
totalName?: string;
|
|
144
|
+
};
|
|
145
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Data } from '../props';
|
|
2
|
+
/**
|
|
3
|
+
* 图形转化数据
|
|
4
|
+
* @param data 数据
|
|
5
|
+
* @param dataFieldNames 字段映射
|
|
6
|
+
*/
|
|
7
|
+
export declare const useTransformEchartsDataset: (data: Data, dataFieldNames?: {
|
|
8
|
+
name: string;
|
|
9
|
+
value: string;
|
|
10
|
+
type: string;
|
|
11
|
+
}) => {
|
|
12
|
+
dimensions: unknown[];
|
|
13
|
+
dataset: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
export default useTransformEchartsDataset;
|
package/dist/_utils/props.d.ts
CHANGED
|
@@ -27,7 +27,6 @@ export interface Props {
|
|
|
27
27
|
rotate: string;
|
|
28
28
|
isShow: boolean;
|
|
29
29
|
isRender: boolean;
|
|
30
|
-
isRequestData: boolean;
|
|
31
30
|
events: Events;
|
|
32
31
|
requestUrl: string;
|
|
33
32
|
requestMethod: RequestMethod;
|
|
@@ -38,6 +37,7 @@ export interface Props {
|
|
|
38
37
|
requestInterval: number;
|
|
39
38
|
requestParams: RequestParams;
|
|
40
39
|
requestSort: number;
|
|
40
|
+
dataType: 'static' | 'request' | 'indicator';
|
|
41
41
|
}
|
|
42
42
|
export declare const props: Props;
|
|
43
43
|
export declare const transformToComponentProps: <T extends {}>(props: T) => { [P in keyof T]: {
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export declare enum Plugin {
|
|
2
|
+
Vchart = "1",
|
|
3
|
+
DataV = "2",
|
|
4
|
+
EMS = "3"
|
|
5
|
+
}
|
|
6
|
+
export declare enum Layer {
|
|
7
|
+
Table = "1",
|
|
8
|
+
Graph = "2"
|
|
9
|
+
}
|
|
10
|
+
export declare type Source = 'SQL_VIEW' | 'INDICATOR_LIB';
|
|
11
|
+
export declare type IdxLibMode = 'NORMAL_YEAR_TABLE' | 'WITH_DATE_DIM_TABLE';
|
|
12
|
+
export declare type ChartType = 'pie' | 'line' | 'histogram' | 'scatter' | 'grouptable';
|
|
13
|
+
export interface SqlViewMode {
|
|
14
|
+
source: 'SQL_VIEW';
|
|
15
|
+
dataViewId: string;
|
|
16
|
+
idxLibMode?: IdxLibMode;
|
|
17
|
+
dataSourceId?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface IndicatorLibMode {
|
|
20
|
+
source: 'INDICATOR_LIB';
|
|
21
|
+
dataViewId?: string;
|
|
22
|
+
idxLibMode: IdxLibMode;
|
|
23
|
+
dataSourceId: string;
|
|
24
|
+
}
|
|
25
|
+
export declare type DifferSource = SqlViewMode | IndicatorLibMode;
|
|
26
|
+
export declare type ValueType = 'TEXT' | 'NUMBER' | 'DATE';
|
|
27
|
+
declare type SqlCondition = {
|
|
28
|
+
alias: string;
|
|
29
|
+
fieldName: string;
|
|
30
|
+
rule: string;
|
|
31
|
+
fieldValue: string;
|
|
32
|
+
} & ({
|
|
33
|
+
valueType: Exclude<ValueType, 'DATE'>;
|
|
34
|
+
dateFormat?: string;
|
|
35
|
+
} | {
|
|
36
|
+
valueType: Extract<ValueType, 'DATE'>;
|
|
37
|
+
dateFormat: string;
|
|
38
|
+
});
|
|
39
|
+
export declare type PropsDiagram = {
|
|
40
|
+
source?: Source;
|
|
41
|
+
plugin: Plugin;
|
|
42
|
+
layer: Layer;
|
|
43
|
+
chartType: ChartType;
|
|
44
|
+
relatedList: unknown[];
|
|
45
|
+
sqlConditions?: SqlCondition[];
|
|
46
|
+
} & (DifferSource);
|
|
47
|
+
export declare const defaultPropsGraph: {
|
|
48
|
+
plugin: Plugin;
|
|
49
|
+
dataSourceId: string;
|
|
50
|
+
relatedList: any[];
|
|
51
|
+
};
|
|
52
|
+
export {};
|
|
@@ -1,20 +1,14 @@
|
|
|
1
|
+
import 'ant-design-vue/es/skeleton/style';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
loading: {
|
|
3
4
|
type: BooleanConstructor;
|
|
4
5
|
default: boolean;
|
|
5
6
|
};
|
|
6
|
-
block: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
7
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
11
8
|
loading?: unknown;
|
|
12
|
-
block?: unknown;
|
|
13
9
|
} & {
|
|
14
10
|
loading: boolean;
|
|
15
|
-
block: boolean;
|
|
16
11
|
} & {}>, {
|
|
17
12
|
loading: boolean;
|
|
18
|
-
block: boolean;
|
|
19
13
|
}>;
|
|
20
14
|
export default _default;
|
package/dist/components.d.ts
CHANGED
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
import { Events } from '../../_utils/props';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
fontSize: {
|
|
4
|
+
type?: undefined;
|
|
5
|
+
default?: undefined;
|
|
6
|
+
} | {
|
|
7
|
+
type: any;
|
|
8
|
+
default: string | number | boolean | Events | {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
} | import("../../_utils/props").RequestParams;
|
|
11
|
+
};
|
|
12
|
+
fontFamily: {
|
|
13
|
+
type?: undefined;
|
|
14
|
+
default?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
type: any;
|
|
17
|
+
default: string | number | boolean | Events | {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | import("../../_utils/props").RequestParams;
|
|
20
|
+
};
|
|
21
|
+
fontWeight: {
|
|
22
|
+
type?: undefined;
|
|
23
|
+
default?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
type: any;
|
|
26
|
+
default: string | number | boolean | Events | {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
} | import("../../_utils/props").RequestParams;
|
|
29
|
+
};
|
|
30
|
+
title: {
|
|
31
|
+
type?: undefined;
|
|
32
|
+
default?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
type: any;
|
|
35
|
+
default: string | number | boolean | Events | {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
} | import("../../_utils/props").RequestParams;
|
|
38
|
+
};
|
|
39
|
+
mode: {
|
|
40
|
+
type?: undefined;
|
|
41
|
+
default?: undefined;
|
|
42
|
+
} | {
|
|
43
|
+
type: any;
|
|
44
|
+
default: string | number | boolean | Events | {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
} | import("../../_utils/props").RequestParams;
|
|
47
|
+
};
|
|
48
|
+
id: {
|
|
49
|
+
type?: undefined;
|
|
50
|
+
default?: undefined;
|
|
51
|
+
} | {
|
|
52
|
+
type: any;
|
|
53
|
+
default: string | number | boolean | Events | {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
} | import("../../_utils/props").RequestParams;
|
|
56
|
+
};
|
|
57
|
+
name: {
|
|
58
|
+
type?: undefined;
|
|
59
|
+
default?: undefined;
|
|
60
|
+
} | {
|
|
61
|
+
type: any;
|
|
62
|
+
default: string | number | boolean | Events | {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
} | import("../../_utils/props").RequestParams;
|
|
65
|
+
};
|
|
66
|
+
keyName: {
|
|
67
|
+
type?: undefined;
|
|
68
|
+
default?: undefined;
|
|
69
|
+
} | {
|
|
70
|
+
type: any;
|
|
71
|
+
default: string | number | boolean | Events | {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
} | import("../../_utils/props").RequestParams;
|
|
74
|
+
};
|
|
75
|
+
type: {
|
|
76
|
+
type?: undefined;
|
|
77
|
+
default?: undefined;
|
|
78
|
+
} | {
|
|
79
|
+
type: any;
|
|
80
|
+
default: string | number | boolean | Events | {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
} | import("../../_utils/props").RequestParams;
|
|
83
|
+
};
|
|
84
|
+
width: {
|
|
85
|
+
type?: undefined;
|
|
86
|
+
default?: undefined;
|
|
87
|
+
} | {
|
|
88
|
+
type: any;
|
|
89
|
+
default: string | number | boolean | Events | {
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
} | import("../../_utils/props").RequestParams;
|
|
92
|
+
};
|
|
93
|
+
height: {
|
|
94
|
+
type?: undefined;
|
|
95
|
+
default?: undefined;
|
|
96
|
+
} | {
|
|
97
|
+
type: any;
|
|
98
|
+
default: string | number | boolean | Events | {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
} | import("../../_utils/props").RequestParams;
|
|
101
|
+
};
|
|
102
|
+
position: {
|
|
103
|
+
type?: undefined;
|
|
104
|
+
default?: undefined;
|
|
105
|
+
} | {
|
|
106
|
+
type: any;
|
|
107
|
+
default: string | number | boolean | Events | {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
} | import("../../_utils/props").RequestParams;
|
|
110
|
+
};
|
|
111
|
+
top: {
|
|
112
|
+
type?: undefined;
|
|
113
|
+
default?: undefined;
|
|
114
|
+
} | {
|
|
115
|
+
type: any;
|
|
116
|
+
default: string | number | boolean | Events | {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
} | import("../../_utils/props").RequestParams;
|
|
119
|
+
};
|
|
120
|
+
left: {
|
|
121
|
+
type?: undefined;
|
|
122
|
+
default?: undefined;
|
|
123
|
+
} | {
|
|
124
|
+
type: any;
|
|
125
|
+
default: string | number | boolean | Events | {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
} | import("../../_utils/props").RequestParams;
|
|
128
|
+
};
|
|
129
|
+
zIndex: {
|
|
130
|
+
type?: undefined;
|
|
131
|
+
default?: undefined;
|
|
132
|
+
} | {
|
|
133
|
+
type: any;
|
|
134
|
+
default: string | number | boolean | Events | {
|
|
135
|
+
[key: string]: any;
|
|
136
|
+
} | import("../../_utils/props").RequestParams;
|
|
137
|
+
};
|
|
138
|
+
rotate: {
|
|
139
|
+
type?: undefined;
|
|
140
|
+
default?: undefined;
|
|
141
|
+
} | {
|
|
142
|
+
type: any;
|
|
143
|
+
default: string | number | boolean | Events | {
|
|
144
|
+
[key: string]: any;
|
|
145
|
+
} | import("../../_utils/props").RequestParams;
|
|
146
|
+
};
|
|
147
|
+
isShow: {
|
|
148
|
+
type?: undefined;
|
|
149
|
+
default?: undefined;
|
|
150
|
+
} | {
|
|
151
|
+
type: any;
|
|
152
|
+
default: string | number | boolean | Events | {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
} | import("../../_utils/props").RequestParams;
|
|
155
|
+
};
|
|
156
|
+
isRender: {
|
|
157
|
+
type?: undefined;
|
|
158
|
+
default?: undefined;
|
|
159
|
+
} | {
|
|
160
|
+
type: any;
|
|
161
|
+
default: string | number | boolean | Events | {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
} | import("../../_utils/props").RequestParams;
|
|
164
|
+
};
|
|
165
|
+
events: {
|
|
166
|
+
type?: undefined;
|
|
167
|
+
default?: undefined;
|
|
168
|
+
} | {
|
|
169
|
+
type: any;
|
|
170
|
+
default: string | number | boolean | Events | {
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
} | import("../../_utils/props").RequestParams;
|
|
173
|
+
};
|
|
174
|
+
requestUrl: {
|
|
175
|
+
type?: undefined;
|
|
176
|
+
default?: undefined;
|
|
177
|
+
} | {
|
|
178
|
+
type: any;
|
|
179
|
+
default: string | number | boolean | Events | {
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
} | import("../../_utils/props").RequestParams;
|
|
182
|
+
};
|
|
183
|
+
requestMethod: {
|
|
184
|
+
type?: undefined;
|
|
185
|
+
default?: undefined;
|
|
186
|
+
} | {
|
|
187
|
+
type: any;
|
|
188
|
+
default: string | number | boolean | Events | {
|
|
189
|
+
[key: string]: any;
|
|
190
|
+
} | import("../../_utils/props").RequestParams;
|
|
191
|
+
};
|
|
192
|
+
requestHeaders: {
|
|
193
|
+
type?: undefined;
|
|
194
|
+
default?: undefined;
|
|
195
|
+
} | {
|
|
196
|
+
type: any;
|
|
197
|
+
default: string | number | boolean | Events | {
|
|
198
|
+
[key: string]: any;
|
|
199
|
+
} | import("../../_utils/props").RequestParams;
|
|
200
|
+
};
|
|
201
|
+
isOpenRequestTimer: {
|
|
202
|
+
type?: undefined;
|
|
203
|
+
default?: undefined;
|
|
204
|
+
} | {
|
|
205
|
+
type: any;
|
|
206
|
+
default: string | number | boolean | Events | {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
} | import("../../_utils/props").RequestParams;
|
|
209
|
+
};
|
|
210
|
+
requestInterval: {
|
|
211
|
+
type?: undefined;
|
|
212
|
+
default?: undefined;
|
|
213
|
+
} | {
|
|
214
|
+
type: any;
|
|
215
|
+
default: string | number | boolean | Events | {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
} | import("../../_utils/props").RequestParams;
|
|
218
|
+
};
|
|
219
|
+
requestParams: {
|
|
220
|
+
type?: undefined;
|
|
221
|
+
default?: undefined;
|
|
222
|
+
} | {
|
|
223
|
+
type: any;
|
|
224
|
+
default: string | number | boolean | Events | {
|
|
225
|
+
[key: string]: any;
|
|
226
|
+
} | import("../../_utils/props").RequestParams;
|
|
227
|
+
};
|
|
228
|
+
requestSort: {
|
|
229
|
+
type?: undefined;
|
|
230
|
+
default?: undefined;
|
|
231
|
+
} | {
|
|
232
|
+
type: any;
|
|
233
|
+
default: string | number | boolean | Events | {
|
|
234
|
+
[key: string]: any;
|
|
235
|
+
} | import("../../_utils/props").RequestParams;
|
|
236
|
+
};
|
|
237
|
+
dataType: {
|
|
238
|
+
type?: undefined;
|
|
239
|
+
default?: undefined;
|
|
240
|
+
} | {
|
|
241
|
+
type: any;
|
|
242
|
+
default: string | number | boolean | Events | {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
} | import("../../_utils/props").RequestParams;
|
|
245
|
+
};
|
|
246
|
+
}, {
|
|
247
|
+
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
248
|
+
click: () => void;
|
|
249
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
250
|
+
fontSize?: unknown;
|
|
251
|
+
fontFamily?: unknown;
|
|
252
|
+
fontWeight?: unknown;
|
|
253
|
+
title?: unknown;
|
|
254
|
+
mode?: unknown;
|
|
255
|
+
id?: unknown;
|
|
256
|
+
name?: unknown;
|
|
257
|
+
keyName?: unknown;
|
|
258
|
+
type?: unknown;
|
|
259
|
+
width?: unknown;
|
|
260
|
+
height?: unknown;
|
|
261
|
+
position?: unknown;
|
|
262
|
+
top?: unknown;
|
|
263
|
+
left?: unknown;
|
|
264
|
+
zIndex?: unknown;
|
|
265
|
+
rotate?: unknown;
|
|
266
|
+
isShow?: unknown;
|
|
267
|
+
isRender?: unknown;
|
|
268
|
+
events?: unknown;
|
|
269
|
+
requestUrl?: unknown;
|
|
270
|
+
requestMethod?: unknown;
|
|
271
|
+
requestHeaders?: unknown;
|
|
272
|
+
isOpenRequestTimer?: unknown;
|
|
273
|
+
requestInterval?: unknown;
|
|
274
|
+
requestParams?: unknown;
|
|
275
|
+
requestSort?: unknown;
|
|
276
|
+
dataType?: unknown;
|
|
277
|
+
} & {} & {
|
|
278
|
+
type?: string | number | boolean | {
|
|
279
|
+
[key: string]: any;
|
|
280
|
+
};
|
|
281
|
+
fontSize?: string | number | boolean | {
|
|
282
|
+
[key: string]: any;
|
|
283
|
+
};
|
|
284
|
+
fontFamily?: string | number | boolean | {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
};
|
|
287
|
+
fontWeight?: string | number | boolean | {
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
};
|
|
290
|
+
title?: string | number | boolean | {
|
|
291
|
+
[key: string]: any;
|
|
292
|
+
};
|
|
293
|
+
mode?: string | number | boolean | {
|
|
294
|
+
[key: string]: any;
|
|
295
|
+
};
|
|
296
|
+
id?: string | number | boolean | {
|
|
297
|
+
[key: string]: any;
|
|
298
|
+
};
|
|
299
|
+
name?: string | number | boolean | {
|
|
300
|
+
[key: string]: any;
|
|
301
|
+
};
|
|
302
|
+
keyName?: string | number | boolean | {
|
|
303
|
+
[key: string]: any;
|
|
304
|
+
};
|
|
305
|
+
width?: string | number | boolean | {
|
|
306
|
+
[key: string]: any;
|
|
307
|
+
};
|
|
308
|
+
height?: string | number | boolean | {
|
|
309
|
+
[key: string]: any;
|
|
310
|
+
};
|
|
311
|
+
position?: string | number | boolean | {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
};
|
|
314
|
+
top?: string | number | boolean | {
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
};
|
|
317
|
+
left?: string | number | boolean | {
|
|
318
|
+
[key: string]: any;
|
|
319
|
+
};
|
|
320
|
+
zIndex?: string | number | boolean | {
|
|
321
|
+
[key: string]: any;
|
|
322
|
+
};
|
|
323
|
+
rotate?: string | number | boolean | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
};
|
|
326
|
+
isShow?: string | number | boolean | {
|
|
327
|
+
[key: string]: any;
|
|
328
|
+
};
|
|
329
|
+
isRender?: string | number | boolean | {
|
|
330
|
+
[key: string]: any;
|
|
331
|
+
};
|
|
332
|
+
events?: string | number | boolean | {
|
|
333
|
+
[key: string]: any;
|
|
334
|
+
};
|
|
335
|
+
requestUrl?: string | number | boolean | {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
};
|
|
338
|
+
requestMethod?: string | number | boolean | {
|
|
339
|
+
[key: string]: any;
|
|
340
|
+
};
|
|
341
|
+
requestHeaders?: string | number | boolean | {
|
|
342
|
+
[key: string]: any;
|
|
343
|
+
};
|
|
344
|
+
isOpenRequestTimer?: string | number | boolean | {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
};
|
|
347
|
+
requestInterval?: string | number | boolean | {
|
|
348
|
+
[key: string]: any;
|
|
349
|
+
};
|
|
350
|
+
requestParams?: string | number | boolean | {
|
|
351
|
+
[key: string]: any;
|
|
352
|
+
};
|
|
353
|
+
requestSort?: string | number | boolean | {
|
|
354
|
+
[key: string]: any;
|
|
355
|
+
};
|
|
356
|
+
dataType?: string | number | boolean | {
|
|
357
|
+
[key: string]: any;
|
|
358
|
+
};
|
|
359
|
+
}>, {}>;
|
|
360
|
+
export default _default;
|
|
@@ -7,7 +7,7 @@ export interface BorderProps extends Props {
|
|
|
7
7
|
mode: 'top-title' | 'no-title' | 'left-top';
|
|
8
8
|
}
|
|
9
9
|
export declare const borderProps: BorderProps;
|
|
10
|
-
export declare const
|
|
10
|
+
export declare const borderComponentProps: {
|
|
11
11
|
fontSize: {
|
|
12
12
|
type?: undefined;
|
|
13
13
|
default?: undefined;
|
|
@@ -170,15 +170,6 @@ export declare const cardComponentProps: {
|
|
|
170
170
|
[key: string]: any;
|
|
171
171
|
} | import("../../_utils/props").RequestParams;
|
|
172
172
|
};
|
|
173
|
-
isRequestData: {
|
|
174
|
-
type?: undefined;
|
|
175
|
-
default?: undefined;
|
|
176
|
-
} | {
|
|
177
|
-
type: any;
|
|
178
|
-
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
179
|
-
[key: string]: any;
|
|
180
|
-
} | import("../../_utils/props").RequestParams;
|
|
181
|
-
};
|
|
182
173
|
events: {
|
|
183
174
|
type?: undefined;
|
|
184
175
|
default?: undefined;
|
|
@@ -251,4 +242,14 @@ export declare const cardComponentProps: {
|
|
|
251
242
|
[key: string]: any;
|
|
252
243
|
} | import("../../_utils/props").RequestParams;
|
|
253
244
|
};
|
|
245
|
+
dataType: {
|
|
246
|
+
type?: undefined;
|
|
247
|
+
default?: undefined;
|
|
248
|
+
} | {
|
|
249
|
+
type: any;
|
|
250
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
251
|
+
[key: string]: any;
|
|
252
|
+
} | import("../../_utils/props").RequestParams;
|
|
253
|
+
};
|
|
254
254
|
};
|
|
255
|
+
export declare const borderEvents: string[];
|