Skip to content

Releases: neelamkhan123/component-library

v1.3.1

Choose a tag to compare

@github-actions github-actions released this 02 Sep 20:38
b6a75bd

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

Choose a tag to compare

@github-actions github-actions released this 02 Sep 18:25
8f0f132

Minor Changes

  • 414a85a: className now reliably overrides a component's own styles. Class names are combined with tailwind-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-6 happened to beat a default px-3, while bg-slate-900 silently lost to a default bg-white. Overrides that already worked keep working; ones that silently did nothing now take effect, which may reveal a className in your app that was never being applied.

    Sidebar no longer forces h-svh on its <aside>. It stretches to the height of its SidebarProvider instead, 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 with min-h-0 to opt out of the provider's min-h-svh floor:

    <SidebarProvider className="h-72 min-h-0"></SidebarProvider>

v1.2.4

Choose a tag to compare

@github-actions github-actions released this 01 Sep 15:28
16389a4

Patch Changes

  • d66ab12: Note the rename from @neelamkhan21/ui in the README, with the import and Tailwind @source changes 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

Choose a tag to compare

@github-actions github-actions released this 01 Sep 15:05
cddca9a

Patch Changes

  • a7dbdf5: Renamed from @neelamkhan21/ui to neelam-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/ui is deprecated but stays on the registry, so existing installs keep working and nothing breaks until you choose to move. The documentation link and package homepage now point at the documentation site rather than at Storybook.

v1.2.2

Choose a tag to compare

@github-actions github-actions released this 01 Sep 14:27

Patch Changes

  • 6c536c3: Packaging metadata only — no functional change to any component. repository.url drops its git+ prefix so npm's OIDC trusted-publishing match is unambiguous, publishConfig.access is declared explicitly as public, and a prepublishOnly script now rebuilds dist before any publish, so a stale build can no longer be shipped.