feat(web): new style and calculator revisited
All checks were successful
Build, Test and Deploy / deploy (push) Successful in 4s
Build, Test and Deploy / test-backend (push) Successful in 12s
Build, Test and Deploy / build-and-push (push) Successful in 20s

This commit is contained in:
2026-02-02 18:41:18 +01:00
parent 32b9b2ef8d
commit 10e1fb49f4
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import { Component, signal } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TranslateModule } from '@ngx-translate/core';
import { AppTabsComponent } from '../../shared/components/app-tabs/app-tabs.component';
import { AppCardComponent } from '../../shared/components/app-card/app-card.component';
import { AppAlertComponent } from '../../shared/components/app-alert/app-alert.component';
import { UploadFormComponent } from './components/upload-form/upload-form.component';
@@ -11,7 +11,7 @@ import { QuoteEstimatorService, QuoteRequest, QuoteResult } from './services/quo
@Component({
selector: 'app-calculator-page',
standalone: true,
imports: [CommonModule, TranslateModule, AppTabsComponent, AppCardComponent, AppAlertComponent, UploadFormComponent, QuoteResultComponent],
imports: [CommonModule, TranslateModule, AppCardComponent, AppAlertComponent, UploadFormComponent, QuoteResultComponent],
template: `
<div class="container hero">
<h1>{{ 'CALC.TITLE' | translate }}</h1>

View File

@@ -2,9 +2,9 @@ import { Component, ElementRef, Input, OnChanges, OnDestroy, OnInit, ViewChild,
import { CommonModule } from '@angular/common';
import * as THREE from 'three';
// @ts-ignore
import { STLLoader } from 'three/examples/jsm/loaders/STLLoader';
import { STLLoader } from 'three/examples/jsm/loaders/STLLoader.js';
// @ts-ignore
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls';
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js';
@Component({
selector: 'app-stl-viewer',