sat-earth 0.0.18 → 0.0.21
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/README.md +13 -2
- package/dist/packages/components/globe/CameraBookmarkPanel.vue.d.ts +114 -0
- package/dist/packages/components/globe/MapSplitPanel.vue.d.ts +1 -0
- package/dist/packages/components/globe/SatGlobe.vue.d.ts +114 -0
- package/dist/packages/components/globe/helpers.d.ts +6 -0
- package/dist/packages/components/globe/index.d.ts +114 -0
- package/dist/packages/components/panel/SatPanel.vue.d.ts +47 -8
- package/dist/packages/components/panel/index.d.ts +47 -8
- package/dist/packages/components/source/SatSource.vue.d.ts +81 -746
- package/dist/packages/components/source/SatSourceMain.vue.d.ts +33 -737
- package/dist/packages/components/source/index.d.ts +81 -746
- package/dist/packages/config/index.d.ts +2 -1
- package/dist/packages/global.d.ts +5 -0
- package/dist/packages/store/modules/layer.d.ts +4 -1
- package/dist/packages/utils/map/satMap/layer/index.d.ts +0 -1
- package/dist/packages/utils/types/index.d.ts +5 -0
- package/dist/sat-earth.es.js +8091 -5227
- package/dist/sat-earth.umd.js +36 -30
- package/dist/style.css +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -128,6 +128,12 @@ import { SatMapTypes, type MenuItem } from 'sat-earth'
|
|
|
128
128
|
1. 在mars3d的Map构造参数的基础上扩展了custom对象。
|
|
129
129
|
(
|
|
130
130
|
custom: {
|
|
131
|
+
// 工具栏新增项
|
|
132
|
+
toolbar: {
|
|
133
|
+
mapSplit: true, // 开启卷帘工具
|
|
134
|
+
bookmark: true, // 开启视角书签工具
|
|
135
|
+
keyboardRoam: true, // 开启键盘漫游功能
|
|
136
|
+
},
|
|
131
137
|
layers: {
|
|
132
138
|
// list 这是要加入到 'SatSource' 数据源管理中的自定义Layer图层,参数与 mars3d构造 Layer 的参数
|
|
133
139
|
// 一致,通过 'id/pid' 在 'SatSource' 组件中形成对应的树形结构, 如果不加pid的时候或者任意添加的
|
|
@@ -172,6 +178,11 @@ const options: SatMapTypes.SatMapOptions = {
|
|
|
172
178
|
list: []
|
|
173
179
|
},
|
|
174
180
|
custom: {
|
|
181
|
+
toolbar: {
|
|
182
|
+
mapSplit: true, // 开启卷帘工具
|
|
183
|
+
bookmark: true, // 开启视角书签工具
|
|
184
|
+
keyboardRoam: true, // 开启键盘漫游功能
|
|
185
|
+
},
|
|
175
186
|
layers: {
|
|
176
187
|
/* list 这是要加入到数据源管理中的自定义Layer图层,参数与 mars3d构造 Layer 的参数一致,
|
|
177
188
|
通过 'id/pid' 在 'SatSource' 组件中形成对应的树形结构, 不加 pid 的时候或者任意添加的 pid
|
|
@@ -246,8 +257,8 @@ const options: SatMapTypes.SatMapOptions = {
|
|
|
246
257
|
terrainLayers: {
|
|
247
258
|
cover: false, // 是否覆盖内置的地形图层
|
|
248
259
|
list: [] // 自定义的地形图层Layer集合
|
|
249
|
-
}
|
|
250
|
-
}
|
|
260
|
+
},
|
|
261
|
+
},
|
|
251
262
|
},
|
|
252
263
|
},
|
|
253
264
|
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { Bookmark } from './helpers';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
|
+
layerStore: import("pinia").Store<"SatLayerDev", import('../../store/modules/layer').LayerState, {}, {
|
|
4
|
+
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
5
|
+
setLayerTree(val: import('../../store/modules/layer').TreeSatLayer[]): void;
|
|
6
|
+
setMapSplitPanelVisible(val: boolean): void;
|
|
7
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
8
|
+
}>;
|
|
9
|
+
isMobile: import("vue").Ref<boolean>;
|
|
10
|
+
close: () => void;
|
|
11
|
+
cameraName: import("vue").Ref<string>;
|
|
12
|
+
bookmarkList: import("vue").Ref<{
|
|
13
|
+
id: string;
|
|
14
|
+
name: string;
|
|
15
|
+
center: any;
|
|
16
|
+
image: any;
|
|
17
|
+
}[]>;
|
|
18
|
+
bookmarkList_storage: any;
|
|
19
|
+
addBookmark: () => void;
|
|
20
|
+
filterBookmark: () => void;
|
|
21
|
+
removeBookmark: (item: Bookmark) => void;
|
|
22
|
+
zoomTo: (item: Bookmark) => void;
|
|
23
|
+
SatPanel: import("vue").DefineComponent<{
|
|
24
|
+
title: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
isShrink: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
isClose: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
isDrag: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
shrinkEvent: {
|
|
41
|
+
type: FunctionConstructor;
|
|
42
|
+
default: () => void;
|
|
43
|
+
};
|
|
44
|
+
closeEvent: {
|
|
45
|
+
type: FunctionConstructor;
|
|
46
|
+
default: () => void;
|
|
47
|
+
};
|
|
48
|
+
}, {
|
|
49
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
title: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
isShrink: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
isClose: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
isDrag: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
shrinkEvent: {
|
|
67
|
+
type: FunctionConstructor;
|
|
68
|
+
default: () => void;
|
|
69
|
+
};
|
|
70
|
+
closeEvent: {
|
|
71
|
+
type: FunctionConstructor;
|
|
72
|
+
default: () => void;
|
|
73
|
+
};
|
|
74
|
+
}>> & {
|
|
75
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
76
|
+
}>>;
|
|
77
|
+
isMobile: import("vue").Ref<boolean>;
|
|
78
|
+
draggable: import("vue").Ref<boolean>;
|
|
79
|
+
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
80
|
+
style: import("vue").ComputedRef<string>;
|
|
81
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
82
|
+
title: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
isShrink: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
isClose: {
|
|
91
|
+
type: BooleanConstructor;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
94
|
+
isDrag: {
|
|
95
|
+
type: BooleanConstructor;
|
|
96
|
+
default: boolean;
|
|
97
|
+
};
|
|
98
|
+
shrinkEvent: {
|
|
99
|
+
type: FunctionConstructor;
|
|
100
|
+
default: () => void;
|
|
101
|
+
};
|
|
102
|
+
closeEvent: {
|
|
103
|
+
type: FunctionConstructor;
|
|
104
|
+
default: () => void;
|
|
105
|
+
};
|
|
106
|
+
}>>, {
|
|
107
|
+
isShrink: boolean;
|
|
108
|
+
isClose: boolean;
|
|
109
|
+
isDrag: boolean;
|
|
110
|
+
shrinkEvent: Function;
|
|
111
|
+
closeEvent: Function;
|
|
112
|
+
}>;
|
|
113
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
114
|
+
export default _sfc_main;
|
|
@@ -3,6 +3,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
3
3
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
4
4
|
setLayerTree(val: import('../../store/modules/layer').TreeSatLayer[]): void;
|
|
5
5
|
setMapSplitPanelVisible(val: boolean): void;
|
|
6
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
6
7
|
}>;
|
|
7
8
|
isMobile: import("vue").Ref<boolean>;
|
|
8
9
|
leftLayerList: any;
|
|
@@ -30,6 +30,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
30
|
setLayerList(val: SatLayerDev[]): void;
|
|
31
31
|
setLayerTree(val: TreeSatLayer[]): void;
|
|
32
32
|
setMapSplitPanelVisible(val: boolean): void;
|
|
33
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
33
34
|
}>;
|
|
34
35
|
layoutStore: import("pinia").Store<"SatLayout", import('../../store/modules/layout').LayoutState, {}, {
|
|
35
36
|
setIsDark(val: boolean): void;
|
|
@@ -61,6 +62,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
61
62
|
setLayerList(val: SatLayerDev[]): void;
|
|
62
63
|
setLayerTree(val: TreeSatLayer[]): void;
|
|
63
64
|
setMapSplitPanelVisible(val: boolean): void;
|
|
65
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
64
66
|
}>;
|
|
65
67
|
isMobile: import("vue").Ref<boolean>;
|
|
66
68
|
leftLayerList: any;
|
|
@@ -69,6 +71,118 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
69
71
|
rightLayerId: import("vue").Ref<string | number | undefined>;
|
|
70
72
|
setSplitList: () => void;
|
|
71
73
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
74
|
+
CameraBookmarkPanel: import("vue").DefineComponent<{}, {
|
|
75
|
+
layerStore: import("pinia").Store<"SatLayerDev", import('../../store/modules/layer').LayerState, {}, {
|
|
76
|
+
setLayerList(val: SatLayerDev[]): void;
|
|
77
|
+
setLayerTree(val: TreeSatLayer[]): void;
|
|
78
|
+
setMapSplitPanelVisible(val: boolean): void;
|
|
79
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
80
|
+
}>;
|
|
81
|
+
isMobile: import("vue").Ref<boolean>;
|
|
82
|
+
close: () => void;
|
|
83
|
+
cameraName: import("vue").Ref<string>;
|
|
84
|
+
bookmarkList: import("vue").Ref<{
|
|
85
|
+
id: string;
|
|
86
|
+
name: string;
|
|
87
|
+
center: any;
|
|
88
|
+
image: any;
|
|
89
|
+
}[]>;
|
|
90
|
+
bookmarkList_storage: any;
|
|
91
|
+
addBookmark: () => void;
|
|
92
|
+
filterBookmark: () => void;
|
|
93
|
+
removeBookmark: (item: import("./helpers").Bookmark) => void;
|
|
94
|
+
zoomTo: (item: import("./helpers").Bookmark) => void;
|
|
95
|
+
SatPanel: import("vue").DefineComponent<{
|
|
96
|
+
title: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
required: true;
|
|
99
|
+
};
|
|
100
|
+
isShrink: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
isClose: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
isDrag: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
112
|
+
shrinkEvent: {
|
|
113
|
+
type: FunctionConstructor;
|
|
114
|
+
default: () => void;
|
|
115
|
+
};
|
|
116
|
+
closeEvent: {
|
|
117
|
+
type: FunctionConstructor;
|
|
118
|
+
default: () => void;
|
|
119
|
+
};
|
|
120
|
+
}, {
|
|
121
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
122
|
+
title: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
required: true;
|
|
125
|
+
};
|
|
126
|
+
isShrink: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
isClose: {
|
|
131
|
+
type: BooleanConstructor;
|
|
132
|
+
default: boolean;
|
|
133
|
+
};
|
|
134
|
+
isDrag: {
|
|
135
|
+
type: BooleanConstructor;
|
|
136
|
+
default: boolean;
|
|
137
|
+
};
|
|
138
|
+
shrinkEvent: {
|
|
139
|
+
type: FunctionConstructor;
|
|
140
|
+
default: () => void;
|
|
141
|
+
};
|
|
142
|
+
closeEvent: {
|
|
143
|
+
type: FunctionConstructor;
|
|
144
|
+
default: () => void;
|
|
145
|
+
};
|
|
146
|
+
}>> & {
|
|
147
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
148
|
+
}>>;
|
|
149
|
+
isMobile: import("vue").Ref<boolean>;
|
|
150
|
+
draggable: import("vue").Ref<boolean>;
|
|
151
|
+
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
152
|
+
style: import("vue").ComputedRef<string>;
|
|
153
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
154
|
+
title: {
|
|
155
|
+
type: StringConstructor;
|
|
156
|
+
required: true;
|
|
157
|
+
};
|
|
158
|
+
isShrink: {
|
|
159
|
+
type: BooleanConstructor;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
162
|
+
isClose: {
|
|
163
|
+
type: BooleanConstructor;
|
|
164
|
+
default: boolean;
|
|
165
|
+
};
|
|
166
|
+
isDrag: {
|
|
167
|
+
type: BooleanConstructor;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
170
|
+
shrinkEvent: {
|
|
171
|
+
type: FunctionConstructor;
|
|
172
|
+
default: () => void;
|
|
173
|
+
};
|
|
174
|
+
closeEvent: {
|
|
175
|
+
type: FunctionConstructor;
|
|
176
|
+
default: () => void;
|
|
177
|
+
};
|
|
178
|
+
}>>, {
|
|
179
|
+
isShrink: boolean;
|
|
180
|
+
isClose: boolean;
|
|
181
|
+
isDrag: boolean;
|
|
182
|
+
shrinkEvent: Function;
|
|
183
|
+
closeEvent: Function;
|
|
184
|
+
}>;
|
|
185
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
72
186
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
73
187
|
eleId: {
|
|
74
188
|
type: StringConstructor;
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { type SatLayer, type SatMapOptions } from '../../utils/types';
|
|
2
|
+
export interface Bookmark {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
center: any;
|
|
6
|
+
image: any;
|
|
7
|
+
}
|
|
2
8
|
export declare const getMergedData: (propMapInitOptions: SatMapOptions) => SatMapOptions;
|
|
3
9
|
export declare const setDeepUnChecked: (list: SatLayer[], rootid: string | number) => void;
|
|
4
10
|
export declare const mapOptions: SatMapOptions;
|
|
@@ -27,6 +27,7 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
27
27
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
28
28
|
setLayerTree(val: import("../../store/modules/layer").TreeSatLayer[]): void;
|
|
29
29
|
setMapSplitPanelVisible(val: boolean): void;
|
|
30
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
30
31
|
}>;
|
|
31
32
|
layoutStore: import("pinia").Store<"SatLayout", import("../../store/modules/layout").LayoutState, {}, {
|
|
32
33
|
setIsDark(val: boolean): void;
|
|
@@ -58,6 +59,7 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
58
59
|
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
59
60
|
setLayerTree(val: import("../../store/modules/layer").TreeSatLayer[]): void;
|
|
60
61
|
setMapSplitPanelVisible(val: boolean): void;
|
|
62
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
61
63
|
}>;
|
|
62
64
|
isMobile: import("vue").Ref<boolean>;
|
|
63
65
|
leftLayerList: any;
|
|
@@ -66,6 +68,118 @@ export declare const SatGlobe: import('../../utils/installer').SFCWithInstall<im
|
|
|
66
68
|
rightLayerId: import("vue").Ref<string | number | undefined>;
|
|
67
69
|
setSplitList: () => void;
|
|
68
70
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
71
|
+
CameraBookmarkPanel: import("vue").DefineComponent<{}, {
|
|
72
|
+
layerStore: import("pinia").Store<"SatLayerDev", import("../../store/modules/layer").LayerState, {}, {
|
|
73
|
+
setLayerList(val: import("../../utils/types").SatLayerDev[]): void;
|
|
74
|
+
setLayerTree(val: import("../../store/modules/layer").TreeSatLayer[]): void;
|
|
75
|
+
setMapSplitPanelVisible(val: boolean): void;
|
|
76
|
+
setCameraBookmarkPanelVisible(val: boolean): void;
|
|
77
|
+
}>;
|
|
78
|
+
isMobile: import("vue").Ref<boolean>;
|
|
79
|
+
close: () => void;
|
|
80
|
+
cameraName: import("vue").Ref<string>;
|
|
81
|
+
bookmarkList: import("vue").Ref<{
|
|
82
|
+
id: string;
|
|
83
|
+
name: string;
|
|
84
|
+
center: any;
|
|
85
|
+
image: any;
|
|
86
|
+
}[]>;
|
|
87
|
+
bookmarkList_storage: any;
|
|
88
|
+
addBookmark: () => void;
|
|
89
|
+
filterBookmark: () => void;
|
|
90
|
+
removeBookmark: (item: import("./helpers").Bookmark) => void;
|
|
91
|
+
zoomTo: (item: import("./helpers").Bookmark) => void;
|
|
92
|
+
SatPanel: import("vue").DefineComponent<{
|
|
93
|
+
title: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
required: true;
|
|
96
|
+
};
|
|
97
|
+
isShrink: {
|
|
98
|
+
type: BooleanConstructor;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
isClose: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
105
|
+
isDrag: {
|
|
106
|
+
type: BooleanConstructor;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
109
|
+
shrinkEvent: {
|
|
110
|
+
type: FunctionConstructor;
|
|
111
|
+
default: () => void;
|
|
112
|
+
};
|
|
113
|
+
closeEvent: {
|
|
114
|
+
type: FunctionConstructor;
|
|
115
|
+
default: () => void;
|
|
116
|
+
};
|
|
117
|
+
}, {
|
|
118
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
119
|
+
title: {
|
|
120
|
+
type: StringConstructor;
|
|
121
|
+
required: true;
|
|
122
|
+
};
|
|
123
|
+
isShrink: {
|
|
124
|
+
type: BooleanConstructor;
|
|
125
|
+
default: boolean;
|
|
126
|
+
};
|
|
127
|
+
isClose: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
131
|
+
isDrag: {
|
|
132
|
+
type: BooleanConstructor;
|
|
133
|
+
default: boolean;
|
|
134
|
+
};
|
|
135
|
+
shrinkEvent: {
|
|
136
|
+
type: FunctionConstructor;
|
|
137
|
+
default: () => void;
|
|
138
|
+
};
|
|
139
|
+
closeEvent: {
|
|
140
|
+
type: FunctionConstructor;
|
|
141
|
+
default: () => void;
|
|
142
|
+
};
|
|
143
|
+
}>> & {
|
|
144
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
145
|
+
}>>;
|
|
146
|
+
isMobile: import("vue").Ref<boolean>;
|
|
147
|
+
draggable: import("vue").Ref<boolean>;
|
|
148
|
+
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
149
|
+
style: import("vue").ComputedRef<string>;
|
|
150
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
151
|
+
title: {
|
|
152
|
+
type: StringConstructor;
|
|
153
|
+
required: true;
|
|
154
|
+
};
|
|
155
|
+
isShrink: {
|
|
156
|
+
type: BooleanConstructor;
|
|
157
|
+
default: boolean;
|
|
158
|
+
};
|
|
159
|
+
isClose: {
|
|
160
|
+
type: BooleanConstructor;
|
|
161
|
+
default: boolean;
|
|
162
|
+
};
|
|
163
|
+
isDrag: {
|
|
164
|
+
type: BooleanConstructor;
|
|
165
|
+
default: boolean;
|
|
166
|
+
};
|
|
167
|
+
shrinkEvent: {
|
|
168
|
+
type: FunctionConstructor;
|
|
169
|
+
default: () => void;
|
|
170
|
+
};
|
|
171
|
+
closeEvent: {
|
|
172
|
+
type: FunctionConstructor;
|
|
173
|
+
default: () => void;
|
|
174
|
+
};
|
|
175
|
+
}>>, {
|
|
176
|
+
isShrink: boolean;
|
|
177
|
+
isClose: boolean;
|
|
178
|
+
isDrag: boolean;
|
|
179
|
+
shrinkEvent: Function;
|
|
180
|
+
closeEvent: Function;
|
|
181
|
+
}>;
|
|
182
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
69
183
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
70
184
|
eleId: {
|
|
71
185
|
type: StringConstructor;
|
|
@@ -3,11 +3,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
isShrink: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
isClose: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
isDrag: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
shrinkEvent: {
|
|
7
19
|
type: FunctionConstructor;
|
|
8
20
|
default: () => void;
|
|
9
21
|
};
|
|
10
|
-
|
|
22
|
+
closeEvent: {
|
|
11
23
|
type: FunctionConstructor;
|
|
12
24
|
default: () => void;
|
|
13
25
|
};
|
|
@@ -17,11 +29,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
29
|
type: StringConstructor;
|
|
18
30
|
required: true;
|
|
19
31
|
};
|
|
20
|
-
|
|
32
|
+
isShrink: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
isClose: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
isDrag: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
shrinkEvent: {
|
|
21
45
|
type: FunctionConstructor;
|
|
22
46
|
default: () => void;
|
|
23
47
|
};
|
|
24
|
-
|
|
48
|
+
closeEvent: {
|
|
25
49
|
type: FunctionConstructor;
|
|
26
50
|
default: () => void;
|
|
27
51
|
};
|
|
@@ -37,16 +61,31 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
61
|
type: StringConstructor;
|
|
38
62
|
required: true;
|
|
39
63
|
};
|
|
40
|
-
|
|
64
|
+
isShrink: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
isClose: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
default: boolean;
|
|
71
|
+
};
|
|
72
|
+
isDrag: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
shrinkEvent: {
|
|
41
77
|
type: FunctionConstructor;
|
|
42
78
|
default: () => void;
|
|
43
79
|
};
|
|
44
|
-
|
|
80
|
+
closeEvent: {
|
|
45
81
|
type: FunctionConstructor;
|
|
46
82
|
default: () => void;
|
|
47
83
|
};
|
|
48
84
|
}>>, {
|
|
49
|
-
|
|
50
|
-
|
|
85
|
+
isShrink: boolean;
|
|
86
|
+
isClose: boolean;
|
|
87
|
+
isDrag: boolean;
|
|
88
|
+
shrinkEvent: Function;
|
|
89
|
+
closeEvent: Function;
|
|
51
90
|
}>;
|
|
52
91
|
export default _sfc_main;
|
|
@@ -3,11 +3,23 @@ export declare const SatPanel: import('../../utils/installer').SFCWithInstall<im
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
isShrink: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
isClose: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
isDrag: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
shrinkEvent: {
|
|
7
19
|
type: FunctionConstructor;
|
|
8
20
|
default: () => void;
|
|
9
21
|
};
|
|
10
|
-
|
|
22
|
+
closeEvent: {
|
|
11
23
|
type: FunctionConstructor;
|
|
12
24
|
default: () => void;
|
|
13
25
|
};
|
|
@@ -17,11 +29,23 @@ export declare const SatPanel: import('../../utils/installer').SFCWithInstall<im
|
|
|
17
29
|
type: StringConstructor;
|
|
18
30
|
required: true;
|
|
19
31
|
};
|
|
20
|
-
|
|
32
|
+
isShrink: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
isClose: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
isDrag: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
shrinkEvent: {
|
|
21
45
|
type: FunctionConstructor;
|
|
22
46
|
default: () => void;
|
|
23
47
|
};
|
|
24
|
-
|
|
48
|
+
closeEvent: {
|
|
25
49
|
type: FunctionConstructor;
|
|
26
50
|
default: () => void;
|
|
27
51
|
};
|
|
@@ -37,16 +61,31 @@ export declare const SatPanel: import('../../utils/installer').SFCWithInstall<im
|
|
|
37
61
|
type: StringConstructor;
|
|
38
62
|
required: true;
|
|
39
63
|
};
|
|
40
|
-
|
|
64
|
+
isShrink: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
isClose: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
default: boolean;
|
|
71
|
+
};
|
|
72
|
+
isDrag: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
shrinkEvent: {
|
|
41
77
|
type: FunctionConstructor;
|
|
42
78
|
default: () => void;
|
|
43
79
|
};
|
|
44
|
-
|
|
80
|
+
closeEvent: {
|
|
45
81
|
type: FunctionConstructor;
|
|
46
82
|
default: () => void;
|
|
47
83
|
};
|
|
48
84
|
}>>, {
|
|
49
|
-
|
|
50
|
-
|
|
85
|
+
isShrink: boolean;
|
|
86
|
+
isClose: boolean;
|
|
87
|
+
isDrag: boolean;
|
|
88
|
+
shrinkEvent: Function;
|
|
89
|
+
closeEvent: Function;
|
|
51
90
|
}>>;
|
|
52
91
|
export default SatPanel;
|