bbj-screen-widget 2.4.65 → 2.4.67

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.
@@ -14577,6 +14577,7 @@
14577
14577
  'sc-wind-layer',
14578
14578
  'sc-typhoon-area-layer',
14579
14579
  'sc-baidu-fence',
14580
+ 'sc-baidu-lushu',
14580
14581
  ],
14581
14582
  description: 'hasChildItem',
14582
14583
  }),
@@ -16128,8 +16129,11 @@
16128
16129
  var ɵ0$c = { type: 'string', title: 'ID' };
16129
16130
  exports.ɵde = /** @class */ (function (_super_1) {
16130
16131
  __extends(BaiduFenceComponent, _super_1);
16131
- function BaiduFenceComponent() {
16132
- var _this = _super_1.apply(this, __spread(arguments)) || this;
16132
+ function BaiduFenceComponent(parent, zone, message) {
16133
+ var _this = _super_1.call(this, parent, zone) || this;
16134
+ _this.parent = parent;
16135
+ _this.zone = zone;
16136
+ _this.message = message;
16133
16137
  // @Property('标签字体', { ui: { widget: 'myFont', visibleIf: { showLabel: [true] } } })
16134
16138
  // textFont: any = {
16135
16139
  // family: '',
@@ -16146,11 +16150,13 @@
16146
16150
  _this.data = [
16147
16151
  {
16148
16152
  // name: '多边形',
16153
+ id: '1',
16149
16154
  type: 'polygon',
16150
16155
  lnglat: '120.7,28;120.8,28;120.8,27.9;120.7,27.9',
16151
16156
  },
16152
16157
  {
16153
16158
  // name: '圆形',
16159
+ id: '2',
16154
16160
  type: 'circle',
16155
16161
  lnglat: '120.6,27.9',
16156
16162
  radius: 5000,
@@ -16167,8 +16173,15 @@
16167
16173
  });
16168
16174
  return __awaiter(this, void 0, void 0, function () {
16169
16175
  return __generator(this, function (_b) {
16170
- _super.ngOnInit.call(this);
16171
- return [2 /*return*/];
16176
+ switch (_b.label) {
16177
+ case 0:
16178
+ _super.ngOnInit.call(this);
16179
+ return [4 /*yield*/, this.parent.init$];
16180
+ case 1:
16181
+ _b.sent();
16182
+ this.initSearch();
16183
+ return [2 /*return*/];
16184
+ }
16172
16185
  });
16173
16186
  });
16174
16187
  };
@@ -16195,27 +16208,9 @@
16195
16208
  var data = [];
16196
16209
  this.data.forEach(function (r) {
16197
16210
  if (r.type === 'circle') {
16198
- // const radius = (r.radius * 180) / EARTH_RADIUS / Math.PI;
16199
- // // let radius = cradius / 90;
16200
- // let pointNum = 90;
16201
- // let startAngle = 0;
16202
- // let endAngle = Math.PI * 2;
16203
- // let points = [];
16204
- // const lnglat = r.lnglat.split(',');
16205
- // const lng = +lnglat[0];
16206
- // const lat = +lnglat[1];
16207
- // for (var i = 0; i <= pointNum; i++) {
16208
- // const angle = startAngle + ((endAngle - startAngle) * i) / pointNum;
16209
- // const x = lng + (radius * Math.cos(angle)) / Math.abs(Math.cos((lat * Math.PI) / 180));
16210
- // const y = lat + radius * Math.sin(angle);
16211
- // points.push([x, y]);
16212
- // }
16213
- // data.push({
16214
- // geometry: {
16215
- // type: 'Polygon',
16216
- // coordinates: [points],
16217
- // },
16218
- // });
16211
+ if (!r.radius || !r.lnglat) {
16212
+ return;
16213
+ }
16219
16214
  var pointsCount = 90;
16220
16215
  var radius = r.radius;
16221
16216
  var lnglat = r.lnglat.split(',');
@@ -16228,7 +16223,7 @@
16228
16223
  // 遍历 0~360°,生成等间隔的点
16229
16224
  for (var i = 0; i < pointsCount; i++) {
16230
16225
  // 计算当前点的方位角(弧度):从0°到360°,均分pointsCount份
16231
- var angleRad = (i * 360 / pointsCount) * Math.PI / 180;
16226
+ var angleRad = (((i * 360) / pointsCount) * Math.PI) / 180;
16232
16227
  // 计算当前点相对于中心点的经纬度增量(弧度)
16233
16228
  var deltaLatRad = (radius * Math.cos(angleRad)) / EARTH_RADIUS$1;
16234
16229
  var deltaLngRad = (radius * Math.sin(angleRad)) / (EARTH_RADIUS$1 * Math.cos(centerLatRad));
@@ -16246,14 +16241,21 @@
16246
16241
  });
16247
16242
  }
16248
16243
  else {
16249
- var coordinates = r.lnglat.split(';').map(function (r) {
16244
+ if (!r.lnglat) {
16245
+ return;
16246
+ }
16247
+ // const coordinates = r.lnglat.split(';').map((r) => {
16248
+ // const lnglat = r.split(',');
16249
+ // return [+lnglat[0], +lnglat[1]];
16250
+ // });
16251
+ var coordinates = r.lnglat.split('\n').map(function (r) { return r.split(';').map(function (r) {
16250
16252
  var lnglat = r.split(',');
16251
16253
  return [+lnglat[0], +lnglat[1]];
16252
- });
16254
+ }); });
16253
16255
  data.push({
16254
16256
  geometry: {
16255
16257
  type: 'Polygon',
16256
- coordinates: [coordinates],
16258
+ coordinates: coordinates,
16257
16259
  },
16258
16260
  });
16259
16261
  }
@@ -16281,22 +16283,40 @@
16281
16283
  lnglat: lnglat.lng + "," + lnglat.lat,
16282
16284
  radius: radius,
16283
16285
  };
16284
- _this.data.push(data);
16285
- _this.updateData();
16286
+ // this.tempOverlay.forEach((r) => {
16287
+ // this.parent.map.removeOverlay(r);
16288
+ // });
16286
16289
  _this.create.emit(data);
16290
+ _this.editOverlay = null;
16287
16291
  }
16288
16292
  else {
16289
16293
  var points = e.target.overlay.getPoints();
16290
16294
  if (!_this.data) {
16291
16295
  _this.data = [];
16292
16296
  }
16293
- var data = {
16294
- type: 'polygon',
16295
- lnglat: points.map(function (p) { return p.latLng.lng + "," + p.latLng.lat; }).join(';'),
16296
- };
16297
+ var data = void 0;
16298
+ if (points.length && Array.isArray(points[0])) {
16299
+ data = {
16300
+ type: 'polygon',
16301
+ lnglat: points.map(function (ps) { return ps.map(function (p) { return p.latLng.lng + "," + p.latLng.lat; }).join(';'); }).join('\n'),
16302
+ };
16303
+ }
16304
+ else {
16305
+ data = {
16306
+ type: 'polygon',
16307
+ lnglat: points.map(function (p) { return p.latLng.lng + "," + p.latLng.lat; }).join(';'),
16308
+ };
16309
+ }
16297
16310
  _this.create.emit(data);
16298
16311
  }
16299
16312
  });
16313
+ this.scene.addEventListener(OperateEventType.CANCEL, function (e) {
16314
+ console.log(e);
16315
+ if (_this.editOverlay) {
16316
+ _this.parent.map.removeOverlay(_this.editOverlay);
16317
+ _this.editOverlay = null;
16318
+ }
16319
+ });
16300
16320
  }
16301
16321
  switch (type) {
16302
16322
  case 'polygon':
@@ -16345,6 +16365,13 @@
16345
16365
  });
16346
16366
  });
16347
16367
  };
