@hpcc-js/chart 3.6.6 → 3.7.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/chart",
3
- "version": "3.6.6",
3
+ "version": "3.7.1",
4
4
  "description": "hpcc-js - Viz Chart",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.cjs",
@@ -37,12 +37,12 @@
37
37
  "update-major": "npx --yes npm-check-updates -u"
38
38
  },
39
39
  "dependencies": {
40
- "@hpcc-js/api": "^3.4.10",
41
- "@hpcc-js/common": "^3.7.0",
42
- "@hpcc-js/util": "^3.4.8"
40
+ "@hpcc-js/api": "^3.4.12",
41
+ "@hpcc-js/common": "^3.7.2",
42
+ "@hpcc-js/util": "^3.5.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@hpcc-js/esbuild-plugins": "^1.8.3",
45
+ "@hpcc-js/esbuild-plugins": "^1.8.4",
46
46
  "@types/d3-shape": "1.3.12",
47
47
  "@types/d3-transition": "1.3.6",
48
48
  "d3-array": "^1",
@@ -76,5 +76,5 @@
76
76
  "url": "https://github.com/hpcc-systems/Visualization/issues"
77
77
  },
78
78
  "homepage": "https://github.com/hpcc-systems/Visualization",
79
- "gitHead": "0c1e3df0f2ae628352200f8f8fd6b91b976f69c3"
79
+ "gitHead": "04460c76008934053c9957c361693aac862ca7dc"
80
80
  }
package/src/Axis.css CHANGED
@@ -3,7 +3,7 @@
3
3
  font: 10px sans-serif;
4
4
  }
5
5
 
6
- .chart_Axis .axis .tick > text {
6
+ .chart_Axis .axis .tick>text {
7
7
  font: 10px sans-serif;
8
8
  }
9
9
 
@@ -13,22 +13,24 @@
13
13
  stroke: black;
14
14
  }
15
15
 
16
- .chart_Axis .guide path.domain
17
- {
16
+ .chart_Axis .guide path.domain {
18
17
  fill: none;
19
18
  stroke: none;
20
19
  }
20
+
21
21
  .chart_Axis .guide .tick line {
22
22
  fill: none;
23
23
  stroke: lightgrey;
24
24
  opacity: 0.7;
25
25
  }
26
+
26
27
  .chart_Axis .guide .tick.guide-0 line {
27
28
  stroke: black;
28
29
  stroke-width: 1;
29
30
  stroke-dasharray: 3 5;
30
31
  }
32
+
31
33
  .chart_Axis line,
32
- .chart_Axis path{
34
+ .chart_Axis path {
33
35
  shape-rendering: crispEdges;
34
- }
36
+ }
package/src/Bullet.css CHANGED
@@ -57,4 +57,4 @@
57
57
 
58
58
  .chart_Bullet .bullet .subtitle {
59
59
  fill: #999;
60
- }
60
+ }
package/src/HexBin.css CHANGED
@@ -6,4 +6,4 @@
6
6
 
7
7
  .chart_HexBin .hexagon.selected {
8
8
  stroke: red;
9
- }
9
+ }
package/src/Line.css CHANGED
@@ -2,5 +2,4 @@
2
2
  fill: none;
3
3
  stroke: steelblue;
4
4
  stroke-width: 1.5px;
5
- }
6
-
5
+ }
package/src/Radar.css CHANGED
@@ -12,4 +12,4 @@
12
12
  .chart_Radar .point .pointSelection.selected {
13
13
  fill: none;
14
14
  stroke: red;
15
- }
15
+ }
package/src/Summary.css CHANGED
@@ -24,7 +24,7 @@
24
24
  .chart_Summary .bgIcon {
25
25
  position: relative;
26
26
  }
27
-
27
+
28
28
  .chart_Summary .content {
29
29
  float: left;
30
30
  width: 100%;
@@ -39,18 +39,18 @@
39
39
  }
40
40
 
41
41
  .chart_Summary .content .text {
42
- padding-left: 10px;
42
+ padding-left: 10px;
43
43
  }
44
44
 
45
45
  .chart_Summary .content .more {
46
46
  position: absolute;
47
- bottom:0px;
47
+ bottom: 0px;
48
48
  width: 100%;
49
49
  height: 3em;
50
50
  line-height: 3em;
51
51
  }
52
52
 
53
53
  .chart_Summary .content .more i {
54
- padding-left: 10px;
55
- padding-right: 0.5em;
56
- }
54
+ padding-left: 10px;
55
+ padding-right: 0.5em;
56
+ }
package/src/WordCloud.css CHANGED
@@ -1,3 +1,3 @@
1
1
  .other_Wordcloud text {
2
2
  cursor: pointer;
3
- }
3
+ }
package/src/XYAxis.css CHANGED
@@ -3,12 +3,12 @@
3
3
  font: 10px sans-serif;
4
4
  }
5
5
 
6
- .chart_XYAxis .tick > text {
6
+ .chart_XYAxis .tick>text {
7
7
  font: 10px sans-serif;
8
8
  }
9
9
 
10
10
  .chart_XYAxis .focus .chart_Axis.value .tick {
11
- visibility:hidden;
11
+ visibility: hidden;
12
12
  }
13
13
 
14
14
  .chart_XYAxis .axis path,
@@ -36,6 +36,6 @@
36
36
  }
37
37
 
38
38
  .chart_XYAxis .brush path.handle--custom {
39
- fill: #eee;
40
- stroke: #666;
41
- }
39
+ fill: #eee;
40
+ stroke: #666;
41
+ }