ca-components 1.9.5 → 1.9.6
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.
|
@@ -69,8 +69,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
69
69
|
canadaStates: ArrayStatus[];
|
|
70
70
|
sentAddressValue: EventEmitter<string>;
|
|
71
71
|
sentAddressData: EventEmitter<SentAddressData>;
|
|
72
|
-
setFilter: EventEmitter<
|
|
73
|
-
clearAll: EventEmitter<
|
|
72
|
+
setFilter: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
73
|
+
clearAll: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
74
74
|
private destroy$;
|
|
75
75
|
isSearchExpanded: boolean;
|
|
76
76
|
isFilterActive: boolean;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
3
|
import { CaNoteContainerComponent } from '../ca-note-container/ca-note-container.component';
|
|
3
4
|
import { SvgRoutes } from '../../utils/svg-routes/payroll-list-summary-svg-routes';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaInputNoteComponent {
|
|
6
|
+
export declare class CaInputNoteComponent implements ControlValueAccessor {
|
|
6
7
|
noteRef: ElementRef | undefined;
|
|
7
8
|
noteContainer: CaNoteContainerComponent;
|
|
8
9
|
set note(value: string);
|
|
@@ -31,7 +32,13 @@ export declare class CaInputNoteComponent {
|
|
|
31
32
|
private saveInterval;
|
|
32
33
|
private isSaveIntervalStarted;
|
|
33
34
|
savedValue: string;
|
|
35
|
+
private onChange;
|
|
36
|
+
private onTouched;
|
|
34
37
|
constructor();
|
|
38
|
+
writeValue(value: any): void;
|
|
39
|
+
registerOnChange(fn: any): void;
|
|
40
|
+
registerOnTouched(fn: any): void;
|
|
41
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
35
42
|
openNote(): void;
|
|
36
43
|
checkFocus(): void;
|
|
37
44
|
changeValue(event: Event): void;
|