16368
+ BaiduFenceComponent.prototype.getOptions = function () {
16369
+ return {
16370
+ fillColor: this.fillColor,
16371
+ strokeWeight: this.lineWidth,
16372
+ strokeColor: this.lineColor,
16373
+ };
16374
+ };
16348
16375
  BaiduFenceComponent.prototype.updateEditData = function () {
16349
16376
  if (this.editLayer) {
16350
16377
  this.editLayer.setData(this.editData.map(function (r) { return ({ geometry: { type: 'Point', coordinates: r } }); }));
@@ -16387,25 +16414,138 @@
16387
16414
  // this.editData = null;
16388
16415
  };
16389
16416
  BaiduFenceComponent.prototype.search = function () {
16390
- if (!this.searchText) {
16391
- }
16392
- var local = new BMapGL.LocalSearch(this.parent.map, {
16393
- //智能搜索
16394
- onSearchComplete: function (res) {
16395
- console.log(res, local);
16396
- },
16417
+ return __awaiter(this, void 0, void 0, function () {
16418
+ var PolygonEdit, boundary;
16419
+ var _this = this;
16420
+ return __generator(this, function (_b) {
16421
+ switch (_b.label) {
16422
+ case 0: return [4 /*yield*/, import('bmap-draw')];
16423
+ case 1:
16424
+ PolygonEdit = (_b.sent()).PolygonEdit;
16425
+ if (this.areaName) {
16426
+ boundary = new BMapGL.Boundary();
16427
+ // 百度地图 Geocoder.getLocation 回调签名:(results, status)
16428
+ boundary.get(this.areaName, function (results) {
16429
+ console.log('边界坐标数组:', results);
16430
+ // 检查状态是否成功
16431
+ if (results && results.boundaries && results.boundaries.length) {
16432
+ _this.stopDraw();
16433
+ if (!_this.polygonEdit) {
16434
+ _this.polygonEdit = new PolygonEdit(_this.scene);
16435
+ }
16436
+ var points = results.boundaries.map(function (boundary) { return boundary.split(';').map(function (p) {
16437
+ var _b = __read(p.split(','), 2), lng = _b[0], lat = _b[1];
16438
+ return new BMapGL.Point(Number(lng), Number(lat));
16439
+ }); });
16440
+ var overlay = new BMapGL.Polygon(points, _this.getOptions());
16441
+ console.log(overlay);
16442
+ _this.editOverlay = overlay;
16443
+ _this.parent.map.addOverlay(overlay);
16444
+ _this.parent.map.setViewport([].concat.apply([], points));
16445
+ _this.polygonEdit.edit(overlay);
16446
+ }
16447
+ else {
16448
+ _this.message.error('行政区域不存在');
16449
+ }
16450
+ });
16451
+ }
16452
+ return [2 /*return*/];
16453
+ }
16454
+ });
16455
+ });
16456
+ };
16457
+ BaiduFenceComponent.prototype.initSearch = function () {
16458
+ return __awaiter(this, void 0, void 0, function () {
16459
+ var _b, PolygonEdit, CircleEdit, ac;
16460
+ var _this = this;
16461
+ return __generator(this, function (_c) {
16462
+ switch (_c.label) {
16463
+ case 0: return [4 /*yield*/, import('bmap-draw')];
16464
+ case 1:
16465
+ _b = _c.sent(), PolygonEdit = _b.PolygonEdit, CircleEdit = _b.CircleEdit;
16466
+ ac = new BMapGL.Autocomplete({
16467
+ input: this.suggest.nativeElement,
16468
+ location: this.parent.map,
16469
+ });
16470
+ ac.addEventListener('onconfirm', function (e) {
16471
+ // 鼠标点击下拉列表后的事件
16472
+ var value = e.item.value;
16473
+ console.log(e);
16474
+ // 如果正在绘制圆形围栏
16475
+ if (_this.circle) {
16476
+ if (!_this.circleEdit) {
16477
+ _this.circleEdit = new CircleEdit(_this.scene);
16478
+ }
16479
+ var center = new BMapGL.Point(value.location.lng, value.location.lat);
16480
+ _this.parent.map.centerAndZoom(center, 16);
16481
+ var overlay = new BMapGL.Circle(center, 300, _this.getOptions());
16482
+ _this.editOverlay = overlay;
16483
+ _this.parent.map.addOverlay(overlay);
16484
+ _this.circleEdit.open(overlay);
16485
+ _this.searchText = null;
16486
+ }
16487
+ });
16488
+ return [2 /*return*/];
16489
+ }
16490
+ });
16397
16491
  });
16398
- local.search(this.searchText);
16492
+ };
16493
+ BaiduFenceComponent.prototype.moveToView = function (id) {
16494
+ if (!this.data || !id) {
16495
+ return;
16496
+ }
16497
+ var data = this.data.find(function (r) { return r.id === id; });
16498
+ if (!data) {
16499
+ return;
16500
+ }
16501
+ if (data.type === 'circle') {
16502
+ var _b = __read(data.lnglat.split(','), 2), lng = _b[0], lat = _b[1];
16503
+ var centerLng = Number(lng);
16504
+ var centerLat = Number(lat);
16505
+ var radius = Number(data.radius);
16506
+ // 转换中心点纬度为弧度
16507
+ var centerLatRad = (centerLat * Math.PI) / 180;
16508
+ // 计算经度方向的偏移(弧度)
16509
+ var deltaLngRad = radius / (EARTH_RADIUS$1 * Math.cos(centerLatRad));
16510
+ // 计算纬度方向的偏移(弧度)
16511
+ var deltaLatRad = radius / EARTH_RADIUS$1;
16512
+ // 转换为角度偏移
16513
+ var deltaLng = (deltaLngRad * 180) / Math.PI;
16514
+ var deltaLat = (deltaLatRad * 180) / Math.PI;
16515
+ // 计算圆形的四个边界点(上、下、左、右)
16516
+ var points = [
16517
+ new BMapGL.Point(centerLng, centerLat + deltaLat),
16518
+ new BMapGL.Point(centerLng, centerLat - deltaLat),
16519
+ new BMapGL.Point(centerLng - deltaLng, centerLat),
16520
+ new BMapGL.Point(centerLng + deltaLng, centerLat),
16521
+ ];
16522
+ // 使用 setViewport 方法调整视图,使整个圆形可见
16523
+ this.parent.map.setViewport(points);
16524
+ }
16525
+ else {
16526
+ this.parent.map.setViewport(data.lnglat.split(/[;\n\r]+/).map(function (p) {
16527
+ var _b = __read(p.split(','), 2), lng = _b[0], lat = _b[1];
16528
+ return new BMapGL.Point(Number(lng), Number(lat));
16529
+ }));
16530
+ }
16399
16531
  };
16400
16532
  return BaiduFenceComponent;
16401
16533
  }(BaseLayer));
16402
16534
  exports.ɵde.decorators = [
16403
16535
  { type: i0.Component, args: [{
16404
16536
  selector: 'sc-baidu-fence',
16405
- template: "<ng-container *ngIf=\"showDrawButton\">\n <button nz-button (click)=\"startDraw('polygon')\">\u7ED8\u5236\u591A\u8FB9\u5F62</button>\n <button nz-button (click)=\"startDraw('circle')\">\u7ED8\u5236\u5706\u5F62</button>\n <button nz-button (click)=\"stopDraw()\">\u7ED3\u675F\u7ED8\u5236</button>\n</ng-container>\n\n<!-- <input type=\"text\" placeholder=\"\u8BF7\u8F93\u5165\u5730\u70B9\" [(ngModel)]=\"searchText\" />\n<button nz-button (click)=\"search()\">\u67E5\u8BE2</button> -->\n",
16406
- styles: [":host{position:absolute;display:block;left:0;top:0;z-index:100;padding:12px;pointer-events:auto}button{transition:none}"]
16537
+ template: "<ng-container *ngIf=\"showDrawButton\">\n <button nz-button (click)=\"startDraw('polygon')\">\u7ED8\u5236\u591A\u8FB9\u5F62</button>\n <button nz-button (click)=\"startDraw('circle')\">\u7ED8\u5236\u5706\u5F62</button>\n <button nz-button (click)=\"stopDraw()\">\u7ED3\u675F\u7ED8\u5236</button>\n <button nz-button (click)=\"moveToView('1')\">\u79FB\u52A8\u5230\u4E2D\u5FC31</button>\n <button nz-button (click)=\"moveToView('2')\">\u79FB\u52A8\u5230\u4E2D\u5FC32</button>\n</ng-container>\n<input\n nz-input\n [ngClass]=\"{ hidden: !circle?.isOpen }\"\n #suggest\n type=\"text\"\n [(ngModel)]=\"searchText\"\n placeholder=\"\u8BF7\u8F93\u5165\u4E2D\u5FC3\u70B9\u4F4D\u7F6E\"\n class=\"input\"\n/>\n<ng-container *ngIf=\"polygon?.isOpen\">\n <input nz-input type=\"text\" placeholder=\"\u8BF7\u8F93\u5165\u884C\u653F\u533A\u540D\u79F0\" [(ngModel)]=\"areaName\" class=\"input\" />\n <button nz-button (click)=\"search()\" style=\"margin-left: 12px\">\u786E\u8BA4</button>\n</ng-container>\n<!-- <input type=\"text\" placeholder=\"\u8BF7\u8F93\u5165\u5730\u70B9\" [(ngModel)]=\"searchText\" />\n<button nz-button (click)=\"search()\">\u67E5\u8BE2</button> -->\n",
16538
+ styles: [":host{position:absolute;display:block;left:0;top:0;z-index:100;padding:12px;pointer-events:auto}button{transition:none}.hidden{display:none}.input{width:300px;margin-left:12px}"]
16407
16539
  },] }
16408
16540
  ];
16541
+ exports.ɵde.ctorParameters = function () { return [
16542
+ { type: exports.ɵcy },
16543
+ { type: i0.NgZone },
16544
+ { type: message.NzMessageService }
16545
+ ]; };
16546
+ exports.ɵde.propDecorators = {
16547
+ suggest: [{ type: i0.ViewChild, args: ['suggest',] }]
16548
+ };
16409
16549
  __decorate([
16410
16550
  bbjWidgetBase.Property('线条宽度', {
16411
16551
  ui: { widget: 'myRange', min: 1, max: 40, step: 1 },
@@ -16477,15 +16617,253 @@
16477
16617
  __metadata("design:paramtypes", []),
16478
16618
  __metadata("design:returntype", void 0)
16479
16619
  ], exports.ɵde.prototype, "stopDraw", null);
16620
+ __decorate([
16621
+ bbjWidgetBase.Method('移动到中心'),
16622
+ __param(0, bbjWidgetBase.Param('id')),
16623
+ __metadata("design:type", Function),
16624
+ __metadata("design:paramtypes", [String]),
16625
+ __metadata("design:returntype", void 0)
16626
+ ], exports.ɵde.prototype, "moveToView", null);
16480
16627
  exports.ɵde = __decorate([
16481
16628
  bbjWidgetBase.Widget('电子围栏', {
16482
16629
  group: 'component',
16483
16630
  image: '',
16484
16631
  icon: '',
16485
16632
  hidden: true,
16486
- })
16633
+ }),
16634
+ __metadata("design:paramtypes", [exports.ɵcy,
16635
+ i0.NgZone,
16636
+ message.NzMessageService])
16487
16637
  ], exports.ɵde);
16488
16638
 
16639
+ exports.ɵdf = /** @class */ (function () {
16640
+ function BaiduLushuComponent(parent, lazy, zone) {
16641
+ this.parent = parent;
16642
+ this.lazy = lazy;
16643
+ this.zone = zone;
16644
+ this.speed = 500;
16645
+ this.iconWidth = 32;
16646
+ this.iconHeight = 32;
16647
+ this.showPolyline = true;
16648
+ this.polylineColor = '#111';
16649
+ this.autoStart = true;
16650
+ // @Property('自动视野调整', { type: 'boolean' })
16651
+ // autoView = true;
16652
+ this.enableRotation = true;
16653
+ this.defaultContent = '行驶中';
16654
+ this.data = [
16655
+ {
16656
+ lng: '120.7',
16657
+ lat: '28',
16658
+ },
16659
+ {
16660
+ lng: '120.71',
16661
+ lat: '28.01',
16662
+ landmark: '加油站',
16663
+ pauseTime: 2,
16664
+ },
16665
+ {
16666
+ lng: '120.79',
16667
+ lat: '28.1',
16668
+ },
16669
+ ];
16670
+ this.lushu = null;
16671
+ this.inited = false;
16672
+ }
16673
+ BaiduLushuComponent.prototype.ngOnInit = function () {
16674
+ var _this = this;
16675
+ this.zone.runOutsideAngular(function () { return __awaiter(_this, void 0, void 0, function () {
16676
+ return __generator(this, function (_b) {
16677
+ switch (_b.label) {
16678
+ case 0: return [4 /*yield*/, this.parent.init$];
16679
+ case 1:
16680
+ _b.sent();
16681
+ return [4 /*yield*/, this.lazy.loadScript('/assets/js/BMapGL/Lushu.js')];
16682
+ case 2:
16683
+ _b.sent();
16684
+ this.inited = true;
16685
+ this.update();
16686
+ return [2 /*return*/];
16687
+ }
16688
+ });
16689
+ }); });
16690
+ };
16691
+ BaiduLushuComponent.prototype.ngOnChanges = function (changes) {
16692
+ var _this = this;
16693
+ if (this.inited) {
16694
+ this.zone.runOutsideAngular(function () {
16695
+ _this.update();
16696
+ });
16697
+ }
16698
+ };
16699
+ BaiduLushuComponent.prototype.ngOnDestroy = function () {
16700
+ this.clear();
16701
+ };
16702
+ BaiduLushuComponent.prototype.update = function () {
16703
+ var _a;
16704
+ this.clear();
16705
+ if (!((_a = this.data) === null || _a === void 0 ? void 0 : _a.length)) {
16706
+ return;
16707
+ }
16708
+ var landmarkPois = [];
16709
+ var arrPois = this.data.map(function (item) {
16710
+ if (item.landmark || item.pauseTime) {
16711
+ landmarkPois.push({
16712
+ lng: Number(item.lng),
16713
+ lat: Number(item.lat),
16714
+ html: item.landmark,
16715
+ pauseTime: item.pauseTime ? Number(item.pauseTime) : 0,
16716
+ });
16717
+ }
16718
+ return new BMapGL.Point(item.lng, item.lat);
16719
+ });
16720
+ if (this.showPolyline) {
16721
+ this.polyline = new BMapGL.Polyline(arrPois, { strokeColor: this.polylineColor });
16722
+ this.parent.map.addOverlay(this.polyline);
16723
+ }
16724
+ this.lushu = new BMapGLLib.LuShu(this.parent.map, arrPois, {
16725
+ defaultContent: this.defaultContent || '',
16726
+ autoView: false,
16727
+ icon: new BMapGL.Icon(this.icon || '/assets/img/screen/car.png', new BMapGL.Size(this.iconWidth, this.iconHeight), {
16728
+ anchor: new BMapGL.Size(10, 10),
16729
+ }),
16730
+ speed: this.speed,
16731
+ enableRotation: this.enableRotation,
16732
+ // defaultContent不为空时才会显示
16733
+ landmarkPois: landmarkPois,
16734
+ });
16735
+ if (this.autoStart) {
16736
+ this.start();
16737
+ }
16738
+ };
16739
+ BaiduLushuComponent.prototype.start = function () {
16740
+ if (this.lushu) {
16741
+ this.parent.map.setViewport(this.lushu.path);
16742
+ this.lushu.start();
16743
+ }
16744
+ };
16745
+ BaiduLushuComponent.prototype.stop = function () {
16746
+ if (this.lushu) {
16747
+ this.lushu.stop();
16748
+ }
16749
+ };
16750
+ BaiduLushuComponent.prototype.pause = function () {
16751
+ if (this.lushu) {
16752
+ this.lushu.pause();
16753
+ }
16754
+ };
16755
+ BaiduLushuComponent.prototype.clear = function () {
16756
+ if (this.lushu) {
16757
+ this.lushu.clear();
16758
+ this.lushu = null;
16759
+ }
16760
+ if (this.polyline) {
16761
+ this.parent.map.removeOverlay(this.polyline);
16762
+ }
16763
+ };
16764
+ BaiduLushuComponent.prototype.setSpeed = function (speed) {
16765
+ if (speed) {
16766
+ this.speed = speed;
16767
+ this.update();
16768
+ }
16769
+ };
16770
+ return BaiduLushuComponent;
16771
+ }());
16772
+ exports.ɵdf.decorators = [
16773
+ { type: i0.Component, args: [{
16774
+ selector: 'sc-baidu-lushu',
16775
+ template: "",
16776
+ styles: [""]
16777
+ },] }
16778
+ ];
16779
+ exports.ɵdf.ctorParameters = function () { return [
16780
+ { type: exports.ɵcy },
16781
+ { type: util.LazyService },
16782
+ { type: i0.NgZone }
16783
+ ]; };
16784
+ __decorate([
16785
+ bbjWidgetBase.Property('速度', { type: 'number' }),
16786
+ __metadata("design:type", Object)
16787
+ ], exports.ɵdf.prototype, "speed", void 0);
16788
+ __decorate([
16789
+ bbjWidgetBase.Property('图标', { type: 'string', ui: { widget: 'myPicture' } }),
16790
+ __metadata("design:type", String)
16791
+ ], exports.ɵdf.prototype, "icon", void 0);
16792
+ __decorate([
16793
+ bbjWidgetBase.Property('图标宽度', { type: 'number' }),
16794
+ __metadata("design:type", Number)
16795
+ ], exports.ɵdf.prototype, "iconWidth", void 0);
16796
+ __decorate([
16797
+ bbjWidgetBase.Property('图标高度', { type: 'number' }),
16798
+ __metadata("design:type", Number)
16799
+ ], exports.ɵdf.prototype, "iconHeight", void 0);
16800
+ __decorate([
16801
+ bbjWidgetBase.Property('显示轨迹', { type: 'boolean' }),
16802
+ __metadata("design:type", Object)
16803
+ ], exports.ɵdf.prototype, "showPolyline", void 0);
16804
+ __decorate([
16805
+ bbjWidgetBase.Property('轨迹颜色', { type: 'string', ui: { widget: 'myColor', visibleIf: { showPolyline: [true] } } }),
16806
+ __metadata("design:type", String)
16807
+ ], exports.ɵdf.prototype, "polylineColor", void 0);
16808
+ __decorate([
16809
+ bbjWidgetBase.Property('自动播放', { type: 'boolean' }),
16810
+ __metadata("design:type", Object)
16811
+ ], exports.ɵdf.prototype, "autoStart", void 0);
16812
+ __decorate([
16813
+ bbjWidgetBase.Property('自动转向', { type: 'boolean' }),
16814
+ __metadata("design:type", Object)
16815
+ ], exports.ɵdf.prototype, "enableRotation", void 0);
16816
+ __decorate([
16817
+ bbjWidgetBase.Property('默认内容', { type: 'string' }),
16818
+ __metadata("design:type", Object)
16819
+ ], exports.ɵdf.prototype, "defaultContent", void 0);
16820
+ __decorate([
16821
+ bbjWidgetBase.Data({
16822
+ properties: {
16823
+ lng: { type: 'number', title: '经度' },
16824
+ lat: { type: 'number', title: '纬度' },
16825
+ landmark: { type: 'string', title: '标记点' },
16826
+ pauseTime: { type: 'number', title: '暂停时间' },
16827
+ },
16828
+ }),
16829
+ __metadata("design:type", Array)
16830
+ ], exports.ɵdf.prototype, "data", void 0);
16831
+ __decorate([
16832
+ bbjWidgetBase.Method('播放'),
16833
+ __metadata("design:type", Function),
16834
+ __metadata("design:paramtypes", []),
16835
+ __metadata("design:returntype", void 0)
16836
+ ], exports.ɵdf.prototype, "start", null);
16837
+ __decorate([
16838
+ bbjWidgetBase.Method('停止'),
16839
+ __metadata("design:type", Function),
16840
+ __metadata("design:paramtypes", []),
16841
+ __metadata("design:returntype", void 0)
16842
+ ], exports.ɵdf.prototype, "stop", null);
16843
+ __decorate([
16844
+ bbjWidgetBase.Method('暂停'),
16845
+ __metadata("design:type", Function),
16846
+ __metadata("design:paramtypes", []),
16847
+ __metadata("design:returntype", void 0)
16848
+ ], exports.ɵdf.prototype, "pause", null);
16849
+ __decorate([
16850
+ bbjWidgetBase.Method('设置速度'),
16851
+ __metadata("design:type", Function),
16852
+ __metadata("design:paramtypes", [Number]),
16853
+ __metadata("design:returntype", void 0)
16854
+ ], exports.ɵdf.prototype, "setSpeed", null);
16855
+ exports.ɵdf = __decorate([
16856
+ bbjWidgetBase.Widget('轨迹', {
16857
+ group: 'component',
16858
+ image: '',
16859
+ icon: '',
16860
+ hidden: true,
16861
+ }),
16862
+ __metadata("design:paramtypes", [exports.ɵcy,
16863
+ util.LazyService,
16864
+ i0.NgZone])
16865
+ ], exports.ɵdf);
16866
+
16489
16867
  var CustomBaiduMapModule = /** @class */ (function () {
16490
16868
  function CustomBaiduMapModule(widgetService) {
16491
16869
  widgetService.register(exports.ɵcy, { scaleContent: false });
@@ -16494,6 +16872,7 @@
16494
16872
  widgetService.register(exports.ɵdc);
16495
16873
  widgetService.register(exports.ɵdd);
16496
16874
  widgetService.register(exports.ɵde);
16875
+ widgetService.register(exports.ɵdf);
16497
16876
  }
16498
16877
  return CustomBaiduMapModule;
16499
16878
  }());
@@ -16506,6 +16885,7 @@
16506
16885
  exports.ɵdc,
16507
16886
  exports.ɵdd,
16508
16887
  exports.ɵde,
16888
+ exports.ɵdf,
16509
16889
  ],
16510
16890
  imports: [
16511
16891
  common.CommonModule,
@@ -16516,6 +16896,7 @@
16516
16896
  radio.NzRadioModule,
16517
16897
  forms.FormsModule,
16518
16898
  button.NzButtonModule,
16899
+ input.NzInputModule,
16519
16900
  ],
16520
16901
  },] }
16521
16902
  ];
@@ -16722,7 +17103,7 @@
16722
17103
  'iconzhinanzhen',
16723
17104
  ];
16724
17105
 
16725
- exports.ɵdg = /** @class */ (function () {
17106
+ exports.ɵdh = /** @class */ (function () {
16726
17107
  function UploadComponent(msg) {
16727
17108
  var _this = this;
16728
17109
  this.msg = msg;
@@ -16809,14 +17190,14 @@
16809
17190
  };
16810
17191
  return UploadComponent;
16811
17192
  }());
16812
- exports.ɵdg.decorators = [
17193
+ exports.ɵdh.decorators = [
16813
17194
  { type: i0.Component, args: [{
16814
17195
  selector: 'sc-upload',
16815
17196
  template: "<div class=\"content\">\n <nz-upload\n nzAction=\"/api/screen/fileUpload\"\n [nzHeaders]=\"{ authorization: 'authorization-text' }\"\n (nzChange)=\"handleChange($event)\"\n [nzLimit]=\"1\"\n [ngClass]=\"class\"\n [nzListType]=\"listType\"\n [nzShowUploadList]=\"showUploadList\"\n [nzMultiple]=\"true\"\n [nzBeforeUpload]=\"beforeUpload\"\n nzType=\"{{type}}\"\n\n\n >\n <button nz-button *ngIf=\"style === 'classics'\"><i nz-icon nzType=\"upload\"></i>\u70B9\u51FB\u4E0A\u4F20</button>\n <ng-container *ngIf=\"style === 'portrait'\">\n <ng-container *ngIf=\"!avatarUrl\">\n <i class=\"upload-icon\" nz-icon [nzType]=\"loading ? 'loading' : 'plus'\"></i>\n <div class=\"ant-upload-text\">Upload</div>\n </ng-container>\n <img *ngIf=\"avatarUrl\" [src]=\"avatarUrl\" style=\"width: 100%\"/>\n </ng-container>\n <ng-container *ngIf=\"style==='drag'\">\n <p class=\"ant-upload-drag-icon\">\n <i nz-icon nzType=\"inbox\"></i>\n </p>\n <p class=\"ant-upload-text\">\u70B9\u51FB\u6216\u8005\u62D6\u62FD\u4E0A\u4F20</p>\n <p class=\"ant-upload-hint\"></p>\n </ng-container>\n </nz-upload>\n</div>\n",
16816
17197
  styles: [":host{display:block;text-align:center}:host,div.content{height:100%;width:100%}div.content{display:flex;align-items:center;justify-content:center}"]
16817
17198
  },] }
16818
17199
  ];
16819
- exports.ɵdg.ctorParameters = function () { return [
17200
+ exports.ɵdh.ctorParameters = function () { return [
16820
17201
  { type: message.NzMessageService }
16821
17202
  ]; };
16822
17203
  __decorate([
@@ -16832,29 +17213,29 @@
16832
17213
  ],
16833
17214
  }),
16834
17215
  __metadata("design:type", Object)
16835
- ], exports.ɵdg.prototype, "style", void 0);
17216
+ ], exports.ɵdh.prototype, "style", void 0);
16836
17217
  __decorate([
16837
17218
  bbjWidgetBase.DataOutput('值'),
16838
17219
  __metadata("design:type", Object)
16839
- ], exports.ɵdg.prototype, "valueChange", void 0);
16840
- exports.ɵdg = __decorate([
17220
+ ], exports.ɵdh.prototype, "valueChange", void 0);
17221
+ exports.ɵdh = __decorate([
16841
17222
  bbjWidgetBase.Widget('文件上传', {
16842
17223
  group: 'component',
16843
17224
  image: 'assets/img/screen/file-upload.png',
16844
17225
  icon: 'icontubiao',
16845
17226
  }),
16846
17227
  __metadata("design:paramtypes", [message.NzMessageService])
16847
- ], exports.ɵdg);
17228
+ ], exports.ɵdh);
16848
17229
 
16849
17230
  var UploadModule = /** @class */ (function () {
16850
17231
  function UploadModule(widgetService) {
16851
- widgetService.register(exports.ɵdg);
17232
+ widgetService.register(exports.ɵdh);
16852
17233
  }
16853
17234
  return UploadModule;
16854
17235
  }());
16855
17236
  UploadModule.decorators = [
16856
17237
  { type: i0.NgModule, args: [{
16857
- declarations: [exports.ɵdg],
17238
+ declarations: [exports.ɵdh],
16858
17239
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, icon.NzIconModule, upload.NzUploadModule, button.NzButtonModule],
16859
17240
  },] }
16860
17241
  ];
@@ -16862,7 +17243,7 @@
16862
17243
  { type: bbjWidgetBase.WidgetService }
16863
17244
  ]; };
16864
17245
 
