@hpcc-js/html 2.41.2 → 2.41.3

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/dist/index.es6.js CHANGED
@@ -2,8 +2,8 @@ import { select, HTMLWidget, format } from '@hpcc-js/common';
2
2
  import { scopedLogger } from '@hpcc-js/util';
3
3
 
4
4
  var PKG_NAME = "@hpcc-js/html";
5
- var PKG_VERSION = "2.41.2";
6
- var BUILD_VERSION = "2.102.8";
5
+ var PKG_VERSION = "2.41.3";
6
+ var BUILD_VERSION = "2.102.11";
7
7
 
8
8
  /*! *****************************************************************************
9
9
  Copyright (c) Microsoft Corporation.
@@ -645,10 +645,8 @@ var VNode = /** @class */ (function () {
645
645
  VNode.prototype.render = function (targetElement) {
646
646
  var thisElement = targetElement.selectAll("".concat(targetElement.node().tagName, " > *")).data([this]);
647
647
  thisElement.exit()
648
- .each(function (d) { return console.log("render: Exit - ".concat(d.type())); })
649
648
  .remove();
650
649
  return thisElement.enter().append(this.type())
651
- .each(function (d) { return console.log("render: Enter - ".concat(d.type())); })
652
650
  .attr("reactd3", 0)
653
651
  .merge(thisElement)
654
652
  .each(function (d) {
@@ -660,10 +658,8 @@ var VNode = /** @class */ (function () {
660
658
  VNode.prototype.renderChildren = function (targetElement) {
661
659
  var thisElement = targetElement.selectAll("".concat(targetElement.node().tagName, " > *")).data(this._children);
662
660
  thisElement.exit()
663
- .each(function (d) { return console.log("renderChildren: Exit - ".concat(d.type())); })
664
661
  .remove();
665
662
  return thisElement.enter().append(function (d) { return document.createElement(d.type()); })
666
- .each(function (d) { return console.log("renderChildren: Enter - ".concat(d.type())); })
667
663
  .attr("reactd3", function (_d, i) { return i; })
668
664
  .merge(thisElement)
669
665
  .each(function (d) {