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

svelte-fluid-header

v0.2.1

Published

A base for building shareable Svelte components that includes [tailwindcss](https://tailwindcss.com/). Clone it with [degit](https://github.com/Rich-Harris/degit):

Downloads

6

Readme

svelte-fluid-header

svelte-fluid-header is a responsive and customizable header component for Svelte.

On large screens, use a horizontal menu inside your header. On small screens, move the menu to a drawer below.

svelte-fluid-header has no production dependencies.

Demo

Example | Code Sandbox

Install

npm install svelte-fluid-header

Usage

<script>
  import Fluid from "svelte-fluid-header"
</script>

<header>
  <Fluid>
    <div slot="left">
      My Header Title
    </div>
    <div slot="right">
      My Horizontal Menu
    </div>
     <div slot="drawer">
       My Vertical Menu
     </div>
  </Fluid>
</head

Make sure to wrap your <Fluid> component in another HTML tag (as in the <header> in the example above).

Slots

left

The left slot goes into the left side of the header, usually for a logo and/or page title.

right

The right slot goes into the right side of the header, usually for a horizontal menu.

It is hidden on smaller screens.

drawer

The drawer slot goes below the header, usually to place a vertical menu. It can be toggled into view (with a customizable slide animation).

It is hidden on larger screens.

right-collapsed optional

The right-collapsed slot goes to the right of the header on smaller screens, usually for a hamburger button to reveal the drawer.

It is optional as svelte-fluid-header provides a default slot (including hamburger and close buttons, which may be styled). See the Binding section below to create a custom button.

right-collapsed is hidden on larger screens.

Props

breakpoint

The breakpoint at which the right slot is displayed, and the right-collapsed and drawer slots are hidden. Possible values are:

  • sm (640px)
  • md(768px),
  • lg(1024px),
  • xl(1200px).

The default value is sm.

duration

The duration of the drawer slider animation in milliseconds. The default is 200.

Styling

Slots give you control of your content and your style.

To style the default button, you can hook into the svelte-fluid-header--button class;

<style>
  :global(.svelte-fluid-header--button) {
    color: grey
  }
</style>

A few CSS properties such as background-color will need an !important flag.

Binding

You can bind to the toggleDrawer function of your svelte-fluid-header component. This is especially handy if you implement your own toggle button:

<script>
  let toggleDrawer; // from bind below
  const handleClick = () => {
    toggleDrawer();
  };
</script>

<Fluid bind:toggleDrawer>
  <!-- other slots -->
  <div slot="right-collapsed">
    <button on:click={handleClick}>Toggle</button>
  </div>
</Fluid>

Events

Two events are emitted from the component when the drawer is toggled, open and close:

<Fluid
  on:open={() => {
    console.log('drawer will open');
  }}
  <FluidHeader
  on:close={() => {
    console.log('drawer will close');
  }}
  <!-- slots -->
</Fluid>

Kitchen Sink

All the options available:

<script>
  import Fluid from 'svelte-fluid-header';
  let toggleDrawer;
  const handleClick = () => {
    toggleDrawer();
  };
</script>

<style>
  :global(.svelte-fluid-header--button) {
    color: grey
  }
  :global(.svelte-fluid-header--button:hover) {
    color: grey
  }
</style>

<header>
  <FluidHeader
    breakpoint='md'
    duration={250}
    bind:toggleDrawer
    on:open={ () => {} }
    on:close={ ()=> {} }>
    <div slot="left"><h1>My app</h1></div>
    <div slot="right">My Horizontal Menu</div>
    <div slot="drawer">My Vertical Menu</div>
    <div slot="right-collapsed">
      <button on:click={handleClick}>Toggle</button>
    </div>
  </FluidHeader>
</header>