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

@phila/phila-ui-filter-summary

v0.1.1

Published

Filter summary for applied filters

Readme

FilterSummary Component

Status: In Progress

@phila/phila-ui-filter-summary — filter summary for applied filters: a "Showing N results for …" line plus removable filter pills (one per active selection) and a Clear all action.

Installation

pnpm add @phila/phila-ui-filter-summary

Shared model

FilterSummary uses the same FilterDefinition[]/FilterValues types as FilterChipGroup and FilterPanel, and reads dropdown filter values as the FilterValues type declares them: a plain string (single-select) or string[] (multi-select) per filter key, plus boolean for toggles.

Known incompatibility: FilterChipGroup's actual runtime modelValue for dropdown filters is a Record<string, boolean> map of every choice → selected (confirmed in FilterChipGroup.vue), not the string/string[] this component expects. If you bind the same ref across both components today, FilterSummary will correctly render pills for toggle filters, but will not render pills for dropdown filter selections made through FilterChipGroup — the value shapes don't match. Removing a pill or clicking Clear all still emits an updated model in FilterSummary's own string/string[]/boolean shape; Clear all preserves any ordering filters (those with excludeFromCount: true, e.g. Sort) so the user's sort preference is not lost.

Usage

<script setup lang="ts">
import { ref } from "vue";
import { FilterSummary } from "@phila/phila-ui-filter-summary";
import type { FilterDefinition, FilterValues } from "@phila/phila-ui-core";

const filters: FilterDefinition[] = [
  /* ... */
];
const values = ref<FilterValues>({ language: ["en", "es"] });
</script>

<template>
  <FilterSummary :filters="filters" v-model="values" :results-count="21" query="health center" />
</template>

Props

| Prop | Type | Default | Description | | -------------- | -------------------- | ------------- | --------------------------------------------------------------------- | | filters | FilterDefinition[] | — | Required. Same filter definitions used by the chip bar / panel. | | modelValue | FilterValues | {} | Applied values (v-model). Removing a pill emits an updated copy. | | resultsCount | number | — | When set, renders the "Showing N results…" line above the pills. | | query | string | — | Searched term shown in the results line as for "…". | | clearAllText | string | "Clear all" | Label for the Clear all action (shown only when 2+ pills are active). |

Events

| Event | Payload | Description | | ------------------- | -------------- | ------------------------------------------------------------------- | | update:modelValue | FilterValues | Emitted when a pill is removed or Clear all is clicked (v-model). |

Slots

| Slot | Props | Description | | ---------- | ---------------------------------- | ------------------------------------------------------------------------ | | #results | { count: number, query: string } | Replaces the default "Showing N results for …" line with custom content. |

Development

Install Dependencies

pnpm install

Build Library

pnpm build

Type Check

pnpm type-check

Publishing to NPM

Follow the release instructions using changesets.

License

MIT