Looking at the training video "Component Context - Spartacus Extensibility Live Coding Part 4 - SAP Commerce Cloud", it customizes the PDP image component by setting [cxOutletRef]="ProductDetailOutlets.IMAGE". Looking at the ProductDetailOutlets enum in Spartacus 2.0:
export declare enum ProductDetailOutlets {
INTRO = "PDP.INTRO",
PRICE = "PDP.PRICE",
SHARE = "PDP.SHARE",
SUMMARY = "PDP.SUMMARY"
}
There is no "IMAGE" any more. I tested and confirm I can customize PDP.SUMMARY, but then with Spartacus 2.0, how do I customize the IMAGE component on the PDP?
Thanks.