longer input/output connectors on flow diagram & new nav logic

This commit is contained in:
Mononaut
2022-11-22 10:05:14 +09:00
parent d18899e04a
commit d1e5fec427
5 changed files with 80 additions and 30 deletions

View File

@@ -5,6 +5,9 @@ interface Xput {
type: 'input' | 'output' | 'fee';
value?: number;
index?: number;
txid?: string;
vin?: number;
vout?: number;
address?: string;
rest?: number;
coinbase?: boolean;
@@ -21,6 +24,7 @@ interface Xput {
export class TxBowtieGraphTooltipComponent implements OnChanges {
@Input() line: Xput | void;
@Input() cursorPosition: { x: number, y: number };
@Input() isConnector: boolean = false;
tooltipPosition = { x: 0, y: 0 };