three-cad-viewer 1.5.9 → 1.6.2
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/three-cad-viewer.css +18 -2
- package/dist/three-cad-viewer.esm.css +18 -2
- package/dist/three-cad-viewer.esm.js +3127 -2802
- package/dist/three-cad-viewer.esm.min.css +18 -2
- package/dist/three-cad-viewer.esm.min.js +1 -1
- package/dist/three-cad-viewer.js +3127 -2802
- package/dist/three-cad-viewer.min.css +18 -2
- package/dist/three-cad-viewer.min.js +1 -1
- package/package.json +3 -3
- package/src/_version.js +1 -0
- package/src/bbox.js +146 -33
- package/src/camera.js +15 -0
- package/src/display.js +76 -14
- package/src/grid.js +7 -6
- package/src/info.js +10 -0
- package/src/nestedgroup.js +2 -11
- package/src/treeview.js +75 -7
- package/src/viewer.js +153 -54
|
@@ -30,6 +30,9 @@
|
|
|
30
30
|
--tcv-scrollbar-thumb: rgba(255, 255, 255, 0.2);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
.tcv_none {
|
|
34
|
+
display: none;
|
|
35
|
+
}
|
|
33
36
|
canvas {
|
|
34
37
|
outline: none !important;
|
|
35
38
|
}
|
|
@@ -149,11 +152,14 @@ canvas {
|
|
|
149
152
|
line-height: 14px;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
|
-
.tcv_small_table_row > td,
|
|
153
|
-
th {
|
|
155
|
+
.tcv_small_table_row > td, th {
|
|
154
156
|
padding-left: 6px;
|
|
155
157
|
}
|
|
156
158
|
|
|
159
|
+
.tcv_info_line {
|
|
160
|
+
margin: 4px;
|
|
161
|
+
}
|
|
162
|
+
|
|
157
163
|
.tcv_info_row {
|
|
158
164
|
vertical-align: top !important;
|
|
159
165
|
}
|
|
@@ -233,6 +239,7 @@ th {
|
|
|
233
239
|
bottom: 0px;
|
|
234
240
|
z-index: 100;
|
|
235
241
|
display: none;
|
|
242
|
+
font-size: 12px;
|
|
236
243
|
}
|
|
237
244
|
|
|
238
245
|
.tcv_cad_help_layout {
|
|
@@ -641,4 +648,13 @@ input[type="button"] {
|
|
|
641
648
|
margin-left: 6px;
|
|
642
649
|
font-size: 14px;
|
|
643
650
|
font-family: sans-serif;
|
|
651
|
+
user-select: none;
|
|
644
652
|
}
|
|
653
|
+
|
|
654
|
+
.tcv_tree_label:hover {
|
|
655
|
+
cursor: pointer;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.tcv_node_selected {
|
|
659
|
+
color: #308ee1;
|
|
660
|
+
}
|
|
@@ -30,6 +30,9 @@
|
|
|
30
30
|
--tcv-scrollbar-thumb: rgba(255, 255, 255, 0.2);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
.tcv_none {
|
|
34
|
+
display: none;
|
|
35
|
+
}
|
|
33
36
|
canvas {
|
|
34
37
|
outline: none !important;
|
|
35
38
|
}
|
|
@@ -149,11 +152,14 @@ canvas {
|
|
|
149
152
|
line-height: 14px;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
|
-
.tcv_small_table_row > td,
|
|
153
|
-
th {
|
|
155
|
+
.tcv_small_table_row > td, th {
|
|
154
156
|
padding-left: 6px;
|
|
155
157
|
}
|
|
156
158
|
|
|
159
|
+
.tcv_info_line {
|
|
160
|
+
margin: 4px;
|
|
161
|
+
}
|
|
162
|
+
|
|
157
163
|
.tcv_info_row {
|
|
158
164
|
vertical-align: top !important;
|
|
159
165
|
}
|
|
@@ -233,6 +239,7 @@ th {
|
|
|
233
239
|
bottom: 0px;
|
|
234
240
|
z-index: 100;
|
|
235
241
|
display: none;
|
|
242
|
+
font-size: 12px;
|
|
236
243
|
}
|
|
237
244
|
|
|
238
245
|
.tcv_cad_help_layout {
|
|
@@ -641,4 +648,13 @@ input[type="button"] {
|
|
|
641
648
|
margin-left: 6px;
|
|
642
649
|
font-size: 14px;
|
|
643
650
|
font-family: sans-serif;
|
|
651
|
+
user-select: none;
|
|
644
652
|
}
|
|
653
|
+
|
|
654
|
+
.tcv_tree_label:hover {
|
|
655
|
+
cursor: pointer;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.tcv_node_selected {
|
|
659
|
+
color: #308ee1;
|
|
660
|
+
}
|