igniteui-webcomponents-maps 7.1.0 → 7.1.1-beta.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.
@@ -89,7 +89,7 @@ let IgcGeographicContourLineSeriesComponent = /*@__PURE__*/ (() => {
89
89
  if (e) {
90
90
  e._implementation = r;
91
91
  }
92
- r.externalObject = e;
92
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
93
93
  }
94
94
  return r.externalObject;
95
95
  }
@@ -111,7 +111,7 @@ let IgcGeographicContourLineSeriesComponent = /*@__PURE__*/ (() => {
111
111
  if (e) {
112
112
  e._implementation = r;
113
113
  }
114
- r.externalObject = e;
114
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
115
115
  }
116
116
  return r.externalObject;
117
117
  }
@@ -133,7 +133,7 @@ let IgcGeographicContourLineSeriesComponent = /*@__PURE__*/ (() => {
133
133
  if (e) {
134
134
  e._implementation = r;
135
135
  }
136
- r.externalObject = e;
136
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
137
137
  }
138
138
  return r.externalObject;
139
139
  }
@@ -423,7 +423,7 @@ let IgcGeographicMapComponent = /*@__PURE__*/ (() => {
423
423
  if (e) {
424
424
  e._implementation = r;
425
425
  }
426
- r.externalObject = e;
426
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
427
427
  }
428
428
  return r.externalObject;
429
429
  }
@@ -446,7 +446,7 @@ let IgcGeographicMapComponent = /*@__PURE__*/ (() => {
446
446
  if (e) {
447
447
  e._implementation = r;
448
448
  }
449
- r.externalObject = e;
449
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
450
450
  }
451
451
  return r.externalObject;
452
452
  }
