npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jda-leyenda-vv

v0.0.7

Published

![Imagen del componente](./../../src/assets/images/readme.jpg)

Downloads

220

Readme

COMPONENTE - JDA-LEYENDA

Imagen del componente

Introducción

En la Agencia Digital de Andalucía, estamos trabajando en la unificación de estilos y componentes para las webs de la Junta de Andalucía, con el objetivo de proporcionar una experiencia de usuario coherente y homogénea en todas nuestras plataformas digitales. Para lograrlo, hemos adoptado Angular como tecnología base y estamos desarrollando una biblioteca de componentes reutilizables que aseguren un estilo visual y funcional unificado en todos los proyectos.

Este trabajo se basa en el Modelo de Servicios Digitales, que nos guía en el diseño y la implementación de componentes que cumplen con estándares de accesibilidad, usabilidad y eficiencia. Gracias a este enfoque, cualquier proyecto puede integrar fácilmente componentes predefinidos y alineados con las directrices de estilo de la Junta de Andalucía. Puedes explorar el catálogo completo de componentes disponibles aquí.

Componente

El jda-Leyenda es un componente de botón configurable que permite definir su apariencia y comportamiento de acuerdo con las necesidades de la aplicación.

<jda-leyenda
    [leyendaPrincipal]="{
    identificador:'totalRemision',
    numero: 22,
    texto: 'Total de remisiones',
    color: ''
  }"
    [leyendaSecundaria]="{
    identificador:'aprobadas',
    numero: 14,
    texto: 'Aprobadas',
    color: '#2ABC67'
  }"
    [leyendaTituloPrincipal]="'titulo principal'"
    [leyendaTituloSecundario]="'titulo secundario'"
    (evento)="onLeyendaClick($event)"
></jda-leyenda>

| Nombre del parámetro | Tipo de parámetro | Tipo | Requerido | Descripción | |-------------- |-------------- |-------------- |-------------- |-------------------------------------------------------------------------- | | leyendaPrincipal | Input | LeyendaDTO | No | leyendaPrincipal, comnjunto de opciones para mostrar la leyenda principal | | leyendaSecundaria | Input | LeyendaDTO | No | leyendaSecundaria, comnjunto de opciones para mostrar la leyenda secundaria | | leyendaTituloPrincipal | Input | String | No | leyendaTituloPrincipal para agregar un titulo a la leyenda. | | leyendaTituloSecundario | Input | String | No | leyendaTituloSecundario para agregar un titulo a la leyenda. | | evento | Output | EventEmitter | Sí | Cada vez que se clica, envía un evento con el identificador del botón |

Donde el parámetro LeyendaDTO consta de: | Nombre del parámetro | Tipo de parámetro | Tipo | Requerido | Descripción | |-------------- |-------------- |-------------- |-------------- |-------------------------------------------------------------------------- | | identificador | Input | String | Sí | identificador se requiere para identeficar cada. | | numero | Input | number | Sí | numero se requiere para mostrar el numeros para cada leyenda. | | texto | Input | String | Sí | texto se requiere para mostrar a que está relazionada esta leyenda. | | color | Input | String | No | color Se agregar una color para diferenciar las leyenda. |

Cómo importarlo en tu proyecto

  1. Instalar la dependencia del componente botón usando el siguiente comando: npm install jda-leyenda.
  2. Añadir el componente al módulo correspondiente donde se vaya a usar (import { JdaLeyendaComponent } from 'jda-leyenda').
  3. Llamar al componente con sus respectivos parámetros para pintarlo en pantalla.