16865
- exports.ɵdh = /** @class */ (function () {
17246
+ exports.ɵdi = /** @class */ (function () {
16866
17247
  function CrossTableComponent() {
16867
17248
  this.pageSize = 10;
16868
17249
  this.theadBackground = '#fafafa';
@@ -17050,18 +17431,18 @@
17050
17431
  };
17051
17432
  return CrossTableComponent;
17052
17433
  }());
17053
- exports.ɵdh.decorators = [
17434
+ exports.ɵdi.decorators = [
17054
17435
  { type: i0.Component, args: [{
17055
17436
  selector: 'sc-cross-table',
17056
17437
  template: "<nz-table #basicTable [nzData]=\"data\" [nzScroll]=\"{ x: '50px', y: '100%' }\" [nzPageSize]=\"pageSize\"\n [ngStyle]=\"bodyStyle\"\n [nzBordered]=\"showBorder\" [nzWidthConfig]=\"widthConfig\" [nzFrontPagination]=\"needPage\">\n <thead>\n <tr >\n <th *ngFor=\"let head of ths\" nzAlign=\"{{contentAlign}}\" [ngStyle]=\"headStyle\">{{ head }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let row of basicTable.data\" >\n <ng-container *ngFor=\"let td of row\">\n <td nzAlign=\"{{contentAlign}}\" [ngStyle]=\"bodyStyle\">{{td.value}}</td>\n </ng-container>\n </tr>\n </tbody>\n</nz-table>\n",
17057
17438
  styles: [":host{display:block;width:100%}.ant-table-wrapper,.ant-table-wrapper ::ng-deep.ant-spin-nested-loading,:host{height:100%}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container{height:100%;display:flex;flex-direction:column}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table{background:inherit;flex:1;overflow:hidden}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-thead>tr>th{background:inherit}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container{height:100%;display:flex;flex-direction:column}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header{flex:none}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-body{flex:1;overflow:auto}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table-pagination-right{align-self:flex-end}"]
17058
17439
  },] }
17059
17440
  ];
17060
- exports.ɵdh.ctorParameters = function () { return []; };
17441
+ exports.ɵdi.ctorParameters = function () { return []; };
17061
17442
  __decorate([
17062
17443
  bbjWidgetBase.Property('条数/页', { ui: { widget: 'myRange', min: 1, max: 100, step: 1 } }),
17063
17444
  __metadata("design:type", Object)
17064
- ], exports.ɵdh.prototype, "pageSize", void 0);
17445
+ ], exports.ɵdi.prototype, "pageSize", void 0);
17065
17446
  __decorate([
17066
17447
  bbjWidgetBase.Property('表头背景', {
17067
17448
  ui: {
@@ -17070,11 +17451,11 @@
17070
17451
  },
17071
17452
  }),
17072
17453
  __metadata("design:type", Object)
17073
- ], exports.ɵdh.prototype, "theadBackground", void 0);
17454
+ ], exports.ɵdi.prototype, "theadBackground", void 0);
17074
17455
  __decorate([
17075
17456
  bbjWidgetBase.Property('表头字体', { ui: { widget: 'myFont' } }),
17076
17457
  __metadata("design:type", Object)
17077
- ], exports.ɵdh.prototype, "headFont", void 0);
17458
+ ], exports.ɵdi.prototype, "headFont", void 0);
17078
17459
  __decorate([
17079
17460
  bbjWidgetBase.Property('内容对齐', {
17080
17461
  type: 'string',
@@ -17088,7 +17469,7 @@
17088
17469
  ],
17089
17470
  }),
17090
17471
  __metadata("design:type", Object)
17091
- ], exports.ɵdh.prototype, "contentAlign", void 0);
17472
+ ], exports.ɵdi.prototype, "contentAlign", void 0);
17092
17473
  __decorate([
17093
17474
  bbjWidgetBase.Property('表格背景', {
17094
17475
  ui: {
@@ -17097,7 +17478,7 @@
17097
17478
  },
17098
17479
  }),
17099
17480
  __metadata("design:type", Object)
17100
- ], exports.ɵdh.prototype, "tbodyBackground", void 0);
17481
+ ], exports.ɵdi.prototype, "tbodyBackground", void 0);
17101
17482
  __decorate([
17102
17483
  bbjWidgetBase.Property('显示边框', {
17103
17484
  type: 'boolean',
@@ -17107,11 +17488,11 @@
17107
17488
  },
17108
17489
  }),
17109
17490
  __metadata("design:type", Object)
17110
- ], exports.ɵdh.prototype, "showBorder", void 0);
17491
+ ], exports.ɵdi.prototype, "showBorder", void 0);
17111
17492
  __decorate([
17112
17493
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
17113
17494
  __metadata("design:type", Object)
17114
- ], exports.ɵdh.prototype, "font", void 0);
17495
+ ], exports.ɵdi.prototype, "font", void 0);
17115
17496
  __decorate([
17116
17497
  bbjWidgetBase.Property('交叉字段', {
17117
17498
  cross: {
@@ -17121,7 +17502,7 @@
17121
17502
  required: [''],
17122
17503
  }),
17123
17504
  __metadata("design:type", Object)
17124
- ], exports.ɵdh.prototype, "cross", void 0);
17505
+ ], exports.ɵdi.prototype, "cross", void 0);
17125
17506
  __decorate([
17126
17507
  bbjWidgetBase.Property('显示分页', {
17127
17508
  type: 'boolean',
@@ -17131,7 +17512,7 @@
17131
17512
  },
17132
17513
  }),
17133
17514
  __metadata("design:type", Object)
17134
- ], exports.ɵdh.prototype, "needPage", void 0);
17515
+ ], exports.ɵdi.prototype, "needPage", void 0);
17135
17516
  __decorate([
17136
17517
  bbjWidgetBase.Property('绑定值', {
17137
17518
  crossVal: {
@@ -17141,29 +17522,29 @@
17141
17522
  required: [''],
17142
17523
  }),
17143
17524
  __metadata("design:type", Object)
17144
- ], exports.ɵdh.prototype, "crossVal", void 0);
17525
+ ], exports.ɵdi.prototype, "crossVal", void 0);
17145
17526
  __decorate([
17146
17527
  bbjWidgetBase.Data({}),
17147
17528
  __metadata("design:type", Array)
17148
- ], exports.ɵdh.prototype, "_data", void 0);
17529
+ ], exports.ɵdi.prototype, "_data", void 0);
17149
17530
  __decorate([
17150
17531
  bbjWidgetBase.DataSchema('_data'),
17151
17532
  __metadata("design:type", Object)
17152
- ], exports.ɵdh.prototype, "schema", void 0);
17153
- exports.ɵdh = __decorate([
17533
+ ], exports.ɵdi.prototype, "schema", void 0);
17534
+ exports.ɵdi = __decorate([
17154
17535
  bbjWidgetBase.Widget('交叉表格', { group: 'table', icon: 'icontubiao', image: '/assets/img/screen/cross-table.png' }),
17155
17536
  __metadata("design:paramtypes", [])
17156
- ], exports.ɵdh);
17537
+ ], exports.ɵdi);
17157
17538
 
17158
17539
  var CrossTableModule = /** @class */ (function () {
17159
17540
  function CrossTableModule(widgetService) {
17160
- widgetService.register(exports.ɵdh);
17541
+ widgetService.register(exports.ɵdi);
17161
17542
  }
17162
17543
  return CrossTableModule;
17163
17544
  }());
17164
17545
  CrossTableModule.decorators = [
17165
17546
  { type: i0.NgModule, args: [{
17166
- declarations: [exports.ɵdh],
17547
+ declarations: [exports.ɵdi],
17167
17548
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, table.NzTableModule],
17168
17549
  },] }
17169
17550
  ];
@@ -17937,7 +18318,7 @@
17937
18318
  { type: util.LazyService }
17938
18319
  ]; };
17939
18320
 
17940
- exports.ɵdj = /** @class */ (function () {
18321
+ exports.ɵdk = /** @class */ (function () {
17941
18322
  function Pie3dChartComponent(highChartsService) {
17942
18323
  this.highChartsService = highChartsService;
17943
18324
  this.title = '';
@@ -18137,34 +18518,34 @@
18137
18518
  };
18138
18519
  return Pie3dChartComponent;
18139
18520
  }());
18140
- exports.ɵdj.initPluginPromise = null;
18141
- exports.ɵdj.decorators = [
18521
+ exports.ɵdk.initPluginPromise = null;
18522
+ exports.ɵdk.decorators = [
18142
18523
  { type: i0.Component, args: [{
18143
18524
  selector: 'sc-pie3d-chart',
18144
18525
  template: "<div #container style=\"height: 100%\"></div>\n",
18145
18526
  styles: [":host::ng-deep .highcharts-background,:host::ng-deep .highcharts-credits{display:none}"]
18146
18527
  },] }
18147
18528
  ];
18148
- exports.ɵdj.ctorParameters = function () { return [
18529
+ exports.ɵdk.ctorParameters = function () { return [
18149
18530
  { type: HighChartsService }
18150
18531
  ]; };
18151
- exports.ɵdj.propDecorators = {
18532
+ exports.ɵdk.propDecorators = {
18152
18533
  container: [{ type: i0.ViewChild, args: ['container', { static: true },] }]
18153
18534
  };
18154
18535
  __decorate([
18155
18536
  bbjWidgetBase.Property('标题', { type: 'string' }),
18156
18537
  __metadata("design:type", Object)
18157
- ], exports.ɵdj.prototype, "title", void 0);
18538
+ ], exports.ɵdk.prototype, "title", void 0);
18158
18539
  __decorate([
18159
18540
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
18160
18541
  __metadata("design:type", Object)
18161
- ], exports.ɵdj.prototype, "font", void 0);
18542
+ ], exports.ɵdk.prototype, "font", void 0);
18162
18543
  __decorate([
18163
18544
  bbjWidgetBase.Property('浮标', {
18164
18545
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18165
18546
  }),
18166
18547
  __metadata("design:type", Object)
18167
- ], exports.ɵdj.prototype, "buoy", void 0);
18548
+ ], exports.ɵdk.prototype, "buoy", void 0);
18168
18549
  __decorate([
18169
18550
  bbjWidgetBase.Property('填充', {
18170
18551
  ui: {
@@ -18173,33 +18554,33 @@
18173
18554
  },
18174
18555
  }),
18175
18556
  __metadata("design:type", Object)
18176
- ], exports.ɵdj.prototype, "colors", void 0);
18557
+ ], exports.ɵdk.prototype, "colors", void 0);
18177
18558
  __decorate([
18178
18559
  bbjWidgetBase.Property('饼图厚度', { type: 'number' }),
18179
18560
  __metadata("design:type", Object)
18180
- ], exports.ɵdj.prototype, "thickness", void 0);
18561
+ ], exports.ɵdk.prototype, "thickness", void 0);
18181
18562
  __decorate([
18182
18563
  bbjWidgetBase.Property('倾斜角度', { type: 'number' }),
18183
18564
  __metadata("design:type", Object)
18184
- ], exports.ɵdj.prototype, "angle", void 0);
18565
+ ], exports.ɵdk.prototype, "angle", void 0);
18185
18566
  __decorate([
18186
18567
  bbjWidgetBase.Property('图例开关', {
18187
18568
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18188
18569
  }),
18189
18570
  __metadata("design:type", Object)
18190
- ], exports.ɵdj.prototype, "showLegend", void 0);
18571
+ ], exports.ɵdk.prototype, "showLegend", void 0);
18191
18572
  __decorate([
18192
18573
  bbjWidgetBase.Property('图例间距', { type: 'number' }),
18193
18574
  __metadata("design:type", Object)
18194
- ], exports.ɵdj.prototype, "itemDistance", void 0);
18575
+ ], exports.ɵdk.prototype, "itemDistance", void 0);
18195
18576
  __decorate([
18196
18577
  bbjWidgetBase.Property('高度系数', { type: 'number' }),
18197
18578
  __metadata("design:type", Object)
18198
- ], exports.ɵdj.prototype, "coefficient", void 0);
18579
+ ], exports.ɵdk.prototype, "coefficient", void 0);
18199
18580
  __decorate([
18200
18581
  bbjWidgetBase.Property('开始角度', { type: 'number' }),
18201
18582
  __metadata("design:type", Object)
18202
- ], exports.ɵdj.prototype, "startAngle", void 0);
18583
+ ], exports.ɵdk.prototype, "startAngle", void 0);
18203
18584
  __decorate([
18204
18585
  bbjWidgetBase.Property('图例水平', {
18205
18586
  ui: { widget: 'select' },
@@ -18210,7 +18591,7 @@
18210
18591
  ],
18211
18592
  }),
18212
18593
  __metadata("design:type", Object)
18213
- ], exports.ɵdj.prototype, "alignType", void 0);
18594
+ ], exports.ɵdk.prototype, "alignType", void 0);
18214
18595
  __decorate([
18215
18596
  bbjWidgetBase.Property('图例垂直', {
18216
18597
  ui: { widget: 'select' },
@@ -18221,11 +18602,11 @@
18221
18602
  ],
18222
18603
  }),
18223
18604
  __metadata("design:type", Object)
18224
- ], exports.ɵdj.prototype, "verticalAlign", void 0);
18605
+ ], exports.ɵdk.prototype, "verticalAlign", void 0);
18225
18606
  __decorate([
18226
18607
  bbjWidgetBase.Property('提示框字体', { ui: { widget: 'myFont' } }),
18227
18608
  __metadata("design:type", Object)
18228
- ], exports.ɵdj.prototype, "tooltipFont", void 0);
18609
+ ], exports.ɵdk.prototype, "tooltipFont", void 0);
18229
18610
  __decorate([
18230
18611
  bbjWidgetBase.Data({
18231
18612
  properties: {
@@ -18234,25 +18615,25 @@
18234
18615
  },
18235
18616
  }),
18236
18617
  __metadata("design:type", Object)
18237
- ], exports.ɵdj.prototype, "_data", void 0);
18238
- exports.ɵdj = __decorate([
18618
+ ], exports.ɵdk.prototype, "_data", void 0);
18619
+ exports.ɵdk = __decorate([
18239
18620
  bbjWidgetBase.Widget('3D饼图', {
18240
18621
  group: 'pieChart',
18241
18622
  image: 'assets/img/screen/pie3d.png',
18242
18623
  icon: 'icontubiao',
18243
18624
  }),
18244
18625
  __metadata("design:paramtypes", [HighChartsService])
18245
- ], exports.ɵdj);
18626
+ ], exports.ɵdk);
18246
18627
 
18247
18628
  var Pie3dChartModule = /** @class */ (function () {
18248
18629
  function Pie3dChartModule(widgetService) {
18249
- widgetService.register(exports.ɵdj);
18630
+ widgetService.register(exports.ɵdk);
18250
18631
  }
18251
18632
  return Pie3dChartModule;
18252
18633
  }());
18253
18634
  Pie3dChartModule.decorators = [
18254
18635
  { type: i0.NgModule, args: [{
18255
- declarations: [exports.ɵdj],
18636
+ declarations: [exports.ɵdk],
18256
18637
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule],
18257
18638
  },] }
18258
18639
  ];
@@ -18260,7 +18641,7 @@
18260
18641
  { type: bbjWidgetBase.WidgetService }
18261
18642
  ]; };
18262
18643
 
18263
- exports.ɵdm = /** @class */ (function () {
18644
+ exports.ɵdn = /** @class */ (function () {
18264
18645
  function MultiTitleGaugeComponent() {
18265
18646
  this.font = {
18266
18647
  family: '',
@@ -18430,28 +18811,28 @@
18430
18811
  };
18431
18812
  return MultiTitleGaugeComponent;
18432
18813
  }());
18433
- exports.ɵdm.decorators = [
18814
+ exports.ɵdn.decorators = [
18434
18815
  { type: i0.Component, args: [{
18435
18816
  selector: 'sc-multi-title-gauge',
18436
18817
  template: "<div echarts [options]=\"chartOption\" class=\"demo-chart\" [initOpts]=\"{ renderer: 'svg' }\"></div>\n",
18437
18818
  styles: [":host{display:block;width:100%}.demo-chart,:host{height:100%}"]
18438
18819
  },] }
18439
18820
  ];
18440
- exports.ɵdm.ctorParameters = function () { return []; };
18821
+ exports.ɵdn.ctorParameters = function () { return []; };
18441
18822
  __decorate([
18442
18823
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
18443
18824
  __metadata("design:type", Object)
18444
- ], exports.ɵdm.prototype, "font", void 0);
18825
+ ], exports.ɵdn.prototype, "font", void 0);
18445
18826
  __decorate([
18446
18827
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
18447
18828
  __metadata("design:type", Object)
18448
- ], exports.ɵdm.prototype, "detailFont", void 0);
18829
+ ], exports.ɵdn.prototype, "detailFont", void 0);
18449
18830
  __decorate([
18450
18831
  bbjWidgetBase.Property('百分号', {
18451
18832
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18452
18833
  }),
18453
18834
  __metadata("design:type", Object)
18454
- ], exports.ɵdm.prototype, "percent", void 0);
18835
+ ], exports.ɵdn.prototype, "percent", void 0);
18455
18836
  __decorate([
18456
18837
  bbjWidgetBase.Property('类别颜色', {
18457
18838
  ui: {
@@ -18461,61 +18842,61 @@
18461
18842
  },
18462
18843
  }),
18463
18844
  __metadata("design:type", Object)
18464
- ], exports.ɵdm.prototype, "colors", void 0);
18845
+ ], exports.ɵdn.prototype, "colors", void 0);
18465
18846
  __decorate([
18466
18847
  bbjWidgetBase.Property('起始角度', {
18467
18848
  ui: { widget: 'myRange', min: 90, max: 360, step: 1 },
18468
18849
  }),
18469
18850
  __metadata("design:type", Object)
18470
- ], exports.ɵdm.prototype, "startAngle", void 0);
18851
+ ], exports.ɵdn.prototype, "startAngle", void 0);
18471
18852
  __decorate([
18472
18853
  bbjWidgetBase.Property('结束角度', {
18473
18854
  ui: { widget: 'myRange', min: -90, max: 90, step: 1 },
18474
18855
  }),
18475
18856
  __metadata("design:type", Object)
18476
- ], exports.ɵdm.prototype, "endAngle", void 0);
18857
+ ], exports.ɵdn.prototype, "endAngle", void 0);
18477
18858
  __decorate([
18478
18859
  bbjWidgetBase.Property('标签', {
18479
18860
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18480
18861
  }),
18481
18862
  __metadata("design:type", Object)
18482
- ], exports.ɵdm.prototype, "label", void 0);
18863
+ ], exports.ɵdn.prototype, "label", void 0);
18483
18864
  __decorate([
18484
18865
  bbjWidgetBase.Property('最大值', {
18485
18866
  ui: { widget: 'number' },
18486
18867
  }),
18487
18868
  __metadata("design:type", Object)
18488
- ], exports.ɵdm.prototype, "max", void 0);
18869
+ ], exports.ɵdn.prototype, "max", void 0);
18489
18870
  __decorate([
18490
18871
  bbjWidgetBase.Property('最小值', {
18491
18872
  ui: { widget: 'number' },
18492
18873
  }),
18493
18874
  __metadata("design:type", Object)
18494
- ], exports.ɵdm.prototype, "min", void 0);
18875
+ ], exports.ɵdn.prototype, "min", void 0);
18495
18876
  __decorate([
18496
18877
  bbjWidgetBase.Property('指针长度', {
18497
18878
  ui: { widget: 'number' },
18498
18879
  }),
18499
18880
  __metadata("design:type", Object)
18500
- ], exports.ɵdm.prototype, "pointerLength", void 0);
18881
+ ], exports.ɵdn.prototype, "pointerLength", void 0);
18501
18882
  __decorate([
18502
18883
  bbjWidgetBase.Property('环宽', {
18503
18884
  ui: { widget: 'number' },
18504
18885
  }),
18505
18886
  __metadata("design:type", Object)
18506
- ], exports.ɵdm.prototype, "width", void 0);
18887
+ ], exports.ɵdn.prototype, "width", void 0);
18507
18888
  __decorate([
18508
18889
  bbjWidgetBase.Property('显示指针', {
18509
18890
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18510
18891
  }),
18511
18892
  __metadata("design:type", Object)
18512
- ], exports.ɵdm.prototype, "showPointer", void 0);
18893
+ ], exports.ɵdn.prototype, "showPointer", void 0);
18513
18894
  __decorate([
18514
18895
  bbjWidgetBase.Property('显示刻度', {
18515
18896
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18516
18897
  }),
18517
18898
  __metadata("design:type", Object)
18518
- ], exports.ɵdm.prototype, "showScale", void 0);
18899
+ ], exports.ɵdn.prototype, "showScale", void 0);
18519
18900
  __decorate([
18520
18901
  bbjWidgetBase.Data({
18521
18902
  properties: {
@@ -18524,25 +18905,25 @@
18524
18905
  },
18525
18906
  }),
18526
18907
  __metadata("design:type", Object)
18527
- ], exports.ɵdm.prototype, "_data", void 0);
18528
- exports.ɵdm = __decorate([
18908
+ ], exports.ɵdn.prototype, "_data", void 0);
18909
+ exports.ɵdn = __decorate([
18529
18910
  bbjWidgetBase.Widget('多标题仪表盘', {
18530
18911
  group: 'otherChart',
18531
18912
  image: 'assets/img/screen/multiTitleGauge.png',
18532
18913
  icon: 'icontubiao',
18533
18914
  }),
18534
18915
  __metadata("design:paramtypes", [])
18535
- ], exports.ɵdm);
18916
+ ], exports.ɵdn);
18536
18917
 
