@supermapgis/vue-iclient-leaflet 11.2.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/LICENSE +201 -0
- package/README.md +31 -0
- package/dist/iclient-leaflet-vue.css +24471 -0
- package/dist/iclient-leaflet-vue.js +190317 -0
- package/dist/iclient-leaflet-vue.min.css +9 -0
- package/dist/iclient-leaflet-vue.min.js +517 -0
- package/dist/index.js +15 -0
- package/lib/_assets/iconfont/icon-sm-components.css +245 -0
- package/lib/_assets/iconfont/icon-sm-components.eot +0 -0
- package/lib/_assets/iconfont/icon-sm-components.svg +197 -0
- package/lib/_assets/iconfont/icon-sm-components.ttf +0 -0
- package/lib/_assets/iconfont/icon-sm-components.woff +0 -0
- package/lib/_assets/iconfont/icon-sm-components.woff2 +0 -0
- package/lib/_lang/en.js +446 -0
- package/lib/_lang/index.js +385 -0
- package/lib/_lang/zh.js +445 -0
- package/lib/_mixin/AntdRender.js +686 -0
- package/lib/_mixin/Card.js +197 -0
- package/lib/_mixin/GridLayer.js +153 -0
- package/lib/_mixin/Layer.js +140 -0
- package/lib/_mixin/Options.js +114 -0
- package/lib/_mixin/Popper.js +134 -0
- package/lib/_mixin/Theme.js +441 -0
- package/lib/_mixin/ThirdService.js +243 -0
- package/lib/_mixin/TileLayer.js +138 -0
- package/lib/_mixin/Timer.js +230 -0
- package/lib/_mixin/VmUpdater.js +204 -0
- package/lib/_mixin/WebMapBase.js +3467 -0
- package/lib/_mixin/map-events.js +200 -0
- package/lib/_mixin/map-getter.js +341 -0
- package/lib/_types/AddressMatchParameter.js +118 -0
- package/lib/_types/GeoJSONParamter.js +113 -0
- package/lib/_types/RestDataParameter.js +141 -0
- package/lib/_types/RestMapParameter.js +141 -0
- package/lib/_types/RestParameter.js +121 -0
- package/lib/_types/event/BaseTypes.js +124 -0
- package/lib/_types/event/Event.js +442 -0
- package/lib/_types/event/Events.js +484 -0
- package/lib/_types/event/Pixel.js +295 -0
- package/lib/_types/event/Util.js +305 -0
- package/lib/_types/iPortalDataParameter.js +121 -0
- package/lib/_types/iServerBaseParameter.js +111 -0
- package/lib/_types/iServerDataParameter.js +154 -0
- package/lib/_types/iServerMapParameter.js +154 -0
- package/lib/_types/index.js +231 -0
- package/lib/_types/map-event.js +163 -0
- package/lib/_utils/EchartsDataService.js +843 -0
- package/lib/_utils/RestService.js +7096 -0
- package/lib/_utils/WebMapService.js +1607 -0
- package/lib/_utils/epsg-define.js +181 -0
- package/lib/_utils/get-features.js +232 -0
- package/lib/_utils/global-event.js +134 -0
- package/lib/_utils/iPortalDataService.js +7459 -0
- package/lib/_utils/iServerRestService.js +7603 -0
- package/lib/_utils/props-binder.js +129 -0
- package/lib/_utils/statistics.js +147 -0
- package/lib/_utils/style/color/colorPalette.js +192 -0
- package/lib/_utils/style/color/serialColors.js +352 -0
- package/lib/_utils/style/common/common.css +1 -0
- package/lib/_utils/style/mixins/config.css +0 -0
- package/lib/_utils/style/mixins/mixins.css +0 -0
- package/lib/_utils/style/theme/antd.css +25242 -0
- package/lib/_utils/style/theme/antdVar.css +0 -0
- package/lib/_utils/style/theme/chart.js +7477 -0
- package/lib/_utils/style/theme/set-theme.js +200 -0
- package/lib/_utils/style/theme/theme.css +0 -0
- package/lib/_utils/style/theme/theme.json +356 -0
- package/lib/_utils/util.js +484 -0
- package/lib/_utils/vue-types/index.js +396 -0
- package/lib/_utils/vue-types/utils.js +318 -0
- package/lib/avatar/index.js +656 -0
- package/lib/avatar/style/avatar.css +1 -0
- package/lib/avatar/style/css.js +9 -0
- package/lib/avatar/style/index.css +2135 -0
- package/lib/avatar/style/index.js +9 -0
- package/lib/border/index.js +642 -0
- package/lib/border/style/border.css +1 -0
- package/lib/border/style/css.js +7 -0
- package/lib/border/style/index.js +7 -0
- package/lib/breadcrumb/index.js +813 -0
- package/lib/breadcrumb/style/breadcrumb.css +1 -0
- package/lib/breadcrumb/style/css.js +9 -0
- package/lib/breadcrumb/style/index.css +2102 -0
- package/lib/breadcrumb/style/index.js +9 -0
- package/lib/button/index.js +758 -0
- package/lib/button/style/button.css +1 -0
- package/lib/button/style/css.js +9 -0
- package/lib/button/style/index.css +3571 -0
- package/lib/button/style/index.js +9 -0
- package/lib/card/index.js +824 -0
- package/lib/card/style/card.css +1 -0
- package/lib/card/style/css.js +9 -0
- package/lib/card/style/index.css +2379 -0
- package/lib/card/style/index.js +9 -0
- package/lib/chart/index.js +9471 -0
- package/lib/chart/style/chart.css +1 -0
- package/lib/chart/style/css.js +11 -0
- package/lib/chart/style/index.js +11 -0
- package/lib/checkbox/index.js +756 -0
- package/lib/checkbox/style/checkbox.css +1 -0
- package/lib/checkbox/style/css.js +9 -0
- package/lib/checkbox/style/index.css +2286 -0
- package/lib/checkbox/style/index.js +9 -0
- package/lib/collapse/index.js +446 -0
- package/lib/collapse/style/collapse.css +1 -0
- package/lib/collapse/style/css.js +9 -0
- package/lib/collapse/style/index.css +2187 -0
- package/lib/collapse/style/index.js +9 -0
- package/lib/collapse-card/index.js +588 -0
- package/lib/collapse-card/style/collapse-card.css +1 -0
- package/lib/collapse-card/style/css.js +7 -0
- package/lib/collapse-card/style/index.js +7 -0
- package/lib/color-picker/index.js +521 -0
- package/lib/color-picker/style/color-picker.css +1 -0
- package/lib/color-picker/style/css.js +7 -0
- package/lib/color-picker/style/index.js +7 -0
- package/lib/date-picker/index.js +680 -0
- package/lib/date-picker/style/css.js +9 -0
- package/lib/date-picker/style/date-picker.css +1 -0
- package/lib/date-picker/style/index.css +4236 -0
- package/lib/date-picker/style/index.js +9 -0
- package/lib/dropdown/index.js +347 -0
- package/lib/dropdown/style/css.js +9 -0
- package/lib/dropdown/style/dropdown.css +1 -0
- package/lib/dropdown/style/index.css +2344 -0
- package/lib/dropdown/style/index.js +9 -0
- package/lib/empty/index.js +643 -0
- package/lib/empty/style/css.js +9 -0
- package/lib/empty/style/empty.css +1 -0
- package/lib/empty/style/index.css +2095 -0
- package/lib/empty/style/index.js +9 -0
- package/lib/icon/index.js +681 -0
- package/lib/icon/style/css.js +9 -0
- package/lib/icon/style/icon.css +1 -0
- package/lib/icon/style/index.css +2058 -0
- package/lib/icon/style/index.js +9 -0
- package/lib/identify/index.js +1081 -0
- package/lib/identify/style/css.js +9 -0
- package/lib/identify/style/identify.css +1 -0
- package/lib/identify/style/index.js +9 -0
- package/lib/iframe/index.js +344 -0
- package/lib/iframe/style/css.js +7 -0
- package/lib/iframe/style/iframe.css +1 -0
- package/lib/iframe/style/index.js +7 -0
- package/lib/image/index.js +446 -0
- package/lib/image/style/css.js +7 -0
- package/lib/image/style/image.css +1 -0
- package/lib/image/style/index.js +7 -0
- package/lib/index.js +1040 -0
- package/lib/indicator/index.js +996 -0
- package/lib/indicator/style/countTo.css +1 -0
- package/lib/indicator/style/css.js +7 -0
- package/lib/indicator/style/index.js +7 -0
- package/lib/indicator/style/indicator.css +1 -0
- package/lib/init.js +207 -0
- package/lib/input/index.js +1151 -0
- package/lib/input/style/css.js +9 -0
- package/lib/input/style/index.css +2549 -0
- package/lib/input/style/index.js +9 -0
- package/lib/input/style/input.css +1 -0
- package/lib/input-number/index.js +739 -0
- package/lib/input-number/style/css.js +9 -0
- package/lib/input-number/style/index.css +2360 -0
- package/lib/input-number/style/index.js +9 -0
- package/lib/input-number/style/input-number.css +1 -0
- package/lib/layout/index.js +700 -0
- package/lib/layout/style/css.js +9 -0
- package/lib/layout/style/index.css +2185 -0
- package/lib/layout/style/index.js +9 -0
- package/lib/layout/style/layout.css +0 -0
- package/lib/liquid-fill/index.js +983 -0
- package/lib/liquid-fill/style/css.js +7 -0
- package/lib/liquid-fill/style/index.js +7 -0
- package/lib/liquid-fill/style/liquid-fill.css +1 -0
- package/lib/marker/index.js +649 -0
- package/lib/marker/style/css.js +0 -0
- package/lib/marker/style/index.js +0 -0
- package/lib/menu/index.js +858 -0
- package/lib/menu/style/css.js +9 -0
- package/lib/menu/style/index.css +2777 -0
- package/lib/menu/style/index.js +9 -0
- package/lib/menu/style/menu.css +0 -0
- package/lib/message/index.js +174 -0
- package/lib/message/style/css.js +9 -0
- package/lib/message/style/index.css +2143 -0
- package/lib/message/style/index.js +9 -0
- package/lib/message/style/message.css +1 -0
- package/lib/modal/index.js +742 -0
- package/lib/modal/style/css.js +9 -0
- package/lib/modal/style/index.css +2289 -0
- package/lib/modal/style/index.js +9 -0
- package/lib/modal/style/modal.css +1 -0
- package/lib/nav/style/css.js +9 -0
- package/lib/nav/style/index.js +9 -0
- package/lib/nav/style/nav.css +1 -0
- package/lib/notification/index.js +151 -0
- package/lib/notification/style/css.js +9 -0
- package/lib/notification/style/index.css +2285 -0
- package/lib/notification/style/index.js +9 -0
- package/lib/notification/style/notification.css +1 -0
- package/lib/pagination/index.js +352 -0
- package/lib/pagination/style/css.js +9 -0
- package/lib/pagination/style/index.css +2529 -0
- package/lib/pagination/style/index.js +9 -0
- package/lib/pagination/style/pagination.css +1 -0
- package/lib/popup/index.js +800 -0
- package/lib/popup/style/css.js +0 -0
- package/lib/popup/style/index.js +0 -0
- package/lib/progress/index.js +1146 -0
- package/lib/progress/style/css.js +9 -0
- package/lib/progress/style/index.css +2226 -0
- package/lib/progress/style/index.js +9 -0
- package/lib/progress/style/progress.css +1 -0
- package/lib/radio/index.js +852 -0
- package/lib/radio/style/css.js +9 -0
- package/lib/radio/style/index.css +2381 -0
- package/lib/radio/style/index.js +9 -0
- package/lib/radio/style/radio.css +1 -0
- package/lib/select/index.js +836 -0
- package/lib/select/style/css.js +9 -0
- package/lib/select/style/index.css +2655 -0
- package/lib/select/style/index.js +9 -0
- package/lib/select/style/select.css +1 -0
- package/lib/slider/index.js +347 -0
- package/lib/slider/style/css.js +9 -0
- package/lib/slider/style/index.css +2233 -0
- package/lib/slider/style/index.js +9 -0
- package/lib/slider/style/slider.css +1 -0
- package/lib/slideshow/index.js +913 -0
- package/lib/slideshow/style/css.js +9 -0
- package/lib/slideshow/style/index.js +9 -0
- package/lib/slideshow/style/slideshow.css +1 -0
- package/lib/spin/index.js +357 -0
- package/lib/spin/style/css.js +9 -0
- package/lib/spin/style/index.css +2268 -0
- package/lib/spin/style/index.js +9 -0
- package/lib/spin/style/spin.css +1 -0
- package/lib/steps/index.js +748 -0
- package/lib/steps/style/css.js +9 -0
- package/lib/steps/style/index.css +2724 -0
- package/lib/steps/style/index.js +9 -0
- package/lib/steps/style/steps.css +1 -0
- package/lib/style.js +7 -0
- package/lib/switch/index.js +654 -0
- package/lib/switch/style/css.js +9 -0
- package/lib/switch/style/index.css +2241 -0
- package/lib/switch/style/index.js +9 -0
- package/lib/switch/style/switch.css +1 -0
- package/lib/table/index.js +810 -0
- package/lib/table/style/css.js +9 -0
- package/lib/table/style/index.css +2909 -0
- package/lib/table/style/index.js +9 -0
- package/lib/table/style/table.css +1 -0
- package/lib/table-popup/index.js +438 -0
- package/lib/table-popup/style/css.js +9 -0
- package/lib/table-popup/style/index.js +9 -0
- package/lib/table-popup/style/table-popup.css +1 -0
- package/lib/tabs/index.js +743 -0
- package/lib/tabs/style/css.js +9 -0
- package/lib/tabs/style/index.css +2692 -0
- package/lib/tabs/style/index.js +9 -0
- package/lib/tabs/style/tabs.css +1 -0
- package/lib/text/index.js +434 -0
- package/lib/text/style/css.js +7 -0
- package/lib/text/style/index.js +7 -0
- package/lib/text/style/text.css +1 -0
- package/lib/tile-layer/index.js +535 -0
- package/lib/tile-layer/style/css.js +0 -0
- package/lib/tile-layer/style/index.js +0 -0
- package/lib/time-line/index.js +654 -0
- package/lib/time-line/style/css.js +7 -0
- package/lib/time-line/style/index.js +7 -0
- package/lib/time-line/style/time-line.css +1 -0
- package/lib/time-picker/index.js +669 -0
- package/lib/time-picker/style/css.js +9 -0
- package/lib/time-picker/style/index.css +2418 -0
- package/lib/time-picker/style/index.js +9 -0
- package/lib/time-picker/style/time-picker.css +1 -0
- package/lib/time-range/index.js +526 -0
- package/lib/time-range/style/css.js +7 -0
- package/lib/time-range/style/index.js +7 -0
- package/lib/time-range/style/time-range.css +1 -0
- package/lib/time-slider/index.js +1169 -0
- package/lib/time-slider/style/css.js +7 -0
- package/lib/time-slider/style/index.js +7 -0
- package/lib/time-slider/style/time-slider.css +1 -0
- package/lib/time-text/index.js +393 -0
- package/lib/time-text/style/css.js +7 -0
- package/lib/time-text/style/index.js +7 -0
- package/lib/time-text/style/time-text.css +1 -0
- package/lib/tooltip/index.js +635 -0
- package/lib/tooltip/style/css.js +9 -0
- package/lib/tooltip/style/index.css +2231 -0
- package/lib/tooltip/style/index.js +9 -0
- package/lib/tooltip/style/tooltip.css +0 -0
- package/lib/transfer/index.js +636 -0
- package/lib/transfer/style/css.js +9 -0
- package/lib/transfer/style/index.css +2302 -0
- package/lib/transfer/style/index.js +9 -0
- package/lib/transfer/style/transfer.css +1 -0
- package/lib/tree/index.js +857 -0
- package/lib/tree/style/css.js +9 -0
- package/lib/tree/style/index.css +2644 -0
- package/lib/tree/style/index.js +9 -0
- package/lib/tree/style/tree.css +1 -0
- package/lib/tree-select/index.js +765 -0
- package/lib/tree-select/style/css.js +9 -0
- package/lib/tree-select/style/index.css +2508 -0
- package/lib/tree-select/style/index.js +9 -0
- package/lib/tree-select/style/tree-select.css +1 -0
- package/lib/video-player/index.js +1472 -0
- package/lib/video-player/style/css.js +11 -0
- package/lib/video-player/style/index.js +11 -0
- package/lib/video-player/style/video-player.css +1 -0
- package/lib/web-map/index.js +2241 -0
- package/lib/web-map/style/css.js +15 -0
- package/lib/web-map/style/index.js +15 -0
- package/lib/web-map/style/web-map.css +1 -0
- package/package.json +97 -0
- package/src/common/_assets/iconfont/icon-sm-components.css +245 -0
- package/src/common/_assets/iconfont/icon-sm-components.eot +0 -0
- package/src/common/_assets/iconfont/icon-sm-components.svg +197 -0
- package/src/common/_assets/iconfont/icon-sm-components.ttf +0 -0
- package/src/common/_assets/iconfont/icon-sm-components.woff +0 -0
- package/src/common/_assets/iconfont/icon-sm-components.woff2 +0 -0
- package/src/common/_lang/en.js +355 -0
- package/src/common/_lang/index.js +177 -0
- package/src/common/_lang/zh.js +342 -0
- package/src/common/_mixin/AntdRender.ts +114 -0
- package/src/common/_mixin/Card.ts +22 -0
- package/src/common/_mixin/Theme.ts +222 -0
- package/src/common/_mixin/ThirdService.ts +58 -0
- package/src/common/_mixin/Timer.ts +58 -0
- package/src/common/_mixin/VmUpdater.ts +46 -0
- package/src/common/_types/AddressMatchParameter.js +9 -0
- package/src/common/_types/GeoJSONParamter.ts +17 -0
- package/src/common/_types/RestDataParameter.js +8 -0
- package/src/common/_types/RestMapParameter.js +8 -0
- package/src/common/_types/RestParameter.js +12 -0
- package/src/common/_types/event/BaseTypes.js +24 -0
- package/src/common/_types/event/Event.js +315 -0
- package/src/common/_types/event/Events.js +353 -0
- package/src/common/_types/event/Pixel.js +177 -0
- package/src/common/_types/event/Util.js +173 -0
- package/src/common/_types/iPortalDataParameter.js +12 -0
- package/src/common/_types/iServerBaseParameter.ts +28 -0
- package/src/common/_types/iServerDataParameter.ts +13 -0
- package/src/common/_types/iServerMapParameter.ts +13 -0
- package/src/common/_utils/EchartsDataService.js +527 -0
- package/src/common/_utils/RestService.js +130 -0
- package/src/common/_utils/WebMapService.ts +1292 -0
- package/src/common/_utils/epsg-define.js +55 -0
- package/src/common/_utils/get-features.js +92 -0
- package/src/common/_utils/global-event.js +6 -0
- package/src/common/_utils/iPortalDataService.js +444 -0
- package/src/common/_utils/iServerRestService.js +487 -0
- package/src/common/_utils/statistics.js +36 -0
- package/src/common/_utils/style/color/colorPalette.ts +63 -0
- package/src/common/_utils/style/color/serialColors.ts +207 -0
- package/src/common/_utils/style/common/common.scss +39 -0
- package/src/common/_utils/style/mixins/config.scss +4 -0
- package/src/common/_utils/style/mixins/mixins.scss +48 -0
- package/src/common/_utils/style/theme/antd.less +2 -0
- package/src/common/_utils/style/theme/antdVar.less +371 -0
- package/src/common/_utils/style/theme/chart.js +548 -0
- package/src/common/_utils/style/theme/set-theme.ts +43 -0
- package/src/common/_utils/style/theme/theme.json +356 -0
- package/src/common/_utils/style/theme/theme.scss +495 -0
- package/src/common/_utils/util.js +251 -0
- package/src/common/_utils/vue-types/index.js +267 -0
- package/src/common/_utils/vue-types/utils.js +194 -0
- package/src/common/avatar/Avatar.vue +41 -0
- package/src/common/avatar/index.js +9 -0
- package/src/common/avatar/style/avatar.scss +8 -0
- package/src/common/avatar/style/index.js +4 -0
- package/src/common/avatar/style/index.less +3 -0
- package/src/common/border/Border.vue +121 -0
- package/src/common/border/assets/border.config.json +67 -0
- package/src/common/border/assets/image/border1.png +0 -0
- package/src/common/border/assets/image/border10.png +0 -0
- package/src/common/border/assets/image/border11.png +0 -0
- package/src/common/border/assets/image/border12.png +0 -0
- package/src/common/border/assets/image/border13.png +0 -0
- package/src/common/border/assets/image/border2.png +0 -0
- package/src/common/border/assets/image/border3.png +0 -0
- package/src/common/border/assets/image/border4.png +0 -0
- package/src/common/border/assets/image/border5.png +0 -0
- package/src/common/border/assets/image/border6.png +0 -0
- package/src/common/border/assets/image/border7.png +0 -0
- package/src/common/border/assets/image/border8.png +0 -0
- package/src/common/border/assets/image/border9.png +0 -0
- package/src/common/border/index.js +9 -0
- package/src/common/border/style/border.scss +19 -0
- package/src/common/border/style/index.js +4 -0
- package/src/common/breadcrumb/Breadcrumb.vue +21 -0
- package/src/common/breadcrumb/BreadcrumbItem.vue +21 -0
- package/src/common/breadcrumb/BreadcrumbSeparator.vue +19 -0
- package/src/common/breadcrumb/index.js +13 -0
- package/src/common/breadcrumb/style/breadcrumb.scss +21 -0
- package/src/common/breadcrumb/style/index.js +4 -0
- package/src/common/breadcrumb/style/index.less +3 -0
- package/src/common/button/Button.vue +34 -0
- package/src/common/button/Group.vue +31 -0
- package/src/common/button/index.js +11 -0
- package/src/common/button/style/button.scss +91 -0
- package/src/common/button/style/index.js +4 -0
- package/src/common/button/style/index.less +3 -0
- package/src/common/button/style/mixin.scss +56 -0
- package/src/common/card/Card.vue +32 -0
- package/src/common/card/Grid.vue +20 -0
- package/src/common/card/Meta.vue +20 -0
- package/src/common/card/index.js +13 -0
- package/src/common/card/style/card.scss +43 -0
- package/src/common/card/style/index.js +4 -0
- package/src/common/card/style/index.less +3 -0
- package/src/common/chart/ChartMixin.vue +1572 -0
- package/src/common/chart/index.js +9 -0
- package/src/common/chart/style/chart.scss +10 -0
- package/src/common/chart/style/index.js +5 -0
- package/src/common/checkbox/Checkbox.vue +37 -0
- package/src/common/checkbox/Group.vue +36 -0
- package/src/common/checkbox/index.js +11 -0
- package/src/common/checkbox/style/checkbox.scss +40 -0
- package/src/common/checkbox/style/index.js +4 -0
- package/src/common/checkbox/style/index.less +3 -0
- package/src/common/collapse/Collapse.vue +32 -0
- package/src/common/collapse/Panel.vue +26 -0
- package/src/common/collapse/index.js +11 -0
- package/src/common/collapse/style/collapse.scss +10 -0
- package/src/common/collapse/style/index.js +4 -0
- package/src/common/collapse/style/index.less +3 -0
- package/src/common/collapse-card/CollapseCard.vue +150 -0
- package/src/common/collapse-card/index.js +9 -0
- package/src/common/collapse-card/style/collapse-card.scss +176 -0
- package/src/common/collapse-card/style/index.js +4 -0
- package/src/common/color-picker/ColorPicker.vue +106 -0
- package/src/common/color-picker/index.js +9 -0
- package/src/common/color-picker/style/color-picker.scss +37 -0
- package/src/common/color-picker/style/index.js +4 -0
- package/src/common/config-provider/ConfigProvider.vue +31 -0
- package/src/common/config-provider/index.js +9 -0
- package/src/common/date-picker/BaseMixin.vue +23 -0
- package/src/common/date-picker/DatePicker.vue +20 -0
- package/src/common/date-picker/MonthPicker.vue +20 -0
- package/src/common/date-picker/RangePicker.vue +20 -0
- package/src/common/date-picker/WeekPicker.vue +20 -0
- package/src/common/date-picker/index.js +15 -0
- package/src/common/date-picker/style/date-picker.scss +290 -0
- package/src/common/date-picker/style/index.js +4 -0
- package/src/common/date-picker/style/index.less +3 -0
- package/src/common/date-picker/style/mixin.scss +75 -0
- package/src/common/dropdown/Dropdown.vue +31 -0
- package/src/common/dropdown/index.js +9 -0
- package/src/common/dropdown/style/dropdown.scss +22 -0
- package/src/common/dropdown/style/index.js +4 -0
- package/src/common/dropdown/style/index.less +3 -0
- package/src/common/empty/Empty.vue +26 -0
- package/src/common/empty/RenderEmpty.ts +50 -0
- package/src/common/empty/assets/image/empty.png +0 -0
- package/src/common/empty/index.js +9 -0
- package/src/common/empty/style/empty.scss +31 -0
- package/src/common/empty/style/index.js +4 -0
- package/src/common/empty/style/index.less +3 -0
- package/src/common/icon/Icon.vue +66 -0
- package/src/common/icon/index.js +9 -0
- package/src/common/icon/style/icon.scss +12 -0
- package/src/common/icon/style/index.js +4 -0
- package/src/common/icon/style/index.less +3 -0
- package/src/common/iframe/Iframe.vue +17 -0
- package/src/common/iframe/index.js +9 -0
- package/src/common/iframe/style/iframe.scss +7 -0
- package/src/common/iframe/style/index.js +4 -0
- package/src/common/image/Image.vue +83 -0
- package/src/common/image/index.js +9 -0
- package/src/common/image/style/image.scss +33 -0
- package/src/common/image/style/index.js +4 -0
- package/src/common/indicator/CountTo.vue +92 -0
- package/src/common/indicator/Indicator.vue +308 -0
- package/src/common/indicator/index.js +11 -0
- package/src/common/indicator/style/countTo.scss +7 -0
- package/src/common/indicator/style/index.js +4 -0
- package/src/common/indicator/style/indicator.scss +47 -0
- package/src/common/input/BaseMixin.vue +24 -0
- package/src/common/input/Group.vue +31 -0
- package/src/common/input/Input.vue +41 -0
- package/src/common/input/Password.vue +41 -0
- package/src/common/input/Search.vue +40 -0
- package/src/common/input/TextArea.vue +25 -0
- package/src/common/input/index.js +17 -0
- package/src/common/input/style/index.js +4 -0
- package/src/common/input/style/index.less +3 -0
- package/src/common/input/style/input.scss +72 -0
- package/src/common/input/style/mixin.scss +42 -0
- package/src/common/input-number/InputNumber.vue +44 -0
- package/src/common/input-number/index.js +9 -0
- package/src/common/input-number/style/index.js +4 -0
- package/src/common/input-number/style/index.less +3 -0
- package/src/common/input-number/style/input-number.scss +43 -0
- package/src/common/layout/Content.vue +25 -0
- package/src/common/layout/Footer.vue +25 -0
- package/src/common/layout/Header.vue +25 -0
- package/src/common/layout/Layout.vue +25 -0
- package/src/common/layout/Sider.vue +33 -0
- package/src/common/layout/index.js +17 -0
- package/src/common/layout/style/index.js +4 -0
- package/src/common/layout/style/index.less +3 -0
- package/src/common/layout/style/layout.scss +5 -0
- package/src/common/liquid-fill/LiquidFill.vue +209 -0
- package/src/common/liquid-fill/index.js +9 -0
- package/src/common/liquid-fill/style/index.js +4 -0
- package/src/common/liquid-fill/style/liquid-fill.scss +6 -0
- package/src/common/menu/Menu.vue +31 -0
- package/src/common/menu/MenuItem.vue +37 -0
- package/src/common/menu/SubMenu.vue +51 -0
- package/src/common/menu/index.js +13 -0
- package/src/common/menu/style/index.js +4 -0
- package/src/common/menu/style/index.less +3 -0
- package/src/common/menu/style/menu.scss +0 -0
- package/src/common/message/Message.js +12 -0
- package/src/common/message/index.js +3 -0
- package/src/common/message/style/index.js +4 -0
- package/src/common/message/style/index.less +3 -0
- package/src/common/message/style/message.scss +16 -0
- package/src/common/modal/Modal.vue +64 -0
- package/src/common/modal/index.js +9 -0
- package/src/common/modal/main.ts +49 -0
- package/src/common/modal/style/index.js +4 -0
- package/src/common/modal/style/index.less +3 -0
- package/src/common/modal/style/modal.scss +23 -0
- package/src/common/nav/Nav.vue +158 -0
- package/src/common/nav/assets/image/background_image.png +0 -0
- package/src/common/nav/assets/image/item_active.png +0 -0
- package/src/common/nav/index.js +9 -0
- package/src/common/nav/style/index.js +5 -0
- package/src/common/nav/style/nav.scss +55 -0
- package/src/common/notification/Notification.js +10 -0
- package/src/common/notification/index.js +3 -0
- package/src/common/notification/style/index.js +4 -0
- package/src/common/notification/style/index.less +3 -0
- package/src/common/notification/style/notification.scss +30 -0
- package/src/common/pagination/Pagination.vue +32 -0
- package/src/common/pagination/index.js +9 -0
- package/src/common/pagination/style/index.js +4 -0
- package/src/common/pagination/style/index.less +3 -0
- package/src/common/pagination/style/pagination.scss +131 -0
- package/src/common/progress/Progress.vue +98 -0
- package/src/common/progress/index.js +9 -0
- package/src/common/progress/style/index.js +4 -0
- package/src/common/progress/style/index.less +3 -0
- package/src/common/progress/style/progress.scss +43 -0
- package/src/common/radio/Button.vue +18 -0
- package/src/common/radio/Group.vue +48 -0
- package/src/common/radio/Radio.vue +36 -0
- package/src/common/radio/index.js +13 -0
- package/src/common/radio/style/index.js +4 -0
- package/src/common/radio/style/index.less +3 -0
- package/src/common/radio/style/radio.scss +127 -0
- package/src/common/select/OptGroup.vue +20 -0
- package/src/common/select/Option.vue +22 -0
- package/src/common/select/Select.vue +49 -0
- package/src/common/select/index.js +13 -0
- package/src/common/select/style/index.js +4 -0
- package/src/common/select/style/index.less +3 -0
- package/src/common/select/style/select.scss +140 -0
- package/src/common/slider/Slider.vue +31 -0
- package/src/common/slider/index.js +9 -0
- package/src/common/slider/style/index.js +4 -0
- package/src/common/slider/style/index.less +3 -0
- package/src/common/slider/style/slider.scss +8 -0
- package/src/common/slideshow/Slideshow.vue +354 -0
- package/src/common/slideshow/SlideshowItem.vue +17 -0
- package/src/common/slideshow/Swiper.js +29 -0
- package/src/common/slideshow/index.js +11 -0
- package/src/common/slideshow/style/index.js +5 -0
- package/src/common/slideshow/style/slideshow.scss +48 -0
- package/src/common/spin/Spin.vue +17 -0
- package/src/common/spin/index.js +9 -0
- package/src/common/spin/main.ts +13 -0
- package/src/common/spin/style/index.js +4 -0
- package/src/common/spin/style/index.less +3 -0
- package/src/common/spin/style/spin.scss +14 -0
- package/src/common/steps/Step.vue +33 -0
- package/src/common/steps/Steps.vue +39 -0
- package/src/common/steps/index.js +11 -0
- package/src/common/steps/style/index.js +4 -0
- package/src/common/steps/style/index.less +3 -0
- package/src/common/steps/style/mixin.scss +67 -0
- package/src/common/steps/style/steps.scss +98 -0
- package/src/common/switch/Switch.vue +41 -0
- package/src/common/switch/index.js +9 -0
- package/src/common/switch/style/index.js +4 -0
- package/src/common/switch/style/index.less +3 -0
- package/src/common/switch/style/switch.scss +20 -0
- package/src/common/table/Column.vue +18 -0
- package/src/common/table/ColumnGroup.vue +19 -0
- package/src/common/table/Table.vue +18 -0
- package/src/common/table/index.js +13 -0
- package/src/common/table/style/index.js +4 -0
- package/src/common/table/style/index.less +3 -0
- package/src/common/table/style/table.scss +138 -0
- package/src/common/table-popup/TablePopup.vue +73 -0
- package/src/common/table-popup/index.js +9 -0
- package/src/common/table-popup/style/index.js +5 -0
- package/src/common/table-popup/style/table-popup.scss +52 -0
- package/src/common/tabs/TabPane.vue +26 -0
- package/src/common/tabs/Tabs.vue +41 -0
- package/src/common/tabs/index.js +11 -0
- package/src/common/tabs/style/index.js +4 -0
- package/src/common/tabs/style/index.less +3 -0
- package/src/common/tabs/style/tabs.scss +95 -0
- package/src/common/text/Text.vue +69 -0
- package/src/common/text/index.js +9 -0
- package/src/common/text/style/index.js +4 -0
- package/src/common/text/style/text.scss +23 -0
- package/src/common/time-line/TimeLine.vue +260 -0
- package/src/common/time-line/index.js +9 -0
- package/src/common/time-line/style/index.js +4 -0
- package/src/common/time-line/style/time-line.scss +10 -0
- package/src/common/time-picker/TimePicker.vue +47 -0
- package/src/common/time-picker/index.js +9 -0
- package/src/common/time-picker/style/index.js +4 -0
- package/src/common/time-picker/style/index.less +3 -0
- package/src/common/time-picker/style/time-picker.scss +69 -0
- package/src/common/time-range/TimeRange.vue +122 -0
- package/src/common/time-range/index.js +9 -0
- package/src/common/time-range/style/index.js +4 -0
- package/src/common/time-range/style/time-range.scss +10 -0
- package/src/common/time-slider/TimeSlider.vue +591 -0
- package/src/common/time-slider/index.js +9 -0
- package/src/common/time-slider/style/index.js +4 -0
- package/src/common/time-slider/style/mixin.scss +36 -0
- package/src/common/time-slider/style/time-slider.scss +147 -0
- package/src/common/time-text/TimeText.vue +51 -0
- package/src/common/time-text/index.js +9 -0
- package/src/common/time-text/style/index.js +4 -0
- package/src/common/time-text/style/time-text.scss +14 -0
- package/src/common/tooltip/Tooltip.vue +21 -0
- package/src/common/tooltip/index.js +9 -0
- package/src/common/tooltip/style/index.js +4 -0
- package/src/common/tooltip/style/index.less +3 -0
- package/src/common/tooltip/style/tooltip.scss +5 -0
- package/src/common/transfer/Transfer.vue +19 -0
- package/src/common/transfer/index.js +9 -0
- package/src/common/transfer/style/index.js +4 -0
- package/src/common/transfer/style/index.less +3 -0
- package/src/common/transfer/style/transfer.scss +52 -0
- package/src/common/tree/DirectoryTree.vue +32 -0
- package/src/common/tree/Tree.vue +32 -0
- package/src/common/tree/TreeNode.vue +49 -0
- package/src/common/tree/index.js +13 -0
- package/src/common/tree/style/index.js +4 -0
- package/src/common/tree/style/index.less +3 -0
- package/src/common/tree/style/tree.scss +16 -0
- package/src/common/tree-select/TreeSelect.vue +43 -0
- package/src/common/tree-select/TreeSelectNode.vue +49 -0
- package/src/common/tree-select/index.js +11 -0
- package/src/common/tree-select/style/index.js +4 -0
- package/src/common/tree-select/style/index.less +3 -0
- package/src/common/tree-select/style/tree-select.scss +38 -0
- package/src/common/video-player/VideoPlayer.vue +423 -0
- package/src/common/video-player/index.js +9 -0
- package/src/common/video-player/style/index.js +5 -0
- package/src/common/video-player/style/video-player.scss +266 -0
- package/src/common/web-map/WebMapBase.ts +1178 -0
- package/src/common/web-map/config/MunicipalCenter.json +1 -0
- package/src/common/web-map/config/ProvinceCenter.json +1 -0
- package/src/image.d.ts +7 -0
- package/src/init.js +38 -0
- package/src/leaflet/README.md +31 -0
- package/src/leaflet/_mixin/GridLayer.js +33 -0
- package/src/leaflet/_mixin/Layer.js +26 -0
- package/src/leaflet/_mixin/Options.js +10 -0
- package/src/leaflet/_mixin/Popper.js +25 -0
- package/src/leaflet/_mixin/TileLayer.js +18 -0
- package/src/leaflet/_mixin/map-getter.ts +122 -0
- package/src/leaflet/_types/index.js +17 -0
- package/src/leaflet/_types/map-event.js +34 -0
- package/src/leaflet/_utils/props-binder.js +23 -0
- package/src/leaflet/chart/Chart.vue +25 -0
- package/src/leaflet/chart/ChartViewModel.js +44 -0
- package/src/leaflet/chart/index.js +9 -0
- package/src/leaflet/components.ts +206 -0
- package/src/leaflet/css.js +3 -0
- package/src/leaflet/entrys.json +106 -0
- package/src/leaflet/identify/Identify.vue +233 -0
- package/src/leaflet/identify/IdentifyViewModel.js +114 -0
- package/src/leaflet/identify/index.js +9 -0
- package/src/leaflet/identify/style/identify.scss +30 -0
- package/src/leaflet/identify/style/index.js +4 -0
- package/src/leaflet/index.ts +5 -0
- package/src/leaflet/leaflet-wrapper.js +125 -0
- package/src/leaflet/marker/Marker.vue +46 -0
- package/src/leaflet/marker/MarkerViewModel.js +31 -0
- package/src/leaflet/marker/index.js +9 -0
- package/src/leaflet/package.json +97 -0
- package/src/leaflet/popup/Popup.vue +93 -0
- package/src/leaflet/popup/PopupViewModel.js +75 -0
- package/src/leaflet/popup/index.js +9 -0
- package/src/leaflet/style.js +3 -0
- package/src/leaflet/style.scss +52 -0
- package/src/leaflet/web-map/WebMap.vue +213 -0
- package/src/leaflet/web-map/WebMapViewModel.ts +1102 -0
- package/src/leaflet/web-map/_mixin/map-events.ts +65 -0
- package/src/leaflet/web-map/index.js +9 -0
- package/src/leaflet/web-map/layer/tile/TileLayer.vue +88 -0
- package/src/leaflet/web-map/layer/tile/TileLayerViewModel.js +66 -0
- package/src/leaflet/web-map/layer/tile/index.js +9 -0
- package/src/leaflet/web-map/style/index.js +7 -0
- package/src/leaflet/web-map/style/web-map.scss +32 -0
- package/src/sfc.d.ts +50 -0
- package/src/vue-i18n.d.ts +26 -0
- package/src/vue-options.d.ts +18 -0
- package/static/libs/echarts-layer/EchartsLayer.js +390 -0
- package/static/libs/geostats/geostats.js +1227 -0
- package/static/libs/iclient-common/iclient-common.js +2 -0
- package/static/libs/iclient-leaflet/iclient-leaflet.min.css +8 -0
- package/static/libs/iclient-leaflet/iclient-leaflet.min.js +1741 -0
- package/static/libs/json-sql/jsonsql.js +125 -0
- package/tsconfig.json +43 -0
|
@@ -0,0 +1,1151 @@
|
|
|
1
|
+
module.exports =
|
|
2
|
+
/******/ (function(modules) { // webpackBootstrap
|
|
3
|
+
/******/ // The module cache
|
|
4
|
+
/******/ var installedModules = {};
|
|
5
|
+
/******/
|
|
6
|
+
/******/ // The require function
|
|
7
|
+
/******/ function __webpack_require__(moduleId) {
|
|
8
|
+
/******/
|
|
9
|
+
/******/ // Check if module is in cache
|
|
10
|
+
/******/ if(installedModules[moduleId]) {
|
|
11
|
+
/******/ return installedModules[moduleId].exports;
|
|
12
|
+
/******/ }
|
|
13
|
+
/******/ // Create a new module (and put it into the cache)
|
|
14
|
+
/******/ var module = installedModules[moduleId] = {
|
|
15
|
+
/******/ i: moduleId,
|
|
16
|
+
/******/ l: false,
|
|
17
|
+
/******/ exports: {}
|
|
18
|
+
/******/ };
|
|
19
|
+
/******/
|
|
20
|
+
/******/ // Execute the module function
|
|
21
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
22
|
+
/******/
|
|
23
|
+
/******/ // Flag the module as loaded
|
|
24
|
+
/******/ module.l = true;
|
|
25
|
+
/******/
|
|
26
|
+
/******/ // Return the exports of the module
|
|
27
|
+
/******/ return module.exports;
|
|
28
|
+
/******/ }
|
|
29
|
+
/******/
|
|
30
|
+
/******/
|
|
31
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
32
|
+
/******/ __webpack_require__.m = modules;
|
|
33
|
+
/******/
|
|
34
|
+
/******/ // expose the module cache
|
|
35
|
+
/******/ __webpack_require__.c = installedModules;
|
|
36
|
+
/******/
|
|
37
|
+
/******/ // define getter function for harmony exports
|
|
38
|
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
39
|
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
40
|
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
41
|
+
/******/ }
|
|
42
|
+
/******/ };
|
|
43
|
+
/******/
|
|
44
|
+
/******/ // define __esModule on exports
|
|
45
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
46
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
47
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
48
|
+
/******/ }
|
|
49
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
50
|
+
/******/ };
|
|
51
|
+
/******/
|
|
52
|
+
/******/ // create a fake namespace object
|
|
53
|
+
/******/ // mode & 1: value is a module id, require it
|
|
54
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
55
|
+
/******/ // mode & 4: return value when already ns object
|
|
56
|
+
/******/ // mode & 8|1: behave like require
|
|
57
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
58
|
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
59
|
+
/******/ if(mode & 8) return value;
|
|
60
|
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
61
|
+
/******/ var ns = Object.create(null);
|
|
62
|
+
/******/ __webpack_require__.r(ns);
|
|
63
|
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
64
|
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
65
|
+
/******/ return ns;
|
|
66
|
+
/******/ };
|
|
67
|
+
/******/
|
|
68
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
69
|
+
/******/ __webpack_require__.n = function(module) {
|
|
70
|
+
/******/ var getter = module && module.__esModule ?
|
|
71
|
+
/******/ function getDefault() { return module['default']; } :
|
|
72
|
+
/******/ function getModuleExports() { return module; };
|
|
73
|
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
74
|
+
/******/ return getter;
|
|
75
|
+
/******/ };
|
|
76
|
+
/******/
|
|
77
|
+
/******/ // Object.prototype.hasOwnProperty.call
|
|
78
|
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
79
|
+
/******/
|
|
80
|
+
/******/ // __webpack_public_path__
|
|
81
|
+
/******/ __webpack_require__.p = "lib/leaflet/";
|
|
82
|
+
/******/
|
|
83
|
+
/******/
|
|
84
|
+
/******/ // Load entry module and return exports
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 368);
|
|
86
|
+
/******/ })
|
|
87
|
+
/************************************************************************/
|
|
88
|
+
/******/ ({
|
|
89
|
+
|
|
90
|
+
/***/ 0:
|
|
91
|
+
/***/ (function(module, exports) {
|
|
92
|
+
|
|
93
|
+
module.exports = require("@babel/runtime/helpers/interopRequireDefault");
|
|
94
|
+
|
|
95
|
+
/***/ }),
|
|
96
|
+
|
|
97
|
+
/***/ 1:
|
|
98
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
99
|
+
|
|
100
|
+
"use strict";
|
|
101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
|
102
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
103
|
+
|
|
104
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
105
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
106
|
+
// be included in the final webpack user bundle.
|
|
107
|
+
|
|
108
|
+
function normalizeComponent(
|
|
109
|
+
scriptExports,
|
|
110
|
+
render,
|
|
111
|
+
staticRenderFns,
|
|
112
|
+
functionalTemplate,
|
|
113
|
+
injectStyles,
|
|
114
|
+
scopeId,
|
|
115
|
+
moduleIdentifier /* server only */,
|
|
116
|
+
shadowMode /* vue-cli only */
|
|
117
|
+
) {
|
|
118
|
+
// Vue.extend constructor export interop
|
|
119
|
+
var options =
|
|
120
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
121
|
+
|
|
122
|
+
// render functions
|
|
123
|
+
if (render) {
|
|
124
|
+
options.render = render
|
|
125
|
+
options.staticRenderFns = staticRenderFns
|
|
126
|
+
options._compiled = true
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// functional template
|
|
130
|
+
if (functionalTemplate) {
|
|
131
|
+
options.functional = true
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// scopedId
|
|
135
|
+
if (scopeId) {
|
|
136
|
+
options._scopeId = 'data-v-' + scopeId
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
var hook
|
|
140
|
+
if (moduleIdentifier) {
|
|
141
|
+
// server build
|
|
142
|
+
hook = function (context) {
|
|
143
|
+
// 2.3 injection
|
|
144
|
+
context =
|
|
145
|
+
context || // cached call
|
|
146
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
147
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
148
|
+
// 2.2 with runInNewContext: true
|
|
149
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
150
|
+
context = __VUE_SSR_CONTEXT__
|
|
151
|
+
}
|
|
152
|
+
// inject component styles
|
|
153
|
+
if (injectStyles) {
|
|
154
|
+
injectStyles.call(this, context)
|
|
155
|
+
}
|
|
156
|
+
// register component module identifier for async chunk inferrence
|
|
157
|
+
if (context && context._registeredComponents) {
|
|
158
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
// used by ssr in case component is cached and beforeCreate
|
|
162
|
+
// never gets called
|
|
163
|
+
options._ssrRegister = hook
|
|
164
|
+
} else if (injectStyles) {
|
|
165
|
+
hook = shadowMode
|
|
166
|
+
? function () {
|
|
167
|
+
injectStyles.call(
|
|
168
|
+
this,
|
|
169
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
170
|
+
)
|
|
171
|
+
}
|
|
172
|
+
: injectStyles
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (hook) {
|
|
176
|
+
if (options.functional) {
|
|
177
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
178
|
+
// go through the normalizer
|
|
179
|
+
options._injectStyles = hook
|
|
180
|
+
// register for functional component in vue file
|
|
181
|
+
var originalRender = options.render
|
|
182
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
183
|
+
hook.call(context)
|
|
184
|
+
return originalRender(h, context)
|
|
185
|
+
}
|
|
186
|
+
} else {
|
|
187
|
+
// inject component registration as beforeCreate hook
|
|
188
|
+
var existing = options.beforeCreate
|
|
189
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
return {
|
|
194
|
+
exports: scriptExports,
|
|
195
|
+
options: options
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
/***/ }),
|
|
201
|
+
|
|
202
|
+
/***/ 123:
|
|
203
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
204
|
+
|
|
205
|
+
"use strict";
|
|
206
|
+
__webpack_require__.r(__webpack_exports__);
|
|
207
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(124);
|
|
208
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__);
|
|
209
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
210
|
+
/* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
211
|
+
|
|
212
|
+
/***/ }),
|
|
213
|
+
|
|
214
|
+
/***/ 124:
|
|
215
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
216
|
+
|
|
217
|
+
"use strict";
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
221
|
+
|
|
222
|
+
Object.defineProperty(exports, "__esModule", {
|
|
223
|
+
value: true
|
|
224
|
+
});
|
|
225
|
+
exports.inputGroupTypes = exports.default = void 0;
|
|
226
|
+
|
|
227
|
+
var _Group = _interopRequireDefault(__webpack_require__(370));
|
|
228
|
+
|
|
229
|
+
var _vueTypes = _interopRequireDefault(__webpack_require__(5));
|
|
230
|
+
|
|
231
|
+
var _Theme = _interopRequireDefault(__webpack_require__(2));
|
|
232
|
+
|
|
233
|
+
var _AntdRender = _interopRequireDefault(__webpack_require__(4));
|
|
234
|
+
|
|
235
|
+
var inputGroupTypes = exports.inputGroupTypes = {
|
|
236
|
+
size: _vueTypes.default.oneOf(['small', 'large', 'default', 'middle']).def('default'),
|
|
237
|
+
compact: _vueTypes.default.bool
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
var _default = exports.default = {
|
|
241
|
+
name: 'SmInputGroup',
|
|
242
|
+
defaultComponent: _Group.default,
|
|
243
|
+
mixins: [_Theme.default, _AntdRender.default],
|
|
244
|
+
inheritAttrs: false,
|
|
245
|
+
props: inputGroupTypes,
|
|
246
|
+
computed: {
|
|
247
|
+
extralProps: function extralProps() {
|
|
248
|
+
return {
|
|
249
|
+
size: this.size === 'middle' ? undefined : this.size
|
|
250
|
+
};
|
|
251
|
+
},
|
|
252
|
+
componentClass: function componentClass() {
|
|
253
|
+
return {
|
|
254
|
+
'sm-component-input-group-md': this.size === 'middle'
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
/***/ }),
|
|
261
|
+
|
|
262
|
+
/***/ 125:
|
|
263
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
264
|
+
|
|
265
|
+
"use strict";
|
|
266
|
+
__webpack_require__.r(__webpack_exports__);
|
|
267
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(126);
|
|
268
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__);
|
|
269
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
270
|
+
/* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
271
|
+
|
|
272
|
+
/***/ }),
|
|
273
|
+
|
|
274
|
+
/***/ 126:
|
|
275
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
276
|
+
|
|
277
|
+
"use strict";
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
281
|
+
|
|
282
|
+
Object.defineProperty(exports, "__esModule", {
|
|
283
|
+
value: true
|
|
284
|
+
});
|
|
285
|
+
exports.inputTypes = exports.default = void 0;
|
|
286
|
+
|
|
287
|
+
var _Input = _interopRequireDefault(__webpack_require__(372));
|
|
288
|
+
|
|
289
|
+
var _inputProps = _interopRequireDefault(__webpack_require__(64));
|
|
290
|
+
|
|
291
|
+
var _vueTypes = _interopRequireDefault(__webpack_require__(5));
|
|
292
|
+
|
|
293
|
+
var _BaseMixin = _interopRequireDefault(__webpack_require__(50));
|
|
294
|
+
|
|
295
|
+
var inputTypes = exports.inputTypes = Object.assign(Object.assign({}, _inputProps.default), {
|
|
296
|
+
size: _vueTypes.default.oneOf(['small', 'large', 'default', 'middle']),
|
|
297
|
+
error: _vueTypes.default.bool.def(false),
|
|
298
|
+
unit: _vueTypes.default.string
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
var _default = exports.default = {
|
|
302
|
+
name: 'SmInput',
|
|
303
|
+
defaultComponent: _Input.default,
|
|
304
|
+
mixins: [_BaseMixin.default],
|
|
305
|
+
props: inputTypes,
|
|
306
|
+
computed: {
|
|
307
|
+
extralProps: function extralProps() {
|
|
308
|
+
return {
|
|
309
|
+
size: this.size === 'middle' ? undefined : this.size,
|
|
310
|
+
addonAfter: this.unit || this.addonAfter
|
|
311
|
+
};
|
|
312
|
+
},
|
|
313
|
+
componentClass: function componentClass() {
|
|
314
|
+
return {
|
|
315
|
+
'sm-component-input-affix-wrapper-md': this.size === 'middle',
|
|
316
|
+
'sm-component-input-error': this.error,
|
|
317
|
+
'sm-component-input-unit': this.unit
|
|
318
|
+
};
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
mounted: function mounted() {
|
|
322
|
+
if (this.size === 'middle') {
|
|
323
|
+
var inputDom = this.$el.querySelector('.sm-component-input');
|
|
324
|
+
inputDom && inputDom.classList && inputDom.classList.add('sm-component-input-md');
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
/***/ }),
|
|
330
|
+
|
|
331
|
+
/***/ 127:
|
|
332
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
333
|
+
|
|
334
|
+
"use strict";
|
|
335
|
+
__webpack_require__.r(__webpack_exports__);
|
|
336
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(128);
|
|
337
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__);
|
|
338
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
339
|
+
/* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
340
|
+
|
|
341
|
+
/***/ }),
|
|
342
|
+
|
|
343
|
+
/***/ 128:
|
|
344
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
345
|
+
|
|
346
|
+
"use strict";
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
350
|
+
|
|
351
|
+
Object.defineProperty(exports, "__esModule", {
|
|
352
|
+
value: true
|
|
353
|
+
});
|
|
354
|
+
exports.inputPasswordTypes = exports.default = void 0;
|
|
355
|
+
|
|
356
|
+
var _Password = _interopRequireDefault(__webpack_require__(374));
|
|
357
|
+
|
|
358
|
+
var _inputProps = _interopRequireDefault(__webpack_require__(64));
|
|
359
|
+
|
|
360
|
+
var _vueTypes = _interopRequireDefault(__webpack_require__(5));
|
|
361
|
+
|
|
362
|
+
var _BaseMixin = _interopRequireDefault(__webpack_require__(50));
|
|
363
|
+
|
|
364
|
+
var inputPasswordTypes = exports.inputPasswordTypes = Object.assign(Object.assign({}, _inputProps.default), {
|
|
365
|
+
action: _vueTypes.default.oneOf(['click', 'hover']).def('click'),
|
|
366
|
+
visibilityToggle: _vueTypes.default.bool.def(true),
|
|
367
|
+
size: _vueTypes.default.oneOf(['small', 'large', 'default', 'middle'])
|
|
368
|
+
});
|
|
369
|
+
|
|
370
|
+
var _default = exports.default = {
|
|
371
|
+
name: 'SmInputPassword',
|
|
372
|
+
defaultComponent: _Password.default,
|
|
373
|
+
mixins: [_BaseMixin.default],
|
|
374
|
+
props: inputPasswordTypes,
|
|
375
|
+
computed: {
|
|
376
|
+
extralProps: function extralProps() {
|
|
377
|
+
return {
|
|
378
|
+
prefixCls: this.prefixCls || 'sm-component-input-password',
|
|
379
|
+
inputPrefixCls: this.inputPrefixCls || 'sm-component-input',
|
|
380
|
+
size: this.size === 'middle' ? undefined : this.size
|
|
381
|
+
};
|
|
382
|
+
},
|
|
383
|
+
componentClass: function componentClass() {
|
|
384
|
+
return {
|
|
385
|
+
'sm-component-input-affix-wrapper-md': this.size === 'middle',
|
|
386
|
+
'sm-component-input-password-md': this.size === 'middle'
|
|
387
|
+
};
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
mounted: function mounted() {
|
|
391
|
+
if (this.size === 'middle') {
|
|
392
|
+
var inputDom = this.$el.querySelector('.sm-component-input');
|
|
393
|
+
inputDom && inputDom.classList && inputDom.classList.add('sm-component-input-md');
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
};
|
|
397
|
+
|
|
398
|
+
/***/ }),
|
|
399
|
+
|
|
400
|
+
/***/ 129:
|
|
401
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
402
|
+
|
|
403
|
+
"use strict";
|
|
404
|
+
__webpack_require__.r(__webpack_exports__);
|
|
405
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(130);
|
|
406
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__);
|
|
407
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
408
|
+
/* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
409
|
+
|
|
410
|
+
/***/ }),
|
|
411
|
+
|
|
412
|
+
/***/ 130:
|
|
413
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
414
|
+
|
|
415
|
+
"use strict";
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
419
|
+
|
|
420
|
+
Object.defineProperty(exports, "__esModule", {
|
|
421
|
+
value: true
|
|
422
|
+
});
|
|
423
|
+
exports.inputSearchTypes = exports.default = void 0;
|
|
424
|
+
|
|
425
|
+
var _Search = _interopRequireDefault(__webpack_require__(376));
|
|
426
|
+
|
|
427
|
+
var _inputProps = _interopRequireDefault(__webpack_require__(64));
|
|
428
|
+
|
|
429
|
+
var _vueTypes = _interopRequireDefault(__webpack_require__(5));
|
|
430
|
+
|
|
431
|
+
var _BaseMixin = _interopRequireDefault(__webpack_require__(50));
|
|
432
|
+
|
|
433
|
+
var inputSearchTypes = exports.inputSearchTypes = Object.assign(Object.assign({}, _inputProps.default), {
|
|
434
|
+
enterButton: _vueTypes.default.any,
|
|
435
|
+
size: _vueTypes.default.oneOf(['small', 'large', 'default', 'middle'])
|
|
436
|
+
});
|
|
437
|
+
|
|
438
|
+
var _default = exports.default = {
|
|
439
|
+
name: 'SmInputSearch',
|
|
440
|
+
defaultComponent: _Search.default,
|
|
441
|
+
mixins: [_BaseMixin.default],
|
|
442
|
+
props: inputSearchTypes,
|
|
443
|
+
computed: {
|
|
444
|
+
extralProps: function extralProps() {
|
|
445
|
+
return {
|
|
446
|
+
size: this.size === 'middle' ? undefined : this.size
|
|
447
|
+
};
|
|
448
|
+
},
|
|
449
|
+
componentClass: function componentClass() {
|
|
450
|
+
return {
|
|
451
|
+
'sm-component-input-group-wrapper-md': this.size === 'middle',
|
|
452
|
+
'sm-component-input-search-md': this.size === 'middle'
|
|
453
|
+
};
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
mounted: function mounted() {
|
|
457
|
+
if (this.size === 'middle') {
|
|
458
|
+
var inputDom = this.$el.querySelector('.sm-component-input');
|
|
459
|
+
inputDom && inputDom.classList && inputDom.classList.add('sm-component-input-md');
|
|
460
|
+
var btnDom = this.$el.querySelector('.sm-component-input-group-addon .sm-component-btn');
|
|
461
|
+
btnDom && btnDom.classList && btnDom.classList.add('sm-component-btn-md');
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
};
|
|
465
|
+
|
|
466
|
+
/***/ }),
|
|
467
|
+
|
|
468
|
+
/***/ 131:
|
|
469
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
470
|
+
|
|
471
|
+
"use strict";
|
|
472
|
+
__webpack_require__.r(__webpack_exports__);
|
|
473
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(132);
|
|
474
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__);
|
|
475
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
476
|
+
/* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
477
|
+
|
|
478
|
+
/***/ }),
|
|
479
|
+
|
|
480
|
+
/***/ 132:
|
|
481
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
482
|
+
|
|
483
|
+
"use strict";
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
487
|
+
|
|
488
|
+
Object.defineProperty(exports, "__esModule", {
|
|
489
|
+
value: true
|
|
490
|
+
});
|
|
491
|
+
exports.textAreaTypes = exports.default = void 0;
|
|
492
|
+
|
|
493
|
+
var _TextArea = _interopRequireDefault(__webpack_require__(378));
|
|
494
|
+
|
|
495
|
+
var _inputProps = _interopRequireDefault(__webpack_require__(64));
|
|
496
|
+
|
|
497
|
+
var _vueTypes = _interopRequireDefault(__webpack_require__(5));
|
|
498
|
+
|
|
499
|
+
var _BaseMixin = _interopRequireDefault(__webpack_require__(50));
|
|
500
|
+
|
|
501
|
+
var textAreaTypes = exports.textAreaTypes = Object.assign(Object.assign({}, _inputProps.default), {
|
|
502
|
+
error: _vueTypes.default.bool.def(false)
|
|
503
|
+
});
|
|
504
|
+
|
|
505
|
+
var _default = exports.default = {
|
|
506
|
+
name: 'SmTextarea',
|
|
507
|
+
defaultComponent: _TextArea.default,
|
|
508
|
+
mixins: [_BaseMixin.default],
|
|
509
|
+
props: textAreaTypes,
|
|
510
|
+
computed: {
|
|
511
|
+
componentClass: function componentClass() {
|
|
512
|
+
return {
|
|
513
|
+
'sm-component-input-error': this.error === true
|
|
514
|
+
};
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
/***/ }),
|
|
520
|
+
|
|
521
|
+
/***/ 2:
|
|
522
|
+
/***/ (function(module, exports) {
|
|
523
|
+
|
|
524
|
+
module.exports = require("@supermapgis/vue-iclient-leaflet/lib/_mixin/Theme.js");
|
|
525
|
+
|
|
526
|
+
/***/ }),
|
|
527
|
+
|
|
528
|
+
/***/ 3:
|
|
529
|
+
/***/ (function(module, exports) {
|
|
530
|
+
|
|
531
|
+
module.exports = require("@supermapgis/vue-iclient-leaflet/lib/init.js");
|
|
532
|
+
|
|
533
|
+
/***/ }),
|
|
534
|
+
|
|
535
|
+
/***/ 368:
|
|
536
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
537
|
+
|
|
538
|
+
"use strict";
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
542
|
+
|
|
543
|
+
Object.defineProperty(exports, "__esModule", {
|
|
544
|
+
value: true
|
|
545
|
+
});
|
|
546
|
+
exports.default = void 0;
|
|
547
|
+
|
|
548
|
+
var _Group = _interopRequireDefault(__webpack_require__(369));
|
|
549
|
+
|
|
550
|
+
var _Input = _interopRequireDefault(__webpack_require__(371));
|
|
551
|
+
|
|
552
|
+
var _Password = _interopRequireDefault(__webpack_require__(373));
|
|
553
|
+
|
|
554
|
+
var _Search = _interopRequireDefault(__webpack_require__(375));
|
|
555
|
+
|
|
556
|
+
var _TextArea = _interopRequireDefault(__webpack_require__(377));
|
|
557
|
+
|
|
558
|
+
var _init = _interopRequireDefault(__webpack_require__(3));
|
|
559
|
+
|
|
560
|
+
_Input.default.install = function (Vue, opts) {
|
|
561
|
+
(0, _init.default)(Vue, opts);
|
|
562
|
+
Vue.component(_Group.default.options ? _Group.default.options.name : _Group.default.name, _Group.default);
|
|
563
|
+
Vue.component(_Input.default.options ? _Input.default.options.name : _Input.default.name, _Input.default);
|
|
564
|
+
Vue.component(_Password.default.options ? _Password.default.options.name : _Password.default.name, _Password.default);
|
|
565
|
+
Vue.component(_Search.default.options ? _Search.default.options.name : _Search.default.name, _Search.default);
|
|
566
|
+
Vue.component(_TextArea.default.options ? _TextArea.default.options.name : _TextArea.default.name, _TextArea.default);
|
|
567
|
+
};
|
|
568
|
+
|
|
569
|
+
var _default = exports.default = _Input.default;
|
|
570
|
+
|
|
571
|
+
/***/ }),
|
|
572
|
+
|
|
573
|
+
/***/ 369:
|
|
574
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
575
|
+
|
|
576
|
+
"use strict";
|
|
577
|
+
__webpack_require__.r(__webpack_exports__);
|
|
578
|
+
/* harmony import */ var _Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(123);
|
|
579
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
580
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
581
|
+
var render, staticRenderFns
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
/* normalize component */
|
|
587
|
+
|
|
588
|
+
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(
|
|
589
|
+
_Group_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
590
|
+
render,
|
|
591
|
+
staticRenderFns,
|
|
592
|
+
false,
|
|
593
|
+
null,
|
|
594
|
+
null,
|
|
595
|
+
null
|
|
596
|
+
|
|
597
|
+
)
|
|
598
|
+
|
|
599
|
+
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
|
600
|
+
|
|
601
|
+
/***/ }),
|
|
602
|
+
|
|
603
|
+
/***/ 370:
|
|
604
|
+
/***/ (function(module, exports) {
|
|
605
|
+
|
|
606
|
+
module.exports = require("ant-design-vue/es/input/Group");
|
|
607
|
+
|
|
608
|
+
/***/ }),
|
|
609
|
+
|
|
610
|
+
/***/ 371:
|
|
611
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
612
|
+
|
|
613
|
+
"use strict";
|
|
614
|
+
__webpack_require__.r(__webpack_exports__);
|
|
615
|
+
/* harmony import */ var _Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(125);
|
|
616
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
617
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
618
|
+
var render, staticRenderFns
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
/* normalize component */
|
|
624
|
+
|
|
625
|
+
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(
|
|
626
|
+
_Input_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
627
|
+
render,
|
|
628
|
+
staticRenderFns,
|
|
629
|
+
false,
|
|
630
|
+
null,
|
|
631
|
+
null,
|
|
632
|
+
null
|
|
633
|
+
|
|
634
|
+
)
|
|
635
|
+
|
|
636
|
+
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
|
637
|
+
|
|
638
|
+
/***/ }),
|
|
639
|
+
|
|
640
|
+
/***/ 372:
|
|
641
|
+
/***/ (function(module, exports) {
|
|
642
|
+
|
|
643
|
+
module.exports = require("ant-design-vue/es/input/Input");
|
|
644
|
+
|
|
645
|
+
/***/ }),
|
|
646
|
+
|
|
647
|
+
/***/ 373:
|
|
648
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
649
|
+
|
|
650
|
+
"use strict";
|
|
651
|
+
__webpack_require__.r(__webpack_exports__);
|
|
652
|
+
/* harmony import */ var _Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(127);
|
|
653
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
654
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
655
|
+
var render, staticRenderFns
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
/* normalize component */
|
|
661
|
+
|
|
662
|
+
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(
|
|
663
|
+
_Password_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
664
|
+
render,
|
|
665
|
+
staticRenderFns,
|
|
666
|
+
false,
|
|
667
|
+
null,
|
|
668
|
+
null,
|
|
669
|
+
null
|
|
670
|
+
|
|
671
|
+
)
|
|
672
|
+
|
|
673
|
+
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
|
674
|
+
|
|
675
|
+
/***/ }),
|
|
676
|
+
|
|
677
|
+
/***/ 374:
|
|
678
|
+
/***/ (function(module, exports) {
|
|
679
|
+
|
|
680
|
+
module.exports = require("ant-design-vue/es/input/Password");
|
|
681
|
+
|
|
682
|
+
/***/ }),
|
|
683
|
+
|
|
684
|
+
/***/ 375:
|
|
685
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
686
|
+
|
|
687
|
+
"use strict";
|
|
688
|
+
__webpack_require__.r(__webpack_exports__);
|
|
689
|
+
/* harmony import */ var _Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(129);
|
|
690
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
691
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
692
|
+
var render, staticRenderFns
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
/* normalize component */
|
|
698
|
+
|
|
699
|
+
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(
|
|
700
|
+
_Search_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
701
|
+
render,
|
|
702
|
+
staticRenderFns,
|
|
703
|
+
false,
|
|
704
|
+
null,
|
|
705
|
+
null,
|
|
706
|
+
null
|
|
707
|
+
|
|
708
|
+
)
|
|
709
|
+
|
|
710
|
+
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
|
711
|
+
|
|
712
|
+
/***/ }),
|
|
713
|
+
|
|
714
|
+
/***/ 376:
|
|
715
|
+
/***/ (function(module, exports) {
|
|
716
|
+
|
|
717
|
+
module.exports = require("ant-design-vue/es/input/Search");
|
|
718
|
+
|
|
719
|
+
/***/ }),
|
|
720
|
+
|
|
721
|
+
/***/ 377:
|
|
722
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
723
|
+
|
|
724
|
+
"use strict";
|
|
725
|
+
__webpack_require__.r(__webpack_exports__);
|
|
726
|
+
/* harmony import */ var _TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(131);
|
|
727
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
728
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
729
|
+
var render, staticRenderFns
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
/* normalize component */
|
|
735
|
+
|
|
736
|
+
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(
|
|
737
|
+
_TextArea_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
738
|
+
render,
|
|
739
|
+
staticRenderFns,
|
|
740
|
+
false,
|
|
741
|
+
null,
|
|
742
|
+
null,
|
|
743
|
+
null
|
|
744
|
+
|
|
745
|
+
)
|
|
746
|
+
|
|
747
|
+
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
|
748
|
+
|
|
749
|
+
/***/ }),
|
|
750
|
+
|
|
751
|
+
/***/ 378:
|
|
752
|
+
/***/ (function(module, exports) {
|
|
753
|
+
|
|
754
|
+
module.exports = require("ant-design-vue/es/input/TextArea");
|
|
755
|
+
|
|
756
|
+
/***/ }),
|
|
757
|
+
|
|
758
|
+
/***/ 39:
|
|
759
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
760
|
+
|
|
761
|
+
"use strict";
|
|
762
|
+
__webpack_require__.r(__webpack_exports__);
|
|
763
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(40);
|
|
764
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__);
|
|
765
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
766
|
+
/* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_ts_loader_index_js_ref_0_1_node_modules_vue_loader_lib_index_js_vue_loader_options_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
767
|
+
|
|
768
|
+
/***/ }),
|
|
769
|
+
|
|
770
|
+
/***/ 4:
|
|
771
|
+
/***/ (function(module, exports) {
|
|
772
|
+
|
|
773
|
+
module.exports = require("@supermapgis/vue-iclient-leaflet/lib/_mixin/AntdRender.js");
|
|
774
|
+
|
|
775
|
+
/***/ }),
|
|
776
|
+
|
|
777
|
+
/***/ 40:
|
|
778
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
779
|
+
|
|
780
|
+
"use strict";
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
784
|
+
|
|
785
|
+
Object.defineProperty(exports, "__esModule", {
|
|
786
|
+
value: true
|
|
787
|
+
});
|
|
788
|
+
exports.default = void 0;
|
|
789
|
+
|
|
790
|
+
var _Theme = _interopRequireDefault(__webpack_require__(2));
|
|
791
|
+
|
|
792
|
+
var _AntdRender = _interopRequireDefault(__webpack_require__(4));
|
|
793
|
+
|
|
794
|
+
var _default = exports.default = {
|
|
795
|
+
mixins: [_Theme.default, _AntdRender.default],
|
|
796
|
+
inheritAttrs: false,
|
|
797
|
+
model: {
|
|
798
|
+
prop: 'value',
|
|
799
|
+
event: 'change.value'
|
|
800
|
+
},
|
|
801
|
+
computed: {
|
|
802
|
+
extralListeners: function extralListeners() {
|
|
803
|
+
var vm = this;
|
|
804
|
+
return {
|
|
805
|
+
'change.value': function changeValue(value) {
|
|
806
|
+
vm.$emit('change.value', value);
|
|
807
|
+
}
|
|
808
|
+
};
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
};
|
|
812
|
+
|
|
813
|
+
/***/ }),
|
|
814
|
+
|
|
815
|
+
/***/ 5:
|
|
816
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
817
|
+
|
|
818
|
+
"use strict";
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
var _interopRequireDefault = __webpack_require__(0);
|
|
822
|
+
|
|
823
|
+
Object.defineProperty(exports, "__esModule", {
|
|
824
|
+
value: true
|
|
825
|
+
});
|
|
826
|
+
exports.default = void 0;
|
|
827
|
+
|
|
828
|
+
var _lodash = _interopRequireDefault(__webpack_require__(7));
|
|
829
|
+
|
|
830
|
+
var _utils = __webpack_require__(8);
|
|
831
|
+
|
|
832
|
+
var VuePropTypes = {
|
|
833
|
+
get any() {
|
|
834
|
+
return (0, _utils.toType)('any', {
|
|
835
|
+
type: null
|
|
836
|
+
});
|
|
837
|
+
},
|
|
838
|
+
|
|
839
|
+
get func() {
|
|
840
|
+
return (0, _utils.toType)('function', {
|
|
841
|
+
type: Function
|
|
842
|
+
}).def(currentDefaults.func);
|
|
843
|
+
},
|
|
844
|
+
|
|
845
|
+
get bool() {
|
|
846
|
+
return (0, _utils.toType)('boolean', {
|
|
847
|
+
type: Boolean
|
|
848
|
+
}).def(currentDefaults.bool);
|
|
849
|
+
},
|
|
850
|
+
|
|
851
|
+
get string() {
|
|
852
|
+
return (0, _utils.toType)('string', {
|
|
853
|
+
type: String
|
|
854
|
+
}).def(currentDefaults.string);
|
|
855
|
+
},
|
|
856
|
+
|
|
857
|
+
get number() {
|
|
858
|
+
return (0, _utils.toType)('number', {
|
|
859
|
+
type: Number
|
|
860
|
+
}).def(currentDefaults.number);
|
|
861
|
+
},
|
|
862
|
+
|
|
863
|
+
get array() {
|
|
864
|
+
return (0, _utils.toType)('array', {
|
|
865
|
+
type: Array
|
|
866
|
+
}).def(currentDefaults.array);
|
|
867
|
+
},
|
|
868
|
+
|
|
869
|
+
get object() {
|
|
870
|
+
return (0, _utils.toType)('object', {
|
|
871
|
+
type: Object
|
|
872
|
+
}).def(currentDefaults.object);
|
|
873
|
+
},
|
|
874
|
+
|
|
875
|
+
get integer() {
|
|
876
|
+
return (0, _utils.toType)('integer', {
|
|
877
|
+
type: Number,
|
|
878
|
+
validator: function validator(value) {
|
|
879
|
+
return (0, _utils.isInteger)(value);
|
|
880
|
+
}
|
|
881
|
+
}).def(currentDefaults.integer);
|
|
882
|
+
},
|
|
883
|
+
|
|
884
|
+
get symbol() {
|
|
885
|
+
return (0, _utils.toType)('symbol', {
|
|
886
|
+
type: null,
|
|
887
|
+
validator: function validator(value) {
|
|
888
|
+
return typeof value === 'symbol';
|
|
889
|
+
}
|
|
890
|
+
});
|
|
891
|
+
},
|
|
892
|
+
|
|
893
|
+
custom: function custom(validatorFn, warnMsg) {
|
|
894
|
+
if (warnMsg === void 0) {
|
|
895
|
+
warnMsg = 'custom validation failed';
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
if (typeof validatorFn !== 'function') {
|
|
899
|
+
throw new TypeError('[VueTypes error]: You must provide a function as argument');
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
return (0, _utils.toType)(validatorFn.name || '<<anonymous function>>', {
|
|
903
|
+
validator: function validator() {
|
|
904
|
+
var valid = validatorFn.apply(void 0, arguments);
|
|
905
|
+
if (!valid) (0, _utils.warn)(this._vueTypes_name + " - " + warnMsg);
|
|
906
|
+
return valid;
|
|
907
|
+
}
|
|
908
|
+
});
|
|
909
|
+
},
|
|
910
|
+
oneOf: function oneOf(arr) {
|
|
911
|
+
if (!(0, _utils.isArray)(arr)) {
|
|
912
|
+
throw new TypeError('[VueTypes error]: You must provide an array as argument');
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
var msg = "oneOf - value should be one of \"" + arr.join('", "') + "\"";
|
|
916
|
+
var allowedTypes = arr.reduce(function (ret, v) {
|
|
917
|
+
if (v !== null && v !== undefined) {
|
|
918
|
+
ret.indexOf(v.constructor) === -1 && ret.push(v.constructor);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
return ret;
|
|
922
|
+
}, []);
|
|
923
|
+
return (0, _utils.toType)('oneOf', {
|
|
924
|
+
type: allowedTypes.length > 0 ? allowedTypes : null,
|
|
925
|
+
validator: function validator(value) {
|
|
926
|
+
var valid = arr.indexOf(value) !== -1;
|
|
927
|
+
if (!valid) (0, _utils.warn)(msg);
|
|
928
|
+
return valid;
|
|
929
|
+
}
|
|
930
|
+
});
|
|
931
|
+
},
|
|
932
|
+
instanceOf: function instanceOf(instanceConstructor) {
|
|
933
|
+
return (0, _utils.toType)('instanceOf', {
|
|
934
|
+
type: instanceConstructor
|
|
935
|
+
});
|
|
936
|
+
},
|
|
937
|
+
oneOfType: function oneOfType(arr) {
|
|
938
|
+
if (!(0, _utils.isArray)(arr)) {
|
|
939
|
+
throw new TypeError('[VueTypes error]: You must provide an array as argument');
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
var hasCustomValidators = false;
|
|
943
|
+
var nativeChecks = arr.reduce(function (ret, type) {
|
|
944
|
+
if ((0, _lodash.default)(type)) {
|
|
945
|
+
if (type._vueTypes_name === 'oneOf') {
|
|
946
|
+
return ret.concat(type.type || []);
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
if (type.type && !(0, _utils.isFunction)(type.validator)) {
|
|
950
|
+
if ((0, _utils.isArray)(type.type)) return ret.concat(type.type);
|
|
951
|
+
ret.push(type.type);
|
|
952
|
+
} else if ((0, _utils.isFunction)(type.validator)) {
|
|
953
|
+
hasCustomValidators = true;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
return ret;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
ret.push(type);
|
|
960
|
+
return ret;
|
|
961
|
+
}, []);
|
|
962
|
+
|
|
963
|
+
if (!hasCustomValidators) {
|
|
964
|
+
// we got just native objects (ie: Array, Object)
|
|
965
|
+
// delegate to Vue native prop check
|
|
966
|
+
return (0, _utils.toType)('oneOfType', {
|
|
967
|
+
type: nativeChecks
|
|
968
|
+
}).def(undefined);
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
var typesStr = arr.map(function (type) {
|
|
972
|
+
if (type && (0, _utils.isArray)(type.type)) {
|
|
973
|
+
return type.type.map(_utils.getType);
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
return (0, _utils.getType)(type);
|
|
977
|
+
}).reduce(function (ret, type) {
|
|
978
|
+
return ret.concat((0, _utils.isArray)(type) ? type : [type]);
|
|
979
|
+
}, []).join('", "');
|
|
980
|
+
return this.custom(function oneOfType(value) {
|
|
981
|
+
var valid = arr.some(function (type) {
|
|
982
|
+
if (type._vueTypes_name === 'oneOf') {
|
|
983
|
+
return type.type ? (0, _utils.validateType)(type.type, value, true) : true;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
return (0, _utils.validateType)(type, value, true);
|
|
987
|
+
});
|
|
988
|
+
if (!valid) (0, _utils.warn)("oneOfType - value type should be one of \"" + typesStr + "\"");
|
|
989
|
+
return valid;
|
|
990
|
+
}).def(undefined);
|
|
991
|
+
},
|
|
992
|
+
arrayOf: function arrayOf(type) {
|
|
993
|
+
return (0, _utils.toType)('arrayOf', {
|
|
994
|
+
type: Array,
|
|
995
|
+
validator: function validator(values) {
|
|
996
|
+
var valid = values.every(function (value) {
|
|
997
|
+
return (0, _utils.validateType)(type, value);
|
|
998
|
+
});
|
|
999
|
+
if (!valid) (0, _utils.warn)("arrayOf - value must be an array of \"" + (0, _utils.getType)(type) + "\"");
|
|
1000
|
+
return valid;
|
|
1001
|
+
}
|
|
1002
|
+
});
|
|
1003
|
+
},
|
|
1004
|
+
objectOf: function objectOf(type) {
|
|
1005
|
+
return (0, _utils.toType)('objectOf', {
|
|
1006
|
+
type: Object,
|
|
1007
|
+
validator: function validator(obj) {
|
|
1008
|
+
var valid = Object.keys(obj).every(function (key) {
|
|
1009
|
+
return (0, _utils.validateType)(type, obj[key]);
|
|
1010
|
+
});
|
|
1011
|
+
if (!valid) (0, _utils.warn)("objectOf - value must be an object of \"" + (0, _utils.getType)(type) + "\"");
|
|
1012
|
+
return valid;
|
|
1013
|
+
}
|
|
1014
|
+
});
|
|
1015
|
+
},
|
|
1016
|
+
shape: function shape(obj) {
|
|
1017
|
+
var keys = Object.keys(obj);
|
|
1018
|
+
var requiredKeys = keys.filter(function (key) {
|
|
1019
|
+
return obj[key] && obj[key].required === true;
|
|
1020
|
+
});
|
|
1021
|
+
var type = (0, _utils.toType)('shape', {
|
|
1022
|
+
type: Object,
|
|
1023
|
+
validator: function validator(value) {
|
|
1024
|
+
var _this = this;
|
|
1025
|
+
|
|
1026
|
+
if (!(0, _lodash.default)(value)) {
|
|
1027
|
+
return false;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
var valueKeys = Object.keys(value); // check for required keys (if any)
|
|
1031
|
+
|
|
1032
|
+
if (requiredKeys.length > 0 && requiredKeys.some(function (req) {
|
|
1033
|
+
return valueKeys.indexOf(req) === -1;
|
|
1034
|
+
})) {
|
|
1035
|
+
(0, _utils.warn)("shape - at least one of required properties \"" + requiredKeys.join('", "') + "\" is not present");
|
|
1036
|
+
return false;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
return valueKeys.every(function (key) {
|
|
1040
|
+
if (keys.indexOf(key) === -1) {
|
|
1041
|
+
if (_this._vueTypes_isLoose === true) return true;
|
|
1042
|
+
(0, _utils.warn)("shape - object is missing \"" + key + "\" property");
|
|
1043
|
+
return false;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
var type = obj[key];
|
|
1047
|
+
return (0, _utils.validateType)(type, value[key]);
|
|
1048
|
+
});
|
|
1049
|
+
}
|
|
1050
|
+
});
|
|
1051
|
+
Object.defineProperty(type, '_vueTypes_isLoose', {
|
|
1052
|
+
enumerable: false,
|
|
1053
|
+
writable: true,
|
|
1054
|
+
value: false
|
|
1055
|
+
});
|
|
1056
|
+
Object.defineProperty(type, 'loose', {
|
|
1057
|
+
get: function get() {
|
|
1058
|
+
this._vueTypes_isLoose = true;
|
|
1059
|
+
return this;
|
|
1060
|
+
},
|
|
1061
|
+
enumerable: false
|
|
1062
|
+
});
|
|
1063
|
+
return type;
|
|
1064
|
+
}
|
|
1065
|
+
};
|
|
1066
|
+
|
|
1067
|
+
var typeDefaults = function typeDefaults() {
|
|
1068
|
+
return {
|
|
1069
|
+
func: undefined,
|
|
1070
|
+
bool: undefined,
|
|
1071
|
+
string: undefined,
|
|
1072
|
+
number: undefined,
|
|
1073
|
+
array: undefined,
|
|
1074
|
+
object: undefined,
|
|
1075
|
+
integer: undefined
|
|
1076
|
+
};
|
|
1077
|
+
};
|
|
1078
|
+
|
|
1079
|
+
var currentDefaults = typeDefaults();
|
|
1080
|
+
Object.defineProperty(VuePropTypes, 'sensibleDefaults', {
|
|
1081
|
+
enumerable: false,
|
|
1082
|
+
set: function set(value) {
|
|
1083
|
+
if (value === false) {
|
|
1084
|
+
currentDefaults = {};
|
|
1085
|
+
} else if (value === true) {
|
|
1086
|
+
currentDefaults = typeDefaults();
|
|
1087
|
+
} else if ((0, _lodash.default)(value)) {
|
|
1088
|
+
currentDefaults = value;
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
get: function get() {
|
|
1092
|
+
return currentDefaults;
|
|
1093
|
+
}
|
|
1094
|
+
});
|
|
1095
|
+
|
|
1096
|
+
var _default = exports.default = VuePropTypes;
|
|
1097
|
+
|
|
1098
|
+
/***/ }),
|
|
1099
|
+
|
|
1100
|
+
/***/ 50:
|
|
1101
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1102
|
+
|
|
1103
|
+
"use strict";
|
|
1104
|
+
__webpack_require__.r(__webpack_exports__);
|
|
1105
|
+
/* harmony import */ var _BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(39);
|
|
1106
|
+
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
|
|
1107
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
1108
|
+
var render, staticRenderFns
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
/* normalize component */
|
|
1114
|
+
|
|
1115
|
+
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(
|
|
1116
|
+
_BaseMixin_vue_vue_type_script_lang_ts___WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
1117
|
+
render,
|
|
1118
|
+
staticRenderFns,
|
|
1119
|
+
false,
|
|
1120
|
+
null,
|
|
1121
|
+
null,
|
|
1122
|
+
null
|
|
1123
|
+
|
|
1124
|
+
)
|
|
1125
|
+
|
|
1126
|
+
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
|
1127
|
+
|
|
1128
|
+
/***/ }),
|
|
1129
|
+
|
|
1130
|
+
/***/ 64:
|
|
1131
|
+
/***/ (function(module, exports) {
|
|
1132
|
+
|
|
1133
|
+
module.exports = require("ant-design-vue/es/input/inputProps");
|
|
1134
|
+
|
|
1135
|
+
/***/ }),
|
|
1136
|
+
|
|
1137
|
+
/***/ 7:
|
|
1138
|
+
/***/ (function(module, exports) {
|
|
1139
|
+
|
|
1140
|
+
module.exports = require("lodash.isplainobject");
|
|
1141
|
+
|
|
1142
|
+
/***/ }),
|
|
1143
|
+
|
|
1144
|
+
/***/ 8:
|
|
1145
|
+
/***/ (function(module, exports) {
|
|
1146
|
+
|
|
1147
|
+
module.exports = require("@supermapgis/vue-iclient-leaflet/lib/_utils/vue-types/utils.js");
|
|
1148
|
+
|
|
1149
|
+
/***/ })
|
|
1150
|
+
|
|
1151
|
+
/******/ });
|