@getflip/swirl-components-angular 0.83.0 → 0.84.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 +26 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +2 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +1 -0
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +1 -0
- 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 +8 -1
|
@@ -2781,6 +2781,10 @@ export declare class SwirlThemeProvider {
|
|
|
2781
2781
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlThemeProvider, "swirl-theme-provider", never, { "config": "config"; }, {}, never, ["*"], false>;
|
|
2782
2782
|
}
|
|
2783
2783
|
export declare interface SwirlThumbnail extends Components.SwirlThumbnail {
|
|
2784
|
+
/**
|
|
2785
|
+
*
|
|
2786
|
+
*/
|
|
2787
|
+
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
2784
2788
|
}
|
|
2785
2789
|
export declare class SwirlThumbnail {
|
|
2786
2790
|
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.84.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.85.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6232,7 +6232,13 @@ export class SwirlThemeProvider {
|
|
|
6232
6232
|
}
|
|
6233
6233
|
|
|
6234
6234
|
|
|
6235
|
-
export declare interface SwirlThumbnail extends Components.SwirlThumbnail {
|
|
6235
|
+
export declare interface SwirlThumbnail extends Components.SwirlThumbnail {
|
|
6236
|
+
/**
|
|
6237
|
+
*
|
|
6238
|
+
*/
|
|
6239
|
+
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
6240
|
+
|
|
6241
|
+
}
|
|
6236
6242
|
|
|
6237
6243
|
@ProxyCmp({
|
|
6238
6244
|
defineCustomElementFn: undefined,
|
|
@@ -6249,6 +6255,7 @@ export class SwirlThumbnail {
|
|
|
6249
6255
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
6250
6256
|
c.detach();
|
|
6251
6257
|
this.el = r.nativeElement;
|
|
6258
|
+
proxyOutputs(this, this.el, ['remove']);
|
|
6252
6259
|
}
|
|
6253
6260
|
}
|
|
6254
6261
|
|