18537
18918
  var MultiTitleGaugeModule = /** @class */ (function () {
18538
18919
  function MultiTitleGaugeModule(widgetService) {
18539
- widgetService.register(exports.ɵdm);
18920
+ widgetService.register(exports.ɵdn);
18540
18921
  }
18541
18922
  return MultiTitleGaugeModule;
18542
18923
  }());
18543
18924
  MultiTitleGaugeModule.decorators = [
18544
18925
  { type: i0.NgModule, args: [{
18545
- declarations: [exports.ɵdm],
18926
+ declarations: [exports.ɵdn],
18546
18927
  imports: [
18547
18928
  common.CommonModule, bbjWidgetBase.WidgetBaseModule, ngxEcharts.NgxEchartsModule
18548
18929
  ]
@@ -18552,7 +18933,7 @@
18552
18933
  { type: bbjWidgetBase.WidgetService }
18553
18934
  ]; };
18554
18935
 
18555
- exports.ɵdo = /** @class */ (function () {
18936
+ exports.ɵdp = /** @class */ (function () {
18556
18937
  function GaugeProgressComponent() {
18557
18938
  this.numfont = {
18558
18939
  family: 'Microsoft YaHei',
@@ -18722,36 +19103,36 @@
18722
19103
  };
18723
19104
  return GaugeProgressComponent;
18724
19105
  }());
18725
- exports.ɵdo.decorators = [
19106
+ exports.ɵdp.decorators = [
18726
19107
  { type: i0.Component, args: [{
18727
19108
  selector: 'sc-gauge-progress',
18728
19109
  template: "\n<swiper-container\n #swiper\n [slidesPerView]=\"slidesPerView\"\n [spaceBetween]=\"spaceBetween\"\n [navigation]=\"navigation && navigationLeftIcon && navigationRightIcon ? navigationBtnConfig : navigation\"\n class=\"swiper-no-swiping\"\n [noSwiping]=\"true\"\n>\n <swiper-slide *ngFor=\"let item of data\">\n <!-- <div class=\"item-img\">\n <div class=\"item-val\" [ngStyle]=\"numfont\">{{ item.value }}</div>\n <img [src]=\"cardBgImg\" alt=\"\" />\n </div>\n <div [ngStyle]=\"font\">{{ item.label }}</div> -->\n <div echarts [options]=\"item\" class=\"demo-chart\" [initOpts]=\"{ renderer: 'svg' }\"></div>\n </swiper-slide>\n</swiper-container>\n<ng-container *ngIf=\"navigation && navigationLeftIcon && navigationRightIcon\">\n <div class=\"navigationbtn swiper-navigation-prev\" [style]=\"{ left: (navigationMoveVal || '-60') + 'px' }\">\n <img [src]=\"navigationLeftIcon\" alt=\"\" />\n </div>\n <div class=\"navigationbtn swiper-navigation-next\" [style]=\"{ right: (navigationMoveVal || '-60') + 'px' }\">\n <img [src]=\"navigationRightIcon\" alt=\"\" />\n </div>\n</ng-container>\n\n\n\n",
18729
19110
  styles: [":host{display:block}:host,:host ::ng-deep swiper-container{height:100%;width:100%}:host ::ng-deep swiper-slide{text-align:center;position:relative}:host ::ng-deep .item-img{position:relative}:host ::ng-deep .item-img img{display:block;width:100%}:host ::ng-deep .item-val{position:absolute;text-align:center;top:0;bottom:0;left:0;width:100%;z-index:99}:host ::ng-deep .navigationbtn{cursor:pointer;position:absolute;top:0;bottom:0;display:flex;align-items:center;outline:none}:host ::ng-deep .swiper-navigation-prev{left:-60px}:host ::ng-deep .swiper-navigation-next{right:-60px}.demo-chart{height:100%}"]
18730
19111
  },] }
18731
19112
  ];
18732
- exports.ɵdo.ctorParameters = function () { return []; };
19113
+ exports.ɵdp.ctorParameters = function () { return []; };
18733
19114
  __decorate([
18734
19115
  bbjWidgetBase.Property('数值字体', { ui: { widget: 'myFont' } }),
18735
19116
  __metadata("design:type", Object)
18736
- ], exports.ɵdo.prototype, "numfont", void 0);
19117
+ ], exports.ɵdp.prototype, "numfont", void 0);
18737
19118
  __decorate([
18738
19119
  bbjWidgetBase.Property('可视个数', { type: 'number' }),
18739
19120
  __metadata("design:type", Object)
18740
- ], exports.ɵdo.prototype, "slidesPerView", void 0);
19121
+ ], exports.ɵdp.prototype, "slidesPerView", void 0);
18741
19122
  __decorate([
18742
19123
  bbjWidgetBase.Property('间距', { type: 'number' }),
18743
19124
  __metadata("design:type", Object)
18744
- ], exports.ɵdo.prototype, "spaceBetween", void 0);
19125
+ ], exports.ɵdp.prototype, "spaceBetween", void 0);
18745
19126
  __decorate([
18746
19127
  bbjWidgetBase.Property('左右按钮', {
18747
19128
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18748
19129
  }),
18749
19130
  __metadata("design:type", Object)
18750
- ], exports.ɵdo.prototype, "navigation", void 0);
19131
+ ], exports.ɵdp.prototype, "navigation", void 0);
18751
19132
  __decorate([
18752
19133
  bbjWidgetBase.Property('按钮偏移', { type: 'number' }),
18753
19134
  __metadata("design:type", Object)
18754
- ], exports.ɵdo.prototype, "navigationMoveVal", void 0);
19135
+ ], exports.ɵdp.prototype, "navigationMoveVal", void 0);
18755
19136
  __decorate([
18756
19137
  bbjWidgetBase.Property('左图标', {
18757
19138
  type: 'string',
@@ -18760,7 +19141,7 @@
18760
19141
  },
18761
19142
  }),
18762
19143
  __metadata("design:type", Object)
18763
- ], exports.ɵdo.prototype, "navigationLeftIcon", void 0);
19144
+ ], exports.ɵdp.prototype, "navigationLeftIcon", void 0);
18764
19145
  __decorate([
18765
19146
  bbjWidgetBase.Property('右图标', {
18766
19147
  type: 'string',
@@ -18769,14 +19150,14 @@
18769
19150
  },
18770
19151
  }),
18771
19152
  __metadata("design:type", Object)
18772
- ], exports.ɵdo.prototype, "navigationRightIcon", void 0);
19153
+ ], exports.ɵdp.prototype, "navigationRightIcon", void 0);
18773
19154
  __decorate([
18774
19155
  bbjWidgetBase.Property('显示模式', {
18775
19156
  ui: { widget: 'select' },
18776
19157
  enum: [{ label: '图标卡片', value: 'card' }],
18777
19158
  }),
18778
19159
  __metadata("design:type", Object)
18779
- ], exports.ɵdo.prototype, "showType", void 0);
19160
+ ], exports.ɵdp.prototype, "showType", void 0);
18780
19161
  __decorate([
18781
19162
  bbjWidgetBase.Property('卡片背景', {
18782
19163
  type: 'string',
@@ -18785,7 +19166,7 @@
18785
19166
  },
18786
19167
  }),
18787
19168
  __metadata("design:type", Object)
18788
- ], exports.ɵdo.prototype, "cardBgImg", void 0);
19169
+ ], exports.ɵdp.prototype, "cardBgImg", void 0);
18789
19170
  __decorate([
18790
19171
  bbjWidgetBase.Property('表盘颜色', {
18791
19172
  ui: {
@@ -18795,81 +19176,81 @@
18795
19176
  },
18796
19177
  }),
18797
19178
  __metadata("design:type", Object)
18798
- ], exports.ɵdo.prototype, "seriesColor", void 0);
19179
+ ], exports.ɵdp.prototype, "seriesColor", void 0);
18799
19180
  __decorate([
18800
19181
  bbjWidgetBase.Property('表盘宽度', {
18801
19182
  ui: { widget: 'myRange', min: 0, max: 100, step: 1 },
18802
19183
  }),
18803
19184
  __metadata("design:type", Object)
18804
- ], exports.ɵdo.prototype, "width", void 0);
19185
+ ], exports.ɵdp.prototype, "width", void 0);
18805
19186
  __decorate([
18806
19187
  bbjWidgetBase.Property('起始角度', {
18807
19188
  ui: { widget: 'myRange', min: 90, max: 360, step: 1 },
18808
19189
  }),
18809
19190
  __metadata("design:type", Object)
18810
- ], exports.ɵdo.prototype, "startAngle", void 0);
19191
+ ], exports.ɵdp.prototype, "startAngle", void 0);
18811
19192
  __decorate([
18812
19193
  bbjWidgetBase.Property('结束角度', {
18813
19194
  ui: { widget: 'myRange', min: -90, max: 90, step: 1 },
18814
19195
  }),
18815
19196
  __metadata("design:type", Object)
18816
- ], exports.ɵdo.prototype, "endAngle", void 0);
19197
+ ], exports.ɵdp.prototype, "endAngle", void 0);
18817
19198
  __decorate([
18818
19199
  bbjWidgetBase.Property('显示标题', {
18819
19200
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18820
19201
  }),
18821
19202
  __metadata("design:type", Object)
18822
- ], exports.ɵdo.prototype, "label", void 0);
19203
+ ], exports.ɵdp.prototype, "label", void 0);
18823
19204
  __decorate([
18824
19205
  bbjWidgetBase.Property('标题字体', { ui: { widget: 'myFont' } }),
18825
19206
  __metadata("design:type", Object)
18826
- ], exports.ɵdo.prototype, "font", void 0);
19207
+ ], exports.ɵdp.prototype, "font", void 0);
18827
19208
  __decorate([
18828
19209
  bbjWidgetBase.Property('标题位移', {
18829
19210
  ui: { widget: 'number' },
18830
19211
  }),
18831
19212
  __metadata("design:type", Object)
18832
- ], exports.ɵdo.prototype, "labelOffset", void 0);
19213
+ ], exports.ɵdp.prototype, "labelOffset", void 0);
18833
19214
  __decorate([
18834
19215
  bbjWidgetBase.Property('标题宽度', {
18835
19216
  ui: { widget: 'number' },
18836
19217
  }),
18837
19218
  __metadata("design:type", Object)
18838
- ], exports.ɵdo.prototype, "labelWidth", void 0);
19219
+ ], exports.ɵdp.prototype, "labelWidth", void 0);
18839
19220
  __decorate([
18840
19221
  bbjWidgetBase.Property('显示数值', {
18841
19222
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18842
19223
  }),
18843
19224
  __metadata("design:type", Object)
18844
- ], exports.ɵdo.prototype, "labelVal", void 0);
19225
+ ], exports.ɵdp.prototype, "labelVal", void 0);
18845
19226
  __decorate([
18846
19227
  bbjWidgetBase.Property('数值字体', { ui: { widget: 'myFont' } }),
18847
19228
  __metadata("design:type", Object)
18848
- ], exports.ɵdo.prototype, "numFont", void 0);
19229
+ ], exports.ɵdp.prototype, "numFont", void 0);
18849
19230
  __decorate([
18850
19231
  bbjWidgetBase.Property('百分号', {
18851
19232
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18852
19233
  }),
18853
19234
  __metadata("design:type", Object)
18854
- ], exports.ɵdo.prototype, "percent", void 0);
19235
+ ], exports.ɵdp.prototype, "percent", void 0);
18855
19236
  __decorate([
18856
19237
  bbjWidgetBase.Property('数值位移', {
18857
19238
  ui: { widget: 'number' },
18858
19239
  }),
18859
19240
  __metadata("design:type", Object)
18860
- ], exports.ɵdo.prototype, "labelValOffset", void 0);
19241
+ ], exports.ɵdp.prototype, "labelValOffset", void 0);
18861
19242
  __decorate([
18862
19243
  bbjWidgetBase.Property('最大值', {
18863
19244
  ui: { widget: 'number' },
18864
19245
  }),
18865
19246
  __metadata("design:type", Object)
18866
- ], exports.ɵdo.prototype, "max", void 0);
19247
+ ], exports.ɵdp.prototype, "max", void 0);
18867
19248
  __decorate([
18868
19249
  bbjWidgetBase.Property('最小值', {
18869
19250
  ui: { widget: 'number' },
18870
19251
  }),
18871
19252
  __metadata("design:type", Object)
18872
- ], exports.ɵdo.prototype, "min", void 0);
19253
+ ], exports.ɵdp.prototype, "min", void 0);
18873
19254
  __decorate([
18874
19255
  bbjWidgetBase.Property('进度颜色', {
18875
19256
  ui: {
@@ -18878,7 +19259,7 @@
18878
19259
  },
18879
19260
  }),
18880
19261
  __metadata("design:type", Object)
18881
- ], exports.ɵdo.prototype, "progressColor", void 0);
19262
+ ], exports.ɵdp.prototype, "progressColor", void 0);
18882
19263
  __decorate([
18883
19264
  bbjWidgetBase.Property('进度阴影', {
18884
19265
  ui: {
@@ -18887,7 +19268,7 @@
18887
19268
  },
18888
19269
  }),
18889
19270
  __metadata("design:type", Object)
18890
- ], exports.ɵdo.prototype, "progressShadow", void 0);
19271
+ ], exports.ɵdp.prototype, "progressShadow", void 0);
18891
19272
  __decorate([
18892
19273
  bbjWidgetBase.Data({
18893
19274
  properties: {
@@ -18896,25 +19277,25 @@
18896
19277
  },
18897
19278
  }),
18898
19279
  __metadata("design:type", Object)
18899
- ], exports.ɵdo.prototype, "_data", void 0);
18900
- exports.ɵdo = __decorate([
19280
+ ], exports.ɵdp.prototype, "_data", void 0);
19281
+ exports.ɵdp = __decorate([
18901
19282
  bbjWidgetBase.Widget('进度条仪表盘', {
18902
19283
  group: 'otherChart',
18903
19284
  image: 'assets/img/screen/gauge-progress.png',
18904
19285
  icon: 'icontubiao',
18905
19286
  }),
18906
19287
  __metadata("design:paramtypes", [])
18907
- ], exports.ɵdo);
19288
+ ], exports.ɵdp);
18908
19289
 
18909
19290
  var GaugeProgressModule = /** @class */ (function () {
18910
19291
  function GaugeProgressModule(widgetService) {
18911
- widgetService.register(exports.ɵdo);
19292
+ widgetService.register(exports.ɵdp);
18912
19293
  }
18913
19294
  return GaugeProgressModule;
18914
19295
  }());
18915
19296
  GaugeProgressModule.decorators = [
18916
19297
  { type: i0.NgModule, args: [{
18917
- declarations: [exports.ɵdo],
19298
+ declarations: [exports.ɵdp],
18918
19299
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, ngxEcharts.NgxEchartsModule],
18919
19300
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
18920
19301
  },] }
@@ -18923,7 +19304,7 @@
18923
19304
  { type: bbjWidgetBase.WidgetService }
18924
19305
  ]; };
18925
19306
 
