bbj-screen-widget 2.4.46 → 2.4.48
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/bbj-screen-widget.d.ts +117 -0
- package/bbj-screen-widget.metadata.json +1 -0
- package/bundles/bbj-screen-widget-core.umd.js +606 -0
- package/bundles/bbj-screen-widget-core.umd.js.map +1 -0
- package/bundles/bbj-screen-widget-core.umd.min.js +2 -0
- package/bundles/bbj-screen-widget-core.umd.min.js.map +1 -0
- package/bundles/bbj-screen-widget.umd.js +21311 -0
- package/bundles/bbj-screen-widget.umd.js.map +1 -0
- package/bundles/bbj-screen-widget.umd.min.js +2 -0
- package/bundles/bbj-screen-widget.umd.min.js.map +1 -0
- package/core/bbj-screen-widget-core.d.ts +4 -0
- package/core/bbj-screen-widget-core.metadata.json +1 -0
- package/core/package.json +10 -2
- package/core/service/baidu-map.service.d.ts +16 -0
- package/esm2015/bbj-screen-widget.js +118 -0
- package/esm2015/core/bbj-screen-widget-core.js +5 -0
- package/esm2015/core/public_api.js +2 -0
- package/esm2015/core/service/baidu-map.service.js +101 -0
- package/esm2015/lib/announcement/announcement.component.js +80 -0
- package/esm2015/lib/announcement/announcement.module.js +25 -0
- package/esm2015/lib/audio/audio.component.js +167 -0
- package/esm2015/lib/audio/audio.module.js +20 -0
- package/esm2015/lib/background/background.component.js +52 -0
- package/esm2015/lib/background/background.module.js +19 -0
- package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.component.js +323 -0
- package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.module.js +20 -0
- package/esm2015/lib/basic-bar-chart/basic-bar-chart.component.js +604 -0
- package/esm2015/lib/basic-bar-chart/basic-bar-chart.module.js +27 -0
- package/esm2015/lib/basic-line-chart/basic-line-chart.component.js +782 -0
- package/esm2015/lib/basic-line-chart/basic-line-chart.module.js +20 -0
- package/esm2015/lib/basic-pie-chart/basic-pie-chart.component.js +471 -0
- package/esm2015/lib/basic-pie-chart/basic-pie-chart.module.js +20 -0
- package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.component.js +233 -0
- package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.module.js +21 -0
- package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.component.js +503 -0
- package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.module.js +19 -0
- package/esm2015/lib/bubble-chart/bubble-chart.component.js +348 -0
- package/esm2015/lib/bubble-chart/bubble-chart.module.js +20 -0
- package/esm2015/lib/bulletin-board/bulletin-board.component.js +160 -0
- package/esm2015/lib/bulletin-board/bulletin-board.module.js +23 -0
- package/esm2015/lib/button/button.component.js +186 -0
- package/esm2015/lib/button/button.module.js +21 -0
- package/esm2015/lib/calendar/calendar.component.js +96 -0
- package/esm2015/lib/calendar/calendar.module.js +28 -0
- package/esm2015/lib/checkbox/checkbox.component.js +333 -0
- package/esm2015/lib/checkbox/checkbox.module.js +21 -0
- package/esm2015/lib/cross-table/cross-table.component.js +291 -0
- package/esm2015/lib/cross-table/cross-table.module.js +20 -0
- package/esm2015/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.js +685 -0
- package/esm2015/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.js +278 -0
- package/esm2015/lib/custom-baidu-map/base-layer.js +53 -0
- package/esm2015/lib/custom-baidu-map/custom-baidu-map.component.js +665 -0
- package/esm2015/lib/custom-baidu-map/custom-baidu-map.module.js +46 -0
- package/esm2015/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.js +116 -0
- package/esm2015/lib/custom-baidu-map/wind-layer/wind-layer.component.js +331 -0
- package/esm2015/lib/date-picker/date-picker.component.js +447 -0
- package/esm2015/lib/date-picker/date-picker.module.js +22 -0
- package/esm2015/lib/funnel-chart/funnel-chart.component.js +241 -0
- package/esm2015/lib/funnel-chart/funnel-chart.module.js +20 -0
- package/esm2015/lib/gantt/gantt.component.js +222 -0
- package/esm2015/lib/gantt/gantt.module.js +39 -0
- package/esm2015/lib/gauge/gauge.component.js +324 -0
- package/esm2015/lib/gauge/gauge.module.js +20 -0
- package/esm2015/lib/gauge-progress/gauge-progress.component.js +348 -0
- package/esm2015/lib/gauge-progress/gauge.module.js +21 -0
- package/esm2015/lib/general-text/general-text.component.js +144 -0
- package/esm2015/lib/general-text/general-text.module.js +20 -0
- package/esm2015/lib/iconfont/icon.js +199 -0
- package/esm2015/lib/iconfont/iconfont.component.js +56 -0
- package/esm2015/lib/iconfont/iconfont.module.js +20 -0
- package/esm2015/lib/iframe/iframe.component.js +46 -0
- package/esm2015/lib/iframe/iframe.module.js +20 -0
- package/esm2015/lib/image/image.component.js +98 -0
- package/esm2015/lib/image/image.module.js +19 -0
- package/esm2015/lib/item-swiper/item-swiper.component.js +334 -0
- package/esm2015/lib/item-swiper/item-swiper.module.js +28 -0
- package/esm2015/lib/line-bar-chart/line-bar-chart.component.js +398 -0
- package/esm2015/lib/line-bar-chart/line-bar-chart.module.js +20 -0
- package/esm2015/lib/line-light-flow/line-light-flow.component.js +241 -0
- package/esm2015/lib/line-light-flow/line-light-flow.module.js +24 -0
- package/esm2015/lib/liquid-fill/liquid-fill.component.js +158 -0
- package/esm2015/lib/liquid-fill/liquid-fill.module.js +20 -0
- package/esm2015/lib/marquee/marquee.component.js +110 -0
- package/esm2015/lib/marquee/marquee.module.js +19 -0
- package/esm2015/lib/mip-anim/mip-anim.component.js +26 -0
- package/esm2015/lib/mip-anim/mip-anim.module.js +19 -0
- package/esm2015/lib/multi-title-gauge/multi-title-gauge.component.js +277 -0
- package/esm2015/lib/multi-title-gauge/multi-title-gauge.module.js +22 -0
- package/esm2015/lib/number-flop/number-flop.component.js +124 -0
- package/esm2015/lib/number-flop/number-flop.module.js +19 -0
- package/esm2015/lib/parent-container/parent-container.component.js +21 -0
- package/esm2015/lib/parent-container/parent-container.module.js +19 -0
- package/esm2015/lib/percent-pie-chart/percent-pie-chart.component.js +248 -0
- package/esm2015/lib/percent-pie-chart/percent-pie-chart.module.js +20 -0
- package/esm2015/lib/pie3d-chart/pie3d-chart.component.js +303 -0
- package/esm2015/lib/pie3d-chart/pie3d-chart.module.js +19 -0
- package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.js +431 -0
- package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.js +19 -0
- package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.js +252 -0
- package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.js +19 -0
- package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.js +124 -0
- package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.js +19 -0
- package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.js +359 -0
- package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.js +21 -0
- package/esm2015/lib/planimetric-map2d/planimetric-map2d.component.js +712 -0
- package/esm2015/lib/planimetric-map2d/planimetric-map2d.module.js +34 -0
- package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.js +128 -0
- package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.js +19 -0
- package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.js +242 -0
- package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.js +19 -0
- package/esm2015/lib/planimetric-map3d/planimetric-map3d.component.js +265 -0
- package/esm2015/lib/planimetric-map3d/planimetric-map3d.module.js +22 -0
- package/esm2015/lib/radar-chart/radar-chart.component.js +236 -0
- package/esm2015/lib/radar-chart/radar-chart.module.js +20 -0
- package/esm2015/lib/radio/radio.component.js +148 -0
- package/esm2015/lib/radio/radio.module.js +21 -0
- package/esm2015/lib/rate/rate.component.js +57 -0
- package/esm2015/lib/rate/rate.module.js +23 -0
- package/esm2015/lib/scatter3d/scatter3d.component.js +166 -0
- package/esm2015/lib/scatter3d/scatter3d.module.js +20 -0
- package/esm2015/lib/screen-widget.module.js +536 -0
- package/esm2015/lib/search/search.component.js +130 -0
- package/esm2015/lib/search/search.module.js +29 -0
- package/esm2015/lib/select/select.component.js +343 -0
- package/esm2015/lib/select/select.module.js +21 -0
- package/esm2015/lib/shape/shape.component.js +248 -0
- package/esm2015/lib/shape/shape.module.js +19 -0
- package/esm2015/lib/shared/component/video-player/video-player.component.js +114 -0
- package/esm2015/lib/shared/component/video-player/video-player.module.js +14 -0
- package/esm2015/lib/shared/service/common.service.js +39 -0
- package/esm2015/lib/shared/service/file-url.service.js +12 -0
- package/esm2015/lib/shared/service/gaode-map.service.js +36 -0
- package/esm2015/lib/shared/service/highcharts.service.js +36 -0
- package/esm2015/lib/shared/service/http.service.js +20 -0
- package/esm2015/lib/shared/util/base.util.js +5 -0
- package/esm2015/lib/shared/util/echarts.util.js +12 -0
- package/esm2015/lib/shared/util/style.util.js +19 -0
- package/esm2015/lib/shuffling-list/color.pipe.js +23 -0
- package/esm2015/lib/shuffling-list/shuffling-list.component.js +600 -0
- package/esm2015/lib/shuffling-list/shuffling-list.module.js +22 -0
- package/esm2015/lib/table/table.component.js +657 -0
- package/esm2015/lib/table/table.module.js +38 -0
- package/esm2015/lib/tabs/tab/tab.component.js +27 -0
- package/esm2015/lib/tabs/tabs.component.js +85 -0
- package/esm2015/lib/tabs/tabs.module.js +22 -0
- package/esm2015/lib/temporary-data/temporary-data.component.js +49 -0
- package/esm2015/lib/temporary-data/temporary-data.module.js +20 -0
- package/esm2015/lib/time-picker/time-picker.component.js +112 -0
- package/esm2015/lib/time-picker/time-picker.module.js +21 -0
- package/esm2015/lib/timer/timer.component.js +108 -0
- package/esm2015/lib/timer/timer.module.js +20 -0
- package/esm2015/lib/tree-control/tree-control.component.js +435 -0
- package/esm2015/lib/tree-control/tree-control.module.js +24 -0
- package/esm2015/lib/tree-ring-chart/tree-ring-chart.component.js +215 -0
- package/esm2015/lib/tree-ring-chart/tree-ring-chart.module.js +20 -0
- package/esm2015/lib/upload/upload.component.js +127 -0
- package/esm2015/lib/upload/upload.module.js +22 -0
- package/esm2015/lib/video-grid/video-grid.component.js +133 -0
- package/esm2015/lib/video-grid/video-grid.module.js +22 -0
- package/esm2015/lib/visual-map-chart/visual-map-chart.component.js +395 -0
- package/esm2015/lib/visual-map-chart/visual-map-chart.module.js +20 -0
- package/esm2015/lib/vote/vote.component.js +100 -0
- package/esm2015/lib/vote/vote.module.js +21 -0
- package/esm2015/lib/weather/weather.component.js +92 -0
- package/esm2015/lib/weather/weather.module.js +21 -0
- package/esm2015/lib/wordart/wordart.component.js +84 -0
- package/esm2015/lib/wordart/wordart.module.js +19 -0
- package/esm2015/lib/workbench-widget.module.js +620 -0
- package/esm2015/public-api.js +39 -0
- package/fesm2015/bbj-screen-widget-core.js +107 -0
- package/fesm2015/bbj-screen-widget-core.js.map +1 -0
- package/fesm2015/bbj-screen-widget.js +20232 -0
- package/fesm2015/bbj-screen-widget.js.map +1 -0
- package/lib/announcement/announcement.component.d.ts +13 -0
- package/lib/announcement/announcement.module.d.ts +5 -0
- package/lib/audio/audio.component.d.ts +22 -0
- package/lib/audio/audio.module.d.ts +4 -0
- package/lib/background/background.component.d.ts +12 -0
- package/lib/background/background.module.d.ts +4 -0
- package/lib/bar-chart-three-d/bar-chart-three-d.component.d.ts +30 -0
- package/lib/bar-chart-three-d/bar-chart-three-d.module.d.ts +4 -0
- package/lib/basic-bar-chart/basic-bar-chart.component.d.ts +105 -0
- package/lib/basic-bar-chart/basic-bar-chart.module.d.ts +5 -0
- package/lib/basic-line-chart/basic-line-chart.component.d.ts +102 -0
- package/lib/basic-line-chart/basic-line-chart.module.d.ts +4 -0
- package/lib/basic-pie-chart/basic-pie-chart.component.d.ts +56 -0
- package/lib/basic-pie-chart/basic-pie-chart.module.d.ts +4 -0
- package/lib/basic-planimetric-map/basic-planimetric-map.component.d.ts +18 -0
- package/lib/basic-planimetric-map/basic-planimetric-map.module.d.ts +4 -0
- package/lib/breathing-bubble-layer/breathing-bubble-layer.component.d.ts +210 -0
- package/lib/breathing-bubble-layer/breathing-bubble-layer.module.d.ts +4 -0
- package/lib/bubble-chart/bubble-chart.component.d.ts +75 -0
- package/lib/bubble-chart/bubble-chart.module.d.ts +4 -0
- package/lib/bulletin-board/bulletin-board.component.d.ts +25 -0
- package/lib/bulletin-board/bulletin-board.module.d.ts +4 -0
- package/lib/button/button.component.d.ts +25 -0
- package/lib/button/button.module.d.ts +4 -0
- package/lib/calendar/calendar.component.d.ts +14 -0
- package/lib/calendar/calendar.module.d.ts +4 -0
- package/lib/checkbox/checkbox.component.d.ts +45 -0
- package/lib/checkbox/checkbox.module.d.ts +4 -0
- package/lib/cross-table/cross-table.component.d.ts +30 -0
- package/lib/cross-table/cross-table.module.d.ts +4 -0
- package/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.d.ts +67 -0
- package/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.d.ts +23 -0
- package/lib/custom-baidu-map/base-layer.d.ts +16 -0
- package/lib/custom-baidu-map/custom-baidu-map.component.d.ts +92 -0
- package/lib/custom-baidu-map/custom-baidu-map.module.d.ts +4 -0
- package/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.d.ts +16 -0
- package/lib/custom-baidu-map/wind-layer/wind-layer.component.d.ts +28 -0
- package/lib/date-picker/date-picker.component.d.ts +63 -0
- package/lib/date-picker/date-picker.module.d.ts +4 -0
- package/lib/funnel-chart/funnel-chart.component.d.ts +24 -0
- package/lib/funnel-chart/funnel-chart.module.d.ts +4 -0
- package/lib/gantt/gantt.component.d.ts +25 -0
- package/lib/gantt/gantt.module.d.ts +4 -0
- package/lib/gauge/gauge.component.d.ts +37 -0
- package/lib/gauge/gauge.module.d.ts +4 -0
- package/lib/gauge-progress/gauge-progress.component.d.ts +46 -0
- package/lib/gauge-progress/gauge.module.d.ts +4 -0
- package/lib/general-text/general-text.component.d.ts +21 -0
- package/lib/general-text/general-text.module.d.ts +4 -0
- package/lib/iconfont/icon.d.ts +1 -0
- package/lib/iconfont/iconfont.component.d.ts +11 -0
- package/lib/iconfont/iconfont.module.d.ts +4 -0
- package/lib/iframe/iframe.component.d.ts +10 -0
- package/lib/iframe/iframe.module.d.ts +4 -0
- package/lib/image/image.component.d.ts +21 -0
- package/lib/image/image.module.d.ts +4 -0
- package/lib/item-swiper/item-swiper.component.d.ts +41 -0
- package/lib/item-swiper/item-swiper.module.d.ts +4 -0
- package/lib/line-bar-chart/line-bar-chart.component.d.ts +63 -0
- package/lib/line-bar-chart/line-bar-chart.module.d.ts +4 -0
- package/lib/line-light-flow/line-light-flow.component.d.ts +26 -0
- package/lib/line-light-flow/line-light-flow.module.d.ts +4 -0
- package/lib/liquid-fill/liquid-fill.component.d.ts +18 -0
- package/lib/liquid-fill/liquid-fill.module.d.ts +4 -0
- package/lib/marquee/marquee.component.d.ts +20 -0
- package/lib/marquee/marquee.module.d.ts +4 -0
- package/lib/mip-anim/mip-anim.component.d.ts +6 -0
- package/lib/mip-anim/mip-anim.module.d.ts +4 -0
- package/lib/multi-title-gauge/multi-title-gauge.component.d.ts +26 -0
- package/lib/multi-title-gauge/multi-title-gauge.module.d.ts +4 -0
- package/lib/number-flop/number-flop.component.d.ts +22 -0
- package/lib/number-flop/number-flop.module.d.ts +4 -0
- package/lib/parent-container/parent-container.component.d.ts +9 -0
- package/lib/parent-container/parent-container.module.d.ts +4 -0
- package/lib/percent-pie-chart/percent-pie-chart.component.d.ts +24 -0
- package/lib/percent-pie-chart/percent-pie-chart.module.d.ts +4 -0
- package/lib/pie3d-chart/pie3d-chart.component.d.ts +30 -0
- package/lib/pie3d-chart/pie3d-chart.module.d.ts +4 -0
- package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.d.ts +206 -0
- package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.d.ts +4 -0
- package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.d.ts +15 -0
- package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.d.ts +4 -0
- package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.d.ts +15 -0
- package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.d.ts +4 -0
- package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.d.ts +49 -0
- package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.d.ts +4 -0
- package/lib/planimetric-map2d/planimetric-map2d.component.d.ts +48 -0
- package/lib/planimetric-map2d/planimetric-map2d.module.d.ts +4 -0
- package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.d.ts +14 -0
- package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.d.ts +4 -0
- package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.d.ts +41 -0
- package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.d.ts +4 -0
- package/lib/planimetric-map3d/planimetric-map3d.component.d.ts +29 -0
- package/lib/planimetric-map3d/planimetric-map3d.module.d.ts +4 -0
- package/lib/radar-chart/radar-chart.component.d.ts +23 -0
- package/lib/radar-chart/radar-chart.module.d.ts +4 -0
- package/lib/radio/radio.component.d.ts +21 -0
- package/lib/radio/radio.module.d.ts +4 -0
- package/lib/rate/rate.component.d.ts +13 -0
- package/lib/rate/rate.module.d.ts +4 -0
- package/lib/scatter3d/scatter3d.component.d.ts +25 -0
- package/lib/scatter3d/scatter3d.module.d.ts +4 -0
- package/lib/screen-widget.module.d.ts +4 -0
- package/lib/search/search.component.d.ts +21 -0
- package/lib/search/search.module.d.ts +6 -0
- package/lib/select/select.component.d.ts +34 -0
- package/lib/select/select.module.d.ts +4 -0
- package/lib/shape/shape.component.d.ts +50 -0
- package/lib/shape/shape.module.d.ts +4 -0
- package/lib/shared/component/video-player/video-player.component.d.ts +28 -0
- package/lib/shared/component/video-player/video-player.module.d.ts +2 -0
- package/lib/shared/service/common.service.d.ts +21 -0
- package/lib/shared/service/file-url.service.d.ts +3 -0
- package/lib/shared/service/gaode-map.service.d.ts +10 -0
- package/lib/shared/service/highcharts.service.d.ts +9 -0
- package/lib/shared/service/http.service.d.ts +7 -0
- package/lib/shared/util/base.util.d.ts +1 -0
- package/lib/shared/util/echarts.util.d.ts +1 -0
- package/lib/shared/util/style.util.d.ts +1 -0
- package/lib/shuffling-list/color.pipe.d.ts +4 -0
- package/lib/shuffling-list/shuffling-list.component.d.ts +76 -0
- package/lib/shuffling-list/shuffling-list.module.d.ts +4 -0
- package/lib/table/table.component.d.ts +65 -0
- package/lib/table/table.module.d.ts +4 -0
- package/lib/tabs/tab/tab.component.d.ts +7 -0
- package/lib/tabs/tabs.component.d.ts +13 -0
- package/lib/tabs/tabs.module.d.ts +4 -0
- package/lib/temporary-data/temporary-data.component.d.ts +13 -0
- package/lib/temporary-data/temporary-data.module.d.ts +4 -0
- package/lib/time-picker/time-picker.component.d.ts +17 -0
- package/lib/time-picker/time-picker.module.d.ts +4 -0
- package/lib/timer/timer.component.d.ts +21 -0
- package/lib/timer/timer.module.d.ts +4 -0
- package/lib/tree-control/tree-control.component.d.ts +62 -0
- package/lib/tree-control/tree-control.module.d.ts +4 -0
- package/lib/tree-ring-chart/tree-ring-chart.component.d.ts +24 -0
- package/lib/tree-ring-chart/tree-ring-chart.module.d.ts +4 -0
- package/lib/upload/upload.component.d.ts +21 -0
- package/lib/upload/upload.module.d.ts +4 -0
- package/lib/video-grid/video-grid.component.d.ts +23 -0
- package/lib/video-grid/video-grid.module.d.ts +4 -0
- package/lib/visual-map-chart/visual-map-chart.component.d.ts +49 -0
- package/lib/visual-map-chart/visual-map-chart.module.d.ts +4 -0
- package/lib/vote/vote.component.d.ts +15 -0
- package/lib/vote/vote.module.d.ts +4 -0
- package/lib/weather/weather.component.d.ts +26 -0
- package/lib/weather/weather.module.d.ts +4 -0
- package/lib/wordart/wordart.component.d.ts +14 -0
- package/lib/wordart/wordart.module.d.ts +4 -0
- package/lib/workbench-widget.module.d.ts +4 -0
- package/package.json +13 -4
- package/{src/public-api.ts → public-api.d.ts} +34 -46
- package/core/src/service/baidu-map.service.ts +0 -107
- package/karma.conf.js +0 -32
- package/ng-package.json +0 -59
- package/src/lib/announcement/announcement.component.html +0 -3
- package/src/lib/announcement/announcement.component.less +0 -5
- package/src/lib/announcement/announcement.component.spec.ts +0 -25
- package/src/lib/announcement/announcement.component.ts +0 -55
- package/src/lib/announcement/announcement.module.ts +0 -19
- package/src/lib/audio/audio.component.html +0 -6
- package/src/lib/audio/audio.component.less +0 -12
- package/src/lib/audio/audio.component.spec.ts +0 -25
- package/src/lib/audio/audio.component.ts +0 -167
- package/src/lib/audio/audio.module.ts +0 -15
- package/src/lib/background/background.component.html +0 -1
- package/src/lib/background/background.component.less +0 -6
- package/src/lib/background/background.component.spec.ts +0 -25
- package/src/lib/background/background.component.ts +0 -33
- package/src/lib/background/background.module.ts +0 -14
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.html +0 -1
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.less +0 -8
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.spec.ts +0 -25
- package/src/lib/bar-chart-three-d/bar-chart-three-d.component.ts +0 -271
- package/src/lib/bar-chart-three-d/bar-chart-three-d.module.ts +0 -15
- package/src/lib/basic-bar-chart/basic-bar-chart.component.html +0 -7
- package/src/lib/basic-bar-chart/basic-bar-chart.component.less +0 -5
- package/src/lib/basic-bar-chart/basic-bar-chart.component.spec.ts +0 -25
- package/src/lib/basic-bar-chart/basic-bar-chart.component.ts +0 -493
- package/src/lib/basic-bar-chart/basic-bar-chart.module.ts +0 -21
- package/src/lib/basic-line-chart/basic-line-chart.component.html +0 -7
- package/src/lib/basic-line-chart/basic-line-chart.component.less +0 -8
- package/src/lib/basic-line-chart/basic-line-chart.component.spec.ts +0 -25
- package/src/lib/basic-line-chart/basic-line-chart.component.ts +0 -654
- package/src/lib/basic-line-chart/basic-line-chart.module.ts +0 -15
- package/src/lib/basic-pie-chart/basic-pie-chart.component.html +0 -7
- package/src/lib/basic-pie-chart/basic-pie-chart.component.less +0 -8
- package/src/lib/basic-pie-chart/basic-pie-chart.component.spec.ts +0 -25
- package/src/lib/basic-pie-chart/basic-pie-chart.component.ts +0 -439
- package/src/lib/basic-pie-chart/basic-pie-chart.module.ts +0 -15
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.html +0 -2
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.less +0 -9
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.spec.ts +0 -25
- package/src/lib/basic-planimetric-map/basic-planimetric-map.component.ts +0 -211
- package/src/lib/basic-planimetric-map/basic-planimetric-map.module.ts +0 -16
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.css +0 -0
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.html +0 -1
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.spec.ts +0 -25
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.component.ts +0 -487
- package/src/lib/breathing-bubble-layer/breathing-bubble-layer.module.ts +0 -14
- package/src/lib/bubble-chart/bubble-chart.component.html +0 -7
- package/src/lib/bubble-chart/bubble-chart.component.less +0 -8
- package/src/lib/bubble-chart/bubble-chart.component.spec.ts +0 -25
- package/src/lib/bubble-chart/bubble-chart.component.ts +0 -307
- package/src/lib/bubble-chart/bubble-chart.module.ts +0 -15
- package/src/lib/bulletin-board/bulletin-board.component.html +0 -15
- package/src/lib/bulletin-board/bulletin-board.component.less +0 -27
- package/src/lib/bulletin-board/bulletin-board.component.spec.ts +0 -25
- package/src/lib/bulletin-board/bulletin-board.component.ts +0 -127
- package/src/lib/bulletin-board/bulletin-board.module.ts +0 -20
- package/src/lib/button/button.component.html +0 -1
- package/src/lib/button/button.component.less +0 -17
- package/src/lib/button/button.component.spec.ts +0 -25
- package/src/lib/button/button.component.ts +0 -137
- package/src/lib/button/button.module.ts +0 -16
- package/src/lib/calendar/calendar.component.html +0 -1
- package/src/lib/calendar/calendar.component.less +0 -14
- package/src/lib/calendar/calendar.component.spec.ts +0 -25
- package/src/lib/calendar/calendar.component.ts +0 -75
- package/src/lib/calendar/calendar.module.ts +0 -23
- package/src/lib/checkbox/checkbox.component.html +0 -61
- package/src/lib/checkbox/checkbox.component.less +0 -104
- package/src/lib/checkbox/checkbox.component.spec.ts +0 -25
- package/src/lib/checkbox/checkbox.component.ts +0 -292
- package/src/lib/checkbox/checkbox.module.ts +0 -16
- package/src/lib/cross-table/cross-table.component.html +0 -16
- package/src/lib/cross-table/cross-table.component.less +0 -75
- package/src/lib/cross-table/cross-table.component.spec.ts +0 -25
- package/src/lib/cross-table/cross-table.component.ts +0 -257
- package/src/lib/cross-table/cross-table.module.ts +0 -18
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.html +0 -32
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.less +0 -11
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.spec.ts +0 -25
- package/src/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.ts +0 -638
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.html +0 -0
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.less +0 -0
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.spec.ts +0 -25
- package/src/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.ts +0 -248
- package/src/lib/custom-baidu-map/base-layer.ts +0 -50
- package/src/lib/custom-baidu-map/custom-baidu-map.component.html +0 -15
- package/src/lib/custom-baidu-map/custom-baidu-map.component.less +0 -68
- package/src/lib/custom-baidu-map/custom-baidu-map.component.spec.ts +0 -25
- package/src/lib/custom-baidu-map/custom-baidu-map.component.ts +0 -636
- package/src/lib/custom-baidu-map/custom-baidu-map.module.ts +0 -41
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.html +0 -0
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.less +0 -0
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.spec.ts +0 -25
- package/src/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.ts +0 -99
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.html +0 -0
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.less +0 -0
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.spec.ts +0 -25
- package/src/lib/custom-baidu-map/wind-layer/wind-layer.component.ts +0 -404
- package/src/lib/data-map/data-map.component.html +0 -9
- package/src/lib/data-map/data-map.component.less +0 -0
- package/src/lib/data-map/data-map.component.spec.ts +0 -25
- package/src/lib/data-map/data-map.component.ts +0 -105
- package/src/lib/data-map/data-map.module.ts +0 -15
- package/src/lib/date-picker/date-picker.component.html +0 -32
- package/src/lib/date-picker/date-picker.component.less +0 -20
- package/src/lib/date-picker/date-picker.component.spec.ts +0 -25
- package/src/lib/date-picker/date-picker.component.ts +0 -389
- package/src/lib/date-picker/date-picker.module.ts +0 -18
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.html +0 -25
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.less +0 -35
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.spec.ts +0 -25
- package/src/lib/drop-down-detail-list/drop-down-detail-list.component.ts +0 -117
- package/src/lib/drop-down-detail-list/drop-down-detail-list.module.ts +0 -15
- package/src/lib/dynamic-list/dynamic-list.component.html +0 -15
- package/src/lib/dynamic-list/dynamic-list.component.less +0 -31
- package/src/lib/dynamic-list/dynamic-list.component.spec.ts +0 -25
- package/src/lib/dynamic-list/dynamic-list.component.ts +0 -57
- package/src/lib/dynamic-list/dynamic-list.module.ts +0 -15
- package/src/lib/funnel-chart/funnel-chart.component.html +0 -7
- package/src/lib/funnel-chart/funnel-chart.component.less +0 -8
- package/src/lib/funnel-chart/funnel-chart.component.spec.ts +0 -25
- package/src/lib/funnel-chart/funnel-chart.component.ts +0 -198
- package/src/lib/funnel-chart/funnel-chart.module.ts +0 -15
- package/src/lib/gantt/gantt.component.html +0 -10
- package/src/lib/gantt/gantt.component.less +0 -76
- package/src/lib/gantt/gantt.component.spec.ts +0 -25
- package/src/lib/gantt/gantt.component.ts +0 -213
- package/src/lib/gantt/gantt.module.ts +0 -37
- package/src/lib/gauge/gauge.component.html +0 -1
- package/src/lib/gauge/gauge.component.less +0 -8
- package/src/lib/gauge/gauge.component.spec.ts +0 -25
- package/src/lib/gauge/gauge.component.ts +0 -268
- package/src/lib/gauge/gauge.module.ts +0 -15
- package/src/lib/gauge-progress/gauge-progress.component.html +0 -29
- package/src/lib/gauge-progress/gauge-progress.component.less +0 -51
- package/src/lib/gauge-progress/gauge-progress.component.ts +0 -288
- package/src/lib/gauge-progress/gauge.module.ts +0 -16
- package/src/lib/general-text/general-text.component.html +0 -7
- package/src/lib/general-text/general-text.component.less +0 -8
- package/src/lib/general-text/general-text.component.spec.ts +0 -25
- package/src/lib/general-text/general-text.component.ts +0 -114
- package/src/lib/general-text/general-text.module.ts +0 -15
- package/src/lib/iconfont/icon.ts +0 -198
- package/src/lib/iconfont/iconfont.component.html +0 -4
- package/src/lib/iconfont/iconfont.component.less +0 -5
- package/src/lib/iconfont/iconfont.component.spec.ts +0 -25
- package/src/lib/iconfont/iconfont.component.ts +0 -42
- package/src/lib/iconfont/iconfont.module.ts +0 -15
- package/src/lib/iframe/iframe.component.html +0 -1
- package/src/lib/iframe/iframe.component.less +0 -13
- package/src/lib/iframe/iframe.component.spec.ts +0 -25
- package/src/lib/iframe/iframe.component.ts +0 -34
- package/src/lib/iframe/iframe.module.ts +0 -15
- package/src/lib/image/image.component.html +0 -2
- package/src/lib/image/image.component.less +0 -13
- package/src/lib/image/image.component.spec.ts +0 -25
- package/src/lib/image/image.component.ts +0 -79
- package/src/lib/image/image.module.ts +0 -14
- package/src/lib/item-swiper/item-swiper.component.html +0 -48
- package/src/lib/item-swiper/item-swiper.component.less +0 -75
- package/src/lib/item-swiper/item-swiper.component.spec.ts +0 -25
- package/src/lib/item-swiper/item-swiper.component.ts +0 -284
- package/src/lib/item-swiper/item-swiper.module.ts +0 -24
- package/src/lib/line-bar-chart/line-bar-chart.component.html +0 -7
- package/src/lib/line-bar-chart/line-bar-chart.component.less +0 -3
- package/src/lib/line-bar-chart/line-bar-chart.component.spec.ts +0 -25
- package/src/lib/line-bar-chart/line-bar-chart.component.ts +0 -346
- package/src/lib/line-bar-chart/line-bar-chart.module.ts +0 -15
- package/src/lib/line-light-flow/line-light-flow.component.css +0 -0
- package/src/lib/line-light-flow/line-light-flow.component.html +0 -3
- package/src/lib/line-light-flow/line-light-flow.component.spec.ts +0 -25
- package/src/lib/line-light-flow/line-light-flow.component.ts +0 -274
- package/src/lib/line-light-flow/line-light-flow.module.ts +0 -21
- package/src/lib/liquid-fill/liquid-fill.component.html +0 -1
- package/src/lib/liquid-fill/liquid-fill.component.less +0 -8
- package/src/lib/liquid-fill/liquid-fill.component.spec.ts +0 -25
- package/src/lib/liquid-fill/liquid-fill.component.ts +0 -127
- package/src/lib/liquid-fill/liquid-fill.module.ts +0 -15
- package/src/lib/marquee/marquee.component.html +0 -5
- package/src/lib/marquee/marquee.component.less +0 -9
- package/src/lib/marquee/marquee.component.spec.ts +0 -25
- package/src/lib/marquee/marquee.component.ts +0 -84
- package/src/lib/marquee/marquee.module.ts +0 -14
- package/src/lib/mip-anim/mip-anim.component.html +0 -1
- package/src/lib/mip-anim/mip-anim.component.less +0 -7
- package/src/lib/mip-anim/mip-anim.component.spec.ts +0 -25
- package/src/lib/mip-anim/mip-anim.component.ts +0 -18
- package/src/lib/mip-anim/mip-anim.module.ts +0 -14
- package/src/lib/multi-title-gauge/multi-title-gauge.component.html +0 -1
- package/src/lib/multi-title-gauge/multi-title-gauge.component.less +0 -9
- package/src/lib/multi-title-gauge/multi-title-gauge.component.spec.ts +0 -25
- package/src/lib/multi-title-gauge/multi-title-gauge.component.ts +0 -231
- package/src/lib/multi-title-gauge/multi-title-gauge.module.ts +0 -19
- package/src/lib/number-flop/number-flop.component.html +0 -31
- package/src/lib/number-flop/number-flop.component.less +0 -155
- package/src/lib/number-flop/number-flop.component.spec.ts +0 -25
- package/src/lib/number-flop/number-flop.component.ts +0 -96
- package/src/lib/number-flop/number-flop.module.ts +0 -14
- package/src/lib/parent-container/parent-container.component.html +0 -0
- package/src/lib/parent-container/parent-container.component.less +0 -0
- package/src/lib/parent-container/parent-container.component.spec.ts +0 -25
- package/src/lib/parent-container/parent-container.component.ts +0 -21
- package/src/lib/parent-container/parent-container.module.ts +0 -14
- package/src/lib/percent-pie-chart/percent-pie-chart.component.html +0 -8
- package/src/lib/percent-pie-chart/percent-pie-chart.component.less +0 -8
- package/src/lib/percent-pie-chart/percent-pie-chart.component.spec.ts +0 -25
- package/src/lib/percent-pie-chart/percent-pie-chart.component.ts +0 -213
- package/src/lib/percent-pie-chart/percent-pie-chart.module.ts +0 -15
- package/src/lib/pie3d-chart/pie3d-chart.component.html +0 -1
- package/src/lib/pie3d-chart/pie3d-chart.component.less +0 -9
- package/src/lib/pie3d-chart/pie3d-chart.component.spec.ts +0 -25
- package/src/lib/pie3d-chart/pie3d-chart.component.ts +0 -278
- package/src/lib/pie3d-chart/pie3d-chart.module.ts +0 -16
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.html +0 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.spec.ts +0 -25
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.ts +0 -411
- package/src/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.ts +0 -13
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.html +0 -1
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.spec.ts +0 -25
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.ts +0 -235
- package/src/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.ts +0 -16
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.html +0 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.spec.ts +0 -25
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.ts +0 -107
- package/src/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.ts +0 -17
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.html +0 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.less +0 -0
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.spec.ts +0 -25
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.ts +0 -337
- package/src/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.ts +0 -18
- package/src/lib/planimetric-map2d/planimetric-map2d.component.html +0 -3
- package/src/lib/planimetric-map2d/planimetric-map2d.component.less +0 -9
- package/src/lib/planimetric-map2d/planimetric-map2d.component.spec.ts +0 -25
- package/src/lib/planimetric-map2d/planimetric-map2d.component.ts +0 -649
- package/src/lib/planimetric-map2d/planimetric-map2d.module.ts +0 -29
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.html +0 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.less +0 -0
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.spec.ts +0 -25
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.ts +0 -123
- package/src/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.ts +0 -14
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.html +0 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.less +0 -0
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.spec.ts +0 -25
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.ts +0 -229
- package/src/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.ts +0 -14
- package/src/lib/planimetric-map3d/planimetric-map3d.component.html +0 -2
- package/src/lib/planimetric-map3d/planimetric-map3d.component.less +0 -10
- package/src/lib/planimetric-map3d/planimetric-map3d.component.spec.ts +0 -25
- package/src/lib/planimetric-map3d/planimetric-map3d.component.ts +0 -227
- package/src/lib/planimetric-map3d/planimetric-map3d.module.ts +0 -17
- package/src/lib/radar-chart/radar-chart.component.html +0 -7
- package/src/lib/radar-chart/radar-chart.component.less +0 -8
- package/src/lib/radar-chart/radar-chart.component.spec.ts +0 -25
- package/src/lib/radar-chart/radar-chart.component.ts +0 -203
- package/src/lib/radar-chart/radar-chart.module.ts +0 -15
- package/src/lib/radio/radio.component.html +0 -18
- package/src/lib/radio/radio.component.less +0 -61
- package/src/lib/radio/radio.component.spec.ts +0 -25
- package/src/lib/radio/radio.component.ts +0 -116
- package/src/lib/radio/radio.module.ts +0 -16
- package/src/lib/rate/rate.component.html +0 -16
- package/src/lib/rate/rate.component.less +0 -39
- package/src/lib/rate/rate.component.spec.ts +0 -25
- package/src/lib/rate/rate.component.ts +0 -40
- package/src/lib/rate/rate.module.ts +0 -18
- package/src/lib/scatter3d/scatter3d.component.html +0 -1
- package/src/lib/scatter3d/scatter3d.component.less +0 -8
- package/src/lib/scatter3d/scatter3d.component.spec.ts +0 -25
- package/src/lib/scatter3d/scatter3d.component.ts +0 -129
- package/src/lib/scatter3d/scatter3d.module.ts +0 -15
- package/src/lib/screen-widget.module.ts +0 -592
- package/src/lib/search/search.component.html +0 -30
- package/src/lib/search/search.component.less +0 -30
- package/src/lib/search/search.component.spec.ts +0 -25
- package/src/lib/search/search.component.ts +0 -103
- package/src/lib/search/search.module.ts +0 -22
- package/src/lib/select/select.component.html +0 -27
- package/src/lib/select/select.component.less +0 -112
- package/src/lib/select/select.component.spec.ts +0 -25
- package/src/lib/select/select.component.ts +0 -287
- package/src/lib/select/select.module.ts +0 -16
- package/src/lib/shape/shape.component.html +0 -39
- package/src/lib/shape/shape.component.less +0 -8
- package/src/lib/shape/shape.component.spec.ts +0 -25
- package/src/lib/shape/shape.component.ts +0 -207
- package/src/lib/shape/shape.module.ts +0 -14
- package/src/lib/shared/component/video-player/video-player.component.html +0 -2
- package/src/lib/shared/component/video-player/video-player.component.less +0 -15
- package/src/lib/shared/component/video-player/video-player.component.spec.ts +0 -25
- package/src/lib/shared/component/video-player/video-player.component.ts +0 -132
- package/src/lib/shared/component/video-player/video-player.module.ts +0 -11
- package/src/lib/shared/model/scale.token.ts +0 -8
- package/src/lib/shared/service/common.service.ts +0 -28
- package/src/lib/shared/service/file-url.service.ts +0 -8
- package/src/lib/shared/service/gaode-map.service.ts +0 -37
- package/src/lib/shared/service/highcharts.service.ts +0 -29
- package/src/lib/shared/service/http.service.ts +0 -15
- package/src/lib/shared/util/base.util.ts +0 -4
- package/src/lib/shared/util/echarts.util.ts +0 -11
- package/src/lib/shared/util/style.util.ts +0 -12
- package/src/lib/shuffling-list/color.pipe.ts +0 -21
- package/src/lib/shuffling-list/shuffling-list.component.html +0 -37
- package/src/lib/shuffling-list/shuffling-list.component.less +0 -55
- package/src/lib/shuffling-list/shuffling-list.component.spec.ts +0 -25
- package/src/lib/shuffling-list/shuffling-list.component.ts +0 -534
- package/src/lib/shuffling-list/shuffling-list.module.ts +0 -17
- package/src/lib/table/table.component.html +0 -123
- package/src/lib/table/table.component.less +0 -76
- package/src/lib/table/table.component.spec.ts +0 -25
- package/src/lib/table/table.component.ts +0 -608
- package/src/lib/table/table.module.ts +0 -33
- package/src/lib/tabs/tab/tab.component.html +0 -1
- package/src/lib/tabs/tab/tab.component.less +0 -5
- package/src/lib/tabs/tab/tab.component.spec.ts +0 -25
- package/src/lib/tabs/tab/tab.component.ts +0 -18
- package/src/lib/tabs/tabs.component.html +0 -13
- package/src/lib/tabs/tabs.component.less +0 -40
- package/src/lib/tabs/tabs.component.spec.ts +0 -25
- package/src/lib/tabs/tabs.component.ts +0 -68
- package/src/lib/tabs/tabs.module.ts +0 -17
- package/src/lib/temporary-data/temporary-data.component.html +0 -1
- package/src/lib/temporary-data/temporary-data.component.less +0 -4
- package/src/lib/temporary-data/temporary-data.component.spec.ts +0 -25
- package/src/lib/temporary-data/temporary-data.component.ts +0 -46
- package/src/lib/temporary-data/temporary-data.module.ts +0 -15
- package/src/lib/text/text.component.css +0 -0
- package/src/lib/text/text.component.html +0 -3
- package/src/lib/text/text.component.spec.ts +0 -25
- package/src/lib/text/text.component.ts +0 -22
- package/src/lib/text/text.module.ts +0 -14
- package/src/lib/time-picker/time-picker.component.html +0 -1
- package/src/lib/time-picker/time-picker.component.less +0 -14
- package/src/lib/time-picker/time-picker.component.spec.ts +0 -25
- package/src/lib/time-picker/time-picker.component.ts +0 -86
- package/src/lib/time-picker/time-picker.module.ts +0 -19
- package/src/lib/timer/timer.component.html +0 -7
- package/src/lib/timer/timer.component.less +0 -24
- package/src/lib/timer/timer.component.spec.ts +0 -25
- package/src/lib/timer/timer.component.ts +0 -74
- package/src/lib/timer/timer.module.ts +0 -15
- package/src/lib/tree-control/tree-control.component.html +0 -97
- package/src/lib/tree-control/tree-control.component.less +0 -111
- package/src/lib/tree-control/tree-control.component.spec.ts +0 -25
- package/src/lib/tree-control/tree-control.component.ts +0 -363
- package/src/lib/tree-control/tree-control.module.ts +0 -18
- package/src/lib/tree-ring-chart/tree-ring-chart.component.html +0 -7
- package/src/lib/tree-ring-chart/tree-ring-chart.component.less +0 -8
- package/src/lib/tree-ring-chart/tree-ring-chart.component.spec.ts +0 -25
- package/src/lib/tree-ring-chart/tree-ring-chart.component.ts +0 -192
- package/src/lib/tree-ring-chart/tree-ring-chart.module.ts +0 -15
- package/src/lib/upload/upload.component.html +0 -32
- package/src/lib/upload/upload.component.less +0 -14
- package/src/lib/upload/upload.component.spec.ts +0 -25
- package/src/lib/upload/upload.component.ts +0 -109
- package/src/lib/upload/upload.module.ts +0 -19
- package/src/lib/video-grid/video-grid.component.html +0 -33
- package/src/lib/video-grid/video-grid.component.less +0 -68
- package/src/lib/video-grid/video-grid.component.spec.ts +0 -25
- package/src/lib/video-grid/video-grid.component.ts +0 -114
- package/src/lib/video-grid/video-grid.module.ts +0 -17
- package/src/lib/visual-map-chart/visual-map-chart.component.html +0 -8
- package/src/lib/visual-map-chart/visual-map-chart.component.less +0 -21
- package/src/lib/visual-map-chart/visual-map-chart.component.spec.ts +0 -25
- package/src/lib/visual-map-chart/visual-map-chart.component.ts +0 -365
- package/src/lib/visual-map-chart/visual-map-chart.module.ts +0 -18
- package/src/lib/vote/vote.component.html +0 -6
- package/src/lib/vote/vote.component.less +0 -41
- package/src/lib/vote/vote.component.spec.ts +0 -25
- package/src/lib/vote/vote.component.ts +0 -71
- package/src/lib/vote/vote.module.ts +0 -16
- package/src/lib/weather/weather.component.html +0 -27
- package/src/lib/weather/weather.component.less +0 -67
- package/src/lib/weather/weather.component.spec.ts +0 -25
- package/src/lib/weather/weather.component.ts +0 -78
- package/src/lib/weather/weather.module.ts +0 -16
- package/src/lib/wordart/wordart.component.html +0 -2
- package/src/lib/wordart/wordart.component.less +0 -12
- package/src/lib/wordart/wordart.component.spec.ts +0 -25
- package/src/lib/wordart/wordart.component.ts +0 -56
- package/src/lib/wordart/wordart.module.ts +0 -14
- package/src/lib/workbench-widget.module.ts +0 -675
- package/src/test.ts +0 -22
- package/tsconfig.lib.json +0 -37
- package/tsconfig.lib.prod.json +0 -9
- package/tsconfig.spec.json +0 -17
- package/tslint.json +0 -17
- /package/core/{src/public_api.ts → public_api.d.ts} +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit, ElementRef } from '@angular/core';
|
|
2
|
+
export declare class AnnouncementComponent implements OnInit {
|
|
3
|
+
private element;
|
|
4
|
+
headIconDisplay: boolean;
|
|
5
|
+
padding: any;
|
|
6
|
+
font: any;
|
|
7
|
+
icon: string;
|
|
8
|
+
data: {
|
|
9
|
+
content: string;
|
|
10
|
+
}[];
|
|
11
|
+
constructor(element: ElementRef);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FileUrlService } from '../shared/service/file-url.service';
|
|
3
|
+
export declare class AudioComponent implements OnInit, OnChanges {
|
|
4
|
+
private fileUrlService;
|
|
5
|
+
type: string;
|
|
6
|
+
src: string;
|
|
7
|
+
opacity: number;
|
|
8
|
+
shadow: any;
|
|
9
|
+
data: any[];
|
|
10
|
+
_src: string;
|
|
11
|
+
videoType: string;
|
|
12
|
+
hasAudio: boolean;
|
|
13
|
+
style: any;
|
|
14
|
+
video: ElementRef;
|
|
15
|
+
flvPlayer: any;
|
|
16
|
+
obj: any;
|
|
17
|
+
_type: string;
|
|
18
|
+
constructor(fileUrlService: FileUrlService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
reset(): Promise<void>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
export declare class BackgroundComponent implements OnInit {
|
|
3
|
+
private ele;
|
|
4
|
+
image: string;
|
|
5
|
+
opacity: number;
|
|
6
|
+
shadow: any;
|
|
7
|
+
style: any;
|
|
8
|
+
type: string;
|
|
9
|
+
pointerEvents: boolean;
|
|
10
|
+
constructor(ele: ElementRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
import { BasicLineChartComponent } from '../basic-line-chart/basic-line-chart.component';
|
|
3
|
+
import 'echarts-gl';
|
|
4
|
+
export declare class BarChartThreeDComponent extends BasicLineChartComponent implements OnInit, OnChanges {
|
|
5
|
+
type: string;
|
|
6
|
+
example: any;
|
|
7
|
+
barColor: string[];
|
|
8
|
+
font: any;
|
|
9
|
+
grid: any;
|
|
10
|
+
yUnit: string;
|
|
11
|
+
xUnit: string;
|
|
12
|
+
yMax: number;
|
|
13
|
+
netLine: boolean;
|
|
14
|
+
label: boolean;
|
|
15
|
+
autoRotate: boolean;
|
|
16
|
+
boxWidth: number;
|
|
17
|
+
boxDepth: number;
|
|
18
|
+
_data: {
|
|
19
|
+
x: string;
|
|
20
|
+
y: number;
|
|
21
|
+
s: string;
|
|
22
|
+
}[];
|
|
23
|
+
dataClick: EventEmitter<any>;
|
|
24
|
+
sData: any[];
|
|
25
|
+
series: any[];
|
|
26
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
27
|
+
reloadData(): void;
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
onChartClick(event: any): void;
|
|
30
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
import { BasicLineChartComponent } from '../basic-line-chart/basic-line-chart.component';
|
|
3
|
+
export declare class BasicBarChartComponent extends BasicLineChartComponent implements OnInit, OnChanges {
|
|
4
|
+
type: string;
|
|
5
|
+
example: any;
|
|
6
|
+
barColor: {
|
|
7
|
+
gradient: boolean;
|
|
8
|
+
value: string[][];
|
|
9
|
+
};
|
|
10
|
+
font: any;
|
|
11
|
+
colorSwitch: boolean;
|
|
12
|
+
colors: string[];
|
|
13
|
+
grid: any;
|
|
14
|
+
align: string;
|
|
15
|
+
axisShow: string;
|
|
16
|
+
scaleShow: string;
|
|
17
|
+
yUnit: string;
|
|
18
|
+
xUnit: string;
|
|
19
|
+
yMin: number;
|
|
20
|
+
yMax: number;
|
|
21
|
+
yMinInterval: number;
|
|
22
|
+
yMaxAddNum: number;
|
|
23
|
+
netLine: boolean;
|
|
24
|
+
netLineColor: string;
|
|
25
|
+
labelDirection: string;
|
|
26
|
+
barCategoryGap: number;
|
|
27
|
+
barBorderRadius: 20;
|
|
28
|
+
xType: string;
|
|
29
|
+
xLabelRotate: number;
|
|
30
|
+
xLabelWidth: number;
|
|
31
|
+
xLabelOverflow: string;
|
|
32
|
+
xLabelInterval: number;
|
|
33
|
+
insideDataZoom: boolean;
|
|
34
|
+
dataZoomMinData: number;
|
|
35
|
+
dataZoomStart: number;
|
|
36
|
+
dataZoomEnd: number;
|
|
37
|
+
zoomOnMouseWheel: boolean;
|
|
38
|
+
sliderDataZoom: boolean;
|
|
39
|
+
zoomLock: boolean;
|
|
40
|
+
tooltipFont: any;
|
|
41
|
+
showBackground: boolean;
|
|
42
|
+
markLine: boolean;
|
|
43
|
+
YmarkLineHeight: number;
|
|
44
|
+
YmarkLineName: string;
|
|
45
|
+
YmarkLineType: string;
|
|
46
|
+
YmarkLineColor: string;
|
|
47
|
+
YmarkWidth: number;
|
|
48
|
+
XmarkLineLocation: string;
|
|
49
|
+
XmarkLineName: string;
|
|
50
|
+
XmarkLineType: string;
|
|
51
|
+
XmarkLineColor: string;
|
|
52
|
+
XmarkWidth: number;
|
|
53
|
+
chartOption: any;
|
|
54
|
+
_data: {
|
|
55
|
+
x: string;
|
|
56
|
+
y: number;
|
|
57
|
+
s: string;
|
|
58
|
+
}[];
|
|
59
|
+
dataClick: EventEmitter<any>;
|
|
60
|
+
xData: any[];
|
|
61
|
+
yData: any[];
|
|
62
|
+
color: any[];
|
|
63
|
+
legends: any[];
|
|
64
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
65
|
+
ngOnInit(): void;
|
|
66
|
+
get horizontal(): boolean;
|
|
67
|
+
getXAxis(): any;
|
|
68
|
+
getYAxis(): any;
|
|
69
|
+
setSeriesStyle(name: string, datasetIndex: number): {
|
|
70
|
+
name: string;
|
|
71
|
+
showBackground: boolean;
|
|
72
|
+
xAxisIndex: any;
|
|
73
|
+
yAxisIndex: any;
|
|
74
|
+
label: {
|
|
75
|
+
normal: {
|
|
76
|
+
show: boolean;
|
|
77
|
+
position: string;
|
|
78
|
+
textStyle: {
|
|
79
|
+
color: string;
|
|
80
|
+
fontFamily: string;
|
|
81
|
+
fontWeight: string;
|
|
82
|
+
fontSize: string;
|
|
83
|
+
lineHeight: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
barCategoryGap: string;
|
|
88
|
+
itemStyle: {
|
|
89
|
+
barBorderRadius: 20;
|
|
90
|
+
};
|
|
91
|
+
stack: string;
|
|
92
|
+
type: string;
|
|
93
|
+
areaStyle: {
|
|
94
|
+
opacity: number;
|
|
95
|
+
};
|
|
96
|
+
emphasis: {
|
|
97
|
+
focus: string;
|
|
98
|
+
};
|
|
99
|
+
encode: {
|
|
100
|
+
y: string;
|
|
101
|
+
x: string;
|
|
102
|
+
};
|
|
103
|
+
datasetIndex: number;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
export declare class BasicLineChartComponent implements OnInit, OnChanges {
|
|
3
|
+
type: string;
|
|
4
|
+
example: any;
|
|
5
|
+
lineColor: string[];
|
|
6
|
+
font: any;
|
|
7
|
+
grid: any;
|
|
8
|
+
align: string;
|
|
9
|
+
axisType: string;
|
|
10
|
+
lineType: string;
|
|
11
|
+
axisColor: string;
|
|
12
|
+
axisWidth: number;
|
|
13
|
+
xType: string;
|
|
14
|
+
yUnit: string;
|
|
15
|
+
xUnit: string;
|
|
16
|
+
yMin: number;
|
|
17
|
+
yMax: number;
|
|
18
|
+
yMinInterval: number;
|
|
19
|
+
yMaxAddNum: number;
|
|
20
|
+
boundaryGap: boolean;
|
|
21
|
+
showY: boolean;
|
|
22
|
+
netLine: boolean;
|
|
23
|
+
netLineType: string;
|
|
24
|
+
netLineX: boolean;
|
|
25
|
+
netLineXType: string;
|
|
26
|
+
netLineColor: string;
|
|
27
|
+
label: boolean;
|
|
28
|
+
markLine: boolean;
|
|
29
|
+
YmarkLineHeight: number;
|
|
30
|
+
YmarkLineName: string;
|
|
31
|
+
YmarkLineType: string;
|
|
32
|
+
YmarkLineColor: string;
|
|
33
|
+
YmarkWidth: number;
|
|
34
|
+
XmarkLineLocation: string;
|
|
35
|
+
XmarkLineName: string;
|
|
36
|
+
XmarkLineType: string;
|
|
37
|
+
XmarkLineColor: string;
|
|
38
|
+
XmarkWidth: number;
|
|
39
|
+
showDataMarkLine: boolean;
|
|
40
|
+
dataMarkLineFormatter: string;
|
|
41
|
+
hideXLabel: boolean;
|
|
42
|
+
xLabelRotate: number;
|
|
43
|
+
xLabelWidth: number;
|
|
44
|
+
xLabelOverflow: string;
|
|
45
|
+
xLabelInterval: number;
|
|
46
|
+
insideDataZoom: boolean;
|
|
47
|
+
dataZoomMinData: number;
|
|
48
|
+
dataZoomStart: number;
|
|
49
|
+
dataZoomEnd: number;
|
|
50
|
+
zoomOnMouseWheel: boolean;
|
|
51
|
+
sliderDataZoom: boolean;
|
|
52
|
+
zoomLock: boolean;
|
|
53
|
+
tooltipFont: any;
|
|
54
|
+
step: string;
|
|
55
|
+
symbolSize: number;
|
|
56
|
+
chartOption: any;
|
|
57
|
+
_data: any[];
|
|
58
|
+
dataClick: EventEmitter<any>;
|
|
59
|
+
xData: any[];
|
|
60
|
+
yData: any[];
|
|
61
|
+
style: {
|
|
62
|
+
color: string;
|
|
63
|
+
fontFamily: string;
|
|
64
|
+
fontWeight: string;
|
|
65
|
+
fontSize: string;
|
|
66
|
+
lineHeight: string;
|
|
67
|
+
};
|
|
68
|
+
constructor();
|
|
69
|
+
ngOnInit(): void;
|
|
70
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
71
|
+
getXAxis(): any;
|
|
72
|
+
getYAxis(): any;
|
|
73
|
+
getGrid(): {
|
|
74
|
+
top: any;
|
|
75
|
+
right: any;
|
|
76
|
+
left: any;
|
|
77
|
+
bottom: any;
|
|
78
|
+
};
|
|
79
|
+
getLegend(): any;
|
|
80
|
+
getTooltip(): {
|
|
81
|
+
trigger: string;
|
|
82
|
+
textStyle: any;
|
|
83
|
+
axisPointer: {
|
|
84
|
+
type: string;
|
|
85
|
+
label: {
|
|
86
|
+
show: boolean;
|
|
87
|
+
};
|
|
88
|
+
lineStyle: {
|
|
89
|
+
type: string;
|
|
90
|
+
color: string;
|
|
91
|
+
width: number;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
getTextStyle(font: any): any;
|
|
96
|
+
getDataZoom(): any[];
|
|
97
|
+
reloadData(): void;
|
|
98
|
+
setSeriesStyle(name: string, datasetIndex: number): any;
|
|
99
|
+
uniqueData(data: any): any;
|
|
100
|
+
getMaxY(): number;
|
|
101
|
+
onChartClick(event: any): void;
|
|
102
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
import { BasicLineChartComponent } from '../basic-line-chart/basic-line-chart.component';
|
|
3
|
+
export declare class BasicPieChartComponent extends BasicLineChartComponent implements OnInit, OnChanges {
|
|
4
|
+
type: string;
|
|
5
|
+
example: any;
|
|
6
|
+
pieColor: {
|
|
7
|
+
gradient: boolean;
|
|
8
|
+
value: string[][];
|
|
9
|
+
};
|
|
10
|
+
font: any;
|
|
11
|
+
align: string;
|
|
12
|
+
legentData: string;
|
|
13
|
+
lineMark: boolean;
|
|
14
|
+
buoy: boolean;
|
|
15
|
+
radius: number;
|
|
16
|
+
grid: any;
|
|
17
|
+
roundWidth: number;
|
|
18
|
+
addSplit: boolean;
|
|
19
|
+
unit: string;
|
|
20
|
+
seriesDataPie: any[];
|
|
21
|
+
xData: any[];
|
|
22
|
+
radiusPie: string[];
|
|
23
|
+
chartOption: any;
|
|
24
|
+
roseType: string;
|
|
25
|
+
_data: {
|
|
26
|
+
x: string;
|
|
27
|
+
y: number;
|
|
28
|
+
}[];
|
|
29
|
+
dataClick: EventEmitter<any>;
|
|
30
|
+
splitWidth: number;
|
|
31
|
+
splitItem: {
|
|
32
|
+
value: number;
|
|
33
|
+
name: string;
|
|
34
|
+
itemStyle: {
|
|
35
|
+
normal: {
|
|
36
|
+
label: {
|
|
37
|
+
show: boolean;
|
|
38
|
+
};
|
|
39
|
+
labelLine: {
|
|
40
|
+
show: boolean;
|
|
41
|
+
};
|
|
42
|
+
color: string;
|
|
43
|
+
borderColor: string;
|
|
44
|
+
borderWidth: number;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
49
|
+
addUnit(value: any): any;
|
|
50
|
+
reloadData(): void;
|
|
51
|
+
ngOnInit(): void;
|
|
52
|
+
getPieData(): void;
|
|
53
|
+
array2obj(array: any, key: any): {};
|
|
54
|
+
getLegentData(name: any): void;
|
|
55
|
+
onChartClick(event: any): void;
|
|
56
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ParentContainerComponent } from '../parent-container/parent-container.component';
|
|
3
|
+
import { BaiduMapService } from 'bbj-screen-widget/core';
|
|
4
|
+
export declare class BasicPlanimetricMapComponent extends ParentContainerComponent implements OnInit, OnChanges {
|
|
5
|
+
baiduMapService: BaiduMapService;
|
|
6
|
+
zoom: number;
|
|
7
|
+
centerLng: number;
|
|
8
|
+
centerLat: number;
|
|
9
|
+
chartOption: any;
|
|
10
|
+
hasMap: boolean;
|
|
11
|
+
_children: any;
|
|
12
|
+
constructor(baiduMapService: BaiduMapService);
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
ngOnInit(): Promise<void>;
|
|
15
|
+
chartInit(): void;
|
|
16
|
+
childInit(child: any): void;
|
|
17
|
+
deleteChild(childId: string): void;
|
|
18
|
+
}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
import { OnInit, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ParentContainerComponent } from '../parent-container/parent-container.component';
|
|
3
|
+
export declare class BreathingBubbleLayerComponent implements OnInit, OnChanges, OnDestroy {
|
|
4
|
+
private parent;
|
|
5
|
+
bubbleType: {
|
|
6
|
+
key: number;
|
|
7
|
+
color: string;
|
|
8
|
+
size: string;
|
|
9
|
+
}[];
|
|
10
|
+
data: any[];
|
|
11
|
+
geoCoordMap: {
|
|
12
|
+
海门: number[];
|
|
13
|
+
鄂尔多斯: number[];
|
|
14
|
+
招远: number[];
|
|
15
|
+
舟山: number[];
|
|
16
|
+
齐齐哈尔: number[];
|
|
17
|
+
盐城: number[];
|
|
18
|
+
赤峰: number[];
|
|
19
|
+
青岛: number[];
|
|
20
|
+
乳山: number[];
|
|
21
|
+
金昌: number[];
|
|
22
|
+
泉州: number[];
|
|
23
|
+
莱西: number[];
|
|
24
|
+
日照: number[];
|
|
25
|
+
胶南: number[];
|
|
26
|
+
南通: number[];
|
|
27
|
+
拉萨: number[];
|
|
28
|
+
云浮: number[];
|
|
29
|
+
梅州: number[];
|
|
30
|
+
文登: number[];
|
|
31
|
+
上海: number[];
|
|
32
|
+
攀枝花: number[];
|
|
33
|
+
威海: number[];
|
|
34
|
+
承德: number[];
|
|
35
|
+
厦门: number[];
|
|
36
|
+
汕尾: number[];
|
|
37
|
+
潮州: number[];
|
|
38
|
+
丹东: number[];
|
|
39
|
+
太仓: number[];
|
|
40
|
+
曲靖: number[];
|
|
41
|
+
烟台: number[];
|
|
42
|
+
福州: number[];
|
|
43
|
+
瓦房店: number[];
|
|
44
|
+
即墨: number[];
|
|
45
|
+
抚顺: number[];
|
|
46
|
+
玉溪: number[];
|
|
47
|
+
张家口: number[];
|
|
48
|
+
阳泉: number[];
|
|
49
|
+
莱州: number[];
|
|
50
|
+
湖州: number[];
|
|
51
|
+
汕头: number[];
|
|
52
|
+
昆山: number[];
|
|
53
|
+
宁波: number[];
|
|
54
|
+
湛江: number[];
|
|
55
|
+
揭阳: number[];
|
|
56
|
+
荣成: number[];
|
|
57
|
+
连云港: number[];
|
|
58
|
+
葫芦岛: number[];
|
|
59
|
+
常熟: number[];
|
|
60
|
+
东莞: number[];
|
|
61
|
+
河源: number[];
|
|
62
|
+
淮安: number[];
|
|
63
|
+
泰州: number[];
|
|
64
|
+
南宁: number[];
|
|
65
|
+
营口: number[];
|
|
66
|
+
惠州: number[];
|
|
67
|
+
江阴: number[];
|
|
68
|
+
蓬莱: number[];
|
|
69
|
+
韶关: number[];
|
|
70
|
+
嘉峪关: number[];
|
|
71
|
+
广州: number[];
|
|
72
|
+
延安: number[];
|
|
73
|
+
太原: number[];
|
|
74
|
+
清远: number[];
|
|
75
|
+
中山: number[];
|
|
76
|
+
昆明: number[];
|
|
77
|
+
寿光: number[];
|
|
78
|
+
盘锦: number[];
|
|
79
|
+
长治: number[];
|
|
80
|
+
深圳: number[];
|
|
81
|
+
珠海: number[];
|
|
82
|
+
宿迁: number[];
|
|
83
|
+
咸阳: number[];
|
|
84
|
+
铜川: number[];
|
|
85
|
+
平度: number[];
|
|
86
|
+
佛山: number[];
|
|
87
|
+
海口: number[];
|
|
88
|
+
江门: number[];
|
|
89
|
+
章丘: number[];
|
|
90
|
+
肇庆: number[];
|
|
91
|
+
大连: number[];
|
|
92
|
+
临汾: number[];
|
|
93
|
+
吴江: number[];
|
|
94
|
+
石嘴山: number[];
|
|
95
|
+
沈阳: number[];
|
|
96
|
+
苏州: number[];
|
|
97
|
+
茂名: number[];
|
|
98
|
+
嘉兴: number[];
|
|
99
|
+
长春: number[];
|
|
100
|
+
胶州: number[];
|
|
101
|
+
银川: number[];
|
|
102
|
+
张家港: number[];
|
|
103
|
+
三门峡: number[];
|
|
104
|
+
锦州: number[];
|
|
105
|
+
南昌: number[];
|
|
106
|
+
柳州: number[];
|
|
107
|
+
三亚: number[];
|
|
108
|
+
自贡: number[];
|
|
109
|
+
吉林: number[];
|
|
110
|
+
阳江: number[];
|
|
111
|
+
泸州: number[];
|
|
112
|
+
西宁: number[];
|
|
113
|
+
宜宾: number[];
|
|
114
|
+
呼和浩特: number[];
|
|
115
|
+
成都: number[];
|
|
116
|
+
大同: number[];
|
|
117
|
+
镇江: number[];
|
|
118
|
+
桂林: number[];
|
|
119
|
+
张家界: number[];
|
|
120
|
+
宜兴: number[];
|
|
121
|
+
北海: number[];
|
|
122
|
+
西安: number[];
|
|
123
|
+
金坛: number[];
|
|
124
|
+
东营: number[];
|
|
125
|
+
牡丹江: number[];
|
|
126
|
+
遵义: number[];
|
|
127
|
+
绍兴: number[];
|
|
128
|
+
扬州: number[];
|
|
129
|
+
常州: number[];
|
|
130
|
+
潍坊: number[];
|
|
131
|
+
重庆: number[];
|
|
132
|
+
台州: number[];
|
|
133
|
+
南京: number[];
|
|
134
|
+
滨州: number[];
|
|
135
|
+
贵阳: number[];
|
|
136
|
+
无锡: number[];
|
|
137
|
+
本溪: number[];
|
|
138
|
+
克拉玛依: number[];
|
|
139
|
+
渭南: number[];
|
|
140
|
+
马鞍山: number[];
|
|
141
|
+
宝鸡: number[];
|
|
142
|
+
焦作: number[];
|
|
143
|
+
句容: number[];
|
|
144
|
+
北京: number[];
|
|
145
|
+
徐州: number[];
|
|
146
|
+
衡水: number[];
|
|
147
|
+
包头: number[];
|
|
148
|
+
绵阳: number[];
|
|
149
|
+
乌鲁木齐: number[];
|
|
150
|
+
枣庄: number[];
|
|
151
|
+
杭州: number[];
|
|
152
|
+
淄博: number[];
|
|
153
|
+
鞍山: number[];
|
|
154
|
+
溧阳: number[];
|
|
155
|
+
库尔勒: number[];
|
|
156
|
+
安阳: number[];
|
|
157
|
+
开封: number[];
|
|
158
|
+
济南: number[];
|
|
159
|
+
德阳: number[];
|
|
160
|
+
温州: number[];
|
|
161
|
+
九江: number[];
|
|
162
|
+
邯郸: number[];
|
|
163
|
+
临安: number[];
|
|
164
|
+
兰州: number[];
|
|
165
|
+
沧州: number[];
|
|
166
|
+
临沂: number[];
|
|
167
|
+
南充: number[];
|
|
168
|
+
天津: number[];
|
|
169
|
+
富阳: number[];
|
|
170
|
+
泰安: number[];
|
|
171
|
+
诸暨: number[];
|
|
172
|
+
郑州: number[];
|
|
173
|
+
哈尔滨: number[];
|
|
174
|
+
聊城: number[];
|
|
175
|
+
芜湖: number[];
|
|
176
|
+
唐山: number[];
|
|
177
|
+
平顶山: number[];
|
|
178
|
+
邢台: number[];
|
|
179
|
+
德州: number[];
|
|
180
|
+
济宁: number[];
|
|
181
|
+
荆州: number[];
|
|
182
|
+
宜昌: number[];
|
|
183
|
+
义乌: number[];
|
|
184
|
+
丽水: number[];
|
|
185
|
+
洛阳: number[];
|
|
186
|
+
秦皇岛: number[];
|
|
187
|
+
株洲: number[];
|
|
188
|
+
石家庄: number[];
|
|
189
|
+
莱芜: number[];
|
|
190
|
+
常德: number[];
|
|
191
|
+
保定: number[];
|
|
192
|
+
湘潭: number[];
|
|
193
|
+
金华: number[];
|
|
194
|
+
岳阳: number[];
|
|
195
|
+
长沙: number[];
|
|
196
|
+
衢州: number[];
|
|
197
|
+
廊坊: number[];
|
|
198
|
+
菏泽: number[];
|
|
199
|
+
合肥: number[];
|
|
200
|
+
武汉: number[];
|
|
201
|
+
大庆: number[];
|
|
202
|
+
};
|
|
203
|
+
id: string;
|
|
204
|
+
constructor(parent: ParentContainerComponent);
|
|
205
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
206
|
+
ngOnInit(): void;
|
|
207
|
+
ngOnDestroy(): void;
|
|
208
|
+
getItem(v: any): any;
|
|
209
|
+
convertData(data: any, key: any): any[];
|
|
210
|
+
}
|