three-cad-viewer 1.3.3 → 1.4.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 +26 -4
- package/dist/three-cad-viewer.esm.css +26 -4
- package/dist/three-cad-viewer.esm.js +286 -50
- package/dist/three-cad-viewer.esm.min.css +26 -4
- package/dist/three-cad-viewer.esm.min.js +1 -1
- package/dist/three-cad-viewer.js +286 -50
- package/dist/three-cad-viewer.min.css +26 -4
- package/dist/three-cad-viewer.min.js +1 -1
- package/package.json +1 -1
- package/src/animation.js +20 -6
- package/src/display.js +162 -31
- package/src/nestedgroup.js +1 -1
- package/src/treeview.js +57 -6
- package/src/viewer.js +49 -8
|
@@ -58,6 +58,12 @@ canvas {
|
|
|
58
58
|
margin: 2px;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
.tcv_cad_tree_toggles {
|
|
62
|
+
text-align: right;
|
|
63
|
+
margin-right: 0px;
|
|
64
|
+
margin-bottom: 3px;
|
|
65
|
+
}
|
|
66
|
+
|
|
61
67
|
.tcv_cad_tree {
|
|
62
68
|
display: flex;
|
|
63
69
|
flex-direction: column;
|
|
@@ -148,6 +154,10 @@ th {
|
|
|
148
154
|
z-index: 100;
|
|
149
155
|
}
|
|
150
156
|
|
|
157
|
+
.tcv_animation_slider {
|
|
158
|
+
width: 120px !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
151
161
|
.tcv_cad_animation {
|
|
152
162
|
height: 36px;
|
|
153
163
|
background-color: var(--tcv-bg-color);
|
|
@@ -175,7 +185,8 @@ th {
|
|
|
175
185
|
|
|
176
186
|
.tcv_cad_help_layout {
|
|
177
187
|
border-collapse: separate;
|
|
178
|
-
border-spacing: 4px;
|
|
188
|
+
border-spacing: 4px;
|
|
189
|
+
}
|
|
179
190
|
|
|
180
191
|
.tcv_round {
|
|
181
192
|
box-sizing: border-box;
|
|
@@ -212,6 +223,14 @@ th {
|
|
|
212
223
|
padding: 0px;
|
|
213
224
|
}
|
|
214
225
|
|
|
226
|
+
.tcv_small_btn {
|
|
227
|
+
width: 14px !important;
|
|
228
|
+
height: 14px !important;
|
|
229
|
+
font-size: 11px !important;
|
|
230
|
+
color: var(--tcv-font-color);
|
|
231
|
+
border: 1px solid var(--tcv-bg-highligth-color);
|
|
232
|
+
}
|
|
233
|
+
|
|
215
234
|
.tcv_btn:hover {
|
|
216
235
|
box-shadow: 1px 1px 1px 0 var(--tcv-shadow);
|
|
217
236
|
background-color: var(--tcv-bg-highligth-color);
|
|
@@ -242,7 +261,7 @@ input[type="button"] {
|
|
|
242
261
|
display: inline-block;
|
|
243
262
|
padding: 0px;
|
|
244
263
|
border: none;
|
|
245
|
-
margin-bottom: 6px;
|
|
264
|
+
/* margin-bottom: 6px; */
|
|
246
265
|
background-color: var(--tcv-bg-color);
|
|
247
266
|
color: var(--tcv-font-color);
|
|
248
267
|
font-size: 14px;
|
|
@@ -315,6 +334,10 @@ input[type="button"] {
|
|
|
315
334
|
margin-bottom: 10px;
|
|
316
335
|
}
|
|
317
336
|
|
|
337
|
+
.tcv_cad_clip_container {
|
|
338
|
+
margin-top: 6px;
|
|
339
|
+
}
|
|
340
|
+
|
|
318
341
|
.tcv_clip_checks {
|
|
319
342
|
margin-top: 20px;
|
|
320
343
|
}
|
|
@@ -338,9 +361,8 @@ input[type="button"] {
|
|
|
338
361
|
transition: opacity 0.2s;
|
|
339
362
|
}
|
|
340
363
|
|
|
341
|
-
.
|
|
364
|
+
.tcv_clip_slider::-webkit-slider-thumb {
|
|
342
365
|
-webkit-appearance: none;
|
|
343
|
-
appearance: none;
|
|
344
366
|
width: 12px;
|
|
345
367
|
height: 12px;
|
|
346
368
|
border-radius: 50%;
|
|
@@ -58,6 +58,12 @@ canvas {
|
|
|
58
58
|
margin: 2px;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
.tcv_cad_tree_toggles {
|
|
62
|
+
text-align: right;
|
|
63
|
+
margin-right: 0px;
|
|
64
|
+
margin-bottom: 3px;
|
|
65
|
+
}
|
|
66
|
+
|
|
61
67
|
.tcv_cad_tree {
|
|
62
68
|
display: flex;
|
|
63
69
|
flex-direction: column;
|
|
@@ -148,6 +154,10 @@ th {
|
|
|
148
154
|
z-index: 100;
|
|
149
155
|
}
|
|
150
156
|
|
|
157
|
+
.tcv_animation_slider {
|
|
158
|
+
width: 120px !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
151
161
|
.tcv_cad_animation {
|
|
152
162
|
height: 36px;
|
|
153
163
|
background-color: var(--tcv-bg-color);
|
|
@@ -175,7 +185,8 @@ th {
|
|
|
175
185
|
|
|
176
186
|
.tcv_cad_help_layout {
|
|
177
187
|
border-collapse: separate;
|
|
178
|
-
border-spacing: 4px;
|
|
188
|
+
border-spacing: 4px;
|
|
189
|
+
}
|
|
179
190
|
|
|
180
191
|
.tcv_round {
|
|
181
192
|
box-sizing: border-box;
|
|
@@ -212,6 +223,14 @@ th {
|
|
|
212
223
|
padding: 0px;
|
|
213
224
|
}
|
|
214
225
|
|
|
226
|
+
.tcv_small_btn {
|
|
227
|
+
width: 14px !important;
|
|
228
|
+
height: 14px !important;
|
|
229
|
+
font-size: 11px !important;
|
|
230
|
+
color: var(--tcv-font-color);
|
|
231
|
+
border: 1px solid var(--tcv-bg-highligth-color);
|
|
232
|
+
}
|
|
233
|
+
|
|
215
234
|
.tcv_btn:hover {
|
|
216
235
|
box-shadow: 1px 1px 1px 0 var(--tcv-shadow);
|
|
217
236
|
background-color: var(--tcv-bg-highligth-color);
|
|
@@ -242,7 +261,7 @@ input[type="button"] {
|
|
|
242
261
|
display: inline-block;
|
|
243
262
|
padding: 0px;
|
|
244
263
|
border: none;
|
|
245
|
-
margin-bottom: 6px;
|
|
264
|
+
/* margin-bottom: 6px; */
|
|
246
265
|
background-color: var(--tcv-bg-color);
|
|
247
266
|
color: var(--tcv-font-color);
|
|
248
267
|
font-size: 14px;
|
|
@@ -315,6 +334,10 @@ input[type="button"] {
|
|
|
315
334
|
margin-bottom: 10px;
|
|
316
335
|
}
|
|
317
336
|
|
|
337
|
+
.tcv_cad_clip_container {
|
|
338
|
+
margin-top: 6px;
|
|
339
|
+
}
|
|
340
|
+
|
|
318
341
|
.tcv_clip_checks {
|
|
319
342
|
margin-top: 20px;
|
|
320
343
|
}
|
|
@@ -338,9 +361,8 @@ input[type="button"] {
|
|
|
338
361
|
transition: opacity 0.2s;
|
|
339
362
|
}
|
|
340
363
|
|
|
341
|
-
.
|
|
364
|
+
.tcv_clip_slider::-webkit-slider-thumb {
|
|
342
365
|
-webkit-appearance: none;
|
|
343
|
-
appearance: none;
|
|
344
366
|
width: 12px;
|
|
345
367
|
height: 12px;
|
|
346
368
|
border-radius: 50%;
|