@getflip/swirl-components-angular 0.163.0 → 0.165.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 +28 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +6 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +5 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +5 -3
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +17 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +26 -4
|
@@ -302,14 +302,15 @@ let SwirlAvatar = class SwirlAvatar {
|
|
|
302
302
|
this.z = z;
|
|
303
303
|
c.detach();
|
|
304
304
|
this.el = r.nativeElement;
|
|
305
|
+
proxyOutputs(this, this.el, ['imageError', 'imageLoad']);
|
|
305
306
|
}
|
|
306
307
|
};
|
|
307
308
|
SwirlAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
308
|
-
SwirlAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAvatar, selector: "swirl-avatar", inputs: { badge: "badge", badgePosition: "badgePosition", color: "color", icon: "icon", initials: "initials", interactive: "interactive", label: "label", showLabel: "showLabel", size: "size", src: "src", toolPosition: "toolPosition", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
309
|
+
SwirlAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAvatar, selector: "swirl-avatar", inputs: { badge: "badge", badgePosition: "badgePosition", color: "color", icon: "icon", initials: "initials", interactive: "interactive", label: "label", loading: "loading", showLabel: "showLabel", size: "size", src: "src", toolPosition: "toolPosition", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
309
310
|
SwirlAvatar = __decorate([
|
|
310
311
|
ProxyCmp({
|
|
311
312
|
defineCustomElementFn: undefined,
|
|
312
|
-
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'toolPosition', 'variant']
|
|
313
|
+
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'loading', 'showLabel', 'size', 'src', 'toolPosition', 'variant']
|
|
313
314
|
})
|
|
314
315
|
], SwirlAvatar);
|
|
315
316
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAvatar, decorators: [{
|
|
@@ -318,7 +319,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
318
319
|
selector: 'swirl-avatar',
|
|
319
320
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
320
321
|
template: '<ng-content></ng-content>',
|
|
321
|
-
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'toolPosition', 'variant']
|
|
322
|
+
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'loading', 'showLabel', 'size', 'src', 'toolPosition', 'variant']
|
|
322
323
|
}]
|
|
323
324
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
324
325
|
let SwirlAvatarGroup = class SwirlAvatarGroup {
|
|
@@ -5004,6 +5005,7 @@ let SwirlImageGridItem = class SwirlImageGridItem {
|
|
|
5004
5005
|
this.z = z;
|
|
5005
5006
|
c.detach();
|
|
5006
5007
|
this.el = r.nativeElement;
|
|
5008
|
+
proxyOutputs(this, this.el, ['imageError', 'imageLoad']);
|
|
5007
5009
|
}
|
|
5008
5010
|
};
|
|
5009
5011
|
SwirlImageGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlImageGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|