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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@thangdevalone/meeting-grid-layout-vue

v1.5.9

Published

Vue 3 integration for meeting-grid-layout with Motion animations

Readme

@thangdevalone/meeting-grid-layout-vue

Vue 3 bindings for meeting-grid-layout with motion-v animations.

For full documentation, layout modes, and API reference, see the main README.

Installation

npm install @thangdevalone/meeting-grid-layout-vue

Quick Start

<script setup>
import { GridContainer, GridItem } from '@thangdevalone/meeting-grid-layout-vue'
import { ref } from 'vue'

const participants = ref([
  { id: 1, name: 'You' },
  { id: 2, name: 'User 1' },
])
</script>

<template>
  <GridContainer aspect-ratio="16:9" :gap="8" :count="participants.length" layout-mode="gallery">
    <GridItem v-for="(participant, index) in participants" :key="participant.id" :index="index">
      <VideoTile :participant="participant" />
    </GridItem>
  </GridContainer>
</template>

Components

<GridContainer>

Wraps the grid and provides layout via provide/inject.

| Prop | Type | Default | Description | | ---------------------- | ----------------------------------------- | ----------- | -------------------------------------------------------------------- | | aspect-ratio | string | '16:9' | Default tile aspect ratio | | gap | number | 8 | Gap between tiles (px) | | count | number | required | Number of items | | layout-mode | LayoutMode | 'gallery' | gallery | spotlight | | pinned-index | number | - | Pinned participant index | | others-position | 'left' \| 'right' \| 'top' \| 'bottom' | 'right' | Thumbnail position in pin mode | | spring-preset | SpringPreset | 'smooth' | Animation preset | | max-items-per-page | number | 0 | Max items per page (0 = no pagination) | | current-page | number | 0 | Current page | | max-visible | number | 0 | Max visible in others area (0 = show all) | | current-visible-page | number | 0 | Current page for visible items (when max-visible > 0) | | item-aspect-ratios | (ItemAspectRatio \| undefined)[] | - | Per-item aspect ratios | | float-width | number | - | Width of the auto-float PiP (2-person mode). Overrides breakpoints. | | float-height | number | - | Height of the auto-float PiP (2-person mode). Overrides breakpoints. | | float-breakpoints | PipBreakpoint[] | - | Responsive breakpoints for auto-float PiP (see Responsive PiP) | | pip-index | number | 1 | Which participant (0 or 1) is the floating PiP in 2-person mode | | pin-only | boolean | false | Mobile/tablet pin-only mode: page 0 = pinned full-screen, page 1+ = others gallery (≤1024px) | | disable-float | boolean | false | Disable Floating PiP in 2-person mode; shows standard gallery grid instead | | disable-animation | boolean | false | Disable all spring/transition animations globally; items snap instantly | | tag | string | 'div' | Root HTML element tag |

<GridItem>

Single grid cell with motion-v animation.

| Prop | Type | Default | Description | | ------------------- | ----------------- | -------- | ------------------------------------------ | | index | number | required | Item index | | disable-animation | boolean | false | Disable layout animation | | item-aspect-ratio | ItemAspectRatio | - | Per-item aspect ratio (overrides container) | | tag | string | 'div' | Root HTML element tag |

Scoped slot props: { contentDimensions, isLastVisibleOther, hiddenCount, isFloat }

<GridItem v-for="(p, index) in participants" :key="p.id" :index="index">
  <template #default="{ isLastVisibleOther, hiddenCount }">
    <div v-if="isLastVisibleOther && hiddenCount > 0" class="more-indicator">
      +{{ hiddenCount }} more
    </div>
    <VideoTile v-else :participant="p" />
  </template>
</GridItem>

<FloatingGridItem>

Draggable Picture-in-Picture overlay with corner snapping.

| Prop | Type | Default | Description | | ------------------ | ------------------------------------------------------------- | -------------------------------- | ------------------------------------------------ | | width | number | 120 | Floating item width (px). Overridden by breakpoints. | | height | number | 160 | Floating item height (px). Overridden by breakpoints. | | breakpoints | PipBreakpoint[] | - | Responsive breakpoints (see Responsive PiP) | | initial-position | { x: number; y: number } | { x: 16, y: 16 } | Extra offset from anchor corner | | anchor | 'top-left' \| 'top-right' \| 'bottom-left' \| 'bottom-right' | 'bottom-right' | Which corner to snap/anchor the item | | visible | boolean | true | Whether the floating item is visible | | edge-padding | number | 12 | Minimum padding from container edges (px) | | border-radius | number | 12 | Border radius of the floating item (px) | | box-shadow | string | '0 4px 20px rgba(0,0,0,0.3)' | CSS box-shadow of the floating item |

Events:

| Event | Payload | Description | | ---------------- | ---------- | ------------------------------------------ | | @anchor-change | string | Emitted when anchor corner changes on drag |

<GridOverlay>

Full-grid overlay for screen sharing, whiteboard, etc.

| Prop | Type | Default | Description | | ------------------ | --------- | -------------------- | ------------------------ | | visible | boolean | true | Show/hide the overlay | | background-color | string | 'rgba(0,0,0,0.5)' | Overlay background color |

Responsive PiP

PiP auto-adjusts size based on container width via breakpoints:

<script setup>
import { FloatingGridItem, GridContainer, GridItem, DEFAULT_FLOAT_BREAKPOINTS } from '@thangdevalone/meeting-grid-layout-vue'
</script>

<template>
  <!-- Standalone — auto-responsive -->
  <FloatingGridItem :breakpoints="DEFAULT_FLOAT_BREAKPOINTS">
    <VideoTile />
  </FloatingGridItem>

  <!-- Auto-float in 2-person mode -->
  <GridContainer :count="2" :float-breakpoints="DEFAULT_FLOAT_BREAKPOINTS">
    <GridItem v-for="(p, i) in participants" :key="p.id" :index="i">
      <VideoTile :participant="p" />
    </GridItem>
  </GridContainer>
</template>

See the main README for default breakpoint table, custom breakpoints, and resolveFloatSize utility.

Composables

| Composable | Description | | ---------------------------------- | ------------------------------------- | | useGridDimensions(ref) | Track element size via ResizeObserver | | useMeetGrid(options) | Compute grid layout programmatically | | useGridAnimation() | Access animation config from context | | useGridItemPosition(grid, index) | Get position and size for one item |

Re-exported from Core

| Export | Type | Description | | --------------------------- | ---------- | ------------------------------------------------ | | createMeetGrid | function | Create grid layout (Vanilla JS) | | createGrid | function | Low-level grid computation | | resolveFloatSize | function | Resolve PiP size for a given container width | | DEFAULT_FLOAT_BREAKPOINTS | constant | Ready-made 5-level responsive PiP breakpoints | | getSpringConfig | function | Get spring config from preset name | | springPresets | object | All spring presets | | getAspectRatio | function | Parse aspect ratio string | | PipBreakpoint | type | Breakpoint definition type | | ContentDimensions | type | Content dimensions with offset |

License

MIT