ym-giswidget-2d 1.0.5 → 1.0.8

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 (80) hide show
  1. package/_virtual/_commonjs-dynamic-modules.js +6 -0
  2. package/_virtual/_commonjsHelpers.js +8 -0
  3. package/_virtual/jszip.min.js +4 -0
  4. package/components/clear/Clear.vue.d.ts +6 -0
  5. package/components/clear/Clear.vue.js +19 -0
  6. package/components/clear/Clear.vue2.js +4 -0
  7. package/components/clear/index.d.ts +6 -0
  8. package/components/clear/index.js +8 -0
  9. package/components/draw/Draw.vue.d.ts +6 -0
  10. package/components/draw/Draw.vue.js +71 -0
  11. package/components/draw/Draw.vue2.js +4 -0
  12. package/components/draw/index.d.ts +6 -0
  13. package/components/draw/index.js +8 -0
  14. package/components/export/Export.vue.d.ts +154 -0
  15. package/components/export/Export.vue.js +7 -0
  16. package/components/export/Export.vue2.js +298 -0
  17. package/components/export/index.css +3 -0
  18. package/components/export/index.d.ts +154 -0
  19. package/components/export/index.js +8 -0
  20. package/components/horizontally-top-toolbar/{horizontallyTopToolbar.vue.js → HorizontallyTopToolbar.vue.js} +2 -2
  21. package/components/horizontally-top-toolbar/{horizontallyTopToolbar.vue2.js → HorizontallyTopToolbar.vue2.js} +3 -3
  22. package/components/horizontally-top-toolbar/index.css +9 -9
  23. package/components/horizontally-top-toolbar/index.js +1 -1
  24. package/components/identify/Identify.vue.d.ts +13 -0
  25. package/components/identify/Identify.vue.js +96 -0
  26. package/components/identify/Identify.vue2.js +4 -0
  27. package/components/identify/index.d.ts +18 -0
  28. package/components/identify/index.js +8 -0
  29. package/components/import/Import.vue.d.ts +13 -0
  30. package/components/import/Import.vue.js +162 -0
  31. package/components/import/Import.vue2.js +4 -0
  32. package/components/import/index.d.ts +15 -0
  33. package/components/import/index.js +8 -0
  34. package/components/layer-tree/{layerTree.vue.d.ts → LayerTree.vue.d.ts} +212 -186
  35. package/components/layer-tree/{layerTree.vue.js → LayerTree.vue.js} +2 -2
  36. package/components/layer-tree/{layerTree.vue2.js → LayerTree.vue2.js} +2 -2
  37. package/components/layer-tree/index.css +11 -11
  38. package/components/layer-tree/index.d.ts +194 -184
  39. package/components/layer-tree/index.js +1 -1
  40. package/components/multi-screen/MultiScreen.vue.d.ts +425 -0
  41. package/components/multi-screen/MultiScreen.vue2.js +1 -1
  42. package/components/multi-screen/index.d.ts +426 -0
  43. package/components/multi-screen-panel/PanelMultiScreen.vue2.js +1 -1
  44. package/components/popup/Popup.vue.d.ts +158 -0
  45. package/components/popup/Popup.vue.js +8 -0
  46. package/components/popup/Popup.vue2.js +266 -0
  47. package/components/popup/index.css +61 -0
  48. package/components/popup/index.d.ts +157 -0
  49. package/components/popup/index.js +8 -0
  50. package/components/popup/index2.css +5 -0
  51. package/components/select/Select.vue.d.ts +13 -0
  52. package/components/select/Select.vue.js +142 -0
  53. package/components/select/Select.vue2.js +4 -0
  54. package/components/select/index.d.ts +18 -0
  55. package/components/select/index.js +8 -0
  56. package/components/swipe-layer/SwipeLayer.vue.d.ts +6 -0
  57. package/components/swipe-layer/SwipeLayer.vue.js +24 -0
  58. package/components/swipe-layer/SwipeLayer.vue2.js +4 -0
  59. package/components/swipe-layer/index.d.ts +6 -0
  60. package/components/swipe-layer/index.js +8 -0
  61. package/components/toc-card/{tocCard.vue.js → TocCard.vue.js} +2 -2
  62. package/components/toc-card/{tocCard.vue2.js → TocCard.vue2.js} +2 -2
  63. package/components/toc-card/index.css +1 -1
  64. package/components/toc-card/index.js +1 -1
  65. package/config/Config.d.ts +13 -0
  66. package/config/Config.js +8 -0
  67. package/css/index.css +64 -14
  68. package/http/Axios.d.ts +14 -0
  69. package/http/Axios.js +37 -0
  70. package/http/LayerField.js +29 -0
  71. package/http/SpaceFile.d.ts +3 -0
  72. package/http/SpaceFile.js +38 -0
  73. package/http/layerField.d.ts +19 -0
  74. package/index.d.ts +7 -0
  75. package/index.js +14 -0
  76. package/package.json +2 -2
  77. package/panel/DraggablePanel.vue.d.ts +82 -0
  78. package/panel/DraggablePanel.vue2.js +1 -1
  79. /package/components/horizontally-top-toolbar/{horizontallyTopToolbar.vue.d.ts → HorizontallyTopToolbar.vue.d.ts} +0 -0
  80. /package/components/toc-card/{tocCard.vue.d.ts → TocCard.vue.d.ts} +0 -0
