@sd-angular/core 0.0.1006 → 0.0.1007
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/autocomplete/src/lib/autocomplete.component.d.ts +9 -5
- package/bundles/sd-angular-core-autocomplete.umd.js +34 -29
- 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-common.umd.js +42 -4
- package/bundles/sd-angular-core-common.umd.js.map +1 -1
- package/bundles/sd-angular-core-common.umd.min.js +3 -2
- package/bundles/sd-angular-core-common.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-input.umd.js +25 -5
- package/bundles/sd-angular-core-input.umd.js.map +1 -1
- package/bundles/sd-angular-core-input.umd.min.js +2 -2
- package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
- package/common/sd-angular-core-common.metadata.json +1 -1
- package/common/src/lib/common.module.d.ts +2 -0
- package/common/src/lib/directives/view-def.directive.d.ts +5 -0
- package/common/src/public-api.d.ts +2 -0
- package/esm2015/autocomplete/src/lib/autocomplete.component.js +35 -26
- package/esm2015/autocomplete/src/lib/autocomplete.module.js +4 -2
- package/esm2015/common/src/lib/common.module.js +20 -0
- package/esm2015/common/src/lib/directives/view-def.directive.js +16 -0
- package/esm2015/common/src/public-api.js +3 -1
- package/esm2015/input/src/lib/input.component.js +23 -4
- package/esm2015/input/src/lib/input.module.js +6 -3
- package/fesm2015/sd-angular-core-autocomplete.js +35 -26
- package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
- package/fesm2015/sd-angular-core-common.js +35 -1
- package/fesm2015/sd-angular-core-common.js.map +1 -1
- package/fesm2015/sd-angular-core-input.js +26 -6
- package/fesm2015/sd-angular-core-input.js.map +1 -1
- package/input/sd-angular-core-input.metadata.json +1 -1
- package/input/src/lib/input.component.d.ts +5 -0
- package/package.json +1 -1
- package/{sd-angular-core-0.0.1006.tgz → sd-angular-core-0.0.1007.tgz} +0 -0
|
@@ -2,6 +2,7 @@ import { EventEmitter, ChangeDetectorRef, OnDestroy, AfterViewInit, ElementRef,
|
|
|
2
2
|
import { NgForm, FormGroup } from '@angular/forms';
|
|
3
3
|
import { SdInputSuffixDirective } from './directives/input-suffix.directive';
|
|
4
4
|
import { SdFormControl } from '@sd-angular/core/common';
|
|
5
|
+
import { SdViewDefDirective } from '@sd-angular/core/common';
|
|
5
6
|
export declare class SdInput implements OnDestroy, OnInit, AfterViewInit {
|
|
6
7
|
#private;
|
|
7
8
|
ref: ChangeDetectorRef;
|
|
@@ -39,6 +40,8 @@ export declare class SdInput implements OnDestroy, OnInit, AfterViewInit {
|
|
|
39
40
|
control: ElementRef;
|
|
40
41
|
sdInputSuffix: SdInputSuffixDirective;
|
|
41
42
|
formControl: SdFormControl;
|
|
43
|
+
sdView: SdViewDefDirective;
|
|
44
|
+
isFocused: boolean;
|
|
42
45
|
constructor(ref: ChangeDetectorRef);
|
|
43
46
|
ngOnInit(): void;
|
|
44
47
|
ngAfterViewInit(): void;
|
|
@@ -48,5 +51,7 @@ export declare class SdInput implements OnDestroy, OnInit, AfterViewInit {
|
|
|
48
51
|
onClickIcon: (event: Event) => void;
|
|
49
52
|
onFocus: () => void;
|
|
50
53
|
onBlur: () => void;
|
|
54
|
+
onClick: () => void;
|
|
51
55
|
blur: () => void;
|
|
56
|
+
focus: () => void;
|
|
52
57
|
}
|
package/package.json
CHANGED
|
index f44e58b..d1dd7c3 100644
|
|
|
Binary file
|