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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@suada/vue

v1.0.0-rc.18

Published

Vue components for Suada integrations

Readme

Suada Vue Components

This package provides Vue components for integrating with the Suada platform.

Installation

npm install @suada/vue

Usage

Register Components Globally

import { createApp } from 'vue';
import SuadaVue from '@suada/vue';
import App from './App.vue';

const app = createApp(App);
app.use(SuadaVue);
app.mount('#app');

Use Components Individually

import { IntegrationManager, IntegrationCard } from '@suada/vue';

export default {
  components: {
    IntegrationManager,
    IntegrationCard
  }
}

Components

IntegrationManager

The IntegrationManager component displays a grid of available integrations and manages their connection status.

Props

| Name | Type | Description | |------|------|-------------| | config | SuadaIntegrationsConfig | Configuration object for the integration manager |

Example

<template>
  <IntegrationManager :config="config" />
</template>

<script setup>
import { ref } from 'vue';
import { IntegrationManager } from '@suada/vue';

const config = ref({
  apiUrl: 'https://api.suada.io',
  apiKey: 'your-api-key',
  externalUserIdentifier: 'user-123',
  onIntegrationConnected: (type) => {
    console.log(`Integration ${type} connected`);
  },
  onIntegrationDisconnected: (type) => {
    console.log(`Integration ${type} disconnected`);
  },
  onError: (error) => {
    console.error('Integration error:', error);
  }
});
</script>

IntegrationCard

The IntegrationCard component displays information about a single integration and allows users to connect or disconnect it.

Props

| Name | Type | Description | |------|------|-------------| | integration | Integration | Integration object with details | | status | IntegrationStatus | Optional status of the integration |

Events

| Name | Payload | Description | |------|---------|-------------| | connect | { apiKey?: string, domain?: string, email?: string, temporaryAccessToken?: string } | Emitted when the user clicks the connect button | | disconnect | - | Emitted when the user clicks the disconnect button |

Example

<template>
  <IntegrationCard
    :integration="integration"
    :status="status"
    @connect="handleConnect"
    @disconnect="handleDisconnect"
  />
</template>

<script setup>
import { ref } from 'vue';
import { IntegrationCard } from '@suada/vue';

const integration = ref({
  type: 'google_analytics',
  name: 'Google Analytics',
  description: 'Connect to Google Analytics to import your data',
  icon: 'https://example.com/ga-icon.png',
  capabilities: ['Import data', 'Real-time sync'],
  requiresApiKey: false
});

const status = ref({
  type: 'google_analytics',
  connected: false,
  enabled: false
});

const handleConnect = (credentials) => {
  console.log('Connect with credentials:', credentials);
};

const handleDisconnect = () => {
  console.log('Disconnect integration');
};
</script>

Features

Suada Branding

The IntegrationManager component includes Suada branding that adapts to light and dark modes.

API Key Validation

The IntegrationCard component supports API key validation with required field indicators.

Temporary Access Tokens

Both components support temporary access tokens for secure authentication.

Property Selection

The IntegrationManager component includes a selectProperty method for selecting properties within integrations.

Customization

You can customize the appearance of the components using CSS variables:

:root {
  --suada-bg-color: #ffffff;
  --suada-text-color: #1F2937;
  --suada-primary-color: #6366F1;
  --suada-success-color: #10B981;
  --suada-error-color: #EF4444;
  --suada-container-width: 100%;
  --suada-text-size: 16px;
  --suada-icon-size: 40px;
}

TypeScript Support

This package includes TypeScript definitions for all components and interfaces.