18926
- exports.ɵds = /** @class */ (function () {
19307
+ exports.ɵdt = /** @class */ (function () {
18927
19308
  function BulletinBoardComponent() {
18928
19309
  this.title = '';
18929
19310
  this.titleFont = { family: '', color: '#ffffff', weight: 'normal', size: 20, space: 0, lineHeight: 40 };
@@ -18998,30 +19379,30 @@
18998
19379
  };
18999
19380
  return BulletinBoardComponent;
19000
19381
  }());
19001
- exports.ɵds.decorators = [
19382
+ exports.ɵdt.decorators = [
19002
19383
  { type: i0.Component, args: [{
19003
19384
  selector: 'sc-bulletin-board',
19004
19385
  template: "<div class=\"content\">\n <div *ngIf=\"title\" class=\"title\">\n <p [ngStyle]=\"titleStyle\">{{ title }}</p>\n </div>\n <div class=\"module\" *ngFor=\"let item of contentArr\">\n <div class=\"subtitle\" [ngStyle]=\"subtitleStyle\">\n {{ item.title }}\n </div>\n <div class=\"box\" [ngStyle]=\"boxStyle\">\n <div class=\"text\" [ngStyle]=\"textStyle\" *ngFor=\"let a of item.content\">\n {{ a }}\n </div>\n </div>\n </div>\n</div>\n",
19005
19386
  styles: [".content,:host{width:100%;height:100%}.content{display:block;padding:0 5%;overflow-y:scroll}.content .title{padding:10% 0 5%}.content .text{margin-bottom:10px;padding-left:5%}.content .subtitle{margin-bottom:3%;padding-left:5%}.content::-webkit-scrollbar{display:none}"]
19006
19387
  },] }
19007
19388
  ];
19008
- exports.ɵds.ctorParameters = function () { return []; };
19389
+ exports.ɵdt.ctorParameters = function () { return []; };
19009
19390
  __decorate([
19010
19391
  bbjWidgetBase.Property('标题', { type: 'string' }),
19011
19392
  __metadata("design:type", Object)
19012
- ], exports.ɵds.prototype, "title", void 0);
19393
+ ], exports.ɵdt.prototype, "title", void 0);
19013
19394
  __decorate([
19014
19395
  bbjWidgetBase.Property('标题字体', { ui: { widget: 'myFont' } }),
19015
19396
  __metadata("design:type", Object)
19016
- ], exports.ɵds.prototype, "titleFont", void 0);
19397
+ ], exports.ɵdt.prototype, "titleFont", void 0);
19017
19398
  __decorate([
19018
19399
  bbjWidgetBase.Property('小标题字', { ui: { widget: 'myFont' } }),
19019
19400
  __metadata("design:type", Object)
19020
- ], exports.ɵds.prototype, "subtitleFont", void 0);
19401
+ ], exports.ɵdt.prototype, "subtitleFont", void 0);
19021
19402
  __decorate([
19022
19403
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
19023
19404
  __metadata("design:type", Object)
19024
- ], exports.ɵds.prototype, "font", void 0);
19405
+ ], exports.ɵdt.prototype, "font", void 0);
19025
19406
  __decorate([
19026
19407
  bbjWidgetBase.Property('边框颜色', {
19027
19408
  ui: {
@@ -19030,7 +19411,7 @@
19030
19411
  },
19031
19412
  }),
19032
19413
  __metadata("design:type", Object)
19033
- ], exports.ɵds.prototype, "borderColor", void 0);
19414
+ ], exports.ɵdt.prototype, "borderColor", void 0);
19034
19415
  __decorate([
19035
19416
  bbjWidgetBase.Property('渐变开始', {
19036
19417
  ui: {
@@ -19039,7 +19420,7 @@
19039
19420
  },
19040
19421
  }),
19041
19422
  __metadata("design:type", Object)
19042
- ], exports.ɵds.prototype, "startColor", void 0);
19423
+ ], exports.ɵdt.prototype, "startColor", void 0);
19043
19424
  __decorate([
19044
19425
  bbjWidgetBase.Property('渐变结束', {
19045
19426
  ui: {
@@ -19048,25 +19429,25 @@
19048
19429
  },
19049
19430
  }),
19050
19431
  __metadata("design:type", Object)
19051
- ], exports.ɵds.prototype, "endColor", void 0);
19432
+ ], exports.ɵdt.prototype, "endColor", void 0);
19052
19433
  __decorate([
19053
19434
  bbjWidgetBase.Property('边框粗细', {
19054
19435
  type: 'number'
19055
19436
  }),
19056
19437
  __metadata("design:type", Object)
19057
- ], exports.ɵds.prototype, "borderWidth", void 0);
19438
+ ], exports.ɵdt.prototype, "borderWidth", void 0);
19058
19439
  __decorate([
19059
19440
  bbjWidgetBase.Property('分隔符', {
19060
19441
  type: 'string'
19061
19442
  }),
19062
19443
  __metadata("design:type", Object)
19063
- ], exports.ɵds.prototype, "separate", void 0);
19444
+ ], exports.ɵdt.prototype, "separate", void 0);
19064
19445
  __decorate([
19065
19446
  bbjWidgetBase.Property('内容边距', {
19066
19447
  type: 'number'
19067
19448
  }),
19068
19449
  __metadata("design:type", Object)
19069
- ], exports.ɵds.prototype, "marginSize", void 0);
19450
+ ], exports.ɵdt.prototype, "marginSize", void 0);
19070
19451
  __decorate([
19071
19452
  bbjWidgetBase.Data({
19072
19453
  properties: {
@@ -19075,22 +19456,22 @@
19075
19456
  },
19076
19457
  }),
19077
19458
  __metadata("design:type", Object)
19078
- ], exports.ɵds.prototype, "_data", void 0);
19079
- exports.ɵds = __decorate([
19459
+ ], exports.ɵdt.prototype, "_data", void 0);
19460
+ exports.ɵdt = __decorate([
19080
19461
  bbjWidgetBase.Widget('布告栏', { group: 'component', icon: 'icontubiao', image: '/assets/img/screen/bulletin-board.png' }),
19081
19462
  __metadata("design:paramtypes", [])
19082
- ], exports.ɵds);
19463
+ ], exports.ɵdt);
19083
19464
 
19084
19465
  var BulletinBoardModule = /** @class */ (function () {
19085
19466
  function BulletinBoardModule(widgetService) {
19086
- widgetService.register(exports.ɵds);
19467
+ widgetService.register(exports.ɵdt);
19087
19468
  }
19088
19469
  return BulletinBoardModule;
19089
19470
  }());
19090
19471
  BulletinBoardModule.decorators = [
19091
19472
  { type: i0.NgModule, args: [{
19092
19473
  declarations: [
19093
- exports.ɵds
19474
+ exports.ɵdt
19094
19475
  ],
19095
19476
  imports: [
19096
19477
  common.CommonModule
@@ -19113,7 +19494,7 @@
19113
19494
  // Thumbs,
19114
19495
  // Controller
19115
19496
  // ]);
19116
- exports.ɵdq = /** @class */ (function () {
19497
+ exports.ɵdr = /** @class */ (function () {
19117
19498
  function ItemSwiperComponent(ele) {
19118
19499
  this.ele = ele;
19119
19500
  this.font = { family: 'Microsoft YaHei', color: '#ffffff', weight: 'normal', size: 20, space: 0, lineHeight: '66' };
@@ -19277,58 +19658,58 @@
19277
19658
  ItemSwiperComponent.prototype.onSlideChange = function () { };
19278
19659
  return ItemSwiperComponent;
19279
19660
  }());
19280
- exports.ɵdq.decorators = [
19661
+ exports.ɵdr.decorators = [
19281
19662
  { type: i0.Component, args: [{
19282
19663
  selector: 'sc-item-swiper',
19283
19664
  template: "<swiper-container appSwiper\n #swiper\n [attr.slides-per-view]=\"slidesPerView\"\n [attr.space-between]=\"spaceBetween\"\n [attr.navigation]=\"navigation && navigationLeftIcon && navigationRightIcon ? navigationBtnConfig : navigation\"\n class=\"swiper-no-swiping\"\n [attr.no-swiping]=\"true\"\n>\n <swiper-slide *ngFor=\"let item of data\">\n <ng-container *ngIf=\"!isgroup\">\n <div class=\"item-img\">\n <div class=\"item-val\" [ngStyle]=\"numfont\">{{ item.value }}</div>\n <img [src]=\"item.img\" alt=\"\" [ngStyle]=\"item.imgstyle\" />\n </div>\n <div [ngStyle]=\"font\">{{ item.label }}</div>\n </ng-container>\n <!-- <ng-container *ngFor=\"let i of item\"> -->\n <ng-container *ngIf=\"isgroup\">\n <div class=\"content\" [style.height]=\"selectHeight + 'px'\">\n <div [ngStyle]=\"groupfont\" class=\"title\">{{ item.group }}</div>\n <div class=\"item-img\">\n <!-- <ng-container *ngIf=\"item.img\"> -->\n <img [src]=\"item.img\" alt=\"\" [ngStyle]=\"item.imgstyle\" />\n <!-- </ng-container> -->\n </div>\n <div class=\"kvbox\" [style.bottom]=\"valueBottom + 'px'\">\n <div style=\"display: inline-flex\">\n <ng-container *ngFor=\"let a of item.field\">\n <span style=\"flex: 1; left: 0px\" class=\"label\">\n <div [ngStyle]=\"font\">{{ a.label }}</div>\n <div [ngStyle]=\"numfont\">{{ a.value }}</div>\n </span>\n </ng-container>\n </div>\n </div>\n </div>\n </ng-container>\n <!-- </ng-container> -->\n </swiper-slide>\n</swiper-container>\n<ng-container *ngIf=\"navigationLeftIcon && navigationRightIcon\">\n <div class=\"navigationbtn swiper-navigation-prev\" [style.left.px]=\"navigationMoveVal || -60\" [class.hidden]=\"!showNavigation\">\n <img [src]=\"navigationLeftIcon\" alt=\"\" />\n </div>\n <div class=\"navigationbtn swiper-navigation-next\" [style.right.px]=\"navigationMoveVal || -60\" [class.hidden]=\"!showNavigation\">\n <img [src]=\"navigationRightIcon\" alt=\"\" />\n </div>\n</ng-container>\n",
19284
19665
  styles: [":host{position:relative;display:block}:host ::ng-deep swiper-container{width:100%}:host ::ng-deep .title{z-index:100;position:absolute;left:0;width:100%;text-align:center}:host ::ng-deep swiper-slide{text-align:center;position:relative;overflow:visible;padding-top:30px}:host ::ng-deep .content,:host ::ng-deep .item-img{position:relative;height:100%;width:100%}:host ::ng-deep .item-img img{display:block;margin:auto}:host ::ng-deep .item-val{position:absolute;text-align:center;top:0;bottom:0;left:0;width:100%;z-index:99;overflow:visible}:host ::ng-deep .navigationbtn{cursor:pointer;position:absolute;top:0;bottom:0;display:flex;align-items:center;outline:none}:host ::ng-deep .navigationbtn.hidden{display:none}:host ::ng-deep .swiper-navigation-prev{left:-60px}:host ::ng-deep .swiper-navigation-next{right:-60px}:host ::ng-deep .label{margin:0 8px}:host ::ng-deep .kvbox{position:absolute;text-align:center;left:0;width:100%;z-index:99}"]
19285
19666
  },] }
19286
19667
  ];
19287
- exports.ɵdq.ctorParameters = function () { return [
19668
+ exports.ɵdr.ctorParameters = function () { return [
19288
19669
  { type: i0.ElementRef }
19289
19670
  ]; };
19290
19671
  __decorate([
19291
19672
  bbjWidgetBase.Property('标题字体', { ui: { widget: 'myFont' } }),
19292
19673
  __metadata("design:type", Object)
19293
- ], exports.ɵdq.prototype, "font", void 0);
19674
+ ], exports.ɵdr.prototype, "font", void 0);
19294
19675
  __decorate([
19295
19676
  bbjWidgetBase.Property('数值字体', { ui: { widget: 'myFont' } }),
19296
19677
  __metadata("design:type", Object)
19297
- ], exports.ɵdq.prototype, "numfont", void 0);
19678
+ ], exports.ɵdr.prototype, "numfont", void 0);
19298
19679
  __decorate([
19299
19680
  bbjWidgetBase.Property('分组字体', { ui: { widget: 'myFont' } }),
19300
19681
  __metadata("design:type", Object)
19301
- ], exports.ɵdq.prototype, "titlefont", void 0);
19682
+ ], exports.ɵdr.prototype, "titlefont", void 0);
19302
19683
  __decorate([
19303
19684
  bbjWidgetBase.Property('可视个数', { type: 'number' }),
19304
19685
  __metadata("design:type", Object)
19305
- ], exports.ɵdq.prototype, "slidesPerView", void 0);
19686
+ ], exports.ɵdr.prototype, "slidesPerView", void 0);
19306
19687
  __decorate([
19307
19688
  bbjWidgetBase.Property('选项高度'),
19308
19689
  __metadata("design:type", Number)
19309
- ], exports.ɵdq.prototype, "selectHeight", void 0);
19690
+ ], exports.ɵdr.prototype, "selectHeight", void 0);
19310
19691
  __decorate([
19311
19692
  bbjWidgetBase.Property('分组高度', { type: 'number' }),
19312
19693
  __metadata("design:type", Object)
19313
- ], exports.ɵdq.prototype, "gourpHeight", void 0);
19694
+ ], exports.ɵdr.prototype, "gourpHeight", void 0);
19314
19695
  __decorate([
19315
19696
  bbjWidgetBase.Property('值高度', { type: 'number' }),
19316
19697
  __metadata("design:type", Object)
19317
- ], exports.ɵdq.prototype, "valueBottom", void 0);
19698
+ ], exports.ɵdr.prototype, "valueBottom", void 0);
19318
19699
  __decorate([
19319
19700
  bbjWidgetBase.Property('间距', { type: 'number' }),
19320
19701
  __metadata("design:type", Object)
19321
- ], exports.ɵdq.prototype, "spaceBetween", void 0);
19702
+ ], exports.ɵdr.prototype, "spaceBetween", void 0);
19322
19703
  __decorate([
19323
19704
  bbjWidgetBase.Property('左右按钮', {
19324
19705
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
19325
19706
  }),
19326
19707
  __metadata("design:type", Object)
19327
- ], exports.ɵdq.prototype, "navigation", void 0);
19708
+ ], exports.ɵdr.prototype, "navigation", void 0);
19328
19709
  __decorate([
19329
19710
  bbjWidgetBase.Property('按钮偏移', { type: 'number' }),
19330
19711
  __metadata("design:type", Object)
19331
- ], exports.ɵdq.prototype, "navigationMoveVal", void 0);
19712
+ ], exports.ɵdr.prototype, "navigationMoveVal", void 0);
19332
19713
  __decorate([
19333
19714
  bbjWidgetBase.Property('左图标', {
19334
19715
  type: 'string',
@@ -19337,7 +19718,7 @@
19337
19718
  },
19338
19719
  }),
19339
19720
  __metadata("design:type", Object)
19340
- ], exports.ɵdq.prototype, "navigationLeftIcon", void 0);
19721
+ ], exports.ɵdr.prototype, "navigationLeftIcon", void 0);
19341
19722
  __decorate([
19342
19723
  bbjWidgetBase.Property('右图标', {
19343
19724
  type: 'string',
@@ -19346,14 +19727,14 @@
19346
19727
  },
19347
19728
  }),
19348
19729
  __metadata("design:type", Object)
19349
- ], exports.ɵdq.prototype, "navigationRightIcon", void 0);
19730
+ ], exports.ɵdr.prototype, "navigationRightIcon", void 0);
19350
19731
  __decorate([
19351
19732
  bbjWidgetBase.Property('显示模式', {
19352
19733
  ui: { widget: 'select' },
19353
19734
  enum: [{ label: '图标卡片', value: 'card' }],
19354
19735
  }),
19355
19736
  __metadata("design:type", Object)
19356
- ], exports.ɵdq.prototype, "showType", void 0);
19737
+ ], exports.ɵdr.prototype, "showType", void 0);
19357
19738
  __decorate([
19358
19739
  bbjWidgetBase.Property('卡片背景', {
19359
19740
  type: 'string',
@@ -19362,19 +19743,19 @@
19362
19743
  },
19363
19744
  }),
19364
19745
  __metadata("design:type", Object)
19365
- ], exports.ɵdq.prototype, "cardBgImg", void 0);
19746
+ ], exports.ɵdr.prototype, "cardBgImg", void 0);
19366
19747
  __decorate([
19367
19748
  bbjWidgetBase.Property('图片高度'),
19368
19749
  __metadata("design:type", Number)
19369
- ], exports.ɵdq.prototype, "height", void 0);
19750
+ ], exports.ɵdr.prototype, "height", void 0);
19370
19751
  __decorate([
19371
19752
  bbjWidgetBase.Property('图片宽度'),
19372
19753
  __metadata("design:type", Number)
19373
- ], exports.ɵdq.prototype, "width", void 0);
19754
+ ], exports.ɵdr.prototype, "width", void 0);
19374
19755
  __decorate([
19375
19756
  bbjWidgetBase.Property('是否分组'),
19376
19757
  __metadata("design:type", Boolean)
19377
- ], exports.ɵdq.prototype, "isgroup", void 0);
19758
+ ], exports.ɵdr.prototype, "isgroup", void 0);
19378
19759
  __decorate([
19379
19760
  bbjWidgetBase.Property('图片分类', {
19380
19761
  type: 'array',
@@ -19396,7 +19777,7 @@
19396
19777
  ui: { visibleIf: { isgroup: [false] }, grid: { arraySpan: 24 }, spanControl: 24 },
19397
19778
  }),
19398
19779
  __metadata("design:type", Object)
19399
- ], exports.ɵdq.prototype, "images", void 0);
19780
+ ], exports.ɵdr.prototype, "images", void 0);
19400
19781
  __decorate([
19401
19782
  bbjWidgetBase.Property('新增分组', {
19402
19783
  type: 'array',
@@ -19422,7 +19803,7 @@
19422
19803
  ui: { visibleIf: { isgroup: [true] }, grid: { arraySpan: 24 }, spanControl: 24 },
19423
19804
  }),
19424
19805
  __metadata("design:type", Object)
19425
- ], exports.ɵdq.prototype, "groups", void 0);
19806
+ ], exports.ɵdr.prototype, "groups", void 0);
19426
19807
  __decorate([
19427
19808
  bbjWidgetBase.Data({
19428
19809
  properties: {
@@ -19432,25 +19813,25 @@
19432
19813
  },
19433
19814
  }),
19434
19815
  __metadata("design:type", Array)
19435
- ], exports.ɵdq.prototype, "_data", void 0);
19816
+ ], exports.ɵdr.prototype, "_data", void 0);
19436
19817
  __decorate([
19437
19818
  bbjWidgetBase.DataOutput('值'),
19438
19819
  __metadata("design:type", Object)
19439
- ], exports.ɵdq.prototype, "valueChange", void 0);
19440
- exports.ɵdq = __decorate([
19820
+ ], exports.ɵdr.prototype, "valueChange", void 0);
19821
+ exports.ɵdr = __decorate([
19441
19822
  bbjWidgetBase.Widget('轮播', { group: 'component', image: 'assets/img/screen/item-swiper.png', icon: 'iconmokuai' }),
19442
19823
  __metadata("design:paramtypes", [i0.ElementRef])
19443
- ], exports.ɵdq);
19824
+ ], exports.ɵdr);
19444
19825
 
19445
19826
  var ItemSwiperModule = /** @class */ (function () {
19446
19827
  function ItemSwiperModule(widgetService) {
19447
- widgetService.register(exports.ɵdq);
19828
+ widgetService.register(exports.ɵdr);
19448
19829
  }
19449
19830
  return ItemSwiperModule;
19450
19831
  }());
19451
19832
  ItemSwiperModule.decorators = [
19452
19833
  { type: i0.NgModule, args: [{
19453
- declarations: [exports.ɵdq],
19834
+ declarations: [exports.ɵdr],
19454
19835
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, space.NzSpaceModule],
19455
19836
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
19456
19837
  },] }
@@ -19459,7 +19840,7 @@
19459
19840
  { type: bbjWidgetBase.WidgetService }
19460
19841
  ]; };
19461
19842
 
