qlqz-frame 0.1.11 → 0.2.2
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/index.d.ts +30 -2
- package/dist/index.mjs +21909 -21341
- package/dist/index.umd.js +355 -349
- package/dist/style.css +1 -1
- package/package.json +13 -8
package/dist/index.d.ts
CHANGED
|
@@ -9,12 +9,24 @@ import {
|
|
|
9
9
|
IResponse,
|
|
10
10
|
} from './types/request';
|
|
11
11
|
import { ITableDataPayload } from './types/data-lake';
|
|
12
|
-
import { IconSelectorInputProps, SortTableProps } from './types/components';
|
|
12
|
+
import { IconSelectorInputProps, SortTableProps, ExtendColumTypes } from './types/components';
|
|
13
13
|
import { MapProps, IOneMapApp } from './types/onemap';
|
|
14
14
|
import * as maptalks from 'maptalks';
|
|
15
15
|
import { AxiosInstance, AxiosResponse } from 'axios';
|
|
16
16
|
|
|
17
17
|
declare module 'qlqz-frame' {
|
|
18
|
+
export const BussinessTableManage: {
|
|
19
|
+
BussinessDetailForm: React.FC;
|
|
20
|
+
BussinessDetailView: React.FC;
|
|
21
|
+
BussnissTable: React.FC;
|
|
22
|
+
BusinessFilter: React.FC;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export const BussinessDetailForm: React.FC;
|
|
26
|
+
export const BussinessDetailView: React.FC;
|
|
27
|
+
export const BussnissTable: React.FC;
|
|
28
|
+
export const BusinessFilter: React.FC;
|
|
29
|
+
|
|
18
30
|
export const Charts: {
|
|
19
31
|
RankMark: React.FC;
|
|
20
32
|
BarWithLabelLine: React.FC;
|
|
@@ -78,6 +90,10 @@ declare module 'qlqz-frame' {
|
|
|
78
90
|
getStaticHourData;
|
|
79
91
|
getWindRoseData;
|
|
80
92
|
getMultiCount;
|
|
93
|
+
getMultiTableCalc;
|
|
94
|
+
getTableCalcRanges;
|
|
95
|
+
getTableGrids;
|
|
96
|
+
getGridValue;
|
|
81
97
|
|
|
82
98
|
getGeoJson;
|
|
83
99
|
getXml;
|
|
@@ -112,6 +128,10 @@ declare module 'qlqz-frame' {
|
|
|
112
128
|
export const getStaticHourData;
|
|
113
129
|
export const getWindRoseData;
|
|
114
130
|
export const getMultiCount;
|
|
131
|
+
export const getMultiTableCalc;
|
|
132
|
+
export const getTableCalcRanges;
|
|
133
|
+
export const getTableGrids;
|
|
134
|
+
export const getGridValue;
|
|
115
135
|
|
|
116
136
|
export const getGeoJson;
|
|
117
137
|
export const getXml;
|
|
@@ -125,5 +145,13 @@ declare module 'qlqz-frame' {
|
|
|
125
145
|
export const MtkMap: React.FC<MapProps>;
|
|
126
146
|
export const useOneMap: () => IOneMapApp;
|
|
127
147
|
|
|
128
|
-
export {
|
|
148
|
+
export {
|
|
149
|
+
IColumnMeta,
|
|
150
|
+
IColumn,
|
|
151
|
+
IResponse,
|
|
152
|
+
IListData,
|
|
153
|
+
IListResponseData,
|
|
154
|
+
IconSelectorInputProps,
|
|
155
|
+
ExtendColumTypes,
|
|
156
|
+
};
|
|
129
157
|
}
|