{}
{"idPage":"52212ccc-eeb0-48d4-9e32-1d851acfdb1f","idApplication":"GLOBAL","dsDisplayName":"Deyel Site - Partners Directory","dsName":"DeyelSitePartnersDirectory","dsDescription":"","url":"partnersDirectory","title":"Deyel Site - Partners Directory","image":{},"images":{},"cdState":1,"accessLevel":0,"sourceCode":"let loadingMoreItems \u003d true;\nlet page \u003d 1;\nlet inputSearch \u003d null;\nlet selectPais \u003d null;\nlet listValues \u003d null;\n\n// This method is called after the page load, before any rendering\nfunction onInit() {\n\t// const lang \u003d $d.getCurrentUser().getLanguage();\n // const myvar \u003d $d.getVariable(\"myvar\").getValue();\n}\n\n// This method is called after the page is rendered\nfunction afterViewInit() {\n\t\n}\n\n// This method is called when the page is about to be unloaded\nfunction beforeViewUnload() {\n\t\n}\n\nfunction repeater1_onLoadDataSource(event) {\n\t\n const totalPages \u003d event.element.getTotalPages();\n let cantRow \u003d 4;\n\n let perPage \u003d event.element.getColumns() * cantRow;\n\n if ($d.getCurrentBreakpoint() \u003d\u003d\u003d \"DESKTOP\") {\n cantRow \u003d 2;\n } \n\n if (totalPages \u003d\u003d\u003d 1 || totalPages \u003d\u003d\u003d 0) {\n $d.getItem(\"itemVerMas\").setVisible(false);\n }\n\n if (totalPages \u003e 1) {\n $d.getItem(\"itemVerMas\").setVisible(true);\n }\n\n let items \u003d event.element.getData();\n \n const totalItems \u003d event.element.getTotalItems();\n \n $d.getVariable(\u0027totalItems\u0027).setValue(totalItems);\n\n items.forEach((instance, index) \u003d\u003e {\n let webSite \u003d instance.webSiteLine[0][\"webSiteLine/dsWebsite\"];\n //console.log(webSite, \"webSite\");\n let pos \u003d ((event.element.getPage() - 1) * event.element.getPerPage()) + index;\n let buttonUrl \u003d $d.getButton(\"button1\").getDOMElement(pos);\n // console.log(\"pos\", pos);\n if ( webSite ) {\n $d.getButton(\"button1\",index).setVisible(true);\n buttonUrl.parentNode.onclick \u003d () \u003d\u003e{\n console.log(\"webSite \", webSite);\n //$d.redirectToUrl(webSite,\"_blank\");\n window.open(webSite, \"_blank\");\n } ;\n \n }else{\n $d.getButton(\"button1\",index).setVisible(false);\n }\n\n });\n\n let repeater1DOM \u003d $d.getRepeater(\"repeater1\").getDOMElement();\n let repeater1DOMUp \u003d repeater1DOM.children[1];\n let repeater1DOMDown \u003d repeater1DOM.children[2];\n\n //Oculto las flechas\n if (repeater1DOMUp) {\n repeater1DOMUp.style.display \u003d \"none\";\n }\n if (repeater1DOMDown) {\n repeater1DOMDown.style.display \u003d \"none\";\n }\n\n loadingMoreItems \u003d false;\n $d.showLoading(false);\n\n if (!$d.getItem(\"itemVerMas\").isVisible()) return;\n setTimeout(() \u003d\u003e {\n const verMasTop \u003d $d.getItem(\"itemVerMas\").getDOMElement().getBoundingClientRect().top;\n if (verMasTop \u003c window.innerHeight) {\n loadMoreItems();\n }\n }, 500);\n}\n\nfunction loadMoreItems() {\n if (loadingMoreItems) return;\n loadingMoreItems \u003d true;\n\n let repeaterItems \u003d $d.getRepeater(\"repeater1\");\n page++;\n\n let cantRow \u003d 4;\n\n if ($d.getCurrentBreakpoint() \u003d\u003d\u003d \"DESKTOP\") {\n cantRow \u003d 2;\n }\n repeaterItems.setRows(page * cantRow);\n\n //\n repeaterItems.refreshRepeater();\n}\n\nfunction itemVerMas_onViewportEnter(event) {\n\tloadMoreItems();\n}\n\nfunction input8_onChange(event) {\n let inputBuscar \u003d $d.getInput(\"input8\").getValue();\n if(inputBuscar !\u003d\u003d null){\n inputSearch \u003d $d.getInput(\"input8\").getValue().trim();\n setFilter();\n }\n if(inputBuscar \u003d\u003d\u003d \"\") {\n $d.getDataSource(\"Partners\").deleteFilter(\"dsCompany\");\n }\n}\n\nfunction setFilter(){\n \n if (inputSearch !\u003d\u003d undefined \u0026\u0026 inputSearch !\u003d\u003d \"\" \u0026\u0026 inputSearch !\u003d\u003d null) {\n console.log(inputSearch,\"buscar\");\n $d.getDataSource(\"Partners\").setFilter(\"dsCompany\", \"like\", \"LITERAL\", inputSearch);\n }\n \n if (selectPais !\u003d\u003d undefined \u0026\u0026 selectPais !\u003d\u003d null) {\n console.log(selectPais,\"pais\");\n $d.getDataSource(\"Partners\").setFilter(\"lsAddress/dsCountry\", \"eq\", \"LITERAL\", selectPais.label);\n }\n\n\n}\n\nfunction input7_onChange(event) {\n console.log(listValues);\n\n\tconst itemPaisValue \u003d $d.getInput(\"inputPais\").getValue();\n console.log(itemPaisValue,\"valueSelect\");\n if(itemPaisValue){\n selectPais \u003d listValues.find(item \u003d\u003e item.code \u003d\u003d\u003d parseInt(itemPaisValue));\n console.log(selectPais,\"objeto\");\n setFilter();\n }\n if(!itemPaisValue) {\n $d.getDataSource(\"Partners\").deleteFilter(\"lsAddress/dsCountry\");\n }\n}\n\nfunction text8_afterViewInit(event) {\n\t$d.getText(\u0027text8\u0027).getDOMElement().style.cursor \u003d \u0027pointer\u0027;\n}\n\nfunction inputPais_onLoadRelation(event) {\n listValues \u003d event.values;\n}\n\nfunction text3_afterViewInit(event) {\n\t$d.getText(\u0027text3\u0027).getDOMElement().style.cursor \u003d \u0027pointer\u0027;\n}\n\nfunction text3_onClick(event) {\n let inputFilters \u003d $d.getInput(\u0027input8\u0027).getValue();\n let inputSelect \u003d $d.getInput(\u0027inputPais\u0027).getValue();\n \n if(inputFilters){\n $d.getDataSource(\"Partners\").deleteFilter(\"dsCompany\");\n $d.getInput(\u0027input8\u0027).setValue(\u0027\u0027);\n }\n if(inputSelect){\n $d.getDataSource(\"Partners\").deleteFilter(\"lsAddress/dsCountry\");\n $d.getInput(\u0027inputPais\u0027).setValue(null);\n }\n \n}","dataSources":[{"uuid":"bba0fca-71eb-628d-1201-fea23e8647f2","id":"Partners","name":"Partners","type":"FORM","source":"CRM_ACCOUNT","select":["__flLogo","dsCompany","dsDescription","/webSiteLine","dsIndustry","cdType","__cdType","__dsIndustry","/lsAddress","COUNT*","webSiteLine/tpWebsite","webSiteLine/dsWebsite","lsAddress/dsCity","lsAddress/dsAddress","lsAddress/dsCountry","lsAddress/dsState","lsAddress/tpAddress"],"count":0,"filters":[{"code":"cdType","operation":["in"],"value":["{\"code\":\"2\",\"value\":\"Socio Comercial\"}"],"type":"LITERAL","filterEmpty":true},{"code":"cdStatus","operation":["in"],"value":["{\"code\":\"1\",\"value\":\"Activa\"}"],"type":"LITERAL","filterEmpty":true}],"order":{"code":"dsCompany","order":"ASC"},"cache":false,"initialExecute":true}],"params":[],"variables":[{"uuid":"0f46723-385-7575-81de-88b82f462e3","id":"totalItems","name":"totalItems","type":"number"}],"lsPermissionAssignment":[{"idPermission":"MODELADOR","idApplication":"GLOBAL","lsCodeFunctions":["PG_@@@N000_@@@","PG_@@@_MODELER","PG_@@@_V001","PG_@@@_MG1","PG_@@@_G004","PG_@@@_ST1","PG_@@@_ST2","PG_@@@_ST4","PG_@@@_ST5","PG_@@@USE","PG_@@@_U001"]},{"idPermission":"ANONYMOUS","idApplication":"GLOBAL","lsCodeFunctions":["PG_@@@_U001","PG_@@@USE","PG_@@@N000_@@@"]}],"cdUserLastUpdate":"EDGARDO","dtLastUpdate":"2025-01-22 16:51:38.0","cdUserStore":"EDGARDO","dtStore":"2024-11-19 11:58:53.0","elements":{"components":{"root":{"uuid":"root","id":"root","name":"root","type":"root","layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto"}}}},"events":{}},"f3468f-75e1-e064-af71-bb3635abf22d":{"type":"section","subitems":["08883f2-81b4-cce-442b-2e43202a363"],"layout":{"DESKTOP":{"structure":{"size":{"minHeight":"unset"},"position":{"position":"relative"}}}},"props":{},"uuid":"f3468f-75e1-e064-af71-bb3635abf22d","id":"section2","name":"section2","events":{}},"08883f2-81b4-cce-442b-2e43202a363":{"uuid":"08883f2-81b4-cce-442b-2e43202a363","id":"container6","name":"container6","type":"container","subitems":["d6ddfe4-376c-541b-ff5f-3c748bc1a55"],"layout":{"DESKTOP":{"structure":{"size":{"width":"1260px","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"regular":{"padding":{"paddingTop":"10px","paddingBottom":"20px","paddingLeft":"20px","paddingRight":"20px"},"background":{"opacity":"ff"}}}},"TABLET":{"structure":{"size":{"width":"100%"}}}},"modifiedName":false,"modifiedId":false,"subtype":"containerSimple","props":{},"hyperLink":{"destinityType":"_self"},"parent":"f3468f-75e1-e064-af71-bb3635abf22d","events":{}},"fc18e01-5513-3cb5-cba-2fd78f6dc310":{"uuid":"fc18e01-5513-3cb5-cba-2fd78f6dc310","id":"item11","name":"item11","type":"item","subitems":["c5cd438-6dd0-a21-1711-8dcd8c66401"],"layout":{"DESKTOP":{"structure":{"size":{"height":"auto","minHeight":"unset"},"position":{"position":"relative"}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"d6ddfe4-376c-541b-ff5f-3c748bc1a55","events":{}},"23453c1-3fd2-56a-3317-675b807c410e":{"uuid":"23453c1-3fd2-56a-3317-675b807c410e","id":"item16","name":"item16","type":"item","subitems":["4dc2ec-55e-34c0-783d-fdf1122f6317"],"layout":{"DESKTOP":{"structure":{"position":{"position":"relative"}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"d6ddfe4-376c-541b-ff5f-3c748bc1a55","events":{}},"d6ddfe4-376c-541b-ff5f-3c748bc1a55":{"uuid":"d6ddfe4-376c-541b-ff5f-3c748bc1a55","id":"layout6","name":"layout6","type":"layout","subitems":["fc18e01-5513-3cb5-cba-2fd78f6dc310","23453c1-3fd2-56a-3317-675b807c410e"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"regular":{"padding":{"paddingLeft":"0px","paddingRight":"0px","paddingBottom":"0px","paddingTop":"0px"}}}}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"08883f2-81b4-cce-442b-2e43202a363","events":{}},"2fa10d0-25ad-50a7-025-7c58d464ba6":{"uuid":"2fa10d0-25ad-50a7-025-7c58d464ba6","id":"item21","name":"item21","type":"item","subitems":["524e24-d323-735c-481-4353c258dcb"],"layout":{"DESKTOP":{"structure":{"size":{"height":"auto","minHeight":"unset"},"position":{"position":"relative"}}},"MOBILE":{"style":{"props":{"type":"COLUMN"}},"structure":{"size":{"width":"auto","flexGrow":"1","flexShrink":"1"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"4dc2ec-55e-34c0-783d-fdf1122f6317","events":{}},"4dc2ec-55e-34c0-783d-fdf1122f6317":{"uuid":"4dc2ec-55e-34c0-783d-fdf1122f6317","id":"layout8","name":"layout8","type":"layout","subitems":["2fa10d0-25ad-50a7-025-7c58d464ba6"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"props":{"type":"ROW"},"regular":{"padding":{"paddingTop":"0px","paddingBottom":"0px","paddingLeft":"0px","paddingRight":"0px"}}}},"MOBILE":{}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"23453c1-3fd2-56a-3317-675b807c410e","events":{}},"524e24-d323-735c-481-4353c258dcb":{"uuid":"524e24-d323-735c-481-4353c258dcb","id":"text9","name":"text9","type":"text","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"minWidth":"unset"},"position":{"alignSelf":"center"}}},"MOBILE":{"structure":{"position":{"marginTop":"0px"},"size":{"height":"32auto"}}}},"modifiedName":false,"modifiedId":false,"subtype":"enriched_text","props":{"value":{"props":{"value":"\u003cp style\u003d\"text-align:left;\"\u003e\u003cstrong\u003e\u003ccontext value\u003d\"0f46723-385-7575-81de-88b82f462e3\"/\u003e\u003c/strong\u003e\u003cstrong\u003e de \u003c/strong\u003e\u003cstrong\u003e\u003cdatasource value\u003d\"COUNT*\" datasource\u003d\"bba0fca-71eb-628d-1201-fea23e8647f2\" type\u003d\"undefined\"/\u003e\u003c/strong\u003e\u003cstrong\u003e resultados obtenidos\u003c/strong\u003e\u003c/p\u003e\n"},"type":"LITERAL"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"2fa10d0-25ad-50a7-025-7c58d464ba6","events":{}},"c5cd438-6dd0-a21-1711-8dcd8c66401":{"uuid":"c5cd438-6dd0-a21-1711-8dcd8c66401","id":"layout9","name":"layout9","type":"layout","subitems":["c3e0fb6-a67-f54-5c0d-22a356e04eaf","38e67a-3447-dd7-6cc-fbfdd3bd0da","6cfc4fc-2eb7-27b-ea7-cddb3cc2c20f"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"props":{"type":"ROW"},"regular":{"padding":{"paddingTop":"0px","paddingBottom":"0px","paddingLeft":"0px","paddingRight":"0px"}}}},"MOBILE":{}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"fc18e01-5513-3cb5-cba-2fd78f6dc310","events":{}},"c3e0fb6-a67-f54-5c0d-22a356e04eaf":{"uuid":"c3e0fb6-a67-f54-5c0d-22a356e04eaf","id":"item23","name":"item23","type":"item","subitems":["7e1c88-c3e0-e1c-ce6-d7577c70281"],"layout":{"DESKTOP":{"structure":{"size":{"height":"auto","minHeight":"100%"},"position":{"position":"relative"}}},"MOBILE":{"style":{"props":{"type":"COLUMN"}},"structure":{"size":{"width":"auto","flexGrow":"1","flexShrink":"1"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"c5cd438-6dd0-a21-1711-8dcd8c66401","events":{}},"38e67a-3447-dd7-6cc-fbfdd3bd0da":{"uuid":"38e67a-3447-dd7-6cc-fbfdd3bd0da","id":"item24","name":"item24","type":"item","subitems":["4f0543-f5ff-8336-8734-4b28a0d8cdfa"],"layout":{"DESKTOP":{"structure":{"size":{"width":"30%","height":"auto","minHeight":"100%"},"position":{"position":"relative"}}},"MOBILE":{"style":{"props":{"type":"COLUMN"}},"structure":{"size":{"height":"30%","width":"auto","flexGrow":"1","flexShrink":"1"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"c5cd438-6dd0-a21-1711-8dcd8c66401","events":{}},"4f0543-f5ff-8336-8734-4b28a0d8cdfa":{"uuid":"4f0543-f5ff-8336-8734-4b28a0d8cdfa","id":"inputPais","name":"inputPais","type":"input","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"100%","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"paddingLabel":"10px","regular":{"padding":{"paddingLeft":"10px"},"border":{"top":{"color":"#b7b7b7","opacity":"64"},"left":{"color":"#b7b7b7","opacity":"64"},"bottom":{"width":"1px","color":"#b7b7b7"},"right":{"color":"#b7b7b7","opacity":"64"},"radius":{"topLeft":"8px","topRight":"8px","bottomRight":"8px","bottomLeft":"8px"}}},"focus":{"border":{"top":{"width":"1px","color":"#0068b4"},"right":{"width":"1px","color":"#0068b4"},"bottom":{"width":"1px","color":"#0068b4"},"left":{"width":"1px","color":"#0068b4"}}},"disabled":{"background":{"color":"#ffffff"}}}}},"modifiedName":true,"modifiedId":true,"subtype":"text","props":{"label":"","contentType":"normal","placeholder":"País","description":"","helpText":"","prefix":"","sufix":"","value":{"props":{"value":""},"type":"LITERAL"},"disabledMap":{},"perPage":20.0,"maxPerList":5.0},"relationConfig":{"type":"VALUE_LIST","idObject":"36d069e1-ea6f-4634-b696-20f54a666c60","idRelation":"e42cff023045eafaea85d8d01202","showIcon":false},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"38e67a-3447-dd7-6cc-fbfdd3bd0da","events":{"onChange":"input7_onChange","onLoadRelation":"inputPais_onLoadRelation"}},"7e1c88-c3e0-e1c-ce6-d7577c70281":{"uuid":"7e1c88-c3e0-e1c-ce6-d7577c70281","id":"input8","name":"input8","type":"input","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"50%","height":"44px"},"position":{"justifySelf":"end"}},"style":{"paddingLabel":"10px","regular":{"padding":{"paddingLeft":"10px"},"border":{"top":{"color":"#b7b7b7","opacity":"64"},"left":{"color":"#b7b7b7","opacity":"64"},"bottom":{"width":"1px","color":"#b7b7b7"},"right":{"color":"#b7b7b7","opacity":"64"},"radius":{"topLeft":"8px","topRight":"8px","bottomRight":"8px","bottomLeft":"8px"}}},"focus":{"border":{"top":{"width":"1px","color":"#0068b4"},"right":{"width":"1px","color":"#0068b4"},"bottom":{"width":"1px","color":"#0068b4"},"left":{"width":"1px","color":"#0068b4"}}},"disabled":{"background":{"color":"#ffffff"}}}},"MOBILE":{"structure":{"size":{"width":"100%"}}}},"modifiedName":false,"modifiedId":false,"subtype":"text","props":{"label":"","contentType":"normal","placeholder":"Buscar...","description":"","helpText":"","prefix":"","sufix":"","value":{"props":{"value":""},"type":"LITERAL"}},"relationConfig":{"type":"WITHOUT_RELATION"},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"c3e0fb6-a67-f54-5c0d-22a356e04eaf","events":{"onChange":"input8_onChange"}},"fda8-0be-186-1116-eed6c73bfc7":{"type":"section","subitems":["e5e8d-8cde-34e6-4c01-fa4a5fdb621f","78ebb-e8-c527-8276-f27c664a2"],"layout":{"DESKTOP":{"structure":{"position":{"position":"relative"}}}},"props":{},"uuid":"fda8-0be-186-1116-eed6c73bfc7","id":"section1","name":"section1","events":{}},"e5e8d-8cde-34e6-4c01-fa4a5fdb621f":{"uuid":"e5e8d-8cde-34e6-4c01-fa4a5fdb621f","id":"container1","name":"container1","type":"container","subitems":["cdff5-a7c2-0a31-d2ef-3885ac11b2a"],"layout":{"DESKTOP":{"structure":{"size":{"width":"1260px","minHeight":"unset","minWidth":"unset"},"position":{"justifySelf":"center"}},"style":{"regular":{"background":{"opacity":"ff"}}}},"TABLET":{"structure":{"size":{"width":"auto"}}}},"modifiedName":false,"modifiedId":false,"subtype":"containerSimple","props":{},"hyperLink":{"destinityType":"_self"},"parent":"fda8-0be-186-1116-eed6c73bfc7","events":{}},"b2dcdbb-e083-00ff-3d3-2301541234b4":{"uuid":"b2dcdbb-e083-00ff-3d3-2301541234b4","id":"item7","name":"item7","type":"item","subitems":["4b4aada-77bc-a65a-0d5c-3d611c176b45"],"layout":{"DESKTOP":{"structure":{"size":{"minHeight":"unset"},"position":{"position":"relative"}}}},"subtype":"CARD","hyperLink":{"destinityType":"_self"},"props":{},"parent":"a84d0e1-4eea-2af3-a437-5a60ac5abd","events":{}},"a84d0e1-4eea-2af3-a437-5a60ac5abd":{"uuid":"a84d0e1-4eea-2af3-a437-5a60ac5abd","id":"repeater1","name":"repeater1","type":"repeater","subitems":["b2dcdbb-e083-00ff-3d3-2301541234b4"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"props":{"type":"CARD","direction":"column","scrollPos":"inside","scrollAlign":"start","pagination":"infinite","orientation":"left"},"regular":{"padding":{"paddingTop":"0px","paddingBottom":"0px","paddingLeft":"0px","paddingRight":"0px"}}}},"TABLET":{"style":{"props":{"columns":2.0}}},"MOBILE":{"style":{"props":{"columns":1.0}}}},"modifiedName":false,"modifiedId":false,"subtype":"TAPE","props":{"dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","fillPage":false,"canModify":false,"initialItem":false},"hyperLink":{"destinityType":"_self"},"parent":"b27bd25-716a-8fbf-3f63-30a0f1645f","events":{"onLoadDataSource":"repeater1_onLoadDataSource"}},"4b4aada-77bc-a65a-0d5c-3d611c176b45":{"uuid":"4b4aada-77bc-a65a-0d5c-3d611c176b45","id":"container2","name":"container2","type":"container","subitems":["4147a11-7a3e-eac8-672-c46a7ac546c0"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"317px","minHeight":"256px"},"position":{"justifySelf":"center"}},"style":{"regular":{"padding":{"paddingTop":"20px","paddingBottom":"20px","paddingLeft":"20px","paddingRight":"20px"},"shadow":{"blur":"8px","spread":"2px","color":"#7b7b7b","opacity":"19"},"background":{"opacity":"ff"},"border":{"top":{"color":"#d8dadc","width":"1px"},"left":{"color":"#d8dadc","width":"1px"},"bottom":{"color":"#d8dadc","width":"1px"},"right":{"color":"#d8dadc","width":"1px"},"radius":{"topRight":"15px","topLeft":"15px","bottomRight":"15px","bottomLeft":"15px"}}},"hover":{"shadow":{"color":"#5b3bf9","opacity":"19"},"border":{"top":{"color":"#014fa6","width":"1px","opacity":"ff","style":"solid"},"right":{"color":"#014fa6","width":"1px","opacity":"ff","style":"solid"},"bottom":{"color":"#014fa6","width":"1px","opacity":"ff","style":"solid"},"left":{"color":"#014fa6","width":"1px","opacity":"ff","style":"solid"}}}}},"TABLET":{}},"modifiedName":false,"modifiedId":false,"subtype":"containerSimple","props":{},"hyperLink":{"destinityType":"_self"},"parent":"b2dcdbb-e083-00ff-3d3-2301541234b4","events":{}},"4147a11-7a3e-eac8-672-c46a7ac546c0":{"uuid":"4147a11-7a3e-eac8-672-c46a7ac546c0","id":"layout2","name":"layout2","type":"layout","subitems":["3e635aa-ef15-3624-41a2-62cb7083f0b","a0a5b0-e4d-ec8e-bb73-e1021dec5415","c77b07-ad62-ec1c-542-6628d4eb3b00"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"justifySelf":"center"}},"style":{"padding":{"paddingTop":"0px","paddingBottom":"0px","paddingLeft":"0px","paddingRight":"0px"}}},"TABLET":{}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"4b4aada-77bc-a65a-0d5c-3d611c176b45","events":{}},"3e635aa-ef15-3624-41a2-62cb7083f0b":{"uuid":"3e635aa-ef15-3624-41a2-62cb7083f0b","id":"item8","name":"item8","type":"item","subitems":["f12a34-cd7-164f-87d8-13ec835088e","86201e8-b865-8237-3a1-6b2cc75d6580"],"layout":{"DESKTOP":{"structure":{"size":{"height":"auto","minHeight":"unset"},"position":{"position":"relative"}},"style":{"regular":{"background":{"color":"#eceeee","opacity":"00"}}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"4147a11-7a3e-eac8-672-c46a7ac546c0","events":{}},"f12a34-cd7-164f-87d8-13ec835088e":{"uuid":"f12a34-cd7-164f-87d8-13ec835088e","id":"image1","name":"image1","type":"image","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"99px","height":"35px"}}},"TABLET":{"structure":{"size":{"width":"100%"}}}},"modifiedName":false,"modifiedId":false,"subtype":"small_image","props":{"value":{"props":{"value":"__flLogo","type":"ImageBase64","dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","desc":"Logo"},"type":"SOURCE"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"3e635aa-ef15-3624-41a2-62cb7083f0b","events":{}},"86201e8-b865-8237-3a1-6b2cc75d6580":{"uuid":"86201e8-b865-8237-3a1-6b2cc75d6580","id":"layout3","name":"layout3","type":"layout","subitems":["e1c07ba-36b5-e4a-b1ff-e48376f6ad","8ad2812-6324-f6b6-16b-8aa21c162303"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"marginLeft":"1px","justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"regular":{"padding":{"paddingLeft":"0px","paddingRight":"0px","paddingTop":"0px","paddingBottom":"0px"}}}}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"3e635aa-ef15-3624-41a2-62cb7083f0b","events":{}},"e1c07ba-36b5-e4a-b1ff-e48376f6ad":{"uuid":"e1c07ba-36b5-e4a-b1ff-e48376f6ad","id":"item9","name":"item9","type":"item","subitems":["fe3dd8-ac2c-8fc6-d51-bffccebed766","7d4f8dc-0587-ca73-e3dc-a5b330f011fc"],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","height":"80px","flexGrow":"1","flexShrink":"1","minHeight":"unset"},"position":{"position":"relative"}},"style":{"props":{"type":"COLUMN"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"86201e8-b865-8237-3a1-6b2cc75d6580","events":{}},"fe3dd8-ac2c-8fc6-d51-bffccebed766":{"uuid":"fe3dd8-ac2c-8fc6-d51-bffccebed766","id":"image4","name":"image4","type":"image","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","height":"60px","minWidth":"unset"}},"style":{"background":{"position":{"x":"left"}}}}},"modifiedName":false,"modifiedId":false,"subtype":"square_image","props":{"value":{"props":{"value":"__flLogo","type":"ImageBase64","dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","desc":"Logo"},"type":"SOURCE"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"e1c07ba-36b5-e4a-b1ff-e48376f6ad","events":{}},"8ad2812-6324-f6b6-16b-8aa21c162303":{"uuid":"8ad2812-6324-f6b6-16b-8aa21c162303","id":"item10","name":"item10","type":"item","subitems":["06a6f4d-067f-af31-7fae-7a38006c22"],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","flexGrow":"1","flexShrink":"1","minHeight":"unset"},"position":{"position":"relative"}},"style":{"props":{"type":"COLUMN"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"86201e8-b865-8237-3a1-6b2cc75d6580","events":{}},"06a6f4d-067f-af31-7fae-7a38006c22":{"uuid":"06a6f4d-067f-af31-7fae-7a38006c22","id":"text1","name":"text1","type":"text","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%"},"position":{"marginLeft":"0px","justifySelf":"center"}},"style":{"font":{"size":"18px"},"maxLines":1.0}}},"modifiedName":false,"modifiedId":false,"subtype":"h2","props":{"value":{"props":{"value":"dsCompany","type":"Nativestring","dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","desc":"desc_RazonSocial"},"type":"SOURCE"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"8ad2812-6324-f6b6-16b-8aa21c162303","events":{}},"a0a5b0-e4d-ec8e-bb73-e1021dec5415":{"uuid":"a0a5b0-e4d-ec8e-bb73-e1021dec5415","id":"item12","name":"item12","type":"item","subitems":["757a43-acb-15d-f13d-02c5c8161a40"],"layout":{"DESKTOP":{"structure":{"size":{"height":"100px"},"position":{"position":"relative"}},"style":{"regular":{"background":{"color":"#eceeee","opacity":"00"}}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"4147a11-7a3e-eac8-672-c46a7ac546c0","events":{}},"757a43-acb-15d-f13d-02c5c8161a40":{"uuid":"757a43-acb-15d-f13d-02c5c8161a40","id":"text2","name":"text2","type":"text","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%"}},"style":{"font":{"family":"Roboto","size":"15px","color":"#5b5a5f","height":1.3},"maxLines":5.0}}},"modifiedName":false,"modifiedId":false,"subtype":"h2","props":{"value":{"props":{"value":"dsDescription","type":"Nativestring","dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","desc":"desc_Descripcion"},"type":"SOURCE"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"a0a5b0-e4d-ec8e-bb73-e1021dec5415","events":{}},"c77b07-ad62-ec1c-542-6628d4eb3b00":{"uuid":"c77b07-ad62-ec1c-542-6628d4eb3b00","id":"item13","name":"item13","type":"item","subitems":["5d877f-641b-d74c-5bc3-cebb24d7d1b"],"layout":{"DESKTOP":{"structure":{"size":{"height":"auto"},"position":{"position":"relative"}},"style":{"regular":{"background":{"color":"#eceeee","opacity":"00"}}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"4147a11-7a3e-eac8-672-c46a7ac546c0","events":{}},"5d877f-641b-d74c-5bc3-cebb24d7d1b":{"uuid":"5d877f-641b-d74c-5bc3-cebb24d7d1b","id":"button1","name":"button1","type":"button","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"height":"40px"},"position":{"alignSelf":"center","justifySelf":"end"}},"style":{"regular":{"font":{"color":"#ffffff"},"background":{"color":"#0068b4"}}}}},"modifiedName":false,"modifiedId":false,"subtype":"button_terciary","props":{"value":{"props":{"value":"Contactar"},"type":"LITERAL"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"c77b07-ad62-ec1c-542-6628d4eb3b00","events":{}},"7d4f8dc-0587-ca73-e3dc-a5b330f011fc":{"uuid":"7d4f8dc-0587-ca73-e3dc-a5b330f011fc","id":"layout4","name":"layout4","type":"layout","subitems":["1d0ec8d-a127-da2d-1e1-6fd2d336d4","ceea3fa-0466-17bf-eddc-c4f231486d8"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"marginLeft":"1px","justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"regular":{"padding":{"paddingLeft":"0px","paddingRight":"0px","paddingTop":"0px","paddingBottom":"0px"}}}}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"e1c07ba-36b5-e4a-b1ff-e48376f6ad","events":{}},"1d0ec8d-a127-da2d-1e1-6fd2d336d4":{"uuid":"1d0ec8d-a127-da2d-1e1-6fd2d336d4","id":"item14","name":"item14","type":"item","subitems":["507e633-8e5c-428-211-ebee77ca50a5"],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","height":"80px","flexGrow":"1","flexShrink":"1","minHeight":"unset"},"position":{"position":"relative"}},"style":{"props":{"type":"COLUMN"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"7d4f8dc-0587-ca73-e3dc-a5b330f011fc","events":{}},"507e633-8e5c-428-211-ebee77ca50a5":{"uuid":"507e633-8e5c-428-211-ebee77ca50a5","id":"image5","name":"image5","type":"image","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","height":"60px","minWidth":"unset"}},"style":{"background":{"position":{"x":"left"}}}}},"modifiedName":false,"modifiedId":false,"subtype":"square_image","props":{"value":{"props":{"value":"__flLogo","type":"ImageBase64","dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","desc":"Logo"},"type":"SOURCE"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"1d0ec8d-a127-da2d-1e1-6fd2d336d4","events":{}},"ceea3fa-0466-17bf-eddc-c4f231486d8":{"uuid":"ceea3fa-0466-17bf-eddc-c4f231486d8","id":"item26","name":"item26","type":"item","subitems":["74d0d3e-af84-63ca-3b18-2116587d8222"],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","flexGrow":"1","flexShrink":"1","minHeight":"unset"},"position":{"position":"relative"}},"style":{"props":{"type":"COLUMN"}}}},"subtype":"ROW","hyperLink":{"destinityType":"_self"},"props":{},"parent":"7d4f8dc-0587-ca73-e3dc-a5b330f011fc","events":{}},"74d0d3e-af84-63ca-3b18-2116587d8222":{"uuid":"74d0d3e-af84-63ca-3b18-2116587d8222","id":"text6","name":"text6","type":"text","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%"},"position":{"marginLeft":"0px","justifySelf":"center"}},"style":{"font":{"size":"18px"},"maxLines":1.0}}},"modifiedName":false,"modifiedId":false,"subtype":"h2","props":{"value":{"props":{"value":"dsCompany","type":"Nativestring","dataSource":"bba0fca-71eb-628d-1201-fea23e8647f2","desc":"desc_RazonSocial"},"type":"SOURCE"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"ceea3fa-0466-17bf-eddc-c4f231486d8","events":{}},"b27bd25-716a-8fbf-3f63-30a0f1645f":{"uuid":"b27bd25-716a-8fbf-3f63-30a0f1645f","id":"item27","name":"item27","type":"item","subitems":["a84d0e1-4eea-2af3-a437-5a60ac5abd"],"layout":{"DESKTOP":{"structure":{"size":{"width":"auto","height":"auto","minHeight":"100%"},"position":{"position":"relative"}}},"MOBILE":{"structure":{"size":{"flexGrow":"1","flexShrink":"1"}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"cdff5-a7c2-0a31-d2ef-3885ac11b2a","events":{}},"e133373-72e-c17c-c53d-f0410ddaf32":{"uuid":"e133373-72e-c17c-c53d-f0410ddaf32","id":"itemVerMas","name":"itemVerMas","type":"item","subitems":["78d078-d818-627-63a-88ac7a3cc74c"],"layout":{"DESKTOP":{"structure":{"position":{"position":"relative"}},"visible":false},"MOBILE":{"structure":{"size":{"flexGrow":"1","flexShrink":"1"}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"cdff5-a7c2-0a31-d2ef-3885ac11b2a","modifiedName":true,"modifiedId":true,"events":{"onViewportEnter":"itemVerMas_onViewportEnter"}},"cdff5-a7c2-0a31-d2ef-3885ac11b2a":{"uuid":"cdff5-a7c2-0a31-d2ef-3885ac11b2a","id":"layout10","name":"layout10","type":"layout","subitems":["b27bd25-716a-8fbf-3f63-30a0f1645f","e133373-72e-c17c-c53d-f0410ddaf32"],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%","height":"auto","minHeight":"unset"},"position":{"marginLeft":"10px","justifySelf":"center"}},"style":{"background":{"opacity":"ff"},"regular":{"padding":{"paddingTop":"10px"}}}},"MOBILE":{}},"modifiedName":false,"modifiedId":false,"subtype":"COLUMN","props":{},"hyperLink":{"destinityType":"_self"},"parent":"e5e8d-8cde-34e6-4c01-fa4a5fdb621f","events":{}},"78d078-d818-627-63a-88ac7a3cc74c":{"uuid":"78d078-d818-627-63a-88ac7a3cc74c","id":"spinner","name":"spinner","type":"container","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"30px","height":"30px","minHeight":"unset"},"position":{"alignSelf":"center","justifySelf":"center"}},"style":{"regular":{"background":{"opacity":"ff"},"border":{"top":{"color":"#0068b4","width":"3px"},"left":{"color":"#0068b4","width":"3px"},"bottom":{"color":"#eeeeee","width":"3px"},"right":{"color":"#0068b4","width":"3px"},"radius":{"topRight":"50%","topLeft":"50%","bottomRight":"50%","bottomLeft":"50%"}}}}}},"modifiedName":true,"modifiedId":true,"subtype":"containerSimple","props":{},"hyperLink":{"destinityType":"_self"},"parent":"e133373-72e-c17c-c53d-f0410ddaf32","events":{}},"78ebb-e8-c527-8276-f27c664a2":{"uuid":"78ebb-e8-c527-8276-f27c664a2","id":"pageNumber","name":"pageNumber","type":"text","subitems":[],"layout":{"DESKTOP":{"structure":{"position":{"marginLeft":"323px","marginTop":"27px"}},"visible":false}},"modifiedName":true,"modifiedId":true,"subtype":"h5","props":{"value":{"props":{"value":"Agrega un párrafo para cada uno de los artículos en tú página"},"type":"LITERAL"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"fda8-0be-186-1116-eed6c73bfc7","events":{}},"6cfc4fc-2eb7-27b-ea7-cddb3cc2c20f":{"uuid":"6cfc4fc-2eb7-27b-ea7-cddb3cc2c20f","id":"item1","name":"item1","type":"item","subitems":["0f0c4d6-cb5b-fb6b-833c-2a230bf274"],"layout":{"DESKTOP":{"structure":{"size":{"width":"10%","height":"auto","minHeight":"100%"},"position":{"position":"relative"}}},"MOBILE":{"structure":{"size":{"height":"30%","width":"auto","flexGrow":"1","flexShrink":"1"}}}},"subtype":"COLUMN","hyperLink":{"destinityType":"_self"},"props":{},"parent":"c5cd438-6dd0-a21-1711-8dcd8c66401","events":{}},"0f0c4d6-cb5b-fb6b-833c-2a230bf274":{"uuid":"0f0c4d6-cb5b-fb6b-833c-2a230bf274","id":"text3","name":"text3","type":"text","subitems":[],"layout":{"DESKTOP":{"structure":{"size":{"width":"100%"},"position":{"alignSelf":"center","justifySelf":"end"}},"style":{"font":{"color":"#0068b4"}}}},"modifiedName":false,"modifiedId":false,"subtype":"h6","props":{"value":{"props":{"value":"Borrar filtros"},"type":"LITERAL"}},"relatedAttribute":{},"hyperLink":{"destinityType":"_self"},"parent":"6cfc4fc-2eb7-27b-ea7-cddb3cc2c20f","events":{"afterViewInit":"text3_afterViewInit","onClick":"text3_onClick"}}},"root":["f3468f-75e1-e064-af71-bb3635abf22d","fda8-0be-186-1116-eed6c73bfc7"]},"breakpoints":{},"linkDependencies":{},"events":{"beforeViewUnload":"beforeViewUnload","onInit":"onInit","afterViewInit":"afterViewInit"},"buildingBlocks":[],"isBuildingBlock":false,"isReferable":true,"translatedObjects":{},"translatable":false,"prompts":[],"ssr":false,"globalStyles":".spinner \u003e div {\r\n animation: rotation 550ms linear infinite;\r\n}\r\n\r\n@keyframes rotation {\r\n 0% {\r\n transform: rotate(0deg);\r\n }\r\n\r\n 100% {\r\n transform: rotate(360deg);\r\n }\r\n}\r\n\r\n.repeater1 \u003e div div:has([size\u003d\"30\"]) {\r\n display: none;\r\n}\r\n\r\n.inputPais input {\r\n\theight: 44px !important;\r\n}"}