@@ -46,7 +46,7 @@ export class IgcGeographicMapImagery {
46
46
  this._downloadingImage = null;
47
47
  this._downloadingImage_wrapped = null;
48
48
  this._implementation = this.createImplementation();
49
- this._implementation.externalObject = this;
49
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
50
50
  this.onImplementationCreated();
51
51
  if (this._initializeAdapters) {
52
52
  this._initializeAdapters();
@@ -54,7 +54,7 @@ export class IgcGeographicMapImagery {
54
54
  }
55
55
  _provideImplementation(i) {
56
56
  this._implementation = i;
57
- this._implementation.externalObject = this;
57
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
58
58
  this.onImplementationCreated();
59
59
  if (this._initializeAdapters) {
60
60
  this._initializeAdapters();
@@ -111,7 +111,7 @@ let IgcGeographicProportionalSymbolSeriesComponent = /*@__PURE__*/ (() => {
111
111
  if (e) {
112
112
  e._implementation = r;
113
113
  }
114
- r.externalObject = e;
114
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
115
115
  }
116
116
  return r.externalObject;
117
117
  }
@@ -151,7 +151,7 @@ let IgcGeographicProportionalSymbolSeriesComponent = /*@__PURE__*/ (() => {
151
151
  if (e) {
152
152
  e._implementation = r;
153
153
  }
154
- r.externalObject = e;
154
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
155
155
  }
156
156
  return r.externalObject;
157
157
  }
@@ -88,7 +88,7 @@ let IgcGeographicScatterAreaSeriesComponent = /*@__PURE__*/ (() => {
88
88
  if (e) {
89
89
  e._implementation = r;
90
90
  }
91
- r.externalObject = e;
91
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
92
92
  }
93
93
  return r.externalObject;
94
94
  }
@@ -110,7 +110,7 @@ let IgcGeographicScatterAreaSeriesComponent = /*@__PURE__*/ (() => {
110
110
  if (e) {
111
111
  e._implementation = r;
112
112
  }
113
- r.externalObject = e;
113
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
114
114
  }
115
115
  return r.externalObject;
116
116
  }
@@ -184,7 +184,7 @@ let IgcGeographicShapeSeriesBaseComponent = /*@__PURE__*/ (() => {
184
184
  if (e) {
185
185
  e._implementation = r;
186
186
  }
187
- r.externalObject = e;
187
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
188
188
  }
189
189
  return r.externalObject;
190
190
  }
@@ -232,7 +232,7 @@ let IgcGeographicShapeSeriesBaseComponent = /*@__PURE__*/ (() => {
232
232
  e.i.setNativeElement(r);
233
233
  }
234
234
  }
235
- r.externalObject = e;
235
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
236
236
  }
237
237
  return r.externalObject;
238
238
  }
@@ -13,7 +13,7 @@ export class IgcImageTilesReadyEventArgs {
13
13
  }
14
14
  constructor() {
15
15
  this._implementation = this.createImplementation();
16
- this._implementation.externalObject = this;
16
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
17
17
  this.onImplementationCreated();
18
18
  if (this._initializeAdapters) {
19
19
  this._initializeAdapters();
@@ -21,7 +21,7 @@ export class IgcImageTilesReadyEventArgs {
21
21
  }
22
22
  _provideImplementation(i) {
23
23
  this._implementation = i;
24
- this._implementation.externalObject = this;
24
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
25
25
  this.onImplementationCreated();
26
26
  if (this._initializeAdapters) {
27
27
  this._initializeAdapters();
@@ -13,7 +13,7 @@ export class IgcImagesChangedEventArgs {
13
13
  }
14
14
  constructor() {
15
15
  this._implementation = this.createImplementation();
16
- this._implementation.externalObject = this;
16
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
17
17
  this.onImplementationCreated();
18
18
  if (this._initializeAdapters) {
19
19
  this._initializeAdapters();
@@ -21,7 +21,7 @@ export class IgcImagesChangedEventArgs {
21
21
  }
22
22
  _provideImplementation(i) {
23
23
  this._implementation = i;
24
- this._implementation.externalObject = this;
24
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
25
25
  this.onImplementationCreated();
26
26
  if (this._initializeAdapters) {
27
27
  this._initializeAdapters();
@@ -111,7 +111,7 @@ export var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/
111
111
  if (e) {
112
112
  e._implementation = r;
113
113
  }
114
- r.externalObject = e;
114
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
115
115
  }
116
116
  return r.externalObject;
117
117
  },
@@ -137,7 +137,7 @@ export var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/
137
137
  if (e) {
138
138
  e._implementation = r;
139
139
  }
140
- r.externalObject = e;
140
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
141
141
  }
142
142
  return r.externalObject;
143
143
  },
@@ -163,7 +163,7 @@ export var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/
163
163
  if (e) {
164
164
  e._implementation = r;
165
165
  }
166
- r.externalObject = e;
166
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
167
167
  }
168
168
  return r.externalObject;
169
169
  },
@@ -510,7 +510,7 @@ export var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_s
510
510
  if (e) {
511
511
  e._implementation = r;
512
512
  }
513
- r.externalObject = e;
513
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
514
514
  }
515
515
  return r.externalObject;
516
516
  },
@@ -537,7 +537,7 @@ export var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_s
537
537
  if (e) {
538
538
  e._implementation = r;
539
539
  }
540
- r.externalObject = e;
540
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
541
541
  }
542
542
  return r.externalObject;
543
543
  },
@@ -19,7 +19,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
19
19
  this._downloadingImage = null;
20
20
  this._downloadingImage_wrapped = null;
21
21
  this._implementation = this.createImplementation();
22
- this._implementation.externalObject = this;
22
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
23
23
  this.onImplementationCreated();
24
24
  if (this._initializeAdapters) {
25
25
  this._initializeAdapters();
@@ -58,7 +58,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
58
58
  };
59
59
  IgcGeographicMapImagery.prototype._provideImplementation = function (i) {
60
60
  this._implementation = i;
61
- this._implementation.externalObject = this;
61
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
62
62
  this.onImplementationCreated();
63
63
  if (this._initializeAdapters) {
64
64
  this._initializeAdapters();
@@ -142,7 +142,7 @@ export var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__P
142
142
  if (e) {
143
143
  e._implementation = r;
144
144
  }
145
- r.externalObject = e;
145
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
146
146
  }
147
147
  return r.externalObject;
148
148
  },
