vue-openlayers-plugin 1.0.62 → 1.0.64
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/lib/{index-fad70390.mjs → index-d9318890.mjs} +126 -29
- package/lib/{index.es-311a55fb.mjs → index.es-d74b3adf.mjs} +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.umd.js +128 -31
- package/lib/style.css +64 -64
- package/package.json +1 -1
- package/types/src/components/CustomDialog/CustomDialog.vue.d.ts +8 -0
- package/types/src/components/CustomDialog/CustomDialog.vue.d.ts.map +1 -1
- package/types/src/components/CustomOpenlayer/components/dialogs/LayerPanel.vue.d.ts +496 -0
- package/types/src/components/CustomOpenlayer/components/dialogs/LayerPanel.vue.d.ts.map +1 -1
- package/types/src/components/CustomOpenlayer/types/index.d.ts +4 -0
- package/types/src/components/CustomOpenlayer/types/index.d.ts.map +1 -1
package/lib/style.css
CHANGED
|
@@ -685,19 +685,19 @@
|
|
|
685
685
|
|
|
686
686
|
|
|
687
687
|
/* 右侧滑入动画 */
|
|
688
|
-
.fixed.items-stretch.justify-end .bg-white[data-v-
|
|
689
|
-
animation: slideInRight-
|
|
688
|
+
.fixed.items-stretch.justify-end .bg-white[data-v-cf497d77] {
|
|
689
|
+
animation: slideInRight-cf497d77 0.3s ease-out;
|
|
690
690
|
}
|
|
691
|
-
.fixed.items-stretch.justify-start .bg-white[data-v-
|
|
692
|
-
animation: slideInLeft-
|
|
691
|
+
.fixed.items-stretch.justify-start .bg-white[data-v-cf497d77] {
|
|
692
|
+
animation: slideInLeft-cf497d77 0.3s ease-out;
|
|
693
693
|
}
|
|
694
|
-
.fixed.items-start.justify-center .bg-white[data-v-
|
|
695
|
-
animation: slideInTop-
|
|
694
|
+
.fixed.items-start.justify-center .bg-white[data-v-cf497d77] {
|
|
695
|
+
animation: slideInTop-cf497d77 0.3s ease-out;
|
|
696
696
|
}
|
|
697
|
-
.fixed.items-end.justify-center .bg-white[data-v-
|
|
698
|
-
animation: slideInBottom-
|
|
697
|
+
.fixed.items-end.justify-center .bg-white[data-v-cf497d77] {
|
|
698
|
+
animation: slideInBottom-cf497d77 0.3s ease-out;
|
|
699
699
|
}
|
|
700
|
-
@keyframes slideInRight-
|
|
700
|
+
@keyframes slideInRight-cf497d77 {
|
|
701
701
|
from {
|
|
702
702
|
transform: translateX(100%);
|
|
703
703
|
}
|
|
@@ -705,7 +705,7 @@ to {
|
|
|
705
705
|
transform: translateX(0);
|
|
706
706
|
}
|
|
707
707
|
}
|
|
708
|
-
@keyframes slideInLeft-
|
|
708
|
+
@keyframes slideInLeft-cf497d77 {
|
|
709
709
|
from {
|
|
710
710
|
transform: translateX(-100%);
|
|
711
711
|
}
|
|
@@ -713,7 +713,7 @@ to {
|
|
|
713
713
|
transform: translateX(0);
|
|
714
714
|
}
|
|
715
715
|
}
|
|
716
|
-
@keyframes slideInTop-
|
|
716
|
+
@keyframes slideInTop-cf497d77 {
|
|
717
717
|
from {
|
|
718
718
|
transform: translateY(-100%);
|
|
719
719
|
}
|
|
@@ -721,7 +721,7 @@ to {
|
|
|
721
721
|
transform: translateY(0);
|
|
722
722
|
}
|
|
723
723
|
}
|
|
724
|
-
@keyframes slideInBottom-
|
|
724
|
+
@keyframes slideInBottom-cf497d77 {
|
|
725
725
|
from {
|
|
726
726
|
transform: translateY(100%);
|
|
727
727
|
}
|
|
@@ -731,8 +731,8 @@ to {
|
|
|
731
731
|
}
|
|
732
732
|
|
|
733
733
|
/* 调整右侧对话框的样式 */
|
|
734
|
-
.fixed.items-stretch.justify-end .bg-white[data-v-
|
|
735
|
-
.fixed.items-stretch.justify-start .bg-white[data-v-
|
|
734
|
+
.fixed.items-stretch.justify-end .bg-white[data-v-cf497d77],
|
|
735
|
+
.fixed.items-stretch.justify-start .bg-white[data-v-cf497d77] {
|
|
736
736
|
max-width: none;
|
|
737
737
|
max-height: none;
|
|
738
738
|
border-radius: 0;
|
|
@@ -740,64 +740,64 @@ to {
|
|
|
740
740
|
}
|
|
741
741
|
|
|
742
742
|
/* 调整上下对话框的样式 */
|
|
743
|
-
.fixed.items-start.justify-center .bg-white[data-v-
|
|
744
|
-
.fixed.items-end.justify-center .bg-white[data-v-
|
|
743
|
+
.fixed.items-start.justify-center .bg-white[data-v-cf497d77],
|
|
744
|
+
.fixed.items-end.justify-center .bg-white[data-v-cf497d77] {
|
|
745
745
|
max-height: none;
|
|
746
746
|
width: 100vw;
|
|
747
747
|
border-radius: 0;
|
|
748
748
|
}
|
|
749
749
|
|
|
750
750
|
/* 调整大小控制点样式 */
|
|
751
|
-
.resize-n[data-v-
|
|
751
|
+
.resize-n[data-v-cf497d77] {
|
|
752
752
|
top: -3px;
|
|
753
753
|
left: 0;
|
|
754
754
|
right: 0;
|
|
755
755
|
height: 6px;
|
|
756
756
|
cursor: n-resize;
|
|
757
757
|
}
|
|
758
|
-
.resize-ne[data-v-
|
|
758
|
+
.resize-ne[data-v-cf497d77] {
|
|
759
759
|
top: -3px;
|
|
760
760
|
right: -3px;
|
|
761
761
|
width: 6px;
|
|
762
762
|
height: 6px;
|
|
763
763
|
cursor: ne-resize;
|
|
764
764
|
}
|
|
765
|
-
.resize-e[data-v-
|
|
765
|
+
.resize-e[data-v-cf497d77] {
|
|
766
766
|
top: 0;
|
|
767
767
|
right: -3px;
|
|
768
768
|
bottom: 0;
|
|
769
769
|
width: 6px;
|
|
770
770
|
cursor: e-resize;
|
|
771
771
|
}
|
|
772
|
-
.resize-se[data-v-
|
|
772
|
+
.resize-se[data-v-cf497d77] {
|
|
773
773
|
bottom: -3px;
|
|
774
774
|
right: -3px;
|
|
775
775
|
width: 6px;
|
|
776
776
|
height: 6px;
|
|
777
777
|
cursor: se-resize;
|
|
778
778
|
}
|
|
779
|
-
.resize-s[data-v-
|
|
779
|
+
.resize-s[data-v-cf497d77] {
|
|
780
780
|
bottom: -3px;
|
|
781
781
|
left: 0;
|
|
782
782
|
right: 0;
|
|
783
783
|
height: 6px;
|
|
784
784
|
cursor: s-resize;
|
|
785
785
|
}
|
|
786
|
-
.resize-sw[data-v-
|
|
786
|
+
.resize-sw[data-v-cf497d77] {
|
|
787
787
|
bottom: -3px;
|
|
788
788
|
left: -3px;
|
|
789
789
|
width: 6px;
|
|
790
790
|
height: 6px;
|
|
791
791
|
cursor: sw-resize;
|
|
792
792
|
}
|
|
793
|
-
.resize-w[data-v-
|
|
793
|
+
.resize-w[data-v-cf497d77] {
|
|
794
794
|
top: 0;
|
|
795
795
|
left: -3px;
|
|
796
796
|
bottom: 0;
|
|
797
797
|
width: 6px;
|
|
798
798
|
cursor: w-resize;
|
|
799
799
|
}
|
|
800
|
-
.resize-nw[data-v-
|
|
800
|
+
.resize-nw[data-v-cf497d77] {
|
|
801
801
|
top: -3px;
|
|
802
802
|
left: -3px;
|
|
803
803
|
width: 6px;
|
|
@@ -2160,18 +2160,18 @@ label[data-v-21ab8d8c] {
|
|
|
2160
2160
|
}
|
|
2161
2161
|
|
|
2162
2162
|
.layer-dialog {
|
|
2163
|
-
&[data-v-
|
|
2163
|
+
&[data-v-c1c994ec] {
|
|
2164
2164
|
/* 全局样式面板样式 */
|
|
2165
2165
|
|
|
2166
2166
|
/* 主标签页样式 */
|
|
2167
2167
|
}
|
|
2168
2168
|
.global-style-panel {
|
|
2169
|
-
&[data-v-
|
|
2169
|
+
&[data-v-c1c994ec] {
|
|
2170
2170
|
padding: 16px;
|
|
2171
2171
|
border-bottom: 1px solid #eee;
|
|
2172
2172
|
background-color: #f8f9fa;
|
|
2173
2173
|
}
|
|
2174
|
-
.panel-title[data-v-
|
|
2174
|
+
.panel-title[data-v-c1c994ec] {
|
|
2175
2175
|
margin: 0 0 16px 0;
|
|
2176
2176
|
font-size: 14px;
|
|
2177
2177
|
font-weight: 600;
|
|
@@ -2180,32 +2180,32 @@ label[data-v-21ab8d8c] {
|
|
|
2180
2180
|
padding-bottom: 8px;
|
|
2181
2181
|
}
|
|
2182
2182
|
.config-section {
|
|
2183
|
-
&[data-v-
|
|
2183
|
+
&[data-v-c1c994ec] {
|
|
2184
2184
|
margin-bottom: 16px;
|
|
2185
2185
|
}
|
|
2186
|
-
h5[data-v-
|
|
2186
|
+
h5[data-v-c1c994ec] {
|
|
2187
2187
|
margin: 0 0 12px 0;
|
|
2188
2188
|
font-size: 13px;
|
|
2189
2189
|
font-weight: 500;
|
|
2190
2190
|
color: #666;
|
|
2191
2191
|
}
|
|
2192
2192
|
.config-item {
|
|
2193
|
-
&[data-v-
|
|
2193
|
+
&[data-v-c1c994ec] {
|
|
2194
2194
|
display: flex;
|
|
2195
2195
|
align-items: center;
|
|
2196
2196
|
margin-bottom: 12px;
|
|
2197
2197
|
gap: 8px;
|
|
2198
2198
|
}
|
|
2199
|
-
label[data-v-
|
|
2199
|
+
label[data-v-c1c994ec] {
|
|
2200
2200
|
flex: 0 0 60px;
|
|
2201
2201
|
font-size: 12px;
|
|
2202
2202
|
color: #666;
|
|
2203
2203
|
}
|
|
2204
|
-
.el-slider[data-v-
|
|
2204
|
+
.el-slider[data-v-c1c994ec] {
|
|
2205
2205
|
flex: 1;
|
|
2206
2206
|
margin: 0 8px;
|
|
2207
2207
|
}
|
|
2208
|
-
.value-text[data-v-
|
|
2208
|
+
.value-text[data-v-c1c994ec] {
|
|
2209
2209
|
flex: 0 0 45px;
|
|
2210
2210
|
font-size: 12px;
|
|
2211
2211
|
color: #999;
|
|
@@ -2213,29 +2213,29 @@ label[data-v-d8e62d8c] {
|
|
|
2213
2213
|
}
|
|
2214
2214
|
}
|
|
2215
2215
|
.preset-buttons {
|
|
2216
|
-
&[data-v-
|
|
2216
|
+
&[data-v-c1c994ec] {
|
|
2217
2217
|
display: flex;
|
|
2218
2218
|
gap: 6px;
|
|
2219
2219
|
flex-wrap: wrap;
|
|
2220
2220
|
}
|
|
2221
|
-
.el-button[data-v-
|
|
2221
|
+
.el-button[data-v-c1c994ec] {
|
|
2222
2222
|
flex: 1;
|
|
2223
2223
|
min-width: 60px;
|
|
2224
2224
|
}
|
|
2225
2225
|
}
|
|
2226
2226
|
}
|
|
2227
|
-
.panel-actions[data-v-
|
|
2227
|
+
.panel-actions[data-v-c1c994ec] {
|
|
2228
2228
|
margin-top: 16px;
|
|
2229
2229
|
padding-top: 12px;
|
|
2230
2230
|
border-top: 1px solid #ddd;
|
|
2231
2231
|
text-align: center;
|
|
2232
2232
|
}
|
|
2233
|
-
.custom-css-input[data-v-
|
|
2233
|
+
.custom-css-input[data-v-c1c994ec] {
|
|
2234
2234
|
font-family: "Courier New", monospace;
|
|
2235
2235
|
font-size: 12px;
|
|
2236
2236
|
line-height: 1.4;
|
|
2237
2237
|
}
|
|
2238
|
-
.custom-css-input[data-v-
|
|
2238
|
+
.custom-css-input[data-v-c1c994ec] .el-textarea__inner {
|
|
2239
2239
|
font-family: "Courier New", monospace;
|
|
2240
2240
|
font-size: 12px;
|
|
2241
2241
|
line-height: 1.4;
|
|
@@ -2243,37 +2243,37 @@ label[data-v-d8e62d8c] {
|
|
|
2243
2243
|
border: 1px solid #e9ecef;
|
|
2244
2244
|
}
|
|
2245
2245
|
.style-tabs {
|
|
2246
|
-
[data-v-
|
|
2246
|
+
[data-v-c1c994ec] .el-tabs__header {
|
|
2247
2247
|
margin: 0 0 16px 0;
|
|
2248
2248
|
}
|
|
2249
|
-
[data-v-
|
|
2249
|
+
[data-v-c1c994ec] .el-tabs__nav-wrap {
|
|
2250
2250
|
padding: 0;
|
|
2251
2251
|
}
|
|
2252
|
-
[data-v-
|
|
2252
|
+
[data-v-c1c994ec] .el-tabs__item {
|
|
2253
2253
|
font-size: 12px;
|
|
2254
2254
|
padding: 0 16px;
|
|
2255
2255
|
height: 32px;
|
|
2256
2256
|
line-height: 32px;
|
|
2257
2257
|
}
|
|
2258
|
-
[data-v-
|
|
2258
|
+
[data-v-c1c994ec] .el-tabs__content {
|
|
2259
2259
|
padding: 0;
|
|
2260
2260
|
}
|
|
2261
2261
|
}
|
|
2262
2262
|
.current-style-display {
|
|
2263
|
-
&[data-v-
|
|
2263
|
+
&[data-v-c1c994ec] {
|
|
2264
2264
|
margin-top: 16px;
|
|
2265
2265
|
padding: 12px;
|
|
2266
2266
|
background-color: #f5f5f5;
|
|
2267
2267
|
border-radius: 4px;
|
|
2268
2268
|
border: 1px solid #e9ecef;
|
|
2269
2269
|
}
|
|
2270
|
-
h6[data-v-
|
|
2270
|
+
h6[data-v-c1c994ec] {
|
|
2271
2271
|
margin: 0 0 8px 0;
|
|
2272
2272
|
font-size: 12px;
|
|
2273
2273
|
font-weight: 500;
|
|
2274
2274
|
color: #666;
|
|
2275
2275
|
}
|
|
2276
|
-
.style-preview[data-v-
|
|
2276
|
+
.style-preview[data-v-c1c994ec] {
|
|
2277
2277
|
font-family: "Courier New", monospace;
|
|
2278
2278
|
font-size: 11px;
|
|
2279
2279
|
line-height: 1.4;
|
|
@@ -2289,17 +2289,17 @@ h6[data-v-d8e62d8c] {
|
|
|
2289
2289
|
}
|
|
2290
2290
|
}
|
|
2291
2291
|
}
|
|
2292
|
-
.main-tabs[data-v-
|
|
2292
|
+
.main-tabs[data-v-c1c994ec] {
|
|
2293
2293
|
height: 100%;
|
|
2294
2294
|
display: flex;
|
|
2295
2295
|
flex-direction: column;
|
|
2296
2296
|
}
|
|
2297
|
-
.main-tabs .el-tabs__content[data-v-
|
|
2297
|
+
.main-tabs .el-tabs__content[data-v-c1c994ec] {
|
|
2298
2298
|
flex: 1;
|
|
2299
2299
|
overflow: hidden;
|
|
2300
2300
|
padding: 0;
|
|
2301
2301
|
}
|
|
2302
|
-
.main-tabs .el-tab-pane[data-v-
|
|
2302
|
+
.main-tabs .el-tab-pane[data-v-c1c994ec] {
|
|
2303
2303
|
height: 100%;
|
|
2304
2304
|
overflow: auto;
|
|
2305
2305
|
display: flex;
|
|
@@ -2307,16 +2307,16 @@ h6[data-v-d8e62d8c] {
|
|
|
2307
2307
|
}
|
|
2308
2308
|
.layer-tree {
|
|
2309
2309
|
.tree-node-content {
|
|
2310
|
-
&[data-v-
|
|
2310
|
+
&[data-v-c1c994ec] {
|
|
2311
2311
|
width: 100%;
|
|
2312
2312
|
}
|
|
2313
|
-
.group-node[data-v-
|
|
2313
|
+
.group-node[data-v-c1c994ec] {
|
|
2314
2314
|
display: flex;
|
|
2315
2315
|
align-items: center;
|
|
2316
2316
|
padding: 8px 0;
|
|
2317
2317
|
}
|
|
2318
2318
|
.layer-item {
|
|
2319
|
-
&[data-v-
|
|
2319
|
+
&[data-v-c1c994ec] {
|
|
2320
2320
|
display: flex;
|
|
2321
2321
|
align-items: center;
|
|
2322
2322
|
justify-content: space-between;
|
|
@@ -2324,17 +2324,17 @@ h6[data-v-d8e62d8c] {
|
|
|
2324
2324
|
padding: 6px 0;
|
|
2325
2325
|
}
|
|
2326
2326
|
.layer-info {
|
|
2327
|
-
&[data-v-
|
|
2327
|
+
&[data-v-c1c994ec] {
|
|
2328
2328
|
display: flex;
|
|
2329
2329
|
align-items: center;
|
|
2330
2330
|
flex: 1;
|
|
2331
2331
|
min-width: 0;
|
|
2332
2332
|
}
|
|
2333
|
-
.layer-icon[data-v-
|
|
2333
|
+
.layer-icon[data-v-c1c994ec] {
|
|
2334
2334
|
margin-right: 8px;
|
|
2335
2335
|
flex-shrink: 0;
|
|
2336
2336
|
}
|
|
2337
|
-
.layer-name[data-v-
|
|
2337
|
+
.layer-name[data-v-c1c994ec] {
|
|
2338
2338
|
font-size: 14px;
|
|
2339
2339
|
color: #333;
|
|
2340
2340
|
white-space: nowrap;
|
|
@@ -2343,23 +2343,23 @@ h6[data-v-d8e62d8c] {
|
|
|
2343
2343
|
}
|
|
2344
2344
|
}
|
|
2345
2345
|
.layer-controls {
|
|
2346
|
-
&[data-v-
|
|
2346
|
+
&[data-v-c1c994ec] {
|
|
2347
2347
|
display: flex;
|
|
2348
2348
|
align-items: center;
|
|
2349
2349
|
gap: 8px;
|
|
2350
2350
|
}
|
|
2351
2351
|
.opacity-control {
|
|
2352
|
-
&[data-v-
|
|
2352
|
+
&[data-v-c1c994ec] {
|
|
2353
2353
|
display: flex;
|
|
2354
2354
|
align-items: center;
|
|
2355
2355
|
gap: 8px;
|
|
2356
2356
|
min-width: 120px;
|
|
2357
2357
|
}
|
|
2358
|
-
.opacity-slider[data-v-
|
|
2358
|
+
.opacity-slider[data-v-c1c994ec] {
|
|
2359
2359
|
flex: 1;
|
|
2360
2360
|
min-width: 80px;
|
|
2361
2361
|
}
|
|
2362
|
-
.opacity-value[data-v-
|
|
2362
|
+
.opacity-value[data-v-c1c994ec] {
|
|
2363
2363
|
font-size: 12px;
|
|
2364
2364
|
color: #666;
|
|
2365
2365
|
min-width: 35px;
|
|
@@ -2367,7 +2367,7 @@ h6[data-v-d8e62d8c] {
|
|
|
2367
2367
|
white-space: nowrap;
|
|
2368
2368
|
}
|
|
2369
2369
|
}
|
|
2370
|
-
.style-config-btn[data-v-
|
|
2370
|
+
.style-config-btn[data-v-c1c994ec] {
|
|
2371
2371
|
width: 24px;
|
|
2372
2372
|
height: 24px;
|
|
2373
2373
|
padding: 0;
|
|
@@ -2380,7 +2380,7 @@ h6[data-v-d8e62d8c] {
|
|
|
2380
2380
|
}
|
|
2381
2381
|
|
|
2382
2382
|
/* 样式配置面板样式 */
|
|
2383
|
-
[data-v-
|
|
2383
|
+
[data-v-c1c994ec] .layer-style-popover {
|
|
2384
2384
|
.style-config-panel {
|
|
2385
2385
|
& {
|
|
2386
2386
|
padding: 0;
|
|
@@ -2459,7 +2459,7 @@ label {
|
|
|
2459
2459
|
}
|
|
2460
2460
|
}
|
|
2461
2461
|
|
|
2462
|
-
.context-menu[data-v-
|
|
2462
|
+
.context-menu[data-v-4ab219e0] {
|
|
2463
2463
|
background: white;
|
|
2464
2464
|
border: 1px solid #dcdfe6;
|
|
2465
2465
|
border-radius: 4px;
|
|
@@ -2467,7 +2467,7 @@ label {
|
|
|
2467
2467
|
padding: 4px 0;
|
|
2468
2468
|
min-width: 120px;
|
|
2469
2469
|
}
|
|
2470
|
-
.context-menu-item[data-v-
|
|
2470
|
+
.context-menu-item[data-v-4ab219e0] {
|
|
2471
2471
|
display: flex;
|
|
2472
2472
|
align-items: center;
|
|
2473
2473
|
padding: 8px 12px;
|
|
@@ -2476,10 +2476,10 @@ label {
|
|
|
2476
2476
|
color: #606266;
|
|
2477
2477
|
transition: background-color 0.3s;
|
|
2478
2478
|
}
|
|
2479
|
-
.context-menu-item[data-v-
|
|
2479
|
+
.context-menu-item[data-v-4ab219e0]:hover {
|
|
2480
2480
|
background-color: #f5f7fa;
|
|
2481
2481
|
}
|
|
2482
|
-
.context-menu-item .el-icon[data-v-
|
|
2482
|
+
.context-menu-item .el-icon[data-v-4ab219e0] {
|
|
2483
2483
|
margin-right: 8px;
|
|
2484
2484
|
font-size: 16px;
|
|
2485
2485
|
}
|
package/package.json
CHANGED
|
@@ -29,6 +29,8 @@ interface Props {
|
|
|
29
29
|
maxWidth?: number;
|
|
30
30
|
maxHeight?: number;
|
|
31
31
|
cacheId?: string;
|
|
32
|
+
unit?: 'px' | 'rem';
|
|
33
|
+
remBase?: number;
|
|
32
34
|
enableCache?: boolean;
|
|
33
35
|
autoSaveCache?: boolean;
|
|
34
36
|
cacheDebounceTime?: number;
|
|
@@ -66,6 +68,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
66
68
|
cacheDebounceTime: number;
|
|
67
69
|
toBody: boolean;
|
|
68
70
|
showModal: boolean;
|
|
71
|
+
unit: string;
|
|
72
|
+
remBase: number;
|
|
69
73
|
}>>, {
|
|
70
74
|
saveCacheState: () => void;
|
|
71
75
|
clearCache: () => void;
|
|
@@ -121,6 +125,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
121
125
|
cacheDebounceTime: number;
|
|
122
126
|
toBody: boolean;
|
|
123
127
|
showModal: boolean;
|
|
128
|
+
unit: string;
|
|
129
|
+
remBase: number;
|
|
124
130
|
}>>> & Readonly<{
|
|
125
131
|
onClose?: (() => any) | undefined;
|
|
126
132
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -151,6 +157,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
151
157
|
maxWidth: number;
|
|
152
158
|
maxHeight: number;
|
|
153
159
|
cacheId: string;
|
|
160
|
+
unit: "px" | "rem";
|
|
161
|
+
remBase: number;
|
|
154
162
|
enableCache: boolean;
|
|
155
163
|
autoSaveCache: boolean;
|
|
156
164
|
cacheDebounceTime: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CustomDialog.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/CustomDialog/CustomDialog.vue"],"names":[],"mappings":"AA0LA;AAkBA,UAAU,QAAQ;IAChB,CAAC,EAAE,MAAM,CAAA;IACT,CAAC,EAAE,MAAM,CAAA;CACV;AAED,UAAU,IAAI;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;CACf;AA2BD,UAAU,KAAK;IACb,UAAU,EAAE,OAAO,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,CAAA;IACzD,WAAW,CAAC,EAAE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACzC
|
|
1
|
+
{"version":3,"file":"CustomDialog.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/CustomDialog/CustomDialog.vue"],"names":[],"mappings":"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"}
|