{"version":3,"file":"index.DvYVRtig.js","sources":["../../../../../../../node_modules/@babylon/ui-kit-helpers/esm/fetchOrigin.mjs","../../../../../../../node_modules/@babylon/ui-kit-forms/esm/components/others/origin/views/desktop/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-forms/esm/components/others/origin/views/desktop/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-forms/esm/components/others/origin/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-hooks/esm/media/useDown.mjs","../../../../../../../node_modules/@babylon/ui-kit-structures/esm/components/others/slider/constants.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/carousel-product/views/desktop/card-view-more/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/carousel-product/views/desktop/card-view-more/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-cards/esm/components/cards/benefits-card/views/desktop/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-cards/esm/components/cards/benefits-card/views/desktop/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/banner-campaign-vertical/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/banner-campaign-vertical/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-structures/esm/components/others/title-with-content/views/desktop/themes/styles/veci.mjs","../../../../../../../node_modules/@babylon/ui-kit-structures/esm/components/others/title-with-content/views/desktop/themes/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-structures/esm/components/others/title-with-content/views/desktop/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-structures/esm/components/others/title-with-content/views/desktop/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-structures/esm/components/others/title-with-content/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/carousel-product/views/desktop/themes/styles/veci.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/carousel-product/views/desktop/themes/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/carousel-product/views/desktop/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-carousels/esm/components/carousel-product/views/desktop/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-wrappers/esm/helpers/transports/carousel-product/desktop/index.mjs","../../../../../../../node_modules/@babylon/ui-kit-wrappers/esm/components/transports/carousel-product/views/desktop/styled.mjs","../../../../../../../node_modules/@babylon/ui-kit-wrappers/esm/components/transports/carousel-product/views/desktop/index.mjs"],"sourcesContent":["const fetchPostOrigin = async (airportCode, baseUrl, endpoint = '/partnershipshowcase/origin')=>{\n const url = endpoint.startsWith('http') ? endpoint : `${baseUrl}${endpoint}`;\n await fetch(url, {\n credentials: 'include',\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n },\n body: JSON.stringify({\n airportcode: airportCode\n })\n }).then((response)=>{\n if (!response.ok || response.status != 200) {\n console.error('[ERROR] fetchPostOrigin response -', response);\n throw new Error(response.statusText);\n }\n // Reload page\n window.location.reload();\n }).catch((error)=>console.error('[ERROR] fetchPostOrigin error -', error));\n};\n\nexport { fetchPostOrigin };\n//# sourceMappingURL=fetchOrigin.mjs.map\n","import Select$1 from '../../../../inputs/select/index.mjs';\nimport styled from 'styled-components';\n\nconst Select = /*#__PURE__*/ styled(Select$1).withConfig({\n displayName: \"Select\"\n})([\n `width:fit-content;div,input{background-color:transparent;}`\n]);\n\nexport { Select };\n//# sourceMappingURL=styled.mjs.map\n","import { jsx } from 'react/jsx-runtime';\nimport contextBabylon from '@babylon/ui-kit-context';\nimport { fetchPostOrigin } from '@babylon/ui-kit-helpers/fetchOrigin';\nimport { useContext } from 'react';\nimport { Select } from './styled.mjs';\n\nconst OriginDesktop = (props)=>{\n const { departure, endpoint } = props ?? {};\n const selectedValue = departure?.find((item)=>item.selected) ?? departure[0];\n const { BaseUrl } = useContext(contextBabylon);\n const handleOnChange = (e)=>{\n if (!e?.value) return;\n fetchPostOrigin(`${e.value}`, BaseUrl ?? '', endpoint);\n };\n return /*#__PURE__*/ jsx(Select, {\n options: departure,\n isMulti: false,\n defaultValue: selectedValue,\n onChange: (e)=>handleOnChange(e)\n });\n};\n\nexport { OriginDesktop as default };\n//# sourceMappingURL=index.mjs.map\n","import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\nimport OriginDesktop from './views/desktop/index.mjs';\n\nconst Origin = generateViewsComponent(OriginDesktop);\n\nexport { Origin as default };\n//# sourceMappingURL=index.mjs.map\n","import { checkIfMobile } from '@babylon/ui-kit-helpers/views';\nimport media from '@babylon/ui-kit-styles/common/media';\nimport { useMediaQuery, useIsClient } from 'usehooks-ts';\nimport { useDevice } from '../useDevice.mjs';\n\n/**\n * @deprecated\n * Try to make the style changes in the css to avoid React hydration problems.\n */ const useDown = (key)=>{\n const string = media.down(key).split('@media ')[1];\n const matches = useMediaQuery(string);\n const isClient = useIsClient();\n const device = useDevice();\n if (!isClient) {\n return checkIfMobile(device);\n }\n return matches;\n};\n\nexport { useDown as default, useDown };\n//# sourceMappingURL=useDown.mjs.map\n","// Common SliderProps\nfunction sliderConstantsProps(theme) {\n const slider = {\n breakpoints: {\n [theme.breakpoints['2xl']]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.xl]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.tablet]: {\n perPage: 3,\n perMove: 3,\n pagination: true,\n navigation: false,\n arrows: false\n },\n [theme.breakpoints.lg]: {\n perPage: 3,\n perMove: 3\n }\n },\n perPage: 5,\n perMove: 5,\n pagination: false,\n arrows: true,\n paginationVariant: 'bottom',\n speed: 1000,\n gap: 12\n };\n return slider;\n}\n\nexport { sliderConstantsProps };\n//# sourceMappingURL=constants.mjs.map\n","import { BoxShadowWithHover } from '@babylon/ui-kit-styles/common/mixins/box-shadow.styled';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { BorderRadius } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nconst CardBox = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"CardBox\"\n})([\n `display:block;height:100%;padding:2px;`\n]);\nconst CardWrapper = /*#__PURE__*/ styled.article.withConfig({\n displayName: \"CardWrapper\"\n})([\n ``,\n ` `,\n ` `,\n ` background-color:`,\n `;height:100%;overflow:hidden;`\n], BorderRadius({\n all: '4px'\n}), BoxShadowWithHover, FlexMixin({\n direction: 'column'\n}), ({ theme })=>theme.colors.white.base);\nconst CardLink = /*#__PURE__*/ styled.a.withConfig({\n displayName: \"CardLink\"\n})([\n `display:block;height:100%;p{`,\n ` color:`,\n `;left:0;position:absolute;text-align:center;top:calc(50% + 20px);width:100%;&::before{border:1px solid `,\n `;`,\n ` content:'';height:70px;left:50%;top:-48px;position:absolute;transform:translate(-50%,-50%);width:70px;z-index:`,\n `;}&::after{color:`,\n `;content:'+';font-size:50px;line-height:70px;`,\n ` text-align:center;left:50%;top:-50px;position:absolute;transform:translate(-50%,-50%);width:70px;z-index:`,\n `;}}`\n], FontMixin({\n size: 'base',\n weight: 'regular'\n}), ({ theme })=>theme.colors.primary.light, ({ theme })=>theme.colors.primary.light, BorderRadius({\n all: '50%'\n}), ({ theme })=>theme.zIndex.low, ({ theme })=>theme.colors.primary.light, FontMixin({\n weight: 'light'\n}), ({ theme })=>theme.zIndex.low);\n\nexport { CardBox, CardLink, CardWrapper };\n//# sourceMappingURL=styled.mjs.map\n","import { jsx } from 'react/jsx-runtime';\nimport { nullsToUndefined } from '@babylon/ui-kit-helpers/null';\nimport { CardBox, CardWrapper, CardLink } from './styled.mjs';\n\nconst CardViewMore = ({ link, content })=>/*#__PURE__*/ jsx(CardBox, {\n \"data-testid\": \"CardViewMore\",\n children: /*#__PURE__*/ jsx(CardWrapper, {\n children: /*#__PURE__*/ jsx(CardLink, {\n ...nullsToUndefined(link),\n children: /*#__PURE__*/ jsx(\"p\", {\n children: content\n })\n })\n })\n });\n\nexport { CardViewMore as default };\n//# sourceMappingURL=index.mjs.map\n","import { BoxShadowWithHover } from '@babylon/ui-kit-styles/common/mixins/box-shadow.styled';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { BorderRadius } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nconst BenefitsCardWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"BenefitsCardWrapper\"\n})([\n ``,\n ` `,\n ` background-color:`,\n `;margin-bottom:18px;margin-top:4px;max-height:100%;min-width:300px;max-width:320px;`,\n ` &.is-tablet{`,\n ` margin-top:0;max-height:unset;min-width:unset;max-width:unset;height:auto;min-height:84px;width:calc(100% - 4px);margin-left:2px;column-gap:40px;}`\n], BorderRadius({\n all: '4px'\n}), FlexMixin({\n direction: 'column',\n align: 'center'\n}), ({ theme })=>theme.colors.primary.light, BoxShadowWithHover, FlexMixin({\n direction: 'row',\n justify: 'space-between'\n}));\nconst BenefitsCardTitle = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"BenefitsCardTitle\"\n})([\n `background-color:`,\n `;color:`,\n `;font-family:`,\n `;`,\n ` `,\n ` margin-bottom:40px;min-width:100%;padding:20px;z-index:10;`,\n ` position:relative;text-align:center;margin-bottom:40px;min-width:100%;&::after{background-color:`,\n `;bottom:-15px;content:'';height:20%;position:absolute;right:0;transform:skewY(-5deg);width:100%;z-index:0;}&.is-tablet{`,\n `;`,\n ` line-height:26px;`,\n ` z-index:1;padding:0;margin-bottom:0;min-width:unset;width:30%;height:84px;&::before{`,\n `;height:100%;width:18px;content:'';right:-8px;position:absolute;transform:skew(-13deg);z-index:-1;}&::after{content:none;}span{text-align:start;margin-left:12px;}.nico-circle-check{margin-left:16px;&:before{display:inline-block;font-size:36px;color:white;}}}`\n], ({ theme })=>theme.colors.primary.base, ({ theme })=>theme.colors.white.base, ({ theme })=>theme.font.family.secondary, FontMixin({\n size: 'largest',\n weight: 'regular',\n height: 'largest'\n}), FlexMixin({\n justify: 'center',\n direction: 'column',\n align: 'center'\n}), BorderRadius({\n all: '4px'\n}), ({ theme })=>theme.colors.primary.base, ({ theme })=>`font-family: ${theme.font.family.primary};`, FontMixin({\n size: 'large',\n weight: 'medium'\n}), FlexMixin({\n justify: 'center',\n direction: 'row',\n align: 'center'\n}), ({ theme })=>`background-color: ${theme.colors.primary.base};`);\nconst Items = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"Items\"\n})([\n `width:50%;`,\n ``\n], FlexMixin({\n align: 'flex-start'\n}));\nconst Content = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"Content\"\n})([\n `padding:20px 16px;.nico-check{margin-right:10px;&:before{display:inline-block;color:white;font-size:11px;}}& span{color:`,\n `;`,\n ` `,\n ` margin-bottom:0;position:relative;padding:20px 16px;&:not(:last-child)::after{`,\n ` border-bottom:1px solid `,\n `;bottom:0;content:'';position:absolute;width:30px;}}&.is-tablet{`,\n ` width:70%;margin-bottom:0;padding:0;span{`,\n ` padding:0;}}`\n], ({ theme })=>theme.colors.white.base, FlexMixin({\n justify: 'center'\n}), FontMixin({\n size: 'base',\n height: 'small',\n weight: 'light'\n}), FlexMixin({\n justify: 'center'\n}), ({ theme })=>theme.colors.white.base, FlexMixin({\n direction: 'row',\n align: 'center',\n justify: 'center',\n wrap: true\n}), FontMixin({\n size: 'medium',\n height: 'base',\n weight: 'medium'\n}));\n\nexport { BenefitsCardTitle, BenefitsCardWrapper, Content, Items };\n//# sourceMappingURL=styled.mjs.map\n","import { jsxs, jsx, Fragment } from 'react/jsx-runtime';\nimport Icon from '@babylon/ui-kit-base/components/icons/icon';\nimport InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport classNames from 'classnames';\nimport { Children } from 'react';\nimport { BenefitsCardTitle, BenefitsCardWrapper, Content, Items } from './styled.mjs';\n\nconst BenefitsCardDesktop = ({ title, items = [], className })=>{\n const classTablet = classNames({\n 'is-tablet': className?.includes('is-tablet')\n });\n if (!items.length) return null;\n const renderTitle = title && /*#__PURE__*/ jsxs(BenefitsCardTitle, {\n className: classNames({\n 'is-tablet': classTablet\n }),\n children: [\n /*#__PURE__*/ jsx(Icon, {\n className: \"nico-circle-check\"\n }),\n /*#__PURE__*/ jsx(InnerMarkdownHTML, {\n content: title\n })\n ]\n });\n return /*#__PURE__*/ jsxs(BenefitsCardWrapper, {\n className: classNames({\n className: !!className,\n 'is-tablet': classTablet\n }),\n \"data-testid\": \"BenefitsCard\",\n children: [\n renderTitle,\n /*#__PURE__*/ jsx(Content, {\n className: classNames({\n 'benefits-card-content': true,\n 'is-tablet': classTablet\n }),\n children: classTablet ? Children.toArray(items.map((item)=>/*#__PURE__*/ jsxs(Items, {\n children: [\n /*#__PURE__*/ jsx(Icon, {\n className: \"nico-check\"\n }),\n \" \",\n /*#__PURE__*/ jsx(InnerMarkdownHTML, {\n content: item\n })\n ]\n }))) : Children.toArray(items.map((item)=>/*#__PURE__*/ jsx(Fragment, {\n children: /*#__PURE__*/ jsx(InnerMarkdownHTML, {\n content: item\n })\n })))\n })\n ]\n });\n};\n\nexport { BenefitsCardDesktop as default };\n//# sourceMappingURL=index.mjs.map\n","import { Button as Button$1 } from '@babylon/ui-kit-base/components/buttons/button';\nimport Deals$1 from '../banner-deals/index.mjs';\nimport { BoxShadow, BoxShadowHover } from '@babylon/ui-kit-styles/common/mixins/box-shadow.styled';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { BorderRadius } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nconst BannerCampaignVertical = /*#__PURE__*/ styled.a.withConfig({\n displayName: \"BannerCampaignVertical\"\n})([\n ``,\n ` `,\n ` `,\n `;`,\n ` width:365px;min-width:365px;overflow:hidden;position:relative;transition:box-shadow 0.2s cubic-bezier(0.25,0.8,0.25,0.1);`,\n ` & > a{width:100%;}.image-banner{height:100%;img{object-fit:cover;width:100%;`,\n `}}&.is-tablet{`,\n ` width:calc(100% - 4px);margin-left:2px;min-width:unset;height:auto;min-height:152px;.image-banner{`,\n ` position:absolute;right:0;width:60%;img{object-fit:fill;width:100%;transition:none;}}}`\n], BorderRadius({\n all: '4px'\n}), FlexMixin({\n justify: 'center'\n}), BoxShadow, ({ $modifiyHoverCard })=>$modifiyHoverCard ? BoxShadowHover : '', ({ $modifiyHoverCard })=>`\n \t&:hover {\n\t\t\t.image-banner {\n\t\t\t\timg {\n\t\t\t\t\ttransform: ${$modifiyHoverCard ? '' : 'scale(1.1)'};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n `, ({ $modifiyHoverCard })=>`transition: ${$modifiyHoverCard ? '' : 'transform 1s'};`, FlexMixin({\n justify: 'flex-start'\n}), FlexMixin({\n justify: 'center',\n align: 'center'\n}));\nconst BannerCampaignVerticalContainer = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"BannerCampaignVerticalContainer\"\n})([\n `text-align:center;background-color:`,\n `;position:absolute;padding:16px 12px 32px;bottom:0;left:0;right:0;&.is-tablet{position:relative;width:40%;padding:12px 16px;z-index:1;&::before{background-color:white;height:calc(100% + 24px);width:46px;content:'';position:absolute;top:-12px;right:-16px;transform:skew(10deg);z-index:-1;}}`\n], ({ theme })=>theme.colors.white.base);\nconst Title = /*#__PURE__*/ styled.p.withConfig({\n displayName: \"Title\"\n})([\n `position:relative;`,\n ` color:`,\n `;&.is-tablet{`,\n ` line-height:42px;}`\n], FontMixin({\n size: 'largest',\n weight: 'bold',\n height: 'largest'\n}), ({ theme })=>theme.colors.primary.light, FontMixin({\n weight: 'medium'\n}));\nconst Subtitle = /*#__PURE__*/ styled.p.withConfig({\n displayName: \"Subtitle\"\n})([\n ``,\n ` color:`,\n `;margin-bottom:16px;position:relative;&.is-tablet{`,\n ` font-weight:400;line-height:22px;margin-bottom:16px;}`\n], FontMixin({\n size: 'base',\n weight: 'light',\n height: 'base'\n}), ({ theme })=>theme.colors.primary.light, FontMixin({\n weight: 'regular'\n}));\nconst Button = /*#__PURE__*/ styled(Button$1).withConfig({\n displayName: \"Button\"\n})([\n `margin-bottom:unset;position:relative;&.is-tablet{`,\n ` position:unset;}`\n], FontMixin({\n size: 'medium',\n weight: 'medium',\n height: 'base'\n}));\nconst Deals = /*#__PURE__*/ styled(Deals$1).withConfig({\n displayName: \"Deals\"\n})([\n `padding:12px 16px;&.is-tablet{border-bottom-right-radius:4px;border-bottom-left-radius:4px;margin:0;height:70px;right:16px;min-width:unset;max-width:unset;width:auto;}`\n]);\n\nexport { BannerCampaignVertical, BannerCampaignVerticalContainer, Button, Deals, Subtitle, Title };\n//# sourceMappingURL=styled.mjs.map\n","import { jsxs, jsx } from 'react/jsx-runtime';\nimport Image from '@babylon/ui-kit-base/components/multimedia/image';\nimport { DealsAlign, DealsPosition } from '../banner-deals/types.mjs';\nimport { nullsToUndefined } from '@babylon/ui-kit-helpers/null';\nimport classNames from 'classnames';\nimport { BannerCampaignVertical as BannerCampaignVertical$1, Deals, BannerCampaignVerticalContainer, Title, Subtitle, Button } from './styled.mjs';\n\nconst getDeals = (deals)=>{\n if (!deals || Object.keys(deals).length === 0) return undefined;\n return Array.isArray(deals) ? deals : [\n deals\n ];\n};\nconst BannerCampaignVertical = (props)=>{\n const { image: { src, title: titleImage, alt, alternative = 'https://cdn.logitravel.com/comun/images/lineas/generica_1280x960.jpg', link: imageLink }, deals: dealsProps, title, subtitle, button, link, modifiyHoverCard = false, className, titleAs = 'p' } = props;\n const classTablet = classNames({\n 'is-tablet': className?.includes('is-tablet')\n });\n const dimensions = {\n width: 435,\n height: 535\n };\n const imageProps = {\n src,\n title: titleImage,\n alt,\n alternative,\n ...dimensions,\n resize: dimensions\n };\n const renderContainer = title || subtitle || button?.content;\n const cardLink = imageLink?.href ? imageLink : link;\n const deals = getDeals(dealsProps);\n return /*#__PURE__*/ jsxs(BannerCampaignVertical$1, {\n ...nullsToUndefined(cardLink),\n className: className,\n $modifiyHoverCard: modifiyHoverCard,\n \"data-testid\": \"BannerCampaignVertical\",\n children: [\n deals && /*#__PURE__*/ jsx(Deals, {\n align: DealsAlign.center,\n className: classTablet,\n position: DealsPosition.top,\n deals: deals\n }),\n /*#__PURE__*/ jsx(Image, {\n ...imageProps,\n className: \"image-banner\"\n }),\n renderContainer && /*#__PURE__*/ jsxs(BannerCampaignVerticalContainer, {\n className: classTablet,\n children: [\n /*#__PURE__*/ jsx(Title, {\n as: titleAs,\n className: classTablet,\n \"data-testid\": \"BannerCampaignVerticalTitle\",\n children: title\n }),\n /*#__PURE__*/ jsx(Subtitle, {\n className: classTablet,\n children: subtitle\n }),\n button?.content && /*#__PURE__*/ jsx(Button, {\n className: classTablet,\n variant: \"primary\",\n height: \"auto\",\n children: button.content\n })\n ]\n })\n ]\n });\n};\n\nexport { BannerCampaignVertical as default };\n//# sourceMappingURL=index.mjs.map\n","import { FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { css } from 'styled-components';\n\nconst veciTitleStyles = {\n Title: ()=>/*#__PURE__*/ css([\n `h2{span{`,\n ` text-transform:uppercase;}}`\n ], FontMixin({\n size: 'larger'\n }))\n};\n\nexport { veciTitleStyles as default };\n//# sourceMappingURL=veci.mjs.map\n","import { createThemes } from '@babylon/ui-kit-styles/common/themes';\nimport { ThemeId } from '@babylon/ui-kit-styles/types/theme';\nimport veciTitleStyles from './styles/veci.mjs';\n\nconst titleThemes = createThemes({\n [ThemeId.veci]: veciTitleStyles\n});\n\nexport { titleThemes as default };\n//# sourceMappingURL=index.mjs.map\n","import Title$1 from '@babylon/ui-kit-base/components/text/title';\nimport { FlexMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { Margin } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\nimport titleThemes from './themes/index.mjs';\n\nconst Title = /*#__PURE__*/ styled(Title$1).withConfig({\n displayName: \"Title\"\n})([\n ``,\n ``\n], titleThemes('Title'));\nconst TitleWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"TitleWrapper\"\n})([\n ``,\n ` `,\n ` `,\n `{`,\n `}`\n], FlexMixin({\n align: 'center',\n direction: 'column'\n}), Margin({\n bottom: '20px'\n}), Title, Margin({\n bottom: '0'\n}));\n\nexport { Title, TitleWrapper };\n//# sourceMappingURL=styled.mjs.map\n","import { jsxs, jsx } from 'react/jsx-runtime';\nimport { TitleWrapper, Title } from './styled.mjs';\n\nconst TitleWithContentDesktop = (props)=>{\n const { title, content, className } = props ?? {};\n return title?.title && /*#__PURE__*/ jsxs(TitleWrapper, {\n className: className,\n children: [\n title?.title && /*#__PURE__*/ jsx(Title, {\n ...title\n }),\n content\n ]\n });\n};\n\nexport { TitleWithContentDesktop as default };\n//# sourceMappingURL=index.mjs.map\n","import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\nimport TitleWithContentDesktop from './views/desktop/index.mjs';\n\nconst TitleWithContent = generateViewsComponent(TitleWithContentDesktop);\n\nexport { TitleWithContent as default };\n//# sourceMappingURL=index.mjs.map\n","import { FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { css } from 'styled-components';\n\nconst veciCarouselProductStyles = {\n CarouselTitle: ()=>/*#__PURE__*/ css([\n `h2{span{`,\n ` text-transform:uppercase;}}`\n ], FontMixin({\n size: 'larger'\n }))\n};\n\nexport { veciCarouselProductStyles as default };\n//# sourceMappingURL=veci.mjs.map\n","import { createThemes } from '@babylon/ui-kit-styles/common/themes';\nimport { ThemeId } from '@babylon/ui-kit-styles/types/theme';\nimport veciCarouselProductStyles from './styles/veci.mjs';\n\nconst carouselProductThemes = createThemes({\n [ThemeId.veci]: veciCarouselProductStyles\n});\n\nexport { carouselProductThemes as default };\n//# sourceMappingURL=index.mjs.map\n","import InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport BenefitsCardDefault from '@babylon/ui-kit-cards/components/cards/benefits-card/views/desktop';\nimport ProductCardDefault from '@babylon/ui-kit-cards/components/cards/product-card/views/desktop';\nimport BannerCampaignVertical$1 from '../../../banner-campaign-vertical/index.mjs';\nimport Slider from '@babylon/ui-kit-structures/components/others/slider';\nimport TitleWithContent from '@babylon/ui-kit-structures/components/others/title-with-content';\nimport { BoxShadow } from '@babylon/ui-kit-styles/common/mixins/box-shadow.styled';\nimport { FontMixin, FlexMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { BorderRadius } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\nimport carouselProductThemes from './themes/index.mjs';\n\nconst CarouselProductWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"CarouselProductWrapper\"\n})([\n `display:inline-flex;height:calc(100% - 40px);overflow:visible;width:100%;`,\n ``\n], ({ $isTablet })=>$isTablet && `flex-direction: column;`);\nconst ProductCard = /*#__PURE__*/ styled(ProductCardDefault).withConfig({\n displayName: \"ProductCard\"\n})([\n ``\n]);\nconst CarouselTitle = /*#__PURE__*/ styled(TitleWithContent).withConfig({\n displayName: \"CarouselTitle\"\n})([\n ``,\n ``\n], carouselProductThemes('CarouselTitle'));\nconst CarouselProductBox = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"CarouselProductBox\"\n})([\n `overflow:visible;position:relative;padding-left:24px;padding-right:24px;padding:0 2px 2px 2px;width:100%;min-height:100%;&.has-benefits{width:calc(100% - 320px);padding:0 0 0 32px;margin:2px 0 2px 0;min-height:100%;width:calc(100% - 320px);padding:0 0 0 40px;&.is-tablet{margin:0 0 18px 0;width:100%;padding:0;}}&.has-banner{width:calc(100% - 375px);padding:0 0 0 40px;min-height:100%;`,\n `{min-width:unset;}&.is-tablet{width:100%;padding:0;`,\n `{max-width:unset;margin:auto;}}}`\n], ProductCard, ProductCard);\nconst ProductsSlider = /*#__PURE__*/ styled(Slider).withConfig({\n displayName: \"ProductsSlider\"\n})([\n `height:100%;.splide__track{padding-bottom:16px;height:100%;}button.splide__pagination__page{&.is-active{&::before{width:100%;`,\n ` height:100%;background-color:`,\n `;}}}.splide__arrows .splide__arrow{`,\n ` &:hover{color:`,\n `;}}.splide__arrows .splide__arrow[disabled]{opacity:0;height:0;transition:opacity 0.5s;& > i{font-size:0;}}.splide__arrows .splide__arrow--prev{margin-left:-18px;}.splide__arrows .splide__arrow--next{margin-right:-18px;}.splide__arrows .splide__arrow{width:36px;height:36px;background-color:`,\n `;margin-left:-18px;`,\n ` `,\n ` `,\n ` opacity:1;transition:opacity 0.5s ease-in-out;& > i{font-size:12px;}}.splide__pagination li{height:12px;}`\n], BorderRadius({\n all: '8px'\n}), ({ theme })=>theme.colors.primary.light, FontMixin({\n size: 'larger',\n height: 'base'\n}), ({ theme })=>theme.colors.primary.base, ({ theme })=>theme.colors.white.base, FlexMixin({\n justify: 'center',\n align: 'center'\n}), BorderRadius({\n all: '50%'\n}), BoxShadow);\nconst TitleCarouselWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"TitleCarouselWrapper\"\n})([\n `margin-bottom:20px;text-align:center;`\n]);\nconst TitleCarousel = /*#__PURE__*/ styled.h2.withConfig({\n displayName: \"TitleCarousel\"\n})([\n ``,\n ` margin-bottom:0;& a{color:`,\n `;font-family:`,\n `;`,\n ` padding:0 8px;position:relative;}`\n], FlexMixin({\n align: 'center',\n justify: 'center'\n}), ({ theme })=>theme.colors.grays.darker, ({ theme })=>theme.font.family.secondary, FontMixin({\n size: 'largest',\n weight: 'medium',\n height: 'largest'\n}));\nconst SubtitleCarousel = /*#__PURE__*/ styled(InnerMarkdownHTML).withConfig({\n displayName: \"SubtitleCarousel\"\n})([\n `color:`,\n `;`,\n ` margin-bottom:0;margin-top:4px;`\n], ({ theme })=>theme.colors.grays.dark, FontMixin({\n size: 'base',\n weight: 'light',\n height: 'base'\n}));\nconst CardSkeletonWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"CardSkeletonWrapper\"\n})([\n `padding:0px 2px;`\n]);\nconst BannerCampaignVertical = /*#__PURE__*/ styled(BannerCampaignVertical$1).withConfig({\n displayName: \"BannerCampaignVertical\"\n})([\n `margin-bottom:`,\n `;margin-top:`,\n `;&.is-tablet{margin-bottom:20px;}`\n], ({ $isBanner })=>$isBanner ? '18px' : '', ({ $isBanner })=>$isBanner ? '2px' : '');\nconst BenefitsCard = /*#__PURE__*/ styled(BenefitsCardDefault).withConfig({\n displayName: \"BenefitsCard\"\n})([\n `margin-bottom:18px;`\n]);\n\nexport { BannerCampaignVertical, BenefitsCard, CardSkeletonWrapper, CarouselProductBox, CarouselProductWrapper, CarouselTitle, ProductCard, ProductsSlider, SubtitleCarousel, TitleCarousel, TitleCarouselWrapper };\n//# sourceMappingURL=styled.mjs.map\n","import { jsx, jsxs } from 'react/jsx-runtime';\nimport JsonLd from '@babylon/ui-kit-base/components/others/json-ld';\nimport CardSkeletonDesktop from '@babylon/ui-kit-cards/components/cards/product-card/views/desktop/card-skeleton';\nimport { getTitle } from '../utils.mjs';\nimport Origin from '@babylon/ui-kit-forms/components/others/origin';\nimport { genKey } from '@babylon/ui-kit-helpers/keys';\nimport { useDown } from '@babylon/ui-kit-hooks/media/useDown';\nimport { sliderConstantsProps } from '@babylon/ui-kit-structures/components/others/slider/constants';\nimport classNames from 'classnames';\nimport { useMemo } from 'react';\nimport { useTheme } from 'styled-components';\nimport CardViewMore from './card-view-more/index.mjs';\nimport { CardSkeletonWrapper, ProductCard, CarouselTitle, CarouselProductWrapper, CarouselProductBox, ProductsSlider, BenefitsCard, BannerCampaignVertical } from './styled.mjs';\n\nconst CarouselProductDesktop = ({ props })=>{\n const { ldjson, items = [], className = '', benefits, link, config, isLoading, banner, searcher, visibleCardsCount = false, defaultImage = {\n src: ''\n }, isFirstComponent = false, departure, originEndpoint } = props ?? {};\n const title = getTitle(props?.title);\n const theme = /*#__PURE__*/ useTheme();\n const isTablet = useDown('tablet');\n const slider = sliderConstantsProps({\n ...theme,\n breakpoints: theme.breakpoints\n });\n const sliderWithBenefits = {\n breakpoints: {\n [theme.breakpoints.xxl]: {\n perPage: 3,\n perMove: 3\n },\n [theme.breakpoints.xl]: {\n perPage: 2,\n perMove: 2\n },\n [theme.breakpoints.tablet]: {\n perPage: 4,\n perMove: 4,\n pagination: true,\n navigation: false,\n arrows: false\n },\n [theme.breakpoints.lg]: {\n perPage: 3,\n perMove: 3\n }\n },\n perPage: 4,\n perMove: 4,\n pagination: false,\n arrows: true,\n paginationVariant: 'bottom',\n speed: 1000\n };\n const sliderWithCustomCards = {\n breakpoints: {\n [theme.breakpoints.xxl]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.xl]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.tablet]: {\n perPage: 3,\n perMove: 3,\n pagination: true,\n navigation: false,\n arrows: false\n },\n [theme.breakpoints.lg]: {\n perPage: 3,\n perMove: 3\n }\n },\n perPage: 5,\n perMove: 5,\n pagination: false,\n arrows: true,\n paginationVariant: 'bottom',\n speed: 1000\n };\n const hidePagination = !(benefits ?? banner);\n let sliderProps;\n if (hidePagination && !visibleCardsCount) {\n sliderProps = slider;\n } else if (visibleCardsCount) {\n sliderProps = sliderWithCustomCards;\n } else {\n sliderProps = sliderWithBenefits;\n }\n const skeleton = useMemo(()=>new Array(sliderProps.perPage).fill(undefined).map((_, index)=>/*#__PURE__*/ jsx(CardSkeletonWrapper, {\n children: /*#__PURE__*/ jsx(CardSkeletonDesktop, {})\n }, genKey(index))), [\n sliderProps.perPage\n ]);\n const productCards = useMemo(()=>{\n const productCards = items.map((item, index)=>{\n const generalConfig = {\n ...config,\n ...item.config\n };\n const literals = {\n ...item.config?.literals,\n ...config?.literals\n };\n const productCardSearcher = {\n ...searcher,\n ...item.searcher\n };\n return /*#__PURE__*/ jsx(ProductCard, {\n ...item,\n searcher: productCardSearcher,\n config: {\n ...generalConfig,\n literals\n },\n defaultImage: defaultImage,\n isFirstComponent: isFirstComponent && index < 5\n }, genKey(item));\n });\n if (!link?.href) return productCards;\n return [\n ...productCards,\n /*#__PURE__*/ jsx(CardViewMore, {\n link: link,\n content: config?.literals?.viewMore\n }, genKey(link))\n ];\n }, [\n config,\n defaultImage,\n items,\n link,\n searcher,\n isFirstComponent\n ]);\n const renderBanner = (benefits, banner)=>{\n if (benefits) return /*#__PURE__*/ jsx(BenefitsCard, {\n ...benefits,\n className: classNames({\n 'is-tablet': isTablet\n })\n });\n return banner && /*#__PURE__*/ jsx(BannerCampaignVertical, {\n $isBanner: true,\n className: classNames({\n ['className']: !!className,\n 'is-tablet': isTablet\n }),\n ...banner,\n modifiyHoverCard: true,\n titleAs: \"h3\"\n });\n };\n // Origin select\n const origin = departure?.length && /*#__PURE__*/ jsx(Origin, {\n departure: departure,\n endpoint: originEndpoint\n });\n return /*#__PURE__*/ jsxs(\"div\", {\n \"data-testid\": \"CarouselProduct\",\n className: classNames({\n ['className']: !!className\n }),\n children: [\n title && /*#__PURE__*/ jsx(CarouselTitle, {\n title: title,\n content: origin\n }),\n /*#__PURE__*/ jsxs(CarouselProductWrapper, {\n $isTablet: isTablet,\n children: [\n renderBanner(benefits, banner),\n /*#__PURE__*/ jsxs(CarouselProductBox, {\n className: classNames({\n 'has-benefits': !!benefits,\n 'has-banner': !!banner,\n 'is-tablet': isTablet\n }),\n children: [\n /*#__PURE__*/ jsx(ProductsSlider, {\n ...sliderProps,\n gap: 12,\n children: isLoading ? skeleton : productCards\n }),\n ldjson?.scripts?.map((script)=>/*#__PURE__*/ jsx(JsonLd, {\n structuredData: script\n }, genKey(script)))\n ]\n })\n ]\n })\n ]\n });\n};\n\nexport { CarouselProductDesktop as default };\n//# sourceMappingURL=index.mjs.map\n","import { productCardTransportConverter } from '../../card-product/desktop/index.mjs';\n\nconst carouselProductTransportConverter = (carousel)=>{\n const { searcher = {}, config = {}, items = [], title = '', subtitle = '', viewMore = {\n href: ''\n }, isFirstComponent } = carousel;\n return {\n props: {\n config: {\n literals: {\n ...config.literals,\n summary: config.literals?.summaryLabel,\n moreInfo: config.literals?.infoLabel\n },\n product: config.type ?? undefined\n },\n searcher,\n title: {\n title: title ?? '',\n subTitle: subtitle\n },\n items: items?.map((item)=>productCardTransportConverter(item, carousel.config)),\n link: viewMore,\n isFirstComponent\n }\n };\n};\nconst tabProductTransportConverter = (tab)=>({\n searcher: tab.data?.searcher,\n title: tab.title ?? '',\n params: tab?.arguments?.map((item)=>({\n key: item.Name,\n value: item.Value\n })),\n items: tab.data?.items?.map((item)=>productCardTransportConverter(item, tab.data?.config)),\n link: tab.data?.viewMore\n });\n\nexport { carouselProductTransportConverter, tabProductTransportConverter };\n//# sourceMappingURL=index.mjs.map\n","import { Company } from '@babylon/ui-kit-cards/components/cards/product-card/views/desktop/styled';\nimport styled from 'styled-components';\n\nconst ProductCardTransport = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"ProductCardTransport\"\n})([\n ``,\n `{border:none;min-width:auto;padding-right:4px;margin-right:auto;img{border:1px solid `,\n `;border-radius:50%;}}`\n], Company, ({ theme })=>theme.colors.grays.light);\n\nexport { ProductCardTransport };\n//# sourceMappingURL=styled.mjs.map\n","import { jsx } from 'react/jsx-runtime';\nimport CarouselProductDesktop from '@babylon/ui-kit-carousels/components/carousel-product/views/desktop';\nimport { carouselProductTransportConverter } from '../../../../../helpers/transports/carousel-product/desktop/index.mjs';\nimport { ProductCardTransport } from './styled.mjs';\n\nconst CarouselProductTransportsDesktop = (props)=>{\n const converter = carouselProductTransportConverter(props);\n return /*#__PURE__*/ jsx(ProductCardTransport, {\n children: /*#__PURE__*/ jsx(CarouselProductDesktop, {\n ...converter\n })\n });\n};\n\nexport { CarouselProductTransportsDesktop as default };\n//# sourceMappingURL=index.mjs.map\n"],"names":["fetchPostOrigin","airportCode","baseUrl","endpoint","url","response","error","Select","styled","Select$1","OriginDesktop","props","departure","selectedValue","item","BaseUrl","useContext","contextBabylon","handleOnChange","e","jsx","Origin","generateViewsComponent","useDown","key","string","media","matches","useMediaQuery","isClient","useIsClient","device","useDevice","checkIfMobile","sliderConstantsProps","theme","CardBox","CardWrapper","BorderRadius","BoxShadowWithHover","FlexMixin","CardLink","FontMixin","CardViewMore","link","content","nullsToUndefined","BenefitsCardWrapper","BenefitsCardTitle","Items","Content","BenefitsCardDesktop","title","items","className","classTablet","classNames","renderTitle","jsxs","Icon","InnerMarkdownHTML","Children","Fragment","BannerCampaignVertical","BoxShadow","$modifiyHoverCard","BoxShadowHover","BannerCampaignVerticalContainer","Title","Subtitle","Button","Button$1","Deals","Deals$1","getDeals","deals","src","titleImage","alt","alternative","imageLink","dealsProps","subtitle","button","modifiyHoverCard","titleAs","dimensions","imageProps","renderContainer","cardLink","BannerCampaignVertical$1","DealsAlign","DealsPosition","Image","veciTitleStyles","css","titleThemes","createThemes","ThemeId","Title$1","TitleWrapper","Margin","TitleWithContentDesktop","TitleWithContent","veciCarouselProductStyles","carouselProductThemes","CarouselProductWrapper","$isTablet","ProductCard","ProductCardDefault","CarouselTitle","CarouselProductBox","ProductsSlider","Slider","CardSkeletonWrapper","$isBanner","BenefitsCard","BenefitsCardDefault","CarouselProductDesktop","ldjson","benefits","config","isLoading","banner","searcher","visibleCardsCount","defaultImage","isFirstComponent","originEndpoint","getTitle","useTheme","isTablet","slider","sliderWithBenefits","sliderWithCustomCards","hidePagination","sliderProps","skeleton","useMemo","_","index","CardSkeletonDesktop","genKey","productCards","generalConfig","literals","_a","productCardSearcher","renderBanner","origin","script","JsonLd","carouselProductTransportConverter","carousel","viewMore","_b","productCardTransportConverter","tabProductTransportConverter","tab","_d","_c","_e","ProductCardTransport","Company","CarouselProductTransportsDesktop","converter"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}