From a1a9107d154a24e7e3142e0a38f5b4a5cbfbd4c9 Mon Sep 17 00:00:00 2001 From: punkbit Date: Thu, 12 Mar 2026 10:24:24 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20release=20v0.1.0-rc.78?= =?UTF-8?q?=20(rc)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/pre.json | 2 ++ CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c40c75b28..3e35e8e2a 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -6,6 +6,7 @@ }, "changesets": [ "add-chart-icons", + "add-lakekeeper-logo", "add-planetscale-logo", "add-regenerate-command", "all-adults-enter", @@ -44,6 +45,7 @@ "neat-toys-smoke", "nine-queens-allow", "ninety-windows-melt", + "olive-lions-hope", "olive-waves-feel", "open-hounds-join", "pretty-tips-decide", diff --git a/CHANGELOG.md b/CHANGELOG.md index a44c2b38b..512115123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # @clickhouse/click-ui +## 0.1.0-rc.78 + +### Minor Changes + +- 4c4105f: Add Lakekeeper logo + + **How to use?** + + ```tsx + import { Logo } from '@clickhouse/click-ui'; + + ; + ``` + +- 96ab2a9: Enable consumers to import hooks directly via `@clickhouse/click-ui/hooks` following the same pattern as component imports. + + **How to use?** + + Import hooks from the new dedicated path: + + ```tsx + import { useToast, useInitialTheme } from '@clickhouse/click-ui/hooks'; + ``` + + Main entry point still works: + + ```tsx + import { useToast, useInitialTheme } from '@clickhouse/click-ui'; + ``` + ## 0.1.0-rc.77 ### Minor Changes diff --git a/package.json b/package.json index 933b6e10a..b15e44aaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@clickhouse/click-ui", - "version": "0.1.0-rc.77", + "version": "0.1.0-rc.78", "description": "Official ClickHouse design system react library", "type": "module", "license": "Apache-2.0",