bbj-screen-widget 2.4.62 → 2.4.63
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 +119 -0
- package/bbj-screen-widget.metadata.json +1 -0
- package/bundles/bbj-screen-widget-core.umd.js +614 -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 +21735 -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/model/screen-widget.config.d.ts +7 -0
- package/core/package.json +10 -2
- package/core/public_api.d.ts +2 -0
- package/core/service/baidu-map.service.d.ts +18 -0
- package/esm2015/bbj-screen-widget.js +120 -0
- package/esm2015/core/bbj-screen-widget-core.js +5 -0
- package/esm2015/core/model/screen-widget.config.js +3 -0
- package/esm2015/core/public_api.js +3 -0
- package/esm2015/core/service/baidu-map.service.js +108 -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/background-events/background-events.component.js +65 -0
- package/esm2015/lib/calendar/calendar-events-child.js +28 -0
- package/esm2015/lib/calendar/calendar.component.js +168 -0
- package/esm2015/lib/calendar/calendar.module.js +32 -0
- package/esm2015/lib/calendar/calendar.util.js +12 -0
- package/esm2015/lib/calendar/events/events.component.js +75 -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 +747 -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 +675 -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 +356 -0
- package/esm2015/lib/gauge-progress/gauge.module.js +22 -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 +343 -0
- package/esm2015/lib/item-swiper/item-swiper.module.js +22 -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 +753 -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 +255 -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 +359 -0
- package/esm2015/lib/select/select.module.js +22 -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 +601 -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 +140 -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 +40 -0
- package/fesm2015/bbj-screen-widget-core.js +114 -0
- package/fesm2015/bbj-screen-widget-core.js.map +1 -0
- package/fesm2015/bbj-screen-widget.js +20633 -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/background-events/background-events.component.d.ts +10 -0
- package/lib/calendar/calendar-events-child.d.ts +12 -0
- package/lib/calendar/calendar.component.d.ts +27 -0
- package/lib/calendar/calendar.module.d.ts +4 -0
- package/lib/calendar/calendar.util.d.ts +6 -0
- package/lib/calendar/events/events.component.d.ts +13 -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 +72 -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 +93 -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 +5 -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 +5 -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 +49 -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 +24 -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 +37 -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} +35 -46
- package/core/src/public_api.ts +0 -1
- 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/background-events/background-events.component.html +0 -0
- package/src/lib/calendar/background-events/background-events.component.less +0 -0
- package/src/lib/calendar/background-events/background-events.component.spec.ts +0 -25
- package/src/lib/calendar/background-events/background-events.component.ts +0 -51
- package/src/lib/calendar/calendar-events-child.ts +0 -27
- package/src/lib/calendar/calendar.component.html +0 -2
- 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 -151
- package/src/lib/calendar/calendar.module.ts +0 -27
- package/src/lib/calendar/calendar.util.ts +0 -14
- package/src/lib/calendar/events/events.component.html +0 -0
- package/src/lib/calendar/events/events.component.less +0 -0
- package/src/lib/calendar/events/events.component.spec.ts +0 -25
- package/src/lib/calendar/events/events.component.ts +0 -61
- 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 -689
- 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 -69
- 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 -652
- 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 -293
- package/src/lib/gauge-progress/gauge.module.ts +0 -17
- 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 -277
- package/src/lib/item-swiper/item-swiper.module.ts +0 -17
- 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 -11
- 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 -690
- 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 -219
- 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 -30
- package/src/lib/select/select.component.less +0 -117
- package/src/lib/select/select.component.spec.ts +0 -25
- package/src/lib/select/select.component.ts +0 -297
- package/src/lib/select/select.module.ts +0 -18
- 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 -115
- 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
|
@@ -1,675 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { ImageModule } from './image/image.module';
|
|
3
|
-
import { BasicLineChartModule } from './basic-line-chart/basic-line-chart.module';
|
|
4
|
-
import { ButtonModule } from './button/button.module';
|
|
5
|
-
import { TimerModule } from './timer/timer.module';
|
|
6
|
-
import { NumberFlopModule } from './number-flop/number-flop.module';
|
|
7
|
-
import { VoteModule } from './vote/vote.module';
|
|
8
|
-
import { SelectModule } from './select/select.module';
|
|
9
|
-
import { SearchModule } from './search/search.module';
|
|
10
|
-
import { WeatherModule } from './weather/weather.module';
|
|
11
|
-
import { RadioModule } from './radio/radio.module';
|
|
12
|
-
import { CheckboxModule } from './checkbox/checkbox.module';
|
|
13
|
-
import { RateModule } from './rate/rate.module';
|
|
14
|
-
import { GeneralTextModule } from './general-text/general-text.module';
|
|
15
|
-
import { MarqueeModule } from './marquee/marquee.module';
|
|
16
|
-
import { WordartModule } from './wordart/wordart.module';
|
|
17
|
-
import { IconfontModule } from './iconfont/iconfont.module';
|
|
18
|
-
import { AudioModule } from './audio/audio.module';
|
|
19
|
-
import { BasicBarChartModule } from './basic-bar-chart/basic-bar-chart.module';
|
|
20
|
-
import { BasicPieChartModule } from './basic-pie-chart/basic-pie-chart.module';
|
|
21
|
-
import { BarChartThreeDModule } from './bar-chart-three-d/bar-chart-three-d.module';
|
|
22
|
-
import { ShapeModule } from './shape/shape.module';
|
|
23
|
-
import { LineBarChartModule } from './line-bar-chart/line-bar-chart.module';
|
|
24
|
-
import { BubbleChartModule } from './bubble-chart/bubble-chart.module';
|
|
25
|
-
import { RadarChartModule } from './radar-chart/radar-chart.module';
|
|
26
|
-
import { FunnelChartModule } from './funnel-chart/funnel-chart.module';
|
|
27
|
-
import { BackgroundModule } from './background/background.module';
|
|
28
|
-
import { GaugeModule } from './gauge/gauge.module';
|
|
29
|
-
import { PercentPieChartModule } from './percent-pie-chart/percent-pie-chart.module';
|
|
30
|
-
import { TreeRingChartModule } from './tree-ring-chart/tree-ring-chart.module';
|
|
31
|
-
import { LiquidFillModule } from './liquid-fill/liquid-fill.module';
|
|
32
|
-
import { WidgetService } from 'bbj-widget-base';
|
|
33
|
-
import { BasicBarChartComponent } from './basic-bar-chart/basic-bar-chart.component';
|
|
34
|
-
import { ButtonComponent } from './button/button.component';
|
|
35
|
-
import { ImageComponent } from './image/image.component';
|
|
36
|
-
import { BasicLineChartComponent } from './basic-line-chart/basic-line-chart.component';
|
|
37
|
-
import { BasicPieChartComponent } from './basic-pie-chart/basic-pie-chart.component';
|
|
38
|
-
import { TreeRingChartComponent } from './tree-ring-chart/tree-ring-chart.component';
|
|
39
|
-
import { LineBarChartComponent } from './line-bar-chart/line-bar-chart.component';
|
|
40
|
-
import { BarChartThreeDComponent } from './bar-chart-three-d/bar-chart-three-d.component';
|
|
41
|
-
import { BubbleChartComponent } from './bubble-chart/bubble-chart.component';
|
|
42
|
-
import { RadarChartComponent } from './radar-chart/radar-chart.component';
|
|
43
|
-
import { FunnelChartComponent } from './funnel-chart/funnel-chart.component';
|
|
44
|
-
import { GaugeComponent } from './gauge/gauge.component';
|
|
45
|
-
import { TimerComponent } from './timer/timer.component';
|
|
46
|
-
import { NumberFlopComponent } from './number-flop/number-flop.component';
|
|
47
|
-
import { VoteComponent } from './vote/vote.component';
|
|
48
|
-
import { SelectComponent } from './select/select.component';
|
|
49
|
-
import { SearchComponent } from './search/search.component';
|
|
50
|
-
import { WeatherComponent } from './weather/weather.component';
|
|
51
|
-
import { RadioComponent } from './radio/radio.component';
|
|
52
|
-
import { CheckboxComponent } from './checkbox/checkbox.component';
|
|
53
|
-
import { RateComponent } from './rate/rate.component';
|
|
54
|
-
import { GeneralTextComponent } from './general-text/general-text.component';
|
|
55
|
-
import { IconfontComponent } from './iconfont/iconfont.component';
|
|
56
|
-
import { WordartComponent } from './wordart/wordart.component';
|
|
57
|
-
import { MarqueeComponent } from './marquee/marquee.component';
|
|
58
|
-
import { AudioComponent } from './audio/audio.component';
|
|
59
|
-
import { PercentPieChartComponent } from './percent-pie-chart/percent-pie-chart.component';
|
|
60
|
-
import { LiquidFillComponent } from './liquid-fill/liquid-fill.component';
|
|
61
|
-
import { ShapeComponent } from './shape/shape.component';
|
|
62
|
-
import { BackgroundComponent } from './background/background.component';
|
|
63
|
-
import { AnnouncementComponent } from './announcement/announcement.component';
|
|
64
|
-
import { AnnouncementModule } from './announcement/announcement.module';
|
|
65
|
-
import { TableModule } from './table/table.module';
|
|
66
|
-
import { TableComponent } from './table/table.component';
|
|
67
|
-
import { BasicPlanimetricMapModule } from './basic-planimetric-map/basic-planimetric-map.module';
|
|
68
|
-
import { BreathingBubbleLayerModule } from './breathing-bubble-layer/breathing-bubble-layer.module';
|
|
69
|
-
import { PlanimetricMap2dModule } from './planimetric-map2d/planimetric-map2d.module';
|
|
70
|
-
import { ParentContainerModule } from './parent-container/parent-container.module';
|
|
71
|
-
import { BasicPlanimetricMapComponent } from './basic-planimetric-map/basic-planimetric-map.component';
|
|
72
|
-
import { PlanimetricMap3dModule } from './planimetric-map3d/planimetric-map3d.module';
|
|
73
|
-
import { PlanimetricMap3dComponent } from './planimetric-map3d/planimetric-map3d.component';
|
|
74
|
-
import { CalendarModule } from './calendar/calendar.module';
|
|
75
|
-
import { CalendarComponent } from './calendar/calendar.component';
|
|
76
|
-
import { VisualMapChartModule } from './visual-map-chart/visual-map-chart.module';
|
|
77
|
-
import { TimePickerModule } from './time-picker/time-picker.module';
|
|
78
|
-
import { DatePickerModule } from './date-picker/date-picker.module';
|
|
79
|
-
import { TreeControlModule } from './tree-control/tree-control.module';
|
|
80
|
-
import { CustomBaiduMapModule } from './custom-baidu-map/custom-baidu-map.module';
|
|
81
|
-
import { icons } from './iconfont/icon';
|
|
82
|
-
import { TreeControlComponent } from './tree-control/tree-control.component';
|
|
83
|
-
import { TabsModule } from './tabs/tabs.module';
|
|
84
|
-
import { MipAnimComponent } from './mip-anim/mip-anim.component';
|
|
85
|
-
import { MipAnimModule } from './mip-anim/mip-anim.module';
|
|
86
|
-
import { UploadModule } from './upload/upload.module';
|
|
87
|
-
import { CrossTableModule } from './cross-table/cross-table.module';
|
|
88
|
-
import { GanttModule } from './gantt/gantt.module';
|
|
89
|
-
import { Pie3dChartModule } from './pie3d-chart/pie3d-chart.module';
|
|
90
|
-
|
|
91
|
-
import { LineLightFlowModule } from './line-light-flow/line-light-flow.module';
|
|
92
|
-
import { TemporaryDataModule } from './temporary-data/temporary-data.module';
|
|
93
|
-
|
|
94
|
-
@NgModule({
|
|
95
|
-
imports: [
|
|
96
|
-
ImageModule,
|
|
97
|
-
BasicLineChartModule,
|
|
98
|
-
BasicPieChartModule,
|
|
99
|
-
BasicBarChartModule,
|
|
100
|
-
LineBarChartModule,
|
|
101
|
-
BarChartThreeDModule,
|
|
102
|
-
BubbleChartModule,
|
|
103
|
-
RadarChartModule,
|
|
104
|
-
FunnelChartModule,
|
|
105
|
-
PercentPieChartModule,
|
|
106
|
-
TreeRingChartModule,
|
|
107
|
-
GaugeModule,
|
|
108
|
-
LiquidFillModule,
|
|
109
|
-
ButtonModule,
|
|
110
|
-
TimerModule,
|
|
111
|
-
NumberFlopModule,
|
|
112
|
-
VoteModule,
|
|
113
|
-
SelectModule,
|
|
114
|
-
SearchModule,
|
|
115
|
-
WeatherModule,
|
|
116
|
-
RadioModule,
|
|
117
|
-
CheckboxModule,
|
|
118
|
-
RateModule,
|
|
119
|
-
GeneralTextModule,
|
|
120
|
-
MarqueeModule,
|
|
121
|
-
WordartModule,
|
|
122
|
-
IconfontModule,
|
|
123
|
-
AudioModule,
|
|
124
|
-
ShapeModule,
|
|
125
|
-
BackgroundModule,
|
|
126
|
-
// BasicSmoothLineChartModule,
|
|
127
|
-
AnnouncementModule,
|
|
128
|
-
TableModule,
|
|
129
|
-
BasicPlanimetricMapModule,
|
|
130
|
-
BreathingBubbleLayerModule,
|
|
131
|
-
PlanimetricMap2dModule,
|
|
132
|
-
ParentContainerModule,
|
|
133
|
-
PlanimetricMap3dModule,
|
|
134
|
-
TreeControlModule,
|
|
135
|
-
VisualMapChartModule,
|
|
136
|
-
TimePickerModule,
|
|
137
|
-
DatePickerModule,
|
|
138
|
-
CustomBaiduMapModule,
|
|
139
|
-
TabsModule,
|
|
140
|
-
MipAnimModule,
|
|
141
|
-
CalendarModule,
|
|
142
|
-
UploadModule,
|
|
143
|
-
CrossTableModule,
|
|
144
|
-
GanttModule,
|
|
145
|
-
Pie3dChartModule,
|
|
146
|
-
LineLightFlowModule,
|
|
147
|
-
TemporaryDataModule,
|
|
148
|
-
],
|
|
149
|
-
exports: [],
|
|
150
|
-
declarations: [],
|
|
151
|
-
})
|
|
152
|
-
export class WorkbenchWidgetModule {
|
|
153
|
-
constructor(widgetService: WidgetService) {
|
|
154
|
-
widgetService.register(ButtonComponent, { option: {}, size: { width: 3, height: 3 } });
|
|
155
|
-
widgetService.register(CalendarComponent, { option: {}, size: { width: 16, height: 12 } });
|
|
156
|
-
for (let i = 1; i <= 82; i++) {
|
|
157
|
-
widgetService.register(ImageComponent, {
|
|
158
|
-
option: { image: `assets/img/screen/picture${i}.png`, hideHead: true },
|
|
159
|
-
size: { width: 6, height: 6 },
|
|
160
|
-
});
|
|
161
|
-
}
|
|
162
|
-
icons.forEach((icon) => {
|
|
163
|
-
widgetService.register(IconfontComponent, {
|
|
164
|
-
option: { type: 'iconfont', icon, hideHead: true },
|
|
165
|
-
size: { width: 4, height: 4 },
|
|
166
|
-
});
|
|
167
|
-
});
|
|
168
|
-
widgetService.register(TimerComponent, {
|
|
169
|
-
option: { font: { color: '#595F7A' } },
|
|
170
|
-
size: { width: 10, height: 4 },
|
|
171
|
-
});
|
|
172
|
-
widgetService.register(NumberFlopComponent, { size: { width: 12, height: 6 } });
|
|
173
|
-
widgetService.register(VoteComponent, { size: { width: 6, height: 6 } });
|
|
174
|
-
widgetService.register(SelectComponent, { size: { width: 6, height: 4 } });
|
|
175
|
-
widgetService.register(SearchComponent, { size: { width: 6, height: 3 } });
|
|
176
|
-
widgetService.register(WeatherComponent, {
|
|
177
|
-
option: { tempFont: { color: '#595F7A' } },
|
|
178
|
-
size: { width: 10, height: 6 },
|
|
179
|
-
});
|
|
180
|
-
widgetService.register(RadioComponent, {
|
|
181
|
-
option: { font: { color: '#595F7A' } },
|
|
182
|
-
size: { width: 6, height: 4 },
|
|
183
|
-
});
|
|
184
|
-
widgetService.register(RateComponent, {
|
|
185
|
-
option: { font: { color: '#595F7A' } },
|
|
186
|
-
size: { width: 6, height: 6 },
|
|
187
|
-
});
|
|
188
|
-
widgetService.register(
|
|
189
|
-
GeneralTextComponent,
|
|
190
|
-
{
|
|
191
|
-
className: 'big-title title',
|
|
192
|
-
title: '大标题',
|
|
193
|
-
option: {
|
|
194
|
-
title: '大标题',
|
|
195
|
-
font: { family: '', color: '#333333', weight: 'normal', size: 36, space: 0, lineHeight: 50 },
|
|
196
|
-
},
|
|
197
|
-
size: { width: 5, height: 3 },
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
className: 'normal-title title',
|
|
201
|
-
title: '标题',
|
|
202
|
-
option: {
|
|
203
|
-
title: '标题',
|
|
204
|
-
font: { family: '', color: '#333333', weight: 'normal', size: 32, space: 0, lineHeight: 45 },
|
|
205
|
-
},
|
|
206
|
-
size: { width: 5, height: 3 },
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
className: 'subtitle title',
|
|
210
|
-
title: '副标题',
|
|
211
|
-
option: {
|
|
212
|
-
title: '副标题',
|
|
213
|
-
font: { family: '', color: '#333333', weight: 'normal', size: 24, space: 0, lineHeight: 33 },
|
|
214
|
-
},
|
|
215
|
-
size: { width: 5, height: 3 },
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
className: 'small-title title',
|
|
219
|
-
title: '小标题',
|
|
220
|
-
option: {
|
|
221
|
-
title: '小标题',
|
|
222
|
-
font: { family: '', color: '#333333', weight: 'normal', size: 16, space: 0, lineHeight: 22 },
|
|
223
|
-
},
|
|
224
|
-
size: { width: 5, height: 3 },
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
className: 'content title',
|
|
228
|
-
title: '正文内容',
|
|
229
|
-
option: {
|
|
230
|
-
title: '正文内容',
|
|
231
|
-
font: { family: '', color: '#333333', weight: 'normal', size: 13, space: 0, lineHeight: 18 },
|
|
232
|
-
},
|
|
233
|
-
size: { width: 5, height: 3 },
|
|
234
|
-
},
|
|
235
|
-
);
|
|
236
|
-
widgetService.register(
|
|
237
|
-
WordartComponent,
|
|
238
|
-
{
|
|
239
|
-
className: 'wordart1 wordart',
|
|
240
|
-
title: '可视化数字大屏',
|
|
241
|
-
option: {
|
|
242
|
-
title: '可视化数字大屏',
|
|
243
|
-
font: { family: 'cursive', color: '#3285FF', weight: 'normal', size: 24, space: 0, lineHeight: '' },
|
|
244
|
-
},
|
|
245
|
-
size: { width: 7, height: 3 },
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
className: 'wordart2 wordart',
|
|
249
|
-
title: '可视化数字大屏',
|
|
250
|
-
option: {
|
|
251
|
-
title: '可视化数字大屏',
|
|
252
|
-
font: { family: 'sans-serif', color: '#7ee5ce', weight: 'bold', size: 24, space: 0, lineHeight: '' },
|
|
253
|
-
},
|
|
254
|
-
size: { width: 7, height: 3 },
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
className: 'wordart3 wordart',
|
|
258
|
-
title: '可视化数字大屏',
|
|
259
|
-
option: {
|
|
260
|
-
title: '可视化数字大屏',
|
|
261
|
-
backgroundImage: '-webkit-linear-gradient(-90deg, #09FFDD 14%, #0055FF 100%)',
|
|
262
|
-
font: { family: 'sans-serif', color: '#7ee5ce', weight: 'bold', size: 24, space: 0, lineHeight: '' },
|
|
263
|
-
},
|
|
264
|
-
size: { width: 7, height: 3 },
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
className: 'wordart4 wordart',
|
|
268
|
-
title: '可视化数字大屏',
|
|
269
|
-
option: {
|
|
270
|
-
title: '可视化数字大屏',
|
|
271
|
-
backgroundImage: '-webkit-linear-gradient(-90deg, #F76B1C 14%, #FAD961 100%)',
|
|
272
|
-
font: { family: 'sans-serif', color: '#7ee5ce', weight: 'bold', size: 24, space: 0, lineHeight: '' },
|
|
273
|
-
},
|
|
274
|
-
size: { width: 7, height: 3 },
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
className: 'wordart5 wordart',
|
|
278
|
-
title: '可视化数字大屏',
|
|
279
|
-
option: {
|
|
280
|
-
title: '可视化数字大屏',
|
|
281
|
-
backgroundImage: '-webkit-linear-gradient(-90deg, #B4EC51 14%, #429321 100%)',
|
|
282
|
-
font: { family: 'sans-serif', color: '#7ee5ce', weight: 'bold', size: 24, space: 0, lineHeight: '' },
|
|
283
|
-
},
|
|
284
|
-
size: { width: 7, height: 3 },
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
className: 'wordart6 wordart',
|
|
288
|
-
title: '可视化数字大屏',
|
|
289
|
-
option: {
|
|
290
|
-
title: '可视化数字大屏',
|
|
291
|
-
backgroundImage: '-webkit-linear-gradient(-90deg, #3023AE 14%, #FE55FF 100%)',
|
|
292
|
-
font: { family: 'sans-serif', color: '#7ee5ce', weight: 'bold', size: 24, space: 0, lineHeight: '' },
|
|
293
|
-
},
|
|
294
|
-
size: { width: 7, height: 3 },
|
|
295
|
-
},
|
|
296
|
-
);
|
|
297
|
-
widgetService.register(MarqueeComponent, {
|
|
298
|
-
option: {
|
|
299
|
-
font: { color: '#595F7A' },
|
|
300
|
-
},
|
|
301
|
-
size: { width: 7, height: 3 },
|
|
302
|
-
});
|
|
303
|
-
widgetService.register(
|
|
304
|
-
AudioComponent,
|
|
305
|
-
{
|
|
306
|
-
title: '视频demo',
|
|
307
|
-
option: {
|
|
308
|
-
type: 'video',
|
|
309
|
-
src: 'https://xiche.oss-cn-beijing.aliyuncs.com/video/20180417154421.mp4',
|
|
310
|
-
},
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
title: '音频demo',
|
|
314
|
-
option: {
|
|
315
|
-
type: 'audio',
|
|
316
|
-
src: 'https://xiche.oss-cn-beijing.aliyuncs.com/video/20180417154421.mp4',
|
|
317
|
-
},
|
|
318
|
-
},
|
|
319
|
-
);
|
|
320
|
-
widgetService.register(
|
|
321
|
-
BasicLineChartComponent,
|
|
322
|
-
{
|
|
323
|
-
option: {
|
|
324
|
-
type: 'basic',
|
|
325
|
-
},
|
|
326
|
-
image: 'assets/img/screen/basic-line-chart.png',
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
title: '区域折线图',
|
|
330
|
-
image: 'assets/img/screen/area-line-chart.png',
|
|
331
|
-
option: {
|
|
332
|
-
type: 'area',
|
|
333
|
-
},
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
title: '基本曲线图',
|
|
337
|
-
image: 'assets/img/screen/smooth-line-chart.png',
|
|
338
|
-
group: 'smoothLineChart',
|
|
339
|
-
option: {
|
|
340
|
-
type: 'smooth',
|
|
341
|
-
},
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
title: '区域曲线图',
|
|
345
|
-
image: 'assets/img/screen/smooth-area-line-chart.png',
|
|
346
|
-
group: 'smoothLineChart',
|
|
347
|
-
option: {
|
|
348
|
-
type: 'smooth-area',
|
|
349
|
-
},
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
title: '阶梯线图',
|
|
353
|
-
group: 'stepLineChart',
|
|
354
|
-
option: {
|
|
355
|
-
type: 'step',
|
|
356
|
-
step: 'end',
|
|
357
|
-
},
|
|
358
|
-
image: 'assets/img/screen/basic-line-chart.png',
|
|
359
|
-
},
|
|
360
|
-
);
|
|
361
|
-
widgetService.register(
|
|
362
|
-
BasicPieChartComponent,
|
|
363
|
-
{
|
|
364
|
-
option: {
|
|
365
|
-
type: 'basic',
|
|
366
|
-
font: { color: '#595F7A' },
|
|
367
|
-
},
|
|
368
|
-
},
|
|
369
|
-
{
|
|
370
|
-
title: '环形饼图',
|
|
371
|
-
image: 'assets/img/screen/pie-o.png',
|
|
372
|
-
option: {
|
|
373
|
-
type: 'ring',
|
|
374
|
-
font: { color: '#595F7A' },
|
|
375
|
-
},
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
title: '玫瑰饼图',
|
|
379
|
-
image: 'assets/img/screen/rosePie.png',
|
|
380
|
-
option: {
|
|
381
|
-
type: 'rose',
|
|
382
|
-
font: { color: '#595F7A' },
|
|
383
|
-
},
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
title: '玫瑰环形饼图',
|
|
387
|
-
image: 'assets/img/screen/roseRingPie.png',
|
|
388
|
-
option: {
|
|
389
|
-
type: 'roseRing',
|
|
390
|
-
font: { color: '#595F7A' },
|
|
391
|
-
},
|
|
392
|
-
},
|
|
393
|
-
);
|
|
394
|
-
widgetService.register(PercentPieChartComponent, {
|
|
395
|
-
option: {
|
|
396
|
-
font: { color: '#595F7A' },
|
|
397
|
-
},
|
|
398
|
-
});
|
|
399
|
-
widgetService.register(TreeRingChartComponent, {
|
|
400
|
-
option: {
|
|
401
|
-
font: { color: '#595F7A' },
|
|
402
|
-
},
|
|
403
|
-
});
|
|
404
|
-
widgetService.register(
|
|
405
|
-
BasicBarChartComponent,
|
|
406
|
-
{},
|
|
407
|
-
{
|
|
408
|
-
title: '堆叠柱图',
|
|
409
|
-
image: 'assets/img/screen/doubleBar.png',
|
|
410
|
-
option: {
|
|
411
|
-
type: 'double',
|
|
412
|
-
},
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
title: '横向柱图',
|
|
416
|
-
image: 'assets/img/screen/horiBar.png',
|
|
417
|
-
option: {
|
|
418
|
-
type: 'hori',
|
|
419
|
-
},
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
title: '横向堆叠柱图',
|
|
423
|
-
image: 'assets/img/screen/doubleHoriBar.png',
|
|
424
|
-
option: {
|
|
425
|
-
type: 'horiD',
|
|
426
|
-
},
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
title: '双向柱图',
|
|
430
|
-
image: 'assets/img/screen/doubleColorBar.png',
|
|
431
|
-
option: {
|
|
432
|
-
type: 'dcolor',
|
|
433
|
-
},
|
|
434
|
-
},
|
|
435
|
-
);
|
|
436
|
-
widgetService.register(LineBarChartComponent, {
|
|
437
|
-
title: '折线柱图',
|
|
438
|
-
image: 'assets/img/screen/lineBar.png',
|
|
439
|
-
option: {
|
|
440
|
-
type: 'line',
|
|
441
|
-
font: { color: '#595F7A' },
|
|
442
|
-
},
|
|
443
|
-
});
|
|
444
|
-
widgetService.register(
|
|
445
|
-
BarChartThreeDComponent,
|
|
446
|
-
{
|
|
447
|
-
title: '3D柱图',
|
|
448
|
-
image: 'assets/img/screen/3Dbar.png',
|
|
449
|
-
option: {
|
|
450
|
-
type: '3D',
|
|
451
|
-
font: { color: '#595F7A' },
|
|
452
|
-
},
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
title: '3D堆叠柱图',
|
|
456
|
-
image: 'assets/img/screen/3DdoubleBar.png',
|
|
457
|
-
option: {
|
|
458
|
-
type: '3Ddouble',
|
|
459
|
-
font: { color: '#595F7A' },
|
|
460
|
-
},
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
title: '3D横向柱图',
|
|
464
|
-
image: 'assets/img/screen/3DhoriBar.png',
|
|
465
|
-
option: {
|
|
466
|
-
type: 'hori',
|
|
467
|
-
font: { color: '#595F7A' },
|
|
468
|
-
},
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
title: '3D堆叠横向柱图',
|
|
472
|
-
image: 'assets/img/screen/3DdoubleHoriBar.png',
|
|
473
|
-
option: {
|
|
474
|
-
type: 'horiD',
|
|
475
|
-
font: { color: '#595F7A' },
|
|
476
|
-
},
|
|
477
|
-
},
|
|
478
|
-
);
|
|
479
|
-
widgetService.register(BubbleChartComponent, {
|
|
480
|
-
title: '散点图',
|
|
481
|
-
image: 'assets/img/screen/bubble.png',
|
|
482
|
-
option: {
|
|
483
|
-
type: 'bubble',
|
|
484
|
-
font: { color: '#595F7A' },
|
|
485
|
-
},
|
|
486
|
-
});
|
|
487
|
-
widgetService.register(RadarChartComponent, {
|
|
488
|
-
title: '雷达图',
|
|
489
|
-
image: 'assets/img/screen/radar.png',
|
|
490
|
-
option: {
|
|
491
|
-
type: 'radar',
|
|
492
|
-
font: { color: '#595F7A' },
|
|
493
|
-
},
|
|
494
|
-
});
|
|
495
|
-
widgetService.register(FunnelChartComponent, {
|
|
496
|
-
title: '三角图',
|
|
497
|
-
image: 'assets/img/screen/funnel.png',
|
|
498
|
-
option: {
|
|
499
|
-
type: 'funnel',
|
|
500
|
-
font: { color: '#595F7A' },
|
|
501
|
-
},
|
|
502
|
-
});
|
|
503
|
-
widgetService.register(GaugeComponent, {
|
|
504
|
-
option: {
|
|
505
|
-
font: { color: '#595F7A' },
|
|
506
|
-
},
|
|
507
|
-
});
|
|
508
|
-
widgetService.register(LiquidFillComponent, {
|
|
509
|
-
option: {
|
|
510
|
-
font: { color: '#595F7A' },
|
|
511
|
-
},
|
|
512
|
-
});
|
|
513
|
-
widgetService.register(
|
|
514
|
-
ShapeComponent,
|
|
515
|
-
{
|
|
516
|
-
title: '线条',
|
|
517
|
-
image: 'assets/img/screen/shape01.png',
|
|
518
|
-
option: {
|
|
519
|
-
type: 'line',
|
|
520
|
-
},
|
|
521
|
-
size: { width: 6, height: 7 },
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
title: '三角形',
|
|
525
|
-
image: 'assets/img/screen/shape06.png',
|
|
526
|
-
option: {
|
|
527
|
-
type: 'triangle',
|
|
528
|
-
},
|
|
529
|
-
size: { width: 6, height: 7 },
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
title: '矩形',
|
|
533
|
-
image: 'assets/img/screen/shape03.png',
|
|
534
|
-
option: {
|
|
535
|
-
type: 'rect',
|
|
536
|
-
},
|
|
537
|
-
size: { width: 6, height: 7 },
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
title: '圆角矩形',
|
|
541
|
-
image: 'assets/img/screen/shape04.png',
|
|
542
|
-
option: {
|
|
543
|
-
type: 'rect',
|
|
544
|
-
fillet: 16,
|
|
545
|
-
},
|
|
546
|
-
size: { width: 6, height: 7 },
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
title: '平行四边形',
|
|
550
|
-
image: 'assets/img/screen/shape09.png',
|
|
551
|
-
option: {
|
|
552
|
-
type: 'parallelogram',
|
|
553
|
-
bottom: 110,
|
|
554
|
-
deviation: 30,
|
|
555
|
-
},
|
|
556
|
-
size: { width: 6, height: 7 },
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
title: '梯形',
|
|
560
|
-
image: 'assets/img/screen/shape10.png',
|
|
561
|
-
option: {
|
|
562
|
-
type: 'trapezoid',
|
|
563
|
-
upper: 70,
|
|
564
|
-
bottom: 100,
|
|
565
|
-
deviation: 0,
|
|
566
|
-
},
|
|
567
|
-
size: { width: 6, height: 7 },
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
title: '五边形',
|
|
571
|
-
image: 'assets/img/screen/shape08.png',
|
|
572
|
-
option: {
|
|
573
|
-
type: 'polygonplus',
|
|
574
|
-
side: 5,
|
|
575
|
-
},
|
|
576
|
-
size: { width: 6, height: 7 },
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
title: '五角星',
|
|
580
|
-
image: 'assets/img/screen/shape07.png',
|
|
581
|
-
option: {
|
|
582
|
-
type: 'polyhedrosis',
|
|
583
|
-
side: 5,
|
|
584
|
-
},
|
|
585
|
-
size: { width: 6, height: 7 },
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
title: '圆形',
|
|
589
|
-
image: 'assets/img/screen/shape05.png',
|
|
590
|
-
option: {
|
|
591
|
-
type: 'circle',
|
|
592
|
-
},
|
|
593
|
-
size: { width: 6, height: 7 },
|
|
594
|
-
},
|
|
595
|
-
{
|
|
596
|
-
title: '箭头',
|
|
597
|
-
image: 'assets/img/screen/shape11.png',
|
|
598
|
-
option: {
|
|
599
|
-
type: 'polygon',
|
|
600
|
-
data: [
|
|
601
|
-
{
|
|
602
|
-
x: 20,
|
|
603
|
-
y: 80,
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
x: 100,
|
|
607
|
-
y: 80,
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
x: 100,
|
|
611
|
-
y: 40,
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
x: 180,
|
|
615
|
-
y: 100,
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
x: 100,
|
|
619
|
-
y: 160,
|
|
620
|
-
},
|
|
621
|
-
{
|
|
622
|
-
x: 100,
|
|
623
|
-
y: 120,
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
x: 20,
|
|
627
|
-
y: 120,
|
|
628
|
-
},
|
|
629
|
-
],
|
|
630
|
-
},
|
|
631
|
-
},
|
|
632
|
-
);
|
|
633
|
-
for (let i = 1; i <= 75; i++) {
|
|
634
|
-
widgetService.register(BackgroundComponent, {
|
|
635
|
-
option: {
|
|
636
|
-
image: `assets/img/screen/moduleBg${i}.png`,
|
|
637
|
-
type: 'background',
|
|
638
|
-
},
|
|
639
|
-
size: { width: 10, height: 3 },
|
|
640
|
-
});
|
|
641
|
-
}
|
|
642
|
-
for (let i = 1; i <= 8; i++) {
|
|
643
|
-
widgetService.register(BackgroundComponent, {
|
|
644
|
-
option: {
|
|
645
|
-
image: `assets/img/screen/border${i}.png`,
|
|
646
|
-
type: 'background',
|
|
647
|
-
},
|
|
648
|
-
size: { width: 10, height: 10 },
|
|
649
|
-
});
|
|
650
|
-
}
|
|
651
|
-
for (let i = 1; i <= 8; i++) {
|
|
652
|
-
widgetService.register(BackgroundComponent, {
|
|
653
|
-
option: {
|
|
654
|
-
image: `assets/img/screen/bg${i}.png`,
|
|
655
|
-
type: 'border',
|
|
656
|
-
},
|
|
657
|
-
size: { width: 10, height: 10 },
|
|
658
|
-
});
|
|
659
|
-
}
|
|
660
|
-
widgetService.register(AnnouncementComponent, { size: { width: 14, height: 6 } });
|
|
661
|
-
widgetService.register(TableComponent, {
|
|
662
|
-
option: {
|
|
663
|
-
image: 'assets/img/screen/table.png',
|
|
664
|
-
},
|
|
665
|
-
});
|
|
666
|
-
widgetService.register(BasicPlanimetricMapComponent, { size: { width: 12, height: 12 } });
|
|
667
|
-
widgetService.register(PlanimetricMap3dComponent, { size: { width: 12, height: 12 } });
|
|
668
|
-
['assets/img/screen/mipAnim1.gif', 'assets/img/screen/mipAnim2.gif'].forEach((image) => {
|
|
669
|
-
widgetService.register(MipAnimComponent, {
|
|
670
|
-
option: { image },
|
|
671
|
-
size: { height: 6, width: 6 },
|
|
672
|
-
});
|
|
673
|
-
});
|
|
674
|
-
}
|
|
675
|
-
}
|
package/src/test.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
|
2
|
-
|
|
3
|
-
import 'core-js/es7/reflect';
|
|
4
|
-
import 'zone.js/dist/zone';
|
|
5
|
-
import 'zone.js/dist/zone-testing';
|
|
6
|
-
import { getTestBed } from '@angular/core/testing';
|
|
7
|
-
import {
|
|
8
|
-
BrowserDynamicTestingModule,
|
|
9
|
-
platformBrowserDynamicTesting
|
|
10
|
-
} from '@angular/platform-browser-dynamic/testing';
|
|
11
|
-
|
|
12
|
-
declare const require: any;
|
|
13
|
-
|
|
14
|
-
// First, initialize the Angular testing environment.
|
|
15
|
-
getTestBed().initTestEnvironment(
|
|
16
|
-
BrowserDynamicTestingModule,
|
|
17
|
-
platformBrowserDynamicTesting()
|
|
18
|
-
);
|
|
19
|
-
// Then we find all the tests.
|
|
20
|
-
const context = require.context('./', true, /\.spec\.ts$/);
|
|
21
|
-
// And load the modules.
|
|
22
|
-
context.keys().map(context);
|