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

@inlayphp/panels-vue

v0.3.11

Published

Vue renderer for Inlay administration panels.

Downloads

1,665

Readme

@inlayphp/panels-vue

npm License

Vue renderer for Inlay administration panels

Accessible Vue 3 shell for the inlay.panels.v1 resource emitted by the inlayphp/panels Composer package. One <Panel> renders a responsive sidebar or top-navigation layout, grouped navigation, badges, active states, breadcrumbs, user actions, and the page content.

Install

pnpm add @inlayphp/panels-vue @inlayphp/forms-vue @inlayphp/ui vue

Add this package's src directory to your Tailwind source scan when the consuming app does not scan dependencies automatically.

@source '../../node_modules/@inlayphp/*/src/**/*.{ts,tsx,vue}';

Basic usage

<script setup lang="ts">
import { Link } from '@inertiajs/vue3'
import { Panel } from '@inlayphp/panels-vue'
import type { PanelResource } from '@inlayphp/panels-vue'

defineProps<{ panel: PanelResource }>()
</script>

<template>
  <Panel :link-component="Link" :resource="panel">
    <template #breadcrumbs="{ context }">
      <span>{{ context.resource.brandName ?? context.resource.id }}</span>
      <span aria-hidden="true"> / </span>
      <span>Dashboard</span>
    </template>

    <template #header-end>
      <button type="button">Notifications</button>
    </template>

    <h1>Dashboard</h1>
  </Panel>
</template>

The link adapter only needs to accept href and normal anchor attributes, so Inertia's Link works directly. To integrate another router, pass its link component or handle navigation:

<Panel :resource="panel" @navigate="(href, event) => router.visit(href)" />

openInNewTab links bypass the navigation callback and retain native browser behavior.

Panel discovery

Share PanelRegistry::directoryFor($user) as inlayPanels and render the same minimal, authorization-aware directory with the Vue switcher:

<script setup lang="ts">
import { PanelSwitcher } from '@inlayphp/panels-vue'
</script>

<PanelSwitcher
  :current-panel-id="panel.id"
  :panels="$page.props.inlayPanels"
  :on-navigate="(href) => router.visit(href)"
/>

The active panel is omitted, unsafe paths fail closed, and the server remains the source of truth for authorization. Enter/Space and ArrowUp/ArrowDown open and cycle the menu; Escape, outside clicks, and navigation close it and restore focus to the trigger.

Conditions

The PHP resource remains cacheable and does not contain application state. Supply facts used by visibleWhen and activeWhen through condition-values:

<Panel
  :condition-values="{
    permissions: $page.props.auth.permissions,
    route: $page.props.routeName,
  }"
  :resource="panel"
/>

Without condition values, or when a condition path cannot be resolved, visibleWhen fails closed and hides the entry. activeWhen remains false. Static visible and active values always apply.

renderComponent can resolve from an app-owned Core layout registry. A component in renderers.components has higher priority, while an unknown key safely renders the default slot.

<Panel
  :resource="panel"
  :registries="appRenderers"
  :renderers="{ components: { 'admin-layout': AdminLayout } }"
>
  <slot />
</Panel>

Customization

Theme tokens merge over the PHP resource theme:

<Panel
  :class-names="{ sidebar: 'shadow-xl', activeItem: 'font-semibold' }"
  :resource="panel"
  :theme="{ accent: '#7c3aed', sidebarWidth: '18rem', radius: '0.75rem' }"
/>

theme also accepts the serialized inlay.themes.v1 contract directly:

<Panel :resource="panel" :theme="page.props.inlayTheme">
  <slot />
</Panel>

Contract tokens drive light mode and darkTokens are merged for dark mode. Unknown semantic keys are emitted in a scoped stylesheet, while child Forms, Tables, Infolists, Widgets, Imports, Media Manager, and Permission Manager components inherit the same --inlay-* values. Use semantic tokens for global visual changes and class hooks/slots for structural overrides.

Supported class hooks are root, header, brand, sidebar, topNavigation, navigation, group, groupLabel, item, activeItem, badge, main, breadcrumbs, userMenu, and overlay. Stable data-slot attributes are also present throughout the shell.

Common PHP icon names (home, users, settings, folder, image, and table) have dependency-free outline fallbacks based on the open-source Lucide paths (ISC licensed). Register an icons component or use the icon scoped slot whenever an application needs a branded replacement.

Icons are registered by the string names emitted by PHP:

import HomeIcon from './icons/HomeIcon.vue'

const icons = { home: HomeIcon }

Pass them with <Panel :icons="icons" ... />. The icon scoped slot can override individual icons. Component renderers can replace the brand, every navigation item, or the complete user menu:

<Panel
  :renderers="{
    brand: CustomBrand,
    navigationItem: CustomNavigationItem,
    userMenu: CustomUserMenu,
  }"
  :resource="panel"
/>

Named scoped slots are brand, header-start, header-end, breadcrumbs, sidebar-footer, footer, icon, navigation-item, user-trigger, and user-menu-item. The default slot renders the main page content. Layout slots receive a reactive context containing resource, collapsed, mobileOpen, userMenuOpen, and toggle/close actions.

The PHP globalSearchPosition() setting accepts header-start, header-end, sidebar, or sidebar-footer. Orbit defaults to header-start, keeping search with the workspace content; use header-end for a compact account-oriented header or sidebar-footer for a left-rail search. sidebar-footer places it at the bottom of a left navigation rail. The search input is theme-aware, has name="global-search", and responds to / and ⌘/Ctrl-K shortcuts.

These named slots are renderer-native panel render hooks. They let an application insert Vue components at stable shell locations without forking the panel:

<Panel :resource="panel">
  <template #header-start><EnvironmentBadge /></template>
  <template #header-end><QuickActions /></template>
  <template #breadcrumbs><Breadcrumbs /></template>
  <template #sidebar-footer><SupportLink /></template>
  <template #footer><BuildVersion /></template>
  <DashboardPage />
</Panel>

Use the renderers prop when replacing a complete structural region such as the brand, navigation item, or user menu.

Accessibility and behavior

  • Navigation landmarks and current links use accessible names and aria-current.
  • Mobile navigation is a labelled dialog with an overlay and Escape handling.
  • Collapsible groups and sidebar controls expose expanded state.
  • The user menu exposes menu semantics, supports Arrow Down to open/focus its first item, and Escape to close and restore trigger focus.
  • PHP extraAttributes are filtered to reject event handlers, inline styles, HTML injection, refs, and class overrides.

Visibility in the shell is presentation only. Keep Laravel authorization middleware and policies on every protected route.

Development checks

pnpm --filter @inlayphp/panels-vue test -- --run
pnpm --filter @inlayphp/panels-vue typecheck
pnpm --filter @inlayphp/panels-vue build

When replacing structural renderers or slots, retain the keyboard behavior and accessible labels covered by the standard adapter tests.