@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.js CHANGED
@@ -5,8 +5,8 @@
5
5
  })(this, (function (exports, common, util) { 'use strict';
6
6
 
7
7
  var PKG_NAME = "@hpcc-js/html";
8
- var PKG_VERSION = "2.41.2";
9
- var BUILD_VERSION = "2.102.8";
8
+ var PKG_VERSION = "2.41.3";
9
+ var BUILD_VERSION = "2.102.11";
10
10
 
11
11
  /*! *****************************************************************************
12
12
  Copyright (c) Microsoft Corporation.
@@ -648,10 +648,8 @@
648
648
  VNode.prototype.render = function (targetElement) {
649
649
  var thisElement = targetElement.selectAll("".concat(targetElement.node().tagName, " > *")).data([this]);
650
650
  thisElement.exit()
651
- .each(function (d) { return console.log("render: Exit - ".concat(d.type())); })
652
651
  .remove();
653
652
  return thisElement.enter().append(this.type())
654
- .each(function (d) { return console.log("render: Enter - ".concat(d.type())); })
655
653
  .attr("reactd3", 0)
656
654
  .merge(thisElement)
657
655
  .each(function (d) {
@@ -663,10 +661,8 @@
663
661
  VNode.prototype.renderChildren = function (targetElement) {
664
662
  var thisElement = targetElement.selectAll("".concat(targetElement.node().tagName, " > *")).data(this._children);
665
663
  thisElement.exit()
666
- .each(function (d) { return console.log("renderChildren: Exit - ".concat(d.type())); })
667
664
  .remove();
668
665
  return thisElement.enter().append(function (d) { return document.createElement(d.type()); })
669
- .each(function (d) { return console.log("renderChildren: Enter - ".concat(d.type())); })
670
666
  .attr("reactd3", function (_d, i) { return i; })
671
667
  .merge(thisElement)
672
668
  .each(function (d) {