@@ -194,7 +194,7 @@ export var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__P
194
194
  if (e) {
195
195
  e._implementation = r;
196
196
  }
197
- r.externalObject = e;
197
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
198
198
  }
199
199
  return r.externalObject;
200
200
  },
@@ -110,7 +110,7 @@ export var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/
110
110
  if (e) {
111
111
  e._implementation = r;
112
112
  }
113
- r.externalObject = e;
113
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
114
114
  }
115
115
  return r.externalObject;
116
116
  },
@@ -136,7 +136,7 @@ export var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/
136
136
  if (e) {
137
137
  e._implementation = r;
138
138
  }
139
- r.externalObject = e;
139
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
140
140
  }
141
141
  return r.externalObject;
142
142
  },
@@ -231,7 +231,7 @@ export var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (
231
231
  if (e) {
232
232
  e._implementation = r;
233
233
  }
234
- r.externalObject = e;
234
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
235
235
  }
236
236
  return r.externalObject;
237
237
  },
@@ -291,7 +291,7 @@ export var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (
291
291
  e.i.setNativeElement(r);
292
292
  }
293
293
  }
294
- r.externalObject = e;
294
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
295
295
  }
296
296
  return r.externalObject;
297
297
  },
@@ -2,7 +2,7 @@ import { ImageTilesReadyEventArgs as ImageTilesReadyEventArgs_internal } from ".
2
2
  var IgcImageTilesReadyEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
