feat: Implementar ion-chips, bypass de pago y mejoras UI

- Implementar ion-chips para categorías y keywords en hero page
- Agregar bypass de pago en hire page para pruebas
- Mover progress bar en dashboard
- Corregir shared-components module (remover AccordionComponent eliminado)
- Corregir eventos Ionic (ionInput/ionChange)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
CarlosTorres
2026-01-27 23:48:16 +00:00
parent 4afaf69d10
commit 22e4585bb9
8 changed files with 231 additions and 45 deletions

View File

@@ -0,0 +1,59 @@
.chip-label {
display: block;
padding: 10px 16px 5px;
font-size: 14px;
font-weight: 500;
color: var(--ion-color-medium);
}
.chips-container {
display: flex;
flex-wrap: wrap;
padding: 5px 10px;
min-height: 20px;
gap: 5px;
ion-chip {
margin: 2px;
height: 32px;
ion-label {
font-size: 13px;
}
ion-icon {
cursor: pointer;
font-size: 18px;
}
}
}
.dropdown-list {
max-height: 200px;
overflow-y: auto;
border: 1px solid var(--ion-color-light-shade);
border-radius: 8px;
margin: 0 16px;
background: var(--ion-background-color);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
ion-item {
--min-height: 40px;
font-size: 14px;
cursor: pointer;
&:hover {
--background: var(--ion-color-light);
}
}
}
ion-chip[color="primary"] {
--background: var(--ion-color-primary);
--color: var(--ion-color-primary-contrast);
}
ion-chip[color="secondary"] {
--background: var(--ion-color-secondary);
--color: var(--ion-color-secondary-contrast);
}