@getflip/swirl-components-angular 0.211.0 → 0.212.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 +14 -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
|
@@ -3078,6 +3078,7 @@ export declare class SwirlThumbnail {
|
|
|
3078
3078
|
export declare interface SwirlThumbnail extends Components.SwirlThumbnail {
|
|
3079
3079
|
edit: EventEmitter<CustomEvent<MouseEvent>>;
|
|
3080
3080
|
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
3081
|
+
thumbnailClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
3081
3082
|
}
|
|
3082
3083
|
export declare class SwirlTimeInput {
|
|
3083
3084
|
protected z: NgZone;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.212.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.212.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -7562,7 +7562,7 @@ export class SwirlThumbnail {
|
|
|
7562
7562
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7563
7563
|
c.detach();
|
|
7564
7564
|
this.el = r.nativeElement;
|
|
7565
|
-
proxyOutputs(this, this.el, ['edit', 'remove']);
|
|
7565
|
+
proxyOutputs(this, this.el, ['edit', 'remove', 'thumbnailClick']);
|
|
7566
7566
|
}
|
|
7567
7567
|
}
|
|
7568
7568
|
|
|
@@ -7572,6 +7572,8 @@ export declare interface SwirlThumbnail extends Components.SwirlThumbnail {
|
|
|
7572
7572
|
edit: EventEmitter<CustomEvent<MouseEvent>>;
|
|
7573
7573
|
|
|
7574
7574
|
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
7575
|
+
|
|
7576
|
+
thumbnailClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
7575
7577
|
}
|
|
7576
7578
|
|
|
7577
7579
|
|