three-cad-viewer 1.5.9 → 1.6.0
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 +15 -2
- package/dist/three-cad-viewer.esm.css +15 -2
- package/dist/three-cad-viewer.esm.js +420 -116
- package/dist/three-cad-viewer.esm.min.css +15 -2
- package/dist/three-cad-viewer.esm.min.js +1 -1
- package/dist/three-cad-viewer.js +420 -116
- package/dist/three-cad-viewer.min.css +15 -2
- package/dist/three-cad-viewer.min.js +1 -1
- package/package.json +2 -2
- package/src/_version.js +1 -0
- package/src/bbox.js +146 -33
- package/src/display.js +49 -19
- 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 +123 -29
|
@@ -149,11 +149,14 @@ canvas {
|
|
|
149
149
|
line-height: 14px;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
.tcv_small_table_row > td,
|
|
153
|
-
th {
|
|
152
|
+
.tcv_small_table_row > td, th {
|
|
154
153
|
padding-left: 6px;
|
|
155
154
|
}
|
|
156
155
|
|
|
156
|
+
.tcv_info_line {
|
|
157
|
+
margin: 4px;
|
|
158
|
+
}
|
|
159
|
+
|
|
157
160
|
.tcv_info_row {
|
|
158
161
|
vertical-align: top !important;
|
|
159
162
|
}
|
|
@@ -233,6 +236,7 @@ th {
|
|
|
233
236
|
bottom: 0px;
|
|
234
237
|
z-index: 100;
|
|
235
238
|
display: none;
|
|
239
|
+
font-size: 12px;
|
|
236
240
|
}
|
|
237
241
|
|
|
238
242
|
.tcv_cad_help_layout {
|
|
@@ -641,4 +645,13 @@ input[type="button"] {
|
|
|
641
645
|
margin-left: 6px;
|
|
642
646
|
font-size: 14px;
|
|
643
647
|
font-family: sans-serif;
|
|
648
|
+
user-select: none;
|
|
644
649
|
}
|
|
650
|
+
|
|
651
|
+
.tcv_tree_label:hover {
|
|
652
|
+
cursor: pointer;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.tcv_node_selected {
|
|
656
|
+
color: #308ee1;
|
|
657
|
+
}
|
|
@@ -149,11 +149,14 @@ canvas {
|
|
|
149
149
|
line-height: 14px;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
.tcv_small_table_row > td,
|
|
153
|
-
th {
|
|
152
|
+
.tcv_small_table_row > td, th {
|
|
154
153
|
padding-left: 6px;
|
|
155
154
|
}
|
|
156
155
|
|
|
156
|
+
.tcv_info_line {
|
|
157
|
+
margin: 4px;
|
|
158
|
+
}
|
|
159
|
+
|
|
157
160
|
.tcv_info_row {
|
|
158
161
|
vertical-align: top !important;
|
|
159
162
|
}
|
|
@@ -233,6 +236,7 @@ th {
|
|
|
233
236
|
bottom: 0px;
|
|
234
237
|
z-index: 100;
|
|
235
238
|
display: none;
|
|
239
|
+
font-size: 12px;
|
|
236
240
|
}
|
|
237
241
|
|
|
238
242
|
.tcv_cad_help_layout {
|
|
@@ -641,4 +645,13 @@ input[type="button"] {
|
|
|
641
645
|
margin-left: 6px;
|
|
642
646
|
font-size: 14px;
|
|
643
647
|
font-family: sans-serif;
|
|
648
|
+
user-select: none;
|
|
644
649
|
}
|
|
650
|
+
|
|
651
|
+
.tcv_tree_label:hover {
|
|
652
|
+
cursor: pointer;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.tcv_node_selected {
|
|
656
|
+
color: #308ee1;
|
|
657
|
+
}
|