keski_lib_catalog 1.0.34 → 1.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.modern.js","sources":["../src/atomicElement.js","../src/quotes/elements/layout1.js","../src/quotes/Component.js","../src/banner/elements/layout1.js","../src/banner/Component.js","../src/textPlusImg/elements/layout1.js","../src/textPlusImg/Component.js","../src/gallery/elements/layout1.js","../src/gallery/Component.js","../src/text/elements/layout1.js","../src/text/Component.js","../src/canvas/CanvasContainer.js","../src/constants.js","../src/Section.js"],"sourcesContent":["export class AtomicElements {\r\n constructor(){\r\n this.layout = []\r\n this.layoutFootprint = []\r\n this.layoutFootprintReq = []\r\n }\r\n\r\n layoutsLength(){\r\n return(\r\n this.layout.length\r\n )\r\n }\r\n\r\n build(content, layoutId){\r\n return(\r\n this.layout[layoutId](content)\r\n )\r\n }\r\n\r\n footprint(layout){\r\n let img = this.layoutFootprint[layout]\r\n let req = this.layoutFootprintReq[layout]\r\n console.log('img atomic', img)\r\n return(\r\n {req, img}\r\n )\r\n }\r\n\r\n}\r\n","import React from 'react';\r\nimport Carousel from 'react-material-ui-carousel'\r\nimport { Box, Typography, Slide } from '@mui/material'\r\n\r\nexport default function Layout1(content) {\r\n\r\n return (\r\n <Carousel indicators navButtonsAlwaysInvisible sx={{ width: '100%', height: '100%' }}>\r\n {\r\n content.component.subcomponent.map((item, i) => <Item key={i} content={item} side={content.component.justify_content} />)\r\n }\r\n </Carousel>\r\n )\r\n}\r\n\r\nfunction Item(props) {\r\n const { content, side } = props\r\n const visible = true\r\n\r\n const getSideRender = (side) => {\r\n if (side === 'left') {\r\n return 'flex-start'\r\n } else if (side === 'right') {\r\n return 'flex-end'\r\n } else {\r\n return 'center'\r\n }\r\n }\r\n\r\n const getSideMargin = (side) => {\r\n if (side === 'left') {\r\n return '0px auto 0px 0px'\r\n } else if (side === 'right') {\r\n return '0px 0px 0px auto'\r\n } else {\r\n return 'auto'\r\n }\r\n }\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n width: { xs: '100%', md: '70%' },\r\n justifyContent: getSideRender(side),\r\n margin: getSideMargin(side),\r\n textAlign: side,\r\n height: '100%',\r\n }}\r\n >\r\n <Slide direction=\"left\" in={visible}>\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n flexDirection: 'column',\r\n color: content.text_color,\r\n alignItems: getSideRender(side),\r\n }}\r\n >\r\n <Box\r\n component=\"img\"\r\n src={content.image ? content.image.url : \"https://cdn-icons-png.flaticon.com/512/6596/6596121.png\"}\r\n sx={{ width: '120px', height: '120px', marginBottom: '16px', borderRadius: '50%' }}\r\n />\r\n <Typography className=\"xmiddle\" sx={{ marginBottom: '16px' }}>\r\n {content.description ?\r\n content.description\r\n : 'Agregue descripción'}\r\n </Typography>\r\n <Typography className=\"small\" sx={{ marginBottom: '16px', textAlign: 'right' }}>\r\n {content.subtitle ?\r\n content.subtitle\r\n : 'Agregue subtítulo'}\r\n </Typography>\r\n </Box>\r\n </Slide>\r\n </Box>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Quotes extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['quotes_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 1,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'subtitle':'Subtitle',\r\n 'description':'Description',\r\n 'image': 'Image'\r\n },\r\n\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n \r\n}","import { Box, Button, Typography, Slide } from '@mui/material'\r\nimport React from 'react'\r\n\r\nexport default function Layout1(content) {\r\n const visible = true\r\n return (\r\n <Slide direction=\"left\" in={visible}>\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n flexDirection: 'column',\r\n width: { xs: '100%', md: '50%' },\r\n height: { xs: '100%', lg: '60vh' },\r\n justifyContent: 'center',\r\n color: content.component.subcomponent[0]?.text_color\r\n }}\r\n >\r\n <Typography className=\"title-xxlarge\" sx={{ marginBottom: '16px' }}>\r\n {content.component.subcomponent[0]?.title ?\r\n content.component.subcomponent[0]?.title\r\n : 'Agregue título'}\r\n </Typography>\r\n <Typography className=\"xmiddle\" sx={{ marginBottom: '16px' }}>\r\n {content.component.subcomponent[0]?.description ?\r\n content.component.subcomponent[0]?.description\r\n : 'Agregue descripción'}\r\n </Typography>\r\n <Box>\r\n <Button\r\n variant='contained'\r\n href={content.component.subcomponent[0]?.button_action}\r\n sx={{ width: 'auto', marginBottom: '16px' }}\r\n >\r\n {content.component.subcomponent[0]?.button_title ?\r\n content.component.subcomponent[0]?.button_title\r\n : 'Nombre botón'}\r\n </Button>\r\n </Box>\r\n </Box>\r\n </Slide>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Banner extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n\r\n layout = [Layout1]\r\n layoutFootprint = ['banner_layout_1.jpg']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title': 'Tittle',\r\n 'description': 'Description',\r\n 'button_title': 'Button Title',\r\n 'button_action': 'Button action',\r\n // 'image':'Image',\r\n 'text_color': 'Text color',\r\n 'link': 'Link',\r\n // 'name':'Name',\r\n },\r\n\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n // <texinput display={!layout.img} id='Title'>\r\n // <texinput display={!layout.img} id='content'></texinput>\r\n // <texinput display={!layout.img} id='name'></texinput>\r\n //<texinput disable={!layout.img}>\r\n}","import { Box, Button, Typography } from \"@mui/material\"\r\nimport React from \"react\"\r\nimport { Slide } from \"@mui/material\";\r\nimport Grow from '@mui/material/Grow';\r\n\r\nexport default function Layout1(content) {\r\n\r\n const visible = true\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n flexDirection: { xs: 'column', md: content.component.justify_content != 'right' ? 'row' : 'row-reverse' },\r\n gap: '16px',\r\n alignItems: 'center'\r\n }}\r\n color={content.component.subcomponent[0]?.text_color}\r\n >\r\n <Box>\r\n <Slide direction=\"right\" in={visible}>\r\n <Box sx={{ width: { xs: '100%', md: '550px', lg: '640px' }, height: { md: '353px', lg: '426px' }, maxWidth: '100vw' }}>\r\n <img width=\"100%\" height=\"100%\" src={content.component.subcomponent[0]?.image ? content.component.subcomponent[0]?.image.url : 'https://wozapps-develop.s3.us-east-2.amazonaws.com/gerry/resources/landing/bbb84144-02cd-4cf8-a1be-21ba47e7c4fa.jpeg'}></img>\r\n </Box>\r\n </Slide>\r\n </Box>\r\n <Box>\r\n <Grow\r\n in={visible}\r\n style={{ transformOrigin: '0 0 0' }}\r\n {...(visible ? { timeout: 1000 } : {})}\r\n >\r\n <Box>\r\n <Box sx={{ marginBottom: '16px' }}>\r\n <Typography className=\"title-xlarge\">{content.component.subcomponent[0]?.title ? content.component.subcomponent[0]?.title : 'Agregue título'}</Typography>\r\n </Box>\r\n <Box sx={{ marginBottom: '16px', color: '#767676' }}>\r\n <Typography className=\"middle\">\r\n {content.component.subcomponent[0]?.description ? content.component.subcomponent[0]?.description : 'Agregue descripción'}\r\n </Typography>\r\n </Box>\r\n <Box>\r\n <Button\r\n variant=\"contained\"\r\n href={content.component.subcomponent[0]?.button_action}\r\n sx={{ width: 'auto' }}\r\n >\r\n {content.component.subcomponent[0]?.button_title ?\r\n content.component.subcomponent[0]?.button_title : 'Nombre botón'}\r\n </Button>\r\n </Box>\r\n </Box>\r\n </Grow>\r\n </Box>\r\n </Box>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class TextPlusImg extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1, Layout1]\r\n layoutFootprint = ['text_image_layout_1.png', 'text_image_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title':'Title',\r\n 'description':'Text',\r\n 'button_title':'Button Title',\r\n 'button_action':'Button Action',\r\n 'image':'Image',\r\n 'link':'Link'\r\n },\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title':'Title',\r\n 'description':'Text',\r\n 'button_title':'Button Title',\r\n 'button_action':'Button Action',\r\n 'image':'Image',\r\n },\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n \r\n}","import React from \"react\"\r\nimport { Box, Typography, Slide, Grid } from '@mui/material'\r\n\r\nexport default function Layout1(content) {\r\n const visible = true\r\n\r\n return (\r\n <Slide direction=\"left\" in={visible}>\r\n <Box sx={{ width: '100%' }}>\r\n <Typography className=\"title-xlarge\" sx={{ margin: '16px auto' }}>{content.component.title}</Typography>\r\n <Grid container>\r\n {content.component.subcomponent?.map((img, index) => (\r\n <Grid key={index} item xs={12} md={4}>\r\n <Box\r\n component=\"img\"\r\n src={\r\n img.image.url ?\r\n img.image.url :\r\n 'https://wozapps-develop.s3.us-east-2.amazonaws.com/gerry/resources/landing/bbb84144-02cd-4cf8-a1be-21ba47e7c4fa.jpeg'\r\n }\r\n sx={{ \r\n width: { xs: '100%', md: '95%' }, \r\n aspectRatio: '16/9',\r\n marginBottom: '16px',\r\n }}\r\n />\r\n </Grid>\r\n ))}\r\n </Grid>\r\n </Box>\r\n </Slide>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Gallery extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['gallery_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 1,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title':'Tittle',\r\n 'image': 'Image'\r\n },\r\n\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n \r\n}","import React from \"react\"\r\nimport { Box, Typography, Slide } from '@mui/material'\r\n\r\nexport default function Layout1(content) {\r\n const visible = true\r\n\r\n return (\r\n <Slide direction=\"left\" in={visible}>\r\n <Box\r\n sx={{\r\n width: '70%',\r\n color: content.component.subcomponent[0]?.text_color,\r\n textAlign: content.component.justify_content\r\n }}\r\n >\r\n <Typography className=\"title-xlarge\" sx={{ marginBottom: '16px' }}>\r\n {content.component.subcomponent[0]?.title ?\r\n content.component.subcomponent[0]?.title\r\n : 'Agregue título'}\r\n </Typography>\r\n <Typography className=\"middle\" sx={{ marginBottom: '16px', color: '#767676' }}>\r\n {content.component.subcomponent[0]?.description ?\r\n content.component.subcomponent[0]?.description\r\n : 'Agregue descripción'}\r\n </Typography>\r\n </Box>\r\n </Slide>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Text extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['quotes_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title': 'Tittle',\r\n 'description': 'Description',\r\n },\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n\r\n}","import React from \"react\";\r\nimport { Box, Container } from \"@mui/material\";\r\n\r\nexport default function CanvasContainer(props) {\r\n const { json, children } = props\r\n const rgbColor = hexToRgb(json.component.bg_image_overlay_color);\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n alignItems: 'center',\r\n backgroundColor:\r\n json.component.bg_type === 1\r\n ? json.component.bg_color1\r\n : undefined,\r\n backgroundImage:\r\n json.component.bg_type === 2\r\n ? `linear-gradient(to ${json.component.bg_gradiant_orientation}, ${json.component.bg_color1}, ${json.component.bg_color2})`\r\n : json.component.bg_type === 3\r\n ? `url(${json.component.bg_image?.url})`\r\n : undefined,\r\n backgroundPosition: 'center',\r\n backgroundSize: 'cover',\r\n backgroundRepeat: 'no-repeat',\r\n }}\r\n >\r\n <Box\r\n sx={{\r\n bgcolor: `${json.component.bg_image_overlay && json.component.bg_type === 3 ?\r\n `rgba(${rgbColor.r}, ${rgbColor.g}, ${rgbColor.b}, ${json.component.bg_image_overlay_alpha_css})` :\r\n undefined\r\n }`,\r\n padding: '64px 24px',\r\n width: '100%'\r\n }}\r\n >\r\n <Container\r\n maxWidth='xl'\r\n sx={{\r\n padding: '0px',\r\n '&.MuiContainer-root':{\r\n paddingLeft: { xs: '0px', xl: '24px' },\r\n paddingRight: { xs: '0px', xl: '24px' }\r\n }\r\n }}\r\n >\r\n <Box\r\n sx={{\r\n minWidth: { xs: '100%', md: '45%' },\r\n display: 'flex',\r\n justifyContent: {\r\n xs: 'center',\r\n md: json.component.justify_content ? json.component.justify_content : 'center'\r\n }\r\n }}\r\n >\r\n {children}\r\n </Box>\r\n </Container>\r\n </Box>\r\n </Box>\r\n );\r\n}\r\n\r\n\r\nfunction hexToRgb(hex) {\r\n if (hex) {\r\n const cleanHex = hex.startsWith('#') ? hex.slice(1) : hex;\r\n\r\n const r = parseInt(cleanHex.substring(0, 2), 16);\r\n const g = parseInt(cleanHex.substring(2, 4), 16);\r\n const b = parseInt(cleanHex.substring(4, 6), 16);\r\n return { r, g, b };\r\n } else {\r\n return { r: 0, g: 0, b: 0 }\r\n }\r\n}","export const JK_RESOURCES = 'https://jk-clients.s3.us-east-2.amazonaws.com/jk-resources/'","import React from \"react\"\r\nimport { Quotes } from \"./quotes/Component\"\r\nimport { Banner } from \"./banner/Component\"\r\nimport { TextPlusImg } from \"./textPlusImg/Component\"\r\nimport { Gallery } from \"./gallery/Component\"\r\nimport { Text } from \"./text/Component\"\r\nimport CanvasContainer from \"./canvas/CanvasContainer\"\r\nimport { JK_RESOURCES } from \"./constants\"\r\n// Section is a common class for each component\r\nexport class Section {\r\n constructor(AtomicElement, theme) {\r\n this.child = AtomicElement\r\n }\r\n\r\n component(json) {\r\n console.log('json', json)\r\n return (\r\n <CanvasContainer json={json}>\r\n {/* Child is the instance passed as parameter in section, next class */}\r\n {this.child.build(json, json.component.layout)}\r\n </CanvasContainer>\r\n )\r\n }\r\n\r\n getFootPrint(layout) {\r\n let footPrint = this.child.footprint(layout)\r\n console.log('section', footPrint)\r\n return (\r\n { req: footPrint.req, img: `${JK_RESOURCES}${footPrint.img}` }\r\n )\r\n }\r\n\r\n layoutLength() {\r\n return (\r\n this.child.layoutsLength()\r\n )\r\n }\r\n\r\n}\r\n\r\n//Sections is the interface with admin and store\r\nexport class Sections {\r\n constructor() {\r\n this.banner = new Section(new Banner())\r\n this.quotes = new Section(new Quotes())\r\n this.textPlusImg = new Section(new TextPlusImg())\r\n this.gallery = new Section(new Gallery())\r\n this.text = new Section(new Text())\r\n this.sections = [this.banner, this.textPlusImg, this.quotes, this.gallery, this.text]\r\n }\r\n\r\n getSectionList() {\r\n return (\r\n {\r\n '0': 'Banner',\r\n '1': 'Texto + Imágenes',\r\n '2': 'Citas/Testimonios',\r\n '3': 'Galeria',\r\n '4': 'Texto'\r\n }\r\n )\r\n }\r\n getLayoutsFromSection(index) {\r\n let section = this.sections[index]\r\n return (section)\r\n }\r\n\r\n}"],"names":["AtomicElements","layout","layoutFootprint","layoutFootprintReq","_proto","prototype","layoutsLength","length","build","content","layoutId","footprint","img","req","console","log","Layout1","React","createElement","Carousel","indicators","navButtonsAlwaysInvisible","sx","width","height","component","subcomponent","map","item","i","Item","key","side","justify_content","props","visible","getSideRender","getSideMargin","Box","display","xs","md","justifyContent","margin","textAlign","Slide","direction","flexDirection","color","text_color","alignItems","src","image","url","marginBottom","borderRadius","Typography","className","description","subtitle","Quotes","_AtomicElements","_inheritsLoose","_this","call","_content$component$su","_content$component$su2","_content$component$su3","_content$component$su4","_content$component$su5","_content$component$su6","_content$component$su7","_content$component$su8","lg","title","Button","variant","href","button_action","button_title","Banner","_content$component$su9","_content$component$su10","gap","maxWidth","Grow","_extends","style","transformOrigin","timeout","TextPlusImg","Grid","container","index","aspectRatio","Gallery","Text","CanvasContainer","_json$component$bg_im","json","children","rgbColor","hexToRgb","bg_image_overlay_color","backgroundColor","bg_type","bg_color1","undefined","backgroundImage","bg_gradiant_orientation","bg_color2","bg_image","backgroundPosition","backgroundSize","backgroundRepeat","bgcolor","bg_image_overlay","r","g","b","bg_image_overlay_alpha_css","padding","Container","paddingLeft","xl","paddingRight","minWidth","hex","cleanHex","startsWith","slice","parseInt","substring","JK_RESOURCES","Section","AtomicElement","theme","child","getFootPrint","footPrint","layoutLength","Sections","banner","quotes","textPlusImg","gallery","text","sections","_proto2","getSectionList","getLayoutsFromSection","section"],"mappings":"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"}
1
+ {"version":3,"file":"index.modern.js","sources":["../src/atomicElement.js","../src/quotes/elements/layout1.js","../src/quotes/Component.js","../src/banner/elements/layout1.js","../src/banner/Component.js","../src/textPlusImg/elements/layout1.js","../src/textPlusImg/Component.js","../src/gallery/elements/layout1.js","../src/gallery/Component.js","../src/text/elements/layout1.js","../src/text/Component.js","../src/list/elements/layout1.js","../src/list/Component.js","../src/canvas/CanvasContainer.js","../src/constants.js","../src/Section.js"],"sourcesContent":["export class AtomicElements {\r\n constructor(){\r\n this.layout = []\r\n this.layoutFootprint = []\r\n this.layoutFootprintReq = []\r\n }\r\n\r\n layoutsLength(){\r\n return(\r\n this.layout.length\r\n )\r\n }\r\n\r\n build(content, layoutId){\r\n return(\r\n this.layout[layoutId](content)\r\n )\r\n }\r\n\r\n footprint(layout){\r\n let img = this.layoutFootprint[layout]\r\n let req = this.layoutFootprintReq[layout]\r\n console.log('img atomic', img)\r\n return(\r\n {req, img}\r\n )\r\n }\r\n\r\n}\r\n","import React from 'react';\r\nimport Carousel from 'react-material-ui-carousel'\r\nimport { Box, Typography, Slide } from '@mui/material'\r\n\r\nexport default function Layout1(content) {\r\n\r\n return (\r\n <Carousel indicators navButtonsAlwaysInvisible sx={{ width: '100%', height: '100%' }}>\r\n {\r\n content.component.subcomponent.map((item, i) => <Item key={i} content={item} side={content.component.justify_content} />)\r\n }\r\n </Carousel>\r\n )\r\n}\r\n\r\nfunction Item(props) {\r\n const { content, side } = props\r\n const visible = true\r\n\r\n const getSideRender = (side) => {\r\n if (side === 'left') {\r\n return 'flex-start'\r\n } else if (side === 'right') {\r\n return 'flex-end'\r\n } else {\r\n return 'center'\r\n }\r\n }\r\n\r\n const getSideMargin = (side) => {\r\n if (side === 'left') {\r\n return '0px auto 0px 0px'\r\n } else if (side === 'right') {\r\n return '0px 0px 0px auto'\r\n } else {\r\n return 'auto'\r\n }\r\n }\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n width: { xs: '100%', md: '70%' },\r\n justifyContent: getSideRender(side),\r\n margin: getSideMargin(side),\r\n textAlign: side,\r\n height: '100%',\r\n }}\r\n >\r\n <Slide direction=\"left\" in={visible}>\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n flexDirection: 'column',\r\n color: content.text_color,\r\n alignItems: getSideRender(side),\r\n }}\r\n >\r\n <Box\r\n component=\"img\"\r\n src={content.image ? content.image.url : \"https://cdn-icons-png.flaticon.com/512/6596/6596121.png\"}\r\n sx={{ width: '120px', height: '120px', marginBottom: '16px', borderRadius: '50%' }}\r\n />\r\n <Typography className=\"xmiddle\" sx={{ marginBottom: '16px', minHeight: {xs: '270px', md: '90px'} }}>\r\n {content.description ?\r\n content.description\r\n : 'Agregue descripción'}\r\n </Typography>\r\n <Typography className=\"small\" sx={{ marginBottom: '16px', textAlign: 'right' }}>\r\n {content.subtitle ?\r\n content.subtitle\r\n : 'Agregue subtítulo'}\r\n </Typography>\r\n </Box>\r\n </Slide>\r\n </Box>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Quotes extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['quotes_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 1,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'subtitle':'Subtitle',\r\n 'description':'Description',\r\n 'image': 'sqr'\r\n },\r\n\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n \r\n}","import { Box, Button, Typography, Slide } from '@mui/material'\r\nimport React from 'react'\r\n\r\nexport default function Layout1(content) {\r\n const visible = true\r\n return (\r\n <Slide direction=\"left\" in={visible}>\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n flexDirection: 'column',\r\n width: { xs: '100%', md: '50%' },\r\n height: { xs: '100%', lg: '60vh' },\r\n justifyContent: 'center',\r\n color: content.component.subcomponent[0]?.text_color\r\n }}\r\n >\r\n <Typography className=\"title-xxlarge\" sx={{ marginBottom: '16px' }}>\r\n {content.component.subcomponent[0]?.title ?\r\n content.component.subcomponent[0]?.title\r\n : 'Agregue título'}\r\n </Typography>\r\n <Typography className=\"xmiddle\" sx={{ marginBottom: '16px' }}>\r\n {content.component.subcomponent[0]?.description ?\r\n content.component.subcomponent[0]?.description\r\n : 'Agregue descripción'}\r\n </Typography>\r\n <Box>\r\n <Button\r\n variant='contained'\r\n href={content.component.subcomponent[0]?.button_action}\r\n sx={{ width: 'auto', marginBottom: '16px' }}\r\n >\r\n {content.component.subcomponent[0]?.button_title ?\r\n content.component.subcomponent[0]?.button_title\r\n : 'Nombre botón'}\r\n </Button>\r\n </Box>\r\n </Box>\r\n </Slide>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Banner extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n\r\n layout = [Layout1]\r\n layoutFootprint = ['banner_layout_1.jpg']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title': 'Tittle',\r\n 'description': 'Description',\r\n 'button_title': 'Button Title',\r\n 'button_action': 'Button action',\r\n 'image':'background',\r\n 'text_color': 'Text color',\r\n 'link': 'Link',\r\n // 'name':'Name',\r\n },\r\n\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n // <texinput display={!layout.img} id='Title'>\r\n // <texinput display={!layout.img} id='content'></texinput>\r\n // <texinput display={!layout.img} id='name'></texinput>\r\n //<texinput disable={!layout.img}>\r\n}","import { Box, Button, Typography } from \"@mui/material\"\r\nimport React from \"react\"\r\nimport { Slide } from \"@mui/material\";\r\nimport Grow from '@mui/material/Grow';\r\n\r\nexport default function Layout1(content) {\r\n\r\n const visible = true\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n flexDirection: { xs: 'column', md: content.component.justify_content != 'right' ? 'row' : 'row-reverse' },\r\n gap: '16px',\r\n alignItems: 'center'\r\n }}\r\n color={content.component.subcomponent[0]?.text_color}\r\n >\r\n <Box>\r\n <Slide direction=\"right\" in={visible}>\r\n <Box sx={{ width: { xs: '100%', md: '550px', lg: '640px' }, height: { md: '353px', lg: '426px' }, maxWidth: '100vw' }}>\r\n <img width=\"100%\" height=\"100%\" src={content.component.subcomponent[0]?.image ? content.component.subcomponent[0]?.image.url : 'https://wozapps-develop.s3.us-east-2.amazonaws.com/gerry/resources/landing/bbb84144-02cd-4cf8-a1be-21ba47e7c4fa.jpeg'}></img>\r\n </Box>\r\n </Slide>\r\n </Box>\r\n <Box>\r\n <Grow\r\n in={visible}\r\n style={{ transformOrigin: '0 0 0' }}\r\n {...(visible ? { timeout: 1000 } : {})}\r\n >\r\n <Box>\r\n <Box sx={{ marginBottom: '16px' }}>\r\n <Typography className=\"title-xlarge\">{content.component.subcomponent[0]?.title ? content.component.subcomponent[0]?.title : 'Agregue título'}</Typography>\r\n </Box>\r\n <Box sx={{ marginBottom: '16px', color: '#767676' }}>\r\n <Typography className=\"middle\">\r\n {content.component.subcomponent[0]?.description ? content.component.subcomponent[0]?.description : 'Agregue descripción'}\r\n </Typography>\r\n </Box>\r\n <Box>\r\n <Button\r\n variant=\"contained\"\r\n href={content.component.subcomponent[0]?.button_action}\r\n sx={{ width: 'auto' }}\r\n >\r\n {content.component.subcomponent[0]?.button_title ?\r\n content.component.subcomponent[0]?.button_title : 'Nombre botón'}\r\n </Button>\r\n </Box>\r\n </Box>\r\n </Grow>\r\n </Box>\r\n </Box>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class TextPlusImg extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1, Layout1]\r\n layoutFootprint = ['text_image_layout_1.png', 'text_image_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title':'Title',\r\n 'description':'Text',\r\n 'button_title':'Button Title',\r\n 'button_action':'Button Action',\r\n 'image':'Image',\r\n 'link':'Link'\r\n },\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title':'Title',\r\n 'description':'Text',\r\n 'button_title':'Button Title',\r\n 'button_action':'Button Action',\r\n 'image':'req_hor',\r\n },\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n \r\n}","import React from \"react\"\r\nimport { Box, Typography, Slide, Grid } from '@mui/material'\r\n\r\nexport default function Layout1(content) {\r\n const visible = true\r\n\r\n return (\r\n <Slide direction=\"left\" in={visible}>\r\n <Box sx={{ width: '100%' }}>\r\n <Typography className=\"title-xlarge\" sx={{ margin: '16px auto' }}>{content.component.title ? content.component.title : 'Agregue un título'}</Typography>\r\n <Grid container>\r\n {content.component.subcomponent?.map((img, index) => (\r\n <Grid key={index} item xs={12} md={4}>\r\n <Box\r\n component=\"img\"\r\n src={\r\n img.image.url ?\r\n img.image.url :\r\n 'https://wozapps-develop.s3.us-east-2.amazonaws.com/gerry/resources/landing/bbb84144-02cd-4cf8-a1be-21ba47e7c4fa.jpeg'\r\n }\r\n sx={{ \r\n width: { xs: '100%', md: '95%' }, \r\n aspectRatio: '16/9',\r\n marginBottom: '16px',\r\n }}\r\n />\r\n </Grid>\r\n ))}\r\n </Grid>\r\n </Box>\r\n </Slide>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Gallery extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['gallery_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 1,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title':'Tittle',\r\n 'image': 'req_hor'\r\n },\r\n\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n \r\n}","import React from \"react\"\r\nimport { Box, Typography, Slide } from '@mui/material'\r\n\r\nexport default function Layout1(content) {\r\n const visible = true\r\n\r\n return (\r\n <Slide direction=\"left\" in={visible}>\r\n <Box\r\n sx={{\r\n width: {xs:'100%', md:'70%'},\r\n color: content.component.subcomponent[0]?.text_color,\r\n textAlign: content.component.justify_content\r\n }}\r\n >\r\n <Typography className=\"title-xlarge\" sx={{ marginBottom: '16px' }}>\r\n {content.component.subcomponent[0]?.title ?\r\n content.component.subcomponent[0]?.title\r\n : 'Agregue título'}\r\n </Typography>\r\n <Typography className=\"middle\" sx={{ marginBottom: '16px', color: '#767676' }}>\r\n {content.component.subcomponent[0]?.description ?\r\n content.component.subcomponent[0]?.description\r\n : 'Agregue descripción'}\r\n </Typography>\r\n </Box>\r\n </Slide>\r\n )\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class Text extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['quotes_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 0,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'title': 'Tittle',\r\n 'description': 'Description',\r\n },\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n\r\n}","import React, { useState, useEffect } from 'react';\r\nimport Carousel from 'react-material-ui-carousel';\r\nimport { Box, Typography, Slide, Card, CardMedia, CardContent, Grid, useTheme, useMediaQuery } from '@mui/material';\r\n\r\nexport default function Layout1(content) {\r\n\r\n return (\r\n <Grid container>\r\n <Item content={content.component.subcomponent} side={content.component.justify_content} />\r\n </Grid>\r\n );\r\n}\r\n\r\nfunction Item(props) {\r\n const { content, side } = props;\r\n const [arrayFourElements, setArrayFourElements] = useState([]);\r\n // console.log(\"🚀 ~ file: layout1.js:17 ~ Item ~ arrayFourElements:\", arrayFourElements)\r\n const visible = true;\r\n const theme = useTheme();\r\n const isXsScreen = useMediaQuery(theme.breakpoints.down('sm'));\r\n // console.log(\"🚀 ~ file: layout1.js:21 ~ Item ~ isXsScreen:\", isXsScreen)\r\n const isSmScreen = useMediaQuery(theme.breakpoints.between('sm', 'md'));\r\n // console.log(\"🚀 ~ file: layout1.js:21 ~ Item ~ isSmScreen:\", isSmScreen)\r\n const isMdScreen = useMediaQuery(theme.breakpoints.between('md', 'lg'));\r\n const isLgScreen = useMediaQuery(theme.breakpoints.up('lg'));\r\n\r\n function divideArreglo(arreglo, tamanoMaximo) {\r\n var subarreglos = [];\r\n var subarregloActual = [];\r\n\r\n for (var i = 0; i < arreglo.length; i++) {\r\n subarregloActual.push(arreglo[i]);\r\n\r\n if (subarregloActual.length === tamanoMaximo || i === arreglo.length - 1) {\r\n subarreglos.push(subarregloActual);\r\n subarregloActual = [];\r\n }\r\n }\r\n\r\n return subarreglos;\r\n }\r\n\r\n useEffect(() => {\r\n let tamanoMaximo;\r\n // console.log(\"🚀 ~ file: layout1.js:42 ~ useEffect ~ tamanoMaximo:\", tamanoMaximo)\r\n\r\n if (isSmScreen) {\r\n tamanoMaximo = 2;\r\n } else if (isMdScreen) {\r\n tamanoMaximo = 3;\r\n } else if (isLgScreen) {\r\n tamanoMaximo = 4;\r\n } else if(isXsScreen) {\r\n tamanoMaximo = 1;\r\n }\r\n\r\n setArrayFourElements(divideArreglo(content, tamanoMaximo));\r\n }, [isXsScreen, isSmScreen, isMdScreen, isLgScreen, content]);\r\n\r\n if (!arrayFourElements) {\r\n return null\r\n } else {\r\n return (\r\n content.length > 4 ? (\r\n <Carousel\r\n autoPlay\r\n indicators\r\n // fullHeightHover={false} // We want the nav buttons wrapper to only be as big as the button element is\r\n // navButtonsProps={{ // Change the colors and radius of the actual buttons. THIS STYLES BOTH BUTTONS\r\n // style: {\r\n // backgroundColor: 'red',\r\n // borderRadius: 0\r\n // }\r\n // }}\r\n // navButtonsWrapperProps={{ // Move the buttons to the bottom. Unsetting top here to override default style.\r\n // style: {\r\n // bottom: 'unset',\r\n // top: '0',\r\n // left: '0',\r\n // }\r\n // }}\r\n \r\n navButtonsAlwaysVisible={true}\r\n sx={{ width: '100%', height: '100%' }}\r\n >\r\n {arrayFourElements.map((items, i) => {\r\n return (\r\n <Grid container key={i} spacing={3}>\r\n {\r\n items.map((item, j) => {\r\n return (\r\n <Grid item key={j} sm={6} md={4} lg={3}>\r\n <Slide direction=\"left\" in={visible}>\r\n <Card\r\n sx={{\r\n width: '300px',\r\n maxWidth: 512,\r\n // height: '100%', \r\n boxShadow: 'none',\r\n borderRadius: 0,\r\n border: '1px solid #e5e5e5',\r\n borderRadius: '10px',\r\n }}\r\n >\r\n <CardMedia\r\n component='img'\r\n height='300px'\r\n width='300px'\r\n image=\"https://images.unsplash.com/reserve/Af0sF2OS5S5gatqrKzVP_Silhoutte.jpg?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxleHBsb3JlLWZlZWR8Mnx8fGVufDB8fHx8fA%3D%3D&w=1000&q=80\"\r\n sx={{ aspectRatio: '1/1' }}\r\n // image={\r\n // product.main_model?.image?.url\r\n // ? product.main_model.image.url\r\n // : img.src\r\n // }\r\n />\r\n <CardContent\r\n sx={{\r\n padding: '8px 16px',\r\n // height: 'auto',\r\n '&.MuiCardContent-root:last-child': {\r\n paddingBottom: '8px'\r\n }\r\n }}\r\n >\r\n <Box\r\n component='div'\r\n sx={{\r\n display: 'flex',\r\n justifyContent: 'space-between',\r\n alignItems: 'center'\r\n }}\r\n >\r\n <Box\r\n sx={{\r\n maxWidth: '80%',\r\n // height: 'auto',\r\n display: '-webkit-box',\r\n WebkitLineClamp: 2,\r\n WebkitBoxOrient: 'vertical',\r\n overflow: 'hidden',\r\n textOverflow: 'ellipsis',\r\n }}\r\n >\r\n <Typography className='simple'>\r\n {/* {product.name} */}\r\n Pan de muertos de masa madre real madrid\r\n </Typography>\r\n </Box>\r\n </Box>\r\n <Typography>\r\n $4000\r\n {/* <CurrencyFormat\r\n value={formatPrice(product.min_price)}\r\n className='xsmall-color'\r\n displayType={'text'}\r\n thousandSeparator={true}\r\n prefix={'$'}\r\n // decimalSeparator={','}\r\n fixedDecimalScale={true}\r\n /> */}\r\n </Typography>\r\n </CardContent>\r\n </Card>\r\n </Slide>\r\n </Grid>\r\n )\r\n })\r\n }\r\n </Grid>\r\n )\r\n })}\r\n </Carousel>\r\n ) : (\r\n content.map((item, i) => {\r\n return (\r\n <Grid item key={i} sm={6} md={4} lg={3}>\r\n <Slide direction=\"left\" in={visible}>\r\n <Card\r\n sx={{\r\n width: '300px',\r\n maxWidth: 512,\r\n // height: '100%', \r\n boxShadow: 'none',\r\n borderRadius: 0,\r\n border: '1px solid #e5e5e5',\r\n borderRadius: '10px',\r\n }}\r\n >\r\n <CardMedia\r\n component='img'\r\n height='300px'\r\n width='300px'\r\n image=\"https://images.unsplash.com/reserve/Af0sF2OS5S5gatqrKzVP_Silhoutte.jpg?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxleHBsb3JlLWZlZWR8Mnx8fGVufDB8fHx8fA%3D%3D&w=1000&q=80\"\r\n sx={{ aspectRatio: '1/1' }}\r\n // image={\r\n // product.main_model?.image?.url\r\n // ? product.main_model.image.url\r\n // : img.src\r\n // }\r\n />\r\n <CardContent\r\n sx={{\r\n padding: '8px 16px',\r\n // height: 'auto',\r\n '&.MuiCardContent-root:last-child': {\r\n paddingBottom: '8px'\r\n }\r\n }}\r\n >\r\n <Box\r\n component='div'\r\n sx={{\r\n display: 'flex',\r\n justifyContent: 'space-between',\r\n alignItems: 'center'\r\n }}\r\n >\r\n <Box\r\n sx={{\r\n maxWidth: '80%',\r\n // height: 'auto',\r\n display: '-webkit-box',\r\n WebkitLineClamp: 2,\r\n WebkitBoxOrient: 'vertical',\r\n overflow: 'hidden',\r\n textOverflow: 'ellipsis',\r\n }}\r\n >\r\n <Typography className='simple'>\r\n {/* {product.name} */}\r\n Pan de muertos de masa madre real madrid\r\n </Typography>\r\n </Box>\r\n </Box>\r\n <Typography>\r\n $4000\r\n {/* <CurrencyFormat\r\n value={formatPrice(product.min_price)}\r\n className='xsmall-color'\r\n displayType={'text'}\r\n thousandSeparator={true}\r\n prefix={'$'}\r\n // decimalSeparator={','}\r\n fixedDecimalScale={true}\r\n /> */}\r\n </Typography>\r\n </CardContent>\r\n </Card>\r\n </Slide>\r\n </Grid>\r\n )\r\n })\r\n )\r\n )\r\n }\r\n}","import { AtomicElements } from \"../atomicElement\"\r\nimport Layout1 from './elements/layout1'\r\n\r\nexport class List extends AtomicElements {\r\n constructor() {\r\n super()\r\n }\r\n layout = [Layout1]\r\n layoutFootprint = ['list_layout_1.png']\r\n layoutFootprintReq = [\r\n {\r\n 'type': 1,// all reqs should have this, 0 single elemet | 1 more than one. E.G Carousel or single element\r\n 'subtitle':'Subtitle',\r\n 'description':'Description',\r\n 'image': 'Image'\r\n },\r\n ]\r\n //Methods heredados\r\n // layout, layouts(), build() \r\n}","import React from \"react\";\r\nimport { Box, Container } from \"@mui/material\";\r\n\r\nexport default function CanvasContainer(props) {\r\n const { json, children } = props\r\n const rgbColor = hexToRgb(json.component.bg_image_overlay_color);\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'flex',\r\n alignItems: 'center',\r\n backgroundColor:\r\n json.component.bg_type === 1\r\n ? json.component.bg_color1\r\n : undefined,\r\n backgroundImage:\r\n json.component.bg_type === 2\r\n ? `linear-gradient(to ${json.component.bg_gradiant_orientation}, ${json.component.bg_color1}, ${json.component.bg_color2})`\r\n : json.component.bg_type === 3\r\n ? `url(${json.component.bg_image?.url})`\r\n : undefined,\r\n backgroundPosition: 'center',\r\n backgroundSize: 'cover',\r\n backgroundRepeat: 'no-repeat',\r\n }}\r\n >\r\n <Box\r\n sx={{\r\n bgcolor: `${json.component.bg_image_overlay && json.component.bg_type === 3 ?\r\n `rgba(${rgbColor.r}, ${rgbColor.g}, ${rgbColor.b}, ${json.component.bg_image_overlay_alpha_css})` :\r\n undefined\r\n }`,\r\n padding: '64px 24px',\r\n width: '100%'\r\n }}\r\n >\r\n <Container\r\n maxWidth='xl'\r\n sx={{\r\n padding: '0px',\r\n '&.MuiContainer-root':{\r\n paddingLeft: { xs: '0px', xl: '24px' },\r\n paddingRight: { xs: '0px', xl: '24px' }\r\n }\r\n }}\r\n >\r\n <Box\r\n sx={{\r\n minWidth: { xs: '100%', md: '45%' },\r\n display: 'flex',\r\n justifyContent: {\r\n xs: 'center',\r\n md: json.component.justify_content ? json.component.justify_content : 'center'\r\n }\r\n }}\r\n >\r\n {children}\r\n </Box>\r\n </Container>\r\n </Box>\r\n </Box>\r\n );\r\n}\r\n\r\n\r\nfunction hexToRgb(hex) {\r\n if (hex) {\r\n const cleanHex = hex.startsWith('#') ? hex.slice(1) : hex;\r\n\r\n const r = parseInt(cleanHex.substring(0, 2), 16);\r\n const g = parseInt(cleanHex.substring(2, 4), 16);\r\n const b = parseInt(cleanHex.substring(4, 6), 16);\r\n return { r, g, b };\r\n } else {\r\n return { r: 0, g: 0, b: 0 }\r\n }\r\n}","export const JK_RESOURCES = 'https://jk-clients.s3.us-east-2.amazonaws.com/jk-resources/'","import React from \"react\"\r\nimport { Quotes } from \"./quotes/Component\"\r\nimport { Banner } from \"./banner/Component\"\r\nimport { TextPlusImg } from \"./textPlusImg/Component\"\r\nimport { Gallery } from \"./gallery/Component\"\r\nimport { Text } from \"./text/Component\"\r\nimport { List } from \"./list/Component\"\r\nimport CanvasContainer from \"./canvas/CanvasContainer\"\r\nimport { JK_RESOURCES } from \"./constants\"\r\n// Section is a common class for each component\r\nexport class Section {\r\n constructor(AtomicElement, theme) {\r\n this.child = AtomicElement\r\n }\r\n\r\n component(json) {\r\n console.log('json', json)\r\n return (\r\n <CanvasContainer json={json}>\r\n {/* Child is the instance passed as parameter in section, next class */}\r\n {this.child.build(json, json.component.layout)}\r\n </CanvasContainer>\r\n )\r\n }\r\n\r\n getFootPrint(layout) {\r\n let footPrint = this.child.footprint(layout)\r\n console.log('section', footPrint)\r\n return (\r\n { req: footPrint.req, img: `${JK_RESOURCES}${footPrint.img}` }\r\n )\r\n }\r\n\r\n layoutLength() {\r\n return (\r\n this.child.layoutsLength()\r\n )\r\n }\r\n\r\n}\r\n\r\n//Sections is the interface with admin and store\r\nexport class Sections {\r\n constructor() {\r\n this.banner = new Section(new Banner())\r\n this.quotes = new Section(new Quotes())\r\n this.textPlusImg = new Section(new TextPlusImg())\r\n this.gallery = new Section(new Gallery())\r\n this.text = new Section(new Text())\r\n this.list = new Section(new List())\r\n this.sections = [this.banner, this.textPlusImg, this.quotes, this.gallery, this.text, this.list]\r\n }\r\n\r\n getSectionList() {\r\n return (\r\n {\r\n '0': 'Banner',\r\n '1': 'Texto + Imágenes',\r\n '2': 'Citas/Testimonios',\r\n '3': 'Galeria',\r\n '4': 'Texto',\r\n '5': 'Lista',\r\n }\r\n )\r\n }\r\n getLayoutsFromSection(index) {\r\n let section = this.sections[index]\r\n return (section)\r\n }\r\n\r\n}"],"names":["AtomicElements","layout","layoutFootprint","layoutFootprintReq","_proto","prototype","layoutsLength","length","build","content","layoutId","footprint","img","req","console","log","Layout1","React","createElement","Carousel","indicators","navButtonsAlwaysInvisible","sx","width","height","component","subcomponent","map","item","i","Item","key","side","justify_content","props","visible","getSideRender","getSideMargin","Box","display","xs","md","justifyContent","margin","textAlign","Slide","direction","flexDirection","color","text_color","alignItems","src","image","url","marginBottom","borderRadius","Typography","className","minHeight","description","subtitle","Quotes","_AtomicElements","_inheritsLoose","_this","call","_content$component$su","_content$component$su2","_content$component$su3","_content$component$su4","_content$component$su5","_content$component$su6","_content$component$su7","_content$component$su8","lg","title","Button","variant","href","button_action","button_title","Banner","_content$component$su9","_content$component$su10","gap","maxWidth","Grow","_extends","style","transformOrigin","timeout","TextPlusImg","Grid","container","index","aspectRatio","Gallery","Text","_useState","useState","arrayFourElements","setArrayFourElements","theme","useTheme","isXsScreen","useMediaQuery","breakpoints","down","isSmScreen","between","isMdScreen","isLgScreen","up","divideArreglo","arreglo","tamanoMaximo","subarreglos","subarregloActual","push","useEffect","autoPlay","navButtonsAlwaysVisible","items","spacing","j","_ref","sm","Card","boxShadow","border","CardMedia","CardContent","padding","paddingBottom","WebkitLineClamp","WebkitBoxOrient","overflow","textOverflow","_ref2","List","CanvasContainer","_json$component$bg_im","json","children","rgbColor","hexToRgb","bg_image_overlay_color","backgroundColor","bg_type","bg_color1","undefined","backgroundImage","bg_gradiant_orientation","bg_color2","bg_image","backgroundPosition","backgroundSize","backgroundRepeat","bgcolor","bg_image_overlay","r","g","b","bg_image_overlay_alpha_css","Container","paddingLeft","xl","paddingRight","minWidth","hex","cleanHex","startsWith","slice","parseInt","substring","JK_RESOURCES","Section","AtomicElement","child","getFootPrint","footPrint","layoutLength","Sections","banner","quotes","textPlusImg","gallery","text","list","sections","_proto2","getSectionList","getLayoutsFromSection","section"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keski_lib_catalog",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "Keski catalog components for Keski store, Codenation Studio",
5
5
  "author": "Francisco Marmolejo",
6
6
  "license": "",