@getflip/swirl-components-angular 0.129.1 → 0.131.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.
@@ -3015,6 +3015,14 @@ export declare class SwirlThumbnail {
3015
3015
  static ɵcmp: i0.ɵɵComponentDeclaration<SwirlThumbnail, "swirl-thumbnail", never, { "alt": "alt"; "format": "format"; "progress": "progress"; "progressLabel": "progressLabel"; "removeButtonLabel": "removeButtonLabel"; "showRemoveButton": "showRemoveButton"; "size": "size"; "src": "src"; "timestamp": "timestamp"; }, {}, never, ["*"], false>;
3016
3016
  }
3017
3017
  export declare interface SwirlTimeInput extends Components.SwirlTimeInput {
3018
+ /**
3019
+ *
3020
+ */
3021
+ inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
3022
+ /**
3023
+ *
3024
+ */
3025
+ inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
3018
3026
  /**
3019
3027
  *
3020
3028
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.129.1",
3
+ "version": "0.131.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -14,7 +14,7 @@
14
14
  "@angular/platform-browser": "^14.1.0",
15
15
  "@angular/platform-browser-dynamic": "^14.1.0",
16
16
  "@angular/router": "^14.1.0",
17
- "@getflip/swirl-components": "^0.129.1",
17
+ "@getflip/swirl-components": "^0.131.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.11.4"
@@ -6736,6 +6736,14 @@ export class SwirlThumbnail {
6736
6736
 
6737
6737
 
6738
6738
  export declare interface SwirlTimeInput extends Components.SwirlTimeInput {
6739
+ /**
6740
+ *
6741
+ */
6742
+ inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
6743
+ /**
6744
+ *
6745
+ */
6746
+ inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
6739
6747
  /**
6740
6748
  *
6741
6749
  */
@@ -6758,7 +6766,7 @@ export class SwirlTimeInput {
6758
6766
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6759
6767
  c.detach();
6760
6768
  this.el = r.nativeElement;
6761
- proxyOutputs(this, this.el, ['valueChange']);
6769
+ proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
6762
6770
  }
6763
6771
  }
6764
6772