@getflip/swirl-components-angular 0.30.2 → 0.32.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 +2 -2
- package/CHANGELOG.md +32 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +6 -5
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +5 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +5 -4
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -3
|
@@ -452,7 +452,8 @@ SwirlCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
452
452
|
SwirlCarousel = __decorate([
|
|
453
453
|
ProxyCmp({
|
|
454
454
|
defineCustomElementFn: undefined,
|
|
455
|
-
inputs: ['label', 'loopAround', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
455
|
+
inputs: ['label', 'loopAround', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
456
|
+
methods: ['scrollToSlide']
|
|
456
457
|
})
|
|
457
458
|
], SwirlCarousel);
|
|
458
459
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlCarousel, decorators: [{
|
|
@@ -3932,11 +3933,11 @@ let SwirlShellLayout = class SwirlShellLayout {
|
|
|
3932
3933
|
}
|
|
3933
3934
|
};
|
|
3934
3935
|
SwirlShellLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlShellLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3935
|
-
SwirlShellLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlShellLayout, selector: "swirl-shell-layout", inputs: { mainNavigationLabel: "mainNavigationLabel", sidebarToggleLabel: "sidebarToggleLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3936
|
+
SwirlShellLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlShellLayout, selector: "swirl-shell-layout", inputs: { hideSidebar: "hideSidebar", mainNavigationLabel: "mainNavigationLabel", sidebarToggleLabel: "sidebarToggleLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3936
3937
|
SwirlShellLayout = __decorate([
|
|
3937
3938
|
ProxyCmp({
|
|
3938
3939
|
defineCustomElementFn: undefined,
|
|
3939
|
-
inputs: ['mainNavigationLabel', 'sidebarToggleLabel'],
|
|
3940
|
+
inputs: ['hideSidebar', 'mainNavigationLabel', 'sidebarToggleLabel'],
|
|
3940
3941
|
methods: ['collapseSidebar', 'extendSidebar']
|
|
3941
3942
|
})
|
|
3942
3943
|
], SwirlShellLayout);
|
|
@@ -3946,7 +3947,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3946
3947
|
selector: 'swirl-shell-layout',
|
|
3947
3948
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3948
3949
|
template: '<ng-content></ng-content>',
|
|
3949
|
-
inputs: ['mainNavigationLabel', 'sidebarToggleLabel']
|
|
3950
|
+
inputs: ['hideSidebar', 'mainNavigationLabel', 'sidebarToggleLabel']
|
|
3950
3951
|
}]
|
|
3951
3952
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3952
3953
|
let SwirlShellNavigationItem = class SwirlShellNavigationItem {
|