@getflip/swirl-components-angular 0.223.0 → 0.224.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 +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +2 -2
- 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
|
@@ -219,6 +219,7 @@ export declare class SwirlChip {
|
|
|
219
219
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlChip, "swirl-chip", never, { "borderRadius": { "alias": "borderRadius"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "label": { "alias": "label"; "required": false; }; "pressed": { "alias": "pressed"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "progressBarLabel": { "alias": "progressBarLabel"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removeButtonLabel": { "alias": "removeButtonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
220
220
|
}
|
|
221
221
|
export declare interface SwirlChip extends Components.SwirlChip {
|
|
222
|
+
chipClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
222
223
|
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
223
224
|
}
|
|
224
225
|
export declare class SwirlColorInput {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.224.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.224.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -542,13 +542,15 @@ export class SwirlChip {
|
|
|
542
542
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
543
543
|
c.detach();
|
|
544
544
|
this.el = r.nativeElement;
|
|
545
|
-
proxyOutputs(this, this.el, ['remove']);
|
|
545
|
+
proxyOutputs(this, this.el, ['chipClick', 'remove']);
|
|
546
546
|
}
|
|
547
547
|
}
|
|
548
548
|
|
|
549
549
|
|
|
550
550
|
export declare interface SwirlChip extends Components.SwirlChip {
|
|
551
551
|
|
|
552
|
+
chipClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
553
|
+
|
|
552
554
|
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
553
555
|
}
|
|
554
556
|
|