|
|
|
@ -5,7 +5,7 @@ |
|
|
|
* Copyright (c) Sebastian Stehle. All rights reserved |
|
|
|
*/ |
|
|
|
|
|
|
|
import { Component, Input, OnDestroy, OnInit } from '@angular/core'; |
|
|
|
import { ChangeDetectionStrategy, Component, Input, OnDestroy, OnInit } from '@angular/core'; |
|
|
|
import { FormControl, FormGroup, Validators } from '@angular/forms'; |
|
|
|
import { Observable, Subscription } from 'rxjs'; |
|
|
|
|
|
|
|
@ -14,7 +14,8 @@ import { FloatConverter, NumberFieldPropertiesDto } from 'shared'; |
|
|
|
@Component({ |
|
|
|
selector: 'sqx-number-ui', |
|
|
|
styleUrls: ['number-ui.component.scss'], |
|
|
|
templateUrl: 'number-ui.component.html' |
|
|
|
templateUrl: 'number-ui.component.html', |
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush |
|
|
|
}) |
|
|
|
export class NumberUIComponent implements OnDestroy, OnInit { |
|
|
|
private editorSubscription: Subscription; |
|
|
|
|