19462
- exports.ɵdu = /** @class */ (function () {
19843
+ exports.ɵdv = /** @class */ (function () {
19463
19844
  function TemporaryDataComponent(renderer, elementRef) {
19464
19845
  this.renderer = renderer;
19465
19846
  this.elementRef = elementRef;
@@ -19481,39 +19862,39 @@
19481
19862
  };
19482
19863
  return TemporaryDataComponent;
19483
19864
  }());
19484
- exports.ɵdu.decorators = [
19865
+ exports.ɵdv.decorators = [
19485
19866
  { type: i0.Component, args: [{
19486
19867
  selector: 'sc-temporary-data',
19487
19868
  template: "<i nz-icon nzType=\"database\" nzTheme=\"outline\"></i>",
19488
19869
  styles: [":host{font-size:40px;color:#1890ff}"]
19489
19870
  },] }
19490
19871
  ];
19491
- exports.ɵdu.ctorParameters = function () { return [
19872
+ exports.ɵdv.ctorParameters = function () { return [
19492
19873
  { type: i0.Renderer2 },
19493
19874
  { type: i0.ElementRef }
19494
19875
  ]; };
19495
19876
  __decorate([
19496
19877
  bbjWidgetBase.Data({}),
19497
19878
  __metadata("design:type", Array)
19498
- ], exports.ɵdu.prototype, "data", void 0);
19879
+ ], exports.ɵdv.prototype, "data", void 0);
19499
19880
  __decorate([
19500
19881
  bbjWidgetBase.DataOutput('数据'),
19501
19882
  __metadata("design:type", Object)
19502
- ], exports.ɵdu.prototype, "dataChange", void 0);
19503
- exports.ɵdu = __decorate([
19883
+ ], exports.ɵdv.prototype, "dataChange", void 0);
19884
+ exports.ɵdv = __decorate([
19504
19885
  bbjWidgetBase.Widget('临时数据', { group: 'component', image: 'assets/img/screen/temporary-data.png', icon: 'iconmokuai' }),
19505
19886
  __metadata("design:paramtypes", [i0.Renderer2, i0.ElementRef])
19506
- ], exports.ɵdu);
19887
+ ], exports.ɵdv);
19507
19888
 
19508
19889
  var TemporaryDataModule = /** @class */ (function () {
19509
19890
  function TemporaryDataModule(widgetService) {
19510
- widgetService.register(exports.ɵdu);
19891
+ widgetService.register(exports.ɵdv);
19511
19892
  }
19512
19893
  return TemporaryDataModule;
19513
19894
  }());
19514
19895
  TemporaryDataModule.decorators = [
19515
19896
  { type: i0.NgModule, args: [{
19516
- declarations: [exports.ɵdu],
19897
+ declarations: [exports.ɵdv],
19517
19898
  imports: [common.CommonModule, icon.NzIconModule],
19518
19899
  },] }
19519
19900
  ];
@@ -19521,7 +19902,7 @@
19521
19902
  { type: bbjWidgetBase.WidgetService }
19522
19903
  ]; };
19523
19904
 
19524
- exports.ɵdw = /** @class */ (function () {
19905
+ exports.ɵdx = /** @class */ (function () {
19525
19906
  function LineLightFlowComponent() {
19526
19907
  this.lineColor = '#004CB3';
19527
19908
  this.lineshadowColor = 'rgba(0, 193, 220, 1)';
@@ -19705,15 +20086,15 @@
19705
20086
  };
19706
20087
  return LineLightFlowComponent;
19707
20088
  }());
19708
- exports.ɵdw.decorators = [
20089
+ exports.ɵdx.decorators = [
19709
20090
  { type: i0.Component, args: [{
19710
20091
  selector: 'sc-line-light-flow',
19711
20092
  template: "<div #canvasBox [style.paddingTop]=\"topDistance + 'px'\">\r\n <canvas #lineCanvas></canvas>\r\n</div>\r\n",
19712
20093
  styles: [""]
19713
20094
  },] }
19714
20095
  ];
19715
- exports.ɵdw.ctorParameters = function () { return []; };
19716
- exports.ɵdw.propDecorators = {
20096
+ exports.ɵdx.ctorParameters = function () { return []; };
20097
+ exports.ɵdx.propDecorators = {
19717
20098
  lineCanvas: [{ type: i0.ViewChild, args: ['lineCanvas',] }],
19718
20099
  canvasBox: [{ type: i0.ViewChild, args: ['canvasBox',] }],
19719
20100
  resize: [{ type: i0.HostListener, args: ['window:resize',] }]
@@ -19725,7 +20106,7 @@
19725
20106
  },
19726
20107
  }),
19727
20108
  __metadata("design:type", Object)
19728
- ], exports.ɵdw.prototype, "lineColor", void 0);
20109
+ ], exports.ɵdx.prototype, "lineColor", void 0);
19729
20110
  __decorate([
19730
20111
  bbjWidgetBase.Property('线条阴影', {
19731
20112
  ui: {
@@ -19733,7 +20114,7 @@
19733
20114
  },
19734
20115
  }),
19735
20116
  __metadata("design:type", Object)
19736
- ], exports.ɵdw.prototype, "lineshadowColor", void 0);
20117
+ ], exports.ɵdx.prototype, "lineshadowColor", void 0);
19737
20118
  __decorate([
19738
20119
  bbjWidgetBase.Property('高亮颜色', {
19739
20120
  ui: {
@@ -19741,36 +20122,36 @@
19741
20122
  },
19742
20123
  }),
19743
20124
  __metadata("design:type", Object)
19744
- ], exports.ɵdw.prototype, "lineHightLightColor", void 0);
20125
+ ], exports.ɵdx.prototype, "lineHightLightColor", void 0);
19745
20126
  __decorate([
19746
20127
  bbjWidgetBase.Property('中间间距', {
19747
20128
  type: 'number'
19748
20129
  }),
19749
20130
  __metadata("design:type", Object)
19750
- ], exports.ɵdw.prototype, "distance", void 0);
20131
+ ], exports.ɵdx.prototype, "distance", void 0);
19751
20132
  __decorate([
19752
20133
  bbjWidgetBase.Property('上边距', {
19753
20134
  type: 'number'
19754
20135
  }),
19755
20136
  __metadata("design:type", Object)
19756
- ], exports.ɵdw.prototype, "topDistance", void 0);
19757
- exports.ɵdw = __decorate([
20137
+ ], exports.ɵdx.prototype, "topDistance", void 0);
20138
+ exports.ɵdx = __decorate([
19758
20139
  bbjWidgetBase.Widget('光线特效', {
19759
20140
  group: 'mipAnim',
19760
20141
  }),
19761
20142
  __metadata("design:paramtypes", [])
19762
- ], exports.ɵdw);
20143
+ ], exports.ɵdx);
19763
20144
 
19764
20145
  var LineLightFlowModule = /** @class */ (function () {
19765
20146
  function LineLightFlowModule(widgetService) {
19766
- widgetService.register(exports.ɵdw);
20147
+ widgetService.register(exports.ɵdx);
19767
20148
  }
19768
20149
  return LineLightFlowModule;
19769
20150
  }());
19770
20151
  LineLightFlowModule.decorators = [
19771
20152
  { type: i0.NgModule, args: [{
19772
20153
  declarations: [
19773
- exports.ɵdw
20154
+ exports.ɵdx
19774
20155
  ],
19775
20156
  imports: [
19776
20157
  common.CommonModule,
@@ -19782,7 +20163,7 @@
19782
20163
  { type: bbjWidgetBase.WidgetService }
19783
20164
  ]; };
19784
20165
 
19785
- exports.ɵdx = /** @class */ (function () {
20166
+ exports.ɵdy = /** @class */ (function () {
19786
20167
  function IframeComponent() {
19787
20168
  }
19788
20169
  IframeComponent.prototype.ngOnChanges = function (changes) {
@@ -19798,43 +20179,43 @@
19798
20179
  };
19799
20180
  return IframeComponent;
19800
20181
  }());
19801
- exports.ɵdx.decorators = [
20182
+ exports.ɵdy.decorators = [
19802
20183
  { type: i0.Component, args: [{
19803
20184
  selector: 'sc-iframe',
19804
20185
  template: "<iframe *ngIf=\"url\" [class.edit]=\"edit\" [src]=\"url | nzSanitizer: 'resourceUrl'\"> </iframe>\n",
19805
20186
  styles: [":host{display:block}:host,iframe{width:100%;height:100%}iframe{border:none}iframe.edit{pointer-events:none}"]
19806
20187
  },] }
19807
20188
  ];
19808
- exports.ɵdx.ctorParameters = function () { return []; };
20189
+ exports.ɵdy.ctorParameters = function () { return []; };
19809
20190
  __decorate([
19810
20191
  bbjWidgetBase.Property('url'),
19811
20192
  __metadata("design:type", String)
19812
- ], exports.ɵdx.prototype, "url", void 0);
20193
+ ], exports.ɵdy.prototype, "url", void 0);
19813
20194
  __decorate([
19814
20195
  bbjWidgetBase.Data({ properties: { url: { type: 'string', title: 'url' } } }),
19815
20196
  __metadata("design:type", Array)
19816
- ], exports.ɵdx.prototype, "data", void 0);
20197
+ ], exports.ɵdy.prototype, "data", void 0);
19817
20198
  __decorate([
19818
20199
  bbjWidgetBase.Method('设置url'),
19819
20200
  __param(0, bbjWidgetBase.Param('url')),
19820
20201
  __metadata("design:type", Function),
19821
20202
  __metadata("design:paramtypes", [String]),
19822
20203
  __metadata("design:returntype", void 0)
19823
- ], exports.ɵdx.prototype, "setUrl", null);
19824
- exports.ɵdx = __decorate([
20204
+ ], exports.ɵdy.prototype, "setUrl", null);
20205
+ exports.ɵdy = __decorate([
19825
20206
  bbjWidgetBase.Widget('iframe', { group: 'component', image: 'assets/img/screen/iframe.png', icon: 'iconmokuai' }),
19826
20207
  __metadata("design:paramtypes", [])
19827
- ], exports.ɵdx);
20208
+ ], exports.ɵdy);
19828
20209
 
19829
20210
  var IframeModule = /** @class */ (function () {
19830
20211
  function IframeModule(widgetService) {
19831
- widgetService.register(exports.ɵdx);
20212
+ widgetService.register(exports.ɵdy);
19832
20213
  }
19833
20214
  return IframeModule;
19834
20215
  }());
19835
20216
  IframeModule.decorators = [
19836
20217
  { type: i0.NgModule, args: [{
19837
- declarations: [exports.ɵdx],
20218
+ declarations: [exports.ɵdy],
19838
20219
  imports: [common.CommonModule, pipes.NzPipesModule],
19839
20220
  },] }
19840
20221
  ];
@@ -19842,7 +20223,7 @@
19842
20223
  { type: bbjWidgetBase.WidgetService }
19843
20224
  ]; };
19844
20225
 
19845
- exports.ɵdy = /** @class */ (function () {
20226
+ exports.ɵdz = /** @class */ (function () {
19846
20227
  function VideoGridComponent() {
19847
20228
  this.size = 4;
19848
20229
  this.gutter = 4;
@@ -19923,14 +20304,14 @@
19923
20304
  };
19924
20305
  return VideoGridComponent;
19925
20306
  }());
19926
- exports.ɵdy.decorators = [
20307
+ exports.ɵdz.decorators = [
19927
20308
  { type: i0.Component, args: [{
19928
20309
  selector: 'sc-video-grid',
19929
20310
  template: "<!-- <div nz-row style=\"height: 100%\" [nzGutter]=\"[gutter, gutter]\">\n \n</div> -->\n<div *ngIf=\"showToggle\" class=\"grid-top\">\n <div class=\"toggle-btn\" (click)=\"toggle()\">\n <img src=\"/assets/img/screen/grid.png\" />\n <span>\u5207\u6362</span>\n </div>\n</div>\n<div class=\"video-grid\">\n <div class=\"video-grid-inner\" [style.margin.px]=\"margin\" [style.height]=\"height\">\n <div\n *ngFor=\"let video of videos; let i = index\"\n class=\"grid-cell\"\n [style.width]=\"cellSize\"\n [style.height]=\"cellSize\"\n [style.padding.px]=\"gutter\"\n >\n <div class=\"video-container\" [class.selected]=\"i === selectedIndex\" (click)=\"selectedIndex = i\">\n <sc-video-player [type]=\"type\" [src]=\"video.src\" [hasAudio]=\"hasAudio\"></sc-video-player>\n <div *ngIf=\"video.src\" class=\"video-top\">\n <i\n class=\"close\"\n nz-icon\n nzType=\"close\"\n nzTheme=\"outline\"\n (click)=\"$event.stopPropagation(); video.src = null\"\n ></i>\n </div>\n </div>\n </div>\n </div>\n</div>\n",
19930
20311
  styles: [":host{display:flex;flex-direction:column;height:100%;width:100%}.grid-top{flex:none;justify-content:flex-end;padding:10px 0}.grid-top,.toggle-btn{display:flex;align-items:center}.toggle-btn{cursor:pointer;color:#fff}.toggle-btn img{width:14px;height:14px;margin-right:4px}.video-grid{flex:1;width:100%;height:100%}.video-grid-inner{display:flex;height:100%;flex-wrap:wrap;pointer-events:none}.video-container{position:relative;pointer-events:auto;height:100%}.video-container:not(:hover)>.video-top{display:none}.video-top{position:absolute;top:0;left:0;right:0;background-color:rgba(0,0,0,.6);height:30px;display:flex;align-items:center;justify-content:flex-end;padding:0 4px}.close{cursor:pointer;color:#fff;width:16px;height:16px}.selected{outline:2px solid red}"]
19931
20312
  },] }
19932
20313
  ];
19933
- exports.ɵdy.ctorParameters = function () { return []; };
20314
+ exports.ɵdz.ctorParameters = function () { return []; };
19934
20315
  __decorate([
19935
20316
  bbjWidgetBase.Property('宫格数', {
19936
20317
  enum: [
@@ -19939,27 +20320,27 @@
19939
20320
  ],
19940
20321
  }),
19941
20322
  __metadata("design:type", Object)
19942
- ], exports.ɵdy.prototype, "size", void 0);
20323
+ ], exports.ɵdz.prototype, "size", void 0);
19943
20324
  __decorate([
19944
20325
  bbjWidgetBase.Property('间隔', { type: 'number' }),
19945
20326
  __metadata("design:type", Object)
19946
- ], exports.ɵdy.prototype, "gutter", void 0);
20327
+ ], exports.ɵdz.prototype, "gutter", void 0);
19947
20328
  __decorate([
19948
20329
  bbjWidgetBase.Property('切换按钮'),
19949
20330
  __metadata("design:type", Boolean)
19950
- ], exports.ɵdy.prototype, "showToggle", void 0);
20331
+ ], exports.ɵdz.prototype, "showToggle", void 0);
19951
20332
  __decorate([
19952
20333
  bbjWidgetBase.Property('视频类型', { enum: ['flv', 'hls', 'iframe'] }),
19953
20334
  __metadata("design:type", Object)
19954
- ], exports.ɵdy.prototype, "type", void 0);
20335
+ ], exports.ɵdz.prototype, "type", void 0);
19955
20336
  __decorate([
19956
20337
  bbjWidgetBase.Property('是否有声音'),
19957
20338
  __metadata("design:type", Boolean)
19958
- ], exports.ɵdy.prototype, "hasAudio", void 0);
20339
+ ], exports.ɵdz.prototype, "hasAudio", void 0);
19959
20340
  __decorate([
19960
20341
  bbjWidgetBase.DataInput('视频地址'),
19961
20342
  __metadata("design:type", String)
19962
- ], exports.ɵdy.prototype, "src", void 0);
20343
+ ], exports.ɵdz.prototype, "src", void 0);
19963
20344
  __decorate([
19964
20345
  bbjWidgetBase.Data({
19965
20346
  properties: {
@@ -19967,28 +20348,28 @@
19967
20348
  },
19968
20349
  }),
19969
20350
  __metadata("design:type", Object)
19970
- ], exports.ɵdy.prototype, "data", void 0);
20351
+ ], exports.ɵdz.prototype, "data", void 0);
19971
20352
  __decorate([
19972
20353
  bbjWidgetBase.Method('设置视频地址'),
19973
20354
  __param(0, bbjWidgetBase.Param('视频地址')),
19974
20355
  __metadata("design:type", Function),
19975
20356
  __metadata("design:paramtypes", [String]),
19976
20357
  __metadata("design:returntype", void 0)
19977
- ], exports.ɵdy.prototype, "addSrc", null);
19978
- exports.ɵdy = __decorate([
20358
+ ], exports.ɵdz.prototype, "addSrc", null);
20359
+ exports.ɵdz = __decorate([
19979
20360
  bbjWidgetBase.Widget('视频宫格', { group: 'component', image: 'assets/img/screen/video-grid.png', icon: 'iconmokuai' }),
19980
20361
  __metadata("design:paramtypes", [])
19981
- ], exports.ɵdy);
20362
+ ], exports.ɵdz);
19982
20363
 
19983
20364
  var VideoGridModule = /** @class */ (function () {
19984
20365
  function VideoGridModule(widgetService) {
19985
- widgetService.register(exports.ɵdy);
20366
+ widgetService.register(exports.ɵdz);
19986
20367
  }
19987
20368
  return VideoGridModule;
19988
20369
  }());
19989
20370
  VideoGridModule.decorators = [
19990
20371
  { type: i0.NgModule, args: [{
19991
- declarations: [exports.ɵdy],
20372
+ declarations: [exports.ɵdz],
19992
20373
  imports: [common.CommonModule, VideoPlayerModule, grid.NzGridModule, icon.NzIconModule],
19993
20374
  },] }
19994
20375
  ];
@@ -19996,7 +20377,7 @@
19996
20377
  { type: bbjWidgetBase.WidgetService }
19997
20378
  ]; };
19998
20379
 
