sat-earth 0.4.1 → 0.4.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.
Files changed (49) hide show
  1. package/README.md +8 -8
  2. package/dist/packages/auto-import.d.ts +8 -0
  3. package/dist/packages/components/analysis-model/SatModelAnalysis.vue.d.ts +43 -15
  4. package/dist/packages/components/analysis-model/index.d.ts +43 -15
  5. package/dist/packages/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +43 -15
  6. package/dist/packages/components/analysis-spatial/index.d.ts +43 -15
  7. package/dist/packages/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +43 -15
  8. package/dist/packages/components/analysis-terrain/index.d.ts +43 -15
  9. package/dist/packages/components/ballistic/SatBallistic.vue.d.ts +43 -15
  10. package/dist/packages/components/ballistic/index.d.ts +43 -15
  11. package/dist/packages/components/common/TheImageEditor.vue.d.ts +43 -0
  12. package/dist/packages/components/globe/CameraBookmarkPanel.vue.d.ts +43 -15
  13. package/dist/packages/components/globe/SatGlobe.vue.d.ts +43 -15
  14. package/dist/packages/components/globe/index.d.ts +43 -15
  15. package/dist/packages/components/location/SatLocation.vue.d.ts +48 -23
  16. package/dist/packages/components/location/SatLocationMain.vue.d.ts +5 -8
  17. package/dist/packages/components/location/SatPathPlan.vue.d.ts +5 -5
  18. package/dist/packages/components/location/index.d.ts +48 -23
  19. package/dist/packages/components/map-part/SatMapPart.vue.d.ts +43 -16
  20. package/dist/packages/components/map-part/SatMapPartMain.vue.d.ts +0 -1
  21. package/dist/packages/components/map-part/index.d.ts +43 -16
  22. package/dist/packages/components/measure/SatMeasure.vue.d.ts +43 -15
  23. package/dist/packages/components/measure/index.d.ts +43 -15
  24. package/dist/packages/components/panel/SatPanel.vue.d.ts +44 -15
  25. package/dist/packages/components/panel/index.d.ts +43 -15
  26. package/dist/packages/components/picture/SatPicture.vue.d.ts +84 -15
  27. package/dist/packages/components/picture/index.d.ts +84 -15
  28. package/dist/packages/components/plot/PlotEdit.vue.d.ts +1 -0
  29. package/dist/packages/components/plot/PlotEditStyle.vue.d.ts +1 -0
  30. package/dist/packages/components/plot/SatPlot.vue.d.ts +44 -15
  31. package/dist/packages/components/plot/SatPlotMain.vue.d.ts +1 -0
  32. package/dist/packages/components/plot/index.d.ts +44 -15
  33. package/dist/packages/components/roam/SatRoam.vue.d.ts +43 -15
  34. package/dist/packages/components/roam/index.d.ts +43 -15
  35. package/dist/packages/components/source/SatSource.vue.d.ts +43 -15
  36. package/dist/packages/components/source/index.d.ts +43 -15
  37. package/dist/packages/components/video-fusion/SatVideoFusion.vue.d.ts +43 -15
  38. package/dist/packages/components/video-fusion/index.d.ts +43 -15
  39. package/dist/packages/config/image_editor_locale_zh.d.ts +74 -0
  40. package/dist/packages/env.d.ts +1 -0
  41. package/dist/packages/global-window.d.ts +6 -6
  42. package/dist/packages/global.d.ts +5 -3
  43. package/dist/packages/utils/base64ToFile.d.ts +1 -0
  44. package/dist/packages/utils/map/satMap/plot/plotSource.d.ts +0 -10
  45. package/dist/sat-earth.es.js +2427 -2234
  46. package/dist/sat-earth.umd.js +18 -70
  47. package/dist/style.css +1 -1
  48. package/package.json +27 -24
  49. package/dist/packages/utils/map/satMap/plot/plotStyleConfig.d.ts +0 -821
package/README.md CHANGED
@@ -286,14 +286,14 @@ onMounted(() => {
286
286
 
287
287
  <!-- 使用SatPanel 面板组件 配合自定义菜单项完成自定义功能面板的开发-->
288
288
  <!-- <SatPanel
289
- v-if="treeData.filter(item=>item.name=='hello')[0].enable"
290
- v-show="treeData.filter(item=>item.name=='hello')[0].active"
291
- title="你好啊"
292
- :close="()=>{treeData.filter(item=>item.name=='hello')[0].enable = false}"
293
- :shrink="()=>{treeData.filter(item=>item.name=='hello')[0].active = false}"
294
- >
295
- 内容
296
- </SatPanel> -->
289
+ v-if="treeData.filter(item=>item.name=='hello')[0].enable"
290
+ v-show="treeData.filter(item=>item.name=='hello')[0].active"
291
+ title="你好啊"
292
+ :close-event="()=>{treeData.filter(item=>item.name=='hello')[0].enable = false}"
293
+ :minimize-event="()=>{treeData.filter(item=>item.name=='hello')[0].active = false}"
294
+ >
295
+ 内容
296
+ </SatPanel> -->
297
297
 
298
298
  <!-- 在内置的menu外部使用组件 -->
299
299
  <!-- <SatSource v-model:visible="isSourceVisible"></SatSource> -->
@@ -84,6 +84,8 @@ declare global {
84
84
  const refThrottled: typeof import('@vueuse/core')['refThrottled']
85
85
  const refWithControl: typeof import('@vueuse/core')['refWithControl']
86
86
  const resolveComponent: typeof import('vue')['resolveComponent']
87
+ const resolveRef: typeof import('@vueuse/core')['resolveRef']
88
+ const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
87
89
  const setActivePinia: typeof import('pinia')['setActivePinia']
88
90
  const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
89
91
  const shallowReactive: typeof import('vue')['shallowReactive']
@@ -153,6 +155,7 @@ declare global {
153
155
  const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
154
156
  const useFavicon: typeof import('@vueuse/core')['useFavicon']
155
157
  const useFetch: typeof import('@vueuse/core')['useFetch']
158
+ const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
156
159
  const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
157
160
  const useFocus: typeof import('@vueuse/core')['useFocus']
158
161
  const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
@@ -183,6 +186,7 @@ declare global {
183
186
  const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
184
187
  const useNetwork: typeof import('@vueuse/core')['useNetwork']
185
188
  const useNow: typeof import('@vueuse/core')['useNow']
189
+ const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
186
190
  const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
187
191
  const useOnline: typeof import('@vueuse/core')['useOnline']
188
192
  const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
@@ -206,12 +210,14 @@ declare global {
206
210
  const useSlots: typeof import('vue')['useSlots']
207
211
  const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
208
212
  const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
213
+ const useStepper: typeof import('@vueuse/core')['useStepper']
209
214
  const useStorage: typeof import('@vueuse/core')['useStorage']
210
215
  const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
211
216
  const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
212
217
  const useSwipe: typeof import('@vueuse/core')['useSwipe']
213
218
  const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
214
219
  const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
220
+ const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
215
221
  const useThrottle: typeof import('@vueuse/core')['useThrottle']
216
222
  const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
217
223
  const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
@@ -238,6 +244,7 @@ declare global {
238
244
  const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
239
245
  const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
240
246
  const watch: typeof import('vue')['watch']
247
+ const watchArray: typeof import('@vueuse/core')['watchArray']
241
248
  const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
242
249
  const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
243
250
  const watchEffect: typeof import('vue')['watchEffect']
@@ -247,6 +254,7 @@ declare global {
247
254
  const watchPostEffect: typeof import('vue')['watchPostEffect']
248
255
  const watchSyncEffect: typeof import('vue')['watchSyncEffect']
249
256
  const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
257
+ const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
250
258
  const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
251
259
  const whenever: typeof import('@vueuse/core')['whenever']
252
260
  }
@@ -154,19 +154,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
154
154
  type: StringConstructor;
155
155
  required: true;
156
156
  };
157
- isShrink: {
157
+ isDrag: {
158
158
  type: BooleanConstructor;
159
159
  default: boolean;
160
160
  };
161
- isClose: {
161
+ isMaximize: {
162
162
  type: BooleanConstructor;
163
163
  default: boolean;
164
164
  };
165
- isDrag: {
165
+ windowSize: {
166
+ type: import("vue").PropType<"Maximize" | "Nomal">;
167
+ default: string;
168
+ };
169
+ isMinimize: {
166
170
  type: BooleanConstructor;
167
171
  default: boolean;
168
172
  };
169
- shrinkEvent: {
173
+ isClose: {
174
+ type: BooleanConstructor;
175
+ default: boolean;
176
+ };
177
+ minimizeEvent: {
170
178
  type: FunctionConstructor;
171
179
  default: () => void;
172
180
  };
@@ -180,19 +188,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
180
188
  type: StringConstructor;
181
189
  required: true;
182
190
  };
183
- isShrink: {
191
+ isDrag: {
184
192
  type: BooleanConstructor;
185
193
  default: boolean;
186
194
  };
187
- isClose: {
195
+ isMaximize: {
188
196
  type: BooleanConstructor;
189
197
  default: boolean;
190
198
  };
191
- isDrag: {
199
+ windowSize: {
200
+ type: import("vue").PropType<"Maximize" | "Nomal">;
201
+ default: string;
202
+ };
203
+ isMinimize: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ isClose: {
192
208
  type: BooleanConstructor;
193
209
  default: boolean;
194
210
  };
195
- shrinkEvent: {
211
+ minimizeEvent: {
196
212
  type: FunctionConstructor;
197
213
  default: () => void;
198
214
  };
@@ -207,24 +223,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
207
223
  draggable: import("vue").Ref<boolean>;
208
224
  dragElement: import("vue").Ref<HTMLElement | null>;
209
225
  style: import("vue").ComputedRef<string>;
226
+ windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
227
+ changeWindowSize: () => void;
210
228
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
211
229
  title: {
212
230
  type: StringConstructor;
213
231
  required: true;
214
232
  };
215
- isShrink: {
233
+ isDrag: {
216
234
  type: BooleanConstructor;
217
235
  default: boolean;
218
236
  };
219
- isClose: {
237
+ isMaximize: {
220
238
  type: BooleanConstructor;
221
239
  default: boolean;
222
240
  };
223
- isDrag: {
241
+ windowSize: {
242
+ type: import("vue").PropType<"Maximize" | "Nomal">;
243
+ default: string;
244
+ };
245
+ isMinimize: {
224
246
  type: BooleanConstructor;
225
247
  default: boolean;
226
248
  };
227
- shrinkEvent: {
249
+ isClose: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ minimizeEvent: {
228
254
  type: FunctionConstructor;
229
255
  default: () => void;
230
256
  };
@@ -233,10 +259,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
233
259
  default: () => void;
234
260
  };
235
261
  }>>, {
236
- isShrink: boolean;
237
- isClose: boolean;
238
262
  isDrag: boolean;
239
- shrinkEvent: Function;
263
+ isMaximize: boolean;
264
+ windowSize: "Maximize" | "Nomal";
265
+ isMinimize: boolean;
266
+ isClose: boolean;
267
+ minimizeEvent: Function;
240
268
  closeEvent: Function;
241
269
  }>;
242
270
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -154,19 +154,27 @@ export declare const SatModelAnalysis: import('../../utils/installer').SFCWithIn
154
154
  type: StringConstructor;
155
155
  required: true;
156
156
  };
157
- isShrink: {
157
+ isDrag: {
158
158
  type: BooleanConstructor;
159
159
  default: boolean;
160
160
  };
161
- isClose: {
161
+ isMaximize: {
162
162
  type: BooleanConstructor;
163
163
  default: boolean;
164
164
  };
165
- isDrag: {
165
+ windowSize: {
166
+ type: import("vue").PropType<"Maximize" | "Nomal">;
167
+ default: string;
168
+ };
169
+ isMinimize: {
166
170
  type: BooleanConstructor;
167
171
  default: boolean;
168
172
  };
169
- shrinkEvent: {
173
+ isClose: {
174
+ type: BooleanConstructor;
175
+ default: boolean;
176
+ };
177
+ minimizeEvent: {
170
178
  type: FunctionConstructor;
171
179
  default: () => void;
172
180
  };
@@ -180,19 +188,27 @@ export declare const SatModelAnalysis: import('../../utils/installer').SFCWithIn
180
188
  type: StringConstructor;
181
189
  required: true;
182
190
  };
183
- isShrink: {
191
+ isDrag: {
184
192
  type: BooleanConstructor;
185
193
  default: boolean;
186
194
  };
187
- isClose: {
195
+ isMaximize: {
188
196
  type: BooleanConstructor;
189
197
  default: boolean;
190
198
  };
191
- isDrag: {
199
+ windowSize: {
200
+ type: import("vue").PropType<"Maximize" | "Nomal">;
201
+ default: string;
202
+ };
203
+ isMinimize: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ isClose: {
192
208
  type: BooleanConstructor;
193
209
  default: boolean;
194
210
  };
195
- shrinkEvent: {
211
+ minimizeEvent: {
196
212
  type: FunctionConstructor;
197
213
  default: () => void;
198
214
  };
@@ -207,24 +223,34 @@ export declare const SatModelAnalysis: import('../../utils/installer').SFCWithIn
207
223
  draggable: import("vue").Ref<boolean>;
208
224
  dragElement: import("vue").Ref<HTMLElement | null>;
209
225
  style: import("vue").ComputedRef<string>;
226
+ windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
227
+ changeWindowSize: () => void;
210
228
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
211
229
  title: {
212
230
  type: StringConstructor;
213
231
  required: true;
214
232
  };
215
- isShrink: {
233
+ isDrag: {
216
234
  type: BooleanConstructor;
217
235
  default: boolean;
218
236
  };
219
- isClose: {
237
+ isMaximize: {
220
238
  type: BooleanConstructor;
221
239
  default: boolean;
222
240
  };
223
- isDrag: {
241
+ windowSize: {
242
+ type: import("vue").PropType<"Maximize" | "Nomal">;
243
+ default: string;
244
+ };
245
+ isMinimize: {
224
246
  type: BooleanConstructor;
225
247
  default: boolean;
226
248
  };
227
- shrinkEvent: {
249
+ isClose: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ minimizeEvent: {
228
254
  type: FunctionConstructor;
229
255
  default: () => void;
230
256
  };
@@ -233,10 +259,12 @@ export declare const SatModelAnalysis: import('../../utils/installer').SFCWithIn
233
259
  default: () => void;
234
260
  };
235
261
  }>>, {
236
- isShrink: boolean;
237
- isClose: boolean;
238
262
  isDrag: boolean;
239
- shrinkEvent: Function;
263
+ isMaximize: boolean;
264
+ windowSize: "Maximize" | "Nomal";
265
+ isMinimize: boolean;
266
+ isClose: boolean;
267
+ minimizeEvent: Function;
240
268
  closeEvent: Function;
241
269
  }>;
242
270
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -154,19 +154,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
154
154
  type: StringConstructor;
155
155
  required: true;
156
156
  };
157
- isShrink: {
157
+ isDrag: {
158
158
  type: BooleanConstructor;
159
159
  default: boolean;
160
160
  };
161
- isClose: {
161
+ isMaximize: {
162
162
  type: BooleanConstructor;
163
163
  default: boolean;
164
164
  };
165
- isDrag: {
165
+ windowSize: {
166
+ type: import("vue").PropType<"Maximize" | "Nomal">;
167
+ default: string;
168
+ };
169
+ isMinimize: {
166
170
  type: BooleanConstructor;
167
171
  default: boolean;
168
172
  };
169
- shrinkEvent: {
173
+ isClose: {
174
+ type: BooleanConstructor;
175
+ default: boolean;
176
+ };
177
+ minimizeEvent: {
170
178
  type: FunctionConstructor;
171
179
  default: () => void;
172
180
  };
@@ -180,19 +188,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
180
188
  type: StringConstructor;
181
189
  required: true;
182
190
  };
183
- isShrink: {
191
+ isDrag: {
184
192
  type: BooleanConstructor;
185
193
  default: boolean;
186
194
  };
187
- isClose: {
195
+ isMaximize: {
188
196
  type: BooleanConstructor;
189
197
  default: boolean;
190
198
  };
191
- isDrag: {
199
+ windowSize: {
200
+ type: import("vue").PropType<"Maximize" | "Nomal">;
201
+ default: string;
202
+ };
203
+ isMinimize: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ isClose: {
192
208
  type: BooleanConstructor;
193
209
  default: boolean;
194
210
  };
195
- shrinkEvent: {
211
+ minimizeEvent: {
196
212
  type: FunctionConstructor;
197
213
  default: () => void;
198
214
  };
@@ -207,24 +223,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
207
223
  draggable: import("vue").Ref<boolean>;
208
224
  dragElement: import("vue").Ref<HTMLElement | null>;
209
225
  style: import("vue").ComputedRef<string>;
226
+ windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
227
+ changeWindowSize: () => void;
210
228
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
211
229
  title: {
212
230
  type: StringConstructor;
213
231
  required: true;
214
232
  };
215
- isShrink: {
233
+ isDrag: {
216
234
  type: BooleanConstructor;
217
235
  default: boolean;
218
236
  };
219
- isClose: {
237
+ isMaximize: {
220
238
  type: BooleanConstructor;
221
239
  default: boolean;
222
240
  };
223
- isDrag: {
241
+ windowSize: {
242
+ type: import("vue").PropType<"Maximize" | "Nomal">;
243
+ default: string;
244
+ };
245
+ isMinimize: {
224
246
  type: BooleanConstructor;
225
247
  default: boolean;
226
248
  };
227
- shrinkEvent: {
249
+ isClose: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ minimizeEvent: {
228
254
  type: FunctionConstructor;
229
255
  default: () => void;
230
256
  };
@@ -233,10 +259,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
233
259
  default: () => void;
234
260
  };
235
261
  }>>, {
236
- isShrink: boolean;
237
- isClose: boolean;
238
262
  isDrag: boolean;
239
- shrinkEvent: Function;
263
+ isMaximize: boolean;
264
+ windowSize: "Maximize" | "Nomal";
265
+ isMinimize: boolean;
266
+ isClose: boolean;
267
+ minimizeEvent: Function;
240
268
  closeEvent: Function;
241
269
  }>;
242
270
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -154,19 +154,27 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
154
154
  type: StringConstructor;
155
155
  required: true;
156
156
  };
157
- isShrink: {
157
+ isDrag: {
158
158
  type: BooleanConstructor;
159
159
  default: boolean;
160
160
  };
161
- isClose: {
161
+ isMaximize: {
162
162
  type: BooleanConstructor;
163
163
  default: boolean;
164
164
  };
165
- isDrag: {
165
+ windowSize: {
166
+ type: import("vue").PropType<"Maximize" | "Nomal">;
167
+ default: string;
168
+ };
169
+ isMinimize: {
166
170
  type: BooleanConstructor;
167
171
  default: boolean;
168
172
  };
169
- shrinkEvent: {
173
+ isClose: {
174
+ type: BooleanConstructor;
175
+ default: boolean;
176
+ };
177
+ minimizeEvent: {
170
178
  type: FunctionConstructor;
171
179
  default: () => void;
172
180
  };
@@ -180,19 +188,27 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
180
188
  type: StringConstructor;
181
189
  required: true;
182
190
  };
183
- isShrink: {
191
+ isDrag: {
184
192
  type: BooleanConstructor;
185
193
  default: boolean;
186
194
  };
187
- isClose: {
195
+ isMaximize: {
188
196
  type: BooleanConstructor;
189
197
  default: boolean;
190
198
  };
191
- isDrag: {
199
+ windowSize: {
200
+ type: import("vue").PropType<"Maximize" | "Nomal">;
201
+ default: string;
202
+ };
203
+ isMinimize: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ isClose: {
192
208
  type: BooleanConstructor;
193
209
  default: boolean;
194
210
  };
195
- shrinkEvent: {
211
+ minimizeEvent: {
196
212
  type: FunctionConstructor;
197
213
  default: () => void;
198
214
  };
@@ -207,24 +223,34 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
207
223
  draggable: import("vue").Ref<boolean>;
208
224
  dragElement: import("vue").Ref<HTMLElement | null>;
209
225
  style: import("vue").ComputedRef<string>;
226
+ windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
227
+ changeWindowSize: () => void;
210
228
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
211
229
  title: {
212
230
  type: StringConstructor;
213
231
  required: true;
214
232
  };
215
- isShrink: {
233
+ isDrag: {
216
234
  type: BooleanConstructor;
217
235
  default: boolean;
218
236
  };
219
- isClose: {
237
+ isMaximize: {
220
238
  type: BooleanConstructor;
221
239
  default: boolean;
222
240
  };
223
- isDrag: {
241
+ windowSize: {
242
+ type: import("vue").PropType<"Maximize" | "Nomal">;
243
+ default: string;
244
+ };
245
+ isMinimize: {
224
246
  type: BooleanConstructor;
225
247
  default: boolean;
226
248
  };
227
- shrinkEvent: {
249
+ isClose: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ minimizeEvent: {
228
254
  type: FunctionConstructor;
229
255
  default: () => void;
230
256
  };
@@ -233,10 +259,12 @@ export declare const SatSpatialAnalysis: import('../../utils/installer').SFCWith
233
259
  default: () => void;
234
260
  };
235
261
  }>>, {
236
- isShrink: boolean;
237
- isClose: boolean;
238
262
  isDrag: boolean;
239
- shrinkEvent: Function;
263
+ isMaximize: boolean;
264
+ windowSize: "Maximize" | "Nomal";
265
+ isMinimize: boolean;
266
+ isClose: boolean;
267
+ minimizeEvent: Function;
240
268
  closeEvent: Function;
241
269
  }>;
242
270
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -154,19 +154,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
154
154
  type: StringConstructor;
155
155
  required: true;
156
156
  };
157
- isShrink: {
157
+ isDrag: {
158
158
  type: BooleanConstructor;
159
159
  default: boolean;
160
160
  };
161
- isClose: {
161
+ isMaximize: {
162
162
  type: BooleanConstructor;
163
163
  default: boolean;
164
164
  };
165
- isDrag: {
165
+ windowSize: {
166
+ type: import("vue").PropType<"Maximize" | "Nomal">;
167
+ default: string;
168
+ };
169
+ isMinimize: {
166
170
  type: BooleanConstructor;
167
171
  default: boolean;
168
172
  };
169
- shrinkEvent: {
173
+ isClose: {
174
+ type: BooleanConstructor;
175
+ default: boolean;
176
+ };
177
+ minimizeEvent: {
170
178
  type: FunctionConstructor;
171
179
  default: () => void;
172
180
  };
@@ -180,19 +188,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
180
188
  type: StringConstructor;
181
189
  required: true;
182
190
  };
183
- isShrink: {
191
+ isDrag: {
184
192
  type: BooleanConstructor;
185
193
  default: boolean;
186
194
  };
187
- isClose: {
195
+ isMaximize: {
188
196
  type: BooleanConstructor;
189
197
  default: boolean;
190
198
  };
191
- isDrag: {
199
+ windowSize: {
200
+ type: import("vue").PropType<"Maximize" | "Nomal">;
201
+ default: string;
202
+ };
203
+ isMinimize: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ isClose: {
192
208
  type: BooleanConstructor;
193
209
  default: boolean;
194
210
  };
195
- shrinkEvent: {
211
+ minimizeEvent: {
196
212
  type: FunctionConstructor;
197
213
  default: () => void;
198
214
  };
@@ -207,24 +223,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
207
223
  draggable: import("vue").Ref<boolean>;
208
224
  dragElement: import("vue").Ref<HTMLElement | null>;
209
225
  style: import("vue").ComputedRef<string>;
226
+ windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
227
+ changeWindowSize: () => void;
210
228
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
211
229
  title: {
212
230
  type: StringConstructor;
213
231
  required: true;
214
232
  };
215
- isShrink: {
233
+ isDrag: {
216
234
  type: BooleanConstructor;
217
235
  default: boolean;
218
236
  };
219
- isClose: {
237
+ isMaximize: {
220
238
  type: BooleanConstructor;
221
239
  default: boolean;
222
240
  };
223
- isDrag: {
241
+ windowSize: {
242
+ type: import("vue").PropType<"Maximize" | "Nomal">;
243
+ default: string;
244
+ };
245
+ isMinimize: {
224
246
  type: BooleanConstructor;
225
247
  default: boolean;
226
248
  };
227
- shrinkEvent: {
249
+ isClose: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ minimizeEvent: {
228
254
  type: FunctionConstructor;
229
255
  default: () => void;
230
256
  };
@@ -233,10 +259,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
233
259
  default: () => void;
234
260
  };
235
261
  }>>, {
236
- isShrink: boolean;
237
- isClose: boolean;
238
262
  isDrag: boolean;
239
- shrinkEvent: Function;
263
+ isMaximize: boolean;
264
+ windowSize: "Maximize" | "Nomal";
265
+ isMinimize: boolean;
266
+ isClose: boolean;
267
+ minimizeEvent: Function;
240
268
  closeEvent: Function;
241
269
  }>;
242
270
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{