@getflip/swirl-components-angular 0.49.2 → 0.50.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 +2 -2
- package/CHANGELOG.md +23 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +2 -2
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +4 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +5 -1
|
@@ -1731,6 +1731,10 @@ export declare interface SwirlSearch extends Components.SwirlSearch {
|
|
|
1731
1731
|
*
|
|
1732
1732
|
*/
|
|
1733
1733
|
inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
1734
|
+
/**
|
|
1735
|
+
*
|
|
1736
|
+
*/
|
|
1737
|
+
inputInput: EventEmitter<CustomEvent<string>>;
|
|
1734
1738
|
/**
|
|
1735
1739
|
*
|
|
1736
1740
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.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.
|
|
17
|
+
"@getflip/swirl-components": "^0.51.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3869,6 +3869,10 @@ export declare interface SwirlSearch extends Components.SwirlSearch {
|
|
|
3869
3869
|
*
|
|
3870
3870
|
*/
|
|
3871
3871
|
inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
3872
|
+
/**
|
|
3873
|
+
*
|
|
3874
|
+
*/
|
|
3875
|
+
inputInput: EventEmitter<CustomEvent<string>>;
|
|
3872
3876
|
/**
|
|
3873
3877
|
*
|
|
3874
3878
|
*/
|
|
@@ -3891,7 +3895,7 @@ export class SwirlSearch {
|
|
|
3891
3895
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3892
3896
|
c.detach();
|
|
3893
3897
|
this.el = r.nativeElement;
|
|
3894
|
-
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
|
|
3898
|
+
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'inputInput', 'valueChange']);
|
|
3895
3899
|
}
|
|
3896
3900
|
}
|
|
3897
3901
|
|