@hpcc-js/layout 2.47.2 → 2.47.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/README.md +36 -1
- package/dist/index.es6.js +2 -11
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +2 -11
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +6 -6
- package/src/Layered.ts +0 -1
- package/src/Legend.ts +22 -28
- package/src/Popup.ts +0 -1
- package/src/Surface.ts +0 -1
- package/src/__package__.ts +2 -2
- package/types/Layered.d.ts.map +1 -1
- package/types/Legend.d.ts.map +1 -1
- package/types/Popup.d.ts.map +1 -1
- package/types/Surface.d.ts.map +1 -1
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
var PKG_NAME = "@hpcc-js/layout";
|
|
23
|
-
var PKG_VERSION = "2.47.
|
|
24
|
-
var BUILD_VERSION = "2.102.
|
|
23
|
+
var PKG_VERSION = "2.47.3";
|
|
24
|
+
var BUILD_VERSION = "2.102.11";
|
|
25
25
|
|
|
26
26
|
/*! *****************************************************************************
|
|
27
27
|
Copyright (c) Microsoft Corporation.
|
|
@@ -432,7 +432,6 @@
|
|
|
432
432
|
};
|
|
433
433
|
// Events ---
|
|
434
434
|
Surface.prototype.click = function (obj) {
|
|
435
|
-
console.log("Clicked: " + obj.id);
|
|
436
435
|
};
|
|
437
436
|
return Surface;
|
|
438
437
|
}(common.HTMLWidget));
|
|
@@ -2619,14 +2618,8 @@
|
|
|
2619
2618
|
}
|
|
2620
2619
|
};
|
|
2621
2620
|
Legend.prototype.onDblClick = function (rowData, rowIdx) {
|
|
2622
|
-
console.log("Legend onDblClick method");
|
|
2623
|
-
console.log("rowData: " + rowData);
|
|
2624
|
-
console.log("rowIdx: " + rowIdx);
|
|
2625
2621
|
};
|
|
2626
2622
|
Legend.prototype.onMouseOver = function (rowData, rowIdx) {
|
|
2627
|
-
console.log("Legend onMouseOver method");
|
|
2628
|
-
console.log("rowData: " + rowData);
|
|
2629
|
-
console.log("rowIdx: " + rowIdx);
|
|
2630
2623
|
};
|
|
2631
2624
|
Legend.prototype.resize = function (_size) {
|
|
2632
2625
|
var retVal;
|
|
@@ -4706,7 +4699,6 @@
|
|
|
4706
4699
|
};
|
|
4707
4700
|
var widgetSize = context.widgetSize(idx, clientSize);
|
|
4708
4701
|
var widgetPosition = context.widgetPosition(idx, clientSize, widgetSize);
|
|
4709
|
-
console.log("widgetPosition", widgetPosition);
|
|
4710
4702
|
this.style.top = widgetPosition.y + "px";
|
|
4711
4703
|
this.style.left = widgetPosition.x + "px";
|
|
4712
4704
|
widget
|
|
@@ -4842,7 +4834,6 @@
|
|
|
4842
4834
|
_super.prototype.exit.call(this, domNode, element);
|
|
4843
4835
|
};
|
|
4844
4836
|
Popup.prototype.click = function (obj) {
|
|
4845
|
-
console.log("Clicked: " + obj.id);
|
|
4846
4837
|
};
|
|
4847
4838
|
return Popup;
|
|
4848
4839
|
}(common.HTMLWidget));
|