@axdspub/axiom-charts 0.2.0-alpha-react19-compatible → 0.2.1-alpha-react19-compatible

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/library/index.js CHANGED
@@ -11369,7 +11369,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
11369
11369
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
11370
11370
  PERFORMANCE OF THIS SOFTWARE.
11371
11371
  ***************************************************************************** */
11372
- /* global Reflect, Promise, SuppressedError, Symbol */
11372
+ /* global Reflect, Promise, SuppressedError, Symbol, Iterator */
11373
11373
 
11374
11374
  var extendStatics = function(d, b) {
11375
11375
  extendStatics = Object.setPrototypeOf ||
@@ -11408,8 +11408,8 @@ function __awaiter(thisArg, _arguments, P, generator) {
11408
11408
  }
11409
11409
 
11410
11410
  function __generator(thisArg, body) {
11411
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
11412
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
11411
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
11412
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
11413
11413
  function verb(n) { return function (v) { return step([n, v]); }; }
11414
11414
  function step(op) {
11415
11415
  if (f) throw new TypeError("Generator is already executing.");
@@ -12222,6 +12222,10 @@ var MapLoadedEvent = /** @class */ (function (_super) {
12222
12222
  MapRoot.prototype.cleanupTools = function () {
12223
12223
  Object.values(this.toolInstances).forEach(function (tool) { tool.cleanup(); });
12224
12224
  };
12225
+ MapRoot.prototype.getCanvasElement = function () {
12226
+ console.log("getCanvasElement not implemented for ".concat(this.getMapLibraryName()));
12227
+ return undefined;
12228
+ };
12225
12229
  return MapRoot;
12226
12230
  })(EventManager));
12227
12231