@hpcc-js/other 3.4.11 → 3.5.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/package.json +6 -6
- package/src/AutoCompleteText.css +32 -5
- package/src/CalendarHeatMap.css +1 -1
- package/src/Html.css +5 -5
- package/src/IconList.css +1 -1
- package/src/Legend.css +55 -36
- package/src/MorphText.css +1 -1
- package/src/Opportunity.css +30 -29
- package/src/Paginator.css +48 -37
- package/src/PropertyEditor.css +122 -73
- package/src/RadioCheckbox.css +1 -2
- package/src/Select.css +4 -5
- package/src/Table.css +44 -29
- package/src/ThemeEditor.css +140 -105
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/other",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "hpcc-js - Viz Other",
|
|
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.
|
|
41
|
-
"@hpcc-js/common": "^3.7.
|
|
42
|
-
"@hpcc-js/layout": "^3.5.
|
|
40
|
+
"@hpcc-js/api": "^3.4.12",
|
|
41
|
+
"@hpcc-js/common": "^3.7.2",
|
|
42
|
+
"@hpcc-js/layout": "^3.5.7"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@hpcc-js/esbuild-plugins": "^1.8.
|
|
45
|
+
"@hpcc-js/esbuild-plugins": "^1.8.4",
|
|
46
46
|
"d3-array": "^1",
|
|
47
47
|
"d3-collection": "^1",
|
|
48
48
|
"d3-format": "^1",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
68
68
|
},
|
|
69
69
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "04460c76008934053c9957c361693aac862ca7dc"
|
|
71
71
|
}
|
package/src/AutoCompleteText.css
CHANGED
|
@@ -11,11 +11,38 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.autocomplete-suggestions {
|
|
14
|
-
text-align: left;
|
|
14
|
+
text-align: left;
|
|
15
|
+
cursor: default;
|
|
16
|
+
border: 1px solid #ccc;
|
|
17
|
+
border-top: 0;
|
|
18
|
+
background: #fff;
|
|
19
|
+
box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
|
|
15
20
|
/* core styles should not be changed */
|
|
16
|
-
position: absolute;
|
|
21
|
+
position: absolute;
|
|
22
|
+
display: none;
|
|
23
|
+
z-index: 9999;
|
|
24
|
+
max-height: 254px;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
overflow-y: auto;
|
|
27
|
+
box-sizing: border-box;
|
|
17
28
|
}
|
|
18
|
-
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
|
|
19
|
-
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
|
|
20
|
-
.autocomplete-suggestion.selected { background: #f0f0f0; }
|
|
21
29
|
|
|
30
|
+
.autocomplete-suggestion {
|
|
31
|
+
position: relative;
|
|
32
|
+
padding: 0 .6em;
|
|
33
|
+
line-height: 23px;
|
|
34
|
+
white-space: nowrap;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
text-overflow: ellipsis;
|
|
37
|
+
font-size: 1.02em;
|
|
38
|
+
color: #333;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.autocomplete-suggestion b {
|
|
42
|
+
font-weight: normal;
|
|
43
|
+
color: #1f8dd6;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.autocomplete-suggestion.selected {
|
|
47
|
+
background: #f0f0f0;
|
|
48
|
+
}
|
package/src/CalendarHeatMap.css
CHANGED
package/src/Html.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.other_Html{
|
|
2
|
-
height:100%;
|
|
3
|
-
width:100%;
|
|
4
|
-
overflow-x:auto;
|
|
5
|
-
overflow-y:scroll;
|
|
1
|
+
.other_Html {
|
|
2
|
+
height: 100%;
|
|
3
|
+
width: 100%;
|
|
4
|
+
overflow-x: auto;
|
|
5
|
+
overflow-y: scroll;
|
|
6
6
|
}
|
package/src/IconList.css
CHANGED
package/src/Legend.css
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
.other_Legend .colorBlock{
|
|
2
|
-
width:10px;
|
|
3
|
-
height:10px;
|
|
1
|
+
.other_Legend .colorBlock {
|
|
2
|
+
width: 10px;
|
|
3
|
+
height: 10px;
|
|
4
4
|
}
|
|
5
|
-
|
|
5
|
+
|
|
6
|
+
.other_Legend>table,
|
|
7
|
+
.other_Legend>table td,
|
|
8
|
+
.other_Legend>table th {
|
|
6
9
|
border-collapse: collapse;
|
|
7
10
|
border-spacing: 0px;
|
|
8
11
|
}
|
|
9
|
-
|
|
12
|
+
|
|
13
|
+
.other_Table.other_Legend table {
|
|
10
14
|
border-spacing: 0;
|
|
11
15
|
}
|
|
12
|
-
|
|
16
|
+
|
|
17
|
+
.other_Table.other_Legend th,
|
|
18
|
+
.labels-wrapper th {
|
|
13
19
|
padding: 2px 5px;
|
|
14
20
|
background-color: transparent;
|
|
15
21
|
border-width: 1px;
|
|
@@ -18,69 +24,82 @@
|
|
|
18
24
|
color: #333;
|
|
19
25
|
white-space: nowrap;
|
|
20
26
|
cursor: default;
|
|
21
|
-
font-weight:normal;
|
|
22
|
-
text-align:left;
|
|
27
|
+
font-weight: normal;
|
|
28
|
+
text-align: left;
|
|
23
29
|
}
|
|
24
|
-
|
|
30
|
+
|
|
31
|
+
.other_Table.other_Legend tr {
|
|
25
32
|
background-color: transparent;
|
|
26
33
|
color: #333;
|
|
27
34
|
}
|
|
28
35
|
|
|
29
|
-
.other_Table.other_Legend .tableDiv tbody
|
|
36
|
+
.other_Table.other_Legend .tableDiv tbody>tr:nth-child(odd) {
|
|
30
37
|
background-color: unset;
|
|
31
|
-
color:black;
|
|
38
|
+
color: black;
|
|
32
39
|
}
|
|
33
|
-
|
|
34
|
-
.other_Table.other_Legend .tableDiv tbody
|
|
40
|
+
|
|
41
|
+
.other_Table.other_Legend .tableDiv tbody>tr:hover,
|
|
42
|
+
.other_Table.other_Legend .tableDiv tbody>tr.hover,
|
|
35
43
|
.rows-wrapper table tbody tr.hover {
|
|
36
44
|
background-color: #bfd7e7;
|
|
37
45
|
color: white;
|
|
38
46
|
}
|
|
39
47
|
|
|
40
48
|
|
|
41
|
-
.other_Table.other_Legend thead
|
|
49
|
+
.other_Table.other_Legend thead>tr:hover {
|
|
42
50
|
background-color: transparent;
|
|
43
51
|
}
|
|
44
|
-
|
|
52
|
+
|
|
53
|
+
.other_Table.other_Legend tbody>tr:hover,
|
|
54
|
+
.other_Table.other_Legend tbody>tr.hover,
|
|
55
|
+
.rows-wrapper tbody tr.hover {
|
|
45
56
|
background-color: #EEE;
|
|
46
57
|
}
|
|
47
|
-
|
|
58
|
+
|
|
59
|
+
.other_Table.other_Legend td,
|
|
60
|
+
.rows-wrapper td {
|
|
48
61
|
border-width: 0px;
|
|
49
62
|
padding: 2px 5px;
|
|
50
63
|
white-space: nowrap;
|
|
51
64
|
box-sizing: border-box;
|
|
52
65
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
66
|
+
|
|
67
|
+
.other_Legend>.tableDiv>table>tbody>tr:hover {
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
color: #000;
|
|
70
|
+
background-color: #DDD;
|
|
57
71
|
}
|
|
72
|
+
|
|
58
73
|
.other_Legend.horiz-legend .tableDiv {
|
|
59
|
-
width: 100
|
|
74
|
+
width: 100% !important;
|
|
60
75
|
text-align: left;
|
|
61
76
|
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
77
|
+
|
|
78
|
+
.other_Legend.horiz-legend .tableDiv>table {
|
|
79
|
+
display: inline-block;
|
|
80
|
+
width: 100% !important;
|
|
81
|
+
top: 0px !important;
|
|
82
|
+
left: 0px !important;
|
|
67
83
|
}
|
|
84
|
+
|
|
68
85
|
.other_Legend.horiz-legend thead,
|
|
69
86
|
.other_Legend.horiz-legend tbody,
|
|
70
|
-
.other_Legend.horiz-legend tr
|
|
71
|
-
{
|
|
87
|
+
.other_Legend.horiz-legend tr {
|
|
72
88
|
display: inline-block;
|
|
73
89
|
}
|
|
90
|
+
|
|
74
91
|
.other_Legend.horiz-legend td,
|
|
75
|
-
.other_Legend.horiz-legend td
|
|
76
|
-
display:inline-block;
|
|
77
|
-
white-space:nowrap;
|
|
92
|
+
.other_Legend.horiz-legend td>div {
|
|
93
|
+
display: inline-block;
|
|
94
|
+
white-space: nowrap;
|
|
78
95
|
}
|
|
79
|
-
|
|
96
|
+
|
|
97
|
+
.other_Legend.horiz-legend tr {
|
|
80
98
|
white-space: nowrap;
|
|
81
99
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
100
|
+
|
|
101
|
+
.other_Legend.horiz-legend tbody {
|
|
102
|
+
display: inline-block;
|
|
103
|
+
width: 100% !important;
|
|
104
|
+
text-align: center;
|
|
86
105
|
}
|
package/src/MorphText.css
CHANGED
package/src/Opportunity.css
CHANGED
|
@@ -1,75 +1,76 @@
|
|
|
1
1
|
.graph_Opportunity {
|
|
2
|
-
transform: translate(20px,20px)scale(1) !important;
|
|
2
|
+
transform: translate(20px, 20px)scale(1) !important;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.graph_Opportunity .group {
|
|
6
6
|
stroke-width: 1.0;
|
|
7
|
-
stroke
|
|
8
|
-
fill
|
|
7
|
+
stroke: #555;
|
|
8
|
+
fill: #FEFEFE;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.graph_Opportunity .group_headings {
|
|
12
|
-
font-family: "Helvetica","Arial",sans-serif;
|
|
12
|
+
font-family: "Helvetica", "Arial", sans-serif;
|
|
13
13
|
font-size: 14px;
|
|
14
14
|
font-weight: 700;
|
|
15
15
|
line-height: 20px;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.graph_Opportunity .node_prev_rect {
|
|
19
|
-
fill:white;
|
|
20
|
-
stroke-width:2;
|
|
21
|
-
stroke
|
|
22
|
-
stroke-dasharray:3,3;
|
|
23
|
-
|
|
19
|
+
fill: white;
|
|
20
|
+
stroke-width: 2;
|
|
21
|
+
stroke: #000;
|
|
22
|
+
stroke-dasharray: 3, 3;
|
|
23
|
+
opacity: 0.6;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.graph_Opportunity .node_rev_change {
|
|
27
|
-
fill:white;
|
|
27
|
+
fill: white;
|
|
28
28
|
}
|
|
29
|
+
|
|
29
30
|
.graph_Opportunity .node_rev_change_text {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
font-size: 18px;
|
|
32
|
+
font-family: Arial;
|
|
33
|
+
color: black;
|
|
34
|
+
font-weight: bold;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
.graph_Opportunity .node_date_change {
|
|
37
|
-
fill:white;
|
|
38
|
+
fill: white;
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
.graph_Opportunity .node_date_change_text {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
font-size: 18px;
|
|
43
|
+
font-family: Arial;
|
|
44
|
+
color: black;
|
|
45
|
+
font-weight: bold;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
.graph_Opportunity .node_prev_text {
|
|
48
|
-
font-size:9px;
|
|
49
|
-
font-family:Arial;
|
|
50
|
-
opacity:0.6;
|
|
49
|
+
font-size: 9px;
|
|
50
|
+
font-family: Arial;
|
|
51
|
+
opacity: 0.6;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
.graph_Opportunity .node_cur_rect {
|
|
54
|
-
stroke-width:2;
|
|
55
|
-
stroke
|
|
55
|
+
stroke-width: 2;
|
|
56
|
+
stroke: #000;
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
.graph_Opportunity .node_cur_text {
|
|
59
|
-
font-size:9px;
|
|
60
|
-
font-family:Arial;
|
|
60
|
+
font-size: 9px;
|
|
61
|
+
font-family: Arial;
|
|
61
62
|
text-decoration: underline;
|
|
62
63
|
}
|
|
63
64
|
|
|
64
65
|
.graph_Opportunity .arrowhead {
|
|
65
|
-
refX:6;
|
|
66
|
+
refX: 6;
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
.graph_Opportunity-tooltip.tooltip {
|
|
69
70
|
position: absolute;
|
|
70
71
|
text-align: left;
|
|
71
|
-
width:350px;
|
|
72
|
-
height: 135px;
|
|
72
|
+
width: 350px;
|
|
73
|
+
height: 135px;
|
|
73
74
|
padding: 10px;
|
|
74
75
|
padding-top: 15px;
|
|
75
76
|
font: 14px arial;
|
package/src/Paginator.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.other_Paginator {
|
|
2
2
|
display: block;
|
|
3
|
-
position:absolute;
|
|
3
|
+
position: absolute;
|
|
4
4
|
white-space: nowrap;
|
|
5
5
|
}
|
|
6
6
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
padding: 0px;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
.other_Paginator .pagination
|
|
14
|
+
.other_Paginator .pagination>li {
|
|
15
15
|
display: inline;
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
color: #337ab7;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
.other_Paginator .pagination
|
|
38
|
-
.other_Paginator .pagination
|
|
39
|
-
.other_Paginator .pagination
|
|
37
|
+
.other_Paginator .pagination>li>a,
|
|
38
|
+
.other_Paginator .pagination>div,
|
|
39
|
+
.other_Paginator .pagination>li>span {
|
|
40
40
|
position: relative;
|
|
41
41
|
float: left;
|
|
42
42
|
padding: 6px 12px;
|
|
@@ -47,75 +47,86 @@
|
|
|
47
47
|
background-color: #fff;
|
|
48
48
|
border: 1px solid #ddd;
|
|
49
49
|
}
|
|
50
|
-
|
|
51
|
-
.other_Paginator .pagination
|
|
50
|
+
|
|
51
|
+
.other_Paginator .pagination>li:first-child>a,
|
|
52
|
+
.other_Paginator .pagination>li:first-child>span {
|
|
52
53
|
margin-left: 0;
|
|
53
54
|
border-top-left-radius: 4px;
|
|
54
55
|
border-bottom-left-radius: 4px;
|
|
55
56
|
}
|
|
56
|
-
|
|
57
|
-
.other_Paginator .pagination
|
|
57
|
+
|
|
58
|
+
.other_Paginator .pagination>li:last-child>a,
|
|
59
|
+
.other_Paginator .pagination>li:last-child>span {
|
|
58
60
|
border-top-right-radius: 4px;
|
|
59
61
|
border-bottom-right-radius: 4px;
|
|
60
62
|
}
|
|
61
|
-
|
|
62
|
-
.other_Paginator .pagination
|
|
63
|
-
.other_Paginator .pagination
|
|
64
|
-
.other_Paginator .pagination
|
|
63
|
+
|
|
64
|
+
.other_Paginator .pagination>li>a:hover,
|
|
65
|
+
.other_Paginator .pagination>li>span:hover,
|
|
66
|
+
.other_Paginator .pagination>li>a:focus,
|
|
67
|
+
.other_Paginator .pagination>li>span:focus {
|
|
65
68
|
color: #23527c;
|
|
66
69
|
background-color: #eee;
|
|
67
70
|
border-color: #ddd;
|
|
68
71
|
}
|
|
69
|
-
|
|
70
|
-
.other_Paginator .pagination
|
|
71
|
-
.other_Paginator .pagination
|
|
72
|
-
.other_Paginator .pagination
|
|
73
|
-
.other_Paginator .pagination
|
|
74
|
-
.other_Paginator .pagination
|
|
72
|
+
|
|
73
|
+
.other_Paginator .pagination>.active>a,
|
|
74
|
+
.other_Paginator .pagination>.active>span,
|
|
75
|
+
.other_Paginator .pagination>.active>a:hover,
|
|
76
|
+
.other_Paginator .pagination>.active>span:hover,
|
|
77
|
+
.other_Paginator .pagination>.active>a:focus,
|
|
78
|
+
.other_Paginator .pagination>.active>span:focus {
|
|
75
79
|
z-index: 2;
|
|
76
80
|
color: #fff;
|
|
77
81
|
cursor: default;
|
|
78
82
|
background-color: #337ab7;
|
|
79
83
|
border-color: #337ab7;
|
|
80
84
|
}
|
|
81
|
-
|
|
82
|
-
.other_Paginator .pagination
|
|
83
|
-
.other_Paginator .pagination
|
|
84
|
-
.other_Paginator .pagination
|
|
85
|
-
.other_Paginator .pagination
|
|
86
|
-
.other_Paginator .pagination
|
|
85
|
+
|
|
86
|
+
.other_Paginator .pagination>.disabled>span,
|
|
87
|
+
.other_Paginator .pagination>.disabled>span:hover,
|
|
88
|
+
.other_Paginator .pagination>.disabled>span:focus,
|
|
89
|
+
.other_Paginator .pagination>.disabled>a,
|
|
90
|
+
.other_Paginator .pagination>.disabled>a:hover,
|
|
91
|
+
.other_Paginator .pagination>.disabled>a:focus {
|
|
87
92
|
color: #777;
|
|
88
93
|
cursor: not-allowed;
|
|
89
94
|
background-color: #fff;
|
|
90
95
|
border-color: #ddd;
|
|
91
96
|
}
|
|
92
|
-
|
|
93
|
-
.other_Paginator .pagination-lg
|
|
97
|
+
|
|
98
|
+
.other_Paginator .pagination-lg>li>a,
|
|
99
|
+
.other_Paginator .pagination-lg>li>span {
|
|
94
100
|
padding: 10px 16px;
|
|
95
101
|
font-size: 18px;
|
|
96
102
|
}
|
|
97
|
-
|
|
98
|
-
.other_Paginator .pagination-lg
|
|
103
|
+
|
|
104
|
+
.other_Paginator .pagination-lg>li:first-child>a,
|
|
105
|
+
.other_Paginator .pagination-lg>li:first-child>span {
|
|
99
106
|
border-top-left-radius: 6px;
|
|
100
107
|
border-bottom-left-radius: 6px;
|
|
101
108
|
}
|
|
102
|
-
|
|
103
|
-
.other_Paginator .pagination-lg
|
|
109
|
+
|
|
110
|
+
.other_Paginator .pagination-lg>li:last-child>a,
|
|
111
|
+
.other_Paginator .pagination-lg>li:last-child>span {
|
|
104
112
|
border-top-right-radius: 6px;
|
|
105
113
|
border-bottom-right-radius: 6px;
|
|
106
114
|
}
|
|
107
|
-
|
|
108
|
-
.other_Paginator .pagination-sm
|
|
115
|
+
|
|
116
|
+
.other_Paginator .pagination-sm>li>a,
|
|
117
|
+
.other_Paginator .pagination-sm>li>span {
|
|
109
118
|
padding: 5px 10px;
|
|
110
119
|
font-size: 12px;
|
|
111
120
|
}
|
|
112
|
-
|
|
113
|
-
.other_Paginator .pagination-sm
|
|
121
|
+
|
|
122
|
+
.other_Paginator .pagination-sm>li:first-child>a,
|
|
123
|
+
.other_Paginator .pagination-sm>li:first-child>span {
|
|
114
124
|
border-top-left-radius: 3px;
|
|
115
125
|
border-bottom-left-radius: 3px;
|
|
116
126
|
}
|
|
117
|
-
|
|
118
|
-
.other_Paginator .pagination-sm
|
|
127
|
+
|
|
128
|
+
.other_Paginator .pagination-sm>li:last-child>a,
|
|
129
|
+
.other_Paginator .pagination-sm>li:last-child>span {
|
|
119
130
|
border-top-right-radius: 3px;
|
|
120
131
|
border-bottom-right-radius: 3px;
|
|
121
132
|
}
|