@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
|
@@ -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.
|
|
3
|
+
"version": "0.400.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
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.
|
|
25
|
+
"@getflip/swirl-components": "^0.400.0",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "^2.3.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -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>>;
|