{"version":3,"file":"static/chunks/32077.6079ffdb682333f1.js","mappings":"0GAAYA,mCAAAA,EAAAA,GAAAA,CAAAA,EAAAA,CAAAA,CAAAA,wLCuBL,SAASC,EAAOC,CAOU,KAPV,CACrBC,QAAAA,CAAO,CACPC,KAAAA,CAAI,CACJC,SAAAA,CAAQ,CACRC,WAAAA,CAAU,CACVC,SAAAA,CAAQ,CACRC,UAAAA,EAAY,EAAE,CACiB,CAPVN,EASfO,EAAMC,CAAAA,EAAAA,EAAAA,CAAAA,EAAgB,CAC1BN,KAAAA,EACAO,eAAgBR,CAClB,GAEA,MACE,GAAAS,EAAAC,GAAA,EAACC,EAAAA,CAAeA,CAAAA,UACbV,GAAQ,CAACE,GACR,GAAAM,EAAAG,IAAA,EAAAH,EAAAI,QAAA,YACE,GAAAJ,EAAAC,GAAA,EAACI,EAAAA,CAAMA,CAACC,GAAG,EACTV,UAAW,GAAqBD,MAAAA,CAAlBY,IAAAA,OAAAA,CAAe,KAA+CC,MAAA,CAA5Cb,EAAWY,GAAAA,CAAAA,oBAAAA,CAA8B,IACzEE,QAAQ,SACRC,QAAQ,UACRC,KAAK,OACLC,SAAUC,EAAAA,EAAcA,GAG1B,GAAAb,EAAAC,GAAA,EAACI,EAAAA,CAAMA,CAACC,GAAG,EACTV,UAAW,GAAuBD,MAAAA,CAApBY,IAAAA,SAAAA,CAAiB,KAAoDX,MAAAA,CAAjDD,EAAWY,GAAAA,CAAAA,sBAAAA,CAAgC,GAAG,KAA8BC,MAAA,CAA3BZ,GAAwB,IAC3GC,IAAKA,EACLY,QAAQ,SACRC,QAAQ,UACRC,KAAK,OACLC,SAAUE,EAAAA,EAAiBA,UAE1BrB,QAMb,gGCtCO,SAASsB,EAAiBzB,CAAgC,KAAhC,CAAE0B,WAAAA,CAAU,CAAE,GAAGC,EAAe,CAAhC3B,EACzB,CAAE4B,MAAAA,CAAK,CAAE,CAAGC,CAAAA,EAAAA,EAAAA,CAAAA,IAEZC,EAA+BC,EADEA,QAAQ,CACDC,qBAAqB,CAACF,KAAK,CAGzE,MACE,GAAApB,EAAAC,GAAA,EAACmB,EAAAA,CACCJ,WAAY,CACVO,OAAQ,GAAAvB,EAAAC,GAAA,EAACsB,SAAAA,CAAAA,GACTC,GAAI,GAAAxB,EAAAC,GAAA,EAACuB,KAAAA,CAAAA,GACLC,EAAG,GAAAzB,EAAAC,GAAA,EAACwB,IAAAA,CAAAA,GACJC,GAAI,GAAA1B,EAAAC,GAAA,EAACyB,KAAAA,CAAAA,GACLC,GAAI,GAAA3B,EAAAC,GAAA,EAAC0B,KAAAA,CAAAA,GACL,GAAGX,CAAU,EAEd,GAAGC,CAAK,EAGf,mBC3CAW,EAAAC,OAAA,EAAkB","sources":["webpack://_N_E/../../packages/common/src/api/coins/queryKeys.ts","webpack://_N_E/../../packages/common/src/components/Drawer/index.tsx","webpack://_N_E/../../packages/common/src/components/TransWithDefault/index.tsx","webpack://_N_E/../../packages/common/src/components/Drawer/styles.module.scss"],"sourcesContent":["export enum CoinsQueryKey {\n Primary = 'coins/',\n ById = 'coins/:id',\n}\n","/**\n * Imports required for the Drawer component\n */\nimport { PropsWithChildren, Ref } from 'react';\nimport { DrawerProps } from './props';\nimport styles from './styles.module.scss';\nimport { AnimatePresence, motion } from 'framer-motion';\nimport { containerVariants, overlayVariant } from './variants';\nimport { useClickOutside } from '@starsoft/common/hooks';\n\n/**\n * Drawer Component\n * A sliding drawer component with animation and click outside handling\n *\n * @param {Object} props - The component props\n * @param {Function} props.onClose - Function called when drawer should close\n * @param {boolean} props.open - Whether the drawer is open\n * @param {ReactNode} props.children - Child elements to render inside drawer\n * @param {boolean} props.isDisabled - Whether the drawer is disabled\n * @param {boolean} props.absolute - Whether to use absolute positioning\n * @param {string} props.className - Additional CSS classes\n * @returns {JSX.Element | null} Rendered drawer component or null if closed/disabled\n */\nexport function Drawer({\n onClose,\n open,\n children,\n isDisabled,\n absolute,\n className = '',\n}: PropsWithChildren) {\n // Hook to handle clicks outside the drawer\n const ref = useClickOutside({\n open,\n onClickOutside: onClose,\n });\n\n return (\n \n {open && !isDisabled && (\n <>\n \n\n }\n initial=\"hidden\"\n animate=\"visible\"\n exit=\"exit\"\n variants={containerVariants}\n >\n {children}\n \n \n )}\n \n );\n}\n","import { useSettingsStore } from '@starsoft/common/hooks/useSettingsStore';\nimport { CommonSettings } from '@starsoft/common/interfaces';\nimport { Trans as ITrans } from '@starsoft/common/interfaces/trans';\nimport { ComponentType } from 'react';\n\n/**\n * TransWithDefault Component\n * This component is responsible for rendering a translation component with default fallback.\n * It utilizes the settings store to determine the appropriate translation component to use.\n *\n * @param {ITrans} props - The properties for the component.\n * @param {object} props.components - Custom components to be used within the translation text.\n * @param {string} props.i18nKey - The internationalization key for the translation.\n * @param {object} props.values - The values to be interpolated in the translation string.\n *\n * @returns {JSX.Element} The rendered translation component with provided components and props.\n *\n * @example\n * // Usage example:\n * , br:
}}\n * i18nKey=\"example_key\"\n * values={{ name: 'John' }}\n * />\n */\nexport function TransWithDefault({ components, ...props }: ITrans) {\n const { state } = useSettingsStore();\n const settings: CommonSettings = state.settings;\n const Trans: ComponentType = settings.translationComponents.Trans;\n\n // Render the Trans component with provided components and props\n return (\n ,\n br:
,\n p:

,\n ul:

    ,\n li:
  • ,\n ...components,\n }}\n {...props}\n />\n );\n}\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"overlay\":\"styles_overlay__Cv8_E\",\"overlay--absolute\":\"styles_overlay--absolute__6QRCH\",\"container\":\"styles_container__mduiG\",\"container--absolute\":\"styles_container--absolute__i4ldS\",\"skeleton-animation\":\"styles_skeleton-animation__uQsox\"};"],"names":["CoinsQueryKey","Drawer","param","onClose","open","children","isDisabled","absolute","className","ref","useClickOutside","onClickOutside","react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__","jsx","AnimatePresence","jsxs","Fragment","motion","div","styles","concat","initial","animate","exit","variants","overlayVariant","containerVariants","TransWithDefault","components","props","state","useSettingsStore","Trans","settings","translationComponents","strong","br","p","ul","li","module","exports"],"sourceRoot":""}