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

@genniuxapps/components-ms

v1.3.4

Published

Master Sherpa Library

Downloads

746

Readme

Master Sherpa Ui Kit

N|Solid

El repositorio empowerlabs es un catalogo de componentes web desarrollados con angular 6+.
La biblioteca principal esta escrita en JavaScript puro (ademas de web Components) lo que significa que puede utilizarse en cualquier aplicativo que sea orientado a plataformas web con angular 6+.

EMPEZANDO

Descargue la ultima version lanzada

Antes que nada debes tener instalado npm en tu equipo de desarrollo. Tenemos un repositorio de distribucion en el cual se almacenan todos los cambios pertenecientes a la libreria.

npm install @genniuxapps/components-ms@latest
Esto descarga la biblioteca principal @genniuxapps/components-ms.

Importar MastersherpaUiKitModule

Luego importe MastersherpaUiKitModule al modulo raiz (normalmente llamado AppModule) de su aplicación angular.

import {MastersherpaUiKitModule} from '@genniuxapps/components-ms';
imports: [
   BrowserModule,
   MastersherpaUiKitModule,
],

Esto cargará todos los componentes y caracteristicas de @genniuxapps/components-ms en su aplicación.

Cargar CUSTOM_ELEMENTS_SCHEMA

Agregue schemas propiedad al módulo raíz y póngalo CUSTOM_ELEMENTS_SCHEMA en él. Esto es importante ya que los componentes de la interfaz de usuario de @empowerlabs son componentes web (elementos personalizados).

import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
providers: [],
schemas: [
    CUSTOM_ELEMENTS_SCHEMA,
],

Este paso suprime las advertencias causadas por las ms-*etiquetas en las plantillas.

Cargar archivos CSS

Actualmente utilizamos los iconos desarrollados por FontAwesome , IonIcons y MaterialDesign por lo cual es importante importar el CDN de cada dependencia. Actualmente utilizamos font-family: Poppins en nuestros componentes. Abrimos nuestro el archivo styles.css principal de nuestro proyecto angular, ubicado en (src>style.css) e incorporamos la siguiente importacion.

@import '../node_modules/@genniuxapps/components-ms/css/mastersherpa.css';
¡Estamos listos!

@genniuxapps/components-ms se ah instalado completamente. ¡Diviértete con los componentes!

Usando componentes

@genniuxapps/components-ms proporciona varios componentes: (ver todos los componentes en la lista). Cada componente comienza con la ms-*etiqueta.

Por ejemplo, pongamos un botón.

<ms-button [text]="'Click Me'"></ms-button>

Si desea insertar un icono dentro del botón. Consulta FontAwesome , IonIcons , MaterialDesign para seleccionar el icono a mostrar.

<ms-button [text]="'Click Me'" [icon]="'fa-book'"></ms-button>

Si desea establecer una acción activada cuando se hace clic en el botón, puede usar el enlace de evento angular .

<ms-button [text]="'Click Me'" (click)="clickElement()"></ms-button>

Si desea saber qué eventos puede usar en cada componente, consulte cada página de referencia de ellos.