All checks were successful
Build and Deploy / test-backend (push) Successful in 33s
Build and Deploy / test-frontend (push) Successful in 1m5s
Build and Deploy / build-and-push (push) Successful in 43s
Build and Deploy / deploy (push) Successful in 9s
PR Checks / prettier-autofix (pull_request) Successful in 11s
PR Checks / test-backend (pull_request) Successful in 26s
PR Checks / security-sast (pull_request) Successful in 32s
PR Checks / test-frontend (pull_request) Successful in 1m6s
19 lines
432 B
HTML
19 lines
432 B
HTML
<div
|
|
class="viewer-container"
|
|
#rendererContainer
|
|
[style.height.px]="height"
|
|
[style.border-radius]="borderRadius"
|
|
>
|
|
@if (loading) {
|
|
<div class="loading-overlay">
|
|
<div class="spinner"></div>
|
|
<span>{{ "STL_VIEWER.LOADING" | translate }}</span>
|
|
</div>
|
|
}
|
|
@if (file && !loading) {
|
|
<div class="dims-overlay">
|
|
{{ dimensions.x }} x {{ dimensions.y }} x {{ dimensions.z }} mm
|
|
</div>
|
|
}
|
|
</div>
|