@hpcc-js/html 3.3.10 → 3.3.12

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/html",
3
- "version": "3.3.10",
3
+ "version": "3.3.12",
4
4
  "description": "hpcc-js - Viz HTML",
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/common": "^3.7.0",
41
- "@hpcc-js/react": "^3.4.10",
42
- "@hpcc-js/util": "^3.4.8"
40
+ "@hpcc-js/common": "^3.7.2",
41
+ "@hpcc-js/react": "^3.4.12",
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
  "d3-format": "^1",
47
47
  "d3-selection": "^1"
48
48
  },
@@ -57,5 +57,5 @@
57
57
  "url": "https://github.com/hpcc-systems/Visualization/issues"
58
58
  },
59
59
  "homepage": "https://github.com/hpcc-systems/Visualization",
60
- "gitHead": "0c1e3df0f2ae628352200f8f8fd6b91b976f69c3"
60
+ "gitHead": "04460c76008934053c9957c361693aac862ca7dc"
61
61
  }
package/src/TitleBar.css CHANGED
@@ -1,12 +1,15 @@
1
- #wrap
2
- {
1
+ #wrap {
3
2
  width: 100%;
4
3
  }
5
- #left, #right {padding:5px;}
4
+
5
+ #left,
6
+ #right {
7
+ padding: 5px;
8
+ }
6
9
 
7
10
  #left {
8
- background-color:red;
9
- text-align:left;
11
+ background-color: red;
12
+ text-align: left;
10
13
  display: block;
11
14
  text-overflow: ellipsis;
12
15
  white-space: nowrap;
@@ -14,62 +17,68 @@
14
17
  }
15
18
 
16
19
  #right {
17
- background-color:orange;
18
- float:right;
19
- text-align:right;
20
+ background-color: orange;
21
+ float: right;
22
+ text-align: right;
20
23
  white-space: nowrap;
21
24
  }
22
25
 
23
- .html_TitleBar > .main {
26
+ .html_TitleBar>.main {
24
27
  width: 100%;
25
28
  display: block;
26
29
  }
27
30
 
28
31
  .html_TitleBar .title {
29
- padding:4px;
30
- text-align:left;
32
+ padding: 4px;
33
+ text-align: left;
31
34
  display: block;
32
35
  text-overflow: ellipsis;
33
36
  white-space: nowrap;
34
37
  overflow: hidden;
35
- font-size:20px;
38
+ font-size: 20px;
36
39
  font-weight: bold;
37
40
  }
38
41
 
39
42
  .html_TitleBar .icon-bar {
40
- padding:4px;
43
+ padding: 4px;
41
44
  float: right;
42
- text-align:right;
45
+ text-align: right;
43
46
  white-space: nowrap;
44
47
  line-height: 28px;
45
48
  }
46
49
 
47
50
  .html_TitleBar .icon-bar-item {
48
- display: inline;
51
+ display: inline;
49
52
  }
50
53
 
51
- .html_TitleBar .icon-bar-item > div {
52
- display: inline;
54
+ .html_TitleBar .icon-bar-item>div {
55
+ display: inline;
53
56
  }
54
57
 
55
58
  .html_TitleBar .icon-bar a {
56
- text-align: center; /* Center-align text */
59
+ text-align: center;
60
+ /* Center-align text */
57
61
  padding-top: 4px;
58
62
  padding-bottom: 4px;
59
- transition: all 0.3s ease; /* Add transition for hover effects */
60
- color: darkgray; /* White text color */
63
+ transition: all 0.3s ease;
64
+ /* Add transition for hover effects */
65
+ color: darkgray;
66
+ /* White text color */
61
67
  }
62
68
 
63
69
  .html_TitleBar .icon-bar a:hover {
64
- background-color: whitesmoke; /* Add a hover color */
70
+ background-color: whitesmoke;
71
+ /* Add a hover color */
65
72
  }
66
73
 
67
74
  .html_TitleBar .icon-bar a.selected {
68
- background-color: #efe5e5; /* Add a hover color */
75
+ background-color: #efe5e5;
76
+ /* Add a hover color */
69
77
  }
70
78
 
71
79
  .html_TitleBar .icon-bar a.spacer {
72
- text-align: center; /* Center-align text */
80
+ text-align: center;
81
+ /* Center-align text */
73
82
  padding-top: 2px;
74
83
  padding-left: 8px;
75
84
  padding-bottom: 0px;
@@ -81,5 +90,6 @@
81
90
  }
82
91
 
83
92
  .html_TitleBar .icon-bar .active {
84
- background-color: #4CAF50; /* Add an active/current color */
93
+ background-color: #4CAF50;
94
+ /* Add an active/current color */
85
95
  }