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

@dhvde/widgets

v1.1.2

Published

Widget (WebComponent) to list DHV XC flights on club or pilot websites

Downloads

144

Readme

DHV Widgets

Dieses Paket stellt eine Webkomponente bereit, um Flüge aus dem XC auf den Webseiten der Mitglieder anzuzeigen.

Integration

Folgendes Skript und Stylesheet müssen im <head> eingebunden werden

<script src="https://unpkg.com/@dhvde/widgets/widgets.js" type="module" async></script>

Dann kann das Widget im HTML <body> geladen werden:

<dhv-flights></dhv-flights>

Alternative Installation via Package Manager

Sollte es gewünscht sein, das Widget in eine Application hinein zu kompilieren, kann das Paket via npm oder yarn installiert werden:

npm install --save-dev @dhvde/widgets

Dann kann die Komponente wie folgt importiert werden:

import "@dhvde/widgets";

Attribute

Folgende Attribute werden unterstützt. Alle Attribute sind optional.

| Name | Typ/Werte | Default | | |---------------|-----------------------|---------|------------------------------------------------------------------------| | limit | integer | 5 | Maximale anzahl der Eintraege | | variant | primary, light, white | unset | Style-Variante | | club | integer | unset | Filter nach ID des Clubs | | pilots | integer | unset | Filter nach Piloten IDs, gretrennt mit Komma | | hide-pilot | boolean | unset | Blendet Club, Land und Name des Piloten aus, wenn pilots gesetzt ist | | extend-params | string | unset | Additional URL parameters for the flight request |

Beispiel für maximal 10 Einträge des Clubs mit der ID 123:

<dhv-flights club="123" limit="10"></dhv-flights>

Beispiel für 5 Einträge des Piloten mit der ID 123 in der Style-Variante "white":

<dhv-flights pilots="123" variant="white"></dhv-flights>

Beispiel für 5 Einträge der Piloten mit der IDs 120, 130 und 140:

<dhv-flights pilots="120,130,140"></dhv-flights>

Beispiel für die Flugliste eines Piloten ohne den Club, Land und Name des Piloten anzuzeigen:

<dhv-flights pilots="120" hide-pilot></dhv-flights>

Anpassen des Styles

Folgende Variablen können überschrieben werden, um den Style des Widgets an die Webseite anzupassen:

:root {
  --dhv-border-radius: .4rem;
  --dhv-border-width: 2px;
  --dhv-spacer: 1rem;

  --dhv-line-height: 1.4;
  --dhv-font: normal normal 400 1rem Arial;
  --dhv-font-bold: normal normal 700 1rem Arial;
  --dhv-font-size-big: 1.2rem;

  --dhv-white: #fff;
  --dhv-primary: #234459;
  --dhv-highlight: #4a7a8c;
  --dhv-highlight-text: var(--dhv-white);
  --dhv-black: #323232;
}

Lizenz

Copyright (c) 2024 Deutscher Gleitschirm- und Drachenflugverband e.V.

Jedem, der eine Kopie dieser Software und der zugehörigen Dokumentationsdateien (die „Software“) erhält, wird hiermit kostenlos die Erlaubnis erteilt, ohne Einschränkung mit der Software zu handeln, einschließlich und ohne Einschränkung der Rechte zur Nutzung, zum Kopieren, Ändern, Zusammenführen, Veröffentlichen, Verteilen, Unterlizenzieren und/oder Verkaufen von Kopien der Software, und Personen, denen die Software zur Verfügung gestellt wird, dies unter den folgenden Bedingungen zu gestatten:

Der obige Urheberrechtshinweis und dieser Genehmigungshinweis müssen in allen Kopien oder wesentlichen Teilen der Software enthalten sein.

DIE SOFTWARE WIRD OHNE MÄNGELGEWÄHR UND OHNE JEGLICHE AUSDRÜCKLICHE ODER STILLSCHWEIGENDE GEWÄHRLEISTUNG, EINSCHLIEẞLICH, ABER NICHT BESCHRÄNKT AUF DIE GEWÄHRLEISTUNG DER MARKTGÄNGIGKEIT, DER EIGNUNG FÜR EINEN BESTIMMTEN ZWECK UND DER NICHTVERLETZUNG VON RECHTEN DRITTER, ZUR VERFÜGUNG GESTELLT. DIE AUTOREN ODER URHEBERRECHTSINHABER SIND IN KEINEM FALL HAFTBAR FÜR ANSPRÜCHE, SCHÄDEN ODER ANDERE VERPFLICHTUNGEN, OB IN EINER VERTRAGS- ODER HAFTUNGSKLAGE, EINER UNERLAUBTEN HANDLUNG ODER ANDERWEITIG, DIE SICH AUS ODER IN VERBINDUNG MIT DER SOFTWARE ODER DER NUTZUNG ODER ANDEREN GESCHÄFTEN MIT DER SOFTWARE ERGEBEN.