bbj-screen-widget 2.4.49 → 2.4.50

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.
@@ -14007,6 +14007,9 @@
14007
14007
  if (_this.infoWindowColor) {
14008
14008
  _this.element.style.setProperty('--info-window-color', _this.infoWindowColor);
14009
14009
  }
14010
+ if (_this.infoWindowBorderColor) {
14011
+ _this.element.style.setProperty('--info-window-border-color', _this.infoWindowBorderColor);
14012
+ }
14010
14013
  _this.map.addEventListener('moveend', function (event) {
14011
14014
  var center = _this.map.getCenter();
14012
14015
  _this.dataChange.emit(center);
@@ -14315,7 +14318,7 @@
14315
14318
  { type: i0.Component, args: [{
14316
14319
  selector: 'sc-custom-baidu-map',
14317
14320
  template: "<ng-template *ngFor=\"let child of children\" widget-host [widget]=\"child\"></ng-template>\n\n<!-- {{children|json}} -->\n<!-- <div class=\"map-container\" [ngStyle]=\"containerStyle\"> -->\n<div #container class=\"map\"></div>\n<nz-radio-group\n *ngIf=\"showMapTypeRadio\"\n class=\"map-type-radio\"\n [(ngModel)]=\"mapTypeValue\"\n (ngModelChange)=\"mapTypeChange($event)\"\n nzButtonStyle=\"solid\"\n>\n <label *ngFor=\"let item of mapTypeEnum\" nz-radio-button [nzValue]=\"item.value\">{{ item.label }}</label>\n</nz-radio-group>\n<!-- </div> -->\n",
14318
- styles: [":host{display:block;height:100%;width:100%;overflow:hidden;transform-origin:0 0;z-index:0;pointer-events:none}:host>*{pointer-events:auto}.map{height:100%;width:100%}:host::ng-deep .BMap_bubble_pop{background-color:var(--info-window-background,#fff)!important}:host::ng-deep .BMap_bubble_content{color:var(--info-window-color,\"#555555\")!important}:host::ng-deep .BMap_pop div{background-color:var(--info-window-background,#fff)!important}:host::ng-deep .BMap_pop>div:nth-child(8){background-color:transparent!important}:host.hideInfoWindowTail::ng-deep .BMap_bubble_pop>img,:host.hideInfoWindowTail::ng-deep .BMap_pop>div:nth-child(8),:host::ng-deep img[src$=\"/image/api/iws3.png\"]{display:none}:host.hideInfoWindowTop::ng-deep .BMap_bubble_pop{transform:translateY(31px)}:host.hideInfoWindowTop::ng-deep .BMap_bubble_pop>img{transform:translateY(-31px)}:host.hideInfoWindowTop::ng-deep .BMap_bubble_top,:host::ng-deep .anchorBL{display:none}.map-type-radio{position:absolute;bottom:20px;right:20px;z-index:10}"]
14321
+ styles: [":host{display:block;height:100%;width:100%;overflow:hidden;transform-origin:0 0;z-index:0;pointer-events:none}:host>*{pointer-events:auto}.map{height:100%;width:100%}:host::ng-deep .BMap_bubble_pop{background-color:var(--info-window-background,#fff)!important;border-color:var(--info-window-border-color,#ddd)!important}:host::ng-deep .BMap_bubble_content{color:var(--info-window-color,\"#555555\")!important}:host::ng-deep .BMap_pop div{background-color:var(--info-window-background,#fff)!important}:host::ng-deep .BMap_pop>div:nth-child(8){background-color:transparent!important}:host.hideInfoWindowTail::ng-deep .BMap_bubble_pop>img,:host.hideInfoWindowTail::ng-deep .BMap_pop>div:nth-child(8),:host::ng-deep img[src$=\"/image/api/iws3.png\"]{display:none}:host.hideInfoWindowTop::ng-deep .BMap_bubble_pop{transform:translateY(31px)}:host.hideInfoWindowTop::ng-deep .BMap_bubble_pop>img{transform:translateY(-31px)}:host.hideInfoWindowTop::ng-deep .BMap_bubble_top,:host::ng-deep .anchorBL{display:none}.map-type-radio{position:absolute;bottom:20px;right:20px;z-index:10}"]
14319
14322
  },] }
14320
14323
  ];
14321
14324
  exports.ɵcy.ctorParameters = function () { return [
@@ -14380,6 +14383,13 @@
14380
14383
  bbjWidgetBase.Property('信息窗模板', { ui: { widget: 'textarea' } }),
14381
14384
  __metadata("design:type", String)
14382
14385
  ], exports.ɵcy.prototype, "infoWindowTemplate", void 0);
14386
+ __decorate([
14387
+ bbjWidgetBase.Property('信息窗边框', {
14388
+ ui: { widget: 'myColor' },
14389
+ example: ['#ffffff', '#F5A623', '#F8E71C', '#50E3C2', '#3285FF', '#B45FFF', '#9B9B9B', null],
14390
+ }),
14391
+ __metadata("design:type", String)
14392
+ ], exports.ɵcy.prototype, "infoWindowBorderColor", void 0);
14383
14393
  __decorate([
14384
14394
  bbjWidgetBase.Property('隐藏尖角'),
14385
14395
  __metadata("design:type", Boolean)