3
  function IgcImageTilesReadyEventArgs() {
4
4
  this._implementation = this.createImplementation();
5
- this._implementation.externalObject = this;
5
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
6
6
  this.onImplementationCreated();
7
7
  if (this._initializeAdapters) {
8
8
  this._initializeAdapters();
@@ -25,7 +25,7 @@ var IgcImageTilesReadyEventArgs = /** @class */ /*@__PURE__*/ (function () {
25
25
  };
26
26
  IgcImageTilesReadyEventArgs.prototype._provideImplementation = function (i) {
27
27
  this._implementation = i;
28
- this._implementation.externalObject = this;
28
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
29
29
  this.onImplementationCreated();
30
30
  if (this._initializeAdapters) {
31
31
  this._initializeAdapters();
@@ -2,7 +2,7 @@ import { ImagesChangedEventArgs as ImagesChangedEventArgs_internal } from "./Ima
2
2
  var IgcImagesChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
3
  function IgcImagesChangedEventArgs() {
4
4
  this._implementation = this.createImplementation();
5
- this._implementation.externalObject = this;
5
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
6
6
  this.onImplementationCreated();
7
7
  if (this._initializeAdapters) {
8
8
  this._initializeAdapters();
@@ -25,7 +25,7 @@ var IgcImagesChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
25
25
  };
26
26
  IgcImagesChangedEventArgs.prototype._provideImplementation = function (i) {
27
27
  this._implementation = i;
28
- this._implementation.externalObject = this;
28
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
29
29
  this.onImplementationCreated();
30
30
  if (this._initializeAdapters) {
31
31
  this._initializeAdapters();
@@ -2304,7 +2304,7 @@ class IgcImageTilesReadyEventArgs {
2304
2304
  }
2305
2305
  constructor() {
2306
2306
  this._implementation = this.createImplementation();
2307
- this._implementation.externalObject = this;
2307
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
2308
2308
  this.onImplementationCreated();
2309
2309
  if (this._initializeAdapters) {
2310
2310
  this._initializeAdapters();
@@ -2312,7 +2312,7 @@ class IgcImageTilesReadyEventArgs {
2312
2312
  }
2313
2313
  _provideImplementation(i) {
2314
2314
  this._implementation = i;
2315
- this._implementation.externalObject = this;
2315
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
2316
2316
  this.onImplementationCreated();
2317
2317
  if (this._initializeAdapters) {
2318
2318
  this._initializeAdapters();
@@ -2728,7 +2728,7 @@ let IgcGeographicMapComponent = /*@__PURE__*/ (() => {
2728
2728
  if (e) {
2729
2729
  e._implementation = r;
2730
2730
  }
2731
- r.externalObject = e;
2731
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
2732
2732
  }
2733
2733
  return r.externalObject;
2734
2734
  }
@@ -2751,7 +2751,7 @@ let IgcGeographicMapComponent = /*@__PURE__*/ (() => {
2751
2751
  if (e) {
2752
2752
  e._implementation = r;
2753
2753
  }
2754
- r.externalObject = e;
2754
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
2755
2755
  }
2756
2756
  return r.externalObject;
2757
2757
  }
@@ -3068,7 +3068,7 @@ class IgcImagesChangedEventArgs {
3068
3068
  }
3069
3069
  constructor() {
3070
3070
  this._implementation = this.createImplementation();
3071
- this._implementation.externalObject = this;
3071
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3072
3072
  this.onImplementationCreated();
3073
3073
  if (this._initializeAdapters) {
3074
3074
  this._initializeAdapters();
@@ -3076,7 +3076,7 @@ class IgcImagesChangedEventArgs {
3076
3076
  }
3077
3077
  _provideImplementation(i) {
3078
3078
  this._implementation = i;
3079
- this._implementation.externalObject = this;
3079
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3080
3080
  this.onImplementationCreated();
3081
3081
  if (this._initializeAdapters) {
3082
3082
  this._initializeAdapters();
@@ -3125,7 +3125,7 @@ class IgcGeographicMapImagery {
3125
3125
  this._downloadingImage = null;
3126
3126
  this._downloadingImage_wrapped = null;
3127
3127
  this._implementation = this.createImplementation();
3128
- this._implementation.externalObject = this;
3128
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3129
3129
  this.onImplementationCreated();
3130
3130
  if (this._initializeAdapters) {
3131
3131
  this._initializeAdapters();
@@ -3133,7 +3133,7 @@ class IgcGeographicMapImagery {
3133
3133
  }
3134
3134
  _provideImplementation(i) {
3135
3135
  this._implementation = i;
3136
- this._implementation.externalObject = this;
3136
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3137
3137
  this.onImplementationCreated();
3138
3138
  if (this._initializeAdapters) {
3139
3139
  this._initializeAdapters();
@@ -4654,7 +4654,7 @@ let IgcGeographicShapeSeriesBaseComponent = /*@__PURE__*/ (() => {
4654
4654
  if (e) {
4655
4655
  e._implementation = r;
4656
4656
  }
4657
- r.externalObject = e;
4657
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
4658
4658
  }
4659
4659
  return r.externalObject;
4660
4660
  }
@@ -4702,7 +4702,7 @@ let IgcGeographicShapeSeriesBaseComponent = /*@__PURE__*/ (() => {
4702
4702
  e.i.setNativeElement(r);
4703
4703
  }
4704
4704
  }
4705
- r.externalObject = e;
4705
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
4706
4706
  }
4707
4707
  return r.externalObject;
4708
4708
  }
@@ -6996,7 +6996,7 @@ let IgcGeographicProportionalSymbolSeriesComponent = /*@__PURE__*/ (() => {
6996
6996
  if (e) {
6997
6997
  e._implementation = r;
6998
6998
  }
6999
- r.externalObject = e;
6999
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
7000
7000
  }
7001
7001
  return r.externalObject;
7002
7002
  }
@@ -7036,7 +7036,7 @@ let IgcGeographicProportionalSymbolSeriesComponent = /*@__PURE__*/ (() => {
7036
7036
  if (e) {
7037
7037
  e._implementation = r;
7038
7038
  }
7039
- r.externalObject = e;
7039
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
7040
7040
  }
7041
7041
  return r.externalObject;
7042
7042
  }
@@ -7816,7 +7816,7 @@ let IgcGeographicScatterAreaSeriesComponent = /*@__PURE__*/ (() => {
7816
7816
  if (e) {
7817
7817
  e._implementation = r;
7818
7818
  }
7819
- r.externalObject = e;
7819
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
7820
7820
  }
7821
7821
  return r.externalObject;
7822
7822
  }
@@ -7838,7 +7838,7 @@ let IgcGeographicScatterAreaSeriesComponent = /*@__PURE__*/ (() => {
7838
7838
  if (e) {
7839
7839
  e._implementation = r;
7840
7840
  }
7841
- r.externalObject = e;
7841
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
7842
7842
  }
7843
7843
  return r.externalObject;
7844
7844
  }
@@ -8574,7 +8574,7 @@ let IgcGeographicContourLineSeriesComponent = /*@__PURE__*/ (() => {
8574
8574
  if (e) {
8575
8575
  e._implementation = r;
8576
8576
  }
8577
- r.externalObject = e;
8577
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
8578
8578
  }
8579
8579
  return r.externalObject;
8580
8580
  }
@@ -8596,7 +8596,7 @@ let IgcGeographicContourLineSeriesComponent = /*@__PURE__*/ (() => {
8596
8596
  if (e) {
8597
8597
  e._implementation = r;
8598
8598
  }
8599
- r.externalObject = e;
8599
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
8600
8600
  }
8601
8601
  return r.externalObject;
8602
8602
  }
@@ -8618,7 +8618,7 @@ let IgcGeographicContourLineSeriesComponent = /*@__PURE__*/ (() => {
8618
8618
  if (e) {
8619
8619
  e._implementation = r;
8620
8620
  }
8621
- r.externalObject = e;
8621
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
8622
8622
  }
8623
8623
  return r.externalObject;
8624
8624
  }
@@ -2470,7 +2470,7 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
2470
2470
  var IgcImageTilesReadyEventArgs = /** @class */ /*@__PURE__*/ (function () {
2471
2471
  function IgcImageTilesReadyEventArgs() {
2472
2472
  this._implementation = this.createImplementation();
2473
- this._implementation.externalObject = this;
2473
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
2474
2474
  this.onImplementationCreated();
2475
2475
  if (this._initializeAdapters) {
2476
2476
  this._initializeAdapters();
@@ -2493,7 +2493,7 @@ var IgcImageTilesReadyEventArgs = /** @class */ /*@__PURE__*/ (function () {
2493
2493
  };
2494
2494
  IgcImageTilesReadyEventArgs.prototype._provideImplementation = function (i) {
2495
2495
  this._implementation = i;
2496
- this._implementation.externalObject = this;
2496
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
2497
2497
  this.onImplementationCreated();
2498
2498
  if (this._initializeAdapters) {
2499
2499
  this._initializeAdapters();
@@ -2996,7 +2996,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2996
2996
  if (e) {
2997
2997
  e._implementation = r;
2998
2998
  }
2999
- r.externalObject = e;
2999
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
3000
3000
  }
3001
3001
  return r.externalObject;
3002
3002
  },
@@ -3023,7 +3023,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
3023
3023
  if (e) {
3024
3024
  e._implementation = r;
3025
3025
  }
3026
- r.externalObject = e;
3026
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
3027
3027
  }
3028
3028
  return r.externalObject;
3029
3029
  },
@@ -3355,7 +3355,7 @@ var BingMapsImageryStyle_$type = /*@__PURE__*/ markEnum('BingMapsImageryStyle',
3355
3355
  var IgcImagesChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
3356
3356
  function IgcImagesChangedEventArgs() {
3357
3357
  this._implementation = this.createImplementation();
3358
- this._implementation.externalObject = this;
3358
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3359
3359
  this.onImplementationCreated();
3360
3360
  if (this._initializeAdapters) {
3361
3361
  this._initializeAdapters();
@@ -3378,7 +3378,7 @@ var IgcImagesChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
3378
3378
  };
3379
3379
  IgcImagesChangedEventArgs.prototype._provideImplementation = function (i) {
3380
3380
  this._implementation = i;
3381
- this._implementation.externalObject = this;
3381
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3382
3382
  this.onImplementationCreated();
3383
3383
  if (this._initializeAdapters) {
3384
3384
  this._initializeAdapters();
@@ -3401,7 +3401,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
3401
3401
  this._downloadingImage = null;
3402
3402
  this._downloadingImage_wrapped = null;
3403
3403
  this._implementation = this.createImplementation();
3404
- this._implementation.externalObject = this;
3404
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3405
3405
  this.onImplementationCreated();
3406
3406
  if (this._initializeAdapters) {
3407
3407
  this._initializeAdapters();
@@ -3440,7 +3440,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
3440
3440
  };
3441
3441
  IgcGeographicMapImagery.prototype._provideImplementation = function (i) {
3442
3442
  this._implementation = i;
3443
- this._implementation.externalObject = this;
3443
+ Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
3444
3444
  this.onImplementationCreated();
3445
3445
  if (this._initializeAdapters) {
3446
3446
  this._initializeAdapters();
@@ -5281,7 +5281,7 @@ var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functio
5281
5281
  if (e) {
5282
5282
  e._implementation = r;
5283
5283
  }
5284
- r.externalObject = e;
5284
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
5285
5285
  }
5286
5286
  return r.externalObject;
5287
5287
  },
@@ -5341,7 +5341,7 @@ var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functio
5341
5341
  e.i.setNativeElement(r);
5342
5342
  }
5343
5343
  }
5344
- r.externalObject = e;
5344
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
5345
5345
  }
5346
5346
  return r.externalObject;
5347
5347
  },
@@ -7974,7 +7974,7 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
7974
7974
  if (e) {
7975
7975
  e._implementation = r;
7976
7976
  }
7977
- r.externalObject = e;
7977
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
7978
7978
  }
7979
7979
  return r.externalObject;
7980
7980
  },
@@ -8026,7 +8026,7 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
8026
8026
  if (e) {
8027
8027
  e._implementation = r;
8028
8028
  }
8029
- r.externalObject = e;
8029
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
8030
8030
  }
8031
8031
  return r.externalObject;
8032
8032
  },
@@ -8979,7 +8979,7 @@ var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/ (funct
8979
8979
  if (e) {
8980
8980
  e._implementation = r;
8981
8981
  }
8982
- r.externalObject = e;
8982
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
8983
8983
  }
8984
8984
  return r.externalObject;
8985
8985
  },
@@ -9005,7 +9005,7 @@ var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/ (funct
9005
9005
  if (e) {
9006
9006
  e._implementation = r;
9007
9007
  }
9008
- r.externalObject = e;
9008
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
9009
9009
  }
9010
9010
  return r.externalObject;
9011
9011
  },
@@ -9856,7 +9856,7 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
9856
9856
  if (e) {
9857
9857
  e._implementation = r;
9858
9858
  }
9859
- r.externalObject = e;
9859
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
9860
9860
  }
9861
9861
  return r.externalObject;
9862
9862
  },
@@ -9882,7 +9882,7 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
9882
9882
  if (e) {
9883
9883
  e._implementation = r;
9884
9884
  }
9885
- r.externalObject = e;
9885
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
9886
9886
  }
9887
9887
  return r.externalObject;
9888
9888
  },
@@ -9908,7 +9908,7 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
9908
9908
  if (e) {
9909
9909
  e._implementation = r;
9910
9910
  }
9911
- r.externalObject = e;
9911
+ Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
9912
9912
  }
9913
9913
  return r.externalObject;
9914
9914
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-webcomponents-maps",
3
- "version": "7.1.0",
3
+ "version": "7.1.1-beta.0",
4
4
  "description": "Ignite UI Web Components map components.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-webcomponents-maps",
6
6
  "keywords": [
@@ -16,8 +16,8 @@
16
16
  "tslib": "^2.3.1"
17
17
  },
18
18
  "peerDependencies": {
19
- "igniteui-webcomponents-core": "7.1.0",
20
- "igniteui-webcomponents-charts": "7.1.0"
19
+ "igniteui-webcomponents-core": "7.1.1-beta.0",
20
+ "igniteui-webcomponents-charts": "7.1.1-beta.0"
21
21
  },
22
22
  "sideEffects": false,
23
23
  "typings": "igniteui-webcomponents-maps.d.ts",