@getflip/swirl-components-angular 0.399.1 → 0.401.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.
@@ -2888,6 +2888,7 @@ export declare class SwirlSearch {
2888
2888
  static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSearch, "swirl-search", never, { "autoFocus": { "alias": "autoFocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
2889
2889
  }
2890
2890
  export declare interface SwirlSearch extends Components.SwirlSearch {
2891
+ clear: EventEmitter<CustomEvent<void>>;
2891
2892
  inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
2892
2893
  inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
2893
2894
  inputInput: EventEmitter<CustomEvent<string>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.399.1",
3
+ "version": "0.401.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -22,9 +22,9 @@
22
22
  "@angular/platform-browser": "19.2.3",
23
23
  "@angular/platform-browser-dynamic": "19.2.3",
24
24
  "@angular/router": "19.2.3",
25
- "@getflip/swirl-components": "^0.399.1",
26
- "rxjs": "~7.8.0",
27
- "tslib": "^2.3.0",
25
+ "@getflip/swirl-components": "0.401.0",
26
+ "rxjs": "7.8.2",
27
+ "tslib": "2.4.0",
28
28
  "zone.js": "0.15.0"
29
29
  },
30
30
  "devDependencies": {
@@ -7391,13 +7391,15 @@ export class SwirlSearch {
7391
7391
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7392
7392
  c.detach();
7393
7393
  this.el = r.nativeElement;
7394
- proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'inputInput', 'valueChange']);
7394
+ proxyOutputs(this, this.el, ['clear', 'inputBlur', 'inputFocus', 'inputInput', 'valueChange']);
7395
7395
  }
7396
7396
  }
7397
7397
 
7398
7398
 
7399
7399
  export declare interface SwirlSearch extends Components.SwirlSearch {
7400
7400
 
7401
+ clear: EventEmitter<CustomEvent<void>>;
7402
+
7401
7403
  inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
7402
7404
 
7403
7405
  inputFocus: EventEmitter<CustomEvent<FocusEvent>>;