{"version":3,"file":"MiniCart-DJD3FBZO-chunk.js","sources":["../../../GSDClient/Scripts/Components/MiniCart/CartItemRow.tsx","../../../GSDClient/Scripts/Components/MiniCart/CartItemSummary.tsx","../../../GSDClient/Scripts/Components/MiniCart.tsx"],"sourcesContent":["import toast from 'react-hot-toast';\n\nimport {\n handleItemDataLayerPush,\n handleOrderItemClickDatalayerPush,\n} from 'Utils/dataLayerPushService';\nimport { dpr } from 'Utils/dpr';\n\nimport { IAlphaMiniCartModel, IOrderItem } from 'Types/Litium';\nimport CtaButton from 'Components/CtaButton';\nimport Divider from 'Components/Divider';\nimport QuantityInputField from 'Components/Forms/QuantityInputField';\n\nimport RemoveIcon from 'Icons/closeThin.svg?react';\n\nconst CartItemRow = ({\n items,\n isLoading,\n updateCartRow,\n translations,\n}: {\n items: IOrderItem[];\n isLoading: boolean;\n updateCartRow: (\n id: string,\n quantity: string,\n type: 'decrement' | 'increment' | 'delete'\n ) => void;\n translations: IAlphaMiniCartModel['translations'];\n}) => {\n const renderPrices = (item: IOrderItem) => (\n
{translations.removeOrderRowConfirm}
\n{translations.checkOutItemNumberLabel}:
\n{item.baseId}
\n{translations.checkOutColorLabel}:
\n{`${item.color}`}
\n{translations.checkOutSizeLabel}:
\n{`${item.size}`}
\n