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

@molecule/app-date-range-picker-default

v1.0.1

Published

Default provider for @molecule/app-date-range-picker

Readme

@molecule/app-date-range-picker-default

Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit src/index.ts JSDoc, not this file.

Default provider for @molecule/app-date-range-picker.

Provides an in-memory date range picker implementation conforming to the molecule date range picker provider interface.

Quick Start

import { provider } from '@molecule/app-date-range-picker-default'
import { setProvider } from '@molecule/app-date-range-picker'

setProvider(provider)

Type

provider

Installation

npm install @molecule/app-date-range-picker-default @molecule/app-date-range-picker

API

Interfaces

DefaultDateRangeConfig

Provider-specific configuration options.

There is intentionally no locale field: this default provider is a pure value store of Date objects and produces no formatted/labelled output, so a locale knob would be inert. Format displayed dates in your rendering layer via @molecule/app-i18n.

interface DefaultDateRangeConfig {
  /**
   * Provider-wide default for single-date mode. When `true`, every picker that
   * does not pass its own `options.singleDate` collapses a selection to a
   * single-day range (`startDate === endDate`). Defaults to `false`.
   */
  singleDate?: boolean
}

Functions

createProvider(config)

Creates a default date range picker provider.

function createProvider(config?: DefaultDateRangeConfig): DateRangePickerProvider
  • config — Optional provider configuration. config.singleDate supplies the default single-date mode for every picker that does not pass its own per-call options.singleDate.

Returns: A configured DateRangePickerProvider.

Constants

provider

Default date range picker provider instance.

const provider: DateRangePickerProvider

Core Interface

Implements @molecule/app-date-range-picker interface.

Bond Wiring

Setup function to register this provider with the core interface:

import { setProvider } from '@molecule/app-date-range-picker'
import { provider } from '@molecule/app-date-range-picker-default'

export function setupDateRangePickerDefault(): void {
  setProvider(provider)
}

Injection Notes

Requirements

Peer dependencies:

  • @molecule/app-date-range-picker ^1.0.1

Runtime Dependencies

  • @molecule/app-date-range-picker

This default instance is an in-memory range store that honors its options:

  • minDate/maxDate clamp every stored selection (initial value and setValue) into range — a start below minDate becomes minDate, an end above maxDate becomes maxDate. This is client UX, not a security boundary; re-validate ranges on the server.
  • singleDate: true collapses a selection to a single-day range (startDate === endDate = the picked day) on one setValue; no second click. createProvider({ singleDate: true }) sets this as a provider-wide default that per-call options.singleDate overrides.
  • Inverted ranges (start after end) in range mode are stored as-is — swap or block them in your UI if needed.
  • clear() resets the value WITHOUT firing onChange (only setValue() notifies) — trigger your own refresh after clearing.
  • There is no locale knob (removed as inert): this store emits no formatted output, so format dates with @molecule/app-i18n in your rendering layer.

E2E Tests

Integration checklist — drive the real UI (live preview, no mocks), adapt each item to this app's actual calendar/preset UI and whatever the selected range filters, and check every box off one by one. A box you can't check is an integration bug to fix — not a skip:

  • [ ] Selecting a start date then an end date produces a valid range with startDate <= endDate, that exact range shows in the input/display, and it fires once via onChange with a { startDate, endDate } payload.
  • [ ] Picking an end earlier than the start never yields an inverted range — the UI either swaps them (start stays <= end) or blocks the pick; confirm by reading both the displayed range and the onChange payload.
  • [ ] Each exposed preset sets the correct range: a "Last 7 days" preset selects today-minus-6 through today (inclusive), and the calendar + display reflect that span.
  • [ ] minDate/maxDate bounds hold in the UI — a date outside the allowed window can't be picked (it renders out-of-range/greyed), and any disabled dates are non-selectable.
  • [ ] If the app uses single-date mode (singleDate: true), picking one day sets startDate and endDate to that same day and onChange fires with a same-day range — no second click required.
  • [ ] The selected range drives its consumer: the filtered list/report/chart that reads the range re-queries and shows only rows within it — change the range and the results change with it.
  • [ ] Clearing resets the selection — the display empties, getValue() returns null, and the dependent view returns to its unfiltered/default state.