@getflip/swirl-components-angular 0.399.1 → 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.
- package/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +15 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +3 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -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-
|
|
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,20 @@
|
|
|
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
|
+
|
|
3
18
|
## 0.399.1
|
|
4
19
|
|
|
5
20
|
### Patch 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 });
|