{"version":3,"file":"ProductList-DkLE3jqp-chunk.js","sources":["../../../GSDClient/Scripts/Pages/ProductListingPage/ProductList.tsx"],"sourcesContent":["import { AnimatePresence, motion } from 'framer-motion';\n\nimport {\n IBlockViewModel,\n IProductItemViewModel,\n IWishListTranslations,\n} from 'Types/Litium';\nimport { ISrcSetSize } from 'Types/shared';\nimport BlockRenderer from 'Blocks/BlockRenderer';\nimport ProductCard from 'Components/ProductCard/ProductCard';\n\nconst ProductList = ({\n products,\n quickBuyProduct,\n columns = 5,\n additionalTranslations,\n srcSetSizes = {\n default: { width: 156, height: 222 },\n md: { width: 356, height: 507 },\n lg: { width: 166, height: 238 },\n xl: { width: 250, height: 357 },\n xxl: { width: 368, height: 525 },\n },\n blockAreas,\n}: {\n products: IProductItemViewModel[];\n columns?: number;\n srcSetSizes?: ISrcSetSize;\n quickBuyProduct?: boolean;\n additionalTranslations?: IWishListTranslations;\n blockAreas?: { [key: string]: IBlockViewModel[] };\n}) => (\n