@webviz/well-log-viewer 1.7.2 → 1.7.4
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": "@webviz/well-log-viewer",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"license": "MPL-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@emerson-eps/color-tables": "^0.4.71",
|
|
25
|
-
"@equinor/videx-wellog": "^0.9.
|
|
25
|
+
"@equinor/videx-wellog": "^0.9.4",
|
|
26
26
|
"@webviz/wsc-common": "*",
|
|
27
27
|
"convert-units": "^2.3.4",
|
|
28
28
|
"d3": "^7.8.2"
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"react-dom": "^17 || ^18"
|
|
34
34
|
},
|
|
35
35
|
"volta": {
|
|
36
|
-
"node": "18.
|
|
36
|
+
"node": "18.19.0"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
.side-panel {
|
|
3
|
-
min-width: 255px;
|
|
4
|
-
max-width: 255px;
|
|
5
|
-
font-size: 12px;
|
|
6
|
-
display: flex;
|
|
7
|
-
flex-direction: column;
|
|
8
|
-
height: 100%;
|
|
9
|
-
|
|
10
|
-
/*.axis-selector {
|
|
11
|
-
legend {
|
|
12
|
-
}
|
|
13
|
-
}*/
|
|
14
|
-
.readout {
|
|
15
|
-
overflow-y: auto;
|
|
16
|
-
overflow-x: hidden;
|
|
17
|
-
|
|
18
|
-
/*legend {
|
|
19
|
-
}*/
|
|
20
|
-
table {
|
|
21
|
-
border-spacing: 0px;
|
|
22
|
-
width: 100%;
|
|
23
|
-
|
|
24
|
-
.group-row {
|
|
25
|
-
cursor: pointer;
|
|
26
|
-
.group-row-name {
|
|
27
|
-
font-weight: bold
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.row-info {
|
|
32
|
-
font-size: smaller;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.row-name {
|
|
36
|
-
min-width: 110px;
|
|
37
|
-
max-width: 110px;
|
|
38
|
-
white-space: nowrap;
|
|
39
|
-
text-overflow: ellipsis;
|
|
40
|
-
overflow: hidden;
|
|
41
|
-
&:before {
|
|
42
|
-
content: attr(title);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.row-value {
|
|
47
|
-
min-width: 50px;
|
|
48
|
-
max-width: 50px;
|
|
49
|
-
padding-left: 0.5em;
|
|
50
|
-
text-align: right;
|
|
51
|
-
white-space: nowrap;
|
|
52
|
-
text-overflow: ellipsis;
|
|
53
|
-
overflow: hidden;
|
|
54
|
-
&:before {
|
|
55
|
-
content: attr(title);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.row-units {
|
|
60
|
-
min-width: 35px;
|
|
61
|
-
max-width: 35px;
|
|
62
|
-
padding-left: 0.5em;
|
|
63
|
-
white-space: nowrap;
|
|
64
|
-
text-overflow: ellipsis;
|
|
65
|
-
overflow: hidden;
|
|
66
|
-
&:before {
|
|
67
|
-
content: attr(title);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
.zoom {
|
|
73
|
-
padding-top: 5px;
|
|
74
|
-
padding-left: 10px;
|
|
75
|
-
display: flex;
|
|
76
|
-
.zoom-label {
|
|
77
|
-
padding-top: 6px;
|
|
78
|
-
padding-right: 8px;
|
|
79
|
-
}
|
|
80
|
-
.zoom-value {
|
|
81
|
-
flex: 1 1 100px;
|
|
82
|
-
padding: 0 20px 0 10px;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
.scale {
|
|
86
|
-
padding-left: 10px;
|
|
87
|
-
display: flex;
|
|
88
|
-
.scale-label {
|
|
89
|
-
padding-top: 4px;
|
|
90
|
-
padding-right: 8px;
|
|
91
|
-
}
|
|
92
|
-
.scale-value {
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|