@getflip/swirl-components-angular 0.81.0 → 0.83.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 +33 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +5 -5
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +4 -4
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +5 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +7 -3
|
@@ -595,7 +595,7 @@ let SwirlDateInput = class SwirlDateInput {
|
|
|
595
595
|
this.z = z;
|
|
596
596
|
c.detach();
|
|
597
597
|
this.el = r.nativeElement;
|
|
598
|
-
proxyOutputs(this, this.el, ['valueChange']);
|
|
598
|
+
proxyOutputs(this, this.el, ['invalidInput', 'valueChange']);
|
|
599
599
|
}
|
|
600
600
|
};
|
|
601
601
|
SwirlDateInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlDateInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -4308,11 +4308,11 @@ let SwirlLightbox = class SwirlLightbox {
|
|
|
4308
4308
|
}
|
|
4309
4309
|
};
|
|
4310
4310
|
SwirlLightbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlLightbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
4311
|
-
SwirlLightbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlLightbox, selector: "swirl-lightbox", inputs: { closeButtonLabel: "closeButtonLabel", downloadButtonLabel: "downloadButtonLabel", label: "label", menuLabel: "menuLabel", menuTriggerLabel: "menuTriggerLabel", nextSlideButtonLabel: "nextSlideButtonLabel", previousSlideButtonLabel: "previousSlideButtonLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4311
|
+
SwirlLightbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlLightbox, selector: "swirl-lightbox", inputs: { closeButtonLabel: "closeButtonLabel", downloadButtonLabel: "downloadButtonLabel", hideMenu: "hideMenu", label: "label", menuLabel: "menuLabel", menuTriggerLabel: "menuTriggerLabel", nextSlideButtonLabel: "nextSlideButtonLabel", previousSlideButtonLabel: "previousSlideButtonLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4312
4312
|
SwirlLightbox = __decorate([
|
|
4313
4313
|
ProxyCmp({
|
|
4314
4314
|
defineCustomElementFn: undefined,
|
|
4315
|
-
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
4315
|
+
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
4316
4316
|
methods: ['open', 'close', 'activateSlide']
|
|
4317
4317
|
})
|
|
4318
4318
|
], SwirlLightbox);
|
|
@@ -4322,7 +4322,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
4322
4322
|
selector: 'swirl-lightbox',
|
|
4323
4323
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4324
4324
|
template: '<ng-content></ng-content>',
|
|
4325
|
-
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
4325
|
+
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
4326
4326
|
}]
|
|
4327
4327
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
4328
4328
|
let SwirlLink = class SwirlLink {
|