Commit 1bb9da6c authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Actualiza deps D3 a v6 y migra a D3-Tip compatible

Actualiza dependencias (incluyendo la migración de d3-tip a alternativa
más actual, derivada de la original).

Adapta uso de recursos a esta actualización, ya que se trata de una
actualización mayor con varios cambios incompatibles (ver
https://observablehq.com/@d3/d3v6-migration-guide).

Cambia atributo usado en eventos para obtener su fuente, se usaba una
propiedad obsoleta.
parent 363f9cff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -41,8 +41,8 @@
    "alertifyjs": "1.13.1",
    "cbtree": "https://github.com/pjekel/cbtree.git#master",
    "color-js": "1.0.5",
    "d3": "5.16.0",
    "d3-tip": "0.9.1",
    "d3": "6.7.0",
    "d3-v6-tip": "1.0.9",
    "deepmerge": "3.3.0",
    "dijit": "1.17.2",
    "dojo": "1.17.2",
+1 −0
Original line number Diff line number Diff line
@@ -279,6 +279,7 @@ define([
		_findAndRemoveUnusedAggregationCharts: function(prevAggs, currAggs) {

			var aggsDiff = prevAggs.filter(lang.partial(function(a, i) {

				return a.indexOf(i) < 0;
			}, currAggs));

+1 −1
Original line number Diff line number Diff line
@@ -358,7 +358,7 @@ define([

		_tryToGoToEditImage: function(evt) {

			var node = evt.target || evt.srcElement,
			var node = evt.target || evt.currentTarget,
				nodeTagName = node.tagName,
				nodeAttribute = node.getAttribute('data-redmic-id');

public/javascript/d3-tip

deleted120000 → 0
+0 −1
Original line number Diff line number Diff line
../../node_modules/d3-tip
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
../../node_modules/d3-v6-tip
 No newline at end of file
Loading