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.4

Published

![Imagen del componente](https://i.ibb.co/QXy7J35/readme.jpg)

Downloads

232

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 leyenda configurable que permite definir su apariencia y datos mostrados de acuerdo con las necesidades de la aplicación.

<jda-leyenda
    [leyendaPrincipal]="this.leyendaPrincipal1"
    [leyendaSecundaria]="this.leyendaSecundaria1"
></jda-leyenda>
 leyendaPrincipal = {
    numero: 22,
    texto: 'Total de remisiones',
    color: ''
  };

  leyendaSecundaria = [{
    numero: 14,
    texto: 'Aprobadas',
    color: '#2ABC67'
  },{
    numero: 8,
    texto: 'Rechazadas',
    color: '#F0AD4E'
  }]; 

| Nombre del parámetro | Tipo de parámetro | Tipo | Requerido | Descripción | |-------------- |-------------- |-------------- |-------------- |-------------------------------------------------------------------------- | | leyendaPrincipal | Input | Object | No | Objeto que contiene las propiedades para la leyenda principal (recuadro independiente). | | leyendaSecundaria | Input | Object[] | No | Array de objetos que contienen las propiedades para la leyenda secundaria. | | *numero | number | string | Sí | Número a representar dentro de la leyenda. | | *texto | string | string | Si | Texto a mostrar dentro de la leyenda. | | *color | string | string | No | Color del icono opcional a representar al lado del texto de la leyenda. |

* Parámetros que se definen en un objeto creado por el usuario.

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.