@sps-woodland/list-bar
v8.51.1
Published
SPS Woodland Design System list bar components
Keywords
Readme
@sps-woodland/list-bar
SPS Woodland Design System list bar components.
Heads up — this is a wrapper package. The component source now lives in
@sps-woodland/core. This package re-exports from the mono-package so existing imports keep working, but new code should prefer the mono-package paths.
Preferred imports (mono-package)
import {
ListBar,
ListBarSearch,
ListBarSearchInfo,
ListBarSortBy,
InputGroupWrapper,
SearchResultsBar,
AdvancedSearch,
} from "@sps-woodland/core/list-bar";
// Or per-component (everything except ListBar has a flat subpath):
import { ListBarSearch } from "@sps-woodland/core/list-bar-search";
import { ListBarSearchInfo } from "@sps-woodland/core/list-bar-search-info";
import { ListBarSortBy } from "@sps-woodland/core/list-bar-sort-by";
import { InputGroupWrapper } from "@sps-woodland/core/input-group-wrapper";
import { SearchResultsBar } from "@sps-woodland/core/search-results-bar";
import { AdvancedSearch } from "@sps-woodland/core/advanced-search";
import "@sps-woodland/core/list-bar/style.css";ListBar is barrel-only (the family name and the parent component share a
name). Everything else has both a barrel entry and a flat subpath.
Legacy imports (still supported)
import { ListBar, AdvancedSearch, SearchResultsBar } from "@sps-woodland/list-bar";
import "@sps-woodland/list-bar/style.css";