{"version":3,"file":"index.DnD2ECqp.js","sources":["../../../../../../../node_modules/@babylon/ui-kit-structures/components/others/tags/views/desktop/styled.js","../../../../../../../node_modules/@babylon/ui-kit-structures/components/others/tags/views/desktop/index.js","../../../../../../../node_modules/@babylon/ui-kit-structures/components/others/tags/views/mobile/styled.js","../../../../../../../node_modules/@babylon/ui-kit-structures/components/others/tags/views/mobile/index.js","../../../../../../../node_modules/@babylon/ui-kit-structures/components/others/tags/index.js","../../../../../../../node_modules/@babylon/ui-kit-common/components/others/links-seo/components/links/styled.js","../../../../../../../node_modules/@babylon/ui-kit-common/components/others/links-seo/components/links/index.js","../../../../../../../node_modules/@babylon/ui-kit-common/components/others/links-seo/views/desktop/styled.js","../../../../../../../node_modules/@babylon/ui-kit-common/components/others/links-seo/views/desktop/index.js"],"sourcesContent":["import { FlexMixin, FontMixin } 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';\n\nconst Placeholder = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"Placeholder\"\n})([\n `&::after{clear:both;content:'';display:table;}&.is-single{`,\n `}`\n], FlexMixin({\n justify: 'center'\n}));\nconst RelatedList = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"RelatedList\"\n})([\n `a:not(:last-child){`,\n `}a{`,\n ` display:inline-block;color:`,\n `;`,\n ` text-decoration:none;}&.is-multiple{`,\n ` a:not(:last-child){`,\n `}a{width:20%;}}`\n], Margin({\n right: '28px'\n}), FontMixin({\n size: 'medium',\n weight: 'light',\n height: 'base'\n}), (props)=>props.theme.colors.text.dark, Margin({\n bottom: '8px'\n}), FlexMixin({\n wrap: true\n}), Margin({\n right: '0'\n}));\n\nexport { Placeholder, RelatedList };\n//# sourceMappingURL=styled.js.map\n","import { jsx } from 'react/jsx-runtime';\nimport Anchor from '@babylon/ui-kit-base/components/others/anchor';\nimport InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport { nullsToUndefined } from '@babylon/ui-kit-helpers/null';\nimport { Children } from 'react';\nimport { Placeholder, RelatedList } from './styled.js';\n\nconst TagsDesktop = (props)=>{\n const { items = [], className } = props;\n return /*#__PURE__*/ jsx(Placeholder, {\n \"data-testid\": \"Tags\",\n className: className,\n children: /*#__PURE__*/ jsx(RelatedList, {\n className: className,\n children: Children.toArray(items.map((item)=>/*#__PURE__*/ jsx(Anchor, {\n \"data-testid\": \"link\",\n ...item,\n children: /*#__PURE__*/ jsx(InnerMarkdownHTML, {\n content: nullsToUndefined(item).content\n })\n })))\n })\n });\n};\n\nexport { TagsDesktop as default };\n//# sourceMappingURL=index.js.map\n","import Anchor from '@babylon/ui-kit-base/components/others/anchor';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport styled from 'styled-components';\n\nconst TagsWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"TagsWrapper\"\n})([\n ``,\n ` &.is-single{`,\n `}`\n], FlexMixin({\n wrap: true,\n justify: 'flex-start'\n}), FlexMixin({\n justify: 'center'\n}));\nconst Tags = /*#__PURE__*/ styled(Anchor).withConfig({\n displayName: \"Tags\"\n})([\n ``,\n ` `,\n ` background-color:`,\n `;border-radius:4px;color:`,\n `;margin:4px;padding:4px 12px;text-decoration:none;`\n], FlexMixin({}), FontMixin({\n size: 'medium',\n weight: 'regular',\n height: 'large'\n}), (props)=>props.theme.colors.grays.light, (props)=>props.theme.colors.grays.dark);\n\nexport { Tags, TagsWrapper };\n//# sourceMappingURL=styled.js.map\n","import { jsx } from 'react/jsx-runtime';\nimport { createElement } from 'react';\nimport InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport { genKey } from '@babylon/ui-kit-helpers/keys';\nimport { nullsToUndefined } from '@babylon/ui-kit-helpers/null';\nimport { TagsWrapper, Tags } from './styled.js';\n\nconst TagsMobile = (props)=>{\n const { items = [], className } = props;\n return /*#__PURE__*/ jsx(TagsWrapper, {\n \"data-testid\": \"Tags\",\n className: className,\n children: items.map((item, index)=>/*#__PURE__*/ createElement(Tags, {\n \"data-testid\": \"link\",\n ...item,\n key: genKey(`${index}`)\n }, /*#__PURE__*/ jsx(InnerMarkdownHTML, {\n content: nullsToUndefined(item).content\n })))\n });\n};\n\nexport { TagsMobile as default };\n//# sourceMappingURL=index.js.map\n","import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\nimport TagsDesktop from './views/desktop/index.js';\nimport TagsMobile from './views/mobile/index.js';\n\nconst Tags = generateViewsComponent(TagsDesktop, TagsMobile);\n\nexport { Tags as default };\n//# sourceMappingURL=index.js.map\n","import { FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { Margin, Padding } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nconst RelatedTitle = /*#__PURE__*/ styled.p.withConfig({\n displayName: \"RelatedTitle\"\n})([\n ``,\n ` color:`,\n `;`,\n ``\n], FontMixin({\n size: 'base',\n weight: 'medium',\n height: 'medium'\n}), ({ theme })=>theme.colors.grays.darker, Margin({\n bottom: '8px'\n}));\nconst RelatedList = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"RelatedList\"\n})([\n ``\n]);\nconst RelatedListWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"RelatedListWrapper\"\n})([\n `&:not(:last-child){border-bottom:1px solid `,\n `;`,\n ` `,\n `}`\n], ({ theme })=>theme.colors.grays.light, Margin({\n bottom: '16px'\n}), Padding({\n bottom: '8px'\n}));\n\nexport { RelatedList, RelatedListWrapper, RelatedTitle };\n//# sourceMappingURL=styled.js.map\n","import { jsxs, jsx } from 'react/jsx-runtime';\nimport { genKey } from '@babylon/ui-kit-helpers/keys';\nimport Tags from '@babylon/ui-kit-structures/components/others/tags';\nimport { RelatedListWrapper, RelatedTitle, RelatedList } from './styled.js';\n\nconst Links = ({ items })=>{\n if (items.length > 1) {\n return items.map((item)=>/*#__PURE__*/ jsxs(RelatedListWrapper, {\n children: [\n /*#__PURE__*/ jsx(RelatedTitle, {\n \"data-testid\": \"items\",\n children: item.title\n }),\n /*#__PURE__*/ jsx(RelatedList, {\n children: /*#__PURE__*/ jsx(Tags, {\n items: item.items\n }, item.title)\n })\n ]\n }, genKey(item.title)));\n }\n return items.map((item)=>/*#__PURE__*/ jsx(RelatedListWrapper, {\n children: /*#__PURE__*/ jsx(RelatedList, {\n children: /*#__PURE__*/ jsx(Tags, {\n items: item.items,\n className: item.items.length <= 8 ? 'is-single' : 'is-multiple'\n }, item.title)\n })\n }, genKey(item.title)));\n};\n\nexport { Links as default };\n//# sourceMappingURL=index.js.map\n","import { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { Margin, Padding } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nconst Placeholder = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"Placeholder\"\n})([\n ``,\n ` &::after{clear:both;content:'';display:table;}`\n], Margin({\n bottom: '40px'\n}));\nconst LinksWrapper = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"LinksWrapper\"\n})([\n ``,\n ` `,\n ``\n], FlexMixin({\n direction: 'column'\n}), Padding({\n all: '20px'\n}));\nconst Description = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"Description\"\n})([\n `color:`,\n `;`,\n ` `,\n ` `,\n ` border-bottom:1px solid `,\n `;`\n], ({ theme })=>theme.colors.grays.darker, FontMixin({\n size: 'medium',\n height: 'medium'\n}), Padding({\n bottom: '16px'\n}), Margin({\n bottom: '16px'\n}), ({ theme })=>theme.colors.grays.light);\n\nexport { Description, LinksWrapper, Placeholder };\n//# sourceMappingURL=styled.js.map\n","import { jsx, jsxs } from 'react/jsx-runtime';\nimport InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport Title from '@babylon/ui-kit-base/components/text/title/views/desktop';\nimport { Container } from '@babylon/ui-kit-styles/common/mixins/container.styled';\nimport Links from '../../components/links/index.js';\nimport { Placeholder, LinksWrapper, Description } from './styled.js';\n\nconst LinksSEODesktop = ({ props })=>{\n const { title, items = [], description } = props ?? {};\n if (!items?.length) return null;\n return items?.length > 0 && /*#__PURE__*/ jsx(Container, {\n \"data-testid\": \"LinksSeo\",\n children: /*#__PURE__*/ jsxs(Placeholder, {\n children: [\n /*#__PURE__*/ jsx(Title, {\n ...title\n }),\n /*#__PURE__*/ jsxs(LinksWrapper, {\n children: [\n description && /*#__PURE__*/ jsx(Description, {\n children: /*#__PURE__*/ jsx(InnerMarkdownHTML, {\n content: description.content\n })\n }),\n /*#__PURE__*/ jsx(Links, {\n items: items\n })\n ]\n })\n ]\n })\n });\n};\n\nexport { LinksSEODesktop as default };\n//# sourceMappingURL=index.js.map\n"],"names":["Placeholder","styled","FlexMixin","RelatedList","Margin","FontMixin","props","TagsDesktop","items","className","jsx","Children","item","Anchor","InnerMarkdownHTML","nullsToUndefined","TagsWrapper","Tags","TagsMobile","index","createElement","genKey","generateViewsComponent","RelatedTitle","theme","RelatedListWrapper","Padding","Links","jsxs","LinksWrapper","Description","LinksSEODesktop","title","description","Container","Title"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8]}