@softheon/armature 17.5.2 → 17.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Custom Input Stepper Component
|
|
6
6
|
*/
|
|
7
|
-
export declare class SofInputStepperComponent implements OnInit, OnDestroy, ControlValueAccessor
|
|
7
|
+
export declare class SofInputStepperComponent implements OnInit, OnDestroy, ControlValueAccessor {
|
|
8
8
|
private control;
|
|
9
9
|
/** The value */
|
|
10
10
|
customValue: number;
|
|
@@ -47,8 +47,6 @@ export declare class SofInputStepperComponent implements OnInit, OnDestroy, Cont
|
|
|
47
47
|
* Component Initialization
|
|
48
48
|
*/
|
|
49
49
|
ngOnInit(): void;
|
|
50
|
-
/** After View Initialization */
|
|
51
|
-
ngAfterViewInit(): void;
|
|
52
50
|
/** Triggered when control is changed
|
|
53
51
|
* @param fn The callback function.
|
|
54
52
|
*/
|