ym-giswidget-2d 1.0.5 → 1.0.6
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/components/horizontally-top-toolbar/horizontallyTopToolbar.vue2.js +1 -1
- package/components/layer-tree/index.d.ts +194 -184
- package/components/layer-tree/layerTree.vue.d.ts +212 -186
- package/components/layer-tree/layerTree.vue2.js +1 -1
- package/components/multi-screen/MultiScreen.vue2.js +1 -1
- package/components/multi-screen-panel/PanelMultiScreen.vue2.js +1 -1
- package/components/toc-card/tocCard.vue2.js +1 -1
- package/css/index.css +64 -14
- package/package.json +2 -2
- package/panel/DraggablePanel.vue2.js +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElTooltip } from "element-plus/es";
|
|
2
2
|
import "element-plus/es/components/base/style/css";
|
|
3
3
|
import "element-plus/es/components/tooltip/style/css";
|
|
4
|
-
import { defineComponent, ref, toRaw, reactive, onMounted, computed,
|
|
4
|
+
import { defineComponent, ref, toRaw, reactive, onMounted, computed, createElementBlock, openBlock, createVNode, unref, withCtx, createElementVNode, normalizeClass, createTextVNode, toDisplayString, nextTick } from "vue";
|
|
5
5
|
import { ElMessage, ElTree } from "element-plus";
|
|
6
6
|
import LayerManager from "ym-giscomm-2d/layers/LayerManager";
|
|
7
7
|
import { mapServiceTreeTransform } from "ym-giscomm-2d/utils/LayerUtil";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, reactive, onMounted, onUnmounted, computed,
|
|
1
|
+
import { defineComponent, reactive, onMounted, onUnmounted, computed, createElementBlock, openBlock, Fragment, renderList, normalizeStyle, createElementVNode, createBlock, createCommentVNode, unref } from "vue";
|
|
2
2
|
import OLMap from "ym-giscomm-2d/mapView/Map";
|
|
3
3
|
import { TocCard } from "../toc-card/index.js";
|
|
4
4
|
import OLView from "ym-giscomm-2d/mapView/View";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent,
|
|
1
|
+
import { defineComponent, createBlock, openBlock, withCtx, createVNode, unref } from "vue";
|
|
2
2
|
import DraggablePanel from "../../panel/DraggablePanel.vue.js";
|
|
3
3
|
import { MultiScreen } from "../multi-screen/index.js";
|
|
4
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElCard } from "element-plus/es";
|
|
2
2
|
import "element-plus/es/components/base/style/css";
|
|
3
3
|
import "element-plus/es/components/card/style/css";
|
|
4
|
-
import { defineComponent,
|
|
4
|
+
import { defineComponent, createBlock, openBlock, withCtx, createVNode, unref } from "vue";
|
|
5
5
|
import { LayerTree } from "../layer-tree/index.js";
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7
7
|
__name: "tocCard",
|
package/css/index.css
CHANGED
|
@@ -1847,10 +1847,6 @@
|
|
|
1847
1847
|
text-overflow: ellipsis;
|
|
1848
1848
|
}
|
|
1849
1849
|
|
|
1850
|
-
.el-cascader .el-input .el-input__suffix-inner .el-icon {
|
|
1851
|
-
height: calc(100% - 2px);
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
1850
|
.el-cascader .el-input .el-input__suffix-inner .el-icon svg {
|
|
1855
1851
|
vertical-align: middle;
|
|
1856
1852
|
}
|
|
@@ -1992,6 +1988,7 @@
|
|
|
1992
1988
|
|
|
1993
1989
|
.el-cascader__tags .el-tag > span {
|
|
1994
1990
|
flex: 1;
|
|
1991
|
+
line-height: normal;
|
|
1995
1992
|
overflow: hidden;
|
|
1996
1993
|
text-overflow: ellipsis;
|
|
1997
1994
|
}
|
|
@@ -2041,6 +2038,7 @@
|
|
|
2041
2038
|
|
|
2042
2039
|
.el-cascader__collapse-tags .el-tag > span {
|
|
2043
2040
|
flex: 1;
|
|
2041
|
+
line-height: normal;
|
|
2044
2042
|
overflow: hidden;
|
|
2045
2043
|
text-overflow: ellipsis;
|
|
2046
2044
|
}
|
|
@@ -5918,6 +5916,10 @@
|
|
|
5918
5916
|
border-color: var(--el-color-primary);
|
|
5919
5917
|
}
|
|
5920
5918
|
|
|
5919
|
+
.el-color-picker.is-disabled {
|
|
5920
|
+
pointer-events: none;
|
|
5921
|
+
}
|
|
5922
|
+
|
|
5921
5923
|
.el-color-picker.is-disabled .el-color-picker__trigger {
|
|
5922
5924
|
cursor: not-allowed;
|
|
5923
5925
|
}
|
|
@@ -6733,6 +6735,7 @@
|
|
|
6733
6735
|
background-color: var(--el-disabled-bg-color);
|
|
6734
6736
|
color: var(--el-disabled-text-color);
|
|
6735
6737
|
cursor: not-allowed;
|
|
6738
|
+
pointer-events: none;
|
|
6736
6739
|
}
|
|
6737
6740
|
|
|
6738
6741
|
.el-range-editor.is-disabled, .el-range-editor.is-disabled:focus, .el-range-editor.is-disabled:hover {
|
|
@@ -7437,6 +7440,7 @@
|
|
|
7437
7440
|
.el-dialog.is-fullscreen {
|
|
7438
7441
|
--el-dialog-width:100%;
|
|
7439
7442
|
--el-dialog-margin-top:0;
|
|
7443
|
+
border-radius: 0;
|
|
7440
7444
|
height: 100%;
|
|
7441
7445
|
margin-bottom: 0;
|
|
7442
7446
|
overflow: auto;
|
|
@@ -8246,7 +8250,6 @@
|
|
|
8246
8250
|
|
|
8247
8251
|
.el-image-viewer__btn .el-icon {
|
|
8248
8252
|
cursor: pointer;
|
|
8249
|
-
font-size: inherit;
|
|
8250
8253
|
}
|
|
8251
8254
|
|
|
8252
8255
|
.el-image-viewer__close {
|
|
@@ -8278,7 +8281,6 @@
|
|
|
8278
8281
|
left: 50%;
|
|
8279
8282
|
padding: 0 23px;
|
|
8280
8283
|
transform: translateX(-50%);
|
|
8281
|
-
width: 282px;
|
|
8282
8284
|
}
|
|
8283
8285
|
|
|
8284
8286
|
.el-image-viewer__actions__inner {
|
|
@@ -8287,11 +8289,25 @@
|
|
|
8287
8289
|
cursor: default;
|
|
8288
8290
|
display: flex;
|
|
8289
8291
|
font-size: 23px;
|
|
8292
|
+
gap: 22px;
|
|
8290
8293
|
height: 100%;
|
|
8291
8294
|
justify-content: space-around;
|
|
8295
|
+
padding: 0 6px;
|
|
8292
8296
|
width: 100%;
|
|
8293
8297
|
}
|
|
8294
8298
|
|
|
8299
|
+
.el-image-viewer__actions__divider {
|
|
8300
|
+
margin: 0 -6px;
|
|
8301
|
+
}
|
|
8302
|
+
|
|
8303
|
+
.el-image-viewer__progress {
|
|
8304
|
+
bottom: 90px;
|
|
8305
|
+
color: #fff;
|
|
8306
|
+
cursor: default;
|
|
8307
|
+
left: 50%;
|
|
8308
|
+
transform: translateX(-50%);
|
|
8309
|
+
}
|
|
8310
|
+
|
|
8295
8311
|
.el-image-viewer__prev {
|
|
8296
8312
|
left: 40px;
|
|
8297
8313
|
}
|
|
@@ -8591,8 +8607,11 @@
|
|
|
8591
8607
|
box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset;
|
|
8592
8608
|
}
|
|
8593
8609
|
|
|
8594
|
-
.el-
|
|
8610
|
+
.el-input {
|
|
8595
8611
|
--el-input-inner-height:calc(var(--el-input-height, 32px) - 2px);
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8614
|
+
.el-input__inner {
|
|
8596
8615
|
-webkit-appearance: none;
|
|
8597
8616
|
background: none;
|
|
8598
8617
|
border: none;
|
|
@@ -8633,6 +8652,7 @@
|
|
|
8633
8652
|
flex-shrink: 0;
|
|
8634
8653
|
flex-wrap: nowrap;
|
|
8635
8654
|
height: 100%;
|
|
8655
|
+
line-height: var(--el-input-inner-height);
|
|
8636
8656
|
pointer-events: none;
|
|
8637
8657
|
text-align: center;
|
|
8638
8658
|
transition: all var(--el-transition-duration);
|
|
@@ -8660,6 +8680,7 @@
|
|
|
8660
8680
|
flex-shrink: 0;
|
|
8661
8681
|
flex-wrap: nowrap;
|
|
8662
8682
|
height: 100%;
|
|
8683
|
+
line-height: var(--el-input-inner-height);
|
|
8663
8684
|
pointer-events: none;
|
|
8664
8685
|
text-align: center;
|
|
8665
8686
|
transition: all var(--el-transition-duration);
|
|
@@ -8702,6 +8723,8 @@
|
|
|
8702
8723
|
.el-input.is-disabled .el-input__wrapper {
|
|
8703
8724
|
background-color: var(--el-disabled-bg-color);
|
|
8704
8725
|
box-shadow: 0 0 0 1px var(--el-disabled-border-color) inset;
|
|
8726
|
+
cursor: not-allowed;
|
|
8727
|
+
pointer-events: none;
|
|
8705
8728
|
}
|
|
8706
8729
|
|
|
8707
8730
|
.el-input.is-disabled .el-input__inner {
|
|
@@ -8739,7 +8762,7 @@
|
|
|
8739
8762
|
padding: 1px 15px;
|
|
8740
8763
|
}
|
|
8741
8764
|
|
|
8742
|
-
.el-input--large
|
|
8765
|
+
.el-input--large {
|
|
8743
8766
|
--el-input-inner-height:calc(var(--el-input-height, 40px) - 2px);
|
|
8744
8767
|
}
|
|
8745
8768
|
|
|
@@ -8752,7 +8775,7 @@
|
|
|
8752
8775
|
padding: 1px 7px;
|
|
8753
8776
|
}
|
|
8754
8777
|
|
|
8755
|
-
.el-input--small
|
|
8778
|
+
.el-input--small {
|
|
8756
8779
|
--el-input-inner-height:calc(var(--el-input-height, 24px) - 2px);
|
|
8757
8780
|
}
|
|
8758
8781
|
|
|
@@ -8921,6 +8944,10 @@
|
|
|
8921
8944
|
width: 40px;
|
|
8922
8945
|
}
|
|
8923
8946
|
|
|
8947
|
+
.el-input-number--large.is-controls-right .el-input--large .el-input__wrapper {
|
|
8948
|
+
padding-right: 47px;
|
|
8949
|
+
}
|
|
8950
|
+
|
|
8924
8951
|
.el-input-number--large .el-input--large .el-input__wrapper {
|
|
8925
8952
|
padding-left: 47px;
|
|
8926
8953
|
padding-right: 47px;
|
|
@@ -8936,6 +8963,10 @@
|
|
|
8936
8963
|
width: 24px;
|
|
8937
8964
|
}
|
|
8938
8965
|
|
|
8966
|
+
.el-input-number--small.is-controls-right .el-input--small .el-input__wrapper {
|
|
8967
|
+
padding-right: 31px;
|
|
8968
|
+
}
|
|
8969
|
+
|
|
8939
8970
|
.el-input-number--small .el-input--small .el-input__wrapper {
|
|
8940
8971
|
padding-left: 31px;
|
|
8941
8972
|
padding-right: 31px;
|
|
@@ -8991,6 +9022,7 @@
|
|
|
8991
9022
|
|
|
8992
9023
|
.el-input-tag {
|
|
8993
9024
|
--el-input-tag-border-color-hover:var(--el-border-color-hover);
|
|
9025
|
+
--el-input-tag-placeholder-color:var(--el-text-color-placeholder);
|
|
8994
9026
|
--el-input-tag-disabled-color:var(--el-disabled-text-color);
|
|
8995
9027
|
--el-input-tag-disabled-border:var(--el-disabled-border-color);
|
|
8996
9028
|
--el-input-tag-font-size:var(--el-font-size-base);
|
|
@@ -9030,6 +9062,7 @@
|
|
|
9030
9062
|
.el-input-tag.is-disabled {
|
|
9031
9063
|
background-color: var(--el-fill-color-light);
|
|
9032
9064
|
cursor: not-allowed;
|
|
9065
|
+
pointer-events: none;
|
|
9033
9066
|
}
|
|
9034
9067
|
|
|
9035
9068
|
.el-input-tag.is-disabled, .el-input-tag.is-disabled:hover {
|
|
@@ -9127,6 +9160,14 @@
|
|
|
9127
9160
|
width: 100%;
|
|
9128
9161
|
}
|
|
9129
9162
|
|
|
9163
|
+
.el-input-tag__input::-moz-placeholder {
|
|
9164
|
+
color: var(--el-input-tag-placeholder-color);
|
|
9165
|
+
}
|
|
9166
|
+
|
|
9167
|
+
.el-input-tag__input::placeholder {
|
|
9168
|
+
color: var(--el-input-tag-placeholder-color);
|
|
9169
|
+
}
|
|
9170
|
+
|
|
9130
9171
|
.el-input-tag__input-calculator {
|
|
9131
9172
|
left: 0;
|
|
9132
9173
|
max-width: 100%;
|
|
@@ -10080,8 +10121,10 @@
|
|
|
10080
10121
|
}
|
|
10081
10122
|
|
|
10082
10123
|
.el-notification__group {
|
|
10124
|
+
flex: 1;
|
|
10083
10125
|
margin-left: var(--el-notification-group-margin-left);
|
|
10084
10126
|
margin-right: var(--el-notification-group-margin-right);
|
|
10127
|
+
min-width: 0;
|
|
10085
10128
|
}
|
|
10086
10129
|
|
|
10087
10130
|
.el-notification__title {
|
|
@@ -10104,6 +10147,7 @@
|
|
|
10104
10147
|
}
|
|
10105
10148
|
|
|
10106
10149
|
.el-notification .el-notification__icon {
|
|
10150
|
+
flex-shrink: 0;
|
|
10107
10151
|
font-size: var(--el-notification-icon-size);
|
|
10108
10152
|
height: var(--el-notification-icon-size);
|
|
10109
10153
|
width: var(--el-notification-icon-size);
|
|
@@ -11513,6 +11557,7 @@
|
|
|
11513
11557
|
background-color: var(--el-fill-color-light);
|
|
11514
11558
|
color: var(--el-text-color-placeholder);
|
|
11515
11559
|
cursor: not-allowed;
|
|
11560
|
+
pointer-events: none;
|
|
11516
11561
|
}
|
|
11517
11562
|
|
|
11518
11563
|
.el-select__wrapper.is-disabled, .el-select__wrapper.is-disabled:hover {
|
|
@@ -11603,6 +11648,7 @@
|
|
|
11603
11648
|
top: 50%;
|
|
11604
11649
|
transform: translateY(-50%);
|
|
11605
11650
|
width: 100%;
|
|
11651
|
+
z-index: -1;
|
|
11606
11652
|
}
|
|
11607
11653
|
|
|
11608
11654
|
.el-select__placeholder.is-transparent {
|
|
@@ -11642,12 +11688,13 @@
|
|
|
11642
11688
|
}
|
|
11643
11689
|
|
|
11644
11690
|
.el-select__input-wrapper {
|
|
11645
|
-
|
|
11691
|
+
flex: 1;
|
|
11646
11692
|
}
|
|
11647
11693
|
|
|
11648
11694
|
.el-select__input-wrapper.is-hidden {
|
|
11649
11695
|
opacity: 0;
|
|
11650
11696
|
position: absolute;
|
|
11697
|
+
z-index: -1;
|
|
11651
11698
|
}
|
|
11652
11699
|
|
|
11653
11700
|
.el-select__input {
|
|
@@ -11660,9 +11707,9 @@
|
|
|
11660
11707
|
font-family: inherit;
|
|
11661
11708
|
font-size: inherit;
|
|
11662
11709
|
height: 24px;
|
|
11663
|
-
max-width: 100%;
|
|
11664
11710
|
outline: none;
|
|
11665
11711
|
padding: 0;
|
|
11712
|
+
width: 100%;
|
|
11666
11713
|
}
|
|
11667
11714
|
|
|
11668
11715
|
.el-select__input.is-disabled {
|
|
@@ -12147,7 +12194,6 @@
|
|
|
12147
12194
|
|
|
12148
12195
|
.el-step__icon.is-text {
|
|
12149
12196
|
border: 2px solid;
|
|
12150
|
-
border-color: inherit;
|
|
12151
12197
|
border-radius: 50%;
|
|
12152
12198
|
}
|
|
12153
12199
|
|
|
@@ -12177,13 +12223,12 @@
|
|
|
12177
12223
|
|
|
12178
12224
|
.el-step__line {
|
|
12179
12225
|
background-color: var(--el-text-color-placeholder);
|
|
12180
|
-
border-color:
|
|
12226
|
+
border-color: currentColor;
|
|
12181
12227
|
position: absolute;
|
|
12182
12228
|
}
|
|
12183
12229
|
|
|
12184
12230
|
.el-step__line-inner {
|
|
12185
12231
|
border: 1px solid;
|
|
12186
|
-
border-color: inherit;
|
|
12187
12232
|
box-sizing: border-box;
|
|
12188
12233
|
display: block;
|
|
12189
12234
|
height: 0;
|
|
@@ -13571,6 +13616,7 @@
|
|
|
13571
13616
|
color: var(--el-text-color-primary);
|
|
13572
13617
|
cursor: pointer;
|
|
13573
13618
|
display: flex;
|
|
13619
|
+
flex-shrink: 0;
|
|
13574
13620
|
font-size: 12px;
|
|
13575
13621
|
height: 20px;
|
|
13576
13622
|
justify-content: center;
|
|
@@ -16409,6 +16455,10 @@
|
|
|
16409
16455
|
border-top-color: transparent;
|
|
16410
16456
|
}
|
|
16411
16457
|
|
|
16458
|
+
.el-mention.is-disabled {
|
|
16459
|
+
pointer-events: none;
|
|
16460
|
+
}
|
|
16461
|
+
|
|
16412
16462
|
.el-mention-dropdown {
|
|
16413
16463
|
--el-mention-font-size:var(--el-font-size-base);
|
|
16414
16464
|
--el-mention-bg-color:var(--el-bg-color-overlay);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ym-giswidget-2d",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"ol": "^9.2.4",
|
|
11
11
|
"@element-plus/icons-vue": "^2.3.1",
|
|
12
12
|
"element-plus": "^2.9.0",
|
|
13
|
-
"ym-giscomm-2d": "1.0.
|
|
13
|
+
"ym-giscomm-2d": "1.0.8"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -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,
|
|
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" };
|