Releases: neelamkhan123/component-library
Release list
v1.3.1
Patch Changes
- a7443f0: Link the documentation site's new Blocks gallery from the README — whole
screens (a dashboard, settings, sign-in, pricing, a chat panel) assembled from
these components, each with its source. No package code changed: npm only
refreshes a package's README when a new version is published, so this needs a
release to become visible on the package page.
v1.3.0
Minor Changes
-
414a85a:
classNamenow reliably overrides a component's own styles. Class names are combined withtailwind-merge, so a utility you pass that conflicts with a component default replaces it instead of sitting alongside it:<Badge className="rounded-full bg-slate-900 px-6">Beta</Badge>
Previously both classes reached the stylesheet with equal specificity, so which one applied came down to Tailwind's ordering of its generated output rather than to what you passed —
px-6happened to beat a defaultpx-3, whilebg-slate-900silently lost to a defaultbg-white. Overrides that already worked keep working; ones that silently did nothing now take effect, which may reveal aclassNamein your app that was never being applied.Sidebarno longer forcesh-svhon its<aside>. It stretches to the height of itsSidebarProviderinstead, so it stays viewport-tall in a normal app shell while also working inside a deliberately smaller container — a preview, a card, a split pane. Pair a fixed height withmin-h-0to opt out of the provider'smin-h-svhfloor:<SidebarProvider className="h-72 min-h-0">…</SidebarProvider>
v1.2.4
Patch Changes
- d66ab12: Note the rename from
@neelamkhan21/uiin the README, with the import and Tailwind@sourcechanges shown as diffs. npm only refreshes a package's README when a new version is published, so this needs a release to become visible on the package page.
v1.2.3
Patch Changes
-
a7dbdf5: Renamed from
@neelamkhan21/uitoneelam-ui. Update your imports and your dependency entry:- import { Button } from "@neelamkhan21/ui"; + import { Button } from "neelam-ui";
- @source "../node_modules/@neelamkhan21/ui/dist"; + @source "../node_modules/neelam-ui/dist";
@neelamkhan21/uiis deprecated but stays on the registry, so existing installs keep working and nothing breaks until you choose to move. The documentation link and packagehomepagenow point at the documentation site rather than at Storybook.
v1.2.2
Patch Changes
- 6c536c3: Packaging metadata only — no functional change to any component.
repository.urldrops itsgit+prefix so npm's OIDC trusted-publishing match is unambiguous,publishConfig.accessis declared explicitly aspublic, and aprepublishOnlyscript now rebuildsdistbefore any publish, so a stale build can no longer be shipped.