@@ -0,0 +1,82 @@
1
+ /**
2
+ * 面板组件
3
+ * @param title 标题
4
+ * @param width 宽度,默认自适应
5
+ * @param height 高度,默认自适应
6
+ * @param minWidth 最小宽度,默认值200
7
+ * @param minHeight 最小高度,默认值100
8
+ * @param resizable 是否可调整大小,默认不可调整
9
+ * @param showClose 是否显示关闭按钮,默认显示
10
+ * @param showMinimize 是否显示最小化按钮,默认显示
11
+ * @param showMaximize 是否显示最大化按钮,默认显示
12
+ * @param showDock 是否显示停靠按钮,默认不显示
13
+ * @param drag 是否可以拖动,默认不可拖动
14
+ * @param showOk 是否显示确定按钮,默认不显示
15
+ * @param showCancel 是否显示取消按钮,默认不显示
16
+ * @param okText 确定按钮的文本,默认值确定
17
+ * @param cancelText 取消按钮的文本,默认值取消
18
+ */
19
+ type __VLS_Props = {
20
+ title?: string;
21
+ width?: number;
22
+ height?: number;
23
+ minWidth?: number;
24
+ minHeight?: number;
25
+ resizable?: boolean;
26
+ showClose?: boolean;
27
+ showMinimize?: boolean;
28
+ showMaximize?: boolean;
29
+ showDock?: boolean;
30
+ drag?: boolean;
31
+ showOk?: boolean;
32
+ showCancel?: boolean;
33
+ okText?: string;
34
+ cancelText?: string;
35
+ };
36
+ declare function __VLS_template(): {
37
+ attrs: Partial<{}>;
38
+ slots: {
39
+ header?(_: {}): any;
40
+ default?(_: {}): any;
41
+ footer?(_: {}): any;
42
+ };
43
+ refs: {
44
+ panelRef: HTMLDivElement;
45
+ };
46
+ rootEl: HTMLDivElement;
47
+ };
48
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
49
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
50
+ close: (...args: any[]) => void;
51
+ resize: (...args: any[]) => void;
52
+ move: (...args: any[]) => void;
53
+ ok: (...args: any[]) => void;
54
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
55
+ onClose?: ((...args: any[]) => any) | undefined;
56
+ onResize?: ((...args: any[]) => any) | undefined;
57
+ onMove?: ((...args: any[]) => any) | undefined;
58
+ onOk?: ((...args: any[]) => any) | undefined;
59
+ }>, {
60
+ title: string;
61
+ showClose: boolean;
62
+ drag: boolean;
63
+ minWidth: number;
64
+ minHeight: number;
65
+ resizable: boolean;
66
+ showMinimize: boolean;
67
+ showMaximize: boolean;
68
+ showDock: boolean;
69
+ showOk: boolean;
70
+ showCancel: boolean;
71
+ okText: string;
72
+ cancelText: string;
73
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
74
+ panelRef: HTMLDivElement;
75
+ }, HTMLDivElement>;
76
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
77
+ export default _default;
78
+ type __VLS_WithTemplateSlots<T, S> = T & {
79
+ new (): {
80
+ $slots: S;
81
+ };
82
+ };
@@ -1,7 +1,7 @@
1
1
  import { ElButton } from "element-plus/es";
2
2
  import "element-plus/es/components/base/style/css";
3
3
  import "element-plus/es/components/button/style/css";
4
- import { defineComponent, ref, computed, onMounted, onBeforeUnmount, withDirectives, openBlock, createElementBlock, normalizeClass, normalizeStyle, createElementVNode, toDisplayString, renderSlot, createCommentVNode, vShow, createBlock, withCtx, createTextVNode } from "vue";
4
+ import { defineComponent, ref, computed, onMounted, onBeforeUnmount, withDirectives, createElementBlock, openBlock, normalizeStyle, normalizeClass, createElementVNode, renderSlot, toDisplayString, createCommentVNode, vShow, createBlock, withCtx, createTextVNode } from "vue";
5
5
  const _hoisted_1 = { class: "panel-title" };
6
6
  const _hoisted_2 = { class: "panel-controls" };
7
7
  const _hoisted_3 = { class: "panel-content" };