@getflip/swirl-components-angular 0.399.0 → 0.400.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.
@@ -9,10 +9,6 @@ Building entry point '@getflip/swirl-components-angular'
9
9
  ✔ Compiling with Angular sources in Ivy partial compilation mode.
10
10
  ✔ Generating FESM bundles
11
11
  - Copying assets
12
- ✔ Copying assets
13
- - Writing package manifest
14
- ✔ Writing package manifest
15
- ✔ Built @getflip/swirl-components-angular
16
12
 
17
13
  ------------------------------------------------------------------------------
18
14
  Built Angular Package
@@ -20,5 +16,9 @@ Built Angular Package
20
16
  - to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
21
17
  ------------------------------------------------------------------------------
22
18
 
23
- Build at: 2025-10-29T08:27:56.801Z - Time: 13478ms
19
+ Build at: 2025-10-30T11:22:51.369Z - Time: 13450ms
24
20
 
21
+ ✔ Copying assets
22
+ - Writing package manifest
23
+ ✔ Writing package manifest
24
+ ✔ Built @getflip/swirl-components-angular
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.400.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1294](https://github.com/getflip/swirl/pull/1294)
8
+ [`9d5e834ca`](https://github.com/getflip/swirl/commit/9d5e834ca27d9c6ece643c96e5bab17ccab4bf10)
9
+ Thanks [@joseabernardes](https://github.com/joseabernardes)! - Add clear event
10
+ to swirl-search
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ [[`9d5e834ca`](https://github.com/getflip/swirl/commit/9d5e834ca27d9c6ece643c96e5bab17ccab4bf10)]:
16
+ - @getflip/swirl-components@0.400.0
17
+
18
+ ## 0.399.1
19
+
20
+ ### Patch Changes
21
+
22
+ - [#1292](https://github.com/getflip/swirl/pull/1292)
23
+ [`7b2c0d1e0`](https://github.com/getflip/swirl/commit/7b2c0d1e05d01e2e576225944be1209927636ee7)
24
+ Thanks [@Sqrrl](https://github.com/Sqrrl)! - Use a contrasting avatar
25
+ background color when used inside a hovered or pressed card
26
+ - Updated dependencies
27
+ [[`7b2c0d1e0`](https://github.com/getflip/swirl/commit/7b2c0d1e05d01e2e576225944be1209927636ee7)]:
28
+ - @getflip/swirl-components@0.399.1
29
+
3
30
  ## 0.399.0
4
31
 
5
32
  ### Minor Changes
@@ -8463,7 +8463,7 @@ let SwirlSearch = class SwirlSearch {
8463
8463
  this.z = z;
8464
8464
  c.detach();
8465
8465
  this.el = r.nativeElement;
8466
- proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'inputInput', 'valueChange']);
8466
+ proxyOutputs(this, this.el, ['clear', 'inputBlur', 'inputFocus', 'inputInput', 'valueChange']);
8467
8467
  }
8468
8468
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
8469
8469
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSearch, isStandalone: false, selector: "swirl-search", inputs: { autoFocus: "autoFocus", clearButtonLabel: "clearButtonLabel", clearable: "clearable", disabled: "disabled", inputId: "inputId", inputName: "inputName", label: "label", placeholder: "placeholder", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });