mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
965 B
28 lines
965 B
import { XRayRulesSettings } from '@ghostfolio/common/interfaces';
|
|
|
|
import { Component, Inject } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import {
|
|
MAT_DIALOG_DATA,
|
|
MatDialogModule,
|
|
MatDialogRef
|
|
} from '@angular/material/dialog';
|
|
import { MatSliderModule } from '@angular/material/slider';
|
|
|
|
import { IRuleSettingsDialogParams } from './interfaces/interfaces';
|
|
|
|
@Component({
|
|
imports: [FormsModule, MatButtonModule, MatDialogModule, MatSliderModule],
|
|
selector: 'gf-rule-settings-dialog',
|
|
styleUrls: ['./rule-settings-dialog.scss'],
|
|
templateUrl: './rule-settings-dialog.html'
|
|
})
|
|
export class GfRuleSettingsDialogComponent {
|
|
public settings: XRayRulesSettings['AccountClusterRiskCurrentInvestment'];
|
|
|
|
public constructor(
|
|
@Inject(MAT_DIALOG_DATA) public data: IRuleSettingsDialogParams,
|
|
public dialogRef: MatDialogRef<GfRuleSettingsDialogComponent>
|
|
) {}
|
|
}
|
|
|