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

hispasat-ui

v0.0.778

Published

Hispasat opera una amplia gama de portales web y sitios web en varios países, incluidas las plataformas Power BI para uso interno y externo. ​ Debido a la gestión independiente de varios equipos de marketing, existe una falta de consistencia en los siste

Downloads

5,946

Readme

Hispasat UI

Hispasat opera una amplia gama de portales web y sitios web en varios países, incluidas las plataformas Power BI para uso interno y externo. ​ Debido a la gestión independiente de varios equipos de marketing, existe una falta de consistencia en los sistemas de diseño y la experiencia del usuario en estas plataformas.​ ​

En este contexto, EPAM ha realizado una Revisión de Expertos para portales web e informes de PBI, combinada con un análisis del flujo de diseño y casos de uso. ​ ​

Este análisis ha sido llevado a cabo por expertos en experiencia de usuario. La evaluación se realizó conforme a los estándares de usabilidad y accesibilidad. Se resaltaron los problemas de usabilidad y se proporcionaron recomendaciones.

Instalación

Para instalar la dependencia en aplicaciones de terceros ejecute:

  npm install hispasat-ui

Una vez instalada, asegúrese que el módulo HispasatUiModule ha sido añadido el archivo app.module.ts, en la lista de imports.

Para que funcione correctamente tambien tendrá que instalar las librerías de Bootstrap y ngx-owl-carousel-o, en las versiones 5.3.1 y 16.0.0 respectivamente. A continuación le detallamos el comando a ejecutar:

  npm install [email protected] [email protected]

Si obtuvo un problema en la instalación contacte con Optiva an EPAM Company.

Primeros pasos

Inicie la aplicación estableciendo el Look & Feel de ésta. Las opciones disponibles son:

1. lf-corporate
2. lf-simple
3. lf-wave

Estas opciones deben ser asignadas como parámetro al método setTheme:

import { Component } from '@angular/core';
import { HispasatLookAndFeelConfigService } from 'hispasat-ui';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss'],
})
export class AppComponent {
  constructor(private LFService: HispasatLookAndFeelConfigService) {}

  ngOnInit(){
    this.LFService.setTheme('lf-corporate')
  }
}

Ejemplos

Cada componente desarrollado tiene un selector único. Un ejemplo práctico podría ser el siguiente:

<hispasat-button 
  text="Click"
  size="M"
  skin="dark"
  style="primary"
  corner="circle"
  [icon]="true"
  [isDisabled]="false"
  (onClick)="callback()">
</hispasat-button>

Librerías de terceros

Las librerías de terceros utilizadas para el desarrollo de esta dependencia han sido:

  • @angular/material
  • bootstrap
  • ngx-owl-carousel-o