canvasxpress-cli 50.7.4 → 50.9.5
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/cmds/io.js +9 -5
- package/package.json +1 -1
- package/src/canvasXpress.css +20 -0
- package/src/canvasXpress.js +13944 -13755
package/cmds/io.js
CHANGED
|
@@ -71,9 +71,14 @@ module.exports = async (obj) => {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
var clbk = function () {
|
|
74
|
-
var cx = CanvasXpress.instances[
|
|
74
|
+
var cx = CanvasXpress.instances[0];
|
|
75
|
+
var dt = arguments[0];
|
|
76
|
+
if (dt.config) {
|
|
77
|
+
dt.config.isNode = true;
|
|
78
|
+
}
|
|
79
|
+
cx.updateData(dt);
|
|
75
80
|
console.log(logStr);
|
|
76
|
-
exec(cx,
|
|
81
|
+
exec(cx, dt.renderTo);
|
|
77
82
|
}
|
|
78
83
|
|
|
79
84
|
var cx = CanvasXpress.instances[0];
|
|
@@ -95,9 +100,8 @@ module.exports = async (obj) => {
|
|
|
95
100
|
case 'csv':
|
|
96
101
|
case 'text':
|
|
97
102
|
case 'png':
|
|
98
|
-
|
|
99
|
-
cx.
|
|
100
|
-
cx.getDataFromURLOrString(obj.target || cx.target, obj.config, false, false, clbk);
|
|
103
|
+
console.log(logStr);
|
|
104
|
+
CanvasXpress.loadRemoteData(obj.target || cx.target, obj.input, obj.config, false, clbk);
|
|
101
105
|
return;
|
|
102
106
|
}
|
|
103
107
|
} catch (err) {
|
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -1573,6 +1573,25 @@ div.CanvasXpressToolbar svg.CanvasXpressToolbarImage {
|
|
|
1573
1573
|
margin: 5px 8px 0px 0px;
|
|
1574
1574
|
}
|
|
1575
1575
|
|
|
1576
|
+
/*************
|
|
1577
|
+
* Tooltip *
|
|
1578
|
+
*************/
|
|
1579
|
+
div.CanvasXpressAltTooltip {
|
|
1580
|
+
background-color: var(--cx-background-widgets-color);
|
|
1581
|
+
border: var(--cx-border);
|
|
1582
|
+
border-radius: 5px;
|
|
1583
|
+
box-shadow: 0 0 5px var(--cx-color-transparent);
|
|
1584
|
+
color: var(--cx-font-color);
|
|
1585
|
+
font: var(--cx-font);
|
|
1586
|
+
font-size: 12px;
|
|
1587
|
+
line-height: 100%;
|
|
1588
|
+
padding: 5px;
|
|
1589
|
+
position: absolute;
|
|
1590
|
+
display: none;
|
|
1591
|
+
text-wrap: nowrap;
|
|
1592
|
+
z-index: 1000000;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1576
1595
|
/******************
|
|
1577
1596
|
* Data Table DOE *
|
|
1578
1597
|
******************/
|
|
@@ -1805,6 +1824,7 @@ div.CanvasXpressTableCellLink {
|
|
|
1805
1824
|
position: relative;
|
|
1806
1825
|
text-overflow: ellipsis;
|
|
1807
1826
|
text-align: left;
|
|
1827
|
+
white-space: nowrap;
|
|
1808
1828
|
}
|
|
1809
1829
|
|
|
1810
1830
|
div.CanvasXpressTableCell:hover {
|