@vunk/form 1.1.21 → 1.1.24
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/esri-input-geojson/index.css +38 -0
- package/components/esri-input-geojson/index.d.ts +5 -0
- package/components/esri-input-geojson/index.js +1526 -0
- package/components/esri-input-geojson/src/append.vue.d.ts +30 -0
- package/components/esri-input-geojson/src/const.d.ts +8 -0
- package/components/esri-input-geojson/src/const.js +29 -0
- package/components/esri-input-geojson/src/ctx.d.ts +213 -0
- package/components/esri-input-geojson/src/ctx.js +90 -0
- package/components/esri-input-geojson/src/index.vue.d.ts +494 -0
- package/components/esri-input-geojson/src/types.d.ts +13 -0
- package/components/esri-input-geojson/src/types.js +1 -0
- package/components/esri-input-geojson/src/viewer.vue.d.ts +12 -0
- package/components/select/src/ctx.d.ts +4 -0
- package/components/select/src/index.vue.d.ts +16 -0
- package/components/slider/index.js +1 -4
- package/components/slider/src/ctx.d.ts +11 -15
- package/components/slider/src/ctx.js +1 -4
- package/components/slider/src/index.vue.d.ts +2 -9
- package/components/switch/index.js +1 -4
- package/components/switch/src/ctx.d.ts +25 -17
- package/components/switch/src/ctx.js +1 -4
- package/components/switch/src/index.vue.d.ts +28 -9
- package/components/templates-esri/index.d.ts +4 -0
- package/components/templates-esri/index.js +64 -0
- package/components/templates-esri/src/ctx.d.ts +11 -0
- package/components/templates-esri/src/ctx.js +11 -0
- package/components/templates-esri/src/index.vue.d.ts +20 -0
- package/components/templates-esri/src/types.d.ts +2 -0
- package/components/templates-esri/src/types.js +1 -0
- package/index.css +39 -0
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +1 -1
- package/shared/types/source/index.d.ts +2 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
|
|
2
|
+
.vkf-esri-input-geojson__map{
|
|
3
|
+
height: 350px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.vkf-esri-input-geojson-dialog .el-dialog.is-fullscreen{
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
.vkf-esri-input-geojson-dialog .el-dialog{
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
min-height: 50%;
|
|
13
|
+
}
|
|
14
|
+
.vkf-esri-input-geojson-dialog .el-dialog__body{
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
flex: 1;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
padding: 0;
|
|
20
|
+
}
|
|
21
|
+
.vkf-esri-input-geojson-dialog__map{
|
|
22
|
+
flex: 1;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.vkf-esri-input-geojson-dialog__map > .va-map-view{
|
|
29
|
+
flex: 1;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
.el-button.vkf-esri-input-geojson__upload{
|
|
34
|
+
border-color: transparent;
|
|
35
|
+
background-color: transparent;
|
|
36
|
+
color: inherit;
|
|
37
|
+
}
|
|
38
|
+
|