@c10t/nice-component-library 0.0.20 → 0.0.21-a
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.
- package/components/cva-counter-input.component.d.ts +3 -0
- package/components/cva-input.component.d.ts +7 -5
- package/components/cva-live-searching.component.d.ts +7 -4
- package/components/cva-multi-select-autocomplete.d.ts +9 -1
- package/components/cva-quill-editor.component.d.ts +3 -4
- package/components/datepicker/cva-date-picker.component.d.ts +4 -3
- package/components/datepicker/cva-range-date-picker.component.d.ts +1 -1
- package/fesm2022/c10t-nice-component-library.mjs +513 -344
- package/fesm2022/c10t-nice-component-library.mjs.map +1 -1
- package/models/nice-component-library.config.d.ts +1 -0
- package/package.json +1 -1
- package/services/table.service.d.ts +7 -7
|
@@ -2,6 +2,7 @@ import { EventEmitter, Injector, OnChanges, OnInit, SimpleChanges } from '@angul
|
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { ValidatorService } from '../services/validator.service';
|
|
4
4
|
import { AlignEnum } from '../enums/align.enum';
|
|
5
|
+
import { NiceComponentLibraryConfig } from '../models/nice-component-library.config';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CvaCounterInputComponent implements ControlValueAccessor, OnInit, OnChanges {
|
|
7
8
|
private injector;
|
|
@@ -25,6 +26,7 @@ export declare class CvaCounterInputComponent implements ControlValueAccessor, O
|
|
|
25
26
|
onChange: EventEmitter<number>;
|
|
26
27
|
onEnter: EventEmitter<void>;
|
|
27
28
|
formControl: AbstractControl | undefined;
|
|
29
|
+
config: NiceComponentLibraryConfig;
|
|
28
30
|
constructor(injector: Injector, ngControl: NgControl);
|
|
29
31
|
get NsValidator(): typeof ValidatorService;
|
|
30
32
|
get counterValue(): number;
|
|
@@ -38,6 +40,7 @@ export declare class CvaCounterInputComponent implements ControlValueAccessor, O
|
|
|
38
40
|
propagateChange: (_: any) => void;
|
|
39
41
|
registerOnChange(fn: any): void;
|
|
40
42
|
registerOnTouched(): void;
|
|
43
|
+
isShowControl(): boolean;
|
|
41
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvaCounterInputComponent, [null, { optional: true; self: true; }]>;
|
|
42
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<CvaCounterInputComponent, "cva-counter-input", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "suffixText": { "alias": "suffixText"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "error": { "alias": "error"; "required": false; }; "isDecimal": { "alias": "isDecimal"; "required": false; }; "isLabelOutside": { "alias": "isLabelOutside"; "required": false; }; "isFloatLabel": { "alias": "isFloatLabel"; "required": false; }; "percentOfLabelOutside": { "alias": "percentOfLabelOutside"; "required": false; }; "alignNumber": { "alias": "alignNumber"; "required": false; }; "isFormControl": { "alias": "isFormControl"; "required": false; }; }, { "onChange": "onChange"; "onEnter": "onEnter"; }, never, never, false, never>;
|
|
43
46
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, EventEmitter, Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { ValidatorService } from '../services/validator.service';
|
|
4
|
+
import { NiceComponentLibraryConfig } from '../models/nice-component-library.config';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CvaInputComponent implements ControlValueAccessor, OnInit, AfterViewInit {
|
|
6
7
|
private injector;
|
|
@@ -13,7 +14,6 @@ export declare class CvaInputComponent implements ControlValueAccessor, OnInit,
|
|
|
13
14
|
text: string;
|
|
14
15
|
type: string;
|
|
15
16
|
pattern: any;
|
|
16
|
-
readonly: boolean;
|
|
17
17
|
errorMessages: Map<string, (e?: any) => string>;
|
|
18
18
|
onChange: EventEmitter<string>;
|
|
19
19
|
multiline: boolean;
|
|
@@ -29,12 +29,13 @@ export declare class CvaInputComponent implements ControlValueAccessor, OnInit,
|
|
|
29
29
|
isFormControl: boolean;
|
|
30
30
|
formatFunc: any;
|
|
31
31
|
control: AbstractControl | undefined;
|
|
32
|
-
|
|
32
|
+
config: NiceComponentLibraryConfig;
|
|
33
33
|
constructor(injector: Injector, ngControl: NgControl);
|
|
34
|
-
|
|
35
|
-
ngOnInit(): void;
|
|
34
|
+
get NsValidator(): typeof ValidatorService;
|
|
36
35
|
get textValue(): string;
|
|
37
36
|
set textValue(val: string);
|
|
37
|
+
ngAfterViewInit(): void;
|
|
38
|
+
ngOnInit(): void;
|
|
38
39
|
callValidator(): void;
|
|
39
40
|
propagateChange: (_: any) => void;
|
|
40
41
|
/**
|
|
@@ -55,6 +56,7 @@ export declare class CvaInputComponent implements ControlValueAccessor, OnInit,
|
|
|
55
56
|
getMaxLength(): number;
|
|
56
57
|
onFocus(): void;
|
|
57
58
|
onBlur(): void;
|
|
59
|
+
isShowControl(): boolean;
|
|
58
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvaInputComponent, [null, { optional: true; self: true; }]>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CvaInputComponent, "cva-input", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "text": { "alias": "text"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CvaInputComponent, "cva-input", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "text": { "alias": "text"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "isLabelOutside": { "alias": "isLabelOutside"; "required": false; }; "isFloatLabel": { "alias": "isFloatLabel"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "maxLengthDisplay": { "alias": "maxLengthDisplay"; "required": false; }; "percentOfLabelOutside": { "alias": "percentOfLabelOutside"; "required": false; }; "suffixFontAwesomeClass": { "alias": "suffixFontAwesomeClass"; "required": false; }; "patternFilter": { "alias": "patternFilter"; "required": false; }; "isFormControl": { "alias": "isFormControl"; "required": false; }; "formatFunc": { "alias": "formatFunc"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
60
62
|
}
|
|
@@ -2,6 +2,7 @@ import { EventEmitter, Injector, OnInit } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
|
|
3
3
|
import { ValidatorService } from '../services/validator.service';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
|
+
import { NiceComponentLibraryConfig } from '../models/nice-component-library.config';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CvaLiveSearchingComponent implements ControlValueAccessor, OnInit {
|
|
7
8
|
private injector;
|
|
@@ -10,15 +11,14 @@ export declare class CvaLiveSearchingComponent implements ControlValueAccessor,
|
|
|
10
11
|
hint: string;
|
|
11
12
|
required: boolean;
|
|
12
13
|
disabled: boolean;
|
|
13
|
-
readonly: boolean;
|
|
14
14
|
errorMessages: Map<string, (e?: any) => string>;
|
|
15
15
|
isLabelOutside: boolean;
|
|
16
16
|
isFloatLabel: boolean;
|
|
17
17
|
percentOfLabelOutside: number;
|
|
18
18
|
suffixFontAwesomeClass: string;
|
|
19
19
|
displayKey: string;
|
|
20
|
-
mappingConfig
|
|
21
|
-
searchFn
|
|
20
|
+
mappingConfig?: Record<string, string>;
|
|
21
|
+
searchFn?: (term: string) => Observable<any[]>;
|
|
22
22
|
onChange: EventEmitter<any>;
|
|
23
23
|
isFormControl: boolean;
|
|
24
24
|
row?: any;
|
|
@@ -28,6 +28,7 @@ export declare class CvaLiveSearchingComponent implements ControlValueAccessor,
|
|
|
28
28
|
filteredOptions: any[];
|
|
29
29
|
selected: any;
|
|
30
30
|
loading: boolean;
|
|
31
|
+
config: NiceComponentLibraryConfig;
|
|
31
32
|
private searchSub?;
|
|
32
33
|
constructor(injector: Injector, ngControl: NgControl);
|
|
33
34
|
get NsValidator(): typeof ValidatorService;
|
|
@@ -51,6 +52,8 @@ export declare class CvaLiveSearchingComponent implements ControlValueAccessor,
|
|
|
51
52
|
onOptionSelect(displayValue: any): void;
|
|
52
53
|
textValueChangeSubscribe(): void;
|
|
53
54
|
updateRowOrFormGroup(): void;
|
|
55
|
+
onClear(): void;
|
|
56
|
+
isShowControl(): boolean;
|
|
54
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvaLiveSearchingComponent, [null, { optional: true; self: true; }]>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CvaLiveSearchingComponent, "cva-live-searching", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CvaLiveSearchingComponent, "cva-live-searching", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "isLabelOutside": { "alias": "isLabelOutside"; "required": false; }; "isFloatLabel": { "alias": "isFloatLabel"; "required": false; }; "percentOfLabelOutside": { "alias": "percentOfLabelOutside"; "required": false; }; "suffixFontAwesomeClass": { "alias": "suffixFontAwesomeClass"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; "mappingConfig": { "alias": "mappingConfig"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "isFormControl": { "alias": "isFormControl"; "required": false; }; "row": { "alias": "row"; "required": false; }; "columnDef": { "alias": "columnDef"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
56
59
|
}
|
|
@@ -7,6 +7,7 @@ import { TranslateService } from '@ngx-translate/core';
|
|
|
7
7
|
import { ValidatorService } from '../services/validator.service';
|
|
8
8
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
9
9
|
import { MatOptionSelectionChange } from '@angular/material/core';
|
|
10
|
+
import { NiceComponentLibraryConfig } from '../models/nice-component-library.config';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class CvaMultiSelectAutocomplete implements ControlValueAccessor, OnInit, OnChanges {
|
|
12
13
|
private translateService;
|
|
@@ -36,9 +37,12 @@ export declare class CvaMultiSelectAutocomplete implements ControlValueAccessor,
|
|
|
36
37
|
selectAllChecked: boolean;
|
|
37
38
|
labelCount: number;
|
|
38
39
|
cdkVirtualScrollViewPort: CdkVirtualScrollViewport | undefined;
|
|
40
|
+
config: NiceComponentLibraryConfig;
|
|
39
41
|
constructor(translateService: TranslateService, injector: Injector, ngControl: NgControl);
|
|
40
42
|
_displayString: string;
|
|
41
43
|
get displayString(): string;
|
|
44
|
+
_titleString: string;
|
|
45
|
+
get titleString(): string;
|
|
42
46
|
get NsValidator(): typeof ValidatorService;
|
|
43
47
|
get selectedValue(): any[] | any;
|
|
44
48
|
set selectedValue(val: any[] | any);
|
|
@@ -52,7 +56,10 @@ export declare class CvaMultiSelectAutocomplete implements ControlValueAccessor,
|
|
|
52
56
|
ngOnChanges(simpleChanges: SimpleChanges): void;
|
|
53
57
|
toggleSelectAll(val: MatCheckboxChange): void;
|
|
54
58
|
filterItem(value: string): void;
|
|
55
|
-
onDisplayString():
|
|
59
|
+
onDisplayString(): {
|
|
60
|
+
_displayString: string;
|
|
61
|
+
_titleString: string;
|
|
62
|
+
};
|
|
56
63
|
matSelectionChange(val: MatSelectChange): void;
|
|
57
64
|
onSelectionChange(change: MatOptionSelectionChange): void;
|
|
58
65
|
updateSelectAll(): void;
|
|
@@ -60,6 +67,7 @@ export declare class CvaMultiSelectAutocomplete implements ControlValueAccessor,
|
|
|
60
67
|
openChange($event: boolean): void;
|
|
61
68
|
getItemSize(): number;
|
|
62
69
|
getViewPortHeight(): number;
|
|
70
|
+
isShowControl(): boolean;
|
|
63
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvaMultiSelectAutocomplete, [null, null, { optional: true; self: true; }]>;
|
|
64
72
|
static ɵcmp: i0.ɵɵComponentDeclaration<CvaMultiSelectAutocomplete, "cva-multi-select-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "value": { "alias": "value"; "required": false; }; "options": { "alias": "options"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "required": { "alias": "required"; "required": false; }; "isTree": { "alias": "isTree"; "required": false; }; "treeSymbol": { "alias": "treeSymbol"; "required": false; }; "sizeOfItemsInListByPixels": { "alias": "sizeOfItemsInListByPixels"; "required": false; }; "isLabelOutside": { "alias": "isLabelOutside"; "required": false; }; "isFloatLabel": { "alias": "isFloatLabel"; "required": false; }; "percentOfLabelOutside": { "alias": "percentOfLabelOutside"; "required": false; }; "isFormControl": { "alias": "isFormControl"; "required": false; }; }, { "selectionChange": "selectionChange"; "selectedOptionDataChange": "selectedOptionDataChange"; }, never, never, false, never>;
|
|
65
73
|
}
|
|
@@ -18,7 +18,6 @@ export declare class CvaQuillEditorComponent implements ControlValueAccessor, On
|
|
|
18
18
|
onlyCheckTextValidation: boolean;
|
|
19
19
|
format?: 'object' | 'html' | 'text' | 'json';
|
|
20
20
|
pattern: any;
|
|
21
|
-
readonly: boolean;
|
|
22
21
|
errorMessages: Map<string, (e?: any) => string>;
|
|
23
22
|
onChange: EventEmitter<string>;
|
|
24
23
|
multiline: boolean;
|
|
@@ -33,11 +32,11 @@ export declare class CvaQuillEditorComponent implements ControlValueAccessor, On
|
|
|
33
32
|
isFormControl: boolean;
|
|
34
33
|
formatFunc: any;
|
|
35
34
|
control: AbstractControl | undefined;
|
|
36
|
-
get NsValidator(): typeof ValidatorService;
|
|
37
35
|
constructor(injector: Injector, ngControl: NgControl);
|
|
38
|
-
|
|
36
|
+
get NsValidator(): typeof ValidatorService;
|
|
39
37
|
get textValue(): string;
|
|
40
38
|
set textValue(val: string);
|
|
39
|
+
ngOnInit(): void;
|
|
41
40
|
customLengthValidator: (control: AbstractControl) => ValidationErrors | null;
|
|
42
41
|
customSizeValidator: (control: AbstractControl) => ValidationErrors | null;
|
|
43
42
|
callValidator(): void;
|
|
@@ -62,5 +61,5 @@ export declare class CvaQuillEditorComponent implements ControlValueAccessor, On
|
|
|
62
61
|
onBlur(event: any): void;
|
|
63
62
|
onChangeContent(quill: QuillEditorComponent | any, text: any): void;
|
|
64
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvaQuillEditorComponent, [null, { optional: true; self: true; }]>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CvaQuillEditorComponent, "cva-quill-editor", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "text": { "alias": "text"; "required": false; }; "quillStyle": { "alias": "quillStyle"; "required": false; }; "quillModule": { "alias": "quillModule"; "required": false; }; "onlyCheckTextValidation": { "alias": "onlyCheckTextValidation"; "required": false; }; "format": { "alias": "format"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CvaQuillEditorComponent, "cva-quill-editor", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "text": { "alias": "text"; "required": false; }; "quillStyle": { "alias": "quillStyle"; "required": false; }; "quillModule": { "alias": "quillModule"; "required": false; }; "onlyCheckTextValidation": { "alias": "onlyCheckTextValidation"; "required": false; }; "format": { "alias": "format"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "isLabelOutside": { "alias": "isLabelOutside"; "required": false; }; "isFloatLabel": { "alias": "isFloatLabel"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; "minSize": { "alias": "minSize"; "required": false; }; "maxLengthDisplay": { "alias": "maxLengthDisplay"; "required": false; }; "isFormControl": { "alias": "isFormControl"; "required": false; }; "formatFunc": { "alias": "formatFunc"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
66
65
|
}
|
|
@@ -23,13 +23,13 @@ export declare class CvaDatePickerComponent implements ControlValueAccessor, OnI
|
|
|
23
23
|
config: NiceComponentLibraryConfig;
|
|
24
24
|
isFormControl: boolean;
|
|
25
25
|
formControl: AbstractControl | undefined;
|
|
26
|
-
get NsValidator(): typeof ValidatorService;
|
|
27
26
|
constructor(dateServiceUtil: DateUtilService, ngControl: NgControl, injector: Injector);
|
|
27
|
+
get NsValidator(): typeof ValidatorService;
|
|
28
|
+
get datepickerValue(): any;
|
|
29
|
+
set datepickerValue(val: any);
|
|
28
30
|
ngOnInit(): void;
|
|
29
31
|
callValidator(): void;
|
|
30
32
|
checkRequired(isRequired: boolean | (() => boolean)): boolean;
|
|
31
|
-
get datepickerValue(): any;
|
|
32
|
-
set datepickerValue(val: any);
|
|
33
33
|
propagateChange: (_: any) => void;
|
|
34
34
|
registerOnChange(fn: any): void;
|
|
35
35
|
registerOnTouched(fn: any): void;
|
|
@@ -38,6 +38,7 @@ export declare class CvaDatePickerComponent implements ControlValueAccessor, OnI
|
|
|
38
38
|
getMinDate(): Date;
|
|
39
39
|
getMaxDate(): Date;
|
|
40
40
|
isString(inputValue: any): boolean;
|
|
41
|
+
isShowControl(): boolean;
|
|
41
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvaDatePickerComponent, [null, { optional: true; self: true; }, null]>;
|
|
42
43
|
static ɵcmp: i0.ɵɵComponentDeclaration<CvaDatePickerComponent, "cva-date-picker", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "isLabelOutside": { "alias": "isLabelOutside"; "required": false; }; "isFloatLabel": { "alias": "isFloatLabel"; "required": false; }; "percentOfLabelOutside": { "alias": "percentOfLabelOutside"; "required": false; }; "isFormControl": { "alias": "isFormControl"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
43
44
|
}
|
|
@@ -38,8 +38,8 @@ export declare class CvaRangeDatePickerComponent implements ControlValueAccessor
|
|
|
38
38
|
isFormControl: boolean;
|
|
39
39
|
formControl: AbstractControl | undefined;
|
|
40
40
|
defaultFromDate: any;
|
|
41
|
-
get NsValiator(): typeof ValidatorService;
|
|
42
41
|
constructor(dateServiceUtil: DateUtilService, ngControl: NgControl, injector: Injector);
|
|
42
|
+
get NsValiator(): typeof ValidatorService;
|
|
43
43
|
get fromDateValue(): any;
|
|
44
44
|
set fromDateValue(val: any);
|
|
45
45
|
get toDateValue(): any;
|