@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.
Files changed (35) hide show
  1. package/autocomplete/sd-angular-core-autocomplete.metadata.json +1 -1
  2. package/autocomplete/src/lib/autocomplete.component.d.ts +9 -5
  3. package/bundles/sd-angular-core-autocomplete.umd.js +34 -29
  4. package/bundles/sd-angular-core-autocomplete.umd.js.map +1 -1
  5. package/bundles/sd-angular-core-autocomplete.umd.min.js +2 -2
  6. package/bundles/sd-angular-core-autocomplete.umd.min.js.map +1 -1
  7. package/bundles/sd-angular-core-common.umd.js +42 -4
  8. package/bundles/sd-angular-core-common.umd.js.map +1 -1
  9. package/bundles/sd-angular-core-common.umd.min.js +3 -2
  10. package/bundles/sd-angular-core-common.umd.min.js.map +1 -1
  11. package/bundles/sd-angular-core-input.umd.js +25 -5
  12. package/bundles/sd-angular-core-input.umd.js.map +1 -1
  13. package/bundles/sd-angular-core-input.umd.min.js +2 -2
  14. package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
  15. package/common/sd-angular-core-common.metadata.json +1 -1
  16. package/common/src/lib/common.module.d.ts +2 -0
  17. package/common/src/lib/directives/view-def.directive.d.ts +5 -0
  18. package/common/src/public-api.d.ts +2 -0
  19. package/esm2015/autocomplete/src/lib/autocomplete.component.js +35 -26
  20. package/esm2015/autocomplete/src/lib/autocomplete.module.js +4 -2
  21. package/esm2015/common/src/lib/common.module.js +20 -0
  22. package/esm2015/common/src/lib/directives/view-def.directive.js +16 -0
  23. package/esm2015/common/src/public-api.js +3 -1
  24. package/esm2015/input/src/lib/input.component.js +23 -4
  25. package/esm2015/input/src/lib/input.module.js +6 -3
  26. package/fesm2015/sd-angular-core-autocomplete.js +35 -26
  27. package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
  28. package/fesm2015/sd-angular-core-common.js +35 -1
  29. package/fesm2015/sd-angular-core-common.js.map +1 -1
  30. package/fesm2015/sd-angular-core-input.js +26 -6
  31. package/fesm2015/sd-angular-core-input.js.map +1 -1
  32. package/input/sd-angular-core-input.metadata.json +1 -1
  33. package/input/src/lib/input.component.d.ts +5 -0
  34. package/package.json +1 -1
  35. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-angular/core",
3
- "version": "0.0.1006",
3
+ "version": "0.0.1007",
4
4
  "homepage": "https://www.facebook.com/DarkP3ter",
5
5
  "author": {
6
6
  "name": "darkpeter",
index f44e58b..d1dd7c3 100644
Binary file