@huntsman-cancer-institute/input 16.0.0 → 17.0.0
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/date/date-base.d.ts +65 -65
- package/date/date-date-range.component.d.ts +32 -32
- package/date/date-date.component.d.ts +53 -53
- package/date/date-validator.d.ts +17 -17
- package/date/date.module.d.ts +16 -16
- package/dropdown/dropdown-index.d.ts +6 -6
- package/dropdown/dropdown-select-result.component.d.ts +23 -23
- package/dropdown/dropdown-select.component.d.ts +76 -76
- package/dropdown/dropdown.component.d.ts +40 -40
- package/dropdown/dropdown.module.d.ts +13 -13
- package/dropdown/dropdown.service.d.ts +51 -51
- package/dropdown/messages.d.ts +11 -11
- package/dropdown/select-item.d.ts +16 -16
- package/dropdown/template-dropdown.directive.d.ts +12 -12
- package/esm2022/date/date-base.mjs +114 -114
- package/esm2022/date/date-date-range.component.mjs +92 -92
- package/esm2022/date/date-date.component.mjs +189 -189
- package/esm2022/date/date-validator.mjs +40 -40
- package/esm2022/date/date.module.mjs +60 -60
- package/esm2022/dropdown/dropdown-index.mjs +5 -5
- package/esm2022/dropdown/dropdown-select-result.component.mjs +85 -85
- package/esm2022/dropdown/dropdown-select.component.mjs +360 -360
- package/esm2022/dropdown/dropdown.component.mjs +170 -170
- package/esm2022/dropdown/dropdown.module.mjs +50 -50
- package/esm2022/dropdown/dropdown.service.mjs +133 -133
- package/esm2022/dropdown/messages.mjs +9 -9
- package/esm2022/dropdown/select-item.mjs +11 -11
- package/esm2022/dropdown/template-dropdown.directive.mjs +26 -26
- package/esm2022/huntsman-cancer-institute-input.mjs +4 -4
- package/esm2022/index.mjs +19 -19
- package/esm2022/inline/inline.component.mjs +179 -179
- package/esm2022/inline/inline.module.mjs +28 -28
- package/esm2022/search/search.component.mjs +157 -157
- package/esm2022/search/search.module.mjs +32 -32
- package/esm2022/select/custom-combobox.component.mjs +531 -531
- package/esm2022/select/custom-multi-combobox.component.mjs +232 -232
- package/esm2022/select/md-multi-select.component.mjs +127 -127
- package/esm2022/select/md-select.component.mjs +107 -107
- package/esm2022/select/native-select.component.mjs +188 -188
- package/esm2022/select/select.module.mjs +83 -83
- package/fesm2022/huntsman-cancer-institute-input.mjs +2797 -2797
- package/fesm2022/huntsman-cancer-institute-input.mjs.map +1 -1
- package/index.d.ts +20 -20
- package/inline/inline.component.d.ts +66 -66
- package/inline/inline.module.d.ts +9 -9
- package/package.json +16 -8
- package/search/search.component.d.ts +42 -42
- package/search/search.module.d.ts +10 -10
- package/select/custom-combobox.component.d.ts +98 -98
- package/select/custom-multi-combobox.component.d.ts +50 -50
- package/select/md-multi-select.component.d.ts +32 -32
- package/select/md-select.component.d.ts +30 -30
- package/select/native-select.component.d.ts +37 -37
- package/select/select.module.d.ts +21 -21
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, EventEmitter, Injector, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
|
|
2
|
-
import { AbstractControl, ControlValueAccessor, UntypedFormControl } from "@angular/forms";
|
|
3
|
-
import { MatLegacySelect as MatSelect } from "@angular/material/legacy-select";
|
|
4
|
-
import { LegacyFloatLabelType as FloatLabelType } from "@angular/material/legacy-form-field";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CustomMultiComboBoxComponent implements AfterViewInit, OnChanges, OnDestroy, ControlValueAccessor {
|
|
7
|
-
private injector;
|
|
8
|
-
inputElement: ElementRef;
|
|
9
|
-
selectElement: MatSelect;
|
|
10
|
-
label: string;
|
|
11
|
-
placeholder: string;
|
|
12
|
-
temporaryPlaceholder: boolean;
|
|
13
|
-
tooltip: string;
|
|
14
|
-
options: any[];
|
|
15
|
-
includeLoadingOption: boolean;
|
|
16
|
-
loadedOptions: any[];
|
|
17
|
-
private isSelectOpen;
|
|
18
|
-
private valueField;
|
|
19
|
-
private forceEmitObject;
|
|
20
|
-
displayField: string;
|
|
21
|
-
appearance: string;
|
|
22
|
-
initialFocus: string;
|
|
23
|
-
floatLabel: FloatLabelType;
|
|
24
|
-
outerControl: AbstractControl;
|
|
25
|
-
innerControl: UntypedFormControl;
|
|
26
|
-
private ignoreInnerControlChanges;
|
|
27
|
-
private innerControlSubscription;
|
|
28
|
-
private noNgControl;
|
|
29
|
-
selectedListItems: any[];
|
|
30
|
-
selectionChanged: EventEmitter<any[]>;
|
|
31
|
-
private onChangeFn;
|
|
32
|
-
private onTouchedFn;
|
|
33
|
-
constructor(injector: Injector);
|
|
34
|
-
ngAfterViewInit(): void;
|
|
35
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
36
|
-
writeValue(obj: any): void;
|
|
37
|
-
registerOnChange(fn: any): void;
|
|
38
|
-
registerOnTouched(fn: any): void;
|
|
39
|
-
setDisabledState(isDisabled: boolean): void;
|
|
40
|
-
onInputFocus(): void;
|
|
41
|
-
private loadOnlyCurrentValue;
|
|
42
|
-
private filterOptions;
|
|
43
|
-
private isOptInOuterValue;
|
|
44
|
-
onOpenedChange(opened: boolean): void;
|
|
45
|
-
selectOptions(options: any[]): void;
|
|
46
|
-
compareByID(itemOne: any, itemTwo: any): boolean;
|
|
47
|
-
ngOnDestroy(): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CustomMultiComboBoxComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomMultiComboBoxComponent, "hci-multi-combobox", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "temporaryPlaceholder": { "alias": "temporaryPlaceholder"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "options": { "alias": "options"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "forceEmitObject": { "alias": "forceEmitObject"; "required": false; }; "displayField": { "alias": "displayField"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "initialFocus": { "alias": "initialFocus"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; }, { "selectionChanged": "selectionChanged"; }, never, never, false, never>;
|
|
50
|
-
}
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, Injector, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { AbstractControl, ControlValueAccessor, UntypedFormControl } from "@angular/forms";
|
|
3
|
+
import { MatLegacySelect as MatSelect } from "@angular/material/legacy-select";
|
|
4
|
+
import { LegacyFloatLabelType as FloatLabelType } from "@angular/material/legacy-form-field";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CustomMultiComboBoxComponent implements AfterViewInit, OnChanges, OnDestroy, ControlValueAccessor {
|
|
7
|
+
private injector;
|
|
8
|
+
inputElement: ElementRef;
|
|
9
|
+
selectElement: MatSelect;
|
|
10
|
+
label: string;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
temporaryPlaceholder: boolean;
|
|
13
|
+
tooltip: string;
|
|
14
|
+
options: any[];
|
|
15
|
+
includeLoadingOption: boolean;
|
|
16
|
+
loadedOptions: any[];
|
|
17
|
+
private isSelectOpen;
|
|
18
|
+
private valueField;
|
|
19
|
+
private forceEmitObject;
|
|
20
|
+
displayField: string;
|
|
21
|
+
appearance: string;
|
|
22
|
+
initialFocus: string;
|
|
23
|
+
floatLabel: FloatLabelType;
|
|
24
|
+
outerControl: AbstractControl;
|
|
25
|
+
innerControl: UntypedFormControl;
|
|
26
|
+
private ignoreInnerControlChanges;
|
|
27
|
+
private innerControlSubscription;
|
|
28
|
+
private noNgControl;
|
|
29
|
+
selectedListItems: any[];
|
|
30
|
+
selectionChanged: EventEmitter<any[]>;
|
|
31
|
+
private onChangeFn;
|
|
32
|
+
private onTouchedFn;
|
|
33
|
+
constructor(injector: Injector);
|
|
34
|
+
ngAfterViewInit(): void;
|
|
35
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
36
|
+
writeValue(obj: any): void;
|
|
37
|
+
registerOnChange(fn: any): void;
|
|
38
|
+
registerOnTouched(fn: any): void;
|
|
39
|
+
setDisabledState(isDisabled: boolean): void;
|
|
40
|
+
onInputFocus(): void;
|
|
41
|
+
private loadOnlyCurrentValue;
|
|
42
|
+
private filterOptions;
|
|
43
|
+
private isOptInOuterValue;
|
|
44
|
+
onOpenedChange(opened: boolean): void;
|
|
45
|
+
selectOptions(options: any[]): void;
|
|
46
|
+
compareByID(itemOne: any, itemTwo: any): boolean;
|
|
47
|
+
ngOnDestroy(): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomMultiComboBoxComponent, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomMultiComboBoxComponent, "hci-multi-combobox", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "temporaryPlaceholder": { "alias": "temporaryPlaceholder"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "options": { "alias": "options"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "forceEmitObject": { "alias": "forceEmitObject"; "required": false; }; "displayField": { "alias": "displayField"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "initialFocus": { "alias": "initialFocus"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; }, { "selectionChanged": "selectionChanged"; }, never, never, false, never>;
|
|
50
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { HttpClient } from "@angular/common/http";
|
|
2
|
-
import { ControlValueAccessor, UntypedFormControl } from "@angular/forms";
|
|
3
|
-
import { DictionaryService, DropdownEntry } from "@huntsman-cancer-institute/dictionary-service";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MdMultiSelectComponent implements ControlValueAccessor {
|
|
6
|
-
private dictionaryService;
|
|
7
|
-
private http;
|
|
8
|
-
classList: string;
|
|
9
|
-
name: string;
|
|
10
|
-
label: string;
|
|
11
|
-
url: string;
|
|
12
|
-
entries: DropdownEntry[];
|
|
13
|
-
required: boolean;
|
|
14
|
-
idKey: string;
|
|
15
|
-
displayKey: string;
|
|
16
|
-
options: UntypedFormControl;
|
|
17
|
-
private _value;
|
|
18
|
-
private onChangeCallback;
|
|
19
|
-
private onTouchedCallback;
|
|
20
|
-
constructor(dictionaryService: DictionaryService, http: HttpClient);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
getOptionDisplay(value: any): string;
|
|
23
|
-
remove(value: any): void;
|
|
24
|
-
get value(): any[];
|
|
25
|
-
set value(newValue: any[]);
|
|
26
|
-
onBlur(): void;
|
|
27
|
-
writeValue(value: any[]): void;
|
|
28
|
-
registerOnChange(callback: (_: any[]) => void): void;
|
|
29
|
-
registerOnTouched(callback: () => void): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MdMultiSelectComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MdMultiSelectComponent, "hci-md-multi-select", never, { "classList": { "alias": "class"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "entries": { "alias": "entries"; "required": false; }; "required": { "alias": "required"; "required": false; }; "idKey": { "alias": "idKey"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
-
}
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { ControlValueAccessor, UntypedFormControl } from "@angular/forms";
|
|
3
|
+
import { DictionaryService, DropdownEntry } from "@huntsman-cancer-institute/dictionary-service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MdMultiSelectComponent implements ControlValueAccessor {
|
|
6
|
+
private dictionaryService;
|
|
7
|
+
private http;
|
|
8
|
+
classList: string;
|
|
9
|
+
name: string;
|
|
10
|
+
label: string;
|
|
11
|
+
url: string;
|
|
12
|
+
entries: DropdownEntry[];
|
|
13
|
+
required: boolean;
|
|
14
|
+
idKey: string;
|
|
15
|
+
displayKey: string;
|
|
16
|
+
options: UntypedFormControl;
|
|
17
|
+
private _value;
|
|
18
|
+
private onChangeCallback;
|
|
19
|
+
private onTouchedCallback;
|
|
20
|
+
constructor(dictionaryService: DictionaryService, http: HttpClient);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
getOptionDisplay(value: any): string;
|
|
23
|
+
remove(value: any): void;
|
|
24
|
+
get value(): any[];
|
|
25
|
+
set value(newValue: any[]);
|
|
26
|
+
onBlur(): void;
|
|
27
|
+
writeValue(value: any[]): void;
|
|
28
|
+
registerOnChange(callback: (_: any[]) => void): void;
|
|
29
|
+
registerOnTouched(callback: () => void): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MdMultiSelectComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MdMultiSelectComponent, "hci-md-multi-select", never, { "classList": { "alias": "class"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "entries": { "alias": "entries"; "required": false; }; "required": { "alias": "required"; "required": false; }; "idKey": { "alias": "idKey"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { HttpClient } from "@angular/common/http";
|
|
3
|
-
import { DictionaryService, DropdownEntry } from "@huntsman-cancer-institute/dictionary-service";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MdSelectComponent implements ControlValueAccessor {
|
|
6
|
-
private dictionaryService;
|
|
7
|
-
private http;
|
|
8
|
-
classList: string;
|
|
9
|
-
name: string;
|
|
10
|
-
label: string;
|
|
11
|
-
url: string;
|
|
12
|
-
className: string;
|
|
13
|
-
entries: DropdownEntry[];
|
|
14
|
-
required: boolean;
|
|
15
|
-
idKey: string;
|
|
16
|
-
displayKey: string;
|
|
17
|
-
private _value;
|
|
18
|
-
private onChangeCallback;
|
|
19
|
-
private onTouchedCallback;
|
|
20
|
-
constructor(dictionaryService: DictionaryService, http: HttpClient);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
get value(): number;
|
|
23
|
-
set value(newValue: number);
|
|
24
|
-
onBlur(): void;
|
|
25
|
-
writeValue(value: number): void;
|
|
26
|
-
registerOnChange(callback: (_: number) => void): void;
|
|
27
|
-
registerOnTouched(callback: () => void): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MdSelectComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MdSelectComponent, "hci-md-select", never, { "classList": { "alias": "class"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "className": { "alias": "className"; "required": false; }; "entries": { "alias": "entries"; "required": false; }; "required": { "alias": "required"; "required": false; }; "idKey": { "alias": "idKey"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; }, {}, never, never, false, never>;
|
|
30
|
-
}
|
|
1
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
+
import { HttpClient } from "@angular/common/http";
|
|
3
|
+
import { DictionaryService, DropdownEntry } from "@huntsman-cancer-institute/dictionary-service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MdSelectComponent implements ControlValueAccessor {
|
|
6
|
+
private dictionaryService;
|
|
7
|
+
private http;
|
|
8
|
+
classList: string;
|
|
9
|
+
name: string;
|
|
10
|
+
label: string;
|
|
11
|
+
url: string;
|
|
12
|
+
className: string;
|
|
13
|
+
entries: DropdownEntry[];
|
|
14
|
+
required: boolean;
|
|
15
|
+
idKey: string;
|
|
16
|
+
displayKey: string;
|
|
17
|
+
private _value;
|
|
18
|
+
private onChangeCallback;
|
|
19
|
+
private onTouchedCallback;
|
|
20
|
+
constructor(dictionaryService: DictionaryService, http: HttpClient);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
get value(): number;
|
|
23
|
+
set value(newValue: number);
|
|
24
|
+
onBlur(): void;
|
|
25
|
+
writeValue(value: number): void;
|
|
26
|
+
registerOnChange(callback: (_: number) => void): void;
|
|
27
|
+
registerOnTouched(callback: () => void): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MdSelectComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MdSelectComponent, "hci-md-select", never, { "classList": { "alias": "class"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "className": { "alias": "className"; "required": false; }; "entries": { "alias": "entries"; "required": false; }; "required": { "alias": "required"; "required": false; }; "idKey": { "alias": "idKey"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; }, {}, never, never, false, never>;
|
|
30
|
+
}
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { HttpClient } from "@angular/common/http";
|
|
4
|
-
import { DictionaryService, DropdownEntry } from "@huntsman-cancer-institute/dictionary-service";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class NativeSelectComponent implements ControlValueAccessor {
|
|
7
|
-
private dictionaryService;
|
|
8
|
-
private http;
|
|
9
|
-
private cdr;
|
|
10
|
-
classList: string;
|
|
11
|
-
value: any;
|
|
12
|
-
height: number;
|
|
13
|
-
unfilteredEntries: DropdownEntry[];
|
|
14
|
-
name: string;
|
|
15
|
-
label: string;
|
|
16
|
-
url: string;
|
|
17
|
-
entries: DropdownEntry[];
|
|
18
|
-
required: boolean;
|
|
19
|
-
idKey: string;
|
|
20
|
-
displayKey: string;
|
|
21
|
-
disabled: boolean;
|
|
22
|
-
sortKey: string;
|
|
23
|
-
sortNumeric: boolean;
|
|
24
|
-
filterKey: string;
|
|
25
|
-
_filter: any;
|
|
26
|
-
get filter(): any;
|
|
27
|
-
set filter(f: any);
|
|
28
|
-
onChange: any;
|
|
29
|
-
constructor(dictionaryService: DictionaryService, http: HttpClient, cdr: ChangeDetectorRef);
|
|
30
|
-
ngOnInit(): void;
|
|
31
|
-
setHeight(h: number): void;
|
|
32
|
-
writeValue(value: any): void;
|
|
33
|
-
registerOnChange(fn: any): void;
|
|
34
|
-
registerOnTouched(fn: () => void): void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NativeSelectComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NativeSelectComponent, "hci-native-select", never, { "classList": { "alias": "class"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "entries": { "alias": "entries"; "required": false; }; "required": { "alias": "required"; "required": false; }; "idKey": { "alias": "idKey"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "sortKey": { "alias": "sortKey"; "required": false; }; "sortNumeric": { "alias": "sortNumeric"; "required": false; }; "filterKey": { "alias": "filterKey"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; }, {}, never, never, false, never>;
|
|
37
|
-
}
|
|
1
|
+
import { ChangeDetectorRef } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import { HttpClient } from "@angular/common/http";
|
|
4
|
+
import { DictionaryService, DropdownEntry } from "@huntsman-cancer-institute/dictionary-service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NativeSelectComponent implements ControlValueAccessor {
|
|
7
|
+
private dictionaryService;
|
|
8
|
+
private http;
|
|
9
|
+
private cdr;
|
|
10
|
+
classList: string;
|
|
11
|
+
value: any;
|
|
12
|
+
height: number;
|
|
13
|
+
unfilteredEntries: DropdownEntry[];
|
|
14
|
+
name: string;
|
|
15
|
+
label: string;
|
|
16
|
+
url: string;
|
|
17
|
+
entries: DropdownEntry[];
|
|
18
|
+
required: boolean;
|
|
19
|
+
idKey: string;
|
|
20
|
+
displayKey: string;
|
|
21
|
+
disabled: boolean;
|
|
22
|
+
sortKey: string;
|
|
23
|
+
sortNumeric: boolean;
|
|
24
|
+
filterKey: string;
|
|
25
|
+
_filter: any;
|
|
26
|
+
get filter(): any;
|
|
27
|
+
set filter(f: any);
|
|
28
|
+
onChange: any;
|
|
29
|
+
constructor(dictionaryService: DictionaryService, http: HttpClient, cdr: ChangeDetectorRef);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
setHeight(h: number): void;
|
|
32
|
+
writeValue(value: any): void;
|
|
33
|
+
registerOnChange(fn: any): void;
|
|
34
|
+
registerOnTouched(fn: () => void): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NativeSelectComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NativeSelectComponent, "hci-native-select", never, { "classList": { "alias": "class"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "entries": { "alias": "entries"; "required": false; }; "required": { "alias": "required"; "required": false; }; "idKey": { "alias": "idKey"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "sortKey": { "alias": "sortKey"; "required": false; }; "sortNumeric": { "alias": "sortNumeric"; "required": false; }; "filterKey": { "alias": "filterKey"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; }, {}, never, never, false, never>;
|
|
37
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./md-select.component";
|
|
3
|
-
import * as i2 from "./md-multi-select.component";
|
|
4
|
-
import * as i3 from "./native-select.component";
|
|
5
|
-
import * as i4 from "./custom-combobox.component";
|
|
6
|
-
import * as i5 from "./custom-multi-combobox.component";
|
|
7
|
-
import * as i6 from "@angular/common";
|
|
8
|
-
import * as i7 from "@angular/forms";
|
|
9
|
-
import * as i8 from "@angular/material/legacy-select";
|
|
10
|
-
import * as i9 from "@angular/cdk/scrolling";
|
|
11
|
-
import * as i10 from "@angular/material/legacy-autocomplete";
|
|
12
|
-
import * as i11 from "@angular/material/legacy-input";
|
|
13
|
-
import * as i12 from "@angular/material/legacy-tooltip";
|
|
14
|
-
import * as i13 from "@angular/material/icon";
|
|
15
|
-
import * as i14 from "@angular/material/legacy-progress-spinner";
|
|
16
|
-
import * as i15 from "@huntsman-cancer-institute/dictionary-service";
|
|
17
|
-
export declare class SelectModule {
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, [typeof i1.MdSelectComponent, typeof i2.MdMultiSelectComponent, typeof i3.NativeSelectComponent, typeof i4.CustomComboBoxComponent, typeof i5.CustomMultiComboBoxComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i8.MatLegacySelectModule, typeof i9.ScrollingModule, typeof i10.MatLegacyAutocompleteModule, typeof i11.MatLegacyInputModule, typeof i12.MatLegacyTooltipModule, typeof i13.MatIconModule, typeof i14.MatLegacyProgressSpinnerModule, typeof i15.DictionaryServiceModule], [typeof i1.MdSelectComponent, typeof i2.MdMultiSelectComponent, typeof i3.NativeSelectComponent, typeof i4.CustomComboBoxComponent, typeof i5.CustomMultiComboBoxComponent]>;
|
|
20
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SelectModule>;
|
|
21
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./md-select.component";
|
|
3
|
+
import * as i2 from "./md-multi-select.component";
|
|
4
|
+
import * as i3 from "./native-select.component";
|
|
5
|
+
import * as i4 from "./custom-combobox.component";
|
|
6
|
+
import * as i5 from "./custom-multi-combobox.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/material/legacy-select";
|
|
10
|
+
import * as i9 from "@angular/cdk/scrolling";
|
|
11
|
+
import * as i10 from "@angular/material/legacy-autocomplete";
|
|
12
|
+
import * as i11 from "@angular/material/legacy-input";
|
|
13
|
+
import * as i12 from "@angular/material/legacy-tooltip";
|
|
14
|
+
import * as i13 from "@angular/material/icon";
|
|
15
|
+
import * as i14 from "@angular/material/legacy-progress-spinner";
|
|
16
|
+
import * as i15 from "@huntsman-cancer-institute/dictionary-service";
|
|
17
|
+
export declare class SelectModule {
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectModule, never>;
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, [typeof i1.MdSelectComponent, typeof i2.MdMultiSelectComponent, typeof i3.NativeSelectComponent, typeof i4.CustomComboBoxComponent, typeof i5.CustomMultiComboBoxComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i8.MatLegacySelectModule, typeof i9.ScrollingModule, typeof i10.MatLegacyAutocompleteModule, typeof i11.MatLegacyInputModule, typeof i12.MatLegacyTooltipModule, typeof i13.MatIconModule, typeof i14.MatLegacyProgressSpinnerModule, typeof i15.DictionaryServiceModule], [typeof i1.MdSelectComponent, typeof i2.MdMultiSelectComponent, typeof i3.NativeSelectComponent, typeof i4.CustomComboBoxComponent, typeof i5.CustomMultiComboBoxComponent]>;
|
|
20
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SelectModule>;
|
|
21
|
+
}
|