@getflip/swirl-components-angular 0.7.4 → 0.7.5
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 +12 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +5 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +4 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +4 -3
- 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 +3 -2
|
@@ -328,7 +328,7 @@ export declare class FlipFileViewerImage {
|
|
|
328
328
|
protected el: HTMLElement;
|
|
329
329
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
330
330
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlipFileViewerImage, never>;
|
|
331
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlipFileViewerImage, "flip-file-viewer-image", never, { "description": "description"; "errorMessage": "errorMessage"; "file": "file"; }, {}, never, ["*"], false>;
|
|
331
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlipFileViewerImage, "flip-file-viewer-image", never, { "description": "description"; "errorMessage": "errorMessage"; "file": "file"; "maxZoom": "maxZoom"; }, {}, never, ["*"], false>;
|
|
332
332
|
}
|
|
333
333
|
export declare interface FlipFileViewerPdf extends Components.FlipFileViewerPdf {
|
|
334
334
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.5",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.8.
|
|
17
|
+
"@getflip/swirl-components": "^0.8.5",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -692,13 +692,14 @@ export declare interface FlipFileViewerImage extends Components.FlipFileViewerIm
|
|
|
692
692
|
|
|
693
693
|
@ProxyCmp({
|
|
694
694
|
defineCustomElementFn: undefined,
|
|
695
|
-
inputs: ['description', 'errorMessage', 'file']
|
|
695
|
+
inputs: ['description', 'errorMessage', 'file', 'maxZoom'],
|
|
696
|
+
methods: ['getZoom', 'resetZoom']
|
|
696
697
|
})
|
|
697
698
|
@Component({
|
|
698
699
|
selector: 'flip-file-viewer-image',
|
|
699
700
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
700
701
|
template: '<ng-content></ng-content>',
|
|
701
|
-
inputs: ['description', 'errorMessage', 'file']
|
|
702
|
+
inputs: ['description', 'errorMessage', 'file', 'maxZoom']
|
|
702
703
|
})
|
|
703
704
|
export class FlipFileViewerImage {
|
|
704
705
|
protected el: HTMLElement;
|