@getflip/swirl-components-angular 0.239.0 → 0.240.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 +3 -3
- package/CHANGELOG.md +27 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +6 -5
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +5 -4
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +3 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +8 -3
|
@@ -6259,14 +6259,15 @@ let SwirlImageGridItem = class SwirlImageGridItem {
|
|
|
6259
6259
|
this.z = z;
|
|
6260
6260
|
c.detach();
|
|
6261
6261
|
this.el = r.nativeElement;
|
|
6262
|
-
proxyOutputs(this, this.el, ['imageError', 'imageLoad']);
|
|
6262
|
+
proxyOutputs(this, this.el, ['gifStarted', 'gifStopped', 'imageError', 'imageLoad']);
|
|
6263
6263
|
}
|
|
6264
6264
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwirlImageGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
6265
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SwirlImageGridItem, selector: "swirl-image-grid-item", inputs: { alt: "alt", icon: "icon", interactive: "interactive", loading: "loading", overlay: "overlay", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6265
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SwirlImageGridItem, selector: "swirl-image-grid-item", inputs: { alt: "alt", gifPauseLabel: "gifPauseLabel", gifPlayLabel: "gifPlayLabel", icon: "icon", interactive: "interactive", loading: "loading", overlay: "overlay", showGifControls: "showGifControls", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6266
6266
|
};
|
|
6267
6267
|
SwirlImageGridItem = __decorate([
|
|
6268
6268
|
ProxyCmp({
|
|
6269
|
-
inputs: ['alt', 'icon', 'interactive', 'loading', 'overlay', 'src']
|
|
6269
|
+
inputs: ['alt', 'gifPauseLabel', 'gifPlayLabel', 'icon', 'interactive', 'loading', 'overlay', 'showGifControls', 'src'],
|
|
6270
|
+
methods: ['play', 'pause']
|
|
6270
6271
|
})
|
|
6271
6272
|
], SwirlImageGridItem);
|
|
6272
6273
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwirlImageGridItem, decorators: [{
|
|
@@ -6276,7 +6277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6276
6277
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6277
6278
|
template: '<ng-content></ng-content>',
|
|
6278
6279
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
6279
|
-
inputs: ['alt', 'icon', 'interactive', 'loading', 'overlay', 'src'],
|
|
6280
|
+
inputs: ['alt', 'gifPauseLabel', 'gifPlayLabel', 'icon', 'interactive', 'loading', 'overlay', 'showGifControls', 'src'],
|
|
6280
6281
|
}]
|
|
6281
6282
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
6282
6283
|
let SwirlInlineError = class SwirlInlineError {
|