igniteui-webcomponents-maps 3.2.4 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-maps.umd.js +361 -66
- package/bundles/igniteui-webcomponents-maps.umd.min.js +1 -1
- package/esm2015/lib/igc-custom-map-imagery.js +1 -0
- package/esm2015/lib/igc-geographic-contour-line-series-component.js +36 -18
- package/esm2015/lib/igc-geographic-high-density-scatter-series-component.js +15 -0
- package/esm2015/lib/igc-geographic-map-component.js +15 -12
- package/esm2015/lib/igc-geographic-map-imagery.js +29 -2
- package/esm2015/lib/igc-geographic-map-series-host-component.js +14 -0
- package/esm2015/lib/igc-geographic-marker-series-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-marker-series-component.js +14 -0
- package/esm2015/lib/igc-geographic-polyline-series-component.js +15 -0
- package/esm2015/lib/igc-geographic-proportional-symbol-series-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-proportional-symbol-series-component.js +30 -12
- package/esm2015/lib/igc-geographic-scatter-area-series-component.js +29 -12
- package/esm2015/lib/igc-geographic-shape-series-base-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-shape-series-base-component.js +27 -5
- package/esm2015/lib/igc-geographic-shape-series-component.js +15 -0
- package/esm2015/lib/igc-geographic-symbol-series-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-symbol-series-component.js +16 -0
- package/esm2015/lib/igc-geographic-tile-series-component.js +18 -2
- package/esm2015/lib/igc-geographic-xy-triangulating-series-base-component.js +14 -0
- package/esm2015/lib/igc-tile-series-component.js +17 -2
- package/esm5/lib/igc-custom-map-imagery.js +1 -0
- package/esm5/lib/igc-geographic-contour-line-series-component.js +36 -18
- package/esm5/lib/igc-geographic-high-density-scatter-series-component.js +15 -0
- package/esm5/lib/igc-geographic-map-component.js +15 -12
- package/esm5/lib/igc-geographic-map-imagery.js +30 -3
- package/esm5/lib/igc-geographic-map-series-host-component.js +14 -0
- package/esm5/lib/igc-geographic-marker-series-base-component.js +14 -0
- package/esm5/lib/igc-geographic-marker-series-component.js +14 -0
- package/esm5/lib/igc-geographic-polyline-series-component.js +15 -0
- package/esm5/lib/igc-geographic-proportional-symbol-series-base-component.js +14 -0
- package/esm5/lib/igc-geographic-proportional-symbol-series-component.js +30 -12
- package/esm5/lib/igc-geographic-scatter-area-series-component.js +29 -12
- package/esm5/lib/igc-geographic-shape-series-base-base-component.js +14 -0
- package/esm5/lib/igc-geographic-shape-series-base-component.js +27 -5
- package/esm5/lib/igc-geographic-shape-series-component.js +15 -0
- package/esm5/lib/igc-geographic-symbol-series-base-component.js +14 -0
- package/esm5/lib/igc-geographic-symbol-series-component.js +16 -0
- package/esm5/lib/igc-geographic-tile-series-component.js +18 -2
- package/esm5/lib/igc-geographic-xy-triangulating-series-base-component.js +14 -0
- package/esm5/lib/igc-tile-series-component.js +17 -2
- package/fesm2015/igniteui-webcomponents-maps.js +360 -65
- package/fesm5/igniteui-webcomponents-maps.js +361 -66
- package/lib/igc-geographic-contour-line-series-component.d.ts +1 -0
- package/lib/igc-geographic-high-density-scatter-series-component.d.ts +1 -0
- package/lib/igc-geographic-map-imagery.d.ts +4 -1
- package/lib/igc-geographic-map-series-host-component.d.ts +1 -0
- package/lib/igc-geographic-marker-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-marker-series-component.d.ts +1 -0
- package/lib/igc-geographic-polyline-series-component.d.ts +1 -0
- package/lib/igc-geographic-proportional-symbol-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-proportional-symbol-series-component.d.ts +1 -0
- package/lib/igc-geographic-scatter-area-series-component.d.ts +1 -0
- package/lib/igc-geographic-shape-series-base-base-component.d.ts +1 -0
- package/lib/igc-geographic-shape-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-shape-series-component.d.ts +1 -0
- package/lib/igc-geographic-symbol-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-symbol-series-component.d.ts +1 -0
- package/lib/igc-geographic-tile-series-component.d.ts +1 -0
- package/lib/igc-geographic-xy-triangulating-series-base-component.d.ts +1 -0
- package/lib/igc-tile-series-component.d.ts +1 -0
- package/package.json +3 -3
|
@@ -2949,17 +2949,18 @@
|
|
|
2949
2949
|
* Under normal circumstances, this property should not be set in application code. By default, it will be set to a numeric axis with a spherical mercator scaler.
|
|
2950
2950
|
*/
|
|
2951
2951
|
get: function () {
|
|
2952
|
-
|
|
2952
|
+
var r = this.i.tw;
|
|
2953
|
+
if (r == null) {
|
|
2953
2954
|
return null;
|
|
2954
2955
|
}
|
|
2955
|
-
if (!
|
|
2956
|
-
var e = igniteuiWebcomponentsCharts.IgcNumericXAxisComponent._createFromInternal(
|
|
2956
|
+
if (!r.externalObject) {
|
|
2957
|
+
var e = igniteuiWebcomponentsCharts.IgcNumericXAxisComponent._createFromInternal(r);
|
|
2957
2958
|
if (e) {
|
|
2958
|
-
e._implementation =
|
|
2959
|
+
e._implementation = r;
|
|
2959
2960
|
}
|
|
2960
|
-
|
|
2961
|
+
r.externalObject = e;
|
|
2961
2962
|
}
|
|
2962
|
-
return
|
|
2963
|
+
return r.externalObject;
|
|
2963
2964
|
},
|
|
2964
2965
|
set: function (v) {
|
|
2965
2966
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -2975,17 +2976,18 @@
|
|
|
2975
2976
|
* Under normal circumstances, this property should not be set in application code. By default, it will be set to a numeric axis with a spherical mercator scaler.
|
|
2976
2977
|
*/
|
|
2977
2978
|
get: function () {
|
|
2978
|
-
|
|
2979
|
+
var r = this.i.ty;
|
|
2980
|
+
if (r == null) {
|
|
2979
2981
|
return null;
|
|
2980
2982
|
}
|
|
2981
|
-
if (!
|
|
2982
|
-
var e = igniteuiWebcomponentsCharts.IgcNumericYAxisComponent._createFromInternal(
|
|
2983
|
+
if (!r.externalObject) {
|
|
2984
|
+
var e = igniteuiWebcomponentsCharts.IgcNumericYAxisComponent._createFromInternal(r);
|
|
2983
2985
|
if (e) {
|
|
2984
|
-
e._implementation =
|
|
2986
|
+
e._implementation = r;
|
|
2985
2987
|
}
|
|
2986
|
-
|
|
2988
|
+
r.externalObject = e;
|
|
2987
2989
|
}
|
|
2988
|
-
return
|
|
2990
|
+
return r.externalObject;
|
|
2989
2991
|
},
|
|
2990
2992
|
set: function (v) {
|
|
2991
2993
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -3229,6 +3231,7 @@
|
|
|
3229
3231
|
}
|
|
3230
3232
|
};
|
|
3231
3233
|
this.i.imageTilesReady = igniteuiWebcomponentsCore.delegateCombine(this.i.imageTilesReady, this._imageTilesReady_wrapped);
|
|
3234
|
+
;
|
|
3232
3235
|
},
|
|
3233
3236
|
enumerable: true,
|
|
3234
3237
|
configurable: true
|
|
@@ -3366,10 +3369,26 @@
|
|
|
3366
3369
|
*/
|
|
3367
3370
|
get: function () {
|
|
3368
3371
|
return this._implementation;
|
|
3369
|
-
}
|
|
3372
|
+
} /**
|
|
3373
|
+
* @hidden
|
|
3374
|
+
*/,
|
|
3370
3375
|
enumerable: true,
|
|
3371
3376
|
configurable: true
|
|
3372
3377
|
});
|
|
3378
|
+
IgcGeographicMapImagery._createFromInternal = function (internal) {
|
|
3379
|
+
if (!internal) {
|
|
3380
|
+
return null;
|
|
3381
|
+
}
|
|
3382
|
+
if (!internal.$type) {
|
|
3383
|
+
return null;
|
|
3384
|
+
}
|
|
3385
|
+
var name = internal.$type.name;
|
|
3386
|
+
var externalName = "Igc" + name + "Component";
|
|
3387
|
+
if (!igniteuiWebcomponentsCore.TypeRegistrar.isRegistered(externalName)) {
|
|
3388
|
+
return null;
|
|
3389
|
+
}
|
|
3390
|
+
return igniteuiWebcomponentsCore.TypeRegistrar.create(externalName);
|
|
3391
|
+
};
|
|
3373
3392
|
IgcGeographicMapImagery.prototype.onImplementationCreated = function () {
|
|
3374
3393
|
};
|
|
3375
3394
|
IgcGeographicMapImagery.prototype._provideImplementation = function (i) {
|
|
@@ -3409,10 +3428,11 @@
|
|
|
3409
3428
|
* The IgxGeographicMapComponent which is hosting this GeographicMapImagery control.
|
|
3410
3429
|
*/
|
|
3411
3430
|
get: function () {
|
|
3412
|
-
|
|
3431
|
+
var r = this.i.geographicMap;
|
|
3432
|
+
if (r == null) {
|
|
3413
3433
|
return null;
|
|
3414
3434
|
}
|
|
3415
|
-
return
|
|
3435
|
+
return r.externalObject;
|
|
3416
3436
|
},
|
|
3417
3437
|
set: function (v) {
|
|
3418
3438
|
v == null ? this.i.geographicMap = null : this.i.geographicMap = v.i;
|
|
@@ -3470,6 +3490,11 @@
|
|
|
3470
3490
|
configurable: true
|
|
3471
3491
|
});
|
|
3472
3492
|
IgcGeographicMapImagery.prototype.findByName = function (name) {
|
|
3493
|
+
if (this.findEphemera) {
|
|
3494
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
3495
|
+
return this.findEphemera(name);
|
|
3496
|
+
}
|
|
3497
|
+
}
|
|
3473
3498
|
if (this.geographicMap && this.geographicMap.name && this.geographicMap.name == name) {
|
|
3474
3499
|
return this.geographicMap;
|
|
3475
3500
|
}
|
|
@@ -3508,6 +3533,7 @@
|
|
|
3508
3533
|
}
|
|
3509
3534
|
};
|
|
3510
3535
|
this.i.imageTilesReady = igniteuiWebcomponentsCore.delegateCombine(this.i.imageTilesReady, this._imageTilesReady_wrapped);
|
|
3536
|
+
;
|
|
3511
3537
|
},
|
|
3512
3538
|
enumerable: true,
|
|
3513
3539
|
configurable: true
|
|
@@ -3538,6 +3564,7 @@
|
|
|
3538
3564
|
}
|
|
3539
3565
|
};
|
|
3540
3566
|
this.i.imagesChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.imagesChanged, this._imagesChanged_wrapped);
|
|
3567
|
+
;
|
|
3541
3568
|
},
|
|
3542
3569
|
enumerable: true,
|
|
3543
3570
|
configurable: true
|
|
@@ -3568,6 +3595,7 @@
|
|
|
3568
3595
|
}
|
|
3569
3596
|
};
|
|
3570
3597
|
this.i.cancellingImage = igniteuiWebcomponentsCore.delegateCombine(this.i.cancellingImage, this._cancellingImage_wrapped);
|
|
3598
|
+
;
|
|
3571
3599
|
},
|
|
3572
3600
|
enumerable: true,
|
|
3573
3601
|
configurable: true
|
|
@@ -3598,6 +3626,7 @@
|
|
|
3598
3626
|
}
|
|
3599
3627
|
};
|
|
3600
3628
|
this.i.downloadingImage = igniteuiWebcomponentsCore.delegateCombine(this.i.downloadingImage, this._downloadingImage_wrapped);
|
|
3629
|
+
;
|
|
3601
3630
|
},
|
|
3602
3631
|
enumerable: true,
|
|
3603
3632
|
configurable: true
|
|
@@ -4292,6 +4321,7 @@
|
|
|
4292
4321
|
}
|
|
4293
4322
|
};
|
|
4294
4323
|
this.i.getTileImageUri = igniteuiWebcomponentsCore.delegateCombine(this.i.getTileImageUri, this._getTileImageUri_wrapped);
|
|
4324
|
+
;
|
|
4295
4325
|
},
|
|
4296
4326
|
enumerable: true,
|
|
4297
4327
|
configurable: true
|
|
@@ -4783,11 +4813,25 @@
|
|
|
4783
4813
|
if (_super.prototype["connectedCallback"]) {
|
|
4784
4814
|
_super.prototype["connectedCallback"].call(this);
|
|
4785
4815
|
}
|
|
4816
|
+
if (this.i.connectedCallback) {
|
|
4817
|
+
this.i.connectedCallback();
|
|
4818
|
+
}
|
|
4786
4819
|
if (!this._attached) {
|
|
4787
4820
|
this._attached = true;
|
|
4788
4821
|
this._flushQueuedAttributes();
|
|
4789
4822
|
}
|
|
4790
4823
|
};
|
|
4824
|
+
IgcGeographicMapSeriesHostComponent.prototype.disconnectedCallback = function () {
|
|
4825
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
4826
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
4827
|
+
}
|
|
4828
|
+
if (this.i.disconnectedCallback) {
|
|
4829
|
+
this.i.disconnectedCallback();
|
|
4830
|
+
}
|
|
4831
|
+
if (this._attached) {
|
|
4832
|
+
this._attached = false;
|
|
4833
|
+
}
|
|
4834
|
+
};
|
|
4791
4835
|
Object.defineProperty(IgcGeographicMapSeriesHostComponent, "observedAttributes", {
|
|
4792
4836
|
get: function () {
|
|
4793
4837
|
if (IgcGeographicMapSeriesHostComponent._observedAttributesIgcGeographicMapSeriesHostComponent == null) {
|
|
@@ -4986,11 +5030,25 @@
|
|
|
4986
5030
|
if (_super.prototype["connectedCallback"]) {
|
|
4987
5031
|
_super.prototype["connectedCallback"].call(this);
|
|
4988
5032
|
}
|
|
5033
|
+
if (this.i.connectedCallback) {
|
|
5034
|
+
this.i.connectedCallback();
|
|
5035
|
+
}
|
|
4989
5036
|
if (!this._attached) {
|
|
4990
5037
|
this._attached = true;
|
|
4991
5038
|
this._flushQueuedAttributes();
|
|
4992
5039
|
}
|
|
4993
5040
|
};
|
|
5041
|
+
IgcGeographicShapeSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
5042
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
5043
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
5044
|
+
}
|
|
5045
|
+
if (this.i.disconnectedCallback) {
|
|
5046
|
+
this.i.disconnectedCallback();
|
|
5047
|
+
}
|
|
5048
|
+
if (this._attached) {
|
|
5049
|
+
this._attached = false;
|
|
5050
|
+
}
|
|
5051
|
+
};
|
|
4994
5052
|
Object.defineProperty(IgcGeographicShapeSeriesBaseComponent, "observedAttributes", {
|
|
4995
5053
|
get: function () {
|
|
4996
5054
|
if (IgcGeographicShapeSeriesBaseComponent._observedAttributesIgcGeographicShapeSeriesBaseComponent == null) {
|
|
@@ -5159,15 +5217,21 @@
|
|
|
5159
5217
|
* Set a shapefile datasource to use with the series.
|
|
5160
5218
|
*/
|
|
5161
5219
|
get: function () {
|
|
5162
|
-
|
|
5220
|
+
var r = this.i.qn;
|
|
5221
|
+
if (r == null) {
|
|
5163
5222
|
return null;
|
|
5164
5223
|
}
|
|
5165
|
-
if (!
|
|
5224
|
+
if (!r.externalObject) {
|
|
5166
5225
|
var e = new igniteuiWebcomponentsCore.IgcShapeDataSource();
|
|
5167
|
-
e.
|
|
5168
|
-
|
|
5226
|
+
if (e.i.setNativeElement) {
|
|
5227
|
+
e.i.setNativeElement(r);
|
|
5228
|
+
}
|
|
5229
|
+
else {
|
|
5230
|
+
e._implementation = r;
|
|
5231
|
+
}
|
|
5232
|
+
r.externalObject = e;
|
|
5169
5233
|
}
|
|
5170
|
-
return
|
|
5234
|
+
return r.externalObject;
|
|
5171
5235
|
},
|
|
5172
5236
|
set: function (v) {
|
|
5173
5237
|
v == null ? this.i.qn = null : this.i.qn = v.i;
|
|
@@ -5226,6 +5290,7 @@
|
|
|
5226
5290
|
}
|
|
5227
5291
|
};
|
|
5228
5292
|
this.i.assigningShapeStyle = igniteuiWebcomponentsCore.delegateCombine(this.i.assigningShapeStyle, this._assigningShapeStyle_wrapped);
|
|
5293
|
+
;
|
|
5229
5294
|
},
|
|
5230
5295
|
enumerable: true,
|
|
5231
5296
|
configurable: true
|
|
@@ -5256,6 +5321,7 @@
|
|
|
5256
5321
|
}
|
|
5257
5322
|
};
|
|
5258
5323
|
this.i.assigningShapeMarkerStyle = igniteuiWebcomponentsCore.delegateCombine(this.i.assigningShapeMarkerStyle, this._assigningShapeMarkerStyle_wrapped);
|
|
5324
|
+
;
|
|
5259
5325
|
},
|
|
5260
5326
|
enumerable: true,
|
|
5261
5327
|
configurable: true
|
|
@@ -5659,11 +5725,25 @@
|
|
|
5659
5725
|
if (_super.prototype["connectedCallback"]) {
|
|
5660
5726
|
_super.prototype["connectedCallback"].call(this);
|
|
5661
5727
|
}
|
|
5728
|
+
if (this.i.connectedCallback) {
|
|
5729
|
+
this.i.connectedCallback();
|
|
5730
|
+
}
|
|
5662
5731
|
if (!this._attached) {
|
|
5663
5732
|
this._attached = true;
|
|
5664
5733
|
this._flushQueuedAttributes();
|
|
5665
5734
|
}
|
|
5666
5735
|
};
|
|
5736
|
+
IgcGeographicShapeSeriesComponent.prototype.disconnectedCallback = function () {
|
|
5737
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
5738
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
5739
|
+
}
|
|
5740
|
+
if (this.i.disconnectedCallback) {
|
|
5741
|
+
this.i.disconnectedCallback();
|
|
5742
|
+
}
|
|
5743
|
+
if (this._attached) {
|
|
5744
|
+
this._attached = false;
|
|
5745
|
+
}
|
|
5746
|
+
};
|
|
5667
5747
|
Object.defineProperty(IgcGeographicShapeSeriesComponent, "observedAttributes", {
|
|
5668
5748
|
get: function () {
|
|
5669
5749
|
if (IgcGeographicShapeSeriesComponent._observedAttributesIgcGeographicShapeSeriesComponent == null) {
|
|
@@ -5934,6 +6014,7 @@
|
|
|
5934
6014
|
}
|
|
5935
6015
|
};
|
|
5936
6016
|
this.i.styleShape = igniteuiWebcomponentsCore.delegateCombine(this.i.styleShape, this._styleShape_wrapped);
|
|
6017
|
+
;
|
|
5937
6018
|
},
|
|
5938
6019
|
enumerable: true,
|
|
5939
6020
|
configurable: true
|
|
@@ -6081,11 +6162,25 @@
|
|
|
6081
6162
|
if (_super.prototype["connectedCallback"]) {
|
|
6082
6163
|
_super.prototype["connectedCallback"].call(this);
|
|
6083
6164
|
}
|
|
6165
|
+
if (this.i.connectedCallback) {
|
|
6166
|
+
this.i.connectedCallback();
|
|
6167
|
+
}
|
|
6084
6168
|
if (!this._attached) {
|
|
6085
6169
|
this._attached = true;
|
|
6086
6170
|
this._flushQueuedAttributes();
|
|
6087
6171
|
}
|
|
6088
6172
|
};
|
|
6173
|
+
IgcGeographicPolylineSeriesComponent.prototype.disconnectedCallback = function () {
|
|
6174
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
6175
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
6176
|
+
}
|
|
6177
|
+
if (this.i.disconnectedCallback) {
|
|
6178
|
+
this.i.disconnectedCallback();
|
|
6179
|
+
}
|
|
6180
|
+
if (this._attached) {
|
|
6181
|
+
this._attached = false;
|
|
6182
|
+
}
|
|
6183
|
+
};
|
|
6089
6184
|
Object.defineProperty(IgcGeographicPolylineSeriesComponent, "observedAttributes", {
|
|
6090
6185
|
get: function () {
|
|
6091
6186
|
if (IgcGeographicPolylineSeriesComponent._observedAttributesIgcGeographicPolylineSeriesComponent == null) {
|
|
@@ -6203,6 +6298,7 @@
|
|
|
6203
6298
|
}
|
|
6204
6299
|
};
|
|
6205
6300
|
this.i.styleShape = igniteuiWebcomponentsCore.delegateCombine(this.i.styleShape, this._styleShape_wrapped);
|
|
6301
|
+
;
|
|
6206
6302
|
},
|
|
6207
6303
|
enumerable: true,
|
|
6208
6304
|
configurable: true
|
|
@@ -6695,11 +6791,25 @@
|
|
|
6695
6791
|
if (_super.prototype["connectedCallback"]) {
|
|
6696
6792
|
_super.prototype["connectedCallback"].call(this);
|
|
6697
6793
|
}
|
|
6794
|
+
if (this.i.connectedCallback) {
|
|
6795
|
+
this.i.connectedCallback();
|
|
6796
|
+
}
|
|
6698
6797
|
if (!this._attached) {
|
|
6699
6798
|
this._attached = true;
|
|
6700
6799
|
this._flushQueuedAttributes();
|
|
6701
6800
|
}
|
|
6702
6801
|
};
|
|
6802
|
+
IgcTileSeriesComponent.prototype.disconnectedCallback = function () {
|
|
6803
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
6804
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
6805
|
+
}
|
|
6806
|
+
if (this.i.disconnectedCallback) {
|
|
6807
|
+
this.i.disconnectedCallback();
|
|
6808
|
+
}
|
|
6809
|
+
if (this._attached) {
|
|
6810
|
+
this._attached = false;
|
|
6811
|
+
}
|
|
6812
|
+
};
|
|
6703
6813
|
Object.defineProperty(IgcTileSeriesComponent, "observedAttributes", {
|
|
6704
6814
|
get: function () {
|
|
6705
6815
|
if (IgcTileSeriesComponent._observedAttributesIgcTileSeriesComponent == null) {
|
|
@@ -6735,10 +6845,11 @@
|
|
|
6735
6845
|
* The MapImagery which is used to provide the tiles for display.
|
|
6736
6846
|
*/
|
|
6737
6847
|
get: function () {
|
|
6738
|
-
|
|
6848
|
+
var r = this.i.sz;
|
|
6849
|
+
if (r == null) {
|
|
6739
6850
|
return null;
|
|
6740
6851
|
}
|
|
6741
|
-
return
|
|
6852
|
+
return r.externalObject;
|
|
6742
6853
|
},
|
|
6743
6854
|
set: function (v) {
|
|
6744
6855
|
v == null ? this.i.sz = null : this.i.sz = v.i;
|
|
@@ -6891,11 +7002,25 @@
|
|
|
6891
7002
|
if (_super.prototype["connectedCallback"]) {
|
|
6892
7003
|
_super.prototype["connectedCallback"].call(this);
|
|
6893
7004
|
}
|
|
7005
|
+
if (this.i.connectedCallback) {
|
|
7006
|
+
this.i.connectedCallback();
|
|
7007
|
+
}
|
|
6894
7008
|
if (!this._attached) {
|
|
6895
7009
|
this._attached = true;
|
|
6896
7010
|
this._flushQueuedAttributes();
|
|
6897
7011
|
}
|
|
6898
7012
|
};
|
|
7013
|
+
IgcGeographicTileSeriesComponent.prototype.disconnectedCallback = function () {
|
|
7014
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
7015
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
7016
|
+
}
|
|
7017
|
+
if (this.i.disconnectedCallback) {
|
|
7018
|
+
this.i.disconnectedCallback();
|
|
7019
|
+
}
|
|
7020
|
+
if (this._attached) {
|
|
7021
|
+
this._attached = false;
|
|
7022
|
+
}
|
|
7023
|
+
};
|
|
6899
7024
|
Object.defineProperty(IgcGeographicTileSeriesComponent, "observedAttributes", {
|
|
6900
7025
|
get: function () {
|
|
6901
7026
|
if (IgcGeographicTileSeriesComponent._observedAttributesIgcGeographicTileSeriesComponent == null) {
|
|
@@ -6931,10 +7056,11 @@
|
|
|
6931
7056
|
* The MapImagery which is used to provide the tiles for display.
|
|
6932
7057
|
*/
|
|
6933
7058
|
get: function () {
|
|
6934
|
-
|
|
7059
|
+
var r = this.i.ri;
|
|
7060
|
+
if (r == null) {
|
|
6935
7061
|
return null;
|
|
6936
7062
|
}
|
|
6937
|
-
return
|
|
7063
|
+
return r.externalObject;
|
|
6938
7064
|
},
|
|
6939
7065
|
set: function (v) {
|
|
6940
7066
|
v == null ? this.i.ri = null : this.i.ri = v.i;
|
|
@@ -6985,6 +7111,7 @@
|
|
|
6985
7111
|
}
|
|
6986
7112
|
};
|
|
6987
7113
|
this.i.imageTilesReady = igniteuiWebcomponentsCore.delegateCombine(this.i.imageTilesReady, this._imageTilesReady_wrapped);
|
|
7114
|
+
;
|
|
6988
7115
|
},
|
|
6989
7116
|
enumerable: true,
|
|
6990
7117
|
configurable: true
|
|
@@ -7035,11 +7162,25 @@
|
|
|
7035
7162
|
if (_super.prototype["connectedCallback"]) {
|
|
7036
7163
|
_super.prototype["connectedCallback"].call(this);
|
|
7037
7164
|
}
|
|
7165
|
+
if (this.i.connectedCallback) {
|
|
7166
|
+
this.i.connectedCallback();
|
|
7167
|
+
}
|
|
7038
7168
|
if (!this._attached) {
|
|
7039
7169
|
this._attached = true;
|
|
7040
7170
|
this._flushQueuedAttributes();
|
|
7041
7171
|
}
|
|
7042
7172
|
};
|
|
7173
|
+
IgcGeographicMarkerSeriesComponent.prototype.disconnectedCallback = function () {
|
|
7174
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
7175
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
7176
|
+
}
|
|
7177
|
+
if (this.i.disconnectedCallback) {
|
|
7178
|
+
this.i.disconnectedCallback();
|
|
7179
|
+
}
|
|
7180
|
+
if (this._attached) {
|
|
7181
|
+
this._attached = false;
|
|
7182
|
+
}
|
|
7183
|
+
};
|
|
7043
7184
|
Object.defineProperty(IgcGeographicMarkerSeriesComponent, "observedAttributes", {
|
|
7044
7185
|
get: function () {
|
|
7045
7186
|
if (IgcGeographicMarkerSeriesComponent._observedAttributesIgcGeographicMarkerSeriesComponent == null) {
|
|
@@ -7584,11 +7725,25 @@
|
|
|
7584
7725
|
if (_super.prototype["connectedCallback"]) {
|
|
7585
7726
|
_super.prototype["connectedCallback"].call(this);
|
|
7586
7727
|
}
|
|
7728
|
+
if (this.i.connectedCallback) {
|
|
7729
|
+
this.i.connectedCallback();
|
|
7730
|
+
}
|
|
7587
7731
|
if (!this._attached) {
|
|
7588
7732
|
this._attached = true;
|
|
7589
7733
|
this._flushQueuedAttributes();
|
|
7590
7734
|
}
|
|
7591
7735
|
};
|
|
7736
|
+
IgcGeographicProportionalSymbolSeriesComponent.prototype.disconnectedCallback = function () {
|
|
7737
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
7738
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
7739
|
+
}
|
|
7740
|
+
if (this.i.disconnectedCallback) {
|
|
7741
|
+
this.i.disconnectedCallback();
|
|
7742
|
+
}
|
|
7743
|
+
if (this._attached) {
|
|
7744
|
+
this._attached = false;
|
|
7745
|
+
}
|
|
7746
|
+
};
|
|
7592
7747
|
Object.defineProperty(IgcGeographicProportionalSymbolSeriesComponent, "observedAttributes", {
|
|
7593
7748
|
get: function () {
|
|
7594
7749
|
if (IgcGeographicProportionalSymbolSeriesComponent._observedAttributesIgcGeographicProportionalSymbolSeriesComponent == null) {
|
|
@@ -7663,17 +7818,18 @@
|
|
|
7663
7818
|
* Gets or sets the radius size scale for the bubbles.
|
|
7664
7819
|
*/
|
|
7665
7820
|
get: function () {
|
|
7666
|
-
|
|
7821
|
+
var r = this.i.rl;
|
|
7822
|
+
if (r == null) {
|
|
7667
7823
|
return null;
|
|
7668
7824
|
}
|
|
7669
|
-
if (!
|
|
7670
|
-
var e = igniteuiWebcomponentsCharts.IgcSizeScaleComponent._createFromInternal(
|
|
7825
|
+
if (!r.externalObject) {
|
|
7826
|
+
var e = igniteuiWebcomponentsCharts.IgcSizeScaleComponent._createFromInternal(r);
|
|
7671
7827
|
if (e) {
|
|
7672
|
-
e._implementation =
|
|
7828
|
+
e._implementation = r;
|
|
7673
7829
|
}
|
|
7674
|
-
|
|
7830
|
+
r.externalObject = e;
|
|
7675
7831
|
}
|
|
7676
|
-
return
|
|
7832
|
+
return r.externalObject;
|
|
7677
7833
|
},
|
|
7678
7834
|
set: function (v) {
|
|
7679
7835
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -7714,17 +7870,18 @@
|
|
|
7714
7870
|
* Gets or sets the brush scale for the marker brush.
|
|
7715
7871
|
*/
|
|
7716
7872
|
get: function () {
|
|
7717
|
-
|
|
7873
|
+
var r = this.i.ri;
|
|
7874
|
+
if (r == null) {
|
|
7718
7875
|
return null;
|
|
7719
7876
|
}
|
|
7720
|
-
if (!
|
|
7721
|
-
var e = igniteuiWebcomponentsCharts.IgcBrushScaleComponent._createFromInternal(
|
|
7877
|
+
if (!r.externalObject) {
|
|
7878
|
+
var e = igniteuiWebcomponentsCharts.IgcBrushScaleComponent._createFromInternal(r);
|
|
7722
7879
|
if (e) {
|
|
7723
|
-
e._implementation =
|
|
7880
|
+
e._implementation = r;
|
|
7724
7881
|
}
|
|
7725
|
-
|
|
7882
|
+
r.externalObject = e;
|
|
7726
7883
|
}
|
|
7727
|
-
return
|
|
7884
|
+
return r.externalObject;
|
|
7728
7885
|
},
|
|
7729
7886
|
set: function (v) {
|
|
7730
7887
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -7915,6 +8072,7 @@
|
|
|
7915
8072
|
}
|
|
7916
8073
|
};
|
|
7917
8074
|
this.i.assigningScatterStyle = igniteuiWebcomponentsCore.delegateCombine(this.i.assigningScatterStyle, this._assigningScatterStyle_wrapped);
|
|
8075
|
+
;
|
|
7918
8076
|
},
|
|
7919
8077
|
enumerable: true,
|
|
7920
8078
|
configurable: true
|
|
@@ -7945,6 +8103,7 @@
|
|
|
7945
8103
|
}
|
|
7946
8104
|
};
|
|
7947
8105
|
this.i.assigningScatterMarkerStyle = igniteuiWebcomponentsCore.delegateCombine(this.i.assigningScatterMarkerStyle, this._assigningScatterMarkerStyle_wrapped);
|
|
8106
|
+
;
|
|
7948
8107
|
},
|
|
7949
8108
|
enumerable: true,
|
|
7950
8109
|
configurable: true
|
|
@@ -8190,11 +8349,25 @@
|
|
|
8190
8349
|
if (_super.prototype["connectedCallback"]) {
|
|
8191
8350
|
_super.prototype["connectedCallback"].call(this);
|
|
8192
8351
|
}
|
|
8352
|
+
if (this.i.connectedCallback) {
|
|
8353
|
+
this.i.connectedCallback();
|
|
8354
|
+
}
|
|
8193
8355
|
if (!this._attached) {
|
|
8194
8356
|
this._attached = true;
|
|
8195
8357
|
this._flushQueuedAttributes();
|
|
8196
8358
|
}
|
|
8197
8359
|
};
|
|
8360
|
+
IgcGeographicSymbolSeriesComponent.prototype.disconnectedCallback = function () {
|
|
8361
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
8362
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
8363
|
+
}
|
|
8364
|
+
if (this.i.disconnectedCallback) {
|
|
8365
|
+
this.i.disconnectedCallback();
|
|
8366
|
+
}
|
|
8367
|
+
if (this._attached) {
|
|
8368
|
+
this._attached = false;
|
|
8369
|
+
}
|
|
8370
|
+
};
|
|
8198
8371
|
Object.defineProperty(IgcGeographicSymbolSeriesComponent, "observedAttributes", {
|
|
8199
8372
|
get: function () {
|
|
8200
8373
|
if (IgcGeographicSymbolSeriesComponent._observedAttributesIgcGeographicSymbolSeriesComponent == null) {
|
|
@@ -8347,6 +8520,7 @@
|
|
|
8347
8520
|
}
|
|
8348
8521
|
};
|
|
8349
8522
|
this.i.assigningScatterStyle = igniteuiWebcomponentsCore.delegateCombine(this.i.assigningScatterStyle, this._assigningScatterStyle_wrapped);
|
|
8523
|
+
;
|
|
8350
8524
|
},
|
|
8351
8525
|
enumerable: true,
|
|
8352
8526
|
configurable: true
|
|
@@ -8377,6 +8551,7 @@
|
|
|
8377
8551
|
}
|
|
8378
8552
|
};
|
|
8379
8553
|
this.i.assigningScatterMarkerStyle = igniteuiWebcomponentsCore.delegateCombine(this.i.assigningScatterMarkerStyle, this._assigningScatterMarkerStyle_wrapped);
|
|
8554
|
+
;
|
|
8380
8555
|
},
|
|
8381
8556
|
enumerable: true,
|
|
8382
8557
|
configurable: true
|
|
@@ -8578,11 +8753,25 @@
|
|
|
8578
8753
|
if (_super.prototype["connectedCallback"]) {
|
|
8579
8754
|
_super.prototype["connectedCallback"].call(this);
|
|
8580
8755
|
}
|
|
8756
|
+
if (this.i.connectedCallback) {
|
|
8757
|
+
this.i.connectedCallback();
|
|
8758
|
+
}
|
|
8581
8759
|
if (!this._attached) {
|
|
8582
8760
|
this._attached = true;
|
|
8583
8761
|
this._flushQueuedAttributes();
|
|
8584
8762
|
}
|
|
8585
8763
|
};
|
|
8764
|
+
IgcGeographicScatterAreaSeriesComponent.prototype.disconnectedCallback = function () {
|
|
8765
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
8766
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
8767
|
+
}
|
|
8768
|
+
if (this.i.disconnectedCallback) {
|
|
8769
|
+
this.i.disconnectedCallback();
|
|
8770
|
+
}
|
|
8771
|
+
if (this._attached) {
|
|
8772
|
+
this._attached = false;
|
|
8773
|
+
}
|
|
8774
|
+
};
|
|
8586
8775
|
Object.defineProperty(IgcGeographicScatterAreaSeriesComponent, "observedAttributes", {
|
|
8587
8776
|
get: function () {
|
|
8588
8777
|
if (IgcGeographicScatterAreaSeriesComponent._observedAttributesIgcGeographicScatterAreaSeriesComponent == null) {
|
|
@@ -8631,17 +8820,18 @@
|
|
|
8631
8820
|
* The ColorScale used to resolve the color values of points in the series.
|
|
8632
8821
|
*/
|
|
8633
8822
|
get: function () {
|
|
8634
|
-
|
|
8823
|
+
var r = this.i.q3;
|
|
8824
|
+
if (r == null) {
|
|
8635
8825
|
return null;
|
|
8636
8826
|
}
|
|
8637
|
-
if (!
|
|
8638
|
-
var e = igniteuiWebcomponentsCharts.IgcColorScaleComponent._createFromInternal(
|
|
8827
|
+
if (!r.externalObject) {
|
|
8828
|
+
var e = igniteuiWebcomponentsCharts.IgcColorScaleComponent._createFromInternal(r);
|
|
8639
8829
|
if (e) {
|
|
8640
|
-
e._implementation =
|
|
8830
|
+
e._implementation = r;
|
|
8641
8831
|
}
|
|
8642
|
-
|
|
8832
|
+
r.externalObject = e;
|
|
8643
8833
|
}
|
|
8644
|
-
return
|
|
8834
|
+
return r.externalObject;
|
|
8645
8835
|
},
|
|
8646
8836
|
set: function (v) {
|
|
8647
8837
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -8656,17 +8846,18 @@
|
|
|
8656
8846
|
* Gets actual color scale that is set on ColorScale property or default ColorScale
|
|
8657
8847
|
*/
|
|
8658
8848
|
get: function () {
|
|
8659
|
-
|
|
8849
|
+
var r = this.i.q2;
|
|
8850
|
+
if (r == null) {
|
|
8660
8851
|
return null;
|
|
8661
8852
|
}
|
|
8662
|
-
if (!
|
|
8663
|
-
var e = igniteuiWebcomponentsCharts.IgcColorScaleComponent._createFromInternal(
|
|
8853
|
+
if (!r.externalObject) {
|
|
8854
|
+
var e = igniteuiWebcomponentsCharts.IgcColorScaleComponent._createFromInternal(r);
|
|
8664
8855
|
if (e) {
|
|
8665
|
-
e._implementation =
|
|
8856
|
+
e._implementation = r;
|
|
8666
8857
|
}
|
|
8667
|
-
|
|
8858
|
+
r.externalObject = e;
|
|
8668
8859
|
}
|
|
8669
|
-
return
|
|
8860
|
+
return r.externalObject;
|
|
8670
8861
|
},
|
|
8671
8862
|
set: function (v) {
|
|
8672
8863
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -8733,6 +8924,7 @@
|
|
|
8733
8924
|
}
|
|
8734
8925
|
};
|
|
8735
8926
|
this.i.triangulationStatusChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.triangulationStatusChanged, this._triangulationStatusChanged_wrapped);
|
|
8927
|
+
;
|
|
8736
8928
|
},
|
|
8737
8929
|
enumerable: true,
|
|
8738
8930
|
configurable: true
|
|
@@ -9004,11 +9196,25 @@
|
|
|
9004
9196
|
if (_super.prototype["connectedCallback"]) {
|
|
9005
9197
|
_super.prototype["connectedCallback"].call(this);
|
|
9006
9198
|
}
|
|
9199
|
+
if (this.i.connectedCallback) {
|
|
9200
|
+
this.i.connectedCallback();
|
|
9201
|
+
}
|
|
9007
9202
|
if (!this._attached) {
|
|
9008
9203
|
this._attached = true;
|
|
9009
9204
|
this._flushQueuedAttributes();
|
|
9010
9205
|
}
|
|
9011
9206
|
};
|
|
9207
|
+
IgcGeographicHighDensityScatterSeriesComponent.prototype.disconnectedCallback = function () {
|
|
9208
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
9209
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
9210
|
+
}
|
|
9211
|
+
if (this.i.disconnectedCallback) {
|
|
9212
|
+
this.i.disconnectedCallback();
|
|
9213
|
+
}
|
|
9214
|
+
if (this._attached) {
|
|
9215
|
+
this._attached = false;
|
|
9216
|
+
}
|
|
9217
|
+
};
|
|
9012
9218
|
Object.defineProperty(IgcGeographicHighDensityScatterSeriesComponent, "observedAttributes", {
|
|
9013
9219
|
get: function () {
|
|
9014
9220
|
if (IgcGeographicHighDensityScatterSeriesComponent._observedAttributesIgcGeographicHighDensityScatterSeriesComponent == null) {
|
|
@@ -9217,6 +9423,7 @@
|
|
|
9217
9423
|
}
|
|
9218
9424
|
};
|
|
9219
9425
|
this.i.progressiveLoadStatusChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.progressiveLoadStatusChanged, this._progressiveLoadStatusChanged_wrapped);
|
|
9426
|
+
;
|
|
9220
9427
|
},
|
|
9221
9428
|
enumerable: true,
|
|
9222
9429
|
configurable: true
|
|
@@ -9414,11 +9621,25 @@
|
|
|
9414
9621
|
if (_super.prototype["connectedCallback"]) {
|
|
9415
9622
|
_super.prototype["connectedCallback"].call(this);
|
|
9416
9623
|
}
|
|
9624
|
+
if (this.i.connectedCallback) {
|
|
9625
|
+
this.i.connectedCallback();
|
|
9626
|
+
}
|
|
9417
9627
|
if (!this._attached) {
|
|
9418
9628
|
this._attached = true;
|
|
9419
9629
|
this._flushQueuedAttributes();
|
|
9420
9630
|
}
|
|
9421
9631
|
};
|
|
9632
|
+
IgcGeographicContourLineSeriesComponent.prototype.disconnectedCallback = function () {
|
|
9633
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
9634
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
9635
|
+
}
|
|
9636
|
+
if (this.i.disconnectedCallback) {
|
|
9637
|
+
this.i.disconnectedCallback();
|
|
9638
|
+
}
|
|
9639
|
+
if (this._attached) {
|
|
9640
|
+
this._attached = false;
|
|
9641
|
+
}
|
|
9642
|
+
};
|
|
9422
9643
|
Object.defineProperty(IgcGeographicContourLineSeriesComponent, "observedAttributes", {
|
|
9423
9644
|
get: function () {
|
|
9424
9645
|
if (IgcGeographicContourLineSeriesComponent._observedAttributesIgcGeographicContourLineSeriesComponent == null) {
|
|
@@ -9467,17 +9688,18 @@
|
|
|
9467
9688
|
* The ValueBrushScale to use when determining Brushes for each contour line, based on the values found in ValueMemberPath.
|
|
9468
9689
|
*/
|
|
9469
9690
|
get: function () {
|
|
9470
|
-
|
|
9691
|
+
var r = this.i.q5;
|
|
9692
|
+
if (r == null) {
|
|
9471
9693
|
return null;
|
|
9472
9694
|
}
|
|
9473
|
-
if (!
|
|
9474
|
-
var e = igniteuiWebcomponentsCharts.IgcValueBrushScaleComponent._createFromInternal(
|
|
9695
|
+
if (!r.externalObject) {
|
|
9696
|
+
var e = igniteuiWebcomponentsCharts.IgcValueBrushScaleComponent._createFromInternal(r);
|
|
9475
9697
|
if (e) {
|
|
9476
|
-
e._implementation =
|
|
9698
|
+
e._implementation = r;
|
|
9477
9699
|
}
|
|
9478
|
-
|
|
9700
|
+
r.externalObject = e;
|
|
9479
9701
|
}
|
|
9480
|
-
return
|
|
9702
|
+
return r.externalObject;
|
|
9481
9703
|
},
|
|
9482
9704
|
set: function (v) {
|
|
9483
9705
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -9492,17 +9714,18 @@
|
|
|
9492
9714
|
* Gets actual fill scale that is set on the FillScale property or default FillScale
|
|
9493
9715
|
*/
|
|
9494
9716
|
get: function () {
|
|
9495
|
-
|
|
9717
|
+
var r = this.i.q4;
|
|
9718
|
+
if (r == null) {
|
|
9496
9719
|
return null;
|
|
9497
9720
|
}
|
|
9498
|
-
if (!
|
|
9499
|
-
var e = igniteuiWebcomponentsCharts.IgcValueBrushScaleComponent._createFromInternal(
|
|
9721
|
+
if (!r.externalObject) {
|
|
9722
|
+
var e = igniteuiWebcomponentsCharts.IgcValueBrushScaleComponent._createFromInternal(r);
|
|
9500
9723
|
if (e) {
|
|
9501
|
-
e._implementation =
|
|
9724
|
+
e._implementation = r;
|
|
9502
9725
|
}
|
|
9503
|
-
|
|
9726
|
+
r.externalObject = e;
|
|
9504
9727
|
}
|
|
9505
|
-
return
|
|
9728
|
+
return r.externalObject;
|
|
9506
9729
|
},
|
|
9507
9730
|
set: function (v) {
|
|
9508
9731
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -9517,17 +9740,18 @@
|
|
|
9517
9740
|
* The ContourValueResolver used to determine the numeric values of contours.
|
|
9518
9741
|
*/
|
|
9519
9742
|
get: function () {
|
|
9520
|
-
|
|
9743
|
+
var r = this.i.q1;
|
|
9744
|
+
if (r == null) {
|
|
9521
9745
|
return null;
|
|
9522
9746
|
}
|
|
9523
|
-
if (!
|
|
9524
|
-
var e = igniteuiWebcomponentsCharts.IgcContourValueResolverComponent._createFromInternal(
|
|
9747
|
+
if (!r.externalObject) {
|
|
9748
|
+
var e = igniteuiWebcomponentsCharts.IgcContourValueResolverComponent._createFromInternal(r);
|
|
9525
9749
|
if (e) {
|
|
9526
|
-
e._implementation =
|
|
9750
|
+
e._implementation = r;
|
|
9527
9751
|
}
|
|
9528
|
-
|
|
9752
|
+
r.externalObject = e;
|
|
9529
9753
|
}
|
|
9530
|
-
return
|
|
9754
|
+
return r.externalObject;
|
|
9531
9755
|
},
|
|
9532
9756
|
set: function (v) {
|
|
9533
9757
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -9593,6 +9817,7 @@
|
|
|
9593
9817
|
}
|
|
9594
9818
|
};
|
|
9595
9819
|
this.i.triangulationStatusChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.triangulationStatusChanged, this._triangulationStatusChanged_wrapped);
|
|
9820
|
+
;
|
|
9596
9821
|
},
|
|
9597
9822
|
enumerable: true,
|
|
9598
9823
|
configurable: true
|
|
@@ -10091,11 +10316,25 @@
|
|
|
10091
10316
|
if (_super.prototype["connectedCallback"]) {
|
|
10092
10317
|
_super.prototype["connectedCallback"].call(this);
|
|
10093
10318
|
}
|
|
10319
|
+
if (this.i.connectedCallback) {
|
|
10320
|
+
this.i.connectedCallback();
|
|
10321
|
+
}
|
|
10094
10322
|
if (!this._attached) {
|
|
10095
10323
|
this._attached = true;
|
|
10096
10324
|
this._flushQueuedAttributes();
|
|
10097
10325
|
}
|
|
10098
10326
|
};
|
|
10327
|
+
IgcGeographicMarkerSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10328
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10329
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10330
|
+
}
|
|
10331
|
+
if (this.i.disconnectedCallback) {
|
|
10332
|
+
this.i.disconnectedCallback();
|
|
10333
|
+
}
|
|
10334
|
+
if (this._attached) {
|
|
10335
|
+
this._attached = false;
|
|
10336
|
+
}
|
|
10337
|
+
};
|
|
10099
10338
|
Object.defineProperty(IgcGeographicMarkerSeriesBaseComponent, "observedAttributes", {
|
|
10100
10339
|
get: function () {
|
|
10101
10340
|
if (IgcGeographicMarkerSeriesBaseComponent._observedAttributesIgcGeographicMarkerSeriesBaseComponent == null) {
|
|
@@ -10133,11 +10372,25 @@
|
|
|
10133
10372
|
if (_super.prototype["connectedCallback"]) {
|
|
10134
10373
|
_super.prototype["connectedCallback"].call(this);
|
|
10135
10374
|
}
|
|
10375
|
+
if (this.i.connectedCallback) {
|
|
10376
|
+
this.i.connectedCallback();
|
|
10377
|
+
}
|
|
10136
10378
|
if (!this._attached) {
|
|
10137
10379
|
this._attached = true;
|
|
10138
10380
|
this._flushQueuedAttributes();
|
|
10139
10381
|
}
|
|
10140
10382
|
};
|
|
10383
|
+
IgcGeographicProportionalSymbolSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10384
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10385
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10386
|
+
}
|
|
10387
|
+
if (this.i.disconnectedCallback) {
|
|
10388
|
+
this.i.disconnectedCallback();
|
|
10389
|
+
}
|
|
10390
|
+
if (this._attached) {
|
|
10391
|
+
this._attached = false;
|
|
10392
|
+
}
|
|
10393
|
+
};
|
|
10141
10394
|
Object.defineProperty(IgcGeographicProportionalSymbolSeriesBaseComponent, "observedAttributes", {
|
|
10142
10395
|
get: function () {
|
|
10143
10396
|
if (IgcGeographicProportionalSymbolSeriesBaseComponent._observedAttributesIgcGeographicProportionalSymbolSeriesBaseComponent == null) {
|
|
@@ -10193,11 +10446,25 @@
|
|
|
10193
10446
|
if (_super.prototype["connectedCallback"]) {
|
|
10194
10447
|
_super.prototype["connectedCallback"].call(this);
|
|
10195
10448
|
}
|
|
10449
|
+
if (this.i.connectedCallback) {
|
|
10450
|
+
this.i.connectedCallback();
|
|
10451
|
+
}
|
|
10196
10452
|
if (!this._attached) {
|
|
10197
10453
|
this._attached = true;
|
|
10198
10454
|
this._flushQueuedAttributes();
|
|
10199
10455
|
}
|
|
10200
10456
|
};
|
|
10457
|
+
IgcGeographicShapeSeriesBaseBaseComponent.prototype.disconnectedCallback = function () {
|
|
10458
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10459
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10460
|
+
}
|
|
10461
|
+
if (this.i.disconnectedCallback) {
|
|
10462
|
+
this.i.disconnectedCallback();
|
|
10463
|
+
}
|
|
10464
|
+
if (this._attached) {
|
|
10465
|
+
this._attached = false;
|
|
10466
|
+
}
|
|
10467
|
+
};
|
|
10201
10468
|
Object.defineProperty(IgcGeographicShapeSeriesBaseBaseComponent, "observedAttributes", {
|
|
10202
10469
|
get: function () {
|
|
10203
10470
|
if (IgcGeographicShapeSeriesBaseBaseComponent._observedAttributesIgcGeographicShapeSeriesBaseBaseComponent == null) {
|
|
@@ -10253,11 +10520,25 @@
|
|
|
10253
10520
|
if (_super.prototype["connectedCallback"]) {
|
|
10254
10521
|
_super.prototype["connectedCallback"].call(this);
|
|
10255
10522
|
}
|
|
10523
|
+
if (this.i.connectedCallback) {
|
|
10524
|
+
this.i.connectedCallback();
|
|
10525
|
+
}
|
|
10256
10526
|
if (!this._attached) {
|
|
10257
10527
|
this._attached = true;
|
|
10258
10528
|
this._flushQueuedAttributes();
|
|
10259
10529
|
}
|
|
10260
10530
|
};
|
|
10531
|
+
IgcGeographicSymbolSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10532
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10533
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10534
|
+
}
|
|
10535
|
+
if (this.i.disconnectedCallback) {
|
|
10536
|
+
this.i.disconnectedCallback();
|
|
10537
|
+
}
|
|
10538
|
+
if (this._attached) {
|
|
10539
|
+
this._attached = false;
|
|
10540
|
+
}
|
|
10541
|
+
};
|
|
10261
10542
|
Object.defineProperty(IgcGeographicSymbolSeriesBaseComponent, "observedAttributes", {
|
|
10262
10543
|
get: function () {
|
|
10263
10544
|
if (IgcGeographicSymbolSeriesBaseComponent._observedAttributesIgcGeographicSymbolSeriesBaseComponent == null) {
|
|
@@ -10313,11 +10594,25 @@
|
|
|
10313
10594
|
if (_super.prototype["connectedCallback"]) {
|
|
10314
10595
|
_super.prototype["connectedCallback"].call(this);
|
|
10315
10596
|
}
|
|
10597
|
+
if (this.i.connectedCallback) {
|
|
10598
|
+
this.i.connectedCallback();
|
|
10599
|
+
}
|
|
10316
10600
|
if (!this._attached) {
|
|
10317
10601
|
this._attached = true;
|
|
10318
10602
|
this._flushQueuedAttributes();
|
|
10319
10603
|
}
|
|
10320
10604
|
};
|
|
10605
|
+
IgcGeographicXYTriangulatingSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10606
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10607
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10608
|
+
}
|
|
10609
|
+
if (this.i.disconnectedCallback) {
|
|
10610
|
+
this.i.disconnectedCallback();
|
|
10611
|
+
}
|
|
10612
|
+
if (this._attached) {
|
|
10613
|
+
this._attached = false;
|
|
10614
|
+
}
|
|
10615
|
+
};
|
|
10321
10616
|
Object.defineProperty(IgcGeographicXYTriangulatingSeriesBaseComponent, "observedAttributes", {
|
|
10322
10617
|
get: function () {
|
|
10323
10618
|
if (IgcGeographicXYTriangulatingSeriesBaseComponent._observedAttributesIgcGeographicXYTriangulatingSeriesBaseComponent == null) {
|