@getflip/swirl-components-angular 0.39.0 → 0.40.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 +26 -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
|
@@ -3659,15 +3659,15 @@ let SwirlPagination = class SwirlPagination {
|
|
|
3659
3659
|
this.z = z;
|
|
3660
3660
|
c.detach();
|
|
3661
3661
|
this.el = r.nativeElement;
|
|
3662
|
-
proxyOutputs(this, this.el, ['setPage']);
|
|
3662
|
+
proxyOutputs(this, this.el, ['setPage', 'setPageSize']);
|
|
3663
3663
|
}
|
|
3664
3664
|
};
|
|
3665
3665
|
SwirlPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3666
|
-
SwirlPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlPagination, selector: "swirl-pagination", inputs: { firstPageButtonLabel: "firstPageButtonLabel", label: "label", lastPageButtonLabel: "lastPageButtonLabel", nextButtonLabel: "nextButtonLabel", page: "page", pageLabel: "pageLabel", pageSelectLabel: "pageSelectLabel", pages: "pages", prevButtonLabel: "prevButtonLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3666
|
+
SwirlPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlPagination, selector: "swirl-pagination", inputs: { firstPageButtonLabel: "firstPageButtonLabel", label: "label", lastPageButtonLabel: "lastPageButtonLabel", nextButtonLabel: "nextButtonLabel", page: "page", pageLabel: "pageLabel", pageSelectLabel: "pageSelectLabel", pageSize: "pageSize", pageSizeOptions: "pageSizeOptions", pageSizeSelectLabel: "pageSizeSelectLabel", pages: "pages", prevButtonLabel: "prevButtonLabel", showPageSizeSelect: "showPageSizeSelect", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3667
3667
|
SwirlPagination = __decorate([
|
|
3668
3668
|
ProxyCmp({
|
|
3669
3669
|
defineCustomElementFn: undefined,
|
|
3670
|
-
inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pages', 'prevButtonLabel', 'variant']
|
|
3670
|
+
inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pageSize', 'pageSizeOptions', 'pageSizeSelectLabel', 'pages', 'prevButtonLabel', 'showPageSizeSelect', 'variant']
|
|
3671
3671
|
})
|
|
3672
3672
|
], SwirlPagination);
|
|
3673
3673
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlPagination, decorators: [{
|
|
@@ -3676,7 +3676,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3676
3676
|
selector: 'swirl-pagination',
|
|
3677
3677
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3678
3678
|
template: '<ng-content></ng-content>',
|
|
3679
|
-
inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pages', 'prevButtonLabel', 'variant']
|
|
3679
|
+
inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pageSize', 'pageSizeOptions', 'pageSizeSelectLabel', 'pages', 'prevButtonLabel', 'showPageSizeSelect', 'variant']
|
|
3680
3680
|
}]
|
|
3681
3681
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3682
3682
|
let SwirlPdfReader = class SwirlPdfReader {
|