@mapgis/mapgis-pan-spatial-map-widgets-config-ui 16.0.0
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/.browserslistrc +3 -0
- package/.env.production +5 -0
- package/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/README.md +24 -0
- package/babel.config.js +5 -0
- package/dist-libs/demo.html +10 -0
- package/dist-libs/fonts/ionicons.99ac3308.woff +0 -0
- package/dist-libs/fonts/ionicons.d535a25a.ttf +0 -0
- package/dist-libs/img/iconfont.573255ce.svg +36 -0
- package/dist-libs/img/image-icon.dd06d30b.dd06d30b.png +0 -0
- package/dist-libs/img/ionicons.17bf2ac0.svg +870 -0
- package/dist-libs/img/jsoneditor-icons.2b9b4872.2b9b4872.svg +749 -0
- package/dist-libs/img/plus.bdc6b5b1.bdc6b5b1.svg +1 -0
- package/dist-libs/img/text-icon.dd1b3d87.dd1b3d87.png +0 -0
- package/dist-libs/img/video-icon.499ddeb4.499ddeb4.png +0 -0
- package/dist-libs/mapgis-pan-spatial-map-widgets-config-ui.common.js +33467 -0
- package/dist-libs/mapgis-pan-spatial-map-widgets-config-ui.css +6 -0
- package/dist-libs/mapgis-pan-spatial-map-widgets-config-ui.umd.js +33477 -0
- package/dist-libs/mapgis-pan-spatial-map-widgets-config-ui.umd.min.js +1183 -0
- package/docs/.vuepress/config.js +81 -0
- package/docs/.vuepress/public/favicon.ico +0 -0
- package/docs/.vuepress/public/logo.svg +7 -0
- package/docs/.vuepress/styles/palette.styl +1 -0
- package/docs/README.md +35 -0
- package/docs/api/common/MultiImgWithForm.md +87 -0
- package/docs/api/common/MultiTypeForm.md +113 -0
- package/docs/api/images/basemapConfigUI.png +0 -0
- package/docs/api/images/comprehensiveQueryConfigUI.png +0 -0
- package/docs/guide/README.md +42 -0
- package/docs/guide/publish.md +84 -0
- package/docs/guide/yarn/mapgis.png +0 -0
- package/docs/guide/yarn/use_mapgis.png +0 -0
- package/package.json +58 -0
- package/postcss.config.js +5 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +17 -0
- package/src/api/app/config.js +10 -0
- package/src/assets/iviewIcon/fonts/ionicons.svg +870 -0
- package/src/assets/iviewIcon/fonts/ionicons.ttf +0 -0
- package/src/assets/iviewIcon/fonts/ionicons.woff +0 -0
- package/src/assets/iviewIcon/iview.css +3461 -0
- package/src/assets/logo.png +0 -0
- package/src/components/BasemapManagerSetting/BasemapManagerSetting.vue +461 -0
- package/src/components/CityGrowSetting/CityGrowSetting.vue +145 -0
- package/src/components/CityGrowSetting/EditableCell.vue +103 -0
- package/src/components/CommonComponents/MultiImgWithForm/MultiImgWithForm.scss +106 -0
- package/src/components/CommonComponents/MultiImgWithForm/MultiImgWithForm.vue +128 -0
- package/src/components/CommonComponents/MultiTypeForm/MultiTypeForm.vue +78 -0
- package/src/components/CommonComponents/ServiceSelect/index.vue +325 -0
- package/src/components/ComprehensiveQuerySetting/ComprehensiveQuerySetting.vue +745 -0
- package/src/components/ComprehensiveQuerySetting/EditAttrs.vue +254 -0
- package/src/components/DataCatalogSetting/DataCatalogSetting.vue +71 -0
- package/src/components/DataCatalogSetting/components/DataSetting.vue +126 -0
- package/src/components/DataCatalogSetting/components/IconSetting.vue +160 -0
- package/src/components/DataCatalogSetting/components/NoSpatialSetting.vue +37 -0
- package/src/components/DataCatalogSetting/components/OtherSetting.vue +54 -0
- package/src/components/DataCatalogSetting/components/ParamSetting.vue +95 -0
- package/src/components/DataCatalogSetting/components/component/DataSourceSetting.vue +929 -0
- package/src/components/DataCatalogSetting/components/component/NodeDataSetting.vue +644 -0
- package/src/components/DataCatalogSetting/components/component/ServiceSelectWithData.vue +413 -0
- package/src/components/DataCatalogSetting/index.js +29 -0
- package/src/components/FeatureQuerySetting/FeatureQuerySetting.vue +121 -0
- package/src/components/KibanaVSetting/KibanaVSetting.vue +152 -0
- package/src/components/LegendSetting/LegendSetting.vue +85 -0
- package/src/components/MapDataVSetting/MapDataVSetting.vue +41 -0
- package/src/components/OverlayManagerSetting/OverlayManagerSetting.vue +248 -0
- package/src/components/ParticleEffectsSetting/ParticleEffectsSetting.vue +166 -0
- package/src/components/PlotManagerSetting/EditableCell.vue +103 -0
- package/src/components/PlotManagerSetting/PlotManagerSetting.vue +229 -0
- package/src/components/ThematicMapSetting/BaseConfigSetting.vue +76 -0
- package/src/components/ThematicMapSetting/SubjectConfigSetting.vue +346 -0
- package/src/components/ThematicMapSetting/ThematicMapSetting.vue +44 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/common/AnimationItems.vue +141 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/common/ColorPickerSetting.vue +260 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/common/EditableFieldTable.vue +187 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/BaseItems/index.vue +161 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/AttributeTable.vue +122 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/Common.vue +376 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/Popup.vue +138 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/StatisticGragh.vue +189 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/BaseMapWithGraph.vue +73 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/HeatMap.vue +124 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/HexBin.vue +100 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/Label.vue +139 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/StatisticLabel.vue +43 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/SubSectionMap.vue +42 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/components/SubjectStyles/index.vue +56 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/index.less +101 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/components/SubjectItems/index.vue +236 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/index.less +22 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/index.vue +226 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/mixins/subject-styles-mixin.js +138 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/store/dep.js +21 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectAdd/store/fields.ts +111 -0
- package/src/components/ThematicMapSetting/ThematicMapSubjectList/index.vue +76 -0
- package/src/components/ThematicMapSetting/store/index.js +19 -0
- package/src/components/ThematicMapSetting/store/module/getters.js +28 -0
- package/src/components/ThematicMapSetting/store/module/index.js +53 -0
- package/src/components/ThematicMapSetting/store/module/mutations.js +272 -0
- package/src/components/ThematicMapSetting/store/module/state.js +36 -0
- package/src/components/ThematicMapSetting/store/types.js +0 -0
- package/src/components/WidgetSetting/WidgetJsonConfig.vue +28 -0
- package/src/components/WidgetSetting/components/JsonEditor/index.vue +77 -0
- package/src/components/WidgetSetting/widget-setting-mixin.js +22 -0
- package/src/components/index.js +17 -0
- package/src/index.js +63 -0
- package/src/shims-tsx.d.ts +13 -0
- package/src/shims-vue.d.ts +4 -0
- package/src/store/index.ts +15 -0
- package/src/utils/auth.js +18 -0
- package/src/utils/normal-request.js +63 -0
- package/src/utils/request.js +92 -0
- package/src/utils/settings.js +50 -0
- package/src/utils/uuid.js +17 -0
- package/src/utils/validate.js +175 -0
- package/tsconfig.json +40 -0
- package/vue.config.js +13 -0
package/.browserslistrc
ADDED
package/.env.production
ADDED
package/.eslintignore
ADDED
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
root: true,
|
|
3
|
+
env: {
|
|
4
|
+
node: true
|
|
5
|
+
},
|
|
6
|
+
'extends': [
|
|
7
|
+
'plugin:vue/essential',
|
|
8
|
+
'eslint:recommended',
|
|
9
|
+
'@vue/typescript/recommended'
|
|
10
|
+
],
|
|
11
|
+
parserOptions: {
|
|
12
|
+
ecmaVersion: 2020
|
|
13
|
+
},
|
|
14
|
+
rules: {
|
|
15
|
+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
16
|
+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
|
|
17
|
+
}
|
|
18
|
+
}
|
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# my-widgets
|
|
2
|
+
|
|
3
|
+
## Project setup
|
|
4
|
+
```
|
|
5
|
+
yarn install
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
### Compiles and hot-reloads for development
|
|
9
|
+
```
|
|
10
|
+
yarn serve
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Compiles and minifies for production
|
|
14
|
+
```
|
|
15
|
+
yarn build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Lints and fixes files
|
|
19
|
+
```
|
|
20
|
+
yarn lint
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Customize configuration
|
|
24
|
+
See [Configuration Reference](https://cli.vuejs.org/config/).
|
package/babel.config.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<meta charset="utf-8">
|
|
2
|
+
<title>mapgis-pan-spatial-map-widgets-config-ui demo</title>
|
|
3
|
+
<script src="./mapgis-pan-spatial-map-widgets-config-ui.umd.js"></script>
|
|
4
|
+
|
|
5
|
+
<link rel="stylesheet" href="./mapgis-pan-spatial-map-widgets-config-ui.css">
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
<script>
|
|
9
|
+
console.log(mapgis-pan-spatial-map-widgets-config-ui)
|
|
10
|
+
</script>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<!--
|
|
4
|
+
2013-9-30: Created.
|
|
5
|
+
-->
|
|
6
|
+
<svg>
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by iconfont
|
|
9
|
+
</metadata>
|
|
10
|
+
<defs>
|
|
11
|
+
|
|
12
|
+
<font id="iconfont" horiz-adv-x="1024" >
|
|
13
|
+
<font-face
|
|
14
|
+
font-family="iconfont"
|
|
15
|
+
font-weight="500"
|
|
16
|
+
font-stretch="normal"
|
|
17
|
+
units-per-em="1024"
|
|
18
|
+
ascent="896"
|
|
19
|
+
descent="-128"
|
|
20
|
+
/>
|
|
21
|
+
<missing-glyph />
|
|
22
|
+
|
|
23
|
+
<glyph glyph-name="x" unicode="x" horiz-adv-x="1001"
|
|
24
|
+
d="M281 543q-27 -1 -53 -1h-83q-18 0 -36.5 -6t-32.5 -18.5t-23 -32t-9 -45.5v-76h912v41q0 16 -0.5 30t-0.5 18q0 13 -5 29t-17 29.5t-31.5 22.5t-49.5 9h-133v-97h-438v97zM955 310v-52q0 -23 0.5 -52t0.5 -58t-10.5 -47.5t-26 -30t-33 -16t-31.5 -4.5q-14 -1 -29.5 -0.5
|
|
25
|
+
t-29.5 0.5h-32l-45 128h-439l-44 -128h-29h-34q-20 0 -45 1q-25 0 -41 9.5t-25.5 23t-13.5 29.5t-4 30v167h911zM163 247q-12 0 -21 -8.5t-9 -21.5t9 -21.5t21 -8.5q13 0 22 8.5t9 21.5t-9 21.5t-22 8.5zM316 123q-8 -26 -14 -48q-5 -19 -10.5 -37t-7.5 -25t-3 -15t1 -14.5
|
|
26
|
+
t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-5 19 -11 39h-368zM336 498v228q0 11 2.5 23t10 21.5t20.5 15.5t34 6h188q31 0 51.5 -14.5t20.5 -52.5v-227h-327z" />
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<glyph glyph-name="arrow-right" unicode="" d="M725.3399071604938 383.8342991012345a41.425224691358025 41.425224691358025 0 0 0-12.924670103703681-30.074713125925918l-343.82936493827134-325.2708642765434a41.425224691358025 41.425224691358025 0 0 0-56.91825872592596 60.23227670123452l312.0976428246912 295.1961511506175-312.0976428246914 295.4447024987654a41.50807514074074 41.50807514074074 0 0 0-1.6570089876543506 58.575267713580246c15.74158538271605 16.570089876543207 42.00517783703699 17.315743920987664 58.575267713580246 1.6570089876543506l343.8293649382716-325.6022660740737a41.425224691358025 41.425224691358025 0 0 0 12.924670103703713-30.15756357530862z" horiz-adv-x="1024" />
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
</font>
|
|
36
|
+
</defs></svg>
|
|
Binary file
|