{"version":3,"file":"image-hotspot.0xvNmX3C5J.js","sources":["../../../../src/organisms/image-hotspot/HotspotButton.tsx","../../../../src/_helpers/hotspotReducer.tsx","../../../../src/organisms/image-hotspot/HotspotContainer.tsx","../../../../src/_helpers/hotspot.ts","../../../../src/organisms/image-hotspot/ImageHotspot.tsx"],"sourcesContent":["import { HotspotButtonModel } from '@_types/organisms';\nimport { getModifiers } from '@helpers/functions';\n\ninterface Props extends HotspotButtonModel {\n handleButtonClick?: () => void;\n}\n\nconst HotspotButton = (model: Props) => {\n const styleModifiers = getModifiers(model, 'arjo-o-hotspot-button');\n const { handleButtonClick } = model;\n\n const handleClick = () => {\n handleButtonClick && handleButtonClick();\n };\n\n return
;\n};\n\nexport default HotspotButton;\n","import { Dispatch, createContext } from 'react';\nimport { Breakpoint } from './use-breakpoint';\n\nexport enum ActionTypeENUM {\n BREAKPOINT = 'BREAKPOINT',\n}\n\ntype BreakpointAction = {\n type?: ActionTypeENUM.BREAKPOINT;\n payload?: Breakpoint;\n};\n\ntype ActionType = BreakpointAction;\n\ninterface StateType {\n breakpoint?: Breakpoint;\n}\n\nconst StateCContext = createContext