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

@wow-talents/ui

v0.4.2

Published

Custom UI Vue components exclusive for WOW Talents

Downloads

11

Readme

Wow Talents UI

Custom UI Vue components exclusive for WOW Talents

Installation

With npm / yarn

npm i @wow-talents/ui

or

yarn add @wow-talents/ui

import '@wow-talents/ui/lib/wow.css'
import * as WowComponent from '@wow-talents/ui'

With CDN

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/@wow-talents/ui/lib/wow.min.js"></script>

Using

Vue file

<template>
  <div id="app">
    <wow-hello />
  </div>
</template>

<script lang="ts">
import {Component, Vue} from 'vue-property-decorator'
import {WowHello} from '@wow-talents/ui'

@Component({
  components: {WowHello},
})
export default class App extends Vue {}
</script>

Pure HTML

<meta charset="utf-8">
<title>Demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/@wow-talents/ui/lib/wow.min.js"></script>

<wow-hello></wow-hello>

Customizing components in pure HTML

<meta charset="utf-8">
<title>Demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/@wow-talents/ui/lib/wow.min.js"></script>

<wow-button id="btn" label="Click me" rounded />

<script>
const el = document.getElementById('btn')
// Custom component event
el.addEventListener('press', function() {
  alert('Trigger')
})
</script>

Using SDK (optional)

import {Wow, AuthRequest, Talent} from '@wow-talents/ui'

Wow.install(
/*
{
  axiosInstance?: AxiosInstance
  onRequestStart?: (reqName: string) => void
  onRequestEnd?: (reqName: string) => void
  onRequestError?: (reqName: string) => void
  baseURL?: string
  token?: string
  version?: string
  language?: AvailableLanguages
  onAxiosResponseError?: (error: AxiosError) => void | Promise<never>
}
*/
)

// Mock example. This account doesn't exist!
const request = new AuthRequest()
request.email = '[email protected]'
request.password = '123456'

try {
  const response = await request.signIn<Talent>()
  Wow.updateToken(response.token)
  console.log(response.loggedUser)
} catch (e) {
  console.error(e)
}

Using SDK with CDN

<meta charset="utf-8">
<title>wow demo</title>
<script src="https://unpkg.com/@wow-talents/ui/lib/wow.umd.min.js"></script>

<script>
const Wow = wow.default
const AuthRequest = wow.AuthRequest

Wow.install()

// Mock example. This account doesn't exist!
signIn('[email protected]', '123456')

async function signIn(email, password) {
  const request = new AuthRequest()
  request.email = email
  request.password = password

  try {
    const response = await request.signIn()
    Wow.updateToken(response.token)
    alert('Login success. See logs')
    console.log(response.loggedUser)
  } catch (e) {
    alert('Login failed')
    console.error(e)
  }
}
</script>

API

Contributing

Clone this repository then the following to initialize:

yarn bootstrap

You make changes in /src dir and test in example dir.

You may execute your demo test by running this:

yarn demo

Publish your changes if you have permission:

npm run release

Make sure you have configured your GITHUB_TOKEN