@sd-angular/core 1.3.224 → 1.3.226
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/autocomplete/sd-angular-core-autocomplete.metadata.json +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.js +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.js.map +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.min.js +2 -2
- package/bundles/sd-angular-core-autocomplete.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-date-time.umd.js +1 -1
- package/bundles/sd-angular-core-date-time.umd.js.map +1 -1
- package/bundles/sd-angular-core-date-time.umd.min.js +1 -1
- package/bundles/sd-angular-core-date-time.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-input-number.umd.js +1 -1
- package/bundles/sd-angular-core-input-number.umd.js.map +1 -1
- package/bundles/sd-angular-core-input-number.umd.min.js +1 -1
- package/bundles/sd-angular-core-input-number.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-input.umd.js +1 -1
- package/bundles/sd-angular-core-input.umd.js.map +1 -1
- package/bundles/sd-angular-core-input.umd.min.js +1 -1
- package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-select.umd.js +0 -1
- package/bundles/sd-angular-core-select.umd.js.map +1 -1
- package/bundles/sd-angular-core-select.umd.min.js +1 -1
- package/bundles/sd-angular-core-select.umd.min.js.map +1 -1
- package/date-time/sd-angular-core-date-time.metadata.json +1 -1
- package/esm2015/autocomplete/src/lib/autocomplete.component.js +2 -2
- package/esm2015/date-time/src/lib/date-time.component.js +2 -2
- package/esm2015/input/src/lib/input.component.js +2 -2
- package/esm2015/input-number/src/lib/input-number.component.js +2 -2
- package/esm2015/select/src/lib/select.component.js +1 -3
- package/fesm2015/sd-angular-core-autocomplete.js +1 -1
- package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
- package/fesm2015/sd-angular-core-date-time.js +1 -1
- package/fesm2015/sd-angular-core-date-time.js.map +1 -1
- package/fesm2015/sd-angular-core-input-number.js +1 -1
- package/fesm2015/sd-angular-core-input-number.js.map +1 -1
- package/fesm2015/sd-angular-core-input.js +1 -1
- package/fesm2015/sd-angular-core-input.js.map +1 -1
- package/fesm2015/sd-angular-core-select.js +1 -2
- package/fesm2015/sd-angular-core-select.js.map +1 -1
- package/input/sd-angular-core-input.metadata.json +1 -1
- package/input-number/sd-angular-core-input-number.metadata.json +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.224.tgz → sd-angular-core-1.3.226.tgz} +0 -0
- package/select/sd-angular-core-select.metadata.json +1 -1
- package/select/src/lib/select.component.d.ts +1 -3
|
@@ -7,7 +7,6 @@ import { MatTooltip } from '@angular/material/tooltip';
|
|
|
7
7
|
import { IFormConfiguration, SdFormControl, SdLabelDefDirective, SdViewDefDirective } from '@sd-angular/core/common';
|
|
8
8
|
import { Observable, Subject } from 'rxjs';
|
|
9
9
|
import { SdSelectDisplayDefDirective } from './select-display-def.directive';
|
|
10
|
-
import { SdSuffixIconDirective } from '@sd-angular/core/common';
|
|
11
10
|
export declare class SdSelect implements OnInit, AfterViewInit, OnDestroy {
|
|
12
11
|
#private;
|
|
13
12
|
private ref;
|
|
@@ -44,7 +43,6 @@ export declare class SdSelect implements OnInit, AfterViewInit, OnDestroy {
|
|
|
44
43
|
limit: number;
|
|
45
44
|
filtered: boolean;
|
|
46
45
|
set _filtered(val: boolean | '');
|
|
47
|
-
sdSuffixIcon: SdSuffixIconDirective;
|
|
48
46
|
selectDisplayDef: SdSelectDisplayDefDirective;
|
|
49
47
|
selectAll: boolean;
|
|
50
48
|
set _selectAll(val: boolean | '');
|
|
@@ -83,5 +81,5 @@ export declare class SdSelect implements OnInit, AfterViewInit, OnDestroy {
|
|
|
83
81
|
trackByKey: (index: any, item: any) => any;
|
|
84
82
|
onCopyText: (event: MouseEvent) => void;
|
|
85
83
|
}
|
|
86
|
-
declare type SearchFunc = (searchText?:
|
|
84
|
+
declare type SearchFunc = (searchText?: any, isFormValue?: boolean) => Promise<any[]>;
|
|
87
85
|
export {};
|