Merge branch 'master' into nymkappa/accel-checkout

This commit is contained in:
nymkappa
2024-04-13 21:13:11 +09:00
19 changed files with 1224 additions and 24 deletions

View File

@@ -100,4 +100,4 @@
</div>
}
</div>
</div>

View File

@@ -1,3 +1,9 @@
.close-button {
position: absolute;
top: 0.5em;
right: 0.5em;
}
.estimating {
color: var(--green)
}
}

View File

@@ -1,4 +1,4 @@
import { Component, OnInit, OnDestroy, Input } from '@angular/core';
import { Component, OnInit, OnDestroy, Output, EventEmitter, Input } from '@angular/core';
import { Subscription, tap, of, catchError } from 'rxjs';
import { WebsocketService } from '../../services/websocket.service';
import { ServicesApiServices } from '../../services/services-api.service';
@@ -231,4 +231,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
this.showCheckoutPage = false
this.choosenOption = 'wait';
}
closeModal(): void {
this.close.emit();
}
}