{ "version": 3, "sources": ["src/app/modules/shell/aspect-ratio/aspect-ratio.component.ts", "src/app/modules/shell/aspect-ratio/aspect-ratio.component.html", "src/app/utils/transfer-state-helper.ts", "src/app/modules/shell/image-shell/image-shell.component.ts", "src/app/modules/shell/image-shell/image-shell.component.html"], "sourcesContent": ["import { Component, Input, HostBinding } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'app-aspect-ratio',\r\n templateUrl: './aspect-ratio.component.html',\r\n styleUrls: ['./aspect-ratio.component.scss'],\r\n standalone: true\r\n})\r\nexport class AspectRatioComponent {\r\n\r\n @HostBinding('style.padding') ratioPadding = '0px';\r\n\r\n @Input()\r\n set ratio(ratio: { w: number, h: number }) {\r\n ratio = (ratio !== undefined && ratio !== null) ? ratio : {w: 1, h: 1};\r\n\r\n const heightRatio = (ratio.h / ratio.w * 100) + '%';\r\n\r\n // Conserve aspect ratio (see: http://stackoverflow.com/a/10441480/1116959)\r\n this.ratioPadding = '0px 0px ' + heightRatio + ' 0px';\r\n }\r\n\r\n constructor() { }\r\n}\r\n", "