19999
- exports.ɵdz = /** @class */ (function () {
20380
+ exports.ɵea = /** @class */ (function () {
20000
20381
  function Scatter3dComponent() {
20001
20382
  this.min = 0;
20002
20383
  this.max = 10;
@@ -20086,30 +20467,30 @@
20086
20467
  Scatter3dComponent.prototype.onChartClick = function (event) { };
20087
20468
  return Scatter3dComponent;
20088
20469
  }());
20089
- exports.ɵdz.decorators = [
20470
+ exports.ɵea.decorators = [
20090
20471
  { type: i0.Component, args: [{
20091
20472
  selector: 'sc-scatter3d',
20092
20473
  template: "<div echarts [options]=\"options\" class=\"demo-chart\" (chartClick)=\"onChartClick($event)\"></div>\n",
20093
20474
  styles: [":host{display:block;width:100%}.demo-chart,:host{height:100%}"]
20094
20475
  },] }
20095
20476
  ];
20096
- exports.ɵdz.ctorParameters = function () { return []; };
20477
+ exports.ɵea.ctorParameters = function () { return []; };
20097
20478
  __decorate([
20098
20479
  bbjWidgetBase.Property('最小值', { type: 'number' }),
20099
20480
  __metadata("design:type", Object)
20100
- ], exports.ɵdz.prototype, "min", void 0);
20481
+ ], exports.ɵea.prototype, "min", void 0);
20101
20482
  __decorate([
20102
20483
  bbjWidgetBase.Property('最大值', { type: 'number' }),
20103
20484
  __metadata("design:type", Object)
20104
- ], exports.ɵdz.prototype, "max", void 0);
20485
+ ], exports.ɵea.prototype, "max", void 0);
20105
20486
  __decorate([
20106
20487
  bbjWidgetBase.Property('最小尺寸', { type: 'number' }),
20107
20488
  __metadata("design:type", Object)
20108
- ], exports.ɵdz.prototype, "symbolSizeMin", void 0);
20489
+ ], exports.ɵea.prototype, "symbolSizeMin", void 0);
20109
20490
  __decorate([
20110
20491
  bbjWidgetBase.Property('最大尺寸', { type: 'number' }),
20111
20492
  __metadata("design:type", Object)
20112
- ], exports.ɵdz.prototype, "symbolSizeMax", void 0);
20493
+ ], exports.ɵea.prototype, "symbolSizeMax", void 0);
20113
20494
  __decorate([
20114
20495
  bbjWidgetBase.Property('颜色', {
20115
20496
  ui: {
@@ -20118,27 +20499,27 @@
20118
20499
  },
20119
20500
  }),
20120
20501
  __metadata("design:type", Object)
20121
- ], exports.ɵdz.prototype, "visualMapColor", void 0);
20502
+ ], exports.ɵea.prototype, "visualMapColor", void 0);
20122
20503
  __decorate([
20123
20504
  bbjWidgetBase.Property('最小不透明度', { type: 'number', minimum: 0, maximum: 1 }),
20124
20505
  __metadata("design:type", Object)
20125
- ], exports.ɵdz.prototype, "colorAlphaMin", void 0);
20506
+ ], exports.ɵea.prototype, "colorAlphaMin", void 0);
20126
20507
  __decorate([
20127
20508
  bbjWidgetBase.Property('最大不透明度', { type: 'number', minimum: 0, maximum: 1 }),
20128
20509
  __metadata("design:type", Object)
20129
- ], exports.ɵdz.prototype, "colorAlphaMax", void 0);
20510
+ ], exports.ɵea.prototype, "colorAlphaMax", void 0);
20130
20511
  __decorate([
20131
20512
  bbjWidgetBase.Property('高度', { type: 'number' }),
20132
20513
  __metadata("design:type", Object)
20133
- ], exports.ɵdz.prototype, "boxHeight", void 0);
20514
+ ], exports.ɵea.prototype, "boxHeight", void 0);
20134
20515
  __decorate([
20135
20516
  bbjWidgetBase.Property('宽度', { type: 'number' }),
20136
20517
  __metadata("design:type", Object)
20137
- ], exports.ɵdz.prototype, "boxWidth", void 0);
20518
+ ], exports.ɵea.prototype, "boxWidth", void 0);
20138
20519
  __decorate([
20139
20520
  bbjWidgetBase.Property('深度', { type: 'number' }),
20140
20521
  __metadata("design:type", Object)
20141
- ], exports.ɵdz.prototype, "boxDepth", void 0);
20522
+ ], exports.ɵea.prototype, "boxDepth", void 0);
20142
20523
  __decorate([
20143
20524
  bbjWidgetBase.Data({
20144
20525
  properties: {
@@ -20149,25 +20530,25 @@
20149
20530
  },
20150
20531
  }),
20151
20532
  __metadata("design:type", Object)
20152
- ], exports.ɵdz.prototype, "data", void 0);
20153
- exports.ɵdz = __decorate([
20533
+ ], exports.ɵea.prototype, "data", void 0);
20534
+ exports.ɵea = __decorate([
20154
20535
  bbjWidgetBase.Widget('3D散点图', {
20155
20536
  group: 'otherChart',
20156
20537
  image: 'assets/img/screen/bubble.png',
20157
20538
  icon: 'icontubiao',
20158
20539
  }),
20159
20540
  __metadata("design:paramtypes", [])
20160
- ], exports.ɵdz);
20541
+ ], exports.ɵea);
20161
20542
 
20162
20543
  var Scatter3dModule = /** @class */ (function () {
20163
20544
  function Scatter3dModule(widgetService) {
20164
- widgetService.register(exports.ɵdz);
20545
+ widgetService.register(exports.ɵea);
20165
20546
  }
20166
20547
  return Scatter3dModule;
20167
20548
  }());
20168
20549
  Scatter3dModule.decorators = [
20169
20550
  { type: i0.NgModule, args: [{
20170
- declarations: [exports.ɵdz],
20551
+ declarations: [exports.ɵea],
20171
20552
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, ngxEcharts.NgxEchartsModule],
20172
20553
  },] }
20173
20554
  ];
@@ -20632,7 +21013,7 @@
20632
21013
  { type: bbjWidgetBase.WidgetService }
20633
21014
  ]; };
20634
21015
 
20635
- exports.ɵeb = /** @class */ (function () {
21016
+ exports.ɵec = /** @class */ (function () {
20636
21017
  function AnnouncementComponent(element) {
20637
21018
  this.element = element;
20638
21019
  this.headIconDisplay = true;
@@ -20670,32 +21051,32 @@
20670
21051
  };
20671
21052
  return AnnouncementComponent;
20672
21053
  }());
20673
- exports.ɵeb.decorators = [
21054
+ exports.ɵec.decorators = [
20674
21055
  { type: i0.Component, args: [{
20675
21056
  selector: 'sc-announcement',
20676
21057
  template: "<ng-container *ngIf=\"data[0]\">\n {{data[0].content}}\n</ng-container>",
20677
21058
  styles: [":host{height:100%;overflow:auto;display:block}"]
20678
21059
  },] }
20679
21060
  ];
20680
- exports.ɵeb.ctorParameters = function () { return [
21061
+ exports.ɵec.ctorParameters = function () { return [
20681
21062
  { type: i0.ElementRef }
20682
21063
  ]; };
20683
21064
  __decorate([
20684
21065
  bbjWidgetBase.Property('显示图标', { type: 'boolean' }),
20685
21066
  __metadata("design:type", Object)
20686
- ], exports.ɵeb.prototype, "headIconDisplay", void 0);
21067
+ ], exports.ɵec.prototype, "headIconDisplay", void 0);
20687
21068
  __decorate([
20688
21069
  bbjWidgetBase.Property('内边距', { ui: { widget: 'myGrid' } }),
20689
21070
  __metadata("design:type", Object)
20690
- ], exports.ɵeb.prototype, "padding", void 0);
21071
+ ], exports.ɵec.prototype, "padding", void 0);
20691
21072
  __decorate([
20692
21073
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
20693
21074
  __metadata("design:type", Object)
20694
- ], exports.ɵeb.prototype, "font", void 0);
21075
+ ], exports.ɵec.prototype, "font", void 0);
20695
21076
  __decorate([
20696
21077
  bbjWidgetBase.Property('图标', { ui: { hidden: true } }),
20697
21078
  __metadata("design:type", Object)
20698
- ], exports.ɵeb.prototype, "icon", void 0);
21079
+ ], exports.ɵec.prototype, "icon", void 0);
20699
21080
  __decorate([
20700
21081
  bbjWidgetBase.Data({
20701
21082
  properties: {
@@ -20703,23 +21084,23 @@
20703
21084
  },
20704
21085
  }),
20705
21086
  __metadata("design:type", Object)
20706
- ], exports.ɵeb.prototype, "data", void 0);
20707
- exports.ɵeb = __decorate([
21087
+ ], exports.ɵec.prototype, "data", void 0);
21088
+ exports.ɵec = __decorate([
20708
21089
  bbjWidgetBase.Widget('公告', { group: 'component', image: 'assets/img/screen/announcement.png', icon: 'iconmokuai' }),
20709
21090
  __metadata("design:paramtypes", [i0.ElementRef])
20710
- ], exports.ɵeb);
21091
+ ], exports.ɵec);
20711
21092
 
20712
21093
  var AnnouncementModule = /** @class */ (function () {
20713
21094
  function AnnouncementModule(widgetService) {
20714
21095
  this.widgetService = widgetService;
20715
- widgetService.register(exports.ɵeb);
21096
+ widgetService.register(exports.ɵec);
20716
21097
  }
20717
21098
  return AnnouncementModule;
20718
21099
  }());
20719
21100
  AnnouncementModule.decorators = [
20720
21101
  { type: i0.NgModule, args: [{
20721
21102
  declarations: [
20722
- exports.ɵeb
21103
+ exports.ɵec
20723
21104
  ],
20724
21105
  imports: [
20725
21106
  common.CommonModule,
@@ -20743,7 +21124,7 @@
20743
21124
  }
20744
21125
 
20745
21126
  var ɵ0$e = { type: 'string', title: 'id' };
20746
- exports.ɵeg = /** @class */ (function () {
21127
+ exports.ɵeh = /** @class */ (function () {
20747
21128
  function CalendarComponent(router, cd) {
20748
21129
  var _this = this;
20749
21130
  this.router = router;
@@ -20863,25 +21244,25 @@
20863
21244
  };
20864
21245
  return CalendarComponent;
20865
21246
  }());
20866
- exports.ɵeg.decorators = [
21247
+ exports.ɵeh.decorators = [
20867
21248
  { type: i0.Component, args: [{
20868
21249
  selector: 'sc-calendar',
20869
21250
  template: "<full-calendar *ngIf=\"calendarOptions\" [options]=\"calendarOptions\"></full-calendar>\n<ng-template *ngFor=\"let child of children\" widget-host [widget]=\"child\"></ng-template>\n",
20870
21251
  styles: [":host ::ng-deep .fc-direction-ltr{height:100%}:host ::ng-deep .fc .fc-view-harness{padding-bottom:0!important}:host ::ng-deep .fc-license-message{display:none}:host ::ng-deep .fc-daygrid-event{white-space:normal}"]
20871
21252
  },] }
20872
21253
  ];
20873
- exports.ɵeg.ctorParameters = function () { return [
21254
+ exports.ɵeh.ctorParameters = function () { return [
20874
21255
  { type: router.Router },
20875
21256
  { type: i0.ChangeDetectorRef }
20876
21257
  ]; };
20877
21258
  __decorate([
20878
21259
  bbjWidgetBase.Property('是否自定义初始日期', { ui: { format: 'date', widget: 'checkbox', spanLabel: 0, spanControl: 24 } }),
20879
21260
  __metadata("design:type", Object)
20880
- ], exports.ɵeg.prototype, "isInitialDate", void 0);
21261
+ ], exports.ɵeh.prototype, "isInitialDate", void 0);
20881
21262
  __decorate([
20882
21263
  bbjWidgetBase.Property('', { ui: { type: 'date', format: 'date', spanLabel: 0, spanControl: 24 } }),
20883
21264
  __metadata("design:type", Object)
20884
- ], exports.ɵeg.prototype, "initialDate", void 0);
21265
+ ], exports.ɵeh.prototype, "initialDate", void 0);
20885
21266
  __decorate([
20886
21267
  bbjWidgetBase.Data({
20887
21268
  properties: {
@@ -20892,11 +21273,11 @@
20892
21273
  },
20893
21274
  }),
20894
21275
  __metadata("design:type", Array)
20895
- ], exports.ɵeg.prototype, "data", void 0);
21276
+ ], exports.ɵeh.prototype, "data", void 0);
20896
21277
  __decorate([
20897
21278
  bbjWidgetBase.DataOutput(['id', 'title']),
20898
21279
  __metadata("design:type", Object)
20899
- ], exports.ɵeg.prototype, "dataClick", void 0);
21280
+ ], exports.ɵeh.prototype, "dataClick", void 0);
20900
21281
  __decorate([
20901
21282
  bbjWidgetBase.DataOutput({
20902
21283
  properties: {
@@ -20906,8 +21287,8 @@
20906
21287
  },
20907
21288
  }, { triggerLink: false }),
20908
21289
  __metadata("design:type", Object)
20909
- ], exports.ɵeg.prototype, "datesSetChange", void 0);
20910
- exports.ɵeg = __decorate([
21290
+ ], exports.ɵeh.prototype, "datesSetChange", void 0);
21291
+ exports.ɵeh = __decorate([
20911
21292
  bbjWidgetBase.Widget('日历', {
20912
21293
  group: 'component',
20913
21294
  image: 'assets/img/screen/rili.png',
@@ -20915,7 +21296,7 @@
20915
21296
  childTypes: ['sc-calendar-events', 'sc-calendar-background-events'],
20916
21297
  }),
20917
21298
  __metadata("design:paramtypes", [router.Router, i0.ChangeDetectorRef])
20918
- ], exports.ɵeg);
21299
+ ], exports.ɵeh);
20919
21300
 
20920
21301
  var CalendarEventsChild = /** @class */ (function () {
20921
21302
  function CalendarEventsChild(parent) {
@@ -20941,11 +21322,11 @@
20941
21322
  { type: i0.Directive }
20942
21323
  ];
20943
21324
  CalendarEventsChild.ctorParameters = function () { return [
20944
- { type: exports.ɵeg }
21325
+ { type: exports.ɵeh }
20945
21326
  ]; };
20946
21327
 
20947
21328
  var ɵ0$f = { type: 'string', title: 'id' };
20948
- exports.ɵeh = /** @class */ (function (_super) {
21329
+ exports.ɵei = /** @class */ (function (_super) {
20949
21330
  __extends(BackgroundEventsComponent, _super);
20950
21331
  function BackgroundEventsComponent(parent) {
20951
21332
  var _this = _super.call(this, parent) || this;
@@ -20970,15 +21351,15 @@
20970
21351
  };
20971
21352
  return BackgroundEventsComponent;
20972
21353
  }(CalendarEventsChild));
20973
- exports.ɵeh.decorators = [
21354
+ exports.ɵei.decorators = [
20974
21355
  { type: i0.Component, args: [{
20975
21356
  selector: 'sc-calendar-background-events',
20976
21357
  template: "",
20977
21358
  styles: [""]
20978
21359
  },] }
20979
21360
  ];
20980
- exports.ɵeh.ctorParameters = function () { return [
20981
- { type: exports.ɵeg }
21361
+ exports.ɵei.ctorParameters = function () { return [
21362
+ { type: exports.ɵeh }
20982
21363
  ]; };
20983
21364
  __decorate([
20984
21365
  bbjWidgetBase.Property('颜色', {
@@ -20987,7 +21368,7 @@
20987
21368
  },
20988
21369
  }),
20989
21370
  __metadata("design:type", String)
20990
- ], exports.ɵeh.prototype, "color", void 0);
21371
+ ], exports.ɵei.prototype, "color", void 0);
20991
21372
  __decorate([
20992
21373
  bbjWidgetBase.Data({
20993
21374
  properties: {
@@ -20999,14 +21380,14 @@
20999
21380
  },
21000
21381
  }),
21001
21382
  __metadata("design:type", Array)
21002
- ], exports.ɵeh.prototype, "data", void 0);
21003
- exports.ɵeh = __decorate([
21383
+ ], exports.ɵei.prototype, "data", void 0);
21384
+ exports.ɵei = __decorate([
21004
21385
  bbjWidgetBase.Widget('背景颜色', { hidden: true }),
21005
- __metadata("design:paramtypes", [exports.ɵeg])
21006
- ], exports.ɵeh);
21386
+ __metadata("design:paramtypes", [exports.ɵeh])
21387
+ ], exports.ɵei);
21007
21388
 
21008
21389
  var ɵ0$g = { type: 'string', title: 'id' };
21009
- exports.ɵej = /** @class */ (function (_super) {
21390
+ exports.ɵek = /** @class */ (function (_super) {
21010
21391
  __extends(EventsComponent, _super);
21011
21392
  function EventsComponent(parent) {
21012
21393
  var _this = _super.call(this, parent) || this;
@@ -21037,15 +21418,15 @@
21037
21418
  };
21038
21419
  return EventsComponent;
21039
21420
  }(CalendarEventsChild));
21040
- exports.ɵej.decorators = [
21421
+ exports.ɵek.decorators = [
21041
21422
  { type: i0.Component, args: [{
21042
21423
  selector: 'sc-calendar-events',
21043
21424
  template: "",
21044
21425
  styles: [""]
21045
21426
  },] }
21046
21427
  ];
21047
- exports.ɵej.ctorParameters = function () { return [
21048
- { type: exports.ɵeg }
21428
+ exports.ɵek.ctorParameters = function () { return [
21429
+ { type: exports.ɵeh }
21049
21430
  ]; };
21050
21431
  __decorate([
21051
21432
  bbjWidgetBase.Property('颜色', {
@@ -21054,7 +21435,7 @@
21054
21435
  },
21055
21436
  }),
21056
21437
  __metadata("design:type", String)
21057
- ], exports.ɵej.prototype, "color", void 0);
21438
+ ], exports.ɵek.prototype, "color", void 0);
21058
21439
  __decorate([
21059
21440
  bbjWidgetBase.Data({
21060
21441
  properties: {
@@ -21066,15 +21447,15 @@
21066
21447
  },
21067
21448
  }),
21068
21449
  __metadata("design:type", Array)
21069
- ], exports.ɵej.prototype, "data", void 0);
21450
+ ], exports.ɵek.prototype, "data", void 0);
21070
21451
  __decorate([
21071
21452
  bbjWidgetBase.DataOutput(['id', 'title']),
21072
21453
  __metadata("design:type", Object)
21073
- ], exports.ɵej.prototype, "dataClick", void 0);
21074
- exports.ɵej = __decorate([
21454
+ ], exports.ɵek.prototype, "dataClick", void 0);
21455
+ exports.ɵek = __decorate([
21075
21456
  bbjWidgetBase.Widget('事件', { hidden: true }),
21076
- __metadata("design:paramtypes", [exports.ɵeg])
21077
- ], exports.ɵej);
21457
+ __metadata("design:paramtypes", [exports.ɵeh])
21458
+ ], exports.ɵek);
21078
21459
 
21079
21460
  var CalendarModule = /** @class */ (function () {
21080
21461
  function CalendarModule(widgetService) {
@@ -21083,15 +21464,15 @@
21083
21464
  timeGridPlugin__default['default'],
21084
21465
  interactionPlugin__default['default'],
21085
21466
  ]);
21086
- widgetService.register(exports.ɵeg);
21087
- widgetService.register(exports.ɵej);
21088
21467
  widgetService.register(exports.ɵeh);
21468
+ widgetService.register(exports.ɵek);
21469
+ widgetService.register(exports.ɵei);
21089
21470
  }
21090
21471
  return CalendarModule;
21091
21472
  }());
21092
21473
  CalendarModule.decorators = [
21093
21474
  { type: i0.NgModule, args: [{
21094
- declarations: [exports.ɵeg, exports.ɵeh, exports.ɵej],
21475
+ declarations: [exports.ɵeh, exports.ɵei, exports.ɵek],
21095
21476
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, angular.FullCalendarModule],
21096
21477
  },] }
21097
21478
  ];
@@ -21099,7 +21480,7 @@
21099
21480
  { type: bbjWidgetBase.WidgetService }
21100
21481
  ]; };
21101
21482
 
21102
- exports.ɵed = /** @class */ (function () {
21483
+ exports.ɵee = /** @class */ (function () {
21103
21484
  function TabsComponent() {
21104
21485
  this.type = 'line';
21105
21486
  this.size = 'default';
@@ -21118,14 +21499,14 @@
21118
21499
  };
21119
21500
  return TabsComponent;
21120
21501
  }());
21121
- exports.ɵed.decorators = [
21502
+ exports.ɵee.decorators = [
21122
21503
  { type: i0.Component, args: [{
21123
21504
  selector: 'sc-tabs',
21124
21505
  template: "<nz-tabset\n [style]=\"tabPosition === 'top' || tabPosition === 'bottom' ? 'padding:0 10px' : ''\"\n [(nzSelectedIndex)]=\"selectedIndex\"\n [nzAnimated]=\"animated\"\n [nzSize]=\"size\"\n [nzTabPosition]=\"tabPosition\"\n [nzType]=\"type\"\n [nzTabBarGutter]=\"tabBarGutter\"\n>\n <nz-tab *ngFor=\"let child of children\" [nzTitle]=\"child.option.title\" nzForceRender>\n <ng-template widgetHost [widget]=\"child\"></ng-template>\n </nz-tab>\n</nz-tabset>\n",
21125
21506
  styles: [":host{display:block}.ant-tabs,:host{height:100%}.ant-tabs ::ng-deep>.ant-tabs-nav{margin:0}.ant-tabs ::ng-deep .ant-tabs-content{height:100%}.ant-tabs ::ng-deep .ant-tabs-content .ant-tabs-tabpane{overflow:auto}.ant-tabs{display:flex}.ant-tabs ::ng-deep .ant-tabs-content{flex:1}.ant-tabs ::ng-deep.ant-tabs-bottom,.ant-tabs ::ng-deep.ant-tabs-top{flex-direction:column}.ant-tabs ::ng-deep.ant-tabs-bottom ::ng-deep>.ant-tabs-bar,.ant-tabs ::ng-deep.ant-tabs-right ::ng-deep>.ant-tabs-bar{order:1}"]
21126
21507
  },] }
21127
21508
  ];
21128
- exports.ɵed.ctorParameters = function () { return []; };
21509
+ exports.ɵee.ctorParameters = function () { return []; };
21129
21510
  __decorate([
21130
21511
  bbjWidgetBase.Property('页签样式', {
21131
21512
  enum: [
@@ -21134,7 +21515,7 @@
21134
21515
  ],
21135
21516
  }),
21136
21517
  __metadata("design:type", Object)
21137
- ], exports.ɵed.prototype, "type", void 0);
21518
+ ], exports.ɵee.prototype, "type", void 0);
21138
21519
  __decorate([
21139
21520
  bbjWidgetBase.Property('尺寸', {
21140
21521
  enum: [
@@ -21144,7 +21525,7 @@
21144
21525
  ],
21145
21526
  }),
21146
21527
  __metadata("design:type", Object)
21147
- ], exports.ɵed.prototype, "size", void 0);
21528
+ ], exports.ɵee.prototype, "size", void 0);
21148
21529
  __decorate([
21149
21530
  bbjWidgetBase.Property('页签位置', {
21150
21531
  enum: [
@@ -21155,16 +21536,16 @@
21155
21536
  ],
21156
21537
  }),
21157
21538
  __metadata("design:type", Object)
21158
- ], exports.ɵed.prototype, "tabPosition", void 0);
21539
+ ], exports.ɵee.prototype, "tabPosition", void 0);
21159
21540
  __decorate([
21160
21541
  bbjWidgetBase.Property('切换动画', { type: 'boolean', ui: { visibleIf: { tabPosition: ['top', 'bottom'] } } }),
21161
21542
  __metadata("design:type", Object)
21162
- ], exports.ɵed.prototype, "animated", void 0);
21543
+ ], exports.ɵee.prototype, "animated", void 0);
21163
21544
  __decorate([
21164
21545
  bbjWidgetBase.Property('间隙'),
21165
21546
  __metadata("design:type", Number)
21166
- ], exports.ɵed.prototype, "tabBarGutter", void 0);
21167
- exports.ɵed = __decorate([
21547
+ ], exports.ɵee.prototype, "tabBarGutter", void 0);
21548
+ exports.ɵee = __decorate([
21168
21549
  bbjWidgetBase.Widget('标签页', {
21169
21550
  group: 'component', image: 'assets/img/screen/tabs.png', icon: 'iconmokuai',
21170
21551
  children: [
@@ -21179,42 +21560,42 @@
21179
21560
  childTypes: ['sc-tab'],
21180
21561
  }),
21181
21562
  __metadata("design:paramtypes", [])
21182
- ], exports.ɵed);
21563
+ ], exports.ɵee);
21183
21564
 
21184
- exports.ɵee = /** @class */ (function () {
21565
+ exports.ɵef = /** @class */ (function () {
21185
21566
  function TabComponent() {
21186
21567
  this.title = 'New Tab';
21187
21568
  }
21188
21569
  TabComponent.prototype.ngOnInit = function () { };
21189
21570
  return TabComponent;
21190
21571
  }());
21191
- exports.ɵee.decorators = [
21572
+ exports.ɵef.decorators = [
21192
21573
  { type: i0.Component, args: [{
21193
21574
  selector: 'sc-tab',
21194
21575
  template: "<ng-template [widgetChildren]=\"children\"></ng-template>\n",
21195
21576
  styles: [""]
21196
21577
  },] }
21197
21578
  ];
21198
- exports.ɵee.ctorParameters = function () { return []; };
21579
+ exports.ɵef.ctorParameters = function () { return []; };
21199
21580
  __decorate([
21200
21581
  bbjWidgetBase.Property('标题'),
21201
21582
  __metadata("design:type", Object)
21202
- ], exports.ɵee.prototype, "title", void 0);
21203
- exports.ɵee = __decorate([
21583
+ ], exports.ɵef.prototype, "title", void 0);
21584
+ exports.ɵef = __decorate([
21204
21585
  bbjWidgetBase.Widget('选项卡', { hidden: true }),
21205
21586
  __metadata("design:paramtypes", [])
21206
- ], exports.ɵee);
21587
+ ], exports.ɵef);
21207
21588
 
21208
21589
  var TabsModule = /** @class */ (function () {
21209
21590
  function TabsModule(widgetService) {
21210
- widgetService.register(exports.ɵed);
21211
21591
  widgetService.register(exports.ɵee);
21592
+ widgetService.register(exports.ɵef);
21212
21593
  }
21213
21594
  return TabsModule;
21214
21595
  }());
21215
21596
  TabsModule.decorators = [
21216
21597
  { type: i0.NgModule, args: [{
21217
- declarations: [exports.ɵed, exports.ɵee],
21598
+ declarations: [exports.ɵee, exports.ɵef],
21218
21599
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, tabs.NzTabsModule],
21219
21600
  },] }
21220
21601
  ];
@@ -21222,7 +21603,7 @@
21222
21603
  { type: bbjWidgetBase.WidgetService }
21223
21604
  ]; };
21224
21605
 
21225
- exports.ɵel = /** @class */ (function () {
21606
+ exports.ɵem = /** @class */ (function () {
21226
21607
  function GanttComponent(ele) {
21227
21608
  this.ele = ele;
21228
21609
  this.contentRenderers = new Map();
@@ -21381,27 +21762,27 @@
21381
21762
  };
21382
21763
  return GanttComponent;
21383
21764
  }());
21384
- exports.ɵel.decorators = [
21765
+ exports.ɵem.decorators = [
21385
21766
  { type: i0.Component, args: [{
21386
21767
  selector: 'sc-gantt',
21387
21768
  template: "<!--<nz-date-picker [(ngModel)]=\"initDate\" (ngModelChange)=\"onChange(initDate)\"></nz-date-picker>-->\n<full-calendar *ngIf=\"calendarOptions\" [options]=\"calendarOptions\" ></full-calendar>\n<ng-template #fcEventContent let-data=\"data\">\n\n <div class=\"progress\" nz-tooltip [nzTooltipTitle]=\"titleTemplate\" [ngStyle]=\"data.progressStyle\">\n <span class=\"bar\" [ngStyle]=\"data.barStyle\">{{data.title}}</span>\n </div>\n <ng-template #titleTemplate><i nz-icon nzType=\"file\" style=\"margin-right: 8px\"></i> <span>{{data.title}}<br/>\u5F00\u59CB:{{data.start}}<br/>\u7ED3\u675F:{{data.end}}<br/>\u8FDB\u5EA6:{{data.progress}}</span></ng-template>\n</ng-template>\n\n",
21388
21769
  styles: [":host ::ng-deep .fc-direction-ltr{height:100%}:host ::ng-deep .fc .fc-view-harness{padding-bottom:0!important}:host ::ng-deep .progress{overflow:hidden;height:var(--height);background-color:#f7f7f7;background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#fff5f5f5\",endColorstr=\"#fff9f9f9\",GradientType=0);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border-radius:4px;width:100%}:host ::ng-deep .progress .bar{white-space:nowrap;width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;align-items:center;display:flex;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e90d2;background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#ff149bdf\",endColorstr=\"#ff0480be\",GradientType=0);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-sizing:border-box;transition:width .6s ease}:host ::ng-deep .fc-license-message{display:none!important}:host ::ng-deep .fc table{font-size:17px!important}:host ::ng-deep .fc-resource .fc-datagrid-cell-main{font-size:var(--fontSize);color:var(--color);font-weight:var(--weight);font-family:var(--family);line-height:var(--lineHeight)}"]
21389
21770
  },] }
21390
21771
  ];
21391
- exports.ɵel.ctorParameters = function () { return [
21772
+ exports.ɵem.ctorParameters = function () { return [
21392
21773
  { type: i0.ElementRef }
21393
21774
  ]; };
21394
- exports.ɵel.propDecorators = {
21775
+ exports.ɵem.propDecorators = {
21395
21776
  eventContent: [{ type: i0.ViewChild, args: ['fcEventContent', { static: true },] }]
21396
21777
  };
21397
21778
  __decorate([
21398
21779
  bbjWidgetBase.Property('头部名称', { type: 'string' }),
21399
21780
  __metadata("design:type", Object)
21400
- ], exports.ɵel.prototype, "headerContent", void 0);
21781
+ ], exports.ɵem.prototype, "headerContent", void 0);
21401
21782
  __decorate([
21402
21783
  bbjWidgetBase.Property('项目字体', { ui: { widget: 'myFont' } }),
21403
21784
  __metadata("design:type", Object)
21404
- ], exports.ɵel.prototype, "contentFont", void 0);
21785
+ ], exports.ɵem.prototype, "contentFont", void 0);
21405
21786
  __decorate([
21406
21787
  bbjWidgetBase.Property('系列颜色', {
21407
21788
  ui: {
@@ -21410,19 +21791,19 @@
21410
21791
  },
21411
21792
  }),
21412
21793
  __metadata("design:type", Object)
21413
- ], exports.ɵel.prototype, "lineColor", void 0);
21794
+ ], exports.ɵem.prototype, "lineColor", void 0);
21414
21795
  __decorate([
21415
21796
  bbjWidgetBase.Property('进度透明', { type: 'number', max: 1 }),
21416
21797
  __metadata("design:type", Object)
21417
- ], exports.ɵel.prototype, "progressTransparency", void 0);
21798
+ ], exports.ɵem.prototype, "progressTransparency", void 0);
21418
21799
  __decorate([
21419
21800
  bbjWidgetBase.Property('区域占比', { type: 'number' }),
21420
21801
  __metadata("design:type", Object)
21421
- ], exports.ɵel.prototype, "areaRate", void 0);
21802
+ ], exports.ɵem.prototype, "areaRate", void 0);
21422
21803
  __decorate([
21423
21804
  bbjWidgetBase.Property('进度条高度', { type: 'number' }),
21424
21805
  __metadata("design:type", Object)
21425
- ], exports.ɵel.prototype, "progressHeight", void 0);
21806
+ ], exports.ɵem.prototype, "progressHeight", void 0);
21426
21807
  __decorate([
21427
21808
  bbjWidgetBase.Data({
21428
21809
  properties: {
@@ -21434,11 +21815,11 @@
21434
21815
  },
21435
21816
  }),
21436
21817
  __metadata("design:type", Array)
21437
- ], exports.ɵel.prototype, "data", void 0);
21438
- exports.ɵel = __decorate([
21818
+ ], exports.ɵem.prototype, "data", void 0);
21819
+ exports.ɵem = __decorate([
21439
21820
  bbjWidgetBase.Widget('甘特图', { group: 'component', image: 'assets/img/screen/gantt.png', icon: 'iconmokuai' }),
21440
21821
  __metadata("design:paramtypes", [i0.ElementRef])
21441
- ], exports.ɵel);
21822
+ ], exports.ɵem);
21442
21823
 
21443
21824
  // import {FormsModule} from '@angular/forms';
21444
21825
  // import {NzDatePickerModule} from 'ng-zorro-antd/date-picker';
@@ -21451,13 +21832,13 @@
21451
21832
  interactionPlugin__default['default'],
21452
21833
  resourceTimelinePlugin__default['default'],
21453
21834
  ]);
21454
- widgetService.register(exports.ɵel);
21835
+ widgetService.register(exports.ɵem);
21455
21836
  }
21456
21837
  return GanttModule;
21457
21838
  }());
21458
21839
  GanttModule.decorators = [
21459
21840
  { type: i0.NgModule, args: [{
21460
- declarations: [exports.ɵel],
21841
+ declarations: [exports.ɵem],
21461
21842
  imports: [
21462
21843
  common.CommonModule,
21463
21844
  bbjWidgetBase.WidgetBaseModule,
@@ -21473,7 +21854,7 @@
21473
21854
  var WorkbenchWidgetModule = /** @class */ (function () {
21474
21855
  function WorkbenchWidgetModule(widgetService) {
21475
21856
  widgetService.register(exports.ɵp, { option: {}, size: { width: 3, height: 3 } });
21476
- widgetService.register(exports.ɵeg, { option: {}, size: { width: 16, height: 12 } });
21857
+ widgetService.register(exports.ɵeh, { option: {}, size: { width: 16, height: 12 } });
21477
21858
  for (var i = 1; i <= 82; i++) {
21478
21859
  widgetService.register(exports.ɵb, {
21479
21860
  option: { image: "assets/img/screen/picture" + i + ".png", hideHead: true },
@@ -21921,7 +22302,7 @@
21921
22302
  size: { width: 10, height: 10 },
21922
22303
  });
21923
22304
  }
21924
- widgetService.register(exports.ɵeb, { size: { width: 14, height: 6 } });
22305
+ widgetService.register(exports.ɵec, { size: { width: 14, height: 6 } });
21925
22306
  widgetService.register(exports.ɵbo, {
21926
22307
  option: {
21927
22308
  image: 'assets/img/screen/table.png',
@@ -22079,21 +22460,21 @@
22079
22460
  exports.ɵcr = MipAnimModule;
22080
22461
  exports.ɵcw = TimePickerModule;
22081
22462
  exports.ɵda = BaseLayer;
22082
- exports.ɵdf = UploadModule;
22083
- exports.ɵdi = Pie3dChartModule;
22084
- exports.ɵdk = HighChartsService;
22085
- exports.ɵdl = MultiTitleGaugeModule;
22086
- exports.ɵdn = GaugeProgressModule;
22087
- exports.ɵdp = ItemSwiperModule;
22088
- exports.ɵdr = BulletinBoardModule;
22089
- exports.ɵdt = TemporaryDataModule;
22090
- exports.ɵdv = LineLightFlowModule;
22463
+ exports.ɵdg = UploadModule;
22464
+ exports.ɵdj = Pie3dChartModule;
22465
+ exports.ɵdl = HighChartsService;
22466
+ exports.ɵdm = MultiTitleGaugeModule;
22467
+ exports.ɵdo = GaugeProgressModule;
22468
+ exports.ɵdq = ItemSwiperModule;
22469
+ exports.ɵds = BulletinBoardModule;
22470
+ exports.ɵdu = TemporaryDataModule;
22471
+ exports.ɵdw = LineLightFlowModule;
22091
22472
  exports.ɵe = LineBarChartModule;
22092
- exports.ɵea = AnnouncementModule;
22093
- exports.ɵec = TabsModule;
22094
- exports.ɵef = CalendarModule;
22095
- exports.ɵei = CalendarEventsChild;
22096
- exports.ɵek = GanttModule;
22473
+ exports.ɵeb = AnnouncementModule;
22474
+ exports.ɵed = TabsModule;
22475
+ exports.ɵeg = CalendarModule;
22476
+ exports.ɵej = CalendarEventsChild;
22477
+ exports.ɵel = GanttModule;
22097
22478
  exports.ɵo = ButtonModule;
22098
22479
  exports.ɵq = HttpService;
22099
22480
  exports.ɵr = TimerModule;