Fix Estilos Componentes
This commit is contained in:
		| @@ -21,7 +21,6 @@ | |||||||
|   container-type: inline-size; container-name: congreso-widget; |   container-type: inline-size; container-name: congreso-widget; | ||||||
| } | } | ||||||
|  |  | ||||||
| /* ... (El resto de los estilos base permanece sin cambios) ... */ |  | ||||||
| .congresoGrafico { flex: 2; min-width: 300px; display: flex; flex-direction: column; } | .congresoGrafico { flex: 2; min-width: 300px; display: flex; flex-direction: column; } | ||||||
| .congresoHemicicloWrapper { flex-grow: 1; display: flex; align-items: center; justify-content: center; width: 100%; } | .congresoHemicicloWrapper { flex-grow: 1; display: flex; align-items: center; justify-content: center; width: 100%; } | ||||||
| .congresoHemicicloWrapper.isHovering :global(.party-block:not(:hover)) { opacity: 0.3; } | .congresoHemicicloWrapper.isHovering :global(.party-block:not(:hover)) { opacity: 0.3; } | ||||||
| @@ -34,20 +33,45 @@ | |||||||
| .legendIconRing { background-color: rgba(136, 136, 136, 0.3); border: 1px solid #888; } | .legendIconRing { background-color: rgba(136, 136, 136, 0.3); border: 1px solid #888; } | ||||||
| .footerTimestamp { font-weight: 500; font-size: 0.75em; text-align: right; } | .footerTimestamp { font-weight: 500; font-size: 0.75em; text-align: right; } | ||||||
| .congresoSummary { flex: 1; border-left: 1px solid #e0e0e0; padding-left: 1.25rem; display: flex; flex-direction: column; justify-content: flex-start; } | .congresoSummary { flex: 1; border-left: 1px solid #e0e0e0; padding-left: 1.25rem; display: flex; flex-direction: column; justify-content: flex-start; } | ||||||
| .congresoSummary h3 { text-align: center; margin-top: 0.25rem; margin-bottom: 0.75rem; font-size: 1.4em; font-weight: 700; color: #212529; } |  | ||||||
| .chamberTabs { display: flex; margin-bottom: 1rem; border: 1px solid #dee2e6; border-radius: 6px; overflow: hidden; } | .summaryHeader { | ||||||
|  |   display: flex; | ||||||
|  |   flex-direction: column; | ||||||
|  |   align-items: center;  /* Centra el título y la barra de pestañas */ | ||||||
|  |   gap: 0.75rem;         /* Espacio vertical entre el título y las pestañas */ | ||||||
|  |   margin-bottom: 1rem;  /* Espacio entre la cabecera y el resto del contenido */ | ||||||
|  |   width: 100%; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | .congresoSummary h3 { | ||||||
|  |   text-align: center; | ||||||
|  |   margin: 0; /* Quitamos el margen para que el 'gap' del header lo controle */ | ||||||
|  |   font-size: 1.4em; | ||||||
|  |   font-weight: 700; | ||||||
|  |   color: #212529; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | .chamberTabs { | ||||||
|  |   display: flex; | ||||||
|  |   margin-bottom: 0; /* Quitamos el margen para que el 'gap' del header lo controle */ | ||||||
|  |   border: 1px solid #dee2e6; | ||||||
|  |   border-radius: 6px; | ||||||
|  |   overflow: hidden; | ||||||
|  |   width: 100%; /* Hacemos que la barra de pestañas ocupe todo el ancho del header */ | ||||||
|  | } | ||||||
|  |  | ||||||
| .chamberTabs button { flex: 1; padding: 0.5rem; border: none; background-color: #f8f9fa; color: #6c757d; font-family: inherit; font-size: 1em; font-weight: 500; cursor: pointer; transition: all 0.2s ease-in-out; text-align: center; } | .chamberTabs button { flex: 1; padding: 0.5rem; border: none; background-color: #f8f9fa; color: #6c757d; font-family: inherit; font-size: 1em; font-weight: 500; cursor: pointer; transition: all 0.2s ease-in-out; text-align: center; } | ||||||
| .chamberTabs button:first-child { border-right: 1px solid #dee2e6; } | .chamberTabs button:first-child { border-right: 1px solid #dee2e6; } | ||||||
| .chamberTabs button:hover { background-color: #e9ecef; } | .chamberTabs button:hover { background-color: #e9ecef; } | ||||||
| .chamberTabs button.active { background-color: var(--primary-accent-color); color: #ffffff; } | .chamberTabs button.active { background-color: var(--primary-accent-color); color: #ffffff; } | ||||||
| .summaryMetric { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.25rem; font-size: 1.1em; } | .summaryMetric { display: flex; justify-content: space-between; align-items: baseline; margin-top: 0.25rem; margin-bottom: 0.25rem; font-size: 1.1em; } | ||||||
| .summaryMetric strong { font-size: 1.5em; font-weight: 700; color: var(--primary-accent-color); } | .summaryMetric strong { font-size: 1.25em; font-weight: 700; color: var(--primary-accent-color); } | ||||||
| .congresoSummary hr { border: none; border-top: 1px solid #e0e0e0; margin: 1rem 0; } | .congresoSummary hr { border: none; border-top: 1px solid #e0e0e0; margin: 1rem 0; } | ||||||
| .partidoListaContainer { flex-grow: 1; overflow-y: auto; min-height: 0; padding-right: 8px; } | .partidoListaContainer { flex-grow: 1; overflow-y: auto; min-height: 0; } | ||||||
| .partidoLista { list-style: none; padding: 0; margin: 0; } | .partidoLista { list-style: none; padding: 0; margin: 0; padding-right: 8px; } | ||||||
| .partidoLista li { display: flex; align-items: center; margin-bottom: 0.85rem; } | .partidoLista li { display: flex; align-items: center; margin-bottom: 0.85rem; } | ||||||
| .partidoColorBox { width: 16px; height: 16px; border-radius: 4px; margin-right: 12px; flex-shrink: 0; } | .partidoColorBox { width: 16px; height: 16px; border-radius: 4px; margin-right: 12px; flex-shrink: 0; } | ||||||
| .partidoNombre { flex-grow: 1; } | .partidoNombre { flex-grow: 1; font-size: 1em; } | ||||||
| .partidoBancas { font-weight: 700; font-size: 1.1em; } | .partidoBancas { font-weight: 700; font-size: 1.1em; } | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -61,9 +85,6 @@ | |||||||
|     max-width: none !important; |     max-width: none !important; | ||||||
|     margin-left: auto !important; |     margin-left: auto !important; | ||||||
|     margin-right: auto !important; |     margin-right: auto !important; | ||||||
|  |  | ||||||
|     /* --- ¡LA CLAVE! --- */ |  | ||||||
|     /* Traemos la regla de la versión anterior para forzar el layout vertical */ |  | ||||||
|     flex-direction: column !important; |     flex-direction: column !important; | ||||||
|     height: auto !important; |     height: auto !important; | ||||||
|     max-height: none !important; |     max-height: none !important; | ||||||
| @@ -88,11 +109,31 @@ | |||||||
|   .congresoFooter { flex-direction: column; align-items: center; gap: 0.75rem; padding: 0.75rem 0rem; } |   .congresoFooter { flex-direction: column; align-items: center; gap: 0.75rem; padding: 0.75rem 0rem; } | ||||||
| } | } | ||||||
|  |  | ||||||
| .partidoListaContainer { scrollbar-width: thin; scrollbar-color: #c1c1c1 #f1f1c1; } | .partidoListaContainer { | ||||||
| .partidoListaContainer::-webkit-scrollbar { width: 8px; } |   scrollbar-width: thin; /* Hace el scrollbar más delgado */ | ||||||
| .partidoListaContainer::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; } |   scrollbar-color: #c1c1c1 #f1f1f1; /* Color del thumb y del track */ | ||||||
| .partidoListaContainer::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 10px; border: 2px solid #f1f1f1; } | } | ||||||
| .partidoListaContainer::-webkit-scrollbar-thumb:hover { background: #a8a8a8; } | .partidoListaContainer::-webkit-scrollbar { | ||||||
|  |   width: 8px; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* Estilo del "track" o canal por donde se mueve el scrollbar */ | ||||||
|  | .partidoListaContainer::-webkit-scrollbar-track { | ||||||
|  |   background: #f1f1f1; | ||||||
|  |   border-radius: 10px; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* Estilo del "thumb" o la barra que se arrastra */ | ||||||
|  | .partidoListaContainer::-webkit-scrollbar-thumb { | ||||||
|  |   background: #c1c1c1; | ||||||
|  |   border-radius: 10px; | ||||||
|  |   border: 2px solid #f1f1f1; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* Estilo del "thumb" al pasar el mouse por encima */ | ||||||
|  | .partidoListaContainer::-webkit-scrollbar-thumb:hover { | ||||||
|  |   background: #a8a8a8; | ||||||
|  | } | ||||||
|  |  | ||||||
| /* --- A. Tooltip de FOTO DE LEGISLADOR (seat-tooltip) --- */ | /* --- A. Tooltip de FOTO DE LEGISLADOR (seat-tooltip) --- */ | ||||||
|  |  | ||||||
|   | |||||||
| @@ -110,15 +110,17 @@ const WidgetContent = ({ eleccionId }: CongresoNacionalWidgetProps) => { | |||||||
|         </div> |         </div> | ||||||
|       </div> |       </div> | ||||||
|       <div className={styles.congresoSummary}> |       <div className={styles.congresoSummary}> | ||||||
|         <div className={styles.chamberTabs}> |         <div className={styles.summaryHeader}> | ||||||
|           <button className={camaraActiva === 'diputados' ? styles.active : ''} onClick={() => setCamaraActiva('diputados')}> |           <h3>{datosCamaraActual.camaraNombre}</h3> | ||||||
|             Diputados |           <div className={styles.chamberTabs}> | ||||||
|           </button> |             <button className={camaraActiva === 'diputados' ? styles.active : ''} onClick={() => setCamaraActiva('diputados')}> | ||||||
|           <button className={camaraActiva === 'senadores' ? styles.active : ''} onClick={() => setCamaraActiva('senadores')}> |               Diputados | ||||||
|             Senadores |             </button> | ||||||
|           </button> |             <button className={camaraActiva === 'senadores' ? styles.active : ''} onClick={() => setCamaraActiva('senadores')}> | ||||||
|  |               Senadores | ||||||
|  |             </button> | ||||||
|  |           </div> | ||||||
|         </div> |         </div> | ||||||
|         <h3>{datosCamaraActual.camaraNombre}</h3> |  | ||||||
|         <div className={styles.summaryMetric}> |         <div className={styles.summaryMetric}> | ||||||
|           <span>Total de Bancas</span> |           <span>Total de Bancas</span> | ||||||
|           <strong>{datosCamaraActual.totalBancas}</strong> |           <strong>{datosCamaraActual.totalBancas}</strong> | ||||||
| @@ -134,7 +136,7 @@ const WidgetContent = ({ eleccionId }: CongresoNacionalWidgetProps) => { | |||||||
|               .filter(p => p.bancasTotales > 0) |               .filter(p => p.bancasTotales > 0) | ||||||
|               .map((partido: PartidoComposicionNacional) => ( |               .map((partido: PartidoComposicionNacional) => ( | ||||||
|                 <li key={partido.id}> |                 <li key={partido.id}> | ||||||
|                   <span className={styles.partidoColorBox} style={{ backgroundColor: partido.color || '#808080' }}></span> |                   <span className={styles.partidoColorBox} style={{ 'marginRight': '0.25rem', backgroundColor: partido.color || '#808080' }}></span> | ||||||
|                   <span className={styles.partidoNombre}>{partido.nombreCorto || partido.nombre}</span> |                   <span className={styles.partidoNombre}>{partido.nombreCorto || partido.nombre}</span> | ||||||
|                   <strong |                   <strong | ||||||
|                     className={styles.partidoBancas} |                     className={styles.partidoBancas} | ||||||
|   | |||||||
| @@ -412,6 +412,10 @@ | |||||||
|   stroke-width: 0.055px; |   stroke-width: 0.055px; | ||||||
|   filter: brightness(1.25); |   filter: brightness(1.25); | ||||||
| } | } | ||||||
|  | :global(.caba-comuna-geography.selected) { | ||||||
|  |   stroke: #000000; | ||||||
|  |   stroke-width: 0.075px; | ||||||
|  | } | ||||||
|  |  | ||||||
| .transitionSpinner { | .transitionSpinner { | ||||||
|   position: absolute; |   position: absolute; | ||||||
|   | |||||||
| @@ -49,7 +49,11 @@ export const MapaProvincial = ({ eleccionId, categoriaId, distritoId, nombreProv | |||||||
|       if (municipioGeo) { |       if (municipioGeo) { | ||||||
|         const municipioFeature = feature(geoData, municipioGeo); |         const municipioFeature = feature(geoData, municipioGeo); | ||||||
|         const centroid = geoCentroid(municipioFeature); |         const centroid = geoCentroid(municipioFeature); | ||||||
|  |         if(nombreProvincia.toUpperCase() === 'CAPITAL FEDERAL'){ | ||||||
|  |           onCalculatedCenter(centroid as PointTuple, 180); | ||||||
|  |         } else { | ||||||
|         onCalculatedCenter(centroid as PointTuple, 40); |         onCalculatedCenter(centroid as PointTuple, 40); | ||||||
|  |         } | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|   }, [nivel, nombreMunicipioSeleccionado, geoData, onCalculatedCenter]); |   }, [nivel, nombreMunicipioSeleccionado, geoData, onCalculatedCenter]); | ||||||
|   | |||||||
| @@ -35,7 +35,6 @@ export const PanelResultados = ({ resultados, estadoRecuento }: PanelResultadosP | |||||||
|     <div className={styles.panelResultados}> |     <div className={styles.panelResultados}> | ||||||
|       <SvgDefs /> |       <SvgDefs /> | ||||||
|       <div className={styles.panelEstadoRecuento}> |       <div className={styles.panelEstadoRecuento}> | ||||||
|         {/* ... (Contenido de CircularProgressbar sin cambios) ... */} |  | ||||||
|         <div className={styles.estadoItem}> |         <div className={styles.estadoItem}> | ||||||
|           <CircularProgressbar |           <CircularProgressbar | ||||||
|             value={estadoRecuento.participacionPorcentaje} |             value={estadoRecuento.participacionPorcentaje} | ||||||
|   | |||||||
| @@ -14,7 +14,7 @@ using System.Reflection; | |||||||
| [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Api")] | [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Api")] | ||||||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||||||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||||||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+705a6f0f5e555e94c5a59348c2610c4a61cb53d3")] | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+903c2b6a9416b0f694d30b046bd8764b01696e1e")] | ||||||
| [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Api")] | [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Api")] | ||||||
| [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Api")] | [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Api")] | ||||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| {"GlobalPropertiesHash":"b5T/+ta4fUd8qpIzUTm3KyEwAYYUsU5ASo+CSFM3ByE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YB39loxHH43S4MF8aTOiogcIbBAIq5Qj3dlJkIfYVxI=","t631p0kaOa0gMRIcaPzz1ZVPZ1kuq4pq4kYPWQgoPcM=","PA/Beu9jJpOBY5r5Y1CiSyqrARA2j7LHeWYUnEZpQO8=","E2ODTAlJxzsXY1iP1eB/02NIUK\u002BnQveGlWAOHY1cpgA=","TEsXImnzxFKTIq2f5fiDu7i6Ar/cbecW5MZ3z8Wb/a4=","5WogJu\u002BUPlF\u002BE5mq/ILtDXpVwqwmhHtsEB13nmT5JJk=","dcHQRkttjMjo2dvhL7hA9t4Pg\u002B7OnjZpkFmakT4QR9U=","Of8nTYw5l\u002BgiAJo7z6XYIntG2tUtCFcILzHbTiiXn\u002Bw=","PDy\u002BTiayvNAoXXBEgwC/kCojpgOOMI6RQOIoSXs3LJc=","ePXrkee3hv3wHUr8S7aYmRVvXUTxQf76zApKGv3/l3o=","DXx5dQywLo3UsY2zQaUG\u002BbW4ObiYbybxPBWxeJD2bhk=","muVh5sjH3sgdvuz4TbuTwTggX1uDnsWXgoosMKST/r4=","nrP5gSIA5vzgp8v12CAOr943QYLxU4Til6oiCcWSNI8=","yMd45U9BK07I3b3fBQ627PWTYyZ2ZjrmFc5VD\u002BQVx1Q=","xKskvcoJU0RVRN1a5dRqKRM7IP5vmmbraUaPFYjhnCc=","p7BjQw7aSZjfOCqmKm7/kPO9qegEQZBfirMjlOx/I1I=","MI0hVVLYavEhzHq/Z1UbajfrxanA1aET19aOH8G2ImI=","2dY8CqW9fAY8yN0foa\u002BZp2gc0RfPoPmB/tKSj1QoTw0=","79rfGLH4UjfTPvc//\u002BZjnBqdz585pUtYZ0/hwE2iEic=","PUqgvMdfTQkF5lpBVtHv2teQLV5WaEH0xMKTmINe2YQ=","\u002BFI0b4ppdxel/pby/y/xKImHrtdxo2g83OhskdREyIg=","jEESu6\u002BhbDvNMjLt/6OufuK\u002B9cHmzx\u002BTCIn4fWa9nSc=","UaCPJEvR4nVxxGCB5CUnRlJiw4drDW3Q3Nss\u002Bya2cv4=","ZqF13CT3rok/Gzl\u002BMsw3q9X1nf65bwEVD670efE3k\u002Bk=","gH3W7phPzBCY1DAVn4YnP4SA8Uaq73TpctS0yFSvzNM=","u5F4J4\u002BLHUIOCz5ze5NSF42mDeAaAfi\u002BKN3Ay3rKLY8=","GeUUID0ymF5rrBWdX7YHzWA5GiGkNWCNUog4sp4xL3c=","3BxX4I0JXoDqmE8m0BrRZhixBRlHEueS3jAlmUXE/I8=","IlET7uqumshgFxIEvfKRskON\u002BeAKZ7OfD/kCeAwn0PM=","NN2rS\u002B89ZAITWlNODPcF/lHIh3ZNmAHvUX4EjqSkX4s=","OE89N/FsYhRU1Dy5Ne83ehzSwlNc/RcxHrJpHxPHfqY=","QI7IL4TkYEqfUiIEXQiVCaZx4vrM9/wZlvOrhnUd4jQ=","UIntj4QoiyGr7bnJN8KK5PGrhQd89m\u002BLfh4T8VKPxAk=","J\u002Bfv/j3QyIW9bxolc46wDka8641F622/QgIllt0Re80=","PloHIhHfWJsSeyz4kZZbIZLY1VlOPRKrzXFkBPpjhfs=","BY4GeeFiQbYpWuSzb2XIY4JatmLNOZ6dhKs4ZT92nsM=","P8JRhYPpULTLMAydvl3Ky\u002B92/tYDIjui0l66En4aXuQ=","M99ryk3PCAKidmnWN7g3fpQsNdfWfwrvHWBONsx4XxU="],"CachedAssets":{},"CachedCopyCandidates":{}} | {"GlobalPropertiesHash":"b5T/+ta4fUd8qpIzUTm3KyEwAYYUsU5ASo+CSFM3ByE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YB39loxHH43S4MF8aTOiogcIbBAIq5Qj3dlJkIfYVxI=","t631p0kaOa0gMRIcaPzz1ZVPZ1kuq4pq4kYPWQgoPcM=","PA/Beu9jJpOBY5r5Y1CiSyqrARA2j7LHeWYUnEZpQO8=","E2ODTAlJxzsXY1iP1eB/02NIUK\u002BnQveGlWAOHY1cpgA=","TEsXImnzxFKTIq2f5fiDu7i6Ar/cbecW5MZ3z8Wb/a4=","5WogJu\u002BUPlF\u002BE5mq/ILtDXpVwqwmhHtsEB13nmT5JJk=","dcHQRkttjMjo2dvhL7hA9t4Pg\u002B7OnjZpkFmakT4QR9U=","Of8nTYw5l\u002BgiAJo7z6XYIntG2tUtCFcILzHbTiiXn\u002Bw=","PDy\u002BTiayvNAoXXBEgwC/kCojpgOOMI6RQOIoSXs3LJc=","ePXrkee3hv3wHUr8S7aYmRVvXUTxQf76zApKGv3/l3o=","DXx5dQywLo3UsY2zQaUG\u002BbW4ObiYbybxPBWxeJD2bhk=","muVh5sjH3sgdvuz4TbuTwTggX1uDnsWXgoosMKST/r4=","nrP5gSIA5vzgp8v12CAOr943QYLxU4Til6oiCcWSNI8=","yMd45U9BK07I3b3fBQ627PWTYyZ2ZjrmFc5VD\u002BQVx1Q=","xKskvcoJU0RVRN1a5dRqKRM7IP5vmmbraUaPFYjhnCc=","p7BjQw7aSZjfOCqmKm7/kPO9qegEQZBfirMjlOx/I1I=","MI0hVVLYavEhzHq/Z1UbajfrxanA1aET19aOH8G2ImI=","2dY8CqW9fAY8yN0foa\u002BZp2gc0RfPoPmB/tKSj1QoTw0=","79rfGLH4UjfTPvc//\u002BZjnBqdz585pUtYZ0/hwE2iEic=","PUqgvMdfTQkF5lpBVtHv2teQLV5WaEH0xMKTmINe2YQ=","\u002BFI0b4ppdxel/pby/y/xKImHrtdxo2g83OhskdREyIg=","jEESu6\u002BhbDvNMjLt/6OufuK\u002B9cHmzx\u002BTCIn4fWa9nSc=","UaCPJEvR4nVxxGCB5CUnRlJiw4drDW3Q3Nss\u002Bya2cv4=","ZqF13CT3rok/Gzl\u002BMsw3q9X1nf65bwEVD670efE3k\u002Bk=","gH3W7phPzBCY1DAVn4YnP4SA8Uaq73TpctS0yFSvzNM=","u5F4J4\u002BLHUIOCz5ze5NSF42mDeAaAfi\u002BKN3Ay3rKLY8=","GeUUID0ymF5rrBWdX7YHzWA5GiGkNWCNUog4sp4xL3c=","3BxX4I0JXoDqmE8m0BrRZhixBRlHEueS3jAlmUXE/I8=","IlET7uqumshgFxIEvfKRskON\u002BeAKZ7OfD/kCeAwn0PM=","NN2rS\u002B89ZAITWlNODPcF/lHIh3ZNmAHvUX4EjqSkX4s=","OE89N/FsYhRU1Dy5Ne83ehzSwlNc/RcxHrJpHxPHfqY=","QI7IL4TkYEqfUiIEXQiVCaZx4vrM9/wZlvOrhnUd4jQ=","UIntj4QoiyGr7bnJN8KK5PGrhQd89m\u002BLfh4T8VKPxAk=","J\u002Bfv/j3QyIW9bxolc46wDka8641F622/QgIllt0Re80=","Y/o0rakw9VYzEfz9M659qW77P9kvz\u002B2gTe1Lv3zgUDE=","BY4GeeFiQbYpWuSzb2XIY4JatmLNOZ6dhKs4ZT92nsM=","P8JRhYPpULTLMAydvl3Ky\u002B92/tYDIjui0l66En4aXuQ=","GY9iGdezAppjqYxnc92Ue2gI167CBYuqcWqyTUygx4E="],"CachedAssets":{},"CachedCopyCandidates":{}} | ||||||
| @@ -1 +1 @@ | |||||||
| {"GlobalPropertiesHash":"tJTBjV/i0Ihkc6XuOu69wxL8PBac9c9Kak6srMso4pU=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YB39loxHH43S4MF8aTOiogcIbBAIq5Qj3dlJkIfYVxI=","t631p0kaOa0gMRIcaPzz1ZVPZ1kuq4pq4kYPWQgoPcM=","PA/Beu9jJpOBY5r5Y1CiSyqrARA2j7LHeWYUnEZpQO8=","E2ODTAlJxzsXY1iP1eB/02NIUK\u002BnQveGlWAOHY1cpgA=","TEsXImnzxFKTIq2f5fiDu7i6Ar/cbecW5MZ3z8Wb/a4=","5WogJu\u002BUPlF\u002BE5mq/ILtDXpVwqwmhHtsEB13nmT5JJk=","dcHQRkttjMjo2dvhL7hA9t4Pg\u002B7OnjZpkFmakT4QR9U=","Of8nTYw5l\u002BgiAJo7z6XYIntG2tUtCFcILzHbTiiXn\u002Bw=","PDy\u002BTiayvNAoXXBEgwC/kCojpgOOMI6RQOIoSXs3LJc=","ePXrkee3hv3wHUr8S7aYmRVvXUTxQf76zApKGv3/l3o=","DXx5dQywLo3UsY2zQaUG\u002BbW4ObiYbybxPBWxeJD2bhk=","muVh5sjH3sgdvuz4TbuTwTggX1uDnsWXgoosMKST/r4=","nrP5gSIA5vzgp8v12CAOr943QYLxU4Til6oiCcWSNI8=","yMd45U9BK07I3b3fBQ627PWTYyZ2ZjrmFc5VD\u002BQVx1Q=","xKskvcoJU0RVRN1a5dRqKRM7IP5vmmbraUaPFYjhnCc=","p7BjQw7aSZjfOCqmKm7/kPO9qegEQZBfirMjlOx/I1I=","MI0hVVLYavEhzHq/Z1UbajfrxanA1aET19aOH8G2ImI=","2dY8CqW9fAY8yN0foa\u002BZp2gc0RfPoPmB/tKSj1QoTw0=","79rfGLH4UjfTPvc//\u002BZjnBqdz585pUtYZ0/hwE2iEic=","PUqgvMdfTQkF5lpBVtHv2teQLV5WaEH0xMKTmINe2YQ=","\u002BFI0b4ppdxel/pby/y/xKImHrtdxo2g83OhskdREyIg=","jEESu6\u002BhbDvNMjLt/6OufuK\u002B9cHmzx\u002BTCIn4fWa9nSc=","UaCPJEvR4nVxxGCB5CUnRlJiw4drDW3Q3Nss\u002Bya2cv4=","ZqF13CT3rok/Gzl\u002BMsw3q9X1nf65bwEVD670efE3k\u002Bk=","gH3W7phPzBCY1DAVn4YnP4SA8Uaq73TpctS0yFSvzNM=","u5F4J4\u002BLHUIOCz5ze5NSF42mDeAaAfi\u002BKN3Ay3rKLY8=","GeUUID0ymF5rrBWdX7YHzWA5GiGkNWCNUog4sp4xL3c=","3BxX4I0JXoDqmE8m0BrRZhixBRlHEueS3jAlmUXE/I8=","IlET7uqumshgFxIEvfKRskON\u002BeAKZ7OfD/kCeAwn0PM=","NN2rS\u002B89ZAITWlNODPcF/lHIh3ZNmAHvUX4EjqSkX4s=","OE89N/FsYhRU1Dy5Ne83ehzSwlNc/RcxHrJpHxPHfqY=","QI7IL4TkYEqfUiIEXQiVCaZx4vrM9/wZlvOrhnUd4jQ=","UIntj4QoiyGr7bnJN8KK5PGrhQd89m\u002BLfh4T8VKPxAk=","J\u002Bfv/j3QyIW9bxolc46wDka8641F622/QgIllt0Re80=","PloHIhHfWJsSeyz4kZZbIZLY1VlOPRKrzXFkBPpjhfs=","BY4GeeFiQbYpWuSzb2XIY4JatmLNOZ6dhKs4ZT92nsM=","P8JRhYPpULTLMAydvl3Ky\u002B92/tYDIjui0l66En4aXuQ=","M99ryk3PCAKidmnWN7g3fpQsNdfWfwrvHWBONsx4XxU="],"CachedAssets":{},"CachedCopyCandidates":{}} | {"GlobalPropertiesHash":"tJTBjV/i0Ihkc6XuOu69wxL8PBac9c9Kak6srMso4pU=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YB39loxHH43S4MF8aTOiogcIbBAIq5Qj3dlJkIfYVxI=","t631p0kaOa0gMRIcaPzz1ZVPZ1kuq4pq4kYPWQgoPcM=","PA/Beu9jJpOBY5r5Y1CiSyqrARA2j7LHeWYUnEZpQO8=","E2ODTAlJxzsXY1iP1eB/02NIUK\u002BnQveGlWAOHY1cpgA=","TEsXImnzxFKTIq2f5fiDu7i6Ar/cbecW5MZ3z8Wb/a4=","5WogJu\u002BUPlF\u002BE5mq/ILtDXpVwqwmhHtsEB13nmT5JJk=","dcHQRkttjMjo2dvhL7hA9t4Pg\u002B7OnjZpkFmakT4QR9U=","Of8nTYw5l\u002BgiAJo7z6XYIntG2tUtCFcILzHbTiiXn\u002Bw=","PDy\u002BTiayvNAoXXBEgwC/kCojpgOOMI6RQOIoSXs3LJc=","ePXrkee3hv3wHUr8S7aYmRVvXUTxQf76zApKGv3/l3o=","DXx5dQywLo3UsY2zQaUG\u002BbW4ObiYbybxPBWxeJD2bhk=","muVh5sjH3sgdvuz4TbuTwTggX1uDnsWXgoosMKST/r4=","nrP5gSIA5vzgp8v12CAOr943QYLxU4Til6oiCcWSNI8=","yMd45U9BK07I3b3fBQ627PWTYyZ2ZjrmFc5VD\u002BQVx1Q=","xKskvcoJU0RVRN1a5dRqKRM7IP5vmmbraUaPFYjhnCc=","p7BjQw7aSZjfOCqmKm7/kPO9qegEQZBfirMjlOx/I1I=","MI0hVVLYavEhzHq/Z1UbajfrxanA1aET19aOH8G2ImI=","2dY8CqW9fAY8yN0foa\u002BZp2gc0RfPoPmB/tKSj1QoTw0=","79rfGLH4UjfTPvc//\u002BZjnBqdz585pUtYZ0/hwE2iEic=","PUqgvMdfTQkF5lpBVtHv2teQLV5WaEH0xMKTmINe2YQ=","\u002BFI0b4ppdxel/pby/y/xKImHrtdxo2g83OhskdREyIg=","jEESu6\u002BhbDvNMjLt/6OufuK\u002B9cHmzx\u002BTCIn4fWa9nSc=","UaCPJEvR4nVxxGCB5CUnRlJiw4drDW3Q3Nss\u002Bya2cv4=","ZqF13CT3rok/Gzl\u002BMsw3q9X1nf65bwEVD670efE3k\u002Bk=","gH3W7phPzBCY1DAVn4YnP4SA8Uaq73TpctS0yFSvzNM=","u5F4J4\u002BLHUIOCz5ze5NSF42mDeAaAfi\u002BKN3Ay3rKLY8=","GeUUID0ymF5rrBWdX7YHzWA5GiGkNWCNUog4sp4xL3c=","3BxX4I0JXoDqmE8m0BrRZhixBRlHEueS3jAlmUXE/I8=","IlET7uqumshgFxIEvfKRskON\u002BeAKZ7OfD/kCeAwn0PM=","NN2rS\u002B89ZAITWlNODPcF/lHIh3ZNmAHvUX4EjqSkX4s=","OE89N/FsYhRU1Dy5Ne83ehzSwlNc/RcxHrJpHxPHfqY=","QI7IL4TkYEqfUiIEXQiVCaZx4vrM9/wZlvOrhnUd4jQ=","UIntj4QoiyGr7bnJN8KK5PGrhQd89m\u002BLfh4T8VKPxAk=","J\u002Bfv/j3QyIW9bxolc46wDka8641F622/QgIllt0Re80=","Y/o0rakw9VYzEfz9M659qW77P9kvz\u002B2gTe1Lv3zgUDE=","BY4GeeFiQbYpWuSzb2XIY4JatmLNOZ6dhKs4ZT92nsM=","P8JRhYPpULTLMAydvl3Ky\u002B92/tYDIjui0l66En4aXuQ=","GY9iGdezAppjqYxnc92Ue2gI167CBYuqcWqyTUygx4E="],"CachedAssets":{},"CachedCopyCandidates":{}} | ||||||
| @@ -13,7 +13,7 @@ using System.Reflection; | |||||||
| [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Core")] | [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Core")] | ||||||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||||||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||||||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+705a6f0f5e555e94c5a59348c2610c4a61cb53d3")] | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+903c2b6a9416b0f694d30b046bd8764b01696e1e")] | ||||||
| [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Core")] | [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Core")] | ||||||
| [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Core")] | [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Core")] | ||||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||||||
|   | |||||||
| @@ -13,7 +13,7 @@ using System.Reflection; | |||||||
| [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Database")] | [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Database")] | ||||||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||||||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||||||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+705a6f0f5e555e94c5a59348c2610c4a61cb53d3")] | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+903c2b6a9416b0f694d30b046bd8764b01696e1e")] | ||||||
| [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Database")] | [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Database")] | ||||||
| [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Database")] | [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Database")] | ||||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||||||
|   | |||||||
| @@ -13,7 +13,7 @@ using System.Reflection; | |||||||
| [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Infrastructure")] | [assembly: System.Reflection.AssemblyCompanyAttribute("Elecciones.Infrastructure")] | ||||||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||||||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||||||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+705a6f0f5e555e94c5a59348c2610c4a61cb53d3")] | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+903c2b6a9416b0f694d30b046bd8764b01696e1e")] | ||||||
| [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Infrastructure")] | [assembly: System.Reflection.AssemblyProductAttribute("Elecciones.Infrastructure")] | ||||||
| [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Infrastructure")] | [assembly: System.Reflection.AssemblyTitleAttribute("Elecciones.Infrastructure")] | ||||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user