qlqz-frame 0.1.8 → 0.1.10
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 +2 -2
- package/dist/index.mjs +58244 -141595
- package/dist/index.umd.js +454 -849
- package/dist/style.css +1 -1
- package/package.json +1 -5
package/dist/index.d.ts
CHANGED
|
@@ -38,11 +38,13 @@ declare module 'qlqz-frame' {
|
|
|
38
38
|
HefengWeather: React.FC;
|
|
39
39
|
SortableTable: React.FC;
|
|
40
40
|
IconSelectorInput: React.FC<IconSelectorInputProps>;
|
|
41
|
+
TagsLayout: React.FC;
|
|
41
42
|
};
|
|
42
43
|
|
|
43
44
|
export const HefengWeather: React.FC;
|
|
44
45
|
export const SortableTable: React.FC;
|
|
45
46
|
export const IconSelectorInput: React.FC<IconSelectorInputProps>;
|
|
47
|
+
export const TagsLayout: React.FC;
|
|
46
48
|
|
|
47
49
|
export const Document: {
|
|
48
50
|
exportExcelFile: (array: any[], fileName: string) => void;
|
|
@@ -116,13 +118,11 @@ declare module 'qlqz-frame' {
|
|
|
116
118
|
|
|
117
119
|
export const OneMap: {
|
|
118
120
|
MtkMap: React.FC<MapProps>;
|
|
119
|
-
withOneMap: React.FC<any>;
|
|
120
121
|
useOneMap: () => IOneMapApp;
|
|
121
122
|
createToolTip: (title: string) => maptalks.ui.ToolTip;
|
|
122
123
|
};
|
|
123
124
|
|
|
124
125
|
export const MtkMap: React.FC<MapProps>;
|
|
125
|
-
export const withOneMap: React.FC<any>;
|
|
126
126
|
export const useOneMap: () => IOneMapApp;
|
|
127
127
|
|
|
128
128
|
export { IColumnMeta, IColumn, IResponse, IListData, IListResponseData, IconSelectorInputProps };
|