@getflip/swirl-components-angular 0.459.0 → 0.459.1
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 +13 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/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 +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -20,5 +20,5 @@ Built Angular Package
|
|
|
20
20
|
- to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
|
|
21
21
|
------------------------------------------------------------------------------
|
|
22
22
|
|
|
23
|
-
Build at: 2026-03-
|
|
23
|
+
Build at: 2026-03-13T11:57:46.894Z - Time: 13808ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.459.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1528](https://github.com/getflip/swirl/pull/1528)
|
|
8
|
+
[`279a5136a`](https://github.com/getflip/swirl/commit/279a5136aa391056c63b7dc635be2b0b18268802)
|
|
9
|
+
Thanks [@joseabernardes](https://github.com/joseabernardes)! - Fix rendering
|
|
10
|
+
of images in swirl-file-viewer-pdf
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
[[`279a5136a`](https://github.com/getflip/swirl/commit/279a5136aa391056c63b7dc635be2b0b18268802)]:
|
|
14
|
+
- @getflip/swirl-components@0.459.1
|
|
15
|
+
|
|
3
16
|
## 0.459.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -1346,11 +1346,11 @@ let SwirlFileViewerPdf = class SwirlFileViewerPdf {
|
|
|
1346
1346
|
proxyOutputs(this, this.el, ['activate', 'visiblePagesChange']);
|
|
1347
1347
|
}
|
|
1348
1348
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlFileViewerPdf, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1349
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlFileViewerPdf, isStandalone: false, selector: "swirl-file-viewer-pdf", inputs: { errorMessage: "errorMessage", file: "file", singlePageMode: "singlePageMode", viewMode: "viewMode", workerSrc: "workerSrc", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1349
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlFileViewerPdf, isStandalone: false, selector: "swirl-file-viewer-pdf", inputs: { errorMessage: "errorMessage", file: "file", singlePageMode: "singlePageMode", viewMode: "viewMode", wasmUrl: "wasmUrl", workerSrc: "workerSrc", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1350
1350
|
};
|
|
1351
1351
|
SwirlFileViewerPdf = __decorate([
|
|
1352
1352
|
ProxyCmp({
|
|
1353
|
-
inputs: ['errorMessage', 'file', 'singlePageMode', 'viewMode', 'workerSrc', 'zoom'],
|
|
1353
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'viewMode', 'wasmUrl', 'workerSrc', 'zoom'],
|
|
1354
1354
|
methods: ['getThumbnails', 'print', 'nextPage', 'previousPage', 'setPage']
|
|
1355
1355
|
})
|
|
1356
1356
|
], SwirlFileViewerPdf);
|
|
@@ -1361,7 +1361,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
1361
1361
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1362
1362
|
template: '<ng-content></ng-content>',
|
|
1363
1363
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1364
|
-
inputs: ['errorMessage', { name: 'file', required: true }, 'singlePageMode', 'viewMode', 'workerSrc', 'zoom'],
|
|
1364
|
+
inputs: ['errorMessage', { name: 'file', required: true }, 'singlePageMode', 'viewMode', 'wasmUrl', 'workerSrc', 'zoom'],
|
|
1365
1365
|
standalone: false
|
|
1366
1366
|
}]
|
